@ndla/ui 55.0.15-alpha.0 → 55.0.17-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/panda.buildinfo.json +125 -29
- package/dist/styles.css +453 -103
- package/es/Article/Article.js +101 -162
- package/es/Article/ArticleByline.js +89 -56
- package/es/Article/ArticleFootNotes.js +35 -23
- package/es/Article/ArticleParagraph.js +2 -2
- package/es/Article/index.js +3 -5
- package/es/AudioPlayer/AudioPlayer.js +20 -20
- package/es/AudioPlayer/Controls.js +45 -45
- package/es/AudioPlayer/SpeechControl.js +8 -8
- package/es/BlogPost/BlogPost.js +6 -6
- package/es/Breadcrumb/Breadcrumb.js +19 -29
- package/es/Breadcrumb/BreadcrumbItem.js +20 -49
- package/es/Breadcrumb/HomeBreadcrumb.js +36 -82
- package/es/CampaignBlock/CampaignBlock.js +12 -12
- package/es/CodeBlock/CodeBlock.js +2 -2
- package/es/Concept/Concept.js +11 -11
- package/es/ContactBlock/ContactBlock.js +170 -185
- package/es/ContactBlock/index.js +3 -3
- package/es/ContentLoader/index.js +12 -12
- package/es/ContentPlaceholder/ContentPlaceholder.js +3 -3
- package/es/ContentTypeBadge/ContentTypeBadge.js +81 -80
- package/es/ContentTypeBadge/ContentTypeBadgeNew.js +3 -2
- package/es/ContentTypeHero/ContentTypeHero.js +50 -0
- package/es/{Logo → ContentTypeHero}/index.js +2 -3
- package/es/CopyParagraphButton/CopyParagraphButton.js +13 -12
- package/es/Embed/AudioEmbed.js +7 -7
- package/es/Embed/BrightcoveEmbed.js +8 -8
- package/es/Embed/CodeEmbed.js +6 -6
- package/es/Embed/ConceptEmbed.js +13 -13
- package/es/Embed/ConceptListEmbed.js +9 -9
- package/es/Embed/ContentLinkEmbed.js +6 -6
- package/es/Embed/CopyrightEmbed.js +3 -3
- package/es/Embed/EmbedErrorPlaceholder.js +5 -5
- package/es/Embed/ExternalEmbed.js +5 -5
- package/es/Embed/FootnoteEmbed.js +5 -5
- package/es/Embed/GlossEmbed.js +11 -11
- package/es/Embed/H5pEmbed.js +5 -5
- package/es/Embed/IframeEmbed.js +6 -6
- package/es/Embed/ImageEmbed.js +10 -10
- package/es/Embed/InlineTriggerButton.js +2 -2
- package/es/Embed/RelatedContentEmbed.js +5 -5
- package/es/Embed/UnknownEmbed.js +3 -3
- package/es/Embed/UuDisclaimerEmbed.js +6 -6
- package/es/ErrorMessage/ErrorMessage.js +14 -14
- package/es/ErrorMessage/ErrorResourceAccessDenied.js +6 -6
- package/es/FactBox/FactBox.js +5 -5
- package/es/FileList/File.js +3 -3
- package/es/FileList/FileList.js +6 -6
- package/es/FileList/Format.js +6 -6
- package/es/FileList/PdfFile.js +5 -5
- package/es/FrontpageArticle/FrontpageArticle.js +7 -8
- package/es/Gloss/Gloss.js +23 -23
- package/es/Gloss/GlossExample.js +9 -9
- package/es/Grid/Grid.js +4 -4
- package/es/KeyFigure/KeyFigure.js +5 -5
- package/es/Layout/LayoutItem.js +25 -37
- package/es/Layout/OneColumn.js +33 -31
- package/es/Layout/PageContainer.js +21 -30
- package/es/LicenseByline/EmbedByline.js +21 -21
- package/es/LicenseByline/LicenseLink.js +3 -3
- package/es/LinkBlock/LinkBlock.js +8 -8
- package/es/LinkBlock/LinkBlockSection.js +4 -4
- package/es/Messages/MessageBox.js +11 -11
- package/es/Messages/index.js +1 -2
- package/es/ProgrammeCard/ProgrammeCard.js +5 -5
- package/es/RelatedArticleList/RelatedArticleList.js +15 -15
- package/es/ResourceBox/ResourceBox.js +9 -9
- package/es/SnackBar/DefaultSnackbar.js +5 -5
- package/es/SnackBar/SnackbarProvider.js +7 -7
- package/es/TagSelector/TagSelector.js +17 -17
- package/es/TreeStructure/AddFolderButton.js +4 -4
- package/es/TreeStructure/ComboboxButton.js +7 -7
- package/es/TreeStructure/FolderItem.js +13 -13
- package/es/TreeStructure/FolderItems.js +6 -6
- package/es/TreeStructure/TreeStructure.js +9 -9
- package/es/ZendeskButton/ZendeskButton.js +2 -2
- package/es/i18n/index.js +1 -1
- package/es/index.js +5 -12
- package/es/locale/messages-en.js +1 -1
- package/es/locale/messages-nb.js +1 -1
- package/es/locale/messages-nn.js +1 -1
- package/es/locale/messages-se.js +1 -1
- package/es/locale/messages-sma.js +1 -1
- package/es/model/ContentType.js +3 -1
- package/es/styles.css +453 -103
- package/lib/Article/Article.d.ts +9 -30
- package/lib/Article/Article.js +104 -164
- package/lib/Article/ArticleByline.d.ts +1 -3
- package/lib/Article/ArticleByline.js +89 -56
- package/lib/Article/ArticleFootNotes.js +35 -24
- package/lib/Article/ArticleParagraph.js +2 -2
- package/lib/Article/index.d.ts +2 -5
- package/lib/Article/index.js +18 -24
- package/lib/AudioPlayer/AudioPlayer.js +20 -20
- package/lib/AudioPlayer/Controls.js +45 -45
- package/lib/AudioPlayer/SpeechControl.js +8 -8
- package/lib/BlogPost/BlogPost.js +6 -6
- package/lib/Breadcrumb/Breadcrumb.js +21 -29
- package/lib/Breadcrumb/BreadcrumbItem.js +22 -50
- package/lib/Breadcrumb/HomeBreadcrumb.d.ts +1 -2
- package/lib/Breadcrumb/HomeBreadcrumb.js +38 -82
- package/lib/CampaignBlock/CampaignBlock.js +12 -12
- package/lib/CodeBlock/CodeBlock.js +2 -2
- package/lib/Concept/Concept.js +11 -11
- package/lib/ContactBlock/ContactBlock.d.ts +6 -7
- package/lib/ContactBlock/ContactBlock.js +173 -184
- package/lib/ContactBlock/index.d.ts +3 -3
- package/lib/ContactBlock/index.js +13 -11
- package/lib/ContentLoader/index.js +12 -12
- package/lib/ContentPlaceholder/ContentPlaceholder.js +3 -3
- package/lib/ContentTypeBadge/ContentTypeBadge.d.ts +11 -12
- package/lib/ContentTypeBadge/ContentTypeBadge.js +83 -80
- package/lib/ContentTypeBadge/ContentTypeBadgeNew.d.ts +1 -2
- package/lib/ContentTypeBadge/ContentTypeBadgeNew.js +3 -2
- package/lib/ContentTypeHero/ContentTypeHero.d.ts +15 -0
- package/lib/ContentTypeHero/ContentTypeHero.js +57 -0
- package/lib/ContentTypeHero/index.d.ts +9 -0
- package/lib/ContentTypeHero/index.js +12 -0
- package/lib/CopyParagraphButton/CopyParagraphButton.js +13 -12
- package/lib/Embed/AudioEmbed.js +7 -7
- package/lib/Embed/BrightcoveEmbed.js +8 -8
- package/lib/Embed/CodeEmbed.js +6 -6
- package/lib/Embed/ConceptEmbed.js +13 -13
- package/lib/Embed/ConceptListEmbed.js +9 -9
- package/lib/Embed/ContentLinkEmbed.js +6 -6
- package/lib/Embed/CopyrightEmbed.js +3 -3
- package/lib/Embed/EmbedErrorPlaceholder.js +5 -5
- package/lib/Embed/ExternalEmbed.js +5 -5
- package/lib/Embed/FootnoteEmbed.js +5 -5
- package/lib/Embed/GlossEmbed.js +11 -11
- package/lib/Embed/H5pEmbed.js +5 -5
- package/lib/Embed/IframeEmbed.js +6 -6
- package/lib/Embed/ImageEmbed.js +10 -10
- package/lib/Embed/InlineTriggerButton.js +2 -2
- package/lib/Embed/RelatedContentEmbed.js +5 -5
- package/lib/Embed/UnknownEmbed.js +3 -3
- package/lib/Embed/UuDisclaimerEmbed.js +6 -6
- package/lib/ErrorMessage/ErrorMessage.js +14 -14
- package/lib/ErrorMessage/ErrorResourceAccessDenied.js +6 -6
- package/lib/FactBox/FactBox.js +5 -5
- package/lib/FileList/File.js +3 -3
- package/lib/FileList/FileList.js +6 -6
- package/lib/FileList/Format.js +6 -6
- package/lib/FileList/PdfFile.js +5 -5
- package/lib/FrontpageArticle/FrontpageArticle.js +7 -8
- package/lib/Gloss/Gloss.js +23 -23
- package/lib/Gloss/GlossExample.js +9 -9
- package/lib/Grid/Grid.js +4 -4
- package/lib/KeyFigure/KeyFigure.js +5 -5
- package/lib/Layout/LayoutItem.d.ts +3 -7
- package/lib/Layout/LayoutItem.js +27 -38
- package/lib/Layout/OneColumn.d.ts +3 -6
- package/lib/Layout/OneColumn.js +36 -33
- package/lib/Layout/PageContainer.d.ts +3 -6
- package/lib/Layout/PageContainer.js +24 -32
- package/lib/LicenseByline/EmbedByline.js +21 -21
- package/lib/LicenseByline/LicenseLink.js +3 -3
- package/lib/LinkBlock/LinkBlock.js +8 -8
- package/lib/LinkBlock/LinkBlockSection.js +4 -4
- package/lib/Messages/MessageBox.js +11 -11
- package/lib/Messages/index.d.ts +1 -2
- package/lib/Messages/index.js +0 -7
- package/lib/ProgrammeCard/ProgrammeCard.js +5 -5
- package/lib/RelatedArticleList/RelatedArticleList.js +15 -15
- package/lib/ResourceBox/ResourceBox.js +9 -9
- package/lib/SnackBar/DefaultSnackbar.js +5 -5
- package/lib/SnackBar/SnackbarProvider.js +7 -7
- package/lib/TagSelector/TagSelector.js +17 -17
- package/lib/TreeStructure/AddFolderButton.js +4 -4
- package/lib/TreeStructure/ComboboxButton.js +7 -7
- package/lib/TreeStructure/FolderItem.js +13 -13
- package/lib/TreeStructure/FolderItems.js +6 -6
- package/lib/TreeStructure/TreeStructure.js +9 -9
- package/lib/ZendeskButton/ZendeskButton.js +2 -2
- package/lib/i18n/index.d.ts +1 -1
- package/lib/i18n/index.js +6 -0
- package/lib/index.d.ts +8 -15
- package/lib/index.js +30 -139
- package/lib/locale/messages-en.js +1 -1
- package/lib/locale/messages-nb.js +1 -1
- package/lib/locale/messages-nn.js +1 -1
- package/lib/locale/messages-se.js +1 -1
- package/lib/locale/messages-sma.js +1 -1
- package/lib/model/ContentType.d.ts +1 -0
- package/lib/model/ContentType.js +4 -2
- package/lib/styles.css +453 -103
- package/package.json +10 -11
- package/src/Article/Article.tsx +101 -229
- package/src/Article/ArticleByline.tsx +82 -69
- package/src/Article/ArticleFootNotes.tsx +32 -36
- package/src/Article/index.ts +3 -7
- package/src/Breadcrumb/Breadcrumb.tsx +20 -18
- package/src/Breadcrumb/BreadcrumbItem.tsx +36 -59
- package/src/Breadcrumb/HomeBreadcrumb.stories.tsx +0 -12
- package/src/Breadcrumb/HomeBreadcrumb.tsx +33 -46
- package/src/ContactBlock/{Contactblock.stories.tsx → ContactBlock.stories.tsx} +3 -4
- package/src/ContactBlock/ContactBlock.tsx +165 -199
- package/src/ContactBlock/index.ts +3 -3
- package/src/ContentTypeBadge/ContentTypeBadge.tsx +77 -77
- package/src/ContentTypeBadge/ContentTypeBadgeNew.tsx +3 -1
- package/src/ContentTypeHero/ContentTypeHero.stories.tsx +76 -0
- package/src/ContentTypeHero/ContentTypeHero.tsx +55 -0
- package/src/ContentTypeHero/index.ts +10 -0
- package/src/CopyParagraphButton/CopyParagraphButton.tsx +10 -3
- package/src/Embed/AudioEmbed.stories.tsx +6 -8
- package/src/Embed/BrightcoveEmbed.stories.tsx +6 -8
- package/src/Embed/ConceptEmbed.stories.tsx +6 -8
- package/src/Embed/ExternalEmbed.stories.tsx +5 -5
- package/src/Embed/H5pEmbed.stories.tsx +6 -8
- package/src/Embed/IframeEmbed.stories.tsx +6 -8
- package/src/Embed/ImageEmbed.stories.tsx +6 -8
- package/src/Embed/RelatedContentEmbed.stories.tsx +6 -8
- package/src/Embed/UuDisclaimerEmbed.stories.tsx +6 -8
- package/src/FrontpageArticle/FrontpageArticle.tsx +1 -1
- package/src/Layout/LayoutItem.tsx +25 -41
- package/src/Layout/OneColumn.tsx +33 -33
- package/src/Layout/PageContainer.tsx +22 -24
- package/src/Messages/index.ts +1 -2
- package/src/i18n/index.ts +1 -0
- package/src/index.ts +11 -35
- package/src/locale/messages-en.ts +1 -1
- package/src/locale/messages-nb.ts +1 -1
- package/src/locale/messages-nn.ts +1 -1
- package/src/locale/messages-se.ts +1 -1
- package/src/locale/messages-sma.ts +1 -1
- package/src/model/ContentType.ts +2 -0
- package/es/Article/ArticleHeaderWrapper.js +0 -33
- package/es/CreatedBy/CreatedBy.js +0 -73
- package/es/CreatedBy/index.js +0 -10
- package/es/Hero/Hero.js +0 -68
- package/es/Hero/HeroContent.js +0 -16
- package/es/Hero/index.js +0 -10
- package/es/LanguageSelector/LanguageSelector.js +0 -87
- package/es/LanguageSelector/index.js +0 -10
- package/es/Logo/Logo.js +0 -52
- package/es/Logo/SvgLogo.js +0 -54
- package/es/Messages/MessageBanner.js +0 -72
- package/es/Search/ActiveFilterContent.js +0 -40
- package/es/Search/ActiveFilters.js +0 -112
- package/es/Search/ContentTypeResult.js +0 -151
- package/es/Search/ContentTypeResultStyles.js +0 -51
- package/es/Search/IsPathToHighlight.js +0 -12
- package/es/Search/LoadingWrapper.js +0 -31
- package/es/Search/SearchField.js +0 -110
- package/es/Search/SearchFieldForm.js +0 -33
- package/es/Search/SearchResult.js +0 -185
- package/es/Search/SearchResultSleeve.js +0 -229
- package/es/Search/index.js +0 -12
- package/lib/Article/ArticleHeaderWrapper.d.ts +0 -14
- package/lib/Article/ArticleHeaderWrapper.js +0 -40
- package/lib/CreatedBy/CreatedBy.d.ts +0 -15
- package/lib/CreatedBy/CreatedBy.js +0 -78
- package/lib/CreatedBy/index.d.ts +0 -9
- package/lib/CreatedBy/index.js +0 -16
- package/lib/Hero/Hero.d.ts +0 -25
- package/lib/Hero/Hero.js +0 -83
- package/lib/Hero/HeroContent.d.ts +0 -12
- package/lib/Hero/HeroContent.js +0 -23
- package/lib/Hero/index.d.ts +0 -10
- package/lib/Hero/index.js +0 -61
- package/lib/LanguageSelector/LanguageSelector.d.ts +0 -15
- package/lib/LanguageSelector/LanguageSelector.js +0 -92
- package/lib/LanguageSelector/index.d.ts +0 -9
- package/lib/LanguageSelector/index.js +0 -13
- package/lib/Logo/Logo.d.ts +0 -20
- package/lib/Logo/Logo.js +0 -58
- package/lib/Logo/SvgLogo.d.ts +0 -14
- package/lib/Logo/SvgLogo.js +0 -62
- package/lib/Logo/index.d.ts +0 -9
- package/lib/Logo/index.js +0 -16
- package/lib/Messages/MessageBanner.d.ts +0 -16
- package/lib/Messages/MessageBanner.js +0 -77
- package/lib/Search/ActiveFilterContent.d.ts +0 -23
- package/lib/Search/ActiveFilterContent.js +0 -47
- package/lib/Search/ActiveFilters.d.ts +0 -19
- package/lib/Search/ActiveFilters.js +0 -119
- package/lib/Search/ContentTypeResult.d.ts +0 -29
- package/lib/Search/ContentTypeResult.js +0 -159
- package/lib/Search/ContentTypeResultStyles.d.ts +0 -45
- package/lib/Search/ContentTypeResultStyles.js +0 -58
- package/lib/Search/IsPathToHighlight.d.ts +0 -8
- package/lib/Search/IsPathToHighlight.js +0 -19
- package/lib/Search/LoadingWrapper.d.ts +0 -12
- package/lib/Search/LoadingWrapper.js +0 -38
- package/lib/Search/SearchField.d.ts +0 -25
- package/lib/Search/SearchField.js +0 -117
- package/lib/Search/SearchFieldForm.d.ts +0 -15
- package/lib/Search/SearchFieldForm.js +0 -41
- package/lib/Search/SearchResult.d.ts +0 -43
- package/lib/Search/SearchResult.js +0 -194
- package/lib/Search/SearchResultSleeve.d.ts +0 -25
- package/lib/Search/SearchResultSleeve.js +0 -237
- package/lib/Search/index.d.ts +0 -11
- package/lib/Search/index.js +0 -33
- package/src/Article/ArticleHeaderWrapper.tsx +0 -38
- package/src/CreatedBy/CreatedBy.stories.tsx +0 -36
- package/src/CreatedBy/CreatedBy.tsx +0 -63
- package/src/CreatedBy/index.ts +0 -11
- package/src/Hero/Hero.stories.tsx +0 -35
- package/src/Hero/Hero.tsx +0 -129
- package/src/Hero/HeroContent.tsx +0 -43
- package/src/Hero/index.ts +0 -21
- package/src/LanguageSelector/LanguageSelector.stories.tsx +0 -44
- package/src/LanguageSelector/LanguageSelector.tsx +0 -101
- package/src/LanguageSelector/index.ts +0 -11
- package/src/Logo/Logo.stories.tsx +0 -47
- package/src/Logo/Logo.tsx +0 -47
- package/src/Logo/SvgLogo.tsx +0 -48
- package/src/Logo/index.ts +0 -11
- package/src/Messages/MessageBanner.stories.tsx +0 -31
- package/src/Messages/MessageBanner.tsx +0 -67
- package/src/Search/ActiveFilterContent.tsx +0 -64
- package/src/Search/ActiveFilters.tsx +0 -145
- package/src/Search/ContentTypeResult.tsx +0 -190
- package/src/Search/ContentTypeResultStyles.tsx +0 -172
- package/src/Search/IsPathToHighlight.ts +0 -12
- package/src/Search/LoadingWrapper.tsx +0 -44
- package/src/Search/SearchField.tsx +0 -175
- package/src/Search/SearchFieldForm.tsx +0 -64
- package/src/Search/SearchResult.tsx +0 -368
- package/src/Search/SearchResultSleeve.tsx +0 -367
- package/src/Search/__tests__/Highlight-test.ts +0 -66
- package/src/Search/index.ts +0 -14
package/dist/styles.css
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
@layer utilities {
|
|
2
2
|
@layer compositions {
|
|
3
|
+
.textStyle_body\.medium {
|
|
4
|
+
font-family: var(--fonts-sans);
|
|
5
|
+
font-weight: var(--font-weights-normal);
|
|
6
|
+
font-size: var(--font-sizes-small);
|
|
7
|
+
line-height: var(--line-heights-small);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.textStyle_body\.medium:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
11
|
+
font-size: calc(var(--font-sizes-small) * 1.11);
|
|
12
|
+
line-height: calc(var(--line-heights-small) * 1.11);
|
|
13
|
+
}
|
|
14
|
+
|
|
3
15
|
.textStyle_body\.large {
|
|
4
16
|
font-family: var(--fonts-sans);
|
|
5
17
|
font-weight: var(--font-weights-normal);
|
|
@@ -36,18 +48,6 @@
|
|
|
36
48
|
line-height: calc(var(--line-heights-medium) * 1.11);
|
|
37
49
|
}
|
|
38
50
|
|
|
39
|
-
.textStyle_body\.medium {
|
|
40
|
-
font-family: var(--fonts-sans);
|
|
41
|
-
font-weight: var(--font-weights-normal);
|
|
42
|
-
font-size: var(--font-sizes-small);
|
|
43
|
-
line-height: var(--line-heights-small);
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.textStyle_body\.medium:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
47
|
-
font-size: calc(var(--font-sizes-small) * 1.11);
|
|
48
|
-
line-height: calc(var(--line-heights-small) * 1.11);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
51
|
.\[\&_a\]\:textStyle_label\.xsmall a {
|
|
52
52
|
font-family: var(--fonts-sans);
|
|
53
53
|
font-weight: var(--font-weights-normal);
|
|
@@ -61,6 +61,78 @@
|
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
+
.w_100\% {
|
|
65
|
+
width: 100%;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.d_flex {
|
|
69
|
+
display: flex;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.c_text\.default {
|
|
73
|
+
color: var(--colors-text-default);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.gap_xxlarge {
|
|
77
|
+
gap: var(--spacing-xxlarge);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.bg_surface\.default {
|
|
81
|
+
background: var(--colors-surface-default);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.py_xsmall {
|
|
85
|
+
padding-block: var(--spacing-xsmall);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.px_8\% {
|
|
89
|
+
padding-inline: 8%;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.ov-wrap_break-word {
|
|
93
|
+
overflow-wrap: break-word;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.pos_relative {
|
|
97
|
+
position: relative;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.gap_xsmall {
|
|
101
|
+
gap: var(--spacing-xsmall);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.pos_absolute {
|
|
105
|
+
position: absolute;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.gap_medium {
|
|
109
|
+
gap: var(--spacing-medium);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.mbs_medium {
|
|
113
|
+
margin-block-start: var(--spacing-medium);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.pbs_xsmall {
|
|
117
|
+
padding-block-start: var(--spacing-xsmall);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.bd-t_1px_solid {
|
|
121
|
+
border-top: 1px solid;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.gap_3xsmall {
|
|
125
|
+
gap: var(--spacing-3xsmall);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.pbs_xxlarge {
|
|
129
|
+
padding-block-start: var(--spacing-xxlarge);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.li-s_none {
|
|
133
|
+
list-style: none;
|
|
134
|
+
}
|
|
135
|
+
|
|
64
136
|
.bd_1px_solid {
|
|
65
137
|
border: 1px solid;
|
|
66
138
|
}
|
|
@@ -81,10 +153,6 @@
|
|
|
81
153
|
overflow: hidden;
|
|
82
154
|
}
|
|
83
155
|
|
|
84
|
-
.d_flex {
|
|
85
|
-
display: flex;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
156
|
.flex_1_0_auto {
|
|
89
157
|
flex: 1 0 auto;
|
|
90
158
|
}
|
|
@@ -97,18 +165,10 @@
|
|
|
97
165
|
height: var(--sizes-surface-4xsmall);
|
|
98
166
|
}
|
|
99
167
|
|
|
100
|
-
.gap_xsmall {
|
|
101
|
-
gap: var(--spacing-xsmall);
|
|
102
|
-
}
|
|
103
|
-
|
|
104
168
|
.p_xsmall {
|
|
105
169
|
padding: var(--spacing-xsmall);
|
|
106
170
|
}
|
|
107
171
|
|
|
108
|
-
.w_100\% {
|
|
109
|
-
width: 100%;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
172
|
.bd-bs_1px_solid {
|
|
113
173
|
border-block-start: 1px solid;
|
|
114
174
|
}
|
|
@@ -134,10 +194,6 @@
|
|
|
134
194
|
background: var(--colors-background-default);
|
|
135
195
|
}
|
|
136
196
|
|
|
137
|
-
.py_xsmall {
|
|
138
|
-
padding-block: var(--spacing-xsmall);
|
|
139
|
-
}
|
|
140
|
-
|
|
141
197
|
.px_medium {
|
|
142
198
|
padding-inline: var(--spacing-medium);
|
|
143
199
|
}
|
|
@@ -210,14 +266,6 @@
|
|
|
210
266
|
border-width: 0;
|
|
211
267
|
}
|
|
212
268
|
|
|
213
|
-
.c_text\.default {
|
|
214
|
-
color: var(--colors-text-default);
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.gap_medium {
|
|
218
|
-
gap: var(--spacing-medium);
|
|
219
|
-
}
|
|
220
|
-
|
|
221
269
|
.h_100\% {
|
|
222
270
|
height: 100%;
|
|
223
271
|
}
|
|
@@ -250,32 +298,32 @@
|
|
|
250
298
|
width: fit-content;
|
|
251
299
|
}
|
|
252
300
|
|
|
253
|
-
.pos_relative {
|
|
254
|
-
position: relative;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
301
|
.max-w_8xl {
|
|
258
302
|
max-width: 8xl;
|
|
259
303
|
}
|
|
260
304
|
|
|
261
|
-
.
|
|
262
|
-
|
|
305
|
+
.c_inherit {
|
|
306
|
+
color: inherit;
|
|
263
307
|
}
|
|
264
308
|
|
|
265
|
-
.
|
|
266
|
-
gap: var(--spacing-
|
|
309
|
+
.gap_4xsmall {
|
|
310
|
+
gap: var(--spacing-4xsmall);
|
|
267
311
|
}
|
|
268
312
|
|
|
269
313
|
.td_underline {
|
|
270
314
|
text-decoration: underline;
|
|
271
315
|
}
|
|
272
316
|
|
|
273
|
-
.
|
|
274
|
-
|
|
317
|
+
.max-w_surface\.xsmall {
|
|
318
|
+
max-width: var(--sizes-surface-xsmall);
|
|
275
319
|
}
|
|
276
320
|
|
|
277
|
-
.
|
|
278
|
-
|
|
321
|
+
.gap_xxsmall {
|
|
322
|
+
gap: var(--spacing-xxsmall);
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.h_215px {
|
|
326
|
+
height: 215px;
|
|
279
327
|
}
|
|
280
328
|
|
|
281
329
|
.bd-l_4px_solid {
|
|
@@ -298,6 +346,70 @@
|
|
|
298
346
|
display: inline;
|
|
299
347
|
}
|
|
300
348
|
|
|
349
|
+
.max-w_744px {
|
|
350
|
+
max-width: 744px;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.min-w_surface\.xxsmall {
|
|
354
|
+
min-width: var(--sizes-surface-xxsmall);
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.p_medium {
|
|
358
|
+
padding: var(--spacing-medium);
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.z_base {
|
|
362
|
+
z-index: var(--z-index-base);
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.w_surface\.xsmall {
|
|
366
|
+
width: var(--sizes-surface-xsmall);
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.h_surface\.xsmall {
|
|
370
|
+
height: var(--sizes-surface-xsmall);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.d_inline-flex {
|
|
374
|
+
display: inline-flex;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.bdr_100\% {
|
|
378
|
+
border-radius: 100%;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.c_var\(--icon-color\) {
|
|
382
|
+
color: var(--icon-color);
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.w_20px {
|
|
386
|
+
width: 20px;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.h_20px {
|
|
390
|
+
height: 20px;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.w_34px {
|
|
394
|
+
width: 34px;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.h_34px {
|
|
398
|
+
height: 34px;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.w_50px {
|
|
402
|
+
width: 50px;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.h_50px {
|
|
406
|
+
height: 50px;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.bd_2px_solid {
|
|
410
|
+
border: 2px solid;
|
|
411
|
+
}
|
|
412
|
+
|
|
301
413
|
.ms_xsmall {
|
|
302
414
|
margin-inline-start: var(--spacing-xsmall);
|
|
303
415
|
}
|
|
@@ -314,10 +426,6 @@
|
|
|
314
426
|
color: var(--colors-text-error);
|
|
315
427
|
}
|
|
316
428
|
|
|
317
|
-
.h_surface\.xsmall {
|
|
318
|
-
height: var(--sizes-surface-xsmall);
|
|
319
|
-
}
|
|
320
|
-
|
|
321
429
|
.bd-b_0 {
|
|
322
430
|
border-bottom: 0;
|
|
323
431
|
}
|
|
@@ -326,14 +434,6 @@
|
|
|
326
434
|
cursor: pointer;
|
|
327
435
|
}
|
|
328
436
|
|
|
329
|
-
.pos_absolute {
|
|
330
|
-
position: absolute;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
.z_base {
|
|
334
|
-
z-index: var(--z-index-base);
|
|
335
|
-
}
|
|
336
|
-
|
|
337
437
|
.bg_background\.default\/20 {
|
|
338
438
|
--mix-background: color-mix(in srgb, var(--colors-background-default) 20%, transparent);
|
|
339
439
|
background: var(--mix-background, var(--colors-background-default));
|
|
@@ -351,10 +451,6 @@
|
|
|
351
451
|
height: var(--sizes-medium);
|
|
352
452
|
}
|
|
353
453
|
|
|
354
|
-
.bd_2px_solid {
|
|
355
|
-
border: 2px solid;
|
|
356
|
-
}
|
|
357
|
-
|
|
358
454
|
.c_background\.default {
|
|
359
455
|
color: var(--colors-background-default);
|
|
360
456
|
}
|
|
@@ -387,10 +483,6 @@
|
|
|
387
483
|
margin-block: var(--spacing-xxlarge);
|
|
388
484
|
}
|
|
389
485
|
|
|
390
|
-
.p_medium {
|
|
391
|
-
padding: var(--spacing-medium);
|
|
392
|
-
}
|
|
393
|
-
|
|
394
486
|
.max-h_surface\.xxsmall {
|
|
395
487
|
max-height: var(--sizes-surface-xxsmall);
|
|
396
488
|
}
|
|
@@ -411,20 +503,28 @@
|
|
|
411
503
|
padding-block: var(--spacing-small);
|
|
412
504
|
}
|
|
413
505
|
|
|
414
|
-
.
|
|
415
|
-
|
|
506
|
+
.pos_relative\! {
|
|
507
|
+
position: relative !important;
|
|
416
508
|
}
|
|
417
509
|
|
|
418
|
-
.
|
|
419
|
-
|
|
510
|
+
.w_83\.333\% {
|
|
511
|
+
width: 83.333%;
|
|
420
512
|
}
|
|
421
513
|
|
|
422
|
-
.
|
|
423
|
-
|
|
514
|
+
.max-w_1150px {
|
|
515
|
+
max-width: 1150px;
|
|
424
516
|
}
|
|
425
517
|
|
|
426
|
-
.
|
|
427
|
-
|
|
518
|
+
.max-w_1024px {
|
|
519
|
+
max-width: 1024px;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
.min-h_100vh {
|
|
523
|
+
min-height: 100vh;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
.bg_surface\.dangerSubtle {
|
|
527
|
+
background: var(--colors-surface-danger-subtle);
|
|
428
528
|
}
|
|
429
529
|
|
|
430
530
|
.white-space_pre-wrap {
|
|
@@ -443,10 +543,6 @@
|
|
|
443
543
|
color: var(--colors-icon-strong);
|
|
444
544
|
}
|
|
445
545
|
|
|
446
|
-
.li-s_none {
|
|
447
|
-
list-style: none;
|
|
448
|
-
}
|
|
449
|
-
|
|
450
546
|
.d_grid {
|
|
451
547
|
display: grid;
|
|
452
548
|
}
|
|
@@ -459,8 +555,8 @@
|
|
|
459
555
|
aspect-ratio: 1/1;
|
|
460
556
|
}
|
|
461
557
|
|
|
462
|
-
.
|
|
463
|
-
|
|
558
|
+
.flex-d_column {
|
|
559
|
+
flex-direction: column;
|
|
464
560
|
}
|
|
465
561
|
|
|
466
562
|
.ai_center {
|
|
@@ -471,8 +567,28 @@
|
|
|
471
567
|
align-items: flex-start;
|
|
472
568
|
}
|
|
473
569
|
|
|
474
|
-
.
|
|
475
|
-
|
|
570
|
+
.right_8\% {
|
|
571
|
+
right: 8%;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.top_xsmall {
|
|
575
|
+
top: var(--spacing-xsmall);
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.bd-c_stroke\.subtle {
|
|
579
|
+
border-color: var(--colors-stroke-subtle);
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.flex-d_column-reverse {
|
|
583
|
+
flex-direction: column-reverse;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.jc_space-between {
|
|
587
|
+
justify-content: space-between;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.bd-c_stroke\.default {
|
|
591
|
+
border-color: var(--colors-stroke-default);
|
|
476
592
|
}
|
|
477
593
|
|
|
478
594
|
.as_flex-start {
|
|
@@ -487,10 +603,6 @@
|
|
|
487
603
|
background-color: var(--colors-background-default);
|
|
488
604
|
}
|
|
489
605
|
|
|
490
|
-
.bd-c_stroke\.subtle {
|
|
491
|
-
border-color: var(--colors-stroke-subtle);
|
|
492
|
-
}
|
|
493
|
-
|
|
494
606
|
.trs-dur_fast {
|
|
495
607
|
--transition-duration: var(--durations-fast);
|
|
496
608
|
transition-duration: var(--durations-fast);
|
|
@@ -506,6 +618,14 @@
|
|
|
506
618
|
transition-timing-function: var(--easings-default);
|
|
507
619
|
}
|
|
508
620
|
|
|
621
|
+
.flex-wrap_wrap {
|
|
622
|
+
flex-wrap: wrap;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
.ai_flex-end {
|
|
626
|
+
align-items: flex-end;
|
|
627
|
+
}
|
|
628
|
+
|
|
509
629
|
.as_center {
|
|
510
630
|
align-self: center;
|
|
511
631
|
}
|
|
@@ -522,6 +642,22 @@
|
|
|
522
642
|
font-family: var(--fonts-code);
|
|
523
643
|
}
|
|
524
644
|
|
|
645
|
+
.jc_flex-start {
|
|
646
|
+
justify-content: flex-start;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.ff_serif {
|
|
650
|
+
font-family: var(--fonts-serif);
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.bd-c_var\(--icon-color\) {
|
|
654
|
+
border-color: var(--icon-color);
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.bg-c_var\(--background-color\) {
|
|
658
|
+
background-color: var(--background-color);
|
|
659
|
+
}
|
|
660
|
+
|
|
525
661
|
.fw_bold {
|
|
526
662
|
font-weight: var(--font-weights-bold);
|
|
527
663
|
}
|
|
@@ -565,10 +701,6 @@
|
|
|
565
701
|
transition-timing-function: ease-out;
|
|
566
702
|
}
|
|
567
703
|
|
|
568
|
-
.top_xsmall {
|
|
569
|
-
top: var(--spacing-xsmall);
|
|
570
|
-
}
|
|
571
|
-
|
|
572
704
|
.right_xsmall {
|
|
573
705
|
right: var(--spacing-xsmall);
|
|
574
706
|
}
|
|
@@ -620,14 +752,34 @@
|
|
|
620
752
|
bottom: calc(var(--spacing-medium) * -1);
|
|
621
753
|
}
|
|
622
754
|
|
|
623
|
-
.jc_space-between {
|
|
624
|
-
justify-content: space-between;
|
|
625
|
-
}
|
|
626
|
-
|
|
627
755
|
.font-style_italic {
|
|
628
756
|
font-style: italic;
|
|
629
757
|
}
|
|
630
758
|
|
|
759
|
+
.right_auto\! {
|
|
760
|
+
right: auto !important;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.left_8\.333\% {
|
|
764
|
+
left: 8.333%;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.ml_auto {
|
|
768
|
+
margin-left: auto;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.mr_auto {
|
|
772
|
+
margin-right: auto;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.pl_18px {
|
|
776
|
+
padding-left: 18px;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.pr_18px {
|
|
780
|
+
padding-right: 18px;
|
|
781
|
+
}
|
|
782
|
+
|
|
631
783
|
.bd-c_stroke\.error {
|
|
632
784
|
border-color: var(--colors-stroke-error);
|
|
633
785
|
}
|
|
@@ -636,6 +788,22 @@
|
|
|
636
788
|
grid-template-columns: repeat(2, 1fr);
|
|
637
789
|
}
|
|
638
790
|
|
|
791
|
+
.\[\&_mjx-stretchy-v_\>_mjx-ext_\>_mjx-c\]\:trf_scaleY\(100\)_translateY\(0\.075em\) mjx-stretchy-v > mjx-ext > mjx-c {
|
|
792
|
+
transform: scaleY(100) translateY(0.075em);
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.after\:d_table::after {
|
|
796
|
+
display: table;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.after\:clear_both::after {
|
|
800
|
+
clear: both;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
.\[\&_h1\]\:ov-wrap_anywhere h1 {
|
|
804
|
+
overflow-wrap: anywhere;
|
|
805
|
+
}
|
|
806
|
+
|
|
639
807
|
.\[\&\[data-align\=\"center\"\]\]\:ta_center[data-align="center"] {
|
|
640
808
|
text-align: center;
|
|
641
809
|
}
|
|
@@ -752,6 +920,42 @@
|
|
|
752
920
|
display: inline;
|
|
753
921
|
}
|
|
754
922
|
|
|
923
|
+
.before\:pos_absolute::before {
|
|
924
|
+
position: absolute;
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
.before\:h_calc\(100\%_\+_50px\)::before {
|
|
928
|
+
height: calc(100% + 50px);
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
.before\:w_surface\.3xlarge::before {
|
|
932
|
+
width: var(--sizes-surface-3xlarge);
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
.before\:trf_rotate\(-4deg\)::before {
|
|
936
|
+
transform: rotate(-4deg);
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.before\:z_hide::before {
|
|
940
|
+
z-index: var(--z-index-hide);
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
.\[\&_svg\]\:w_10px svg {
|
|
944
|
+
width: 10px;
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.\[\&_svg\]\:h_10px svg {
|
|
948
|
+
height: 10px;
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
.\[\&_svg\]\:w_25px svg {
|
|
952
|
+
width: 25px;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.\[\&_svg\]\:h_25px svg {
|
|
956
|
+
height: 25px;
|
|
957
|
+
}
|
|
958
|
+
|
|
755
959
|
.\[\&_\>_\*\:not\(\:where\(\:first-child\)\)\]\:mbs_xsmall > *:not(:where(:first-child)) {
|
|
756
960
|
margin-block-start: var(--spacing-xsmall);
|
|
757
961
|
}
|
|
@@ -851,12 +1055,16 @@
|
|
|
851
1055
|
background: var(--colors-surface-brand-1-subtle);
|
|
852
1056
|
}
|
|
853
1057
|
|
|
854
|
-
|
|
855
|
-
|
|
1058
|
+
.after\:d_block\!::after {
|
|
1059
|
+
display: block !important;
|
|
856
1060
|
}
|
|
857
1061
|
|
|
858
|
-
.
|
|
859
|
-
|
|
1062
|
+
.after\:clear_both\!::after {
|
|
1063
|
+
clear: both !important;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
.\[\&_h3\]\:td_underline h3 {
|
|
1067
|
+
text-decoration: underline;
|
|
860
1068
|
}
|
|
861
1069
|
|
|
862
1070
|
.before\:inset_0::before {
|
|
@@ -867,6 +1075,10 @@
|
|
|
867
1075
|
z-index: 0;
|
|
868
1076
|
}
|
|
869
1077
|
|
|
1078
|
+
.after\:content_0::after {
|
|
1079
|
+
content: 0;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
870
1082
|
.\[\&_\.linenumber\]\:bd-c_stroke\.subtle .linenumber {
|
|
871
1083
|
border-color: var(--colors-stroke-subtle);
|
|
872
1084
|
}
|
|
@@ -883,6 +1095,38 @@
|
|
|
883
1095
|
font-style: italic;
|
|
884
1096
|
}
|
|
885
1097
|
|
|
1098
|
+
.before\:content_\"\"::before {
|
|
1099
|
+
content: "";
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
.before\:top_-60px::before {
|
|
1103
|
+
top: -60px;
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1106
|
+
.before\:left_-50px::before {
|
|
1107
|
+
left: -50px;
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
.before\:right_0::before {
|
|
1111
|
+
right: 0;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
.before\:bottom_0::before {
|
|
1115
|
+
bottom: 0;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
.before\:bg-c_surface\.brand\.3::before {
|
|
1119
|
+
background-color: var(--colors-surface-brand-3);
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
.before\:bg-c_surface\.brand\.3\.moderate::before {
|
|
1123
|
+
background-color: var(--colors-surface-brand-3-moderate);
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
.before\:bg-c_surface\.brand\.3\.subtle::before {
|
|
1127
|
+
background-color: var(--colors-surface-brand-3-subtle);
|
|
1128
|
+
}
|
|
1129
|
+
|
|
886
1130
|
.\[\&_svg\]\:trs-prop_transform svg {
|
|
887
1131
|
--transition-prop: transform;
|
|
888
1132
|
transition-property: transform;
|
|
@@ -935,6 +1179,10 @@
|
|
|
935
1179
|
border-color: var(--colors-stroke-default);
|
|
936
1180
|
}
|
|
937
1181
|
|
|
1182
|
+
.after\:content_\"\"\!::after {
|
|
1183
|
+
content: "" !important;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
938
1186
|
.\[\&_\[data-forward\]\]\:trs-prop_width\,_height [data-forward] {
|
|
939
1187
|
--transition-prop: width, height;
|
|
940
1188
|
transition-property: width, height;
|
|
@@ -950,11 +1198,11 @@
|
|
|
950
1198
|
transition-duration: var(--durations-fast);
|
|
951
1199
|
}
|
|
952
1200
|
|
|
953
|
-
.
|
|
954
|
-
|
|
1201
|
+
.focusWithin\:td_none:focus-within {
|
|
1202
|
+
text-decoration: none;
|
|
955
1203
|
}
|
|
956
1204
|
|
|
957
|
-
.
|
|
1205
|
+
.focusVisible\:td_none:is(:focus-visible, [data-focus-visible]) {
|
|
958
1206
|
text-decoration: none;
|
|
959
1207
|
}
|
|
960
1208
|
|
|
@@ -1077,24 +1325,69 @@
|
|
|
1077
1325
|
}
|
|
1078
1326
|
.mobileWide\:d_none {
|
|
1079
1327
|
display: none;
|
|
1328
|
+
}
|
|
1329
|
+
.mobileWide\:pl_medium {
|
|
1330
|
+
padding-left: var(--spacing-medium);
|
|
1331
|
+
}
|
|
1332
|
+
.mobileWide\:pr_medium {
|
|
1333
|
+
padding-right: var(--spacing-medium);
|
|
1080
1334
|
}
|
|
1081
1335
|
}
|
|
1082
1336
|
|
|
1083
1337
|
@media screen and (min-width: 37.5625rem) {
|
|
1338
|
+
.tablet\:py_medium {
|
|
1339
|
+
padding-block: var(--spacing-medium);
|
|
1340
|
+
}
|
|
1084
1341
|
.tablet\:px_medium {
|
|
1085
1342
|
padding-inline: var(--spacing-medium);
|
|
1343
|
+
}
|
|
1344
|
+
.tablet\:h_26px {
|
|
1345
|
+
height: 26px;
|
|
1346
|
+
}
|
|
1347
|
+
.tablet\:w_26px {
|
|
1348
|
+
width: 26px;
|
|
1349
|
+
}
|
|
1350
|
+
.tablet\:pos_relative\! {
|
|
1351
|
+
position: relative !important;
|
|
1352
|
+
}
|
|
1353
|
+
.tablet\:w_83\.333\% {
|
|
1354
|
+
width: 83.333%;
|
|
1355
|
+
}
|
|
1356
|
+
.tablet\:top_medium {
|
|
1357
|
+
top: var(--spacing-medium);
|
|
1358
|
+
}
|
|
1359
|
+
.tablet\:ai_unset {
|
|
1360
|
+
align-items: unset;
|
|
1361
|
+
}
|
|
1362
|
+
.tablet\:flex-d_row {
|
|
1363
|
+
flex-direction: row;
|
|
1086
1364
|
}
|
|
1087
1365
|
.tablet\:mt_xxlarge {
|
|
1088
1366
|
margin-top: var(--spacing-xxlarge);
|
|
1089
1367
|
}
|
|
1090
1368
|
.tablet\:mb_xxlarge {
|
|
1091
1369
|
margin-bottom: var(--spacing-xxlarge);
|
|
1370
|
+
}
|
|
1371
|
+
.tablet\:right_auto\! {
|
|
1372
|
+
right: auto !important;
|
|
1373
|
+
}
|
|
1374
|
+
.tablet\:left_8\.333\% {
|
|
1375
|
+
left: 8.333%;
|
|
1376
|
+
}
|
|
1377
|
+
.tablet\:bg-c_\#f8f8f8 {
|
|
1378
|
+
background-color: #f8f8f8;
|
|
1092
1379
|
}
|
|
1093
1380
|
.\[\&\[data-has-image\=\'true\'\]\]\:tablet\:py_xsmall[data-has-image='true'] {
|
|
1094
1381
|
padding-block: var(--spacing-xsmall);
|
|
1095
1382
|
}
|
|
1096
1383
|
.\[\&\[data-has-image\=\'true\'\]\]\:tablet\:px_medium[data-has-image='true'] {
|
|
1097
1384
|
padding-inline: var(--spacing-medium);
|
|
1385
|
+
}
|
|
1386
|
+
.\[\&_svg\]\:tablet\:w_12px svg {
|
|
1387
|
+
width: 12px;
|
|
1388
|
+
}
|
|
1389
|
+
.\[\&_svg\]\:tablet\:h_12px svg {
|
|
1390
|
+
height: 12px;
|
|
1098
1391
|
}
|
|
1099
1392
|
}
|
|
1100
1393
|
|
|
@@ -1120,6 +1413,9 @@
|
|
|
1120
1413
|
}
|
|
1121
1414
|
|
|
1122
1415
|
@media screen and (min-width: 61.3125rem) {
|
|
1416
|
+
.desktop\:py_xxlarge {
|
|
1417
|
+
padding-block: var(--spacing-xxlarge);
|
|
1418
|
+
}
|
|
1123
1419
|
.desktop\:w_260px {
|
|
1124
1420
|
width: 260px;
|
|
1125
1421
|
}
|
|
@@ -1128,6 +1424,9 @@
|
|
|
1128
1424
|
}
|
|
1129
1425
|
.desktop\:h_340px {
|
|
1130
1426
|
height: 340px;
|
|
1427
|
+
}
|
|
1428
|
+
.desktop\:top_xxlarge {
|
|
1429
|
+
top: var(--spacing-xxlarge);
|
|
1131
1430
|
}
|
|
1132
1431
|
}
|
|
1133
1432
|
|
|
@@ -1168,6 +1467,12 @@
|
|
|
1168
1467
|
}
|
|
1169
1468
|
|
|
1170
1469
|
@media screen and (max-width: 37.56rem) {
|
|
1470
|
+
.tabletDown\:d_block {
|
|
1471
|
+
display: block;
|
|
1472
|
+
}
|
|
1473
|
+
.tabletDown\:d_none {
|
|
1474
|
+
display: none;
|
|
1475
|
+
}
|
|
1171
1476
|
.tabletDown\:gap_0 {
|
|
1172
1477
|
gap: 0;
|
|
1173
1478
|
}
|
|
@@ -1188,6 +1493,39 @@
|
|
|
1188
1493
|
}
|
|
1189
1494
|
.tabletDown\:flex-d_column {
|
|
1190
1495
|
flex-direction: column;
|
|
1496
|
+
}
|
|
1497
|
+
.tabletDown\:before\:d_none::before {
|
|
1498
|
+
display: none;
|
|
1499
|
+
}
|
|
1500
|
+
.tabletDown\:before\:pos_absolute::before {
|
|
1501
|
+
position: absolute;
|
|
1502
|
+
}
|
|
1503
|
+
.tabletDown\:before\:h_surface\.xxsmall::before {
|
|
1504
|
+
height: var(--sizes-surface-xxsmall);
|
|
1505
|
+
}
|
|
1506
|
+
.tabletDown\:before\:w_surface\.3xlarge::before {
|
|
1507
|
+
width: var(--sizes-surface-3xlarge);
|
|
1508
|
+
}
|
|
1509
|
+
.tabletDown\:before\:trf_rotate\(-4deg\)::before {
|
|
1510
|
+
transform: rotate(-4deg);
|
|
1511
|
+
}
|
|
1512
|
+
.tabletDown\:before\:z_hide::before {
|
|
1513
|
+
z-index: var(--z-index-hide);
|
|
1514
|
+
}
|
|
1515
|
+
.tabletDown\:before\:content_\"\"::before {
|
|
1516
|
+
content: "";
|
|
1517
|
+
}
|
|
1518
|
+
.tabletDown\:before\:top_-50px::before {
|
|
1519
|
+
top: -50px;
|
|
1520
|
+
}
|
|
1521
|
+
.tabletDown\:before\:left_-50px::before {
|
|
1522
|
+
left: -50px;
|
|
1523
|
+
}
|
|
1524
|
+
.tabletDown\:before\:right_0::before {
|
|
1525
|
+
right: 0;
|
|
1526
|
+
}
|
|
1527
|
+
.tabletDown\:before\:bottom_0::before {
|
|
1528
|
+
bottom: 0;
|
|
1191
1529
|
}
|
|
1192
1530
|
}
|
|
1193
1531
|
|
|
@@ -1251,6 +1589,18 @@
|
|
|
1251
1589
|
@media screen and (max-width: 19.9975rem) {
|
|
1252
1590
|
.mobileDown\:px_xsmall {
|
|
1253
1591
|
padding-inline: var(--spacing-xsmall);
|
|
1592
|
+
}
|
|
1593
|
+
.mobileDown\:gap_xxsmall {
|
|
1594
|
+
gap: var(--spacing-xxsmall);
|
|
1595
|
+
}
|
|
1596
|
+
.mobileDown\:ai_flex-start {
|
|
1597
|
+
align-items: flex-start;
|
|
1598
|
+
}
|
|
1599
|
+
.mobileDown\:jc_center {
|
|
1600
|
+
justify-content: center;
|
|
1601
|
+
}
|
|
1602
|
+
.mobileDown\:flex-d_column {
|
|
1603
|
+
flex-direction: column;
|
|
1254
1604
|
}
|
|
1255
1605
|
}
|
|
1256
1606
|
|