/
/
/
1.cc-language-provider {
2 width: 100%;
3 height:100%
4}
5
6.cc-language-provider--web-app {
7 background:inherit
8}
9
10.base-icon__label {
11 overflow: hidden;
12 white-space: nowrap;
13 text-overflow:ellipsis
14}
15
16.base-icon {
17 display: flex;
18 align-items: center;
19 justify-content: center;
20 flex-direction:column
21}
22
23.base-icon__icon {
24 height: 76px;
25 width:76px
26}
27
28.base-icon__icon--apple-music, .base-icon__icon--apple-podcasts {
29 border-radius: 16px;
30 overflow: hidden;
31 position:relative
32}
33
34.base-icon__icon--third-party-placeholder {
35 border: 1px solid rgb(200, 199, 204);
36 border-radius: 16px;
37 overflow: hidden;
38 position:relative
39}
40
41.theme-podcasts .base-icon__icon--gdpr {
42 height: 30px;
43 width: 30px;
44 background-color: #7d50df;
45 -webkit-mask-size: contain;
46 mask-size: contain;
47 -webkit-mask-repeat: no-repeat;
48 mask-repeat: no-repeat;
49 -webkit-mask-position: center;
50 mask-position: center;
51}
52
53.theme-music .base-icon__icon--gdpr {
54 height: 30px;
55 width: 30px;
56 background-color: var(--music-key-color);
57 -webkit-mask-size: contain;
58 mask-size: contain;
59 -webkit-mask-repeat: no-repeat;
60 mask-repeat: no-repeat;
61 -webkit-mask-position: center;
62 mask-position: center;
63}
64
65.base-icon__label {
66 min-height: 18px;
67 margin-top: 5px;
68 margin-bottom: 0;
69 width: 100%;
70 font-size: .8125rem;
71 line-height: 15px;
72 color: #333;
73 opacity:.8
74}
75
76.loading-spinner {
77 position: relative;
78 width: 32px;
79 height:32px
80}
81
82.loading-spinner__nib {
83 position: absolute;
84 top: 0;
85 width: 3px;
86 height: 9px;
87 border-radius: 1.5px;
88 transform-origin: center 16px;
89 animation-name: nib;
90 animation-direction: reverse;
91 animation-duration: 1s;
92 animation-iteration-count: infinite;
93 animation-timing-function: cubic-bezier(.3333333333, 0, .6666666667, .3333333333);
94 background:#000
95}
96
97.is-rtl .loading-spinner__nib {
98 right:50%
99}
100
101.is-ltr .loading-spinner__nib {
102 left:50%
103}
104
105.is-rtl .loading-spinner__nib {
106 margin-right:-1.5px
107}
108
109.is-ltr .loading-spinner__nib {
110 margin-left:-1.5px
111}
112
113.loading-spinner--center {
114 position: absolute;
115 top: 50%;
116 transform:translate(-50%, -50%)
117}
118
119.is-rtl .loading-spinner--center {
120 right:50%
121}
122
123.is-ltr .loading-spinner--center {
124 left:50%
125}
126
127.loading-spinner__nib-0 {
128 animation-delay: -1s;
129 transform:rotate(0)
130}
131
132.loading-spinner__nib-1 {
133 animation-delay: -.9166666667s;
134 transform:rotate(30deg)
135}
136
137.loading-spinner__nib-2 {
138 animation-delay: -.8333333333s;
139 transform:rotate(60deg)
140}
141
142.loading-spinner__nib-3 {
143 animation-delay: -.75s;
144 transform:rotate(90deg)
145}
146
147.loading-spinner__nib-4 {
148 animation-delay: -.6666666667s;
149 transform:rotate(120deg)
150}
151
152.loading-spinner__nib-5 {
153 animation-delay: -.5833333333s;
154 transform:rotate(150deg)
155}
156
157.loading-spinner__nib-6 {
158 animation-delay: -.5s;
159 transform:rotate(180deg)
160}
161
162.loading-spinner__nib-7 {
163 animation-delay: -.4166666667s;
164 transform:rotate(210deg)
165}
166
167.loading-spinner__nib-8 {
168 animation-delay: -.3333333333s;
169 transform:rotate(240deg)
170}
171
172.loading-spinner__nib-9 {
173 animation-delay: -.25s;
174 transform:rotate(270deg)
175}
176
177.loading-spinner__nib-10 {
178 animation-delay: -.1666666667s;
179 transform:rotate(300deg)
180}
181
182.loading-spinner__nib-11 {
183 animation-delay: -.0833333333s;
184 transform:rotate(330deg)
185}
186
187@keyframes nib {
188 0% {
189 opacity:.168627451
190 }
191
192 to {
193 opacity:1
194 }
195}
196
197.button.base-button {
198 width:250px
199}
200
201.theme-music .base-button--primary {
202 --sk-button-background: rgb(255, 44, 85);
203 --sk-button-background-hover: #ff3d63;
204 --sk-button-background-active: #eb284e;
205 --sk-button-color: rgb(255, 255, 255);
206 --sk-button-disabled-opacity: .32
207}
208
209.theme-music .base-button--secondary {
210 --sk-button-background: rgb(232, 232, 237);
211 --sk-button-background-hover: #eaeaee;
212 --sk-button-background-active: #d5d5da;
213 --sk-button-color: rgb(255, 44, 85);
214 --sk-button-disabled-opacity: .32
215}
216
217.theme-podcasts .base-button--primary {
218 --sk-button-background: rgb(125, 80, 223);
219 --sk-button-background-hover: #875ee2;
220 --sk-button-background-active: #734acd;
221 --sk-button-color: rgb(255, 255, 255);
222 --sk-button-disabled-opacity: .32
223}
224
225.theme-podcasts .base-button--secondary {
226 --sk-button-background: rgb(232, 232, 237);
227 --sk-button-background-hover: #eaeaee;
228 --sk-button-background-active: #d5d5da;
229 --sk-button-color: rgb(125, 80, 223);
230 --sk-button-disabled-opacity: .32
231}
232
233.base-footer {
234 background-color: #f2f2f2;
235 display: flex;
236 align-items: center;
237 min-height: 60px;
238 width:100%
239}
240
241.base-footer__copyright {
242 font-size: .75rem;
243 color: #888;
244 text-align: center;
245 width:100%
246}
247
248.base-content-wrapper {
249 display: flex;
250 flex-direction: column;
251 justify-content: space-between;
252 align-items: center;
253 height:100%
254}
255
256.base-content-wrapper__content {
257 height: 100%;
258 display: flex;
259 flex-direction: column;
260 justify-content: center;
261 min-height: 320px;
262 padding: 10px 0;
263 align-items: center;
264 max-width: 452px;
265 min-width: 320px;
266 text-align:center
267}
268
269.base-content-wrapper__title {
270 margin-top: 12px;
271 margin-bottom: 8px;
272 color:#1d1d1f
273}
274
275.base-content-wrapper__description {
276 color: #6e6e73;
277 margin-top:0
278}
279
280:not(.base-content-wrapper__title) + .base-content-wrapper__description {
281 margin-top:12px
282}
283
284.base-content-wrapper__button-container {
285 margin-top: 32px;
286 display: flex;
287 flex-direction:column
288}
289
290.base-content-wrapper__title:empty, .base-content-wrapper__description:empty, .base-content-wrapper__button-container:empty {
291 display:none
292}
293
294.base-content-wrapper__button {
295 flex: 1 1 auto;
296 margin:auto
297}
298
299.base-content-wrapper__button + .base-content-wrapper__button {
300 margin-top: 8px;
301 margin-left:0
302}
303
304@media only screen and (max-width: 415px),(max-height: 375px) {
305 .base-content-wrapper__apple-icon-wrapper {
306 margin-left: 18px;
307 margin-top: 18px;
308 display:none
309 }
310
311 .base-content-wrapper__content {
312 padding:10px 30px
313 }
314}
315
316@media only screen and (orientation: landscape) and(max-height: 414px) {
317 .base-content-wrapper__content {
318 justify-content: center;
319 padding:0
320 }
321
322 .base-content-wrapper__apple-icon-wrapper {
323 display:none
324 }
325}
326
327.error-view {
328 display: flex;
329 flex-direction: column;
330 justify-content: space-between;
331 align-items: center;
332 height:100%
333}
334
335.error-view__content {
336 height: 100%;
337 display: flex;
338 flex-direction: column;
339 justify-content: center;
340 min-height: 320px;
341 padding-top: 10px;
342 padding-bottom: 10px;
343 align-items: center;
344 max-width: 300px;
345 color: #333;
346 text-align:center
347}
348
349.error-view__title {
350 margin-top: 12px;
351 margin-bottom: 8px;
352 color:#1d1d1f
353}
354
355.error-view__description {
356 color: #6e6e73;
357 margin-top:0
358}
359
360.error-view__button-container {
361 display: flex;
362 margin-top:32px
363}
364
365.privacy-summary {
366 text-align: center;
367 max-width: 320px;
368 margin-top:15px
369}
370
371.privacy-summary__link-container {
372 margin-top: 2px;
373 line-height: 16px;
374 margin-bottom:13px
375}
376
377.privacy-summary__link-intro {
378 color:#86868b
379}
380
381.privacy-summary__link-text {
382 display:block
383}
384
385.theme-music .privacy-summary__link-text {
386 color:var(--music-key-color)
387}
388
389.theme-podcasts .privacy-summary__link-text {
390 color:#7d50df
391}
392
393.privacy-summary__link-text--margin-top {
394 margin-top:4px
395}
396
397@media only screen and (max-width: 359px) {
398 .privacy-summary {
399 max-width:300px
400 }
401}
402
403@media only screen and (orientation: landscape) and(max-height: 414px) {
404 .privacy-summary {
405 flex-direction: row;
406 justify-content:center
407 }
408
409 .privacy-summary__link-container {
410 flex:1 1 auto
411 }
412}
413
414.base-authorization-request__arrows {
415 -webkit-mask-repeat: no-repeat;
416 mask-repeat: no-repeat;
417 -webkit-mask-size: 100%;
418 mask-size: 100%;
419 -webkit-mask-position: center;
420 mask-position: center;
421 -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 30"><g><polygon points="10.686 20.191 13.423 23 0 23 0 25 13.388 25 10.65 27.899 12.016 29.292 16.049 25.04 16.125 24.961 17 24.048 16.125 23.132 16.049 23.053 12.016 18.8"/><polygon points="4.973 .8 .948 5.054 .873 5.133 0 6.048 .873 6.962 .948 7.041 4.973 11.292 6.337 9.899 3.605 7 16.965 7 16.965 5 3.569 5 6.301 2.191"/></g></svg>');
422 mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 30"><g><polygon points="10.686 20.191 13.423 23 0 23 0 25 13.388 25 10.65 27.899 12.016 29.292 16.049 25.04 16.125 24.961 17 24.048 16.125 23.132 16.049 23.053 12.016 18.8"/><polygon points="4.973 .8 .948 5.054 .873 5.133 0 6.048 .873 6.962 .948 7.041 4.973 11.292 6.337 9.899 3.605 7 16.965 7 16.965 5 3.569 5 6.301 2.191"/></g></svg>')
423}
424
425.base-authorization-request__icons-container {
426 display: flex;
427 justify-content: center;
428 align-items:center
429}
430
431.base-authorization-request__icon {
432 width:100px
433}
434
435.base-authorization-request__arrows {
436 position: relative;
437 bottom: 10px;
438 width: 18px;
439 height: 33px;
440 background-color:#636366
441}
442
443.base-authorization-request__checkbox-container {
444 align-items: flex-start;
445 color: #6e6e73;
446 display: flex;
447 gap: 12px;
448 margin: 48px 16px 0;
449 text-align:start
450}
451
452.base-authorization-request__checkbox-container__input {
453 flex-shrink: 0;
454 width: 20px;
455 height: 20px;
456 margin-top:2px
457}
458
459@media only screen and (orientation: landscape) and(max-height: 414px) {
460 .base-authorization-request__icons-container {
461 margin-top: 5px
462 }
463}
464
465body, p, ul {
466 margin: 0;
467 padding:0
468}
469
470ul {
471 list-style-type:none
472}
473
474button {
475 border: none;
476 outline: none;
477 text-decoration:none
478}
479
480* {
481 box-sizing:border-box
482}
483
484.is-rtl {
485 direction:rtl
486}
487
488:root {
489 --music-key-color: rgb(250 35 59 / 100%)
490}
491
492@media (prefers-color-scheme: dark) {
493 :root {
494 --music-key-color: rgb(250 45 72 / 100%)
495 }
496}
497
498html {
499 -ms-text-size-adjust: 100%;
500 -webkit-text-size-adjust:100%
501}
502
503body {
504 margin: 0;
505 padding:0
506}
507
508ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, hgroup, p, blockquote, figure, form, fieldset, input, legend, pre, abbr, button {
509 margin: 0;
510 padding:0
511}
512
513pre, code, address, caption, th, figcaption {
514 font-size: 1em;
515 font-weight: 400;
516 font-style:normal
517}
518
519fieldset, iframe {
520 border:0
521}
522
523caption, th {
524 text-align:left
525}
526
527table {
528 border-collapse: collapse;
529 border-spacing:0
530}
531
532main, summary, details {
533 display:block
534}
535
536audio, canvas, video, progress {
537 vertical-align:baseline
538}
539
540button {
541 background: none;
542 border: 0;
543 box-sizing: content-box;
544 color: inherit;
545 cursor: pointer;
546 font: inherit;
547 line-height: inherit;
548 overflow: visible;
549 vertical-align:inherit
550}
551
552button:disabled {
553 cursor:default
554}
555
556:focus {
557 outline: 4px solid rgba(0, 125, 250, .6);
558 outline-offset:1px
559}
560
561:focus[data-focus-method=mouse]:not(input):not(textarea):not(select), :focus[data-focus-method=touch]:not(input):not(textarea):not(select) {
562 outline:none
563}
564
565::-moz-focus-inner {
566 border: 0;
567 padding:0
568}
569
570:root {
571 --sk-body-text-color: rgb(29, 29, 31);
572 --sk-headline-text-color: rgb(29, 29, 31);
573 --sk-body-background-color: rgb(255, 255, 255);
574 --sk-body-font-stack: text;
575 --sk-default-stacked-margin: .4em;
576 --sk-paragraph-plus-element-margin: .8em;
577 --sk-headline-plus-first-element-margin: .8em;
578 --sk-headline-plus-headline-margin: .4em;
579 --sk-paragraph-plus-headline-margin: 1.6em
580}
581
582html {
583 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif;
584 font-size: 106.25%;
585 quotes: "\201c" "\201d"
586}
587
588[lang]:lang(ar) {
589 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
590}
591
592[lang]:lang(ja) {
593 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
594}
595
596[lang]:lang(ko) {
597 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
598}
599
600[lang]:lang(th) {
601 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
602}
603
604[lang]:lang(zh-CN) {
605 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
606}
607
608[lang]:lang(zh-HK) {
609 font-family:-apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
610}
611
612[lang]:lang(zh-MO) {
613 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
614}
615
616[lang]:lang(zh-TW) {
617 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
618}
619
620:lang(cs) {
621 quotes: "\201e" "\201c"
622}
623
624:lang(de) {
625 quotes: "\201e" "\201c"
626}
627
628:lang(de-CH) {
629 quotes: "\ab" "\bb"
630}
631
632:lang(de-LI) {
633 quotes: "\ab" "\bb"
634}
635
636:lang(fr) {
637 quotes: "\ab\a0" "\a0\bb"
638}
639
640:lang(fr-CH) {
641 quotes: "\ab" "\bb"
642}
643
644:lang(es-ES) {
645 quotes: "\ab" "\bb"
646}
647
648:lang(hu) {
649 quotes: "\201e" "\201c"
650}
651
652:lang(ja-JP) {
653 quotes: "\300c" "\300d"
654}
655
656:lang(no-NO) {
657 quotes: "\ab" "\bb"
658}
659
660:lang(lt) {
661 quotes: "\201e" "\201c"
662}
663
664:lang(pl) {
665 quotes: "\201e" "\201c"
666}
667
668:lang(ru) {
669 quotes: "\ab " " \bb"
670}
671
672:lang(zh) {
673 quotes: "\300c" "\300d"
674}
675
676:lang(zh-CN) {
677 quotes: "\201c" "\201d"
678}
679
680body {
681 font-size: 17px;
682 line-height: 1.4705882353;
683 font-weight: 400;
684 letter-spacing: -.022em;
685 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif;
686 background-color: var(--sk-body-background-color, rgb(255, 255, 255));
687 color: var(--sk-body-text-color, rgb(29, 29, 31));
688 font-style:normal
689}
690
691body:lang(ar) {
692 letter-spacing: 0em;
693 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
694}
695
696body:lang(ja) {
697 letter-spacing: 0em;
698 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
699}
700
701body:lang(ko) {
702 line-height: 1.5882352941;
703 letter-spacing: 0em;
704 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
705}
706
707body:lang(zh) {
708 letter-spacing:0em
709}
710
711body:lang(th) {
712 line-height: 1.3529611765;
713 letter-spacing: 0em;
714 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
715}
716
717body:lang(zh-CN) {
718 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
719}
720
721body:lang(zh-HK) {
722 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
723}
724
725body:lang(zh-MO) {
726 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
727}
728
729body:lang(zh-TW) {
730 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
731}
732
733body, input, textarea, select, button {
734 font-synthesis: none;
735 -webkit-font-smoothing: antialiased;
736 -moz-osx-font-smoothing:grayscale
737}
738
739h1, h2, h3, h4, h5, h6 {
740 font-weight: 600;
741 color:var(--sk-headline-text-color, rgb(29, 29, 31))
742}
743
744h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
745 display: block;
746 margin:0
747}
748
749h1 + *, h2 + *, h3 + *, h4 + *, h5 + *, h6 + * {
750 margin-top:var(--sk-headline-plus-first-element-margin, .8em)
751}
752
753h1 + h1, h1 + h2, h1 + h3, h1 + h4, h1 + h5, h1 + h6, h2 + h1, h2 + h2, h2 + h3, h2 + h4, h2 + h5, h2 + h6, h3 + h1, h3 + h2, h3 + h3, h3 + h4, h3 + h5, h3 + h6, h4 + h1, h4 + h2, h4 + h3, h4 + h4, h4 + h5, h4 + h6, h5 + h1, h5 + h2, h5 + h3, h5 + h4, h5 + h5, h5 + h6, h6 + h1, h6 + h2, h6 + h3, h6 + h4, h6 + h5, h6 + h6 {
754 margin-top:var(--sk-headline-plus-headline-margin, .4em)
755}
756
757p + h1, ul + h1, ol + h1, p + h2, ul + h2, ol + h2, p + h3, ul + h3, ol + h3, p + h4, ul + h4, ol + h4, p + h5, ul + h5, ol + h5, p + h6, ul + h6, ol + h6 {
758 margin-top:var(--sk-paragraph-plus-headline-margin, 1.6em)
759}
760
761.heading-collapsed + * {
762 margin-top:0
763}
764
765p + *, ul + *, ol + * {
766 margin-top:var(--sk-paragraph-plus-element-margin, .8em)
767}
768
769ul, ol {
770 margin-inline-start:1.1764705882em
771}
772
773ul ul, ul ol, ol ul, ol ol {
774 margin-top: 0;
775 margin-bottom:0
776}
777
778nav ul, nav ol {
779 margin: 0;
780 list-style:none
781}
782
783li li {
784 font-size:1em
785}
786
787b, strong {
788 font-weight:600
789}
790
791em, i, cite, dfn {
792 font-style:italic
793}
794
795abbr {
796 border:0
797}
798
799:lang(ja), :lang(ko), :lang(th), :lang(zh) {
800 font-style:normal
801}
802
803:lang(ko) {
804 word-break:keep-all
805}
806
807:root {
808 --sk-body-link-color: rgb(0, 102, 204);
809 --sk-link-disabled-opacity: .32
810}
811
812a {
813 color: var(--sk-body-link-color, rgb(0, 102, 204));
814 letter-spacing:inherit
815}
816
817a:link, a:visited {
818 text-decoration:none
819}
820
821a:hover {
822 text-decoration:underline
823}
824
825a:active {
826 text-decoration:none
827}
828
829a:disabled {
830 opacity:var(--sk-link-disabled-opacity, .32)
831}
832
833.justify-content-start {
834 justify-content:flex-start
835}
836
837.justify-content-end {
838 justify-content:flex-end
839}
840
841.justify-content-center {
842 justify-content:center
843}
844
845.justify-content-spacebetween {
846 justify-content:space-between
847}
848
849.justify-content-spacearound {
850 justify-content:space-around
851}
852
853.justify-content-spaceevenly {
854 justify-content:space-evenly
855}
856
857.align-items-start {
858 align-items:flex-start
859}
860
861.align-items-center {
862 align-items:center
863}
864
865.align-items-end {
866 align-items:flex-end
867}
868
869.align-self-start {
870 align-self:flex-start
871}
872
873.align-self-center {
874 align-self:center
875}
876
877.align-self-end {
878 align-self:flex-end
879}
880
881.large-justify-content-start {
882 justify-content:flex-start
883}
884
885.large-justify-content-end {
886 justify-content:flex-end
887}
888
889.large-justify-content-center {
890 justify-content:center
891}
892
893.large-justify-content-spacebetween {
894 justify-content:space-between
895}
896
897.large-justify-content-spacearound {
898 justify-content:space-around
899}
900
901.large-justify-content-spaceevenly {
902 justify-content:space-evenly
903}
904
905.large-align-items-start {
906 align-items:flex-start
907}
908
909.large-align-items-center {
910 align-items:center
911}
912
913.large-align-items-end {
914 align-items:flex-end
915}
916
917.large-align-self-start {
918 align-self:flex-start
919}
920
921.large-align-self-center {
922 align-self:center
923}
924
925.large-align-self-end {
926 align-self:flex-end
927}
928
929@media only screen and (min-width: 1441px) {
930 .xlarge-justify-content-start {
931 justify-content:flex-start
932 }
933
934 .xlarge-justify-content-end {
935 justify-content:flex-end
936 }
937
938 .xlarge-justify-content-center {
939 justify-content:center
940 }
941
942 .xlarge-justify-content-spacebetween {
943 justify-content:space-between
944 }
945
946 .xlarge-justify-content-spacearound {
947 justify-content:space-around
948 }
949
950 .xlarge-justify-content-spaceevenly {
951 justify-content:space-evenly
952 }
953
954 .xlarge-align-items-start {
955 align-items:flex-start
956 }
957
958 .xlarge-align-items-center {
959 align-items:center
960 }
961
962 .xlarge-align-items-end {
963 align-items:flex-end
964 }
965
966 .xlarge-align-self-start {
967 align-self:flex-start
968 }
969
970 .xlarge-align-self-center {
971 align-self:center
972 }
973
974 .xlarge-align-self-end {
975 align-self:flex-end
976 }
977}
978
979@media only screen and (max-width: 1068px) {
980 .medium-justify-content-start {
981 justify-content:flex-start
982 }
983
984 .medium-justify-content-end {
985 justify-content:flex-end
986 }
987
988 .medium-justify-content-center {
989 justify-content:center
990 }
991
992 .medium-justify-content-spacebetween {
993 justify-content:space-between
994 }
995
996 .medium-justify-content-spacearound {
997 justify-content:space-around
998 }
999
1000 .medium-justify-content-spaceevenly {
1001 justify-content:space-evenly
1002 }
1003
1004 .medium-align-items-start {
1005 align-items:flex-start
1006 }
1007
1008 .medium-align-items-center {
1009 align-items:center
1010 }
1011
1012 .medium-align-items-end {
1013 align-items:flex-end
1014 }
1015
1016 .medium-align-self-start {
1017 align-self:flex-start
1018 }
1019
1020 .medium-align-self-center {
1021 align-self:center
1022 }
1023
1024 .medium-align-self-end {
1025 align-self:flex-end
1026 }
1027}
1028
1029@media only screen and (max-width: 734px) {
1030 .small-justify-content-start {
1031 justify-content:flex-start
1032 }
1033
1034 .small-justify-content-end {
1035 justify-content:flex-end
1036 }
1037
1038 .small-justify-content-center {
1039 justify-content:center
1040 }
1041
1042 .small-justify-content-spacebetween {
1043 justify-content:space-between
1044 }
1045
1046 .small-justify-content-spacearound {
1047 justify-content:space-around
1048 }
1049
1050 .small-justify-content-spaceevenly {
1051 justify-content:space-evenly
1052 }
1053
1054 .small-align-items-start {
1055 align-items:flex-start
1056 }
1057
1058 .small-align-items-center {
1059 align-items:center
1060 }
1061
1062 .small-align-items-end {
1063 align-items:flex-end
1064 }
1065
1066 .small-align-self-start {
1067 align-self:flex-start
1068 }
1069
1070 .small-align-self-center {
1071 align-self:center
1072 }
1073
1074 .small-align-self-end {
1075 align-self:flex-end
1076 }
1077}
1078
1079.selfclear:before, .selfclear:after {
1080 content: " ";
1081 display:table
1082}
1083
1084.selfclear:after {
1085 clear:both
1086}
1087
1088.visuallyhidden {
1089 position: absolute;
1090 clip: rect(1px, 1px, 1px, 1px);
1091 -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
1092 clip-path: inset(0px 0px 99.9% 99.9%);
1093 overflow: hidden;
1094 height: 1px;
1095 width: 1px;
1096 padding: 0;
1097 border:0
1098}
1099
1100@media only screen and (inverted-colors) {
1101 .no-inversion {
1102 filter:invert(1)
1103 }
1104}
1105
1106.nowrap {
1107 display: inline-block;
1108 text-decoration: inherit;
1109 white-space:nowrap
1110}
1111
1112.clear {
1113 clear:both
1114}
1115
1116.cursor-grab {
1117 cursor: move;
1118 cursor:grab
1119}
1120
1121.cursor-grabbing {
1122 cursor: move;
1123 cursor:grabbing
1124}
1125
1126:root {
1127 --sk-footnote-font-size: .6em;
1128 --sk-footnote-offset-top: -.5em
1129}
1130
1131sup, sub {
1132 position: relative;
1133 font-size: var(--sk-footnote-font-size, .6em);
1134 vertical-align:baseline
1135}
1136
1137sup {
1138 top:var(--sk-footnote-offset-top, -.5em)
1139}
1140
1141sub {
1142 bottom:-.25em
1143}
1144
1145.row {
1146 display: flex;
1147 flex-wrap: wrap;
1148 flex-direction: row;
1149 width:100%
1150}
1151
1152.row-reverse {
1153 flex-direction:row-reverse
1154}
1155
1156.column {
1157 box-sizing: border-box;
1158 margin: 0;
1159 padding: 0;
1160 min-width:0px
1161}
1162
1163.large-offset-0 {
1164 margin-left:0
1165}
1166
1167.large-order-0 {
1168 order:0
1169}
1170
1171.large-1 {
1172 flex-basis: 8.3333333333%;
1173 max-width:8.3333333333%
1174}
1175
1176.large-offset-1 {
1177 margin-left:8.3333333333%
1178}
1179
1180.large-order-1 {
1181 order:1
1182}
1183
1184.large-2 {
1185 flex-basis: 16.6666666667%;
1186 max-width:16.6666666667%
1187}
1188
1189.large-offset-2 {
1190 margin-left:16.6666666667%
1191}
1192
1193.large-order-2 {
1194 order:2
1195}
1196
1197.large-3 {
1198 flex-basis: 25%;
1199 max-width:25%
1200}
1201
1202.large-offset-3 {
1203 margin-left:25%
1204}
1205
1206.large-order-3 {
1207 order:3
1208}
1209
1210.large-4 {
1211 flex-basis: 33.3333333333%;
1212 max-width:33.3333333333%
1213}
1214
1215.large-offset-4 {
1216 margin-left:33.3333333333%
1217}
1218
1219.large-order-4 {
1220 order:4
1221}
1222
1223.large-5 {
1224 flex-basis: 41.6666666667%;
1225 max-width:41.6666666667%
1226}
1227
1228.large-offset-5 {
1229 margin-left:41.6666666667%
1230}
1231
1232.large-order-5 {
1233 order:5
1234}
1235
1236.large-6 {
1237 flex-basis: 50%;
1238 max-width:50%
1239}
1240
1241.large-offset-6 {
1242 margin-left:50%
1243}
1244
1245.large-order-6 {
1246 order:6
1247}
1248
1249.large-7 {
1250 flex-basis: 58.3333333333%;
1251 max-width:58.3333333333%
1252}
1253
1254.large-offset-7 {
1255 margin-left:58.3333333333%
1256}
1257
1258.large-order-7 {
1259 order:7
1260}
1261
1262.large-8 {
1263 flex-basis: 66.6666666667%;
1264 max-width:66.6666666667%
1265}
1266
1267.large-offset-8 {
1268 margin-left:66.6666666667%
1269}
1270
1271.large-order-8 {
1272 order:8
1273}
1274
1275.large-9 {
1276 flex-basis: 75%;
1277 max-width:75%
1278}
1279
1280.large-offset-9 {
1281 margin-left:75%
1282}
1283
1284.large-order-9 {
1285 order:9
1286}
1287
1288.large-10 {
1289 flex-basis: 83.3333333333%;
1290 max-width:83.3333333333%
1291}
1292
1293.large-offset-10 {
1294 margin-left:83.3333333333%
1295}
1296
1297.large-order-10 {
1298 order:10
1299}
1300
1301.large-11 {
1302 flex-basis: 91.6666666667%;
1303 max-width:91.6666666667%
1304}
1305
1306.large-offset-11 {
1307 margin-left:91.6666666667%
1308}
1309
1310.large-order-11 {
1311 order:11
1312}
1313
1314.large-12 {
1315 flex-basis: 100%;
1316 max-width:100%
1317}
1318
1319.large-offset-12 {
1320 margin-left:100%
1321}
1322
1323.large-order-12 {
1324 order:12
1325}
1326
1327.large-centered {
1328 margin-left: auto;
1329 margin-right:auto
1330}
1331
1332.large-uncentered {
1333 margin-left: 0;
1334 margin-right:0
1335}
1336
1337.large-last {
1338 margin-left:auto
1339}
1340
1341.large-notlast {
1342 margin-left:0
1343}
1344
1345.large-grow {
1346 flex: auto;
1347 max-width:initial
1348}
1349
1350.large-ungrow {
1351 flex: initial;
1352 max-width:initial
1353}
1354
1355@media only screen and (min-width: 1441px) {
1356 .xlarge-offset-0 {
1357 margin-left:0
1358 }
1359
1360 .xlarge-order-0 {
1361 order:0
1362 }
1363
1364 .xlarge-1 {
1365 flex-basis: 8.3333333333%;
1366 max-width:8.3333333333%
1367 }
1368
1369 .xlarge-offset-1 {
1370 margin-left:8.3333333333%
1371 }
1372
1373 .xlarge-order-1 {
1374 order:1
1375 }
1376
1377 .xlarge-2 {
1378 flex-basis: 16.6666666667%;
1379 max-width:16.6666666667%
1380 }
1381
1382 .xlarge-offset-2 {
1383 margin-left:16.6666666667%
1384 }
1385
1386 .xlarge-order-2 {
1387 order:2
1388 }
1389
1390 .xlarge-3 {
1391 flex-basis: 25%;
1392 max-width:25%
1393 }
1394
1395 .xlarge-offset-3 {
1396 margin-left:25%
1397 }
1398
1399 .xlarge-order-3 {
1400 order:3
1401 }
1402
1403 .xlarge-4 {
1404 flex-basis: 33.3333333333%;
1405 max-width:33.3333333333%
1406 }
1407
1408 .xlarge-offset-4 {
1409 margin-left:33.3333333333%
1410 }
1411
1412 .xlarge-order-4 {
1413 order:4
1414 }
1415
1416 .xlarge-5 {
1417 flex-basis: 41.6666666667%;
1418 max-width:41.6666666667%
1419 }
1420
1421 .xlarge-offset-5 {
1422 margin-left:41.6666666667%
1423 }
1424
1425 .xlarge-order-5 {
1426 order:5
1427 }
1428
1429 .xlarge-6 {
1430 flex-basis: 50%;
1431 max-width:50%
1432 }
1433
1434 .xlarge-offset-6 {
1435 margin-left:50%
1436 }
1437
1438 .xlarge-order-6 {
1439 order:6
1440 }
1441
1442 .xlarge-7 {
1443 flex-basis: 58.3333333333%;
1444 max-width:58.3333333333%
1445 }
1446
1447 .xlarge-offset-7 {
1448 margin-left:58.3333333333%
1449 }
1450
1451 .xlarge-order-7 {
1452 order:7
1453 }
1454
1455 .xlarge-8 {
1456 flex-basis: 66.6666666667%;
1457 max-width:66.6666666667%
1458 }
1459
1460 .xlarge-offset-8 {
1461 margin-left:66.6666666667%
1462 }
1463
1464 .xlarge-order-8 {
1465 order:8
1466 }
1467
1468 .xlarge-9 {
1469 flex-basis: 75%;
1470 max-width:75%
1471 }
1472
1473 .xlarge-offset-9 {
1474 margin-left:75%
1475 }
1476
1477 .xlarge-order-9 {
1478 order:9
1479 }
1480
1481 .xlarge-10 {
1482 flex-basis: 83.3333333333%;
1483 max-width:83.3333333333%
1484 }
1485
1486 .xlarge-offset-10 {
1487 margin-left:83.3333333333%
1488 }
1489
1490 .xlarge-order-10 {
1491 order:10
1492 }
1493
1494 .xlarge-11 {
1495 flex-basis: 91.6666666667%;
1496 max-width:91.6666666667%
1497 }
1498
1499 .xlarge-offset-11 {
1500 margin-left:91.6666666667%
1501 }
1502
1503 .xlarge-order-11 {
1504 order:11
1505 }
1506
1507 .xlarge-12 {
1508 flex-basis: 100%;
1509 max-width:100%
1510 }
1511
1512 .xlarge-offset-12 {
1513 margin-left:100%
1514 }
1515
1516 .xlarge-order-12 {
1517 order:12
1518 }
1519
1520 .xlarge-centered {
1521 margin-left: auto;
1522 margin-right:auto
1523 }
1524
1525 .xlarge-uncentered {
1526 margin-left: 0;
1527 margin-right:0
1528 }
1529
1530 .xlarge-last {
1531 margin-left:auto
1532 }
1533
1534 .xlarge-notlast {
1535 margin-left:0
1536 }
1537
1538 .xlarge-grow {
1539 flex: auto;
1540 max-width:initial
1541 }
1542
1543 .xlarge-ungrow {
1544 flex: initial;
1545 max-width:initial
1546 }
1547}
1548
1549@media only screen and (max-width: 1068px) {
1550 .medium-offset-0 {
1551 margin-left:0
1552 }
1553
1554 .medium-order-0 {
1555 order:0
1556 }
1557
1558 .medium-1 {
1559 flex-basis: 8.3333333333%;
1560 max-width:8.3333333333%
1561 }
1562
1563 .medium-offset-1 {
1564 margin-left:8.3333333333%
1565 }
1566
1567 .medium-order-1 {
1568 order:1
1569 }
1570
1571 .medium-2 {
1572 flex-basis: 16.6666666667%;
1573 max-width:16.6666666667%
1574 }
1575
1576 .medium-offset-2 {
1577 margin-left:16.6666666667%
1578 }
1579
1580 .medium-order-2 {
1581 order:2
1582 }
1583
1584 .medium-3 {
1585 flex-basis: 25%;
1586 max-width:25%
1587 }
1588
1589 .medium-offset-3 {
1590 margin-left:25%
1591 }
1592
1593 .medium-order-3 {
1594 order:3
1595 }
1596
1597 .medium-4 {
1598 flex-basis: 33.3333333333%;
1599 max-width:33.3333333333%
1600 }
1601
1602 .medium-offset-4 {
1603 margin-left:33.3333333333%
1604 }
1605
1606 .medium-order-4 {
1607 order:4
1608 }
1609
1610 .medium-5 {
1611 flex-basis: 41.6666666667%;
1612 max-width:41.6666666667%
1613 }
1614
1615 .medium-offset-5 {
1616 margin-left:41.6666666667%
1617 }
1618
1619 .medium-order-5 {
1620 order:5
1621 }
1622
1623 .medium-6 {
1624 flex-basis: 50%;
1625 max-width:50%
1626 }
1627
1628 .medium-offset-6 {
1629 margin-left:50%
1630 }
1631
1632 .medium-order-6 {
1633 order:6
1634 }
1635
1636 .medium-7 {
1637 flex-basis: 58.3333333333%;
1638 max-width:58.3333333333%
1639 }
1640
1641 .medium-offset-7 {
1642 margin-left:58.3333333333%
1643 }
1644
1645 .medium-order-7 {
1646 order:7
1647 }
1648
1649 .medium-8 {
1650 flex-basis: 66.6666666667%;
1651 max-width:66.6666666667%
1652 }
1653
1654 .medium-offset-8 {
1655 margin-left:66.6666666667%
1656 }
1657
1658 .medium-order-8 {
1659 order:8
1660 }
1661
1662 .medium-9 {
1663 flex-basis: 75%;
1664 max-width:75%
1665 }
1666
1667 .medium-offset-9 {
1668 margin-left:75%
1669 }
1670
1671 .medium-order-9 {
1672 order:9
1673 }
1674
1675 .medium-10 {
1676 flex-basis: 83.3333333333%;
1677 max-width:83.3333333333%
1678 }
1679
1680 .medium-offset-10 {
1681 margin-left:83.3333333333%
1682 }
1683
1684 .medium-order-10 {
1685 order:10
1686 }
1687
1688 .medium-11 {
1689 flex-basis: 91.6666666667%;
1690 max-width:91.6666666667%
1691 }
1692
1693 .medium-offset-11 {
1694 margin-left:91.6666666667%
1695 }
1696
1697 .medium-order-11 {
1698 order:11
1699 }
1700
1701 .medium-12 {
1702 flex-basis: 100%;
1703 max-width:100%
1704 }
1705
1706 .medium-offset-12 {
1707 margin-left:100%
1708 }
1709
1710 .medium-order-12 {
1711 order:12
1712 }
1713
1714 .medium-centered {
1715 margin-left: auto;
1716 margin-right:auto
1717 }
1718
1719 .medium-uncentered {
1720 margin-left: 0;
1721 margin-right:0
1722 }
1723
1724 .medium-last {
1725 margin-left:auto
1726 }
1727
1728 .medium-notlast {
1729 margin-left:0
1730 }
1731
1732 .medium-grow {
1733 flex: auto;
1734 max-width:initial
1735 }
1736
1737 .medium-ungrow {
1738 flex: initial;
1739 max-width:initial
1740 }
1741}
1742
1743@media only screen and (max-width: 734px) {
1744 .small-offset-0 {
1745 margin-left:0
1746 }
1747
1748 .small-order-0 {
1749 order:0
1750 }
1751
1752 .small-1 {
1753 flex-basis: 8.3333333333%;
1754 max-width:8.3333333333%
1755 }
1756
1757 .small-offset-1 {
1758 margin-left:8.3333333333%
1759 }
1760
1761 .small-order-1 {
1762 order:1
1763 }
1764
1765 .small-2 {
1766 flex-basis: 16.6666666667%;
1767 max-width:16.6666666667%
1768 }
1769
1770 .small-offset-2 {
1771 margin-left:16.6666666667%
1772 }
1773
1774 .small-order-2 {
1775 order:2
1776 }
1777
1778 .small-3 {
1779 flex-basis: 25%;
1780 max-width:25%
1781 }
1782
1783 .small-offset-3 {
1784 margin-left:25%
1785 }
1786
1787 .small-order-3 {
1788 order:3
1789 }
1790
1791 .small-4 {
1792 flex-basis: 33.3333333333%;
1793 max-width:33.3333333333%
1794 }
1795
1796 .small-offset-4 {
1797 margin-left:33.3333333333%
1798 }
1799
1800 .small-order-4 {
1801 order:4
1802 }
1803
1804 .small-5 {
1805 flex-basis: 41.6666666667%;
1806 max-width:41.6666666667%
1807 }
1808
1809 .small-offset-5 {
1810 margin-left:41.6666666667%
1811 }
1812
1813 .small-order-5 {
1814 order:5
1815 }
1816
1817 .small-6 {
1818 flex-basis: 50%;
1819 max-width:50%
1820 }
1821
1822 .small-offset-6 {
1823 margin-left:50%
1824 }
1825
1826 .small-order-6 {
1827 order:6
1828 }
1829
1830 .small-7 {
1831 flex-basis: 58.3333333333%;
1832 max-width:58.3333333333%
1833 }
1834
1835 .small-offset-7 {
1836 margin-left:58.3333333333%
1837 }
1838
1839 .small-order-7 {
1840 order:7
1841 }
1842
1843 .small-8 {
1844 flex-basis: 66.6666666667%;
1845 max-width:66.6666666667%
1846 }
1847
1848 .small-offset-8 {
1849 margin-left:66.6666666667%
1850 }
1851
1852 .small-order-8 {
1853 order:8
1854 }
1855
1856 .small-9 {
1857 flex-basis: 75%;
1858 max-width:75%
1859 }
1860
1861 .small-offset-9 {
1862 margin-left:75%
1863 }
1864
1865 .small-order-9 {
1866 order:9
1867 }
1868
1869 .small-10 {
1870 flex-basis: 83.3333333333%;
1871 max-width:83.3333333333%
1872 }
1873
1874 .small-offset-10 {
1875 margin-left:83.3333333333%
1876 }
1877
1878 .small-order-10 {
1879 order:10
1880 }
1881
1882 .small-11 {
1883 flex-basis: 91.6666666667%;
1884 max-width:91.6666666667%
1885 }
1886
1887 .small-offset-11 {
1888 margin-left:91.6666666667%
1889 }
1890
1891 .small-order-11 {
1892 order:11
1893 }
1894
1895 .small-12 {
1896 flex-basis: 100%;
1897 max-width:100%
1898 }
1899
1900 .small-offset-12 {
1901 margin-left:100%
1902 }
1903
1904 .small-order-12 {
1905 order:12
1906 }
1907
1908 .small-centered {
1909 margin-left: auto;
1910 margin-right:auto
1911 }
1912
1913 .small-uncentered {
1914 margin-left: 0;
1915 margin-right:0
1916 }
1917
1918 .small-last {
1919 margin-left:auto
1920 }
1921
1922 .small-notlast {
1923 margin-left:0
1924 }
1925
1926 .small-grow {
1927 flex: auto;
1928 max-width:initial
1929 }
1930
1931 .small-ungrow {
1932 flex: initial;
1933 max-width:initial
1934 }
1935}
1936
1937.row-reverse .column {
1938 box-sizing: border-box;
1939 margin: 0;
1940 padding: 0;
1941 min-width:0px
1942}
1943
1944.row-reverse .large-offset-0 {
1945 margin-right:0
1946}
1947
1948.row-reverse .large-offset-1 {
1949 margin-right:8.3333333333%
1950}
1951
1952.row-reverse .large-offset-2 {
1953 margin-right:16.6666666667%
1954}
1955
1956.row-reverse .large-offset-3 {
1957 margin-right:25%
1958}
1959
1960.row-reverse .large-offset-4 {
1961 margin-right:33.3333333333%
1962}
1963
1964.row-reverse .large-offset-5 {
1965 margin-right:41.6666666667%
1966}
1967
1968.row-reverse .large-offset-6 {
1969 margin-right:50%
1970}
1971
1972.row-reverse .large-offset-7 {
1973 margin-right:58.3333333333%
1974}
1975
1976.row-reverse .large-offset-8 {
1977 margin-right:66.6666666667%
1978}
1979
1980.row-reverse .large-offset-9 {
1981 margin-right:75%
1982}
1983
1984.row-reverse .large-offset-10 {
1985 margin-right:83.3333333333%
1986}
1987
1988.row-reverse .large-offset-11 {
1989 margin-right:91.6666666667%
1990}
1991
1992.row-reverse .large-offset-12 {
1993 margin-right:100%
1994}
1995
1996.row-reverse .large-last {
1997 margin-right:auto
1998}
1999
2000.row-reverse .large-notlast {
2001 margin-right:0
2002}
2003
2004@media only screen and (min-width: 1441px) {
2005 .row-reverse .xlarge-offset-0 {
2006 margin-right:0
2007 }
2008
2009 .row-reverse .xlarge-offset-1 {
2010 margin-right:8.3333333333%
2011 }
2012
2013 .row-reverse .xlarge-offset-2 {
2014 margin-right:16.6666666667%
2015 }
2016
2017 .row-reverse .xlarge-offset-3 {
2018 margin-right:25%
2019 }
2020
2021 .row-reverse .xlarge-offset-4 {
2022 margin-right:33.3333333333%
2023 }
2024
2025 .row-reverse .xlarge-offset-5 {
2026 margin-right:41.6666666667%
2027 }
2028
2029 .row-reverse .xlarge-offset-6 {
2030 margin-right:50%
2031 }
2032
2033 .row-reverse .xlarge-offset-7 {
2034 margin-right:58.3333333333%
2035 }
2036
2037 .row-reverse .xlarge-offset-8 {
2038 margin-right:66.6666666667%
2039 }
2040
2041 .row-reverse .xlarge-offset-9 {
2042 margin-right:75%
2043 }
2044
2045 .row-reverse .xlarge-offset-10 {
2046 margin-right:83.3333333333%
2047 }
2048
2049 .row-reverse .xlarge-offset-11 {
2050 margin-right:91.6666666667%
2051 }
2052
2053 .row-reverse .xlarge-offset-12 {
2054 margin-right:100%
2055 }
2056
2057 .row-reverse .xlarge-last {
2058 margin-right:auto
2059 }
2060
2061 .row-reverse .xlarge-notlast {
2062 margin-right:0
2063 }
2064}
2065
2066@media only screen and (max-width: 1068px) {
2067 .row-reverse .medium-offset-0 {
2068 margin-right:0
2069 }
2070
2071 .row-reverse .medium-offset-1 {
2072 margin-right:8.3333333333%
2073 }
2074
2075 .row-reverse .medium-offset-2 {
2076 margin-right:16.6666666667%
2077 }
2078
2079 .row-reverse .medium-offset-3 {
2080 margin-right:25%
2081 }
2082
2083 .row-reverse .medium-offset-4 {
2084 margin-right:33.3333333333%
2085 }
2086
2087 .row-reverse .medium-offset-5 {
2088 margin-right:41.6666666667%
2089 }
2090
2091 .row-reverse .medium-offset-6 {
2092 margin-right:50%
2093 }
2094
2095 .row-reverse .medium-offset-7 {
2096 margin-right:58.3333333333%
2097 }
2098
2099 .row-reverse .medium-offset-8 {
2100 margin-right:66.6666666667%
2101 }
2102
2103 .row-reverse .medium-offset-9 {
2104 margin-right:75%
2105 }
2106
2107 .row-reverse .medium-offset-10 {
2108 margin-right:83.3333333333%
2109 }
2110
2111 .row-reverse .medium-offset-11 {
2112 margin-right:91.6666666667%
2113 }
2114
2115 .row-reverse .medium-offset-12 {
2116 margin-right:100%
2117 }
2118
2119 .row-reverse .medium-last {
2120 margin-right:auto
2121 }
2122
2123 .row-reverse .medium-notlast {
2124 margin-right:0
2125 }
2126}
2127
2128@media only screen and (max-width: 734px) {
2129 .row-reverse .small-offset-0 {
2130 margin-right:0
2131 }
2132
2133 .row-reverse .small-offset-1 {
2134 margin-right:8.3333333333%
2135 }
2136
2137 .row-reverse .small-offset-2 {
2138 margin-right:16.6666666667%
2139 }
2140
2141 .row-reverse .small-offset-3 {
2142 margin-right:25%
2143 }
2144
2145 .row-reverse .small-offset-4 {
2146 margin-right:33.3333333333%
2147 }
2148
2149 .row-reverse .small-offset-5 {
2150 margin-right:41.6666666667%
2151 }
2152
2153 .row-reverse .small-offset-6 {
2154 margin-right:50%
2155 }
2156
2157 .row-reverse .small-offset-7 {
2158 margin-right:58.3333333333%
2159 }
2160
2161 .row-reverse .small-offset-8 {
2162 margin-right:66.6666666667%
2163 }
2164
2165 .row-reverse .small-offset-9 {
2166 margin-right:75%
2167 }
2168
2169 .row-reverse .small-offset-10 {
2170 margin-right:83.3333333333%
2171 }
2172
2173 .row-reverse .small-offset-11 {
2174 margin-right:91.6666666667%
2175 }
2176
2177 .row-reverse .small-offset-12 {
2178 margin-right:100%
2179 }
2180
2181 .row-reverse .small-last {
2182 margin-right:auto
2183 }
2184
2185 .row-reverse .small-notlast {
2186 margin-right:0
2187 }
2188}
2189
2190.grid {
2191 margin-left: auto;
2192 margin-right: auto;
2193 grid-column-gap: 24px;
2194 grid-row-gap: 24px;
2195 padding: 0 24px;
2196 display: grid;
2197 grid-template-columns:repeat(12, minmax(0, 1fr))
2198}
2199
2200.grid .grid {
2201 height: 100%;
2202 padding-left: 0;
2203 padding-right:0
2204}
2205
2206.grid-item {
2207 position: relative;
2208 box-sizing:border-box
2209}
2210
2211.large-span-0 {
2212 grid-column:span 0
2213}
2214
2215.large-span-1 {
2216 grid-column:span 1
2217}
2218
2219.large-span-2 {
2220 grid-column:span 2
2221}
2222
2223.large-span-3 {
2224 grid-column:span 3
2225}
2226
2227.large-span-4 {
2228 grid-column:span 4
2229}
2230
2231.large-span-5 {
2232 grid-column:span 5
2233}
2234
2235.large-span-6 {
2236 grid-column:span 6
2237}
2238
2239.large-span-7 {
2240 grid-column:span 7
2241}
2242
2243.large-span-8 {
2244 grid-column:span 8
2245}
2246
2247.large-span-9 {
2248 grid-column:span 9
2249}
2250
2251.large-span-10 {
2252 grid-column:span 10
2253}
2254
2255.large-span-11 {
2256 grid-column:span 11
2257}
2258
2259.large-span-12 {
2260 grid-column:span 12
2261}
2262
2263@media only screen and (min-width: 1441px) {
2264 .xlarge-span-0 {
2265 grid-column:span 0
2266 }
2267
2268 .xlarge-span-1 {
2269 grid-column:span 1
2270 }
2271
2272 .xlarge-span-2 {
2273 grid-column:span 2
2274 }
2275
2276 .xlarge-span-3 {
2277 grid-column:span 3
2278 }
2279
2280 .xlarge-span-4 {
2281 grid-column:span 4
2282 }
2283
2284 .xlarge-span-5 {
2285 grid-column:span 5
2286 }
2287
2288 .xlarge-span-6 {
2289 grid-column:span 6
2290 }
2291
2292 .xlarge-span-7 {
2293 grid-column:span 7
2294 }
2295
2296 .xlarge-span-8 {
2297 grid-column:span 8
2298 }
2299
2300 .xlarge-span-9 {
2301 grid-column:span 9
2302 }
2303
2304 .xlarge-span-10 {
2305 grid-column:span 10
2306 }
2307
2308 .xlarge-span-11 {
2309 grid-column:span 11
2310 }
2311
2312 .xlarge-span-12 {
2313 grid-column:span 12
2314 }
2315}
2316
2317@media only screen and (max-width: 1068px) {
2318 .medium-span-0 {
2319 grid-column:span 0
2320 }
2321
2322 .medium-span-1 {
2323 grid-column:span 1
2324 }
2325
2326 .medium-span-2 {
2327 grid-column:span 2
2328 }
2329
2330 .medium-span-3 {
2331 grid-column:span 3
2332 }
2333
2334 .medium-span-4 {
2335 grid-column:span 4
2336 }
2337
2338 .medium-span-5 {
2339 grid-column:span 5
2340 }
2341
2342 .medium-span-6 {
2343 grid-column:span 6
2344 }
2345
2346 .medium-span-7 {
2347 grid-column:span 7
2348 }
2349
2350 .medium-span-8 {
2351 grid-column:span 8
2352 }
2353
2354 .medium-span-9 {
2355 grid-column:span 9
2356 }
2357
2358 .medium-span-10 {
2359 grid-column:span 10
2360 }
2361
2362 .medium-span-11 {
2363 grid-column:span 11
2364 }
2365
2366 .medium-span-12 {
2367 grid-column:span 12
2368 }
2369}
2370
2371@media only screen and (max-width: 734px) {
2372 .small-span-0 {
2373 grid-column:span 0
2374 }
2375
2376 .small-span-1 {
2377 grid-column:span 1
2378 }
2379
2380 .small-span-2 {
2381 grid-column:span 2
2382 }
2383
2384 .small-span-3 {
2385 grid-column:span 3
2386 }
2387
2388 .small-span-4 {
2389 grid-column:span 4
2390 }
2391
2392 .small-span-5 {
2393 grid-column:span 5
2394 }
2395
2396 .small-span-6 {
2397 grid-column:span 6
2398 }
2399
2400 .small-span-7 {
2401 grid-column:span 7
2402 }
2403
2404 .small-span-8 {
2405 grid-column:span 8
2406 }
2407
2408 .small-span-9 {
2409 grid-column:span 9
2410 }
2411
2412 .small-span-10 {
2413 grid-column:span 10
2414 }
2415
2416 .small-span-11 {
2417 grid-column:span 11
2418 }
2419
2420 .small-span-12 {
2421 grid-column:span 12
2422 }
2423}
2424
2425.icon:before, .icon:after, .more:before, .more:after {
2426 font-family: SF Pro Icons;
2427 color: inherit;
2428 display: inline-block;
2429 font-style: normal;
2430 font-weight: inherit;
2431 font-size: inherit;
2432 line-height: 1;
2433 text-decoration: underline;
2434 position: relative;
2435 z-index: 1;
2436 alt: ""
2437}
2438
2439.icon:before, .icon:after, .more:before, .more:after {
2440 text-decoration:none
2441}
2442
2443.icon:before, .more:before {
2444 display:none
2445}
2446
2447.icon-after:after, .more:after {
2448 padding-inline-start: .3em;
2449 top:0
2450}
2451
2452.icon-before:before {
2453 padding-inline-end: .3em;
2454 display: inline-block;
2455 top:0
2456}
2457
2458.icon-before:after {
2459 display:none
2460}
2461
2462.icon-before.icon-apple:before {
2463 padding-inline-end: 0;
2464 display: inline-block;
2465 top:0
2466}
2467
2468.icon-before.icon-apple:after {
2469 display:none
2470}
2471
2472.icon-apple:before, .icon-apple:after {
2473 content: "\f8ff"
2474}
2475
2476.icon-chevrondown:before, .icon-chevrondown:after {
2477 content: "\f303"
2478}
2479
2480.icon-chevrondowncircle:before, .icon-chevrondowncircle:after {
2481 content: "\f307"
2482}
2483
2484.icon-chevronleft:before, .icon-chevronleft:after {
2485 content: "\f300"
2486}
2487
2488.icon-chevronleftcircle:before, .icon-chevronleftcircle:after {
2489 content: "\f304"
2490}
2491
2492.icon-chevronright:before, .icon-chevronright:after {
2493 content: "\f301"
2494}
2495
2496.icon-chevronrightcircle:before, .icon-chevronrightcircle:after {
2497 content: "\f305"
2498}
2499
2500.icon-chevronup:before, .icon-chevronup:after {
2501 content: "\f302"
2502}
2503
2504.icon-chevronupcircle:before, .icon-chevronupcircle:after {
2505 content: "\f306"
2506}
2507
2508.icon-downloadcircle:before, .icon-downloadcircle:after {
2509 content: "\f32b"
2510}
2511
2512.icon-arrowupcircle:before, .icon-arrowupcircle:after {
2513 content: "\100076"
2514}
2515
2516.icon-external:before, .icon-external:after {
2517 content: "\f32d"
2518}
2519
2520.icon-share:before, .icon-share:after {
2521 content: "\f32e"
2522}
2523
2524.icon-search:before, .icon-search:after {
2525 content: "\ea1d"
2526}
2527
2528.icon-arkit:before, .icon-arkit:after {
2529 content: "\ea1e"
2530}
2531
2532.icon-pausecircle:before, .icon-pausecircle:after {
2533 content: "\f31f"
2534}
2535
2536.icon-pausesolid:before, .icon-pausesolid:after {
2537 content: "\ea08"
2538}
2539
2540.icon-playcircle:before, .icon-playcircle:after {
2541 content: "\f31e"
2542}
2543
2544.icon-playsolid:before, .icon-playsolid:after {
2545 content: "\ea07"
2546}
2547
2548.icon-replay:before, .icon-replay:after {
2549 content: "\f321"
2550}
2551
2552.icon-stopcircle:before, .icon-stopcircle:after {
2553 content: "\f320"
2554}
2555
2556.icon-stopsolid:before, .icon-stopsolid:after {
2557 content: "\ea09"
2558}
2559
2560.icon-circle:before, .icon-circle:after {
2561 content: "\f32c"
2562}
2563
2564.icon-check:before, .icon-check:after {
2565 content: "\f30b"
2566}
2567
2568.icon-checkcircle:before, .icon-checkcircle:after {
2569 content: "\f311"
2570}
2571
2572.icon-checksolid:before, .icon-checksolid:after {
2573 content: "\f317"
2574}
2575
2576.icon-reset:before, .icon-reset:after {
2577 content: "\f308"
2578}
2579
2580.icon-resetcircle:before, .icon-resetcircle:after {
2581 content: "\f30e"
2582}
2583
2584.icon-resetsolid:before, .icon-resetsolid:after {
2585 content: "\f314"
2586}
2587
2588.icon-exclamation:before, .icon-exclamation:after {
2589 content: "\f30c"
2590}
2591
2592.icon-exclamationcircle:before, .icon-exclamationcircle:after {
2593 content: "\f312"
2594}
2595
2596.icon-exclamationsolid:before, .icon-exclamationsolid:after {
2597 content: "\f318"
2598}
2599
2600.icon-exclamationtriangle:before, .icon-exclamationtriangle:after {
2601 content: "\ea15"
2602}
2603
2604.icon-exclamationtrianglesolid:before, .icon-exclamationtrianglesolid:after {
2605 content: "\ea16"
2606}
2607
2608.icon-infocircle:before, .icon-infocircle:after {
2609 content: "\f32a"
2610}
2611
2612.icon-infosolid:before, .icon-infosolid:after {
2613 content: "\ea14"
2614}
2615
2616.icon-question:before, .icon-question:after {
2617 content: "\f30d"
2618}
2619
2620.icon-questioncircle:before, .icon-questioncircle:after {
2621 content: "\f313"
2622}
2623
2624.icon-questionsolid:before, .icon-questionsolid:after {
2625 content: "\f319"
2626}
2627
2628.icon-plus:before, .icon-plus:after {
2629 content: "\f309"
2630}
2631
2632.icon-pluscircle:before, .icon-pluscircle:after {
2633 content: "\f30f"
2634}
2635
2636.icon-plussolid:before, .icon-plussolid:after {
2637 content: "\f315"
2638}
2639
2640.icon-minus:before, .icon-minus:after {
2641 content: "\f30a"
2642}
2643
2644.icon-minuscircle:before, .icon-minuscircle:after {
2645 content: "\f310"
2646}
2647
2648.icon-minussolid:before, .icon-minussolid:after {
2649 content: "\f316"
2650}
2651
2652.icon-1circle:before, .icon-1circle:after {
2653 content: "\f342"
2654}
2655
2656.icon-2circle:before, .icon-2circle:after {
2657 content: "\f343"
2658}
2659
2660.icon-3circle:before, .icon-3circle:after {
2661 content: "\f344"
2662}
2663
2664.icon-4circle:before, .icon-4circle:after {
2665 content: "\f345"
2666}
2667
2668.icon-5circle:before, .icon-5circle:after {
2669 content: "\f346"
2670}
2671
2672.icon-6circle:before, .icon-6circle:after {
2673 content: "\f347"
2674}
2675
2676.icon-7circle:before, .icon-7circle:after {
2677 content: "\f348"
2678}
2679
2680.icon-8circle:before, .icon-8circle:after {
2681 content: "\f349"
2682}
2683
2684.icon-9circle:before, .icon-9circle:after {
2685 content: "\f34a"
2686}
2687
2688.icon-10circle:before, .icon-10circle:after {
2689 content: "\f34b"
2690}
2691
2692.icon-11circle:before, .icon-11circle:after {
2693 content: "\f34c"
2694}
2695
2696.icon-12circle:before, .icon-12circle:after {
2697 content: "\f34d"
2698}
2699
2700.icon-13circle:before, .icon-13circle:after {
2701 content: "\f34e"
2702}
2703
2704.icon-14circle:before, .icon-14circle:after {
2705 content: "\f34f"
2706}
2707
2708.icon-15circle:before, .icon-15circle:after {
2709 content: "\f350"
2710}
2711
2712.icon-16circle:before, .icon-16circle:after {
2713 content: "\f351"
2714}
2715
2716.icon-17circle:before, .icon-17circle:after {
2717 content: "\f352"
2718}
2719
2720.icon-18circle:before, .icon-18circle:after {
2721 content: "\f353"
2722}
2723
2724.icon-19circle:before, .icon-19circle:after {
2725 content: "\f354"
2726}
2727
2728.icon-20circle:before, .icon-20circle:after {
2729 content: "\f355"
2730}
2731
2732.icon-close:before, .icon-close:after {
2733 content: "\f35e"
2734}
2735
2736.icon-closecompact:before, .icon-closecompact:after {
2737 content: "\f364"
2738}
2739
2740.icon-paddleleft:before, .icon-paddleleft:after {
2741 content: "\f35a"
2742}
2743
2744.icon-paddleleftcompact:before, .icon-paddleleftcompact:after {
2745 content: "\f360"
2746}
2747
2748.icon-paddleright:before, .icon-paddleright:after {
2749 content: "\f35b"
2750}
2751
2752.icon-paddlerightcompact:before, .icon-paddlerightcompact:after {
2753 content: "\f361"
2754}
2755
2756.icon-paddleup:before, .icon-paddleup:after {
2757 content: "\f35c"
2758}
2759
2760.icon-paddleupcompact:before, .icon-paddleupcompact:after {
2761 content: "\f362"
2762}
2763
2764.icon-paddledown:before, .icon-paddledown:after {
2765 content: "\f35d"
2766}
2767
2768.icon-paddledowncompact:before, .icon-paddledowncompact:after {
2769 content: "\f363"
2770}
2771
2772.icon-thumbnailreplay:before, .icon-thumbnailreplay:after {
2773 content: "\f357"
2774}
2775
2776.icon-thumbnailpause:before, .icon-thumbnailpause:after {
2777 content: "\f358"
2778}
2779
2780.icon-thumbnailplay:before, .icon-thumbnailplay:after {
2781 content: "\f359"
2782}
2783
2784.icon-externalrtl:before, .icon-externalrtl:after {
2785 content: "\f333"
2786}
2787
2788.icon-questionrtl:before, .icon-questionrtl:after {
2789 content: "\f332"
2790}
2791
2792.icon-questioncirclertl:before, .icon-questioncirclertl:after {
2793 content: "\f330"
2794}
2795
2796.icon-questionsolidrtl:before, .icon-questionsolidrtl:after {
2797 content: "\f331"
2798}
2799
2800.more:before, .more:after {
2801 content: "\f301"
2802}
2803
2804.more-block {
2805 margin-top:.5em
2806}
2807
2808.icon-wrapper .icon, .icon-wrapper .more:not(.icon-before):after, .icon-wrapper .icon-before:before, .icon-wrapper .icon-after:after {
2809 display: inline;
2810 position:static
2811}
2812
2813a.icon-wrapper {
2814 text-decoration:none
2815}
2816
2817a.icon-wrapper:hover .icon-copy {
2818 text-decoration:underline
2819}
2820
2821html[dir=rtl] .icon-external:before, html[dir=rtl] .icon-external:after {
2822 content: "\f333"
2823}
2824
2825html[dir=rtl] .icon-wrapper {
2826 unicode-bidi:bidi-override
2827}
2828
2829html[dir=rtl] .icon-copy {
2830 unicode-bidi:embed
2831}
2832
2833:lang(ar) .icon-question:before, :lang(ar) .icon-question:after {
2834 content: "\f332"
2835}
2836
2837:lang(ar) .icon-questioncircle:before, :lang(ar) .icon-questioncircle:after {
2838 content: "\f330"
2839}
2840
2841:lang(ar) .icon-questionsolid:before, :lang(ar) .icon-questionsolid:after {
2842 content: "\f331"
2843}
2844
2845body {
2846 min-width:320px
2847}
2848
2849.large-hide {
2850 display:none
2851}
2852
2853.large-show {
2854 display:block
2855}
2856
2857.large-show-inline {
2858 display:inline
2859}
2860
2861.large-show-inlineblock {
2862 display:inline-block
2863}
2864
2865@media only screen and (min-width: 1441px) {
2866 .xlarge-hide {
2867 display:none
2868 }
2869
2870 .xlarge-show {
2871 display:block
2872 }
2873
2874 .xlarge-show-inline {
2875 display:inline
2876 }
2877
2878 .xlarge-show-inlineblock {
2879 display:inline-block
2880 }
2881}
2882
2883@media only screen and (max-width: 1068px) {
2884 .medium-hide {
2885 display:none
2886 }
2887
2888 .medium-show {
2889 display:block
2890 }
2891
2892 .medium-show-inline {
2893 display:inline
2894 }
2895
2896 .medium-show-inlineblock {
2897 display:inline-block
2898 }
2899}
2900
2901@media only screen and (max-width: 734px) {
2902 .small-hide {
2903 display:none
2904 }
2905
2906 .small-show {
2907 display:block
2908 }
2909
2910 .small-show-inline {
2911 display:inline
2912 }
2913
2914 .small-show-inlineblock {
2915 display:inline-block
2916 }
2917}
2918
2919.viewport-content {
2920 margin-left: auto;
2921 margin-right: auto;
2922 width:980px
2923}
2924
2925@media only screen and (min-width: 1441px) {
2926 .viewport-content {
2927 margin-left: auto;
2928 margin-right: auto;
2929 width:980px
2930 }
2931}
2932
2933@media only screen and (max-width: 1068px) {
2934 .viewport-content {
2935 margin-left: auto;
2936 margin-right: auto;
2937 width:692px
2938 }
2939}
2940
2941@media only screen and (max-width: 734px) {
2942 .viewport-content {
2943 margin-left: auto;
2944 margin-right: auto;
2945 width:87.5%
2946 }
2947}
2948
2949.button {
2950 background: var(--sk-button-background);
2951 color: var(--sk-button-color);
2952 cursor: pointer;
2953 display: inline-block;
2954 text-align: center;
2955 white-space: nowrap;
2956 font-size: 17px;
2957 line-height: 1.1764805882;
2958 font-weight: 400;
2959 letter-spacing: -.022em;
2960 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif;
2961 min-width: 28px;
2962 padding: 8px 16px;
2963 border-radius: 980px;
2964 --sk-button-background: rgb(0, 113, 227);
2965 --sk-button-background-hover: #0077ED;
2966 --sk-button-background-active: #006EDB;
2967 --sk-button-color: rgb(255, 255, 255);
2968 --sk-button-disabled-opacity: .32;
2969 --sk-button-margin-horizontal: 14px;
2970 --sk-button-margin-vertical: 14px
2971}
2972
2973.button:hover {
2974 background: var(--sk-button-background-hover, var(--sk-button-background));
2975 color: var(--sk-button-color-hover, var(--sk-button-color));
2976 text-decoration:none
2977}
2978
2979.button:focus {
2980 box-shadow: 0 0 0 4px rgba(0, 125, 250, .6);
2981 outline:none
2982}
2983
2984.button:focus[data-focus-method=mouse]:not(input):not(textarea):not(select), .button:focus[data-focus-method=touch]:not(input):not(textarea):not(select) {
2985 box-shadow:none
2986}
2987
2988.button:active {
2989 background: var(--sk-button-background-active, var(--sk-button-background));
2990 color: var(--sk-button-color-active, var(--sk-button-color));
2991 outline:none
2992}
2993
2994.button:disabled, .button.disabled {
2995 background: var(--sk-button-background);
2996 color: var(--sk-button-color);
2997 opacity: var(--sk-button-disabled-opacity);
2998 cursor:default
2999}
3000
3001.button:lang(ar) {
3002 letter-spacing: 0em;
3003 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3004}
3005
3006.button:lang(ja) {
3007 letter-spacing: 0em;
3008 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3009}
3010
3011.button:lang(ko) {
3012 letter-spacing: 0em;
3013 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3014}
3015
3016.button:lang(zh) {
3017 letter-spacing:0em
3018}
3019
3020.button:lang(th) {
3021 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3022}
3023
3024.button:lang(zh-CN) {
3025 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3026}
3027
3028.button:lang(zh-HK) {
3029 font-family:-apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3030}
3031
3032.button:lang(zh-MO) {
3033 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3034}
3035
3036.button:lang(zh-TW) {
3037 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3038}
3039
3040.button-block {
3041 box-sizing: border-box;
3042 display: block;
3043 width: 100%;
3044 border-radius: 8px;
3045 --sk-button-margin-horizontal: 9px;
3046 --sk-button-margin-vertical: 9px
3047}
3048
3049.button-neutral {
3050 --sk-button-background: rgb(29, 29, 31);
3051 --sk-button-background-hover: #272729;
3052 --sk-button-background-active: #18181A;
3053 --sk-button-color: rgb(255, 255, 255);
3054 --sk-button-disabled-opacity: .32
3055}
3056
3057.button-secondary {
3058 --sk-button-background: rgb(232, 232, 237);
3059 --sk-button-background-hover: #EBEBF0;
3060 --sk-button-background-active: #E6E6EB;
3061 --sk-button-color: rgb(0, 0, 0);
3062 --sk-button-disabled-opacity: .56
3063}
3064
3065.button-secondary-alpha {
3066 --sk-button-background: rgba(0, 0, 0, .08);
3067 --sk-button-background-hover: rgba(0, 0, 0, .07);
3068 --sk-button-background-active: rgba(0, 0, 0, .09);
3069 --sk-button-color: rgb(0, 0, 0);
3070 --sk-button-disabled-opacity: .56
3071}
3072
3073.button-super {
3074 font-size: 17px;
3075 line-height: 1.1764805882;
3076 font-weight: 400;
3077 letter-spacing: -.022em;
3078 font-family: SF Pro Text, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif;
3079 min-width: 28px;
3080 padding: 18px 31px;
3081 --sk-button-margin-horizontal: 22px;
3082 --sk-button-margin-vertical: 22px
3083}
3084
3085.button-super:lang(ar) {
3086 letter-spacing: 0em;
3087 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3088}
3089
3090.button-super:lang(ja) {
3091 letter-spacing: 0em;
3092 font-family:-apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3093}
3094
3095.button-super:lang(ko) {
3096 letter-spacing: 0em;
3097 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3098}
3099
3100.button-super:lang(zh) {
3101 letter-spacing:0em
3102}
3103
3104.button-super:lang(th) {
3105 font-family:-apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3106}
3107
3108.button-super:lang(zh-CN) {
3109 font-family:-apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3110}
3111
3112.button-super:lang(zh-HK) {
3113 font-family:-apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3114}
3115
3116.button-super:lang(zh-MO) {
3117 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3118}
3119
3120.button-super:lang(zh-TW) {
3121 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3122}
3123
3124.button-super.button-block {
3125 border-radius: 12px;
3126 --sk-button-margin-horizontal: 14px;
3127 --sk-button-margin-vertical: 14px
3128}
3129
3130.button-elevated {
3131 font-size: 17px;
3132 line-height: 1.1764805882;
3133 font-weight: 400;
3134 letter-spacing: -.022em;
3135 font-family: SF Pro Text, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif;
3136 min-width: 26px;
3137 padding: 12px 22px;
3138 --sk-button-margin-horizontal: 18px;
3139 --sk-button-margin-vertical: 18px
3140}
3141
3142.button-elevated:lang(ar) {
3143 letter-spacing: 0em;
3144 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3145}
3146
3147.button-elevated:lang(ja) {
3148 letter-spacing: 0em;
3149 font-family:-apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3150}
3151
3152.button-elevated:lang(ko) {
3153 letter-spacing: 0em;
3154 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3155}
3156
3157.button-elevated:lang(zh) {
3158 letter-spacing:0em
3159}
3160
3161.button-elevated:lang(th) {
3162 font-family:-apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3163}
3164
3165.button-elevated:lang(zh-CN) {
3166 font-family:-apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3167}
3168
3169.button-elevated:lang(zh-HK) {
3170 font-family:-apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3171}
3172
3173.button-elevated:lang(zh-MO) {
3174 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3175}
3176
3177.button-elevated:lang(zh-TW) {
3178 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3179}
3180
3181.button-elevated.button-block {
3182 border-radius: 10px;
3183 --sk-button-margin-horizontal: 11px;
3184 --sk-button-margin-vertical: 11px
3185}
3186
3187.button-reduced {
3188 font-size: 12px;
3189 line-height: 1.3333733333;
3190 font-weight: 400;
3191 letter-spacing: -.01em;
3192 font-family: SF Pro Text, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif;
3193 min-width: 23px;
3194 padding: 4px 11px;
3195 --sk-button-margin-horizontal: 10px;
3196 --sk-button-margin-vertical: 10px
3197}
3198
3199.button-reduced:lang(ar) {
3200 letter-spacing: 0em;
3201 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3202}
3203
3204.button-reduced:lang(ja) {
3205 letter-spacing: 0em;
3206 font-family:-apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3207}
3208
3209.button-reduced:lang(ko) {
3210 letter-spacing: 0em;
3211 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3212}
3213
3214.button-reduced:lang(zh) {
3215 letter-spacing:0em
3216}
3217
3218.button-reduced:lang(th) {
3219 font-family:-apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3220}
3221
3222.button-reduced:lang(zh-CN) {
3223 font-family:-apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3224}
3225
3226.button-reduced:lang(zh-HK) {
3227 font-family:-apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3228}
3229
3230.button-reduced:lang(zh-MO) {
3231 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3232}
3233
3234.button-reduced:lang(zh-TW) {
3235 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3236}
3237
3238.button-reduced.button-block {
3239 border-radius: 5px;
3240 --sk-button-margin-horizontal: 6px;
3241 --sk-button-margin-vertical: 6px
3242}
3243
3244.button-margin {
3245 margin-inline-end: var(--sk-button-margin-horizontal);
3246 margin-bottom:var(--sk-button-margin-vertical)
3247}
3248
3249.typography-headline-standalone {
3250 font-size: 96px;
3251 line-height: 1.0416666667;
3252 font-weight: 600;
3253 letter-spacing: -.015em;
3254 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3255}
3256
3257.typography-headline-standalone:lang(ar) {
3258 letter-spacing: 0em;
3259 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3260}
3261
3262.typography-headline-standalone:lang(ja) {
3263 letter-spacing: 0em;
3264 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3265}
3266
3267.typography-headline-standalone:lang(ko) {
3268 line-height: 1.1461533333;
3269 letter-spacing: 0em;
3270 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3271}
3272
3273.typography-headline-standalone:lang(zh) {
3274 letter-spacing:0em
3275}
3276
3277.typography-headline-standalone:lang(th) {
3278 line-height: 1.34375;
3279 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3280}
3281
3282.typography-headline-standalone:lang(zh-CN) {
3283 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3284}
3285
3286.typography-headline-standalone:lang(zh-HK) {
3287 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3288}
3289
3290.typography-headline-standalone:lang(zh-MO) {
3291 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3292}
3293
3294.typography-headline-standalone:lang(zh-TW) {
3295 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3296}
3297
3298@media only screen and (max-width: 1068px) {
3299 .typography-headline-standalone {
3300 font-size: 80px;
3301 line-height: 1.05;
3302 font-weight: 600;
3303 letter-spacing: -.015em;
3304 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3305 }
3306
3307 .typography-headline-standalone:lang(ar) {
3308 letter-spacing: 0em;
3309 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3310 }
3311
3312 .typography-headline-standalone:lang(ja) {
3313 line-height: 1.0875;
3314 letter-spacing: 0em;
3315 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3316 }
3317
3318 .typography-headline-standalone:lang(ko) {
3319 line-height: 1.15;
3320 letter-spacing: 0em;
3321 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3322 }
3323
3324 .typography-headline-standalone:lang(zh) {
3325 letter-spacing:0em
3326 }
3327
3328 .typography-headline-standalone:lang(th) {
3329 line-height: 1.35;
3330 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3331 }
3332
3333 .typography-headline-standalone:lang(zh-CN) {
3334 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3335 }
3336
3337 .typography-headline-standalone:lang(zh-HK) {
3338 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3339 }
3340
3341 .typography-headline-standalone:lang(zh-MO) {
3342 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3343 }
3344
3345 .typography-headline-standalone:lang(zh-TW) {
3346 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3347 }
3348}
3349
3350@media only screen and (max-width: 734px) {
3351 .typography-headline-standalone {
3352 font-size: 48px;
3353 line-height: 1.0834933333;
3354 font-weight: 600;
3355 letter-spacing: -.003em;
3356 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3357 }
3358
3359 .typography-headline-standalone:lang(ar) {
3360 letter-spacing: 0em;
3361 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3362 }
3363
3364 .typography-headline-standalone:lang(ja) {
3365 line-height: 1.1459933333;
3366 letter-spacing: 0em;
3367 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3368 }
3369
3370 .typography-headline-standalone:lang(ko) {
3371 line-height: 1.1875;
3372 letter-spacing: 0em;
3373 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3374 }
3375
3376 .typography-headline-standalone:lang(zh) {
3377 letter-spacing:0em
3378 }
3379
3380 .typography-headline-standalone:lang(th) {
3381 line-height: 1.3334933333;
3382 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3383 }
3384
3385 .typography-headline-standalone:lang(zh-CN) {
3386 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3387 }
3388
3389 .typography-headline-standalone:lang(zh-HK) {
3390 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3391 }
3392
3393 .typography-headline-standalone:lang(zh-MO) {
3394 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3395 }
3396
3397 .typography-headline-standalone:lang(zh-TW) {
3398 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3399 }
3400}
3401
3402.typography-headline-super {
3403 font-size: 80px;
3404 line-height: 1.05;
3405 font-weight: 600;
3406 letter-spacing: -.015em;
3407 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3408}
3409
3410.typography-headline-super:lang(ar) {
3411 letter-spacing: 0em;
3412 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3413}
3414
3415.typography-headline-super:lang(ja) {
3416 line-height: 1.0875;
3417 letter-spacing: 0em;
3418 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3419}
3420
3421.typography-headline-super:lang(ko) {
3422 line-height: 1.15;
3423 letter-spacing: 0em;
3424 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3425}
3426
3427.typography-headline-super:lang(zh) {
3428 letter-spacing:0em
3429}
3430
3431.typography-headline-super:lang(th) {
3432 line-height: 1.35;
3433 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3434}
3435
3436.typography-headline-super:lang(zh-CN) {
3437 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3438}
3439
3440.typography-headline-super:lang(zh-HK) {
3441 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3442}
3443
3444.typography-headline-super:lang(zh-MO) {
3445 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3446}
3447
3448.typography-headline-super:lang(zh-TW) {
3449 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3450}
3451
3452@media only screen and (max-width: 1068px) {
3453 .typography-headline-super {
3454 font-size: 64px;
3455 line-height: 1.0625;
3456 font-weight: 600;
3457 letter-spacing: -.009em;
3458 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3459 }
3460
3461 .typography-headline-super:lang(ar) {
3462 letter-spacing: 0em;
3463 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3464 }
3465
3466 .typography-headline-super:lang(ja) {
3467 line-height: 1.109375;
3468 letter-spacing: 0em;
3469 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3470 }
3471
3472 .typography-headline-super:lang(ko) {
3473 line-height: 1.171875;
3474 letter-spacing: 0em;
3475 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3476 }
3477
3478 .typography-headline-super:lang(zh) {
3479 letter-spacing:0em
3480 }
3481
3482 .typography-headline-super:lang(th) {
3483 line-height: 1.34375;
3484 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3485 }
3486
3487 .typography-headline-super:lang(zh-CN) {
3488 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3489 }
3490
3491 .typography-headline-super:lang(zh-HK) {
3492 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3493 }
3494
3495 .typography-headline-super:lang(zh-MO) {
3496 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3497 }
3498
3499 .typography-headline-super:lang(zh-TW) {
3500 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3501 }
3502}
3503
3504@media only screen and (max-width: 734px) {
3505 .typography-headline-super {
3506 font-size: 48px;
3507 line-height: 1.0834933333;
3508 font-weight: 600;
3509 letter-spacing: -.003em;
3510 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3511 }
3512
3513 .typography-headline-super:lang(ar) {
3514 letter-spacing: 0em;
3515 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3516 }
3517
3518 .typography-headline-super:lang(ja) {
3519 line-height: 1.1459933333;
3520 letter-spacing: 0em;
3521 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3522 }
3523
3524 .typography-headline-super:lang(ko) {
3525 line-height: 1.1875;
3526 letter-spacing: 0em;
3527 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3528 }
3529
3530 .typography-headline-super:lang(zh) {
3531 letter-spacing:0em
3532 }
3533
3534 .typography-headline-super:lang(th) {
3535 line-height: 1.3334933333;
3536 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3537 }
3538
3539 .typography-headline-super:lang(zh-CN) {
3540 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3541 }
3542
3543 .typography-headline-super:lang(zh-HK) {
3544 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3545 }
3546
3547 .typography-headline-super:lang(zh-MO) {
3548 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3549 }
3550
3551 .typography-headline-super:lang(zh-TW) {
3552 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3553 }
3554}
3555
3556.typography-headline-elevated {
3557 font-size: 64px;
3558 line-height: 1.0625;
3559 font-weight: 600;
3560 letter-spacing: -.009em;
3561 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3562}
3563
3564.typography-headline-elevated:lang(ar) {
3565 letter-spacing: 0em;
3566 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3567}
3568
3569.typography-headline-elevated:lang(ja) {
3570 line-height: 1.109375;
3571 letter-spacing: 0em;
3572 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3573}
3574
3575.typography-headline-elevated:lang(ko) {
3576 line-height: 1.171875;
3577 letter-spacing: 0em;
3578 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3579}
3580
3581.typography-headline-elevated:lang(zh) {
3582 letter-spacing:0em
3583}
3584
3585.typography-headline-elevated:lang(th) {
3586 line-height: 1.34375;
3587 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3588}
3589
3590.typography-headline-elevated:lang(zh-CN) {
3591 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3592}
3593
3594.typography-headline-elevated:lang(zh-HK) {
3595 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3596}
3597
3598.typography-headline-elevated:lang(zh-MO) {
3599 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3600}
3601
3602.typography-headline-elevated:lang(zh-TW) {
3603 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3604}
3605
3606@media only screen and (max-width: 1068px) {
3607 .typography-headline-elevated {
3608 font-size: 48px;
3609 line-height: 1.0834933333;
3610 font-weight: 600;
3611 letter-spacing: -.003em;
3612 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3613 }
3614
3615 .typography-headline-elevated:lang(ar) {
3616 letter-spacing: 0em;
3617 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3618 }
3619
3620 .typography-headline-elevated:lang(ja) {
3621 line-height: 1.1459933333;
3622 letter-spacing: 0em;
3623 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3624 }
3625
3626 .typography-headline-elevated:lang(ko) {
3627 line-height: 1.1875;
3628 letter-spacing: 0em;
3629 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3630 }
3631
3632 .typography-headline-elevated:lang(zh) {
3633 letter-spacing:0em
3634 }
3635
3636 .typography-headline-elevated:lang(th) {
3637 line-height: 1.3334933333;
3638 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3639 }
3640
3641 .typography-headline-elevated:lang(zh-CN) {
3642 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3643 }
3644
3645 .typography-headline-elevated:lang(zh-HK) {
3646 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3647 }
3648
3649 .typography-headline-elevated:lang(zh-MO) {
3650 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3651 }
3652
3653 .typography-headline-elevated:lang(zh-TW) {
3654 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3655 }
3656}
3657
3658@media only screen and (max-width: 734px) {
3659 .typography-headline-elevated {
3660 font-size: 40px;
3661 line-height: 1.1;
3662 font-weight: 600;
3663 letter-spacing: 0em;
3664 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3665 }
3666
3667 .typography-headline-elevated:lang(ja) {
3668 line-height: 1.175;
3669 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3670 }
3671
3672 .typography-headline-elevated:lang(ko) {
3673 line-height: 1.2;
3674 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3675 }
3676
3677 .typography-headline-elevated:lang(th) {
3678 line-height: 1.35;
3679 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3680 }
3681
3682 .typography-headline-elevated:lang(ar) {
3683 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3684 }
3685
3686 .typography-headline-elevated:lang(zh-CN) {
3687 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3688 }
3689
3690 .typography-headline-elevated:lang(zh-HK) {
3691 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3692 }
3693
3694 .typography-headline-elevated:lang(zh-MO) {
3695 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3696 }
3697
3698 .typography-headline-elevated:lang(zh-TW) {
3699 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3700 }
3701}
3702
3703.typography-headline {
3704 font-size: 48px;
3705 line-height: 1.0834933333;
3706 font-weight: 600;
3707 letter-spacing: -.003em;
3708 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3709}
3710
3711.typography-headline:lang(ar) {
3712 letter-spacing: 0em;
3713 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3714}
3715
3716.typography-headline:lang(ja) {
3717 line-height: 1.1459933333;
3718 letter-spacing: 0em;
3719 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3720}
3721
3722.typography-headline:lang(ko) {
3723 line-height: 1.1875;
3724 letter-spacing: 0em;
3725 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3726}
3727
3728.typography-headline:lang(zh) {
3729 letter-spacing:0em
3730}
3731
3732.typography-headline:lang(th) {
3733 line-height: 1.3334933333;
3734 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3735}
3736
3737.typography-headline:lang(zh-CN) {
3738 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3739}
3740
3741.typography-headline:lang(zh-HK) {
3742 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3743}
3744
3745.typography-headline:lang(zh-MO) {
3746 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3747}
3748
3749.typography-headline:lang(zh-TW) {
3750 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3751}
3752
3753@media only screen and (max-width: 1068px) {
3754 .typography-headline {
3755 font-size: 40px;
3756 line-height: 1.1;
3757 font-weight: 600;
3758 letter-spacing: 0em;
3759 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3760 }
3761
3762 .typography-headline:lang(ja) {
3763 line-height: 1.175;
3764 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3765 }
3766
3767 .typography-headline:lang(ko) {
3768 line-height: 1.2;
3769 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3770 }
3771
3772 .typography-headline:lang(th) {
3773 line-height: 1.35;
3774 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3775 }
3776
3777 .typography-headline:lang(ar) {
3778 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3779 }
3780
3781 .typography-headline:lang(zh-CN) {
3782 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3783 }
3784
3785 .typography-headline:lang(zh-HK) {
3786 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3787 }
3788
3789 .typography-headline:lang(zh-MO) {
3790 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3791 }
3792
3793 .typography-headline:lang(zh-TW) {
3794 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3795 }
3796}
3797
3798@media only screen and (max-width: 734px) {
3799 .typography-headline {
3800 font-size: 32px;
3801 line-height: 1.125;
3802 font-weight: 600;
3803 letter-spacing: .004em;
3804 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3805 }
3806
3807 .typography-headline:lang(ja) {
3808 line-height: 1.21875;
3809 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3810 }
3811
3812 .typography-headline:lang(ko) {
3813 line-height: 1.21875;
3814 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3815 }
3816
3817 .typography-headline:lang(th) {
3818 line-height: 1.375;
3819 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3820 }
3821
3822 .typography-headline:lang(ar) {
3823 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3824 }
3825
3826 .typography-headline:lang(zh-CN) {
3827 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3828 }
3829
3830 .typography-headline:lang(zh-HK) {
3831 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3832 }
3833
3834 .typography-headline:lang(zh-MO) {
3835 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3836 }
3837
3838 .typography-headline:lang(zh-TW) {
3839 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3840 }
3841}
3842
3843.typography-headline-reduced {
3844 font-size: 40px;
3845 line-height: 1.1;
3846 font-weight: 600;
3847 letter-spacing: 0em;
3848 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3849}
3850
3851.typography-headline-reduced:lang(ja) {
3852 line-height: 1.175;
3853 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3854}
3855
3856.typography-headline-reduced:lang(ko) {
3857 line-height: 1.2;
3858 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3859}
3860
3861.typography-headline-reduced:lang(th) {
3862 line-height: 1.35;
3863 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3864}
3865
3866.typography-headline-reduced:lang(ar) {
3867 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3868}
3869
3870.typography-headline-reduced:lang(zh-CN) {
3871 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3872}
3873
3874.typography-headline-reduced:lang(zh-HK) {
3875 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3876}
3877
3878.typography-headline-reduced:lang(zh-MO) {
3879 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3880}
3881
3882.typography-headline-reduced:lang(zh-TW) {
3883 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3884}
3885
3886@media only screen and (max-width: 1068px) {
3887 .typography-headline-reduced {
3888 font-size: 32px;
3889 line-height: 1.125;
3890 font-weight: 600;
3891 letter-spacing: .004em;
3892 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3893 }
3894
3895 .typography-headline-reduced:lang(ja) {
3896 line-height: 1.21875;
3897 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3898 }
3899
3900 .typography-headline-reduced:lang(ko) {
3901 line-height: 1.21875;
3902 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3903 }
3904
3905 .typography-headline-reduced:lang(th) {
3906 line-height: 1.375;
3907 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3908 }
3909
3910 .typography-headline-reduced:lang(ar) {
3911 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3912 }
3913
3914 .typography-headline-reduced:lang(zh-CN) {
3915 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3916 }
3917
3918 .typography-headline-reduced:lang(zh-HK) {
3919 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3920 }
3921
3922 .typography-headline-reduced:lang(zh-MO) {
3923 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3924 }
3925
3926 .typography-headline-reduced:lang(zh-TW) {
3927 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3928 }
3929}
3930
3931@media only screen and (max-width: 734px) {
3932 .typography-headline-reduced {
3933 font-size: 28px;
3934 line-height: 1.1428571429;
3935 font-weight: 600;
3936 letter-spacing: .007em;
3937 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3938 }
3939
3940 .typography-headline-reduced:lang(ko) {
3941 line-height: 1.25;
3942 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3943 }
3944
3945 .typography-headline-reduced:lang(th) {
3946 line-height: 1.3928571429;
3947 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3948 }
3949
3950 .typography-headline-reduced:lang(ar) {
3951 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3952 }
3953
3954 .typography-headline-reduced:lang(ja) {
3955 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3956 }
3957
3958 .typography-headline-reduced:lang(zh-CN) {
3959 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3960 }
3961
3962 .typography-headline-reduced:lang(zh-HK) {
3963 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3964 }
3965
3966 .typography-headline-reduced:lang(zh-MO) {
3967 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3968 }
3969
3970 .typography-headline-reduced:lang(zh-TW) {
3971 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3972 }
3973}
3974
3975.typography-eyebrow-super {
3976 font-size: 32px;
3977 line-height: 1.125;
3978 font-weight: 600;
3979 letter-spacing: .004em;
3980 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3981}
3982
3983.typography-eyebrow-super:lang(ja) {
3984 line-height: 1.21875;
3985 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3986}
3987
3988.typography-eyebrow-super:lang(ko) {
3989 line-height: 1.21875;
3990 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3991}
3992
3993.typography-eyebrow-super:lang(th) {
3994 line-height: 1.375;
3995 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
3996}
3997
3998.typography-eyebrow-super:lang(ar) {
3999 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4000}
4001
4002.typography-eyebrow-super:lang(zh-CN) {
4003 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4004}
4005
4006.typography-eyebrow-super:lang(zh-HK) {
4007 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4008}
4009
4010.typography-eyebrow-super:lang(zh-MO) {
4011 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4012}
4013
4014.typography-eyebrow-super:lang(zh-TW) {
4015 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4016}
4017
4018@media only screen and (max-width: 1068px) {
4019 .typography-eyebrow-super {
4020 font-size: 28px;
4021 line-height: 1.1428571429;
4022 font-weight: 600;
4023 letter-spacing: .007em;
4024 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4025 }
4026
4027 .typography-eyebrow-super:lang(ko) {
4028 line-height: 1.25;
4029 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4030 }
4031
4032 .typography-eyebrow-super:lang(th) {
4033 line-height: 1.3928571429;
4034 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4035 }
4036
4037 .typography-eyebrow-super:lang(ar) {
4038 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4039 }
4040
4041 .typography-eyebrow-super:lang(ja) {
4042 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4043 }
4044
4045 .typography-eyebrow-super:lang(zh-CN) {
4046 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4047 }
4048
4049 .typography-eyebrow-super:lang(zh-HK) {
4050 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4051 }
4052
4053 .typography-eyebrow-super:lang(zh-MO) {
4054 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4055 }
4056
4057 .typography-eyebrow-super:lang(zh-TW) {
4058 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4059 }
4060}
4061
4062@media only screen and (max-width: 734px) {
4063 .typography-eyebrow-super {
4064 font-size: 24px;
4065 line-height: 1.1666666667;
4066 font-weight: 600;
4067 letter-spacing: .009em;
4068 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4069 }
4070
4071 .typography-eyebrow-super:lang(ja) {
4072 line-height: 1.25;
4073 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4074 }
4075
4076 .typography-eyebrow-super:lang(ko) {
4077 line-height: 1.2916666667;
4078 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4079 }
4080
4081 .typography-eyebrow-super:lang(th) {
4082 line-height: 1.375;
4083 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4084 }
4085
4086 .typography-eyebrow-super:lang(ar) {
4087 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4088 }
4089
4090 .typography-eyebrow-super:lang(zh-CN) {
4091 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4092 }
4093
4094 .typography-eyebrow-super:lang(zh-HK) {
4095 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4096 }
4097
4098 .typography-eyebrow-super:lang(zh-MO) {
4099 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4100 }
4101
4102 .typography-eyebrow-super:lang(zh-TW) {
4103 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4104 }
4105}
4106
4107.typography-eyebrow-elevated {
4108 font-size: 28px;
4109 line-height: 1.1428571429;
4110 font-weight: 600;
4111 letter-spacing: .007em;
4112 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4113}
4114
4115.typography-eyebrow-elevated:lang(ko) {
4116 line-height: 1.25;
4117 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4118}
4119
4120.typography-eyebrow-elevated:lang(th) {
4121 line-height: 1.3928571429;
4122 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4123}
4124
4125.typography-eyebrow-elevated:lang(ar) {
4126 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4127}
4128
4129.typography-eyebrow-elevated:lang(ja) {
4130 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4131}
4132
4133.typography-eyebrow-elevated:lang(zh-CN) {
4134 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4135}
4136
4137.typography-eyebrow-elevated:lang(zh-HK) {
4138 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4139}
4140
4141.typography-eyebrow-elevated:lang(zh-MO) {
4142 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4143}
4144
4145.typography-eyebrow-elevated:lang(zh-TW) {
4146 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4147}
4148
4149@media only screen and (max-width: 1068px) {
4150 .typography-eyebrow-elevated {
4151 font-size: 24px;
4152 line-height: 1.1666666667;
4153 font-weight: 600;
4154 letter-spacing: .009em;
4155 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4156 }
4157
4158 .typography-eyebrow-elevated:lang(ja) {
4159 line-height: 1.25;
4160 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4161 }
4162
4163 .typography-eyebrow-elevated:lang(ko) {
4164 line-height: 1.2916666667;
4165 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4166 }
4167
4168 .typography-eyebrow-elevated:lang(th) {
4169 line-height: 1.375;
4170 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4171 }
4172
4173 .typography-eyebrow-elevated:lang(ar) {
4174 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4175 }
4176
4177 .typography-eyebrow-elevated:lang(zh-CN) {
4178 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4179 }
4180
4181 .typography-eyebrow-elevated:lang(zh-HK) {
4182 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4183 }
4184
4185 .typography-eyebrow-elevated:lang(zh-MO) {
4186 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4187 }
4188
4189 .typography-eyebrow-elevated:lang(zh-TW) {
4190 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4191 }
4192}
4193
4194@media only screen and (max-width: 734px) {
4195 .typography-eyebrow-elevated {
4196 font-size: 21px;
4197 line-height: 1.1904761905;
4198 font-weight: 600;
4199 letter-spacing: .011em;
4200 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4201 }
4202
4203 .typography-eyebrow-elevated:lang(ja) {
4204 line-height: 1.2380952381;
4205 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4206 }
4207
4208 .typography-eyebrow-elevated:lang(ko) {
4209 line-height: 1.2858042857;
4210 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4211 }
4212
4213 .typography-eyebrow-elevated:lang(th) {
4214 line-height: 1.381002381;
4215 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4216 }
4217
4218 .typography-eyebrow-elevated:lang(ar) {
4219 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4220 }
4221
4222 .typography-eyebrow-elevated:lang(zh-CN) {
4223 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4224 }
4225
4226 .typography-eyebrow-elevated:lang(zh-HK) {
4227 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4228 }
4229
4230 .typography-eyebrow-elevated:lang(zh-MO) {
4231 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4232 }
4233
4234 .typography-eyebrow-elevated:lang(zh-TW) {
4235 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4236 }
4237}
4238
4239.typography-eyebrow {
4240 font-size: 24px;
4241 line-height: 1.1666666667;
4242 font-weight: 600;
4243 letter-spacing: .009em;
4244 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4245}
4246
4247.typography-eyebrow:lang(ja) {
4248 line-height: 1.25;
4249 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4250}
4251
4252.typography-eyebrow:lang(ko) {
4253 line-height: 1.2916666667;
4254 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4255}
4256
4257.typography-eyebrow:lang(th) {
4258 line-height: 1.375;
4259 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4260}
4261
4262.typography-eyebrow:lang(ar) {
4263 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4264}
4265
4266.typography-eyebrow:lang(zh-CN) {
4267 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4268}
4269
4270.typography-eyebrow:lang(zh-HK) {
4271 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4272}
4273
4274.typography-eyebrow:lang(zh-MO) {
4275 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4276}
4277
4278.typography-eyebrow:lang(zh-TW) {
4279 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4280}
4281
4282@media only screen and (max-width: 1068px) {
4283 .typography-eyebrow {
4284 font-size: 21px;
4285 line-height: 1.1904761905;
4286 font-weight: 600;
4287 letter-spacing: .011em;
4288 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4289 }
4290
4291 .typography-eyebrow:lang(ja) {
4292 line-height: 1.2380952381;
4293 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4294 }
4295
4296 .typography-eyebrow:lang(ko) {
4297 line-height: 1.2858042857;
4298 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4299 }
4300
4301 .typography-eyebrow:lang(th) {
4302 line-height: 1.381002381;
4303 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4304 }
4305
4306 .typography-eyebrow:lang(ar) {
4307 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4308 }
4309
4310 .typography-eyebrow:lang(zh-CN) {
4311 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4312 }
4313
4314 .typography-eyebrow:lang(zh-HK) {
4315 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4316 }
4317
4318 .typography-eyebrow:lang(zh-MO) {
4319 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4320 }
4321
4322 .typography-eyebrow:lang(zh-TW) {
4323 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4324 }
4325}
4326
4327.typography-eyebrow-reduced {
4328 font-size: 21px;
4329 line-height: 1.1904761905;
4330 font-weight: 600;
4331 letter-spacing: .011em;
4332 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4333}
4334
4335.typography-eyebrow-reduced:lang(ja) {
4336 line-height: 1.2380952381;
4337 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4338}
4339
4340.typography-eyebrow-reduced:lang(ko) {
4341 line-height: 1.2858042857;
4342 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4343}
4344
4345.typography-eyebrow-reduced:lang(th) {
4346 line-height: 1.381002381;
4347 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4348}
4349
4350.typography-eyebrow-reduced:lang(ar) {
4351 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4352}
4353
4354.typography-eyebrow-reduced:lang(zh-CN) {
4355 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4356}
4357
4358.typography-eyebrow-reduced:lang(zh-HK) {
4359 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4360}
4361
4362.typography-eyebrow-reduced:lang(zh-MO) {
4363 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4364}
4365
4366.typography-eyebrow-reduced:lang(zh-TW) {
4367 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4368}
4369
4370@media only screen and (max-width: 734px) {
4371 .typography-eyebrow-reduced {
4372 font-size: 19px;
4373 line-height: 1.2105263158;
4374 font-weight: 600;
4375 letter-spacing: .012em;
4376 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4377 }
4378
4379 .typography-eyebrow-reduced:lang(ja) {
4380 line-height: 1.2631578947;
4381 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4382 }
4383
4384 .typography-eyebrow-reduced:lang(ko) {
4385 line-height: 1.3157894737;
4386 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4387 }
4388
4389 .typography-eyebrow-reduced:lang(th) {
4390 line-height: 1.3684410526;
4391 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4392 }
4393
4394 .typography-eyebrow-reduced:lang(ar) {
4395 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4396 }
4397
4398 .typography-eyebrow-reduced:lang(zh-CN) {
4399 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4400 }
4401
4402 .typography-eyebrow-reduced:lang(zh-HK) {
4403 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4404 }
4405
4406 .typography-eyebrow-reduced:lang(zh-MO) {
4407 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4408 }
4409
4410 .typography-eyebrow-reduced:lang(zh-TW) {
4411 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4412 }
4413}
4414
4415.typography-intro-elevated {
4416 font-size: 24px;
4417 line-height: 1.3334133333;
4418 font-weight: 400;
4419 letter-spacing: .009em;
4420 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4421}
4422
4423.typography-intro-elevated:lang(ja) {
4424 line-height: 1.4166666667;
4425 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4426}
4427
4428.typography-intro-elevated:lang(ko) {
4429 line-height: 1.4584133333;
4430 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4431}
4432
4433.typography-intro-elevated:lang(th) {
4434 line-height: 1.375;
4435 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4436}
4437
4438.typography-intro-elevated:lang(ar) {
4439 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4440}
4441
4442.typography-intro-elevated:lang(zh-CN) {
4443 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4444}
4445
4446.typography-intro-elevated:lang(zh-HK) {
4447 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4448}
4449
4450.typography-intro-elevated:lang(zh-MO) {
4451 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4452}
4453
4454.typography-intro-elevated:lang(zh-TW) {
4455 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4456}
4457
4458@media only screen and (max-width: 1068px) {
4459 .typography-intro-elevated {
4460 font-size: 21px;
4461 line-height: 1.381002381;
4462 font-weight: 400;
4463 letter-spacing: .011em;
4464 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4465 }
4466
4467 .typography-intro-elevated:lang(ja) {
4468 line-height: 1.4286014286;
4469 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4470 }
4471
4472 .typography-intro-elevated:lang(ko) {
4473 line-height: 1.5238095238;
4474 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4475 }
4476
4477 .typography-intro-elevated:lang(th) {
4478 line-height: 1.381002381;
4479 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4480 }
4481
4482 .typography-intro-elevated:lang(ar) {
4483 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4484 }
4485
4486 .typography-intro-elevated:lang(zh-CN) {
4487 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4488 }
4489
4490 .typography-intro-elevated:lang(zh-HK) {
4491 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4492 }
4493
4494 .typography-intro-elevated:lang(zh-MO) {
4495 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4496 }
4497
4498 .typography-intro-elevated:lang(zh-TW) {
4499 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4500 }
4501}
4502
4503.typography-intro {
4504 font-size: 21px;
4505 line-height: 1.381002381;
4506 font-weight: 400;
4507 letter-spacing: .011em;
4508 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4509}
4510
4511.typography-intro:lang(ja) {
4512 line-height: 1.4286014286;
4513 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4514}
4515
4516.typography-intro:lang(ko) {
4517 line-height: 1.5238095238;
4518 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4519}
4520
4521.typography-intro:lang(th) {
4522 line-height: 1.381002381;
4523 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4524}
4525
4526.typography-intro:lang(ar) {
4527 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4528}
4529
4530.typography-intro:lang(zh-CN) {
4531 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4532}
4533
4534.typography-intro:lang(zh-HK) {
4535 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4536}
4537
4538.typography-intro:lang(zh-MO) {
4539 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4540}
4541
4542.typography-intro:lang(zh-TW) {
4543 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4544}
4545
4546@media only screen and (max-width: 734px) {
4547 .typography-intro {
4548 font-size: 19px;
4549 line-height: 1.4211026316;
4550 font-weight: 400;
4551 letter-spacing: .012em;
4552 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4553 }
4554
4555 .typography-intro:lang(ja) {
4556 line-height: 1.4737642105;
4557 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4558 }
4559
4560 .typography-intro:lang(ko) {
4561 line-height: 1.5263157895;
4562 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4563 }
4564
4565 .typography-intro:lang(th) {
4566 line-height: 1.3684410526;
4567 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4568 }
4569
4570 .typography-intro:lang(ar) {
4571 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4572 }
4573
4574 .typography-intro:lang(zh-CN) {
4575 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4576 }
4577
4578 .typography-intro:lang(zh-HK) {
4579 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4580 }
4581
4582 .typography-intro:lang(zh-MO) {
4583 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4584 }
4585
4586 .typography-intro:lang(zh-TW) {
4587 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4588 }
4589}
4590
4591.typography-quote {
4592 font-size: 40px;
4593 line-height: 1.2;
4594 font-weight: 400;
4595 letter-spacing: 0em;
4596 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4597}
4598
4599.typography-quote:lang(ja) {
4600 line-height: 1.275;
4601 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4602}
4603
4604.typography-quote:lang(ko) {
4605 line-height: 1.325;
4606 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4607}
4608
4609.typography-quote:lang(th) {
4610 line-height: 1.35;
4611 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4612}
4613
4614.typography-quote:lang(ar) {
4615 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4616}
4617
4618.typography-quote:lang(zh-CN) {
4619 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4620}
4621
4622.typography-quote:lang(zh-HK) {
4623 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4624}
4625
4626.typography-quote:lang(zh-MO) {
4627 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4628}
4629
4630.typography-quote:lang(zh-TW) {
4631 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4632}
4633
4634@media only screen and (max-width: 1068px) {
4635 .typography-quote {
4636 font-size: 32px;
4637 line-height: 1.25;
4638 font-weight: 400;
4639 letter-spacing: .004em;
4640 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4641 }
4642
4643 .typography-quote:lang(ja) {
4644 line-height: 1.34375;
4645 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4646 }
4647
4648 .typography-quote:lang(ko) {
4649 line-height: 1.375;
4650 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4651 }
4652
4653 .typography-quote:lang(th) {
4654 line-height: 1.375;
4655 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4656 }
4657
4658 .typography-quote:lang(ar) {
4659 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4660 }
4661
4662 .typography-quote:lang(zh-CN) {
4663 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4664 }
4665
4666 .typography-quote:lang(zh-HK) {
4667 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4668 }
4669
4670 .typography-quote:lang(zh-MO) {
4671 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4672 }
4673
4674 .typography-quote:lang(zh-TW) {
4675 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4676 }
4677}
4678
4679@media only screen and (max-width: 734px) {
4680 .typography-quote {
4681 font-size: 28px;
4682 line-height: 1.2858342857;
4683 font-weight: 400;
4684 letter-spacing: .007em;
4685 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4686 }
4687
4688 .typography-quote:lang(ko) {
4689 line-height: 1.3928571429;
4690 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4691 }
4692
4693 .typography-quote:lang(th) {
4694 line-height: 1.3928571429;
4695 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4696 }
4697
4698 .typography-quote:lang(ar) {
4699 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4700 }
4701
4702 .typography-quote:lang(ja) {
4703 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4704 }
4705
4706 .typography-quote:lang(zh-CN) {
4707 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4708 }
4709
4710 .typography-quote:lang(zh-HK) {
4711 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4712 }
4713
4714 .typography-quote:lang(zh-MO) {
4715 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4716 }
4717
4718 .typography-quote:lang(zh-TW) {
4719 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4720 }
4721}
4722
4723.typography-quote-reduced {
4724 font-size: 32px;
4725 line-height: 1.25;
4726 font-weight: 400;
4727 letter-spacing: .004em;
4728 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4729}
4730
4731.typography-quote-reduced:lang(ja) {
4732 line-height: 1.34375;
4733 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4734}
4735
4736.typography-quote-reduced:lang(ko) {
4737 line-height: 1.375;
4738 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4739}
4740
4741.typography-quote-reduced:lang(th) {
4742 line-height: 1.375;
4743 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4744}
4745
4746.typography-quote-reduced:lang(ar) {
4747 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4748}
4749
4750.typography-quote-reduced:lang(zh-CN) {
4751 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4752}
4753
4754.typography-quote-reduced:lang(zh-HK) {
4755 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4756}
4757
4758.typography-quote-reduced:lang(zh-MO) {
4759 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4760}
4761
4762.typography-quote-reduced:lang(zh-TW) {
4763 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4764}
4765
4766@media only screen and (max-width: 1068px) {
4767 .typography-quote-reduced {
4768 font-size: 28px;
4769 line-height: 1.2858342857;
4770 font-weight: 400;
4771 letter-spacing: .007em;
4772 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4773 }
4774
4775 .typography-quote-reduced:lang(ko) {
4776 line-height: 1.3928571429;
4777 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4778 }
4779
4780 .typography-quote-reduced:lang(th) {
4781 line-height: 1.3928571429;
4782 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4783 }
4784
4785 .typography-quote-reduced:lang(ar) {
4786 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4787 }
4788
4789 .typography-quote-reduced:lang(ja) {
4790 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4791 }
4792
4793 .typography-quote-reduced:lang(zh-CN) {
4794 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4795 }
4796
4797 .typography-quote-reduced:lang(zh-HK) {
4798 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4799 }
4800
4801 .typography-quote-reduced:lang(zh-MO) {
4802 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4803 }
4804
4805 .typography-quote-reduced:lang(zh-TW) {
4806 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4807 }
4808}
4809
4810@media only screen and (max-width: 734px) {
4811 .typography-quote-reduced {
4812 font-size: 24px;
4813 line-height: 1.3334133333;
4814 font-weight: 400;
4815 letter-spacing: .009em;
4816 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4817 }
4818
4819 .typography-quote-reduced:lang(ja) {
4820 line-height: 1.4166666667;
4821 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4822 }
4823
4824 .typography-quote-reduced:lang(ko) {
4825 line-height: 1.4584133333;
4826 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4827 }
4828
4829 .typography-quote-reduced:lang(th) {
4830 line-height: 1.375;
4831 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4832 }
4833
4834 .typography-quote-reduced:lang(ar) {
4835 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4836 }
4837
4838 .typography-quote-reduced:lang(zh-CN) {
4839 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4840 }
4841
4842 .typography-quote-reduced:lang(zh-HK) {
4843 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4844 }
4845
4846 .typography-quote-reduced:lang(zh-MO) {
4847 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4848 }
4849
4850 .typography-quote-reduced:lang(zh-TW) {
4851 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4852 }
4853}
4854
4855.typography-callout {
4856 font-size: 32px;
4857 line-height: 1.125;
4858 font-weight: 600;
4859 letter-spacing: .004em;
4860 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4861}
4862
4863.typography-callout:lang(ja) {
4864 line-height: 1.21875;
4865 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4866}
4867
4868.typography-callout:lang(ko) {
4869 line-height: 1.21875;
4870 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4871}
4872
4873.typography-callout:lang(th) {
4874 line-height: 1.375;
4875 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4876}
4877
4878.typography-callout:lang(ar) {
4879 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4880}
4881
4882.typography-callout:lang(zh-CN) {
4883 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4884}
4885
4886.typography-callout:lang(zh-HK) {
4887 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4888}
4889
4890.typography-callout:lang(zh-MO) {
4891 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4892}
4893
4894.typography-callout:lang(zh-TW) {
4895 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4896}
4897
4898@media only screen and (max-width: 1068px) {
4899 .typography-callout {
4900 font-size: 28px;
4901 line-height: 1.1428571429;
4902 font-weight: 600;
4903 letter-spacing: .007em;
4904 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4905 }
4906
4907 .typography-callout:lang(ko) {
4908 line-height: 1.25;
4909 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4910 }
4911
4912 .typography-callout:lang(th) {
4913 line-height: 1.3928571429;
4914 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4915 }
4916
4917 .typography-callout:lang(ar) {
4918 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4919 }
4920
4921 .typography-callout:lang(ja) {
4922 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4923 }
4924
4925 .typography-callout:lang(zh-CN) {
4926 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4927 }
4928
4929 .typography-callout:lang(zh-HK) {
4930 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4931 }
4932
4933 .typography-callout:lang(zh-MO) {
4934 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4935 }
4936
4937 .typography-callout:lang(zh-TW) {
4938 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4939 }
4940}
4941
4942@media only screen and (max-width: 734px) {
4943 .typography-callout {
4944 font-size: 24px;
4945 line-height: 1.1666666667;
4946 font-weight: 600;
4947 letter-spacing: .009em;
4948 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4949 }
4950
4951 .typography-callout:lang(ja) {
4952 line-height: 1.25;
4953 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4954 }
4955
4956 .typography-callout:lang(ko) {
4957 line-height: 1.2916666667;
4958 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4959 }
4960
4961 .typography-callout:lang(th) {
4962 line-height: 1.375;
4963 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4964 }
4965
4966 .typography-callout:lang(ar) {
4967 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4968 }
4969
4970 .typography-callout:lang(zh-CN) {
4971 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4972 }
4973
4974 .typography-callout:lang(zh-HK) {
4975 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4976 }
4977
4978 .typography-callout:lang(zh-MO) {
4979 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4980 }
4981
4982 .typography-callout:lang(zh-TW) {
4983 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4984 }
4985}
4986
4987.typography-manifesto {
4988 font-size: 32px;
4989 line-height: 1.25;
4990 font-weight: 600;
4991 letter-spacing: .004em;
4992 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4993}
4994
4995.typography-manifesto:lang(ja) {
4996 line-height: 1.34375;
4997 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
4998}
4999
5000.typography-manifesto:lang(ko) {
5001 line-height: 1.375;
5002 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5003}
5004
5005.typography-manifesto:lang(th) {
5006 line-height: 1.375;
5007 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5008}
5009
5010.typography-manifesto:lang(ar) {
5011 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5012}
5013
5014.typography-manifesto:lang(zh-CN) {
5015 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5016}
5017
5018.typography-manifesto:lang(zh-HK) {
5019 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5020}
5021
5022.typography-manifesto:lang(zh-MO) {
5023 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5024}
5025
5026.typography-manifesto:lang(zh-TW) {
5027 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5028}
5029
5030@media only screen and (max-width: 1068px) {
5031 .typography-manifesto {
5032 font-size: 28px;
5033 line-height: 1.2858342857;
5034 font-weight: 600;
5035 letter-spacing: .007em;
5036 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5037 }
5038
5039 .typography-manifesto:lang(ko) {
5040 line-height: 1.3928571429;
5041 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5042 }
5043
5044 .typography-manifesto:lang(th) {
5045 line-height: 1.3928571429;
5046 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5047 }
5048
5049 .typography-manifesto:lang(ar) {
5050 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5051 }
5052
5053 .typography-manifesto:lang(ja) {
5054 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5055 }
5056
5057 .typography-manifesto:lang(zh-CN) {
5058 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5059 }
5060
5061 .typography-manifesto:lang(zh-HK) {
5062 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5063 }
5064
5065 .typography-manifesto:lang(zh-MO) {
5066 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5067 }
5068
5069 .typography-manifesto:lang(zh-TW) {
5070 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5071 }
5072}
5073
5074@media only screen and (max-width: 734px) {
5075 .typography-manifesto {
5076 font-size: 24px;
5077 line-height: 1.3334133333;
5078 font-weight: 600;
5079 letter-spacing: .009em;
5080 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5081 }
5082
5083 .typography-manifesto:lang(ja) {
5084 line-height: 1.4166666667;
5085 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5086 }
5087
5088 .typography-manifesto:lang(ko) {
5089 line-height: 1.4584133333;
5090 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5091 }
5092
5093 .typography-manifesto:lang(th) {
5094 line-height: 1.375;
5095 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5096 }
5097
5098 .typography-manifesto:lang(ar) {
5099 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5100 }
5101
5102 .typography-manifesto:lang(zh-CN) {
5103 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5104 }
5105
5106 .typography-manifesto:lang(zh-HK) {
5107 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5108 }
5109
5110 .typography-manifesto:lang(zh-MO) {
5111 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5112 }
5113
5114 .typography-manifesto:lang(zh-TW) {
5115 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5116 }
5117}
5118
5119.typography-label {
5120 font-size: 24px;
5121 line-height: 1.1666666667;
5122 font-weight: 600;
5123 letter-spacing: .009em;
5124 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5125}
5126
5127.typography-label:lang(ja) {
5128 line-height: 1.25;
5129 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5130}
5131
5132.typography-label:lang(ko) {
5133 line-height: 1.2916666667;
5134 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5135}
5136
5137.typography-label:lang(th) {
5138 line-height: 1.375;
5139 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5140}
5141
5142.typography-label:lang(ar) {
5143 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5144}
5145
5146.typography-label:lang(zh-CN) {
5147 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5148}
5149
5150.typography-label:lang(zh-HK) {
5151 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5152}
5153
5154.typography-label:lang(zh-MO) {
5155 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5156}
5157
5158.typography-label:lang(zh-TW) {
5159 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5160}
5161
5162@media only screen and (max-width: 1068px) {
5163 .typography-label {
5164 font-size: 21px;
5165 line-height: 1.1904761905;
5166 font-weight: 600;
5167 letter-spacing: .011em;
5168 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5169 }
5170
5171 .typography-label:lang(ja) {
5172 line-height: 1.2380952381;
5173 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5174 }
5175
5176 .typography-label:lang(ko) {
5177 line-height: 1.2858042857;
5178 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5179 }
5180
5181 .typography-label:lang(th) {
5182 line-height: 1.381002381;
5183 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5184 }
5185
5186 .typography-label:lang(ar) {
5187 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5188 }
5189
5190 .typography-label:lang(zh-CN) {
5191 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5192 }
5193
5194 .typography-label:lang(zh-HK) {
5195 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5196 }
5197
5198 .typography-label:lang(zh-MO) {
5199 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5200 }
5201
5202 .typography-label:lang(zh-TW) {
5203 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5204 }
5205}
5206
5207.typography-tout {
5208 font-size: 19px;
5209 line-height: 1.2105263158;
5210 font-weight: 600;
5211 letter-spacing: .012em;
5212 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5213}
5214
5215.typography-tout:lang(ja) {
5216 line-height: 1.2631578947;
5217 font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5218}
5219
5220.typography-tout:lang(ko) {
5221 line-height: 1.3157894737;
5222 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5223}
5224
5225.typography-tout:lang(th) {
5226 line-height: 1.3684410526;
5227 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5228}
5229
5230.typography-tout:lang(ar) {
5231 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5232}
5233
5234.typography-tout:lang(zh-CN) {
5235 font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5236}
5237
5238.typography-tout:lang(zh-HK) {
5239 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5240}
5241
5242.typography-tout:lang(zh-MO) {
5243 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5244}
5245
5246.typography-tout:lang(zh-TW) {
5247 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5248}
5249
5250.typography-body {
5251 font-size: 17px;
5252 line-height: 1.4705882353;
5253 font-weight: 400;
5254 letter-spacing: -.022em;
5255 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5256}
5257
5258.typography-body:lang(ar) {
5259 letter-spacing: 0em;
5260 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5261}
5262
5263.typography-body:lang(ja) {
5264 letter-spacing: 0em;
5265 font-family:-apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5266}
5267
5268.typography-body:lang(ko) {
5269 line-height: 1.5882352941;
5270 letter-spacing: 0em;
5271 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5272}
5273
5274.typography-body:lang(zh) {
5275 letter-spacing:0em
5276}
5277
5278.typography-body:lang(th) {
5279 line-height: 1.3529611765;
5280 letter-spacing: 0em;
5281 font-family:-apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5282}
5283
5284.typography-body:lang(zh-CN) {
5285 font-family:-apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5286}
5287
5288.typography-body:lang(zh-HK) {
5289 font-family:-apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5290}
5291
5292.typography-body:lang(zh-MO) {
5293 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5294}
5295
5296.typography-body:lang(zh-TW) {
5297 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5298}
5299
5300.typography-body-tight {
5301 font-size: 17px;
5302 line-height: 1.2353641176;
5303 font-weight: 400;
5304 letter-spacing: -.022em;
5305 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5306}
5307
5308.typography-body-tight:lang(ar) {
5309 letter-spacing: 0em;
5310 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5311}
5312
5313.typography-body-tight:lang(ja) {
5314 letter-spacing: 0em;
5315 font-family:-apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5316}
5317
5318.typography-body-tight:lang(ko) {
5319 line-height: 1.3529611765;
5320 letter-spacing: 0em;
5321 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5322}
5323
5324.typography-body-tight:lang(zh) {
5325 letter-spacing:0em
5326}
5327
5328.typography-body-tight:lang(th) {
5329 line-height: 1.3529611765;
5330 letter-spacing: 0em;
5331 font-family:-apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5332}
5333
5334.typography-body-tight:lang(zh-CN) {
5335 font-family:-apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5336}
5337
5338.typography-body-tight:lang(zh-HK) {
5339 font-family:-apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5340}
5341
5342.typography-body-tight:lang(zh-MO) {
5343 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5344}
5345
5346.typography-body-tight:lang(zh-TW) {
5347 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5348}
5349
5350.typography-body-reduced {
5351 font-size: 14px;
5352 line-height: 1.4285914286;
5353 font-weight: 400;
5354 letter-spacing: -.016em;
5355 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5356}
5357
5358.typography-body-reduced:lang(ar) {
5359 letter-spacing: 0em;
5360 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5361}
5362
5363.typography-body-reduced:lang(ja) {
5364 letter-spacing: 0em;
5365 font-family:-apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5366}
5367
5368.typography-body-reduced:lang(ko) {
5369 line-height: 1.5714285714;
5370 letter-spacing: 0em;
5371 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5372}
5373
5374.typography-body-reduced:lang(zh) {
5375 letter-spacing:0em
5376}
5377
5378.typography-body-reduced:lang(th) {
5379 line-height: 1.3571828571;
5380 letter-spacing: 0em;
5381 font-family:-apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5382}
5383
5384.typography-body-reduced:lang(zh-CN) {
5385 font-family:-apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5386}
5387
5388.typography-body-reduced:lang(zh-HK) {
5389 font-family:-apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5390}
5391
5392.typography-body-reduced:lang(zh-MO) {
5393 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5394}
5395
5396.typography-body-reduced:lang(zh-TW) {
5397 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5398}
5399
5400.typography-body-reduced-tight {
5401 font-size: 14px;
5402 line-height: 1.2857742857;
5403 font-weight: 400;
5404 letter-spacing: -.016em;
5405 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5406}
5407
5408.typography-body-reduced-tight:lang(ar) {
5409 letter-spacing: 0em;
5410 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5411}
5412
5413.typography-body-reduced-tight:lang(ja) {
5414 line-height: 1.3571828571;
5415 letter-spacing: 0em;
5416 font-family:-apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5417}
5418
5419.typography-body-reduced-tight:lang(ko) {
5420 line-height: 1.4285914286;
5421 letter-spacing: 0em;
5422 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5423}
5424
5425.typography-body-reduced-tight:lang(zh) {
5426 letter-spacing:0em
5427}
5428
5429.typography-body-reduced-tight:lang(th) {
5430 line-height: 1.3571828571;
5431 letter-spacing: 0em;
5432 font-family:-apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5433}
5434
5435.typography-body-reduced-tight:lang(zh-CN) {
5436 font-family:-apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5437}
5438
5439.typography-body-reduced-tight:lang(zh-HK) {
5440 font-family:-apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5441}
5442
5443.typography-body-reduced-tight:lang(zh-MO) {
5444 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5445}
5446
5447.typography-body-reduced-tight:lang(zh-TW) {
5448 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5449}
5450
5451.typography-caption {
5452 font-size: 12px;
5453 line-height: 1.3333733333;
5454 font-weight: 400;
5455 letter-spacing: -.01em;
5456 font-family:-apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5457}
5458
5459.typography-caption:lang(ar) {
5460 letter-spacing: 0em;
5461 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5462}
5463
5464.typography-caption:lang(ja) {
5465 line-height: 1.4166666667;
5466 letter-spacing: 0em;
5467 font-family:-apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5468}
5469
5470.typography-caption:lang(ko) {
5471 line-height: 1.4166666667;
5472 letter-spacing: 0em;
5473 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5474}
5475
5476.typography-caption:lang(zh) {
5477 letter-spacing:0em
5478}
5479
5480.typography-caption:lang(th) {
5481 line-height: 1.3333733333;
5482 letter-spacing: 0em;
5483 font-family:-apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5484}
5485
5486.typography-caption:lang(zh-CN) {
5487 font-family:-apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5488}
5489
5490.typography-caption:lang(zh-HK) {
5491 font-family:-apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5492}
5493
5494.typography-caption:lang(zh-MO) {
5495 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5496}
5497
5498.typography-caption:lang(zh-TW) {
5499 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5500}
5501
5502.typography-sosumi {
5503 font-size: 12px;
5504 line-height: 1.3333733333;
5505 font-weight: 400;
5506 letter-spacing: -.01em;
5507 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5508}
5509
5510.typography-sosumi:lang(ar) {
5511 letter-spacing: 0em;
5512 font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5513}
5514
5515.typography-sosumi:lang(ja) {
5516 line-height: 1.4166666667;
5517 letter-spacing: 0em;
5518 font-family:-apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic Pro, \30d2\30e9\30ae\30ce\89d2\30b4 Pro W3, \30e1\30a4\30ea\30aa, Meiryo, \ff2d\ff33 \ff30\30b4\30b7\30c3\30af, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5519}
5520
5521.typography-sosumi:lang(ko) {
5522 line-height: 1.4166666667;
5523 letter-spacing: 0em;
5524 font-family: -apple-system, BlinkMacSystemFont, Apple Gothic, HY Gulim, MalgunGothic, HY Dotum, Lexi Gulim, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5525}
5526
5527.typography-sosumi:lang(zh) {
5528 letter-spacing:0em
5529}
5530
5531.typography-sosumi:lang(th) {
5532 line-height: 1.3333733333;
5533 letter-spacing: 0em;
5534 font-family:-apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5535}
5536
5537.typography-sosumi:lang(zh-CN) {
5538 font-family:-apple-system, BlinkMacSystemFont, PingFang SC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5539}
5540
5541.typography-sosumi:lang(zh-HK) {
5542 font-family:-apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5543}
5544
5545.typography-sosumi:lang(zh-MO) {
5546 font-family: -apple-system, BlinkMacSystemFont, PingFang HK, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5547}
5548
5549.typography-sosumi:lang(zh-TW) {
5550 font-family: -apple-system, BlinkMacSystemFont, PingFang TC, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5551}
5552
5553.typography-headline + .typography-intro {
5554 --sk-headline-plus-first-element-margin: 1.2em
5555}
5556
5557.typography-headline-super + .typography-intro-elevated {
5558 --sk-headline-plus-first-element-margin: 1.6em
5559}
5560
5561.typography-headline-elevated + .typography-intro-elevated {
5562 --sk-headline-plus-first-element-margin: 1.4em
5563}
5564
5565.typography-headline-reduced + p, .typography-headline-reduced + ul, .typography-headline-reduced + .typography-body {
5566 --sk-headline-plus-first-element-margin: 1em
5567}
5568
5569html, body {
5570 height: 100%;
5571 font-family: -apple-system, BlinkMacSystemFont, Roboto, Roboto, Helvetica Neue, Roboto, Helvetica, Arial, sans-serif
5572}
5573
5574#app {
5575 height: 100%
5576}
5577