@researai/deepscientist 1.5.9 → 1.5.12

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.
Files changed (165) hide show
  1. package/README.md +112 -99
  2. package/assets/branding/connector-qq.png +0 -0
  3. package/assets/branding/connector-rokid.png +0 -0
  4. package/assets/branding/connector-weixin.png +0 -0
  5. package/assets/branding/projects.png +0 -0
  6. package/bin/ds.js +519 -63
  7. package/docs/assets/branding/projects.png +0 -0
  8. package/docs/en/00_QUICK_START.md +338 -68
  9. package/docs/en/01_SETTINGS_REFERENCE.md +14 -0
  10. package/docs/en/02_START_RESEARCH_GUIDE.md +180 -4
  11. package/docs/en/04_LINGZHU_CONNECTOR_GUIDE.md +62 -179
  12. package/docs/en/09_DOCTOR.md +66 -5
  13. package/docs/en/10_WEIXIN_CONNECTOR_GUIDE.md +137 -0
  14. package/docs/en/11_LICENSE_AND_RISK.md +256 -0
  15. package/docs/en/12_GUIDED_WORKFLOW_TOUR.md +446 -0
  16. package/docs/en/13_CORE_ARCHITECTURE_GUIDE.md +297 -0
  17. package/docs/en/14_PROMPT_SKILLS_AND_MCP_GUIDE.md +506 -0
  18. package/docs/en/15_CODEX_PROVIDER_SETUP.md +284 -0
  19. package/docs/en/99_ACKNOWLEDGEMENTS.md +4 -1
  20. package/docs/en/README.md +83 -0
  21. package/docs/images/lingzhu/rokid-agent-platform-create.png +0 -0
  22. package/docs/images/weixin/weixin-plugin-entry.png +0 -0
  23. package/docs/images/weixin/weixin-plugin-entry.svg +33 -0
  24. package/docs/images/weixin/weixin-qr-confirm.svg +30 -0
  25. package/docs/images/weixin/weixin-quest-media-flow.svg +44 -0
  26. package/docs/images/weixin/weixin-settings-bind.svg +57 -0
  27. package/docs/zh/00_QUICK_START.md +345 -72
  28. package/docs/zh/01_SETTINGS_REFERENCE.md +14 -0
  29. package/docs/zh/02_START_RESEARCH_GUIDE.md +181 -3
  30. package/docs/zh/04_LINGZHU_CONNECTOR_GUIDE.md +62 -193
  31. package/docs/zh/09_DOCTOR.md +68 -5
  32. package/docs/zh/10_WEIXIN_CONNECTOR_GUIDE.md +144 -0
  33. package/docs/zh/11_LICENSE_AND_RISK.md +256 -0
  34. package/docs/zh/12_GUIDED_WORKFLOW_TOUR.md +442 -0
  35. package/docs/zh/13_CORE_ARCHITECTURE_GUIDE.md +296 -0
  36. package/docs/zh/14_PROMPT_SKILLS_AND_MCP_GUIDE.md +506 -0
  37. package/docs/zh/15_CODEX_PROVIDER_SETUP.md +285 -0
  38. package/docs/zh/99_ACKNOWLEDGEMENTS.md +4 -1
  39. package/docs/zh/README.md +129 -0
  40. package/install.sh +0 -34
  41. package/package.json +2 -2
  42. package/pyproject.toml +1 -1
  43. package/src/deepscientist/__init__.py +1 -1
  44. package/src/deepscientist/annotations.py +343 -0
  45. package/src/deepscientist/artifact/arxiv.py +484 -37
  46. package/src/deepscientist/artifact/service.py +574 -108
  47. package/src/deepscientist/arxiv_library.py +275 -0
  48. package/src/deepscientist/bash_exec/monitor.py +7 -5
  49. package/src/deepscientist/bash_exec/service.py +93 -21
  50. package/src/deepscientist/bridges/builtins.py +2 -0
  51. package/src/deepscientist/bridges/connectors.py +447 -0
  52. package/src/deepscientist/channels/__init__.py +2 -0
  53. package/src/deepscientist/channels/builtins.py +3 -1
  54. package/src/deepscientist/channels/local.py +3 -3
  55. package/src/deepscientist/channels/qq.py +8 -8
  56. package/src/deepscientist/channels/qq_gateway.py +1 -1
  57. package/src/deepscientist/channels/relay.py +14 -8
  58. package/src/deepscientist/channels/weixin.py +59 -0
  59. package/src/deepscientist/channels/weixin_ilink.py +388 -0
  60. package/src/deepscientist/config/models.py +23 -2
  61. package/src/deepscientist/config/service.py +539 -67
  62. package/src/deepscientist/connector/__init__.py +4 -0
  63. package/src/deepscientist/connector/connector_profiles.py +481 -0
  64. package/src/deepscientist/connector/lingzhu_support.py +668 -0
  65. package/src/deepscientist/connector/qq_profiles.py +206 -0
  66. package/src/deepscientist/connector/weixin_support.py +663 -0
  67. package/src/deepscientist/connector_profiles.py +1 -374
  68. package/src/deepscientist/connector_runtime.py +2 -0
  69. package/src/deepscientist/daemon/api/handlers.py +165 -5
  70. package/src/deepscientist/daemon/api/router.py +13 -1
  71. package/src/deepscientist/daemon/app.py +1444 -67
  72. package/src/deepscientist/doctor.py +4 -5
  73. package/src/deepscientist/gitops/diff.py +120 -29
  74. package/src/deepscientist/lingzhu_support.py +1 -182
  75. package/src/deepscientist/mcp/server.py +135 -7
  76. package/src/deepscientist/prompts/builder.py +128 -11
  77. package/src/deepscientist/qq_profiles.py +1 -196
  78. package/src/deepscientist/quest/node_traces.py +23 -0
  79. package/src/deepscientist/quest/service.py +359 -74
  80. package/src/deepscientist/quest/stage_views.py +71 -5
  81. package/src/deepscientist/runners/codex.py +170 -19
  82. package/src/deepscientist/runners/runtime_overrides.py +6 -0
  83. package/src/deepscientist/shared.py +33 -14
  84. package/src/deepscientist/weixin_support.py +1 -0
  85. package/src/prompts/connectors/lingzhu.md +3 -1
  86. package/src/prompts/connectors/qq.md +2 -1
  87. package/src/prompts/connectors/weixin.md +231 -0
  88. package/src/prompts/contracts/shared_interaction.md +4 -1
  89. package/src/prompts/system.md +61 -9
  90. package/src/skills/analysis-campaign/SKILL.md +46 -6
  91. package/src/skills/analysis-campaign/references/campaign-plan-template.md +21 -8
  92. package/src/skills/baseline/SKILL.md +1 -1
  93. package/src/skills/decision/SKILL.md +1 -1
  94. package/src/skills/experiment/SKILL.md +1 -1
  95. package/src/skills/finalize/SKILL.md +1 -1
  96. package/src/skills/idea/SKILL.md +1 -1
  97. package/src/skills/intake-audit/SKILL.md +1 -1
  98. package/src/skills/rebuttal/SKILL.md +74 -1
  99. package/src/skills/rebuttal/references/response-letter-template.md +55 -11
  100. package/src/skills/review/SKILL.md +118 -1
  101. package/src/skills/review/references/experiment-todo-template.md +23 -0
  102. package/src/skills/review/references/review-report-template.md +16 -0
  103. package/src/skills/review/references/revision-log-template.md +4 -0
  104. package/src/skills/scout/SKILL.md +1 -1
  105. package/src/skills/write/SKILL.md +168 -7
  106. package/src/skills/write/references/paper-experiment-matrix-template.md +131 -0
  107. package/src/tui/package.json +1 -1
  108. package/src/ui/dist/assets/{AiManusChatView-BKZ103sn.js → AiManusChatView-CnJcXynW.js} +156 -48
  109. package/src/ui/dist/assets/{AnalysisPlugin-mTTzGAlK.js → AnalysisPlugin-DeyzPEhV.js} +1 -1
  110. package/src/ui/dist/assets/{CliPlugin-BH58n3GY.js → CliPlugin-CB1YODQn.js} +164 -9
  111. package/src/ui/dist/assets/{CodeEditorPlugin-BKGRUH7e.js → CodeEditorPlugin-B-xicq1e.js} +8 -8
  112. package/src/ui/dist/assets/{CodeViewerPlugin-BMADwFWJ.js → CodeViewerPlugin-DT54ysXa.js} +5 -5
  113. package/src/ui/dist/assets/{DocViewerPlugin-ZOnTIHLN.js → DocViewerPlugin-DQtKT-VD.js} +3 -3
  114. package/src/ui/dist/assets/{GitDiffViewerPlugin-CQ7h1Djm.js → GitDiffViewerPlugin-hqHbCfnv.js} +20 -21
  115. package/src/ui/dist/assets/{ImageViewerPlugin-GVS5MsnC.js → ImageViewerPlugin-OcVo33jV.js} +5 -5
  116. package/src/ui/dist/assets/{LabCopilotPanel-BZNv1JML.js → LabCopilotPanel-DdGwhEUV.js} +11 -11
  117. package/src/ui/dist/assets/{LabPlugin-TWcJsdQA.js → LabPlugin-Ciz1gDaX.js} +2 -1
  118. package/src/ui/dist/assets/{LatexPlugin-DIjHiR2x.js → LatexPlugin-BhmjNQRC.js} +37 -11
  119. package/src/ui/dist/assets/{MarkdownViewerPlugin-D3ooGAH0.js → MarkdownViewerPlugin-BzdVH9Bx.js} +4 -4
  120. package/src/ui/dist/assets/{MarketplacePlugin-DfVfE9hN.js → MarketplacePlugin-DmyHspXt.js} +3 -3
  121. package/src/ui/dist/assets/{NotebookEditor-DDl0_Mc0.js → NotebookEditor-BMXKrDRk.js} +1 -1
  122. package/src/ui/dist/assets/{NotebookEditor-s8JhzuX1.js → NotebookEditor-BTVYRGkm.js} +12 -12
  123. package/src/ui/dist/assets/{PdfLoader-C2Sf6SJM.js → PdfLoader-CvcjJHXv.js} +14 -7
  124. package/src/ui/dist/assets/{PdfMarkdownPlugin-CXFLoIsa.js → PdfMarkdownPlugin-DW2ej8Vk.js} +73 -6
  125. package/src/ui/dist/assets/{PdfViewerPlugin-BYTmz2fK.js → PdfViewerPlugin-CmlDxbhU.js} +103 -34
  126. package/src/ui/dist/assets/PdfViewerPlugin-DQ11QcSf.css +3627 -0
  127. package/src/ui/dist/assets/{SearchPlugin-CjWBI1O9.js → SearchPlugin-DAjQZPSv.js} +1 -1
  128. package/src/ui/dist/assets/{TextViewerPlugin-DdOBU3-S.js → TextViewerPlugin-C-nVAZb_.js} +5 -4
  129. package/src/ui/dist/assets/{VNCViewer-B8HGgLwQ.js → VNCViewer-D7-dIYon.js} +10 -10
  130. package/src/ui/dist/assets/bot-C_G4WtNI.js +21 -0
  131. package/src/ui/dist/assets/branding/logo-rokid.png +0 -0
  132. package/src/ui/dist/assets/browser-BAcuE0Xj.js +2895 -0
  133. package/src/ui/dist/assets/{code-BWAY76JP.js → code-Cd7WfiWq.js} +1 -1
  134. package/src/ui/dist/assets/{file-content-C1NwU5oQ.js → file-content-B57zsL9y.js} +1 -1
  135. package/src/ui/dist/assets/{file-diff-panel-CywslwB9.js → file-diff-panel-DVoheLFq.js} +1 -1
  136. package/src/ui/dist/assets/{file-socket-B4kzuOBQ.js → file-socket-B5kXFxZP.js} +1 -1
  137. package/src/ui/dist/assets/{image-D-NZM-6P.js → image-LLOjkMHF.js} +1 -1
  138. package/src/ui/dist/assets/{index-DGIYDuTv.css → index-BQG-1s2o.css} +40 -13
  139. package/src/ui/dist/assets/{index-DHZJ_0TI.js → index-C3r2iGrp.js} +12 -12
  140. package/src/ui/dist/assets/{index-7Chr1g9c.js → index-CLQauncb.js} +15050 -9561
  141. package/src/ui/dist/assets/index-Dxa2eYMY.js +25 -0
  142. package/src/ui/dist/assets/{index-BdM1Gqfr.js → index-hOUOWbW2.js} +2 -2
  143. package/src/ui/dist/assets/{monaco-Cb2uKKe6.js → monaco-BGGAEii3.js} +1 -1
  144. package/src/ui/dist/assets/{pdf-effect-queue-DSw_D3RV.js → pdf-effect-queue-DlEr1_y5.js} +16 -1
  145. package/src/ui/dist/assets/pdf.worker.min-yatZIOMy.mjs +21 -0
  146. package/src/ui/dist/assets/{popover-Bg72DGgT.js → popover-CWJbJuYY.js} +1 -1
  147. package/src/ui/dist/assets/{project-sync-Ce_0BglY.js → project-sync-CRJiucYO.js} +18 -77
  148. package/src/ui/dist/assets/select-CoHB7pvH.js +1690 -0
  149. package/src/ui/dist/assets/{sigma-DPaACDrh.js → sigma-D5aJWR8J.js} +1 -1
  150. package/src/ui/dist/assets/{index-CDxNdQdz.js → square-check-big-DUK_mnkS.js} +2 -13
  151. package/src/ui/dist/assets/{trash-BvTgE5__.js → trash-ChU3SEE3.js} +1 -1
  152. package/src/ui/dist/assets/{useCliAccess-CgPeMOwP.js → useCliAccess-BrJBV3tY.js} +1 -1
  153. package/src/ui/dist/assets/{useFileDiffOverlay-xPhz7P5B.js → useFileDiffOverlay-C2OQaVWc.js} +1 -1
  154. package/src/ui/dist/assets/{wrap-text-C3Un3YQr.js → wrap-text-C7Qqh-om.js} +1 -1
  155. package/src/ui/dist/assets/{zoom-out-BgxLa0Ri.js → zoom-out-rtX0FKya.js} +1 -1
  156. package/src/ui/dist/index.html +2 -2
  157. package/src/ui/dist/assets/AutoFigurePlugin-BGxN8Umr.css +0 -3056
  158. package/src/ui/dist/assets/AutoFigurePlugin-C_wWw4AP.js +0 -8149
  159. package/src/ui/dist/assets/PdfViewerPlugin-BJXtIwj_.css +0 -260
  160. package/src/ui/dist/assets/Stepper-B0Dd8CxK.js +0 -158
  161. package/src/ui/dist/assets/bibtex-CKaefIN2.js +0 -189
  162. package/src/ui/dist/assets/file-utils-H2fjA46S.js +0 -109
  163. package/src/ui/dist/assets/message-square-BzjLiXir.js +0 -16
  164. package/src/ui/dist/assets/pdfjs-DU1YE8WO.js +0 -3
  165. package/src/ui/dist/assets/tooltip-C_mA6R0w.js +0 -108
@@ -0,0 +1,3627 @@
1
+ ._tip_14ms1_1 {
2
+ transform-origin: top left;
3
+ }
4
+
5
+ @keyframes _tip-pop_14ms1_1 {
6
+ 0% {
7
+ opacity: 0;
8
+ transform: translateY(6px) scale(0.98);
9
+ }
10
+ 100% {
11
+ opacity: 1;
12
+ transform: translateY(0) scale(1);
13
+ }
14
+ }
15
+
16
+ @keyframes _tip-slide_14ms1_1 {
17
+ 0% {
18
+ opacity: 0;
19
+ transform: translateX(-10px);
20
+ }
21
+ 100% {
22
+ opacity: 1;
23
+ transform: translateX(0);
24
+ }
25
+ }
26
+
27
+ @keyframes _tip-fade_14ms1_1 {
28
+ 0% {
29
+ opacity: 0;
30
+ transform: translateY(8px);
31
+ }
32
+ 100% {
33
+ opacity: 1;
34
+ transform: translateY(0);
35
+ }
36
+ }
37
+
38
+ ._tipNote_14ms1_38 {
39
+ animation: _tip-pop_14ms1_1 160ms cubic-bezier(0.16, 1, 0.3, 1) both;
40
+ }
41
+
42
+ ._tipQuestion_14ms1_42 {
43
+ animation: _tip-slide_14ms1_1 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
44
+ }
45
+
46
+ ._tipTask_14ms1_46 {
47
+ animation: _tip-fade_14ms1_1 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
48
+ }
49
+ ._highlight_dilkk_1 {
50
+ position: absolute;
51
+ left: 0;
52
+ right: 0;
53
+ top: 0;
54
+ bottom: 0;
55
+ width: auto;
56
+ pointer-events: none;
57
+ overflow: visible;
58
+ }
59
+
60
+ ._parts_dilkk_12 {
61
+ opacity: 1;
62
+ pointer-events: none;
63
+ }
64
+
65
+ ._part_dilkk_12 {
66
+ cursor: pointer;
67
+ position: absolute;
68
+ pointer-events: auto;
69
+ border-radius: 3px;
70
+ /* Make highlight feel “under” the text (canvas) instead of washing it out. */
71
+ mix-blend-mode: multiply;
72
+ transition:
73
+ background 0.2s ease,
74
+ box-shadow 0.2s ease,
75
+ filter 0.2s ease;
76
+ }
77
+
78
+ ._partFocused_dilkk_30 {
79
+ outline: 2.5px solid rgba(128, 107, 62, 0.96);
80
+ outline-offset: 0;
81
+ box-shadow:
82
+ inset 0 0 0 1px rgba(128, 107, 62, 0.4),
83
+ 0 0 0 2px rgba(128, 107, 62, 0.24);
84
+ }
85
+
86
+ ._scrolledTo_dilkk_38 ._part_dilkk_12 {
87
+ outline: 1.5px solid rgba(138, 120, 78, 0.95);
88
+ outline-offset: 0;
89
+ box-shadow:
90
+ inset 0 0 0 1px rgba(138, 120, 78, 0.32),
91
+ 0 0 0 2px rgba(138, 120, 78, 0.22);
92
+ filter: saturate(1.04);
93
+ }
94
+
95
+ @keyframes _hl-fade-in_dilkk_1 {
96
+ from {
97
+ opacity: 0.35;
98
+ filter: saturate(1.15);
99
+ }
100
+ to {
101
+ opacity: 1;
102
+ filter: saturate(1);
103
+ }
104
+ }
105
+
106
+ @keyframes _hl-pulse_dilkk_1 {
107
+ 0%,
108
+ 100% {
109
+ box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
110
+ }
111
+ 50% {
112
+ box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.35);
113
+ }
114
+ }
115
+
116
+ @keyframes _hl-sheen_dilkk_1 {
117
+ 0% {
118
+ background-position: 0% 0%;
119
+ }
120
+ 100% {
121
+ background-position: 100% 0%;
122
+ }
123
+ }
124
+
125
+ ._partNote_dilkk_77 {
126
+ background: transparent;
127
+ animation: _hl-fade-in_dilkk_1 180ms ease-out both;
128
+ }
129
+
130
+ ._partQuestion_dilkk_82 {
131
+ background: transparent;
132
+ box-shadow: inset 0 -2px 0 rgba(99, 102, 241, 0.65);
133
+ animation: _hl-pulse_dilkk_1 900ms ease-in-out 2;
134
+ }
135
+
136
+ ._partTask_dilkk_88 {
137
+ background: transparent;
138
+ box-shadow: inset 0 -2px 0 rgba(34, 197, 94, 0.65);
139
+ animation: _hl-fade-in_dilkk_1 180ms ease-out both;
140
+ }
141
+
142
+ ._hintChip_dilkk_94 {
143
+ position: absolute;
144
+ left: 12px;
145
+ z-index: 4;
146
+ min-height: 40px;
147
+ width: 220px;
148
+ max-width: 220px;
149
+ display: flex;
150
+ flex-direction: column;
151
+ justify-content: flex-start;
152
+ gap: 4px;
153
+ align-items: flex-start;
154
+ min-width: 170px;
155
+ padding: 7px 11px;
156
+ border-radius: 9px;
157
+ pointer-events: auto;
158
+ border: 1px solid rgba(123, 132, 151, 0.42);
159
+ background: rgba(255, 255, 255, 0.92);
160
+ color: rgba(28, 36, 52, 0.92);
161
+ font-size: 12px;
162
+ line-height: 1.25;
163
+ font-weight: 500;
164
+ font-family:
165
+ "DS-Project",
166
+ "DS-Inter",
167
+ "Inter",
168
+ "Noto Sans",
169
+ "Noto Sans Math",
170
+ "STIX Two Math",
171
+ "Cambria Math",
172
+ "Segoe UI Symbol",
173
+ "Apple Symbols",
174
+ "Symbola",
175
+ "DejaVu Sans",
176
+ sans-serif;
177
+ letter-spacing: 0.005em;
178
+ text-align: left;
179
+ overflow: visible;
180
+ box-shadow: 0 1px 5px rgba(15, 23, 42, 0.08);
181
+ transition:
182
+ border-color 120ms ease,
183
+ background-color 120ms ease,
184
+ box-shadow 120ms ease;
185
+ }
186
+
187
+ ._hintChipFocused_dilkk_139 {
188
+ border-width: 1.5px;
189
+ box-shadow:
190
+ 0 2px 8px rgba(15, 23, 42, 0.14),
191
+ 0 0 0 1px rgba(128, 107, 62, 0.14);
192
+ }
193
+
194
+ ._hintPrimaryLine_dilkk_146 {
195
+ display: block;
196
+ width: 100%;
197
+ font-size: 11px;
198
+ line-height: 1.2;
199
+ font-weight: 600;
200
+ color: inherit;
201
+ -webkit-text-fill-color: currentColor;
202
+ white-space: nowrap;
203
+ overflow: hidden;
204
+ text-overflow: ellipsis;
205
+ }
206
+
207
+ ._hintSecondaryLine_dilkk_159 {
208
+ display: block;
209
+ width: 100%;
210
+ font-size: 12px;
211
+ line-height: 1.4;
212
+ font-weight: 500;
213
+ color: inherit;
214
+ -webkit-text-fill-color: currentColor;
215
+ opacity: 0.9;
216
+ white-space: normal;
217
+ overflow-wrap: anywhere;
218
+ word-break: break-word;
219
+ }
220
+
221
+ ._hintChip_dilkk_94:hover {
222
+ border-color: rgba(126, 113, 82, 0.75);
223
+ background: rgba(255, 255, 255, 0.97);
224
+ box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
225
+ }
226
+ ._areaHighlight_7ldrr_1 {
227
+ border: 1px solid rgba(120, 109, 87, 0.6);
228
+ background-color: rgba(214, 204, 182, 0.2);
229
+ opacity: 1;
230
+ mix-blend-mode: multiply;
231
+ }
232
+
233
+ ._part_7ldrr_8 {
234
+ cursor: pointer;
235
+ position: absolute;
236
+ border: 1px solid transparent;
237
+ box-sizing: border-box;
238
+ background: rgba(214, 204, 182, 0.24);
239
+ transition:
240
+ background 0.2s,
241
+ border-color 0.2s,
242
+ box-shadow 0.2s;
243
+ }
244
+
245
+ ._scrolledTo_7ldrr_20 ._part_7ldrr_8 {
246
+ border-color: rgba(138, 120, 78, 0.95);
247
+ box-shadow:
248
+ inset 0 0 0 1px rgba(138, 120, 78, 0.3),
249
+ 0 0 0 2px rgba(138, 120, 78, 0.22);
250
+ background: rgba(214, 204, 182, 0.32);
251
+ }
252
+
253
+ ._focused_7ldrr_28 ._part_7ldrr_8 {
254
+ border-color: rgba(128, 107, 62, 0.96);
255
+ border-width: 2px;
256
+ box-shadow:
257
+ inset 0 0 0 1px rgba(128, 107, 62, 0.34),
258
+ 0 0 0 2px rgba(128, 107, 62, 0.26);
259
+ background: rgba(214, 204, 182, 0.35);
260
+ }
261
+ /* Copyright 2014 Mozilla Foundation
262
+ *
263
+ * Licensed under the Apache License, Version 2.0 (the "License");
264
+ * you may not use this file except in compliance with the License.
265
+ * You may obtain a copy of the License at
266
+ *
267
+ * http://www.apache.org/licenses/LICENSE-2.0
268
+ *
269
+ * Unless required by applicable law or agreed to in writing, software
270
+ * distributed under the License is distributed on an "AS IS" BASIS,
271
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
272
+ * See the License for the specific language governing permissions and
273
+ * limitations under the License.
274
+ */
275
+
276
+ .messageBar{
277
+ --closing-button-icon:url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M7.85822%208.84922L4.85322%2011.8542C4.75891%2011.9453%204.63261%2011.9957%204.50151%2011.9946C4.37042%2011.9934%204.24501%2011.9408%204.15231%2011.8481C4.0596%2011.7554%204.00702%2011.63%204.00588%2011.4989C4.00474%2011.3678%204.05514%2011.2415%204.14622%2011.1472L7.15122%208.14222V7.85922L4.14622%204.85322C4.05514%204.75891%204.00474%204.63261%204.00588%204.50151C4.00702%204.37042%204.0596%204.24501%204.15231%204.15231C4.24501%204.0596%204.37042%204.00702%204.50151%204.00588C4.63261%204.00474%204.75891%204.05514%204.85322%204.14622L7.85822%207.15122H8.14122L11.1462%204.14622C11.2405%204.05514%2011.3668%204.00474%2011.4979%204.00588C11.629%204.00702%2011.7544%204.0596%2011.8471%204.15231C11.9398%204.24501%2011.9924%204.37042%2011.9936%204.50151C11.9947%204.63261%2011.9443%204.75891%2011.8532%204.85322L8.84822%207.85922V8.14222L11.8532%2011.1472C11.9443%2011.2415%2011.9947%2011.3678%2011.9936%2011.4989C11.9924%2011.63%2011.9398%2011.7554%2011.8471%2011.8481C11.7544%2011.9408%2011.629%2011.9934%2011.4979%2011.9946C11.3668%2011.9957%2011.2405%2011.9453%2011.1462%2011.8542L8.14122%208.84922L8.14222%208.85022L7.85822%208.84922Z'%20fill='black'/%3e%3c/svg%3e");
278
+ --message-bar-close-button-color:var(--text-primary-color);
279
+ --message-bar-close-button-color-hover:var(--text-primary-color);
280
+ --message-bar-close-button-border-radius:4px;
281
+ --message-bar-close-button-border:none;
282
+ --message-bar-close-button-hover-bg-color:rgb(21 20 26 / 0.14);
283
+ --message-bar-close-button-active-bg-color:rgb(21 20 26 / 0.21);
284
+ --message-bar-close-button-focus-bg-color:rgb(21 20 26 / 0.07);
285
+ }
286
+
287
+ @media (prefers-color-scheme: dark){
288
+
289
+ .messageBar{
290
+ --message-bar-close-button-hover-bg-color:rgb(251 251 254 / 0.14);
291
+ --message-bar-close-button-active-bg-color:rgb(251 251 254 / 0.21);
292
+ --message-bar-close-button-focus-bg-color:rgb(251 251 254 / 0.07);
293
+ }
294
+ }
295
+
296
+ @media screen and (forced-colors: active){
297
+
298
+ .messageBar{
299
+ --message-bar-close-button-color:ButtonText;
300
+ --message-bar-close-button-border:1px solid ButtonText;
301
+ --message-bar-close-button-hover-bg-color:ButtonText;
302
+ --message-bar-close-button-active-bg-color:ButtonText;
303
+ --message-bar-close-button-focus-bg-color:ButtonText;
304
+ --message-bar-close-button-color-hover:HighlightText;
305
+ }
306
+ }
307
+
308
+ .messageBar{
309
+
310
+ display:flex;
311
+ position:relative;
312
+ padding:8px 8px 8px 16px;
313
+ flex-direction:column;
314
+ justify-content:center;
315
+ align-items:center;
316
+ gap:8px;
317
+ -webkit-user-select:none;
318
+ -moz-user-select:none;
319
+ user-select:none;
320
+
321
+ border-radius:4px;
322
+
323
+ border:1px solid var(--message-bar-border-color);
324
+ background:var(--message-bar-bg-color);
325
+ color:var(--message-bar-fg-color);
326
+ }
327
+
328
+ .messageBar > div{
329
+ display:flex;
330
+ align-items:flex-start;
331
+ gap:8px;
332
+ align-self:stretch;
333
+ }
334
+
335
+ :is(.messageBar > div)::before{
336
+ content:"";
337
+ display:inline-block;
338
+ width:16px;
339
+ height:16px;
340
+ -webkit-mask-image:var(--message-bar-icon);
341
+ mask-image:var(--message-bar-icon);
342
+ -webkit-mask-size:cover;
343
+ mask-size:cover;
344
+ background-color:var(--message-bar-icon-color);
345
+ flex-shrink:0;
346
+ }
347
+
348
+ .messageBar button{
349
+ cursor:pointer;
350
+ }
351
+
352
+ :is(.messageBar button):focus-visible{
353
+ outline:var(--focus-ring-outline);
354
+ outline-offset:2px;
355
+ }
356
+
357
+ .messageBar .closeButton{
358
+ width:32px;
359
+ height:32px;
360
+ background:none;
361
+ border-radius:var(--message-bar-close-button-border-radius);
362
+ border:var(--message-bar-close-button-border);
363
+
364
+ display:flex;
365
+ align-items:center;
366
+ justify-content:center;
367
+ }
368
+
369
+ :is(.messageBar .closeButton)::before{
370
+ content:"";
371
+ display:inline-block;
372
+ width:16px;
373
+ height:16px;
374
+ -webkit-mask-image:var(--closing-button-icon);
375
+ mask-image:var(--closing-button-icon);
376
+ -webkit-mask-size:cover;
377
+ mask-size:cover;
378
+ background-color:var(--message-bar-close-button-color);
379
+ }
380
+
381
+ :is(.messageBar .closeButton):is(:hover,:active,:focus)::before{
382
+ background-color:var(--message-bar-close-button-color-hover);
383
+ }
384
+
385
+ :is(.messageBar .closeButton):hover{
386
+ background-color:var(--message-bar-close-button-hover-bg-color);
387
+ }
388
+
389
+ :is(.messageBar .closeButton):active{
390
+ background-color:var(--message-bar-close-button-active-bg-color);
391
+ }
392
+
393
+ :is(.messageBar .closeButton):focus{
394
+ background-color:var(--message-bar-close-button-focus-bg-color);
395
+ }
396
+
397
+ :is(.messageBar .closeButton) > span{
398
+ display:inline-block;
399
+ width:0;
400
+ height:0;
401
+ overflow:hidden;
402
+ }
403
+
404
+ #editorUndoBar{
405
+ --text-primary-color:#15141a;
406
+
407
+ --message-bar-icon:url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M8%201.5C4.41015%201.5%201.5%204.41015%201.5%208C1.5%2011.5899%204.41015%2014.5%208%2014.5C11.5899%2014.5%2014.5%2011.5899%2014.5%208C14.5%204.41015%2011.5899%201.5%208%201.5ZM0%208C0%203.58172%203.58172%200%208%200C12.4183%200%2016%203.58172%2016%208C16%2012.4183%2012.4183%2016%208%2016C3.58172%2016%200%2012.4183%200%208ZM8.75%204V5.5H7.25V4H8.75ZM8.75%2012V7H7.25V12H8.75Z'%20fill='black'/%3e%3c/svg%3e");
408
+ --message-bar-icon-color:#0060df;
409
+ --message-bar-bg-color:#deeafc;
410
+ --message-bar-fg-color:var(--text-primary-color);
411
+ --message-bar-border-color:rgb(0 0 0 / 0.08);
412
+
413
+ --undo-button-bg-color:rgb(21 20 26 / 0.07);
414
+ --undo-button-bg-color-hover:rgb(21 20 26 / 0.14);
415
+ --undo-button-bg-color-active:rgb(21 20 26 / 0.21);
416
+
417
+ --undo-button-fg-color:var(--message-bar-fg-color);
418
+ --undo-button-fg-color-hover:var(--undo-button-fg-color);
419
+ --undo-button-fg-color-active:var(--undo-button-fg-color);
420
+
421
+ --focus-ring-color:#0060df;
422
+ --focus-ring-outline:2px solid var(--focus-ring-color);
423
+ }
424
+
425
+ @media (prefers-color-scheme: dark){
426
+
427
+ #editorUndoBar{
428
+ --text-primary-color:#fbfbfe;
429
+
430
+ --message-bar-icon-color:#73a7f3;
431
+ --message-bar-bg-color:#003070;
432
+ --message-bar-border-color:rgb(255 255 255 / 0.08);
433
+
434
+ --undo-button-bg-color:rgb(255 255 255 / 0.08);
435
+ --undo-button-bg-color-hover:rgb(255 255 255 / 0.14);
436
+ --undo-button-bg-color-active:rgb(255 255 255 / 0.21);
437
+ }
438
+ }
439
+
440
+ @media screen and (forced-colors: active){
441
+
442
+ #editorUndoBar{
443
+ --text-primary-color:CanvasText;
444
+
445
+ --message-bar-icon-color:CanvasText;
446
+ --message-bar-bg-color:Canvas;
447
+ --message-bar-border-color:CanvasText;
448
+
449
+ --undo-button-bg-color:ButtonText;
450
+ --undo-button-bg-color-hover:SelectedItem;
451
+ --undo-button-bg-color-active:SelectedItem;
452
+
453
+ --undo-button-fg-color:ButtonFace;
454
+ --undo-button-fg-color-hover:SelectedItemText;
455
+ --undo-button-fg-color-active:SelectedItemText;
456
+
457
+ --focus-ring-color:CanvasText;
458
+ }
459
+ }
460
+
461
+ #editorUndoBar{
462
+
463
+ position:fixed;
464
+ top:50px;
465
+ left:50%;
466
+ transform:translateX(-50%);
467
+ z-index:10;
468
+
469
+ padding-block:8px;
470
+ padding-inline:16px 8px;
471
+
472
+ font:menu;
473
+ font-size:15px;
474
+
475
+ cursor:default;
476
+ }
477
+
478
+ #editorUndoBar button{
479
+ cursor:pointer;
480
+ }
481
+
482
+ #editorUndoBar #editorUndoBarUndoButton{
483
+ border-radius:4px;
484
+ font-weight:590;
485
+ line-height:19.5px;
486
+ color:var(--undo-button-fg-color);
487
+ border:none;
488
+ padding:4px 16px;
489
+ margin-inline-start:8px;
490
+ height:32px;
491
+
492
+ background-color:var(--undo-button-bg-color);
493
+ }
494
+
495
+ :is(#editorUndoBar #editorUndoBarUndoButton):hover{
496
+ background-color:var(--undo-button-bg-color-hover);
497
+ color:var(--undo-button-fg-color-hover);
498
+ }
499
+
500
+ :is(#editorUndoBar #editorUndoBarUndoButton):active{
501
+ background-color:var(--undo-button-bg-color-active);
502
+ color:var(--undo-button-fg-color-active);
503
+ }
504
+
505
+ #editorUndoBar > div{
506
+ align-items:center;
507
+ }
508
+
509
+ .dialog{
510
+ --dialog-bg-color:white;
511
+ --dialog-border-color:white;
512
+ --dialog-shadow:0 2px 14px 0 rgb(58 57 68 / 0.2);
513
+ --text-primary-color:#15141a;
514
+ --text-secondary-color:#5b5b66;
515
+ --hover-filter:brightness(0.9);
516
+ --focus-ring-color:#0060df;
517
+ --focus-ring-outline:2px solid var(--focus-ring-color);
518
+ --link-fg-color:#0060df;
519
+ --link-hover-fg-color:#0250bb;
520
+ --separator-color:#f0f0f4;
521
+
522
+ --textarea-border-color:#8f8f9d;
523
+ --textarea-bg-color:white;
524
+ --textarea-fg-color:var(--text-secondary-color);
525
+
526
+ --radio-bg-color:#f0f0f4;
527
+ --radio-checked-bg-color:#fbfbfe;
528
+ --radio-border-color:#8f8f9d;
529
+ --radio-checked-border-color:#0060df;
530
+
531
+ --button-secondary-bg-color:#f0f0f4;
532
+ --button-secondary-fg-color:var(--text-primary-color);
533
+ --button-secondary-border-color:var(--button-secondary-bg-color);
534
+ --button-secondary-hover-bg-color:var(--button-secondary-bg-color);
535
+ --button-secondary-hover-fg-color:var(--button-secondary-fg-color);
536
+ --button-secondary-hover-border-color:var(--button-secondary-hover-bg-color);
537
+
538
+ --button-primary-bg-color:#0060df;
539
+ --button-primary-fg-color:#fbfbfe;
540
+ --button-primary-border-color:var(--button-primary-bg-color);
541
+ --button-primary-hover-bg-color:var(--button-primary-bg-color);
542
+ --button-primary-hover-fg-color:var(--button-primary-fg-color);
543
+ --button-primary-hover-border-color:var(--button-primary-hover-bg-color);
544
+ }
545
+
546
+ @media (prefers-color-scheme: dark){
547
+
548
+ .dialog{
549
+ --dialog-bg-color:#1c1b22;
550
+ --dialog-border-color:#1c1b22;
551
+ --dialog-shadow:0 2px 14px 0 #15141a;
552
+ --text-primary-color:#fbfbfe;
553
+ --text-secondary-color:#cfcfd8;
554
+ --focus-ring-color:#0df;
555
+ --hover-filter:brightness(1.4);
556
+ --link-fg-color:#0df;
557
+ --link-hover-fg-color:#80ebff;
558
+ --separator-color:#52525e;
559
+
560
+ --textarea-bg-color:#42414d;
561
+
562
+ --radio-bg-color:#2b2a33;
563
+ --radio-checked-bg-color:#15141a;
564
+ --radio-checked-border-color:#0df;
565
+
566
+ --button-secondary-bg-color:#2b2a33;
567
+ --button-primary-bg-color:#0df;
568
+ --button-primary-fg-color:#15141a;
569
+ }
570
+ }
571
+
572
+ @media screen and (forced-colors: active){
573
+
574
+ .dialog{
575
+ --dialog-bg-color:Canvas;
576
+ --dialog-border-color:CanvasText;
577
+ --dialog-shadow:none;
578
+ --text-primary-color:CanvasText;
579
+ --text-secondary-color:CanvasText;
580
+ --hover-filter:none;
581
+ --focus-ring-color:ButtonBorder;
582
+ --link-fg-color:LinkText;
583
+ --link-hover-fg-color:LinkText;
584
+ --separator-color:CanvasText;
585
+
586
+ --textarea-border-color:ButtonBorder;
587
+ --textarea-bg-color:Field;
588
+ --textarea-fg-color:ButtonText;
589
+
590
+ --radio-bg-color:ButtonFace;
591
+ --radio-checked-bg-color:ButtonFace;
592
+ --radio-border-color:ButtonText;
593
+ --radio-checked-border-color:ButtonText;
594
+
595
+ --button-secondary-bg-color:ButtonFace;
596
+ --button-secondary-fg-color:ButtonText;
597
+ --button-secondary-border-color:ButtonText;
598
+ --button-secondary-hover-bg-color:AccentColor;
599
+ --button-secondary-hover-fg-color:AccentColorText;
600
+
601
+ --button-primary-bg-color:ButtonText;
602
+ --button-primary-fg-color:ButtonFace;
603
+ --button-primary-hover-bg-color:AccentColor;
604
+ --button-primary-hover-fg-color:AccentColorText;
605
+ }
606
+ }
607
+
608
+ .dialog{
609
+
610
+ font:message-box;
611
+ font-size:13px;
612
+ font-weight:400;
613
+ line-height:150%;
614
+ border-radius:4px;
615
+ padding:12px 16px;
616
+ border:1px solid var(--dialog-border-color);
617
+ background:var(--dialog-bg-color);
618
+ color:var(--text-primary-color);
619
+ box-shadow:var(--dialog-shadow);
620
+ }
621
+
622
+ :is(.dialog .mainContainer) *:focus-visible{
623
+ outline:var(--focus-ring-outline);
624
+ outline-offset:2px;
625
+ }
626
+
627
+ :is(.dialog .mainContainer) .title{
628
+ display:flex;
629
+ width:auto;
630
+ flex-direction:column;
631
+ justify-content:flex-end;
632
+ align-items:flex-start;
633
+ gap:12px;
634
+ }
635
+
636
+ :is(:is(.dialog .mainContainer) .title) > span{
637
+ font-size:13px;
638
+ font-style:normal;
639
+ font-weight:590;
640
+ line-height:150%;
641
+ }
642
+
643
+ :is(.dialog .mainContainer) .dialogSeparator{
644
+ width:100%;
645
+ height:0;
646
+ margin-block:4px;
647
+ border-top:1px solid var(--separator-color);
648
+ border-bottom:none;
649
+ }
650
+
651
+ :is(.dialog .mainContainer) .dialogButtonsGroup{
652
+ display:flex;
653
+ gap:12px;
654
+ align-self:flex-end;
655
+ }
656
+
657
+ :is(.dialog .mainContainer) .radio{
658
+ display:flex;
659
+ flex-direction:column;
660
+ align-items:flex-start;
661
+ gap:4px;
662
+ }
663
+
664
+ :is(:is(.dialog .mainContainer) .radio) > .radioButton{
665
+ display:flex;
666
+ gap:8px;
667
+ align-self:stretch;
668
+ align-items:center;
669
+ }
670
+
671
+ :is(:is(:is(.dialog .mainContainer) .radio) > .radioButton) input{
672
+ -webkit-appearance:none;
673
+ -moz-appearance:none;
674
+ appearance:none;
675
+ box-sizing:border-box;
676
+ width:16px;
677
+ height:16px;
678
+ border-radius:50%;
679
+ background-color:var(--radio-bg-color);
680
+ border:1px solid var(--radio-border-color);
681
+ }
682
+
683
+ :is(:is(:is(:is(.dialog .mainContainer) .radio) > .radioButton) input):hover{
684
+ filter:var(--hover-filter);
685
+ }
686
+
687
+ :is(:is(:is(:is(.dialog .mainContainer) .radio) > .radioButton) input):checked{
688
+ background-color:var(--radio-checked-bg-color);
689
+ border:4px solid var(--radio-checked-border-color);
690
+ }
691
+
692
+ :is(:is(.dialog .mainContainer) .radio) > .radioLabel{
693
+ display:flex;
694
+ padding-inline-start:24px;
695
+ align-items:flex-start;
696
+ gap:10px;
697
+ align-self:stretch;
698
+ }
699
+
700
+ :is(:is(:is(.dialog .mainContainer) .radio) > .radioLabel) > span{
701
+ flex:1 0 0;
702
+ font-size:11px;
703
+ color:var(--text-secondary-color);
704
+ }
705
+
706
+ :is(.dialog .mainContainer) button:not(:is(.toggle-button,.closeButton)){
707
+ border-radius:4px;
708
+ border:1px solid;
709
+ font:menu;
710
+ font-weight:600;
711
+ padding:4px 16px;
712
+ width:auto;
713
+ height:32px;
714
+ }
715
+
716
+ :is(:is(.dialog .mainContainer) button:not(:is(.toggle-button,.closeButton))):hover{
717
+ cursor:pointer;
718
+ filter:var(--hover-filter);
719
+ }
720
+
721
+ .secondaryButton:is(:is(.dialog .mainContainer) button:not(:is(.toggle-button,.closeButton))){
722
+ color:var(--button-secondary-fg-color);
723
+ background-color:var(--button-secondary-bg-color);
724
+ border-color:var(--button-secondary-border-color);
725
+ }
726
+
727
+ .secondaryButton:is(:is(.dialog .mainContainer) button:not(:is(.toggle-button,.closeButton))):hover{
728
+ color:var(--button-secondary-hover-fg-color);
729
+ background-color:var(--button-secondary-hover-bg-color);
730
+ border-color:var(--button-secondary-hover-border-color);
731
+ }
732
+
733
+ .primaryButton:is(:is(.dialog .mainContainer) button:not(:is(.toggle-button,.closeButton))){
734
+ color:var(--button-primary-fg-color);
735
+ background-color:var(--button-primary-bg-color);
736
+ border-color:var(--button-primary-border-color);
737
+ opacity:1;
738
+ }
739
+
740
+ .primaryButton:is(:is(.dialog .mainContainer) button:not(:is(.toggle-button,.closeButton))):hover{
741
+ color:var(--button-primary-hover-fg-color);
742
+ background-color:var(--button-primary-hover-bg-color);
743
+ border-color:var(--button-primary-hover-border-color);
744
+ }
745
+
746
+ :is(.dialog .mainContainer) a{
747
+ color:var(--link-fg-color);
748
+ }
749
+
750
+ :is(:is(.dialog .mainContainer) a):hover{
751
+ color:var(--link-hover-fg-color);
752
+ }
753
+
754
+ :is(.dialog .mainContainer) textarea{
755
+ font:inherit;
756
+ padding:8px;
757
+ resize:none;
758
+ margin:0;
759
+ box-sizing:border-box;
760
+ border-radius:4px;
761
+ border:1px solid var(--textarea-border-color);
762
+ background:var(--textarea-bg-color);
763
+ color:var(--textarea-fg-color);
764
+ }
765
+
766
+ :is(:is(.dialog .mainContainer) textarea):focus{
767
+ outline-offset:0;
768
+ border-color:transparent;
769
+ }
770
+
771
+ :is(:is(.dialog .mainContainer) textarea):disabled{
772
+ pointer-events:none;
773
+ opacity:0.4;
774
+ }
775
+
776
+ :is(.dialog .mainContainer) .messageBar{
777
+ --message-bar-bg-color:#ffebcd;
778
+ --message-bar-fg-color:#15141a;
779
+ --message-bar-border-color:rgb(0 0 0 / 0.08);
780
+ --message-bar-icon:url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M14.8748%2012.037L9.37782%202.037C8.99682%201.346%208.31082%201%207.62482%201C6.93882%201%206.25282%201.346%205.87282%202.037L0.375823%2012.037C-0.358177%2013.37%200.606823%2015%202.12782%2015H13.1228C14.6428%2015%2015.6078%2013.37%2014.8748%2012.037ZM8.24982%2011.75L7.99982%2012H7.24982L6.99982%2011.75V11L7.24982%2010.75H7.99982L8.24982%2011V11.75ZM8.24982%209.062C8.24982%209.22776%208.18398%209.38673%208.06677%209.50394C7.94955%209.62115%207.79058%209.687%207.62482%209.687C7.45906%209.687%207.30009%209.62115%207.18288%209.50394C7.06567%209.38673%206.99982%209.22776%206.99982%209.062V5.625C6.99982%205.45924%207.06567%205.30027%207.18288%205.18306C7.30009%205.06585%207.45906%205%207.62482%205C7.79058%205%207.94955%205.06585%208.06677%205.18306C8.18398%205.30027%208.24982%205.45924%208.24982%205.625V9.062Z'%20fill='black'/%3e%3c/svg%3e");
781
+ --message-bar-icon-color:#cd411e;
782
+ }
783
+
784
+ @media (prefers-color-scheme: dark){
785
+
786
+ :is(.dialog .mainContainer) .messageBar{
787
+ --message-bar-bg-color:#5a3100;
788
+ --message-bar-fg-color:#fbfbfe;
789
+ --message-bar-border-color:rgb(255 255 255 / 0.08);
790
+ --message-bar-icon-color:#e49c49;
791
+ }
792
+ }
793
+
794
+ @media screen and (forced-colors: active){
795
+
796
+ :is(.dialog .mainContainer) .messageBar{
797
+ --message-bar-bg-color:HighlightText;
798
+ --message-bar-fg-color:CanvasText;
799
+ --message-bar-border-color:CanvasText;
800
+ --message-bar-icon-color:CanvasText;
801
+ }
802
+ }
803
+
804
+ :is(.dialog .mainContainer) .messageBar{
805
+
806
+ align-self:stretch;
807
+ }
808
+
809
+ :is(:is(:is(.dialog .mainContainer) .messageBar) > div)::before,:is(:is(:is(.dialog .mainContainer) .messageBar) > div) > div{
810
+ margin-block:4px;
811
+ }
812
+
813
+ :is(:is(:is(.dialog .mainContainer) .messageBar) > div) > div{
814
+ display:flex;
815
+ flex-direction:column;
816
+ align-items:flex-start;
817
+ gap:8px;
818
+ flex:1 0 0;
819
+ }
820
+
821
+ :is(:is(:is(:is(.dialog .mainContainer) .messageBar) > div) > div) .title{
822
+ font-size:13px;
823
+ font-weight:590;
824
+ }
825
+
826
+ :is(:is(:is(:is(.dialog .mainContainer) .messageBar) > div) > div) .description{
827
+ font-size:13px;
828
+ }
829
+
830
+ :is(.dialog .mainContainer) .toggler{
831
+ display:flex;
832
+ align-items:center;
833
+ gap:8px;
834
+ align-self:stretch;
835
+ }
836
+
837
+ :is(:is(.dialog .mainContainer) .toggler) > .togglerLabel{
838
+ -webkit-user-select:none;
839
+ -moz-user-select:none;
840
+ user-select:none;
841
+ }
842
+
843
+ .textLayer{
844
+ position:absolute;
845
+ text-align:initial;
846
+ inset:0;
847
+ overflow:clip;
848
+ opacity:1;
849
+ line-height:1;
850
+ -webkit-text-size-adjust:none;
851
+ -moz-text-size-adjust:none;
852
+ text-size-adjust:none;
853
+ forced-color-adjust:none;
854
+ transform-origin:0 0;
855
+ caret-color:CanvasText;
856
+ z-index:0;
857
+ }
858
+
859
+ .textLayer.highlighting{
860
+ touch-action:none;
861
+ }
862
+
863
+ .textLayer :is(span,br){
864
+ color:transparent;
865
+ position:absolute;
866
+ white-space:pre;
867
+ cursor:text;
868
+ transform-origin:0% 0%;
869
+ }
870
+
871
+ .textLayer > :not(.markedContent),.textLayer .markedContent span:not(.markedContent){
872
+ z-index:1;
873
+ }
874
+
875
+ .textLayer span.markedContent{
876
+ top:0;
877
+ height:0;
878
+ }
879
+
880
+ .textLayer span[role="img"]{
881
+ -webkit-user-select:none;
882
+ -moz-user-select:none;
883
+ user-select:none;
884
+ cursor:default;
885
+ }
886
+
887
+ .textLayer .highlight{
888
+ --highlight-bg-color:rgb(180 0 170 / 0.25);
889
+ --highlight-selected-bg-color:rgb(0 100 0 / 0.25);
890
+ --highlight-backdrop-filter:none;
891
+ --highlight-selected-backdrop-filter:none;
892
+ }
893
+
894
+ @media screen and (forced-colors: active){
895
+
896
+ .textLayer .highlight{
897
+ --highlight-bg-color:transparent;
898
+ --highlight-selected-bg-color:transparent;
899
+ --highlight-backdrop-filter:var(--hcm-highlight-filter);
900
+ --highlight-selected-backdrop-filter:var(
901
+ --hcm-highlight-selected-filter
902
+ );
903
+ }
904
+ }
905
+
906
+ .textLayer .highlight{
907
+
908
+ margin:-1px;
909
+ padding:1px;
910
+ background-color:var(--highlight-bg-color);
911
+ backdrop-filter:var(--highlight-backdrop-filter);
912
+ border-radius:4px;
913
+ }
914
+
915
+ .appended:is(.textLayer .highlight){
916
+ position:initial;
917
+ }
918
+
919
+ .begin:is(.textLayer .highlight){
920
+ border-radius:4px 0 0 4px;
921
+ }
922
+
923
+ .end:is(.textLayer .highlight){
924
+ border-radius:0 4px 4px 0;
925
+ }
926
+
927
+ .middle:is(.textLayer .highlight){
928
+ border-radius:0;
929
+ }
930
+
931
+ .selected:is(.textLayer .highlight){
932
+ background-color:var(--highlight-selected-bg-color);
933
+ backdrop-filter:var(--highlight-selected-backdrop-filter);
934
+ }
935
+
936
+ .textLayer ::-moz-selection{
937
+ background:rgba(0 0 255 / 0.25);
938
+ background:color-mix(in srgb, AccentColor, transparent 75%);
939
+ }
940
+
941
+ .textLayer ::selection{
942
+ background:rgba(0 0 255 / 0.25);
943
+ background:color-mix(in srgb, AccentColor, transparent 75%);
944
+ }
945
+
946
+ .textLayer br::-moz-selection{
947
+ background:transparent;
948
+ }
949
+
950
+ .textLayer br::selection{
951
+ background:transparent;
952
+ }
953
+
954
+ .textLayer .endOfContent{
955
+ display:block;
956
+ position:absolute;
957
+ inset:100% 0 0;
958
+ z-index:0;
959
+ cursor:default;
960
+ -webkit-user-select:none;
961
+ -moz-user-select:none;
962
+ user-select:none;
963
+ }
964
+
965
+ .textLayer.selecting .endOfContent{
966
+ top:0;
967
+ }
968
+
969
+ .annotationLayer{
970
+ --annotation-unfocused-field-background:url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
971
+ --input-focus-border-color:Highlight;
972
+ --input-focus-outline:1px solid Canvas;
973
+ --input-unfocused-border-color:transparent;
974
+ --input-disabled-border-color:transparent;
975
+ --input-hover-border-color:black;
976
+ --link-outline:none;
977
+ }
978
+
979
+ @media screen and (forced-colors: active){
980
+
981
+ .annotationLayer{
982
+ --input-focus-border-color:CanvasText;
983
+ --input-unfocused-border-color:ActiveText;
984
+ --input-disabled-border-color:GrayText;
985
+ --input-hover-border-color:Highlight;
986
+ --link-outline:1.5px solid LinkText;
987
+ }
988
+
989
+ .annotationLayer .textWidgetAnnotation :is(input,textarea):required,.annotationLayer .choiceWidgetAnnotation select:required,.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input:required{
990
+ outline:1.5px solid selectedItem;
991
+ }
992
+
993
+ .annotationLayer .linkAnnotation{
994
+ outline:var(--link-outline);
995
+ }
996
+
997
+ :is(.annotationLayer .linkAnnotation):hover{
998
+ backdrop-filter:var(--hcm-highlight-filter);
999
+ }
1000
+
1001
+ :is(.annotationLayer .linkAnnotation) > a:hover{
1002
+ opacity:0 !important;
1003
+ background:none !important;
1004
+ box-shadow:none;
1005
+ }
1006
+
1007
+ .annotationLayer .popupAnnotation .popup{
1008
+ outline:calc(1.5px * var(--scale-factor)) solid CanvasText !important;
1009
+ background-color:ButtonFace !important;
1010
+ color:ButtonText !important;
1011
+ }
1012
+
1013
+ .annotationLayer .highlightArea:hover::after{
1014
+ position:absolute;
1015
+ top:0;
1016
+ left:0;
1017
+ width:100%;
1018
+ height:100%;
1019
+ backdrop-filter:var(--hcm-highlight-filter);
1020
+ content:"";
1021
+ pointer-events:none;
1022
+ }
1023
+
1024
+ .annotationLayer .popupAnnotation.focused .popup{
1025
+ outline:calc(3px * var(--scale-factor)) solid Highlight !important;
1026
+ }
1027
+ }
1028
+
1029
+ .annotationLayer{
1030
+
1031
+ position:absolute;
1032
+ top:0;
1033
+ left:0;
1034
+ pointer-events:none;
1035
+ transform-origin:0 0;
1036
+ }
1037
+
1038
+ .annotationLayer[data-main-rotation="90"] .norotate{
1039
+ transform:rotate(270deg) translateX(-100%);
1040
+ }
1041
+
1042
+ .annotationLayer[data-main-rotation="180"] .norotate{
1043
+ transform:rotate(180deg) translate(-100%, -100%);
1044
+ }
1045
+
1046
+ .annotationLayer[data-main-rotation="270"] .norotate{
1047
+ transform:rotate(90deg) translateY(-100%);
1048
+ }
1049
+
1050
+ .annotationLayer.disabled section,.annotationLayer.disabled .popup{
1051
+ pointer-events:none;
1052
+ }
1053
+
1054
+ .annotationLayer .annotationContent{
1055
+ position:absolute;
1056
+ width:100%;
1057
+ height:100%;
1058
+ pointer-events:none;
1059
+ }
1060
+
1061
+ .freetext:is(.annotationLayer .annotationContent){
1062
+ background:transparent;
1063
+ border:none;
1064
+ inset:0;
1065
+ overflow:visible;
1066
+ white-space:nowrap;
1067
+ font:10px sans-serif;
1068
+ line-height:1.35;
1069
+ -webkit-user-select:none;
1070
+ -moz-user-select:none;
1071
+ user-select:none;
1072
+ }
1073
+
1074
+ .annotationLayer section{
1075
+ position:absolute;
1076
+ text-align:initial;
1077
+ pointer-events:auto;
1078
+ box-sizing:border-box;
1079
+ transform-origin:0 0;
1080
+ }
1081
+
1082
+ :is(.annotationLayer section):has(div.annotationContent) canvas.annotationContent{
1083
+ display:none;
1084
+ }
1085
+
1086
+ .textLayer.selecting ~ .annotationLayer section{
1087
+ pointer-events:none;
1088
+ }
1089
+
1090
+ .annotationLayer :is(.linkAnnotation,.buttonWidgetAnnotation.pushButton) > a{
1091
+ position:absolute;
1092
+ font-size:1em;
1093
+ top:0;
1094
+ left:0;
1095
+ width:100%;
1096
+ height:100%;
1097
+ }
1098
+
1099
+ .annotationLayer :is(.linkAnnotation,.buttonWidgetAnnotation.pushButton):not(.hasBorder) > a:hover{
1100
+ opacity:0.2;
1101
+ background-color:rgb(255 255 0);
1102
+ box-shadow:0 2px 10px rgb(255 255 0);
1103
+ }
1104
+
1105
+ .annotationLayer .linkAnnotation.hasBorder:hover{
1106
+ background-color:rgb(255 255 0 / 0.2);
1107
+ }
1108
+
1109
+ .annotationLayer .hasBorder{
1110
+ background-size:100% 100%;
1111
+ }
1112
+
1113
+ .annotationLayer .textAnnotation img{
1114
+ position:absolute;
1115
+ cursor:pointer;
1116
+ width:100%;
1117
+ height:100%;
1118
+ top:0;
1119
+ left:0;
1120
+ }
1121
+
1122
+ .annotationLayer .textWidgetAnnotation :is(input,textarea),.annotationLayer .choiceWidgetAnnotation select,.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input{
1123
+ background-image:var(--annotation-unfocused-field-background);
1124
+ border:2px solid var(--input-unfocused-border-color);
1125
+ box-sizing:border-box;
1126
+ font:calc(9px * var(--scale-factor)) sans-serif;
1127
+ height:100%;
1128
+ margin:0;
1129
+ vertical-align:top;
1130
+ width:100%;
1131
+ }
1132
+
1133
+ .annotationLayer .textWidgetAnnotation :is(input,textarea):required,.annotationLayer .choiceWidgetAnnotation select:required,.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input:required{
1134
+ outline:1.5px solid red;
1135
+ }
1136
+
1137
+ .annotationLayer .choiceWidgetAnnotation select option{
1138
+ padding:0;
1139
+ }
1140
+
1141
+ .annotationLayer .buttonWidgetAnnotation.radioButton input{
1142
+ border-radius:50%;
1143
+ }
1144
+
1145
+ .annotationLayer .textWidgetAnnotation textarea{
1146
+ resize:none;
1147
+ }
1148
+
1149
+ .annotationLayer .textWidgetAnnotation [disabled]:is(input,textarea),.annotationLayer .choiceWidgetAnnotation select[disabled],.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input[disabled]{
1150
+ background:none;
1151
+ border:2px solid var(--input-disabled-border-color);
1152
+ cursor:not-allowed;
1153
+ }
1154
+
1155
+ .annotationLayer .textWidgetAnnotation :is(input,textarea):hover,.annotationLayer .choiceWidgetAnnotation select:hover,.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input:hover{
1156
+ border:2px solid var(--input-hover-border-color);
1157
+ }
1158
+
1159
+ .annotationLayer .textWidgetAnnotation :is(input,textarea):hover,.annotationLayer .choiceWidgetAnnotation select:hover,.annotationLayer .buttonWidgetAnnotation.checkBox input:hover{
1160
+ border-radius:2px;
1161
+ }
1162
+
1163
+ .annotationLayer .textWidgetAnnotation :is(input,textarea):focus,.annotationLayer .choiceWidgetAnnotation select:focus{
1164
+ background:none;
1165
+ border:2px solid var(--input-focus-border-color);
1166
+ border-radius:2px;
1167
+ outline:var(--input-focus-outline);
1168
+ }
1169
+
1170
+ .annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) :focus{
1171
+ background-image:none;
1172
+ background-color:transparent;
1173
+ }
1174
+
1175
+ .annotationLayer .buttonWidgetAnnotation.checkBox :focus{
1176
+ border:2px solid var(--input-focus-border-color);
1177
+ border-radius:2px;
1178
+ outline:var(--input-focus-outline);
1179
+ }
1180
+
1181
+ .annotationLayer .buttonWidgetAnnotation.radioButton :focus{
1182
+ border:2px solid var(--input-focus-border-color);
1183
+ outline:var(--input-focus-outline);
1184
+ }
1185
+
1186
+ .annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after,.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before{
1187
+ background-color:CanvasText;
1188
+ content:"";
1189
+ display:block;
1190
+ position:absolute;
1191
+ }
1192
+
1193
+ .annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after{
1194
+ height:80%;
1195
+ left:45%;
1196
+ width:1px;
1197
+ }
1198
+
1199
+ .annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before{
1200
+ transform:rotate(45deg);
1201
+ }
1202
+
1203
+ .annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after{
1204
+ transform:rotate(-45deg);
1205
+ }
1206
+
1207
+ .annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before{
1208
+ border-radius:50%;
1209
+ height:50%;
1210
+ left:25%;
1211
+ top:25%;
1212
+ width:50%;
1213
+ }
1214
+
1215
+ .annotationLayer .textWidgetAnnotation input.comb{
1216
+ font-family:monospace;
1217
+ padding-left:2px;
1218
+ padding-right:0;
1219
+ }
1220
+
1221
+ .annotationLayer .textWidgetAnnotation input.comb:focus{
1222
+ width:103%;
1223
+ }
1224
+
1225
+ .annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input{
1226
+ -webkit-appearance:none;
1227
+ -moz-appearance:none;
1228
+ appearance:none;
1229
+ }
1230
+
1231
+ .annotationLayer .fileAttachmentAnnotation .popupTriggerArea{
1232
+ height:100%;
1233
+ width:100%;
1234
+ }
1235
+
1236
+ .annotationLayer .popupAnnotation{
1237
+ position:absolute;
1238
+ font-size:calc(9px * var(--scale-factor));
1239
+ pointer-events:none;
1240
+ width:-moz-max-content;
1241
+ width:max-content;
1242
+ max-width:45%;
1243
+ height:auto;
1244
+ }
1245
+
1246
+ .annotationLayer .popup{
1247
+ background-color:rgb(255 255 153);
1248
+ box-shadow:0 calc(2px * var(--scale-factor)) calc(5px * var(--scale-factor)) rgb(136 136 136);
1249
+ border-radius:calc(2px * var(--scale-factor));
1250
+ outline:1.5px solid rgb(255 255 74);
1251
+ padding:calc(6px * var(--scale-factor));
1252
+ cursor:pointer;
1253
+ font:message-box;
1254
+ white-space:normal;
1255
+ word-wrap:break-word;
1256
+ pointer-events:auto;
1257
+ }
1258
+
1259
+ .annotationLayer .popupAnnotation.focused .popup{
1260
+ outline-width:3px;
1261
+ }
1262
+
1263
+ .annotationLayer .popup *{
1264
+ font-size:calc(9px * var(--scale-factor));
1265
+ }
1266
+
1267
+ .annotationLayer .popup > .header{
1268
+ display:inline-block;
1269
+ }
1270
+
1271
+ .annotationLayer .popup > .header h1{
1272
+ display:inline;
1273
+ }
1274
+
1275
+ .annotationLayer .popup > .header .popupDate{
1276
+ display:inline-block;
1277
+ margin-left:calc(5px * var(--scale-factor));
1278
+ width:-moz-fit-content;
1279
+ width:fit-content;
1280
+ }
1281
+
1282
+ .annotationLayer .popupContent{
1283
+ border-top:1px solid rgb(51 51 51);
1284
+ margin-top:calc(2px * var(--scale-factor));
1285
+ padding-top:calc(2px * var(--scale-factor));
1286
+ }
1287
+
1288
+ .annotationLayer .richText > *{
1289
+ white-space:pre-wrap;
1290
+ font-size:calc(9px * var(--scale-factor));
1291
+ }
1292
+
1293
+ .annotationLayer .popupTriggerArea{
1294
+ cursor:pointer;
1295
+ }
1296
+
1297
+ .annotationLayer section svg{
1298
+ position:absolute;
1299
+ width:100%;
1300
+ height:100%;
1301
+ top:0;
1302
+ left:0;
1303
+ }
1304
+
1305
+ .annotationLayer .annotationTextContent{
1306
+ position:absolute;
1307
+ width:100%;
1308
+ height:100%;
1309
+ opacity:0;
1310
+ color:transparent;
1311
+ -webkit-user-select:none;
1312
+ -moz-user-select:none;
1313
+ user-select:none;
1314
+ pointer-events:none;
1315
+ }
1316
+
1317
+ :is(.annotationLayer .annotationTextContent) span{
1318
+ width:100%;
1319
+ display:inline-block;
1320
+ }
1321
+
1322
+ .annotationLayer svg.quadrilateralsContainer{
1323
+ contain:strict;
1324
+ width:0;
1325
+ height:0;
1326
+ position:absolute;
1327
+ top:0;
1328
+ left:0;
1329
+ z-index:-1;
1330
+ }
1331
+
1332
+ :root{
1333
+ --xfa-unfocused-field-background:url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
1334
+ --xfa-focus-outline:auto;
1335
+ }
1336
+
1337
+ @media screen and (forced-colors: active){
1338
+ :root{
1339
+ --xfa-focus-outline:2px solid CanvasText;
1340
+ }
1341
+ .xfaLayer *:required{
1342
+ outline:1.5px solid selectedItem;
1343
+ }
1344
+ }
1345
+
1346
+ .xfaLayer{
1347
+ background-color:transparent;
1348
+ }
1349
+
1350
+ .xfaLayer .highlight{
1351
+ margin:-1px;
1352
+ padding:1px;
1353
+ background-color:rgb(239 203 237);
1354
+ border-radius:4px;
1355
+ }
1356
+
1357
+ .xfaLayer .highlight.appended{
1358
+ position:initial;
1359
+ }
1360
+
1361
+ .xfaLayer .highlight.begin{
1362
+ border-radius:4px 0 0 4px;
1363
+ }
1364
+
1365
+ .xfaLayer .highlight.end{
1366
+ border-radius:0 4px 4px 0;
1367
+ }
1368
+
1369
+ .xfaLayer .highlight.middle{
1370
+ border-radius:0;
1371
+ }
1372
+
1373
+ .xfaLayer .highlight.selected{
1374
+ background-color:rgb(203 223 203);
1375
+ }
1376
+
1377
+ .xfaPage{
1378
+ overflow:hidden;
1379
+ position:relative;
1380
+ }
1381
+
1382
+ .xfaContentarea{
1383
+ position:absolute;
1384
+ }
1385
+
1386
+ .xfaPrintOnly{
1387
+ display:none;
1388
+ }
1389
+
1390
+ .xfaLayer{
1391
+ position:absolute;
1392
+ text-align:initial;
1393
+ top:0;
1394
+ left:0;
1395
+ transform-origin:0 0;
1396
+ line-height:1.2;
1397
+ }
1398
+
1399
+ .xfaLayer *{
1400
+ color:inherit;
1401
+ font:inherit;
1402
+ font-style:inherit;
1403
+ font-weight:inherit;
1404
+ font-kerning:inherit;
1405
+ letter-spacing:-0.01px;
1406
+ text-align:inherit;
1407
+ text-decoration:inherit;
1408
+ box-sizing:border-box;
1409
+ background-color:transparent;
1410
+ padding:0;
1411
+ margin:0;
1412
+ pointer-events:auto;
1413
+ line-height:inherit;
1414
+ }
1415
+
1416
+ .xfaLayer *:required{
1417
+ outline:1.5px solid red;
1418
+ }
1419
+
1420
+ .xfaLayer div,
1421
+ .xfaLayer svg,
1422
+ .xfaLayer svg *{
1423
+ pointer-events:none;
1424
+ }
1425
+
1426
+ .xfaLayer a{
1427
+ color:blue;
1428
+ }
1429
+
1430
+ .xfaRich li{
1431
+ margin-left:3em;
1432
+ }
1433
+
1434
+ .xfaFont{
1435
+ color:black;
1436
+ font-weight:normal;
1437
+ font-kerning:none;
1438
+ font-size:10px;
1439
+ font-style:normal;
1440
+ letter-spacing:0;
1441
+ text-decoration:none;
1442
+ vertical-align:0;
1443
+ }
1444
+
1445
+ .xfaCaption{
1446
+ overflow:hidden;
1447
+ flex:0 0 auto;
1448
+ }
1449
+
1450
+ .xfaCaptionForCheckButton{
1451
+ overflow:hidden;
1452
+ flex:1 1 auto;
1453
+ }
1454
+
1455
+ .xfaLabel{
1456
+ height:100%;
1457
+ width:100%;
1458
+ }
1459
+
1460
+ .xfaLeft{
1461
+ display:flex;
1462
+ flex-direction:row;
1463
+ align-items:center;
1464
+ }
1465
+
1466
+ .xfaRight{
1467
+ display:flex;
1468
+ flex-direction:row-reverse;
1469
+ align-items:center;
1470
+ }
1471
+
1472
+ :is(.xfaLeft, .xfaRight) > :is(.xfaCaption, .xfaCaptionForCheckButton){
1473
+ max-height:100%;
1474
+ }
1475
+
1476
+ .xfaTop{
1477
+ display:flex;
1478
+ flex-direction:column;
1479
+ align-items:flex-start;
1480
+ }
1481
+
1482
+ .xfaBottom{
1483
+ display:flex;
1484
+ flex-direction:column-reverse;
1485
+ align-items:flex-start;
1486
+ }
1487
+
1488
+ :is(.xfaTop, .xfaBottom) > :is(.xfaCaption, .xfaCaptionForCheckButton){
1489
+ width:100%;
1490
+ }
1491
+
1492
+ .xfaBorder{
1493
+ background-color:transparent;
1494
+ position:absolute;
1495
+ pointer-events:none;
1496
+ }
1497
+
1498
+ .xfaWrapped{
1499
+ width:100%;
1500
+ height:100%;
1501
+ }
1502
+
1503
+ :is(.xfaTextfield, .xfaSelect):focus{
1504
+ background-image:none;
1505
+ background-color:transparent;
1506
+ outline:var(--xfa-focus-outline);
1507
+ outline-offset:-1px;
1508
+ }
1509
+
1510
+ :is(.xfaCheckbox, .xfaRadio):focus{
1511
+ outline:var(--xfa-focus-outline);
1512
+ }
1513
+
1514
+ .xfaTextfield,
1515
+ .xfaSelect{
1516
+ height:100%;
1517
+ width:100%;
1518
+ flex:1 1 auto;
1519
+ border:none;
1520
+ resize:none;
1521
+ background-image:var(--xfa-unfocused-field-background);
1522
+ }
1523
+
1524
+ .xfaSelect{
1525
+ padding-inline:2px;
1526
+ }
1527
+
1528
+ :is(.xfaTop, .xfaBottom) > :is(.xfaTextfield, .xfaSelect){
1529
+ flex:0 1 auto;
1530
+ }
1531
+
1532
+ .xfaButton{
1533
+ cursor:pointer;
1534
+ width:100%;
1535
+ height:100%;
1536
+ border:none;
1537
+ text-align:center;
1538
+ }
1539
+
1540
+ .xfaLink{
1541
+ width:100%;
1542
+ height:100%;
1543
+ position:absolute;
1544
+ top:0;
1545
+ left:0;
1546
+ }
1547
+
1548
+ .xfaCheckbox,
1549
+ .xfaRadio{
1550
+ width:100%;
1551
+ height:100%;
1552
+ flex:0 0 auto;
1553
+ border:none;
1554
+ }
1555
+
1556
+ .xfaRich{
1557
+ white-space:pre-wrap;
1558
+ width:100%;
1559
+ height:100%;
1560
+ }
1561
+
1562
+ .xfaImage{
1563
+ -o-object-position:left top;
1564
+ object-position:left top;
1565
+ -o-object-fit:contain;
1566
+ object-fit:contain;
1567
+ width:100%;
1568
+ height:100%;
1569
+ }
1570
+
1571
+ .xfaLrTb,
1572
+ .xfaRlTb,
1573
+ .xfaTb{
1574
+ display:flex;
1575
+ flex-direction:column;
1576
+ align-items:stretch;
1577
+ }
1578
+
1579
+ .xfaLr{
1580
+ display:flex;
1581
+ flex-direction:row;
1582
+ align-items:stretch;
1583
+ }
1584
+
1585
+ .xfaRl{
1586
+ display:flex;
1587
+ flex-direction:row-reverse;
1588
+ align-items:stretch;
1589
+ }
1590
+
1591
+ .xfaTb > div{
1592
+ justify-content:left;
1593
+ }
1594
+
1595
+ .xfaPosition{
1596
+ position:relative;
1597
+ }
1598
+
1599
+ .xfaArea{
1600
+ position:relative;
1601
+ }
1602
+
1603
+ .xfaValignMiddle{
1604
+ display:flex;
1605
+ align-items:center;
1606
+ }
1607
+
1608
+ .xfaTable{
1609
+ display:flex;
1610
+ flex-direction:column;
1611
+ align-items:stretch;
1612
+ }
1613
+
1614
+ .xfaTable .xfaRow{
1615
+ display:flex;
1616
+ flex-direction:row;
1617
+ align-items:stretch;
1618
+ }
1619
+
1620
+ .xfaTable .xfaRlRow{
1621
+ display:flex;
1622
+ flex-direction:row-reverse;
1623
+ align-items:stretch;
1624
+ flex:1;
1625
+ }
1626
+
1627
+ .xfaTable .xfaRlRow > div{
1628
+ flex:1;
1629
+ }
1630
+
1631
+ :is(.xfaNonInteractive, .xfaDisabled, .xfaReadOnly) :is(input, textarea){
1632
+ background:initial;
1633
+ }
1634
+
1635
+ @media print{
1636
+ .xfaTextfield,
1637
+ .xfaSelect{
1638
+ background:transparent;
1639
+ }
1640
+
1641
+ .xfaSelect{
1642
+ -webkit-appearance:none;
1643
+ -moz-appearance:none;
1644
+ appearance:none;
1645
+ text-indent:1px;
1646
+ text-overflow:"";
1647
+ }
1648
+ }
1649
+
1650
+ .canvasWrapper svg{
1651
+ transform:none;
1652
+ }
1653
+
1654
+ .moving:is(.canvasWrapper svg){
1655
+ z-index:100000;
1656
+ }
1657
+
1658
+ [data-main-rotation="90"]:is(.highlight:is(.canvasWrapper svg),.highlightOutline:is(.canvasWrapper svg)) mask,[data-main-rotation="90"]:is(.highlight:is(.canvasWrapper svg),.highlightOutline:is(.canvasWrapper svg)) use:not(.clip,.mask){
1659
+ transform:matrix(0, 1, -1, 0, 1, 0);
1660
+ }
1661
+
1662
+ [data-main-rotation="180"]:is(.highlight:is(.canvasWrapper svg),.highlightOutline:is(.canvasWrapper svg)) mask,[data-main-rotation="180"]:is(.highlight:is(.canvasWrapper svg),.highlightOutline:is(.canvasWrapper svg)) use:not(.clip,.mask){
1663
+ transform:matrix(-1, 0, 0, -1, 1, 1);
1664
+ }
1665
+
1666
+ [data-main-rotation="270"]:is(.highlight:is(.canvasWrapper svg),.highlightOutline:is(.canvasWrapper svg)) mask,[data-main-rotation="270"]:is(.highlight:is(.canvasWrapper svg),.highlightOutline:is(.canvasWrapper svg)) use:not(.clip,.mask){
1667
+ transform:matrix(0, -1, 1, 0, 0, 1);
1668
+ }
1669
+
1670
+ .draw:is(.canvasWrapper svg){
1671
+ position:absolute;
1672
+ mix-blend-mode:normal;
1673
+ }
1674
+
1675
+ .draw[data-draw-rotation="90"]:is(.canvasWrapper svg){
1676
+ transform:rotate(90deg);
1677
+ }
1678
+
1679
+ .draw[data-draw-rotation="180"]:is(.canvasWrapper svg){
1680
+ transform:rotate(180deg);
1681
+ }
1682
+
1683
+ .draw[data-draw-rotation="270"]:is(.canvasWrapper svg){
1684
+ transform:rotate(270deg);
1685
+ }
1686
+
1687
+ .highlight:is(.canvasWrapper svg){
1688
+ --blend-mode:multiply;
1689
+ }
1690
+
1691
+ @media screen and (forced-colors: active){
1692
+
1693
+ .highlight:is(.canvasWrapper svg){
1694
+ --blend-mode:difference;
1695
+ }
1696
+ }
1697
+
1698
+ .highlight:is(.canvasWrapper svg){
1699
+
1700
+ position:absolute;
1701
+ mix-blend-mode:var(--blend-mode);
1702
+ }
1703
+
1704
+ .highlight:is(.canvasWrapper svg):not(.free){
1705
+ fill-rule:evenodd;
1706
+ }
1707
+
1708
+ .highlightOutline:is(.canvasWrapper svg){
1709
+ position:absolute;
1710
+ mix-blend-mode:normal;
1711
+ fill-rule:evenodd;
1712
+ fill:none;
1713
+ }
1714
+
1715
+ .highlightOutline.hovered:is(.canvasWrapper svg):not(.free):not(.selected){
1716
+ stroke:var(--hover-outline-color);
1717
+ stroke-width:var(--outline-width);
1718
+ }
1719
+
1720
+ .highlightOutline.selected:is(.canvasWrapper svg):not(.free) .mainOutline{
1721
+ stroke:var(--outline-around-color);
1722
+ stroke-width:calc(
1723
+ var(--outline-width) + 2 * var(--outline-around-width)
1724
+ );
1725
+ }
1726
+
1727
+ .highlightOutline.selected:is(.canvasWrapper svg):not(.free) .secondaryOutline{
1728
+ stroke:var(--outline-color);
1729
+ stroke-width:var(--outline-width);
1730
+ }
1731
+
1732
+ .highlightOutline.free.hovered:is(.canvasWrapper svg):not(.selected){
1733
+ stroke:var(--hover-outline-color);
1734
+ stroke-width:calc(2 * var(--outline-width));
1735
+ }
1736
+
1737
+ .highlightOutline.free.selected:is(.canvasWrapper svg) .mainOutline{
1738
+ stroke:var(--outline-around-color);
1739
+ stroke-width:calc(
1740
+ 2 * (var(--outline-width) + var(--outline-around-width))
1741
+ );
1742
+ }
1743
+
1744
+ .highlightOutline.free.selected:is(.canvasWrapper svg) .secondaryOutline{
1745
+ stroke:var(--outline-color);
1746
+ stroke-width:calc(2 * var(--outline-width));
1747
+ }
1748
+
1749
+ .toggle-button{
1750
+ --button-background-color:#f0f0f4;
1751
+ --button-background-color-hover:#e0e0e6;
1752
+ --button-background-color-active:#cfcfd8;
1753
+ --color-accent-primary:#0060df;
1754
+ --color-accent-primary-hover:#0250bb;
1755
+ --color-accent-primary-active:#054096;
1756
+ --border-interactive-color:#8f8f9d;
1757
+ --border-radius-circle:9999px;
1758
+ --border-width:1px;
1759
+ --size-item-small:16px;
1760
+ --size-item-large:32px;
1761
+ --color-canvas:white;
1762
+ }
1763
+
1764
+ @media (prefers-color-scheme: dark){
1765
+
1766
+ .toggle-button{
1767
+ --button-background-color:color-mix(in srgb, currentColor 7%, transparent);
1768
+ --button-background-color-hover:color-mix(
1769
+ in srgb,
1770
+ currentColor 14%,
1771
+ transparent
1772
+ );
1773
+ --button-background-color-active:color-mix(
1774
+ in srgb,
1775
+ currentColor 21%,
1776
+ transparent
1777
+ );
1778
+ --color-accent-primary:#0df;
1779
+ --color-accent-primary-hover:#80ebff;
1780
+ --color-accent-primary-active:#aaf2ff;
1781
+ --border-interactive-color:#bfbfc9;
1782
+ --color-canvas:#1c1b22;
1783
+ }
1784
+ }
1785
+
1786
+ @media (forced-colors: active){
1787
+
1788
+ .toggle-button{
1789
+ --color-accent-primary:ButtonText;
1790
+ --color-accent-primary-hover:SelectedItem;
1791
+ --color-accent-primary-active:SelectedItem;
1792
+ --border-interactive-color:ButtonText;
1793
+ --button-background-color:ButtonFace;
1794
+ --border-interactive-color-hover:SelectedItem;
1795
+ --border-interactive-color-active:SelectedItem;
1796
+ --border-interactive-color-disabled:GrayText;
1797
+ --color-canvas:ButtonText;
1798
+ }
1799
+ }
1800
+
1801
+ .toggle-button{
1802
+
1803
+ --toggle-background-color:var(--button-background-color);
1804
+ --toggle-background-color-hover:var(--button-background-color-hover);
1805
+ --toggle-background-color-active:var(--button-background-color-active);
1806
+ --toggle-background-color-pressed:var(--color-accent-primary);
1807
+ --toggle-background-color-pressed-hover:var(--color-accent-primary-hover);
1808
+ --toggle-background-color-pressed-active:var(--color-accent-primary-active);
1809
+ --toggle-border-color:var(--border-interactive-color);
1810
+ --toggle-border-color-hover:var(--toggle-border-color);
1811
+ --toggle-border-color-active:var(--toggle-border-color);
1812
+ --toggle-border-radius:var(--border-radius-circle);
1813
+ --toggle-border-width:var(--border-width);
1814
+ --toggle-height:var(--size-item-small);
1815
+ --toggle-width:var(--size-item-large);
1816
+ --toggle-dot-background-color:var(--toggle-border-color);
1817
+ --toggle-dot-background-color-hover:var(--toggle-dot-background-color);
1818
+ --toggle-dot-background-color-active:var(--toggle-dot-background-color);
1819
+ --toggle-dot-background-color-on-pressed:var(--color-canvas);
1820
+ --toggle-dot-margin:1px;
1821
+ --toggle-dot-height:calc(
1822
+ var(--toggle-height) - 2 * var(--toggle-dot-margin) - 2 *
1823
+ var(--toggle-border-width)
1824
+ );
1825
+ --toggle-dot-width:var(--toggle-dot-height);
1826
+ --toggle-dot-transform-x:calc(
1827
+ var(--toggle-width) - 4 * var(--toggle-dot-margin) - var(--toggle-dot-width)
1828
+ );
1829
+
1830
+ -webkit-appearance:none;
1831
+
1832
+ -moz-appearance:none;
1833
+
1834
+ appearance:none;
1835
+ padding:0;
1836
+ margin:0;
1837
+ border:var(--toggle-border-width) solid var(--toggle-border-color);
1838
+ height:var(--toggle-height);
1839
+ width:var(--toggle-width);
1840
+ border-radius:var(--toggle-border-radius);
1841
+ background:var(--toggle-background-color);
1842
+ box-sizing:border-box;
1843
+ flex-shrink:0;
1844
+ }
1845
+
1846
+ .toggle-button:focus-visible{
1847
+ outline:var(--focus-outline);
1848
+ outline-offset:var(--focus-outline-offset);
1849
+ }
1850
+
1851
+ .toggle-button:enabled:hover{
1852
+ background:var(--toggle-background-color-hover);
1853
+ border-color:var(--toggle-border-color);
1854
+ }
1855
+
1856
+ .toggle-button:enabled:active{
1857
+ background:var(--toggle-background-color-active);
1858
+ border-color:var(--toggle-border-color);
1859
+ }
1860
+
1861
+ .toggle-button[aria-pressed="true"]{
1862
+ background:var(--toggle-background-color-pressed);
1863
+ border-color:transparent;
1864
+ }
1865
+
1866
+ .toggle-button[aria-pressed="true"]:enabled:hover{
1867
+ background:var(--toggle-background-color-pressed-hover);
1868
+ border-color:transparent;
1869
+ }
1870
+
1871
+ .toggle-button[aria-pressed="true"]:enabled:active{
1872
+ background:var(--toggle-background-color-pressed-active);
1873
+ border-color:transparent;
1874
+ }
1875
+
1876
+ .toggle-button::before{
1877
+ display:block;
1878
+ content:"";
1879
+ background-color:var(--toggle-dot-background-color);
1880
+ height:var(--toggle-dot-height);
1881
+ width:var(--toggle-dot-width);
1882
+ margin:var(--toggle-dot-margin);
1883
+ border-radius:var(--toggle-border-radius);
1884
+ translate:0;
1885
+ }
1886
+
1887
+ .toggle-button[aria-pressed="true"]::before{
1888
+ translate:var(--toggle-dot-transform-x);
1889
+ background-color:var(--toggle-dot-background-color-on-pressed);
1890
+ }
1891
+
1892
+ .toggle-button[aria-pressed="true"]:enabled:hover::before,.toggle-button[aria-pressed="true"]:enabled:active::before{
1893
+ background-color:var(--toggle-dot-background-color-on-pressed);
1894
+ }
1895
+
1896
+ [dir="rtl"] .toggle-button[aria-pressed="true"]::before{
1897
+ translate:calc(-1 * var(--toggle-dot-transform-x));
1898
+ }
1899
+
1900
+ @media (prefers-reduced-motion: no-preference){
1901
+ .toggle-button::before{
1902
+ transition:translate 100ms;
1903
+ }
1904
+ }
1905
+
1906
+ @media (prefers-contrast){
1907
+ .toggle-button:enabled:hover{
1908
+ border-color:var(--toggle-border-color-hover);
1909
+ }
1910
+
1911
+ .toggle-button:enabled:active{
1912
+ border-color:var(--toggle-border-color-active);
1913
+ }
1914
+
1915
+ .toggle-button[aria-pressed="true"]:enabled{
1916
+ border-color:var(--toggle-border-color);
1917
+ position:relative;
1918
+ }
1919
+
1920
+ .toggle-button[aria-pressed="true"]:enabled:hover,.toggle-button[aria-pressed="true"]:enabled:hover:active{
1921
+ border-color:var(--toggle-border-color-hover);
1922
+ }
1923
+
1924
+ .toggle-button[aria-pressed="true"]:enabled:active{
1925
+ background-color:var(--toggle-dot-background-color-active);
1926
+ border-color:var(--toggle-dot-background-color-hover);
1927
+ }
1928
+
1929
+ .toggle-button:hover::before,.toggle-button:active::before{
1930
+ background-color:var(--toggle-dot-background-color-hover);
1931
+ }
1932
+ }
1933
+
1934
+ @media (forced-colors){
1935
+
1936
+ .toggle-button{
1937
+ --toggle-dot-background-color:var(--color-accent-primary);
1938
+ --toggle-dot-background-color-hover:var(--color-accent-primary-hover);
1939
+ --toggle-dot-background-color-active:var(--color-accent-primary-active);
1940
+ --toggle-dot-background-color-on-pressed:var(--button-background-color);
1941
+ --toggle-background-color-disabled:var(--button-background-color-disabled);
1942
+ --toggle-border-color-hover:var(--border-interactive-color-hover);
1943
+ --toggle-border-color-active:var(--border-interactive-color-active);
1944
+ --toggle-border-color-disabled:var(--border-interactive-color-disabled);
1945
+ }
1946
+
1947
+ .toggle-button[aria-pressed="true"]:enabled::after{
1948
+ border:1px solid var(--button-background-color);
1949
+ content:"";
1950
+ position:absolute;
1951
+ height:var(--toggle-height);
1952
+ width:var(--toggle-width);
1953
+ display:block;
1954
+ border-radius:var(--toggle-border-radius);
1955
+ inset:-2px;
1956
+ }
1957
+
1958
+ .toggle-button[aria-pressed="true"]:enabled:active::after{
1959
+ border-color:var(--toggle-border-color-active);
1960
+ }
1961
+ }
1962
+
1963
+ :root{
1964
+ --outline-width:2px;
1965
+ --outline-color:#0060df;
1966
+ --outline-around-width:1px;
1967
+ --outline-around-color:#f0f0f4;
1968
+ --hover-outline-around-color:var(--outline-around-color);
1969
+ --focus-outline:solid var(--outline-width) var(--outline-color);
1970
+ --unfocus-outline:solid var(--outline-width) transparent;
1971
+ --focus-outline-around:solid var(--outline-around-width) var(--outline-around-color);
1972
+ --hover-outline-color:#8f8f9d;
1973
+ --hover-outline:solid var(--outline-width) var(--hover-outline-color);
1974
+ --hover-outline-around:solid var(--outline-around-width) var(--hover-outline-around-color);
1975
+ --freetext-line-height:1.35;
1976
+ --freetext-padding:2px;
1977
+ --resizer-bg-color:var(--outline-color);
1978
+ --resizer-size:6px;
1979
+ --resizer-shift:calc(
1980
+ 0px - (var(--outline-width) + var(--resizer-size)) / 2 -
1981
+ var(--outline-around-width)
1982
+ );
1983
+ --editorFreeText-editing-cursor:text;
1984
+ --editorInk-editing-cursor:url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.0189877%2013.6645L0.612989%2010.4635C0.687989%2010.0545%200.884989%209.6805%201.18099%209.3825L9.98199%200.5805C10.756%20-0.1925%2012.015%20-0.1945%2012.792%200.5805L14.42%202.2085C15.194%202.9835%2015.194%204.2435%2014.42%205.0185L5.61599%2013.8215C5.31999%2014.1165%204.94599%2014.3125%204.53799%2014.3875L1.33599%2014.9815C1.26599%2014.9935%201.19799%2015.0005%201.12999%2015.0005C0.832989%2015.0005%200.544988%2014.8835%200.330988%2014.6695C0.0679874%2014.4055%20-0.0490122%2014.0305%200.0189877%2013.6645Z'%20fill='white'/%3e%3cpath%20d='M0.0189877%2013.6645L0.612989%2010.4635C0.687989%2010.0545%200.884989%209.6805%201.18099%209.3825L9.98199%200.5805C10.756%20-0.1925%2012.015%20-0.1945%2012.792%200.5805L14.42%202.2085C15.194%202.9835%2015.194%204.2435%2014.42%205.0185L5.61599%2013.8215C5.31999%2014.1165%204.94599%2014.3125%204.53799%2014.3875L1.33599%2014.9815C1.26599%2014.9935%201.19799%2015.0005%201.12999%2015.0005C0.832989%2015.0005%200.544988%2014.8835%200.330988%2014.6695C0.0679874%2014.4055%20-0.0490122%2014.0305%200.0189877%2013.6645ZM12.472%205.1965L13.632%204.0365L13.631%203.1885L11.811%201.3675L10.963%201.3685L9.80299%202.5285L12.472%205.1965ZM4.31099%2013.1585C4.47099%2013.1285%204.61799%2013.0515%204.73399%2012.9345L11.587%206.0815L8.91899%203.4135L2.06599%2010.2655C1.94899%2010.3835%201.87199%2010.5305%201.84099%2010.6915L1.36699%2013.2485L1.75199%2013.6335L4.31099%2013.1585Z'%20fill='black'/%3e%3c/svg%3e") 0 16, pointer;
1985
+ --editorHighlight-editing-cursor:url(/ui/assets/cursor-editorTextHighlight-kG3uUOwL.svg) 24 24, text;
1986
+ --editorFreeHighlight-editing-cursor:url("data:image/svg+xml,%3csvg%20width='18'%20height='19'%20viewBox='0%200%2018%2019'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.2%203.09C12.28%203.01%2012.43%203%2012.43%203C12.48%203%2012.58%203.02%2012.66%203.1L14.45%204.89C14.58%205.02%2014.58%205.22%2014.45%205.35L11.7713%208.02872L9.51628%205.77372L12.2%203.09ZM13.2658%205.12L11.7713%206.6145L10.9305%205.77372L12.425%204.27921L13.2658%205.12Z'%20fill='%23FBFBFE'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.98%209.32L8.23%2011.57L10.7106%209.08938L8.45562%206.83438L5.98%209.31V9.32ZM8.23%2010.1558L9.29641%209.08938L8.45562%208.24859L7.38921%209.315L8.23%2010.1558Z'%20fill='%23FBFBFE'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.1526%2013.1816L16.2125%207.1217C16.7576%206.58919%2017.05%205.8707%2017.05%205.12C17.05%204.36931%2016.7576%203.65084%2016.2126%203.11834L14.4317%201.33747C13.8992%200.79242%2013.1807%200.5%2012.43%200.5C11.6643%200.5%2010.9529%200.812929%2010.4329%201.33289L3.68289%208.08289C3.04127%208.72452%203.00459%209.75075%203.57288%2010.4363L1.29187%2012.7239C1.09186%2012.9245%200.990263%2013.1957%201.0007%2013.4685L1%2014.5C0.447715%2014.5%200%2014.9477%200%2015.5V17.5C0%2018.0523%200.447715%2018.5%201%2018.5H16C16.5523%2018.5%2017%2018.0523%2017%2017.5V15.5C17%2014.9477%2016.5523%2014.5%2016%2014.5H10.2325C9.83594%2014.5%209.39953%2013.9347%2010.1526%2013.1816ZM4.39%209.85L4.9807%2010.4407L2.39762%2013.0312H6.63877L7.10501%2012.565L7.57125%2013.0312H8.88875L15.51%206.41C15.86%206.07%2016.05%205.61%2016.05%205.12C16.05%204.63%2015.86%204.17%2015.51%203.83L13.72%202.04C13.38%201.69%2012.92%201.5%2012.43%201.5C11.94%201.5%2011.48%201.7%2011.14%202.04L4.39%208.79C4.1%209.08%204.1%209.56%204.39%209.85ZM16%2017.5V15.5H1V17.5H16Z'%20fill='%23FBFBFE'/%3e%3cpath%20d='M15.1616%206.05136L15.1616%206.05132L15.1564%206.05645L8.40645%2012.8064C8.35915%2012.8537%208.29589%2012.88%208.23%2012.88C8.16411%2012.88%208.10085%2012.8537%208.05355%2012.8064L7.45857%2012.2115L7.10501%2011.8579L6.75146%2012.2115L6.03289%2012.93H3.20465L5.33477%2010.7937L5.6873%2010.4402L5.33426%2010.0871L4.74355%209.49645C4.64882%209.40171%204.64882%209.23829%204.74355%209.14355L11.4936%202.39355C11.7436%202.14354%2012.0779%202%2012.43%202C12.7883%202%2013.1179%202.13776%2013.3614%202.38839L13.3613%202.38843L13.3664%202.39355L15.1564%204.18355L15.1564%204.18359L15.1616%204.18864C15.4122%204.43211%2015.55%204.76166%2015.55%205.12C15.55%205.47834%2015.4122%205.80789%2015.1616%206.05136ZM7.87645%2011.9236L8.23%2012.2771L8.58355%2011.9236L11.0642%209.44293L11.4177%209.08938L11.0642%208.73582L8.80918%206.48082L8.45562%206.12727L8.10207%206.48082L5.62645%208.95645L5.48%209.10289V9.31V9.32V9.52711L5.62645%209.67355L7.87645%2011.9236ZM11.4177%208.38227L11.7713%208.73582L12.1248%208.38227L14.8036%205.70355C15.1288%205.37829%2015.1288%204.86171%2014.8036%204.53645L13.0136%202.74645C12.8186%202.55146%2012.5792%202.5%2012.43%202.5H12.4134L12.3967%202.50111L12.43%203C12.3967%202.50111%2012.3966%202.50112%2012.3965%202.50112L12.3963%202.50114L12.3957%202.50117L12.3947%202.50125L12.3924%202.50142L12.387%202.50184L12.3732%202.50311C12.3628%202.50416%2012.3498%202.50567%2012.3346%202.50784C12.3049%202.51208%2012.2642%202.51925%2012.2178%202.53146C12.1396%202.55202%2011.9797%202.60317%2011.8464%202.73645L9.16273%205.42016L8.80918%205.77372L9.16273%206.12727L11.4177%208.38227ZM1.5%2016H15.5V17H1.5V16Z'%20stroke='%2315141A'/%3e%3c/svg%3e") 1 18, pointer;
1987
+
1988
+ --new-alt-text-warning-image:url("data:image/svg+xml,%3csvg%20width='17'%20height='16'%20viewBox='0%200%2017%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8.78182%202.63903C8.58882%202.28803%208.25782%202.25003%208.12482%202.25003C7.99019%202.24847%207.85771%202.28393%207.74185%202.35253C7.62599%202.42113%207.5312%202.52023%207.46782%202.63903L1.97082%2012.639C1.90673%2012.7528%201.87406%2012.8816%201.87617%2013.0122C1.87828%2013.1427%201.91509%2013.2704%201.98282%2013.382C2.04798%2013.4951%202.14207%2013.5888%202.25543%2013.6535C2.36879%2013.7182%202.49732%2013.7515%202.62782%2013.75H13.6218C13.7523%2013.7515%2013.8809%2013.7182%2013.9942%2013.6535C14.1076%2013.5888%2014.2017%2013.4951%2014.2668%2013.382C14.3346%2013.2704%2014.3714%2013.1427%2014.3735%2013.0122C14.3756%2012.8816%2014.3429%2012.7528%2014.2788%2012.639L8.78182%202.63903ZM6.37282%202.03703C6.75182%201.34603%207.43882%201.00003%208.12482%201.00003C8.48341%200.997985%208.83583%201.09326%209.14454%201.2757C9.45325%201.45814%209.70668%201.72092%209.87782%202.03603L15.3748%2012.036C16.1078%2013.369%2015.1438%2015%2013.6228%2015H2.62782C1.10682%2015%200.141823%2013.37%200.875823%2012.037L6.37282%202.03703ZM8.74982%209.06203C8.74982%209.22779%208.68397%209.38676%208.56676%209.50397C8.44955%209.62118%208.29058%209.68703%208.12482%209.68703C7.95906%209.68703%207.80009%209.62118%207.68288%209.50397C7.56566%209.38676%207.49982%209.22779%207.49982%209.06203V5.62503C7.49982%205.45927%207.56566%205.3003%207.68288%205.18309C7.80009%205.06588%207.95906%205.00003%208.12482%205.00003C8.29058%205.00003%208.44955%205.06588%208.56676%205.18309C8.68397%205.3003%208.74982%205.45927%208.74982%205.62503V9.06203ZM7.74982%2012L7.49982%2011.75V11L7.74982%2010.75H8.49982L8.74982%2011V11.75L8.49982%2012H7.74982Z'%20fill='black'/%3e%3c/svg%3e");
1989
+ }
1990
+
1991
+ .visuallyHidden{
1992
+ position:absolute;
1993
+ top:0;
1994
+ left:0;
1995
+ border:0;
1996
+ margin:0;
1997
+ padding:0;
1998
+ width:0;
1999
+ height:0;
2000
+ overflow:hidden;
2001
+ white-space:nowrap;
2002
+ font-size:0;
2003
+ }
2004
+
2005
+ .textLayer.highlighting{
2006
+ cursor:var(--editorFreeHighlight-editing-cursor);
2007
+ }
2008
+
2009
+ .textLayer.highlighting:not(.free) span{
2010
+ cursor:var(--editorHighlight-editing-cursor);
2011
+ }
2012
+
2013
+ [role="img"]:is(.textLayer.highlighting:not(.free) span){
2014
+ cursor:var(--editorFreeHighlight-editing-cursor);
2015
+ }
2016
+
2017
+ .textLayer.highlighting.free span{
2018
+ cursor:var(--editorFreeHighlight-editing-cursor);
2019
+ }
2020
+
2021
+ :is(#viewerContainer.pdfPresentationMode:fullscreen,.annotationEditorLayer.disabled) .noAltTextBadge{
2022
+ display:none !important;
2023
+ }
2024
+
2025
+ @media (min-resolution: 1.1dppx){
2026
+ :root{
2027
+ --editorFreeText-editing-cursor:url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12%202.75H12.5V2.25V1V0.5H12H10.358C9.91165%200.5%209.47731%200.625661%209.09989%200.860442L9.09886%200.861087L8%201.54837L6.89997%200.860979L6.89911%200.860443C6.5218%200.625734%206.08748%200.5%205.642%200.5H4H3.5V1V2.25V2.75H4H5.642C5.66478%202.75%205.6885%202.75641%205.71008%202.76968C5.71023%202.76977%205.71038%202.76986%205.71053%202.76995L6.817%203.461C6.81704%203.46103%206.81709%203.46105%206.81713%203.46108C6.81713%203.46108%206.81713%203.46108%206.81714%203.46109C6.8552%203.48494%206.876%203.52285%206.876%203.567V8V12.433C6.876%2012.4771%206.85523%2012.515%206.81722%2012.5389C6.81715%2012.5389%206.81707%2012.539%206.817%2012.539L5.70953%2013.23C5.70941%2013.2301%205.70929%2013.2302%205.70917%2013.2303C5.68723%2013.2438%205.6644%2013.25%205.641%2013.25H4H3.5V13.75V15V15.5H4H5.642C6.08835%2015.5%206.52269%2015.3743%206.90011%2015.1396L6.90086%2015.1391L8%2014.4526L9.10003%2015.14L9.10089%2015.1406C9.47831%2015.3753%209.91265%2015.501%2010.359%2015.501H12H12.5V15.001V13.751V13.251H12H10.358C10.3352%2013.251%2010.3115%2013.2446%2010.2899%2013.2313C10.2897%2013.2312%2010.2896%2013.2311%2010.2895%2013.231L9.183%2012.54C9.18298%2012.54%209.18295%2012.54%209.18293%2012.54C9.18291%2012.5399%209.18288%2012.5399%209.18286%2012.5399C9.14615%2012.5169%209.125%2012.4797%209.125%2012.434V8V3.567C9.125%203.52266%209.14603%203.48441%209.18364%203.4606C9.18377%203.46052%209.1839%203.46043%209.18404%203.46035L10.2895%202.76995C10.2896%202.76985%2010.2898%202.76975%2010.2899%202.76966C10.3119%202.75619%2010.3346%202.75%2010.358%202.75H12Z'%20fill='black'%20stroke='white'/%3e%3c/svg%3e") 0 16, text;
2028
+ }
2029
+ }
2030
+
2031
+ @media screen and (forced-colors: active){
2032
+ :root{
2033
+ --outline-color:CanvasText;
2034
+ --outline-around-color:ButtonFace;
2035
+ --resizer-bg-color:ButtonText;
2036
+ --hover-outline-color:Highlight;
2037
+ --hover-outline-around-color:SelectedItemText;
2038
+ }
2039
+ }
2040
+
2041
+ [data-editor-rotation="90"]{
2042
+ transform:rotate(90deg);
2043
+ }
2044
+
2045
+ [data-editor-rotation="180"]{
2046
+ transform:rotate(180deg);
2047
+ }
2048
+
2049
+ [data-editor-rotation="270"]{
2050
+ transform:rotate(270deg);
2051
+ }
2052
+
2053
+ .annotationEditorLayer{
2054
+ background:transparent;
2055
+ position:absolute;
2056
+ inset:0;
2057
+ font-size:calc(100px * var(--scale-factor));
2058
+ transform-origin:0 0;
2059
+ cursor:auto;
2060
+ }
2061
+
2062
+ .annotationEditorLayer .selectedEditor{
2063
+ z-index:100000 !important;
2064
+ }
2065
+
2066
+ .annotationEditorLayer.drawing *{
2067
+ pointer-events:none !important;
2068
+ }
2069
+
2070
+ .annotationEditorLayer.waiting{
2071
+ content:"";
2072
+ cursor:wait;
2073
+ position:absolute;
2074
+ inset:0;
2075
+ width:100%;
2076
+ height:100%;
2077
+ }
2078
+
2079
+ .annotationEditorLayer.disabled{
2080
+ pointer-events:none;
2081
+ }
2082
+
2083
+ .annotationEditorLayer.freetextEditing{
2084
+ cursor:var(--editorFreeText-editing-cursor);
2085
+ }
2086
+
2087
+ .annotationEditorLayer.inkEditing{
2088
+ cursor:var(--editorInk-editing-cursor);
2089
+ }
2090
+
2091
+ .annotationEditorLayer .draw{
2092
+ box-sizing:border-box;
2093
+ }
2094
+
2095
+ .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor){
2096
+ position:absolute;
2097
+ background:transparent;
2098
+ z-index:1;
2099
+ transform-origin:0 0;
2100
+ cursor:auto;
2101
+ max-width:100%;
2102
+ max-height:100%;
2103
+ border:var(--unfocus-outline);
2104
+ }
2105
+
2106
+ .draggable.selectedEditor:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)){
2107
+ cursor:move;
2108
+ }
2109
+
2110
+ .selectedEditor:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)){
2111
+ border:var(--focus-outline);
2112
+ outline:var(--focus-outline-around);
2113
+ }
2114
+
2115
+ .selectedEditor:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor))::before{
2116
+ content:"";
2117
+ position:absolute;
2118
+ inset:0;
2119
+ border:var(--focus-outline-around);
2120
+ pointer-events:none;
2121
+ }
2122
+
2123
+ :is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)):hover:not(.selectedEditor){
2124
+ border:var(--hover-outline);
2125
+ outline:var(--hover-outline-around);
2126
+ }
2127
+
2128
+ :is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)):hover:not(.selectedEditor)::before{
2129
+ content:"";
2130
+ position:absolute;
2131
+ inset:0;
2132
+ border:var(--focus-outline-around);
2133
+ }
2134
+
2135
+ :is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar{
2136
+ --editor-toolbar-delete-image:url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11%203H13.6C14%203%2014.3%203.3%2014.3%203.6C14.3%203.9%2014%204.2%2013.7%204.2H13.3V14C13.3%2015.1%2012.4%2016%2011.3%2016H4.80005C3.70005%2016%202.80005%2015.1%202.80005%2014V4.2H2.40005C2.00005%204.2%201.80005%204%201.80005%203.6C1.80005%203.2%202.00005%203%202.40005%203H5.00005V2C5.00005%200.9%205.90005%200%207.00005%200H9.00005C10.1%200%2011%200.9%2011%202V3ZM6.90005%201.2L6.30005%201.8V3H9.80005V1.8L9.20005%201.2H6.90005ZM11.4%2014.7L12%2014.1V4.2H4.00005V14.1L4.60005%2014.7H11.4ZM7.00005%2012.4C7.00005%2012.7%206.70005%2013%206.40005%2013C6.10005%2013%205.80005%2012.7%205.80005%2012.4V7.6C5.70005%207.3%206.00005%207%206.40005%207C6.80005%207%207.00005%207.3%207.00005%207.6V12.4ZM10.2001%2012.4C10.2001%2012.7%209.90006%2013%209.60006%2013C9.30006%2013%209.00006%2012.7%209.00006%2012.4V7.6C9.00006%207.3%209.30006%207%209.60006%207C9.90006%207%2010.2001%207.3%2010.2001%207.6V12.4Z'%20fill='black'%20/%3e%3c/svg%3e");
2137
+ --editor-toolbar-bg-color:#f0f0f4;
2138
+ --editor-toolbar-highlight-image:url("data:image/svg+xml,%3csvg%20width='17'%20height='16'%20viewBox='0%200%2017%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.10918%2011.66C7.24918%2011.8%207.43918%2011.88%207.63918%2011.88C7.83918%2011.88%208.02918%2011.8%208.16918%2011.66L14.9192%204.91C15.2692%204.57%2015.4592%204.11%2015.4592%203.62C15.4592%203.13%2015.2692%202.67%2014.9192%202.33L13.1292%200.54C12.7892%200.19%2012.3292%200%2011.8392%200C11.3492%200%2010.8892%200.2%2010.5492%200.54L3.79918%207.29C3.50918%207.58%203.50918%208.06%203.79918%208.35L4.38988%208.9407L1.40918%2011.93H5.64918L6.51419%2011.065L7.10918%2011.66ZM7.63918%2010.07L5.38918%207.82V7.81L7.8648%205.33438L10.1198%207.58938L7.63918%2010.07ZM11.1805%206.52872L13.8592%203.85C13.9892%203.72%2013.9892%203.52%2013.8592%203.39L12.0692%201.6C11.9892%201.52%2011.8892%201.5%2011.8392%201.5C11.8392%201.5%2011.6892%201.51%2011.6092%201.59L8.92546%204.27372L11.1805%206.52872Z'%20fill='%23000'/%3e%3cpath%20d='M0.40918%2014H15.4092V16H0.40918V14Z'%20fill='%23000'/%3e%3c/g%3e%3c/svg%3e");
2139
+ --editor-toolbar-fg-color:#2e2e56;
2140
+ --editor-toolbar-border-color:#8f8f9d;
2141
+ --editor-toolbar-hover-border-color:var(--editor-toolbar-border-color);
2142
+ --editor-toolbar-hover-bg-color:#e0e0e6;
2143
+ --editor-toolbar-hover-fg-color:var(--editor-toolbar-fg-color);
2144
+ --editor-toolbar-hover-outline:none;
2145
+ --editor-toolbar-focus-outline-color:#0060df;
2146
+ --editor-toolbar-shadow:0 2px 6px 0 rgb(58 57 68 / 0.2);
2147
+ --editor-toolbar-vert-offset:6px;
2148
+ --editor-toolbar-height:28px;
2149
+ --editor-toolbar-padding:2px;
2150
+ --alt-text-done-color:#2ac3a2;
2151
+ --alt-text-warning-color:#0090ed;
2152
+ --alt-text-hover-done-color:var(--alt-text-done-color);
2153
+ --alt-text-hover-warning-color:var(--alt-text-warning-color);
2154
+ }
2155
+
2156
+ @media (prefers-color-scheme: dark){
2157
+
2158
+ :is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar{
2159
+ --editor-toolbar-bg-color:#2b2a33;
2160
+ --editor-toolbar-fg-color:#fbfbfe;
2161
+ --editor-toolbar-hover-bg-color:#52525e;
2162
+ --editor-toolbar-focus-outline-color:#0df;
2163
+ --alt-text-done-color:#54ffbd;
2164
+ --alt-text-warning-color:#80ebff;
2165
+ }
2166
+ }
2167
+
2168
+ @media screen and (forced-colors: active){
2169
+
2170
+ :is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar{
2171
+ --editor-toolbar-bg-color:ButtonFace;
2172
+ --editor-toolbar-fg-color:ButtonText;
2173
+ --editor-toolbar-border-color:ButtonText;
2174
+ --editor-toolbar-hover-border-color:AccentColor;
2175
+ --editor-toolbar-hover-bg-color:ButtonFace;
2176
+ --editor-toolbar-hover-fg-color:AccentColor;
2177
+ --editor-toolbar-hover-outline:2px solid var(--editor-toolbar-hover-border-color);
2178
+ --editor-toolbar-focus-outline-color:ButtonBorder;
2179
+ --editor-toolbar-shadow:none;
2180
+ --alt-text-done-color:var(--editor-toolbar-fg-color);
2181
+ --alt-text-warning-color:var(--editor-toolbar-fg-color);
2182
+ --alt-text-hover-done-color:var(--editor-toolbar-hover-fg-color);
2183
+ --alt-text-hover-warning-color:var(--editor-toolbar-hover-fg-color);
2184
+ }
2185
+ }
2186
+
2187
+ :is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar{
2188
+
2189
+ display:flex;
2190
+ width:-moz-fit-content;
2191
+ width:fit-content;
2192
+ height:var(--editor-toolbar-height);
2193
+ flex-direction:column;
2194
+ justify-content:center;
2195
+ align-items:center;
2196
+ cursor:default;
2197
+ pointer-events:auto;
2198
+ box-sizing:content-box;
2199
+ padding:var(--editor-toolbar-padding);
2200
+
2201
+ position:absolute;
2202
+ inset-inline-end:0;
2203
+ inset-block-start:calc(100% + var(--editor-toolbar-vert-offset));
2204
+
2205
+ border-radius:6px;
2206
+ background-color:var(--editor-toolbar-bg-color);
2207
+ border:1px solid var(--editor-toolbar-border-color);
2208
+ box-shadow:var(--editor-toolbar-shadow);
2209
+ }
2210
+
2211
+ .hidden:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar){
2212
+ display:none;
2213
+ }
2214
+
2215
+ :is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar):has(:focus-visible){
2216
+ border-color:transparent;
2217
+ }
2218
+
2219
+ [dir="ltr"] :is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar){
2220
+ transform-origin:100% 0;
2221
+ }
2222
+
2223
+ [dir="rtl"] :is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar){
2224
+ transform-origin:0 0;
2225
+ }
2226
+
2227
+ :is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons{
2228
+ display:flex;
2229
+ justify-content:center;
2230
+ align-items:center;
2231
+ gap:0;
2232
+ height:100%;
2233
+ }
2234
+
2235
+ :is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) button{
2236
+ padding:0;
2237
+ }
2238
+
2239
+ :is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .divider{
2240
+ width:0;
2241
+ height:calc(
2242
+ 2 * var(--editor-toolbar-padding) + var(--editor-toolbar-height)
2243
+ );
2244
+ border-left:1px solid var(--editor-toolbar-border-color);
2245
+ border-right:none;
2246
+ display:inline-block;
2247
+ margin-inline:2px;
2248
+ }
2249
+
2250
+ :is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .highlightButton{
2251
+ width:var(--editor-toolbar-height);
2252
+ }
2253
+
2254
+ :is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .highlightButton)::before{
2255
+ content:"";
2256
+ -webkit-mask-image:var(--editor-toolbar-highlight-image);
2257
+ mask-image:var(--editor-toolbar-highlight-image);
2258
+ -webkit-mask-repeat:no-repeat;
2259
+ mask-repeat:no-repeat;
2260
+ -webkit-mask-position:center;
2261
+ mask-position:center;
2262
+ display:inline-block;
2263
+ background-color:var(--editor-toolbar-fg-color);
2264
+ width:100%;
2265
+ height:100%;
2266
+ }
2267
+
2268
+ :is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .highlightButton):hover::before{
2269
+ background-color:var(--editor-toolbar-hover-fg-color);
2270
+ }
2271
+
2272
+ :is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .delete{
2273
+ width:var(--editor-toolbar-height);
2274
+ }
2275
+
2276
+ :is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .delete)::before{
2277
+ content:"";
2278
+ -webkit-mask-image:var(--editor-toolbar-delete-image);
2279
+ mask-image:var(--editor-toolbar-delete-image);
2280
+ -webkit-mask-repeat:no-repeat;
2281
+ mask-repeat:no-repeat;
2282
+ -webkit-mask-position:center;
2283
+ mask-position:center;
2284
+ display:inline-block;
2285
+ background-color:var(--editor-toolbar-fg-color);
2286
+ width:100%;
2287
+ height:100%;
2288
+ }
2289
+
2290
+ :is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .delete):hover::before{
2291
+ background-color:var(--editor-toolbar-hover-fg-color);
2292
+ }
2293
+
2294
+ :is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) > *{
2295
+ height:var(--editor-toolbar-height);
2296
+ }
2297
+
2298
+ :is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) > :not(.divider){
2299
+ border:none;
2300
+ background-color:transparent;
2301
+ cursor:pointer;
2302
+ }
2303
+
2304
+ :is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) > :not(.divider)):hover{
2305
+ border-radius:2px;
2306
+ background-color:var(--editor-toolbar-hover-bg-color);
2307
+ color:var(--editor-toolbar-hover-fg-color);
2308
+ outline:var(--editor-toolbar-hover-outline);
2309
+ outline-offset:1px;
2310
+ }
2311
+
2312
+ :is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) > :not(.divider)):hover:active{
2313
+ outline:none;
2314
+ }
2315
+
2316
+ :is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) > :not(.divider)):focus-visible{
2317
+ border-radius:2px;
2318
+ outline:2px solid var(--editor-toolbar-focus-outline-color);
2319
+ }
2320
+
2321
+ :is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .altText{
2322
+ --alt-text-add-image:url("data:image/svg+xml,%3csvg%20width='12'%20height='13'%20viewBox='0%200%2012%2013'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M5.375%207.625V11.875C5.375%2012.0408%205.44085%2012.1997%205.55806%2012.3169C5.67527%2012.4342%205.83424%2012.5%206%2012.5C6.16576%2012.5%206.32473%2012.4342%206.44194%2012.3169C6.55915%2012.1997%206.625%2012.0408%206.625%2011.875V7.625L7.125%207.125H11.375C11.5408%207.125%2011.6997%207.05915%2011.8169%206.94194C11.9342%206.82473%2012%206.66576%2012%206.5C12%206.33424%2011.9342%206.17527%2011.8169%206.05806C11.6997%205.94085%2011.5408%205.875%2011.375%205.875H7.125L6.625%205.375V1.125C6.625%200.95924%206.55915%200.800269%206.44194%200.683058C6.32473%200.565848%206.16576%200.5%206%200.5C5.83424%200.5%205.67527%200.565848%205.55806%200.683058C5.44085%200.800269%205.375%200.95924%205.375%201.125V5.375L4.875%205.875H0.625C0.45924%205.875%200.300269%205.94085%200.183058%206.05806C0.065848%206.17527%200%206.33424%200%206.5C0%206.66576%200.065848%206.82473%200.183058%206.94194C0.300269%207.05915%200.45924%207.125%200.625%207.125H4.762L5.375%207.625Z'%20fill='black'/%3e%3c/svg%3e");
2323
+ --alt-text-done-image:url("data:image/svg+xml,%3csvg%20width='12'%20height='13'%20viewBox='0%200%2012%2013'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M6%200.5C5.21207%200.5%204.43185%200.655195%203.7039%200.956723C2.97595%201.25825%202.31451%201.70021%201.75736%202.25736C1.20021%202.81451%200.758251%203.47595%200.456723%204.2039C0.155195%204.93185%200%205.71207%200%206.5C0%207.28793%200.155195%208.06815%200.456723%208.7961C0.758251%209.52405%201.20021%2010.1855%201.75736%2010.7426C2.31451%2011.2998%202.97595%2011.7417%203.7039%2012.0433C4.43185%2012.3448%205.21207%2012.5%206%2012.5C7.5913%2012.5%209.11742%2011.8679%2010.2426%2010.7426C11.3679%209.61742%2012%208.0913%2012%206.5C12%204.9087%2011.3679%203.38258%2010.2426%202.25736C9.11742%201.13214%207.5913%200.5%206%200.5ZM5.06%208.9L2.9464%206.7856C2.85273%206.69171%202.80018%206.56446%202.80033%206.43183C2.80048%206.29921%202.85331%206.17207%202.9472%206.0784C3.04109%205.98473%203.16834%205.93218%203.30097%205.93233C3.43359%205.93248%203.56073%205.98531%203.6544%206.0792L5.3112%207.7368L8.3464%204.7008C8.44109%204.6109%208.56715%204.56153%208.69771%204.56322C8.82827%204.56492%208.95301%204.61754%209.04534%204.70986C9.13766%204.80219%209.19028%204.92693%209.19198%205.05749C9.19367%205.18805%209.1443%205.31411%209.0544%205.4088L5.5624%208.9H5.06Z'%20fill='%23FBFBFE'/%3e%3c/svg%3e");
2324
+
2325
+ display:flex;
2326
+ align-items:center;
2327
+ justify-content:center;
2328
+ width:-moz-max-content;
2329
+ width:max-content;
2330
+ padding-inline:8px;
2331
+ pointer-events:all;
2332
+ font:menu;
2333
+ font-weight:590;
2334
+ font-size:12px;
2335
+ color:var(--editor-toolbar-fg-color);
2336
+ }
2337
+
2338
+ :is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .altText):disabled{
2339
+ pointer-events:none;
2340
+ }
2341
+
2342
+ :is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .altText)::before{
2343
+ content:"";
2344
+ -webkit-mask-image:var(--alt-text-add-image);
2345
+ mask-image:var(--alt-text-add-image);
2346
+ -webkit-mask-repeat:no-repeat;
2347
+ mask-repeat:no-repeat;
2348
+ -webkit-mask-position:center;
2349
+ mask-position:center;
2350
+ display:inline-block;
2351
+ width:12px;
2352
+ height:13px;
2353
+ background-color:var(--editor-toolbar-fg-color);
2354
+ margin-inline-end:4px;
2355
+ }
2356
+
2357
+ :is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .altText):hover::before{
2358
+ background-color:var(--editor-toolbar-hover-fg-color);
2359
+ }
2360
+
2361
+ .done:is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .altText)::before{
2362
+ -webkit-mask-image:var(--alt-text-done-image);
2363
+ mask-image:var(--alt-text-done-image);
2364
+ }
2365
+
2366
+ .new:is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .altText)::before{
2367
+ width:16px;
2368
+ height:16px;
2369
+ -webkit-mask-image:var(--new-alt-text-warning-image);
2370
+ mask-image:var(--new-alt-text-warning-image);
2371
+ background-color:var(--alt-text-warning-color);
2372
+ -webkit-mask-size:cover;
2373
+ mask-size:cover;
2374
+ }
2375
+
2376
+ .new:is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .altText):hover::before{
2377
+ background-color:var(--alt-text-hover-warning-color);
2378
+ }
2379
+
2380
+ .new.done:is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .altText)::before{
2381
+ -webkit-mask-image:var(--alt-text-done-image);
2382
+ mask-image:var(--alt-text-done-image);
2383
+ background-color:var(--alt-text-done-color);
2384
+ }
2385
+
2386
+ .new.done:is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .altText):hover::before{
2387
+ background-color:var(--alt-text-hover-done-color);
2388
+ }
2389
+
2390
+ :is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .altText) .tooltip{
2391
+ display:none;
2392
+ word-wrap:anywhere;
2393
+ }
2394
+
2395
+ .show:is(:is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .altText) .tooltip){
2396
+ --alt-text-tooltip-bg:#f0f0f4;
2397
+ --alt-text-tooltip-fg:#15141a;
2398
+ --alt-text-tooltip-border:#8f8f9d;
2399
+ --alt-text-tooltip-shadow:0px 2px 6px 0px rgb(58 57 68 / 0.2);
2400
+ }
2401
+
2402
+ @media (prefers-color-scheme: dark){
2403
+
2404
+ .show:is(:is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .altText) .tooltip){
2405
+ --alt-text-tooltip-bg:#1c1b22;
2406
+ --alt-text-tooltip-fg:#fbfbfe;
2407
+ --alt-text-tooltip-shadow:0px 2px 6px 0px #15141a;
2408
+ }
2409
+ }
2410
+
2411
+ @media screen and (forced-colors: active){
2412
+
2413
+ .show:is(:is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .altText) .tooltip){
2414
+ --alt-text-tooltip-bg:Canvas;
2415
+ --alt-text-tooltip-fg:CanvasText;
2416
+ --alt-text-tooltip-border:CanvasText;
2417
+ --alt-text-tooltip-shadow:none;
2418
+ }
2419
+ }
2420
+
2421
+ .show:is(:is(:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor,.highlightEditor),.textLayer) .editToolbar) .buttons) .altText) .tooltip){
2422
+
2423
+ display:inline-flex;
2424
+ flex-direction:column;
2425
+ align-items:center;
2426
+ justify-content:center;
2427
+ position:absolute;
2428
+ top:calc(100% + 2px);
2429
+ inset-inline-start:0;
2430
+ padding-block:2px 3px;
2431
+ padding-inline:3px;
2432
+ max-width:300px;
2433
+ width:-moz-max-content;
2434
+ width:max-content;
2435
+ height:auto;
2436
+ font-size:12px;
2437
+
2438
+ border:0.5px solid var(--alt-text-tooltip-border);
2439
+ background:var(--alt-text-tooltip-bg);
2440
+ box-shadow:var(--alt-text-tooltip-shadow);
2441
+ color:var(--alt-text-tooltip-fg);
2442
+
2443
+ pointer-events:none;
2444
+ }
2445
+
2446
+ .annotationEditorLayer .freeTextEditor{
2447
+ padding:calc(var(--freetext-padding) * var(--scale-factor));
2448
+ width:auto;
2449
+ height:auto;
2450
+ touch-action:none;
2451
+ }
2452
+
2453
+ .annotationEditorLayer .freeTextEditor .internal{
2454
+ background:transparent;
2455
+ border:none;
2456
+ inset:0;
2457
+ overflow:visible;
2458
+ white-space:nowrap;
2459
+ font:10px sans-serif;
2460
+ line-height:var(--freetext-line-height);
2461
+ -webkit-user-select:none;
2462
+ -moz-user-select:none;
2463
+ user-select:none;
2464
+ }
2465
+
2466
+ .annotationEditorLayer .freeTextEditor .overlay{
2467
+ position:absolute;
2468
+ display:none;
2469
+ background:transparent;
2470
+ inset:0;
2471
+ width:100%;
2472
+ height:100%;
2473
+ }
2474
+
2475
+ .annotationEditorLayer freeTextEditor .overlay.enabled{
2476
+ display:block;
2477
+ }
2478
+
2479
+ .annotationEditorLayer .freeTextEditor .internal:empty::before{
2480
+ content:attr(default-content);
2481
+ color:gray;
2482
+ }
2483
+
2484
+ .annotationEditorLayer .freeTextEditor .internal:focus{
2485
+ outline:none;
2486
+ -webkit-user-select:auto;
2487
+ -moz-user-select:auto;
2488
+ user-select:auto;
2489
+ }
2490
+
2491
+ .annotationEditorLayer .inkEditor{
2492
+ width:100%;
2493
+ height:100%;
2494
+ }
2495
+
2496
+ .annotationEditorLayer .inkEditor.editing{
2497
+ cursor:inherit;
2498
+ }
2499
+
2500
+ .annotationEditorLayer .inkEditor .inkEditorCanvas{
2501
+ position:absolute;
2502
+ inset:0;
2503
+ width:100%;
2504
+ height:100%;
2505
+ touch-action:none;
2506
+ }
2507
+
2508
+ .annotationEditorLayer .stampEditor{
2509
+ width:auto;
2510
+ height:auto;
2511
+ }
2512
+
2513
+ :is(.annotationEditorLayer .stampEditor) canvas{
2514
+ position:absolute;
2515
+ width:100%;
2516
+ height:100%;
2517
+ margin:0;
2518
+ top:0;
2519
+ left:0;
2520
+ }
2521
+
2522
+ :is(.annotationEditorLayer .stampEditor) .noAltTextBadge{
2523
+ --no-alt-text-badge-border-color:#f0f0f4;
2524
+ --no-alt-text-badge-bg-color:#cfcfd8;
2525
+ --no-alt-text-badge-fg-color:#5b5b66;
2526
+ }
2527
+
2528
+ @media (prefers-color-scheme: dark){
2529
+
2530
+ :is(.annotationEditorLayer .stampEditor) .noAltTextBadge{
2531
+ --no-alt-text-badge-border-color:#52525e;
2532
+ --no-alt-text-badge-bg-color:#fbfbfe;
2533
+ --no-alt-text-badge-fg-color:#15141a;
2534
+ }
2535
+ }
2536
+
2537
+ @media screen and (forced-colors: active){
2538
+
2539
+ :is(.annotationEditorLayer .stampEditor) .noAltTextBadge{
2540
+ --no-alt-text-badge-border-color:ButtonText;
2541
+ --no-alt-text-badge-bg-color:ButtonFace;
2542
+ --no-alt-text-badge-fg-color:ButtonText;
2543
+ }
2544
+ }
2545
+
2546
+ :is(.annotationEditorLayer .stampEditor) .noAltTextBadge{
2547
+
2548
+ position:absolute;
2549
+ inset-inline-end:5px;
2550
+ inset-block-end:5px;
2551
+ display:inline-flex;
2552
+ width:32px;
2553
+ height:32px;
2554
+ padding:3px;
2555
+ justify-content:center;
2556
+ align-items:center;
2557
+ pointer-events:none;
2558
+ z-index:1;
2559
+
2560
+ border-radius:2px;
2561
+ border:1px solid var(--no-alt-text-badge-border-color);
2562
+ background:var(--no-alt-text-badge-bg-color);
2563
+ }
2564
+
2565
+ :is(:is(.annotationEditorLayer .stampEditor) .noAltTextBadge)::before{
2566
+ content:"";
2567
+ display:inline-block;
2568
+ width:16px;
2569
+ height:16px;
2570
+ -webkit-mask-image:var(--new-alt-text-warning-image);
2571
+ mask-image:var(--new-alt-text-warning-image);
2572
+ -webkit-mask-size:cover;
2573
+ mask-size:cover;
2574
+ background-color:var(--no-alt-text-badge-fg-color);
2575
+ }
2576
+
2577
+ :is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)) > .resizers{
2578
+ position:absolute;
2579
+ inset:0;
2580
+ }
2581
+
2582
+ .hidden:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)) > .resizers){
2583
+ display:none;
2584
+ }
2585
+
2586
+ :is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)) > .resizers) > .resizer{
2587
+ width:var(--resizer-size);
2588
+ height:var(--resizer-size);
2589
+ background:content-box var(--resizer-bg-color);
2590
+ border:var(--focus-outline-around);
2591
+ border-radius:2px;
2592
+ position:absolute;
2593
+ }
2594
+
2595
+ .topLeft:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)) > .resizers) > .resizer){
2596
+ top:var(--resizer-shift);
2597
+ left:var(--resizer-shift);
2598
+ }
2599
+
2600
+ .topMiddle:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)) > .resizers) > .resizer){
2601
+ top:var(--resizer-shift);
2602
+ left:calc(50% + var(--resizer-shift));
2603
+ }
2604
+
2605
+ .topRight:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)) > .resizers) > .resizer){
2606
+ top:var(--resizer-shift);
2607
+ right:var(--resizer-shift);
2608
+ }
2609
+
2610
+ .middleRight:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)) > .resizers) > .resizer){
2611
+ top:calc(50% + var(--resizer-shift));
2612
+ right:var(--resizer-shift);
2613
+ }
2614
+
2615
+ .bottomRight:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)) > .resizers) > .resizer){
2616
+ bottom:var(--resizer-shift);
2617
+ right:var(--resizer-shift);
2618
+ }
2619
+
2620
+ .bottomMiddle:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)) > .resizers) > .resizer){
2621
+ bottom:var(--resizer-shift);
2622
+ left:calc(50% + var(--resizer-shift));
2623
+ }
2624
+
2625
+ .bottomLeft:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)) > .resizers) > .resizer){
2626
+ bottom:var(--resizer-shift);
2627
+ left:var(--resizer-shift);
2628
+ }
2629
+
2630
+ .middleLeft:is(:is(:is(.annotationEditorLayer :is(.freeTextEditor,.inkEditor,.stampEditor)) > .resizers) > .resizer){
2631
+ top:calc(50% + var(--resizer-shift));
2632
+ left:var(--resizer-shift);
2633
+ }
2634
+
2635
+ .topLeft:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="180"],[data-editor-rotation="0"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="90"],[data-editor-rotation="270"])) > .resizers > .resizer),.bottomRight:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="180"],[data-editor-rotation="0"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="90"],[data-editor-rotation="270"])) > .resizers > .resizer){
2636
+ cursor:nwse-resize;
2637
+ }
2638
+
2639
+ .topMiddle:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="180"],[data-editor-rotation="0"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="90"],[data-editor-rotation="270"])) > .resizers > .resizer),.bottomMiddle:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="180"],[data-editor-rotation="0"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="90"],[data-editor-rotation="270"])) > .resizers > .resizer){
2640
+ cursor:ns-resize;
2641
+ }
2642
+
2643
+ .topRight:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="180"],[data-editor-rotation="0"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="90"],[data-editor-rotation="270"])) > .resizers > .resizer),.bottomLeft:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="180"],[data-editor-rotation="0"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="90"],[data-editor-rotation="270"])) > .resizers > .resizer){
2644
+ cursor:nesw-resize;
2645
+ }
2646
+
2647
+ .middleRight:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="180"],[data-editor-rotation="0"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="90"],[data-editor-rotation="270"])) > .resizers > .resizer),.middleLeft:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="180"],[data-editor-rotation="0"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="90"],[data-editor-rotation="270"])) > .resizers > .resizer){
2648
+ cursor:ew-resize;
2649
+ }
2650
+
2651
+ .topLeft:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="90"],[data-editor-rotation="270"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="180"],[data-editor-rotation="0"])) > .resizers > .resizer),.bottomRight:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="90"],[data-editor-rotation="270"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="180"],[data-editor-rotation="0"])) > .resizers > .resizer){
2652
+ cursor:nesw-resize;
2653
+ }
2654
+
2655
+ .topMiddle:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="90"],[data-editor-rotation="270"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="180"],[data-editor-rotation="0"])) > .resizers > .resizer),.bottomMiddle:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="90"],[data-editor-rotation="270"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="180"],[data-editor-rotation="0"])) > .resizers > .resizer){
2656
+ cursor:ew-resize;
2657
+ }
2658
+
2659
+ .topRight:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="90"],[data-editor-rotation="270"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="180"],[data-editor-rotation="0"])) > .resizers > .resizer),.bottomLeft:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="90"],[data-editor-rotation="270"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="180"],[data-editor-rotation="0"])) > .resizers > .resizer){
2660
+ cursor:nwse-resize;
2661
+ }
2662
+
2663
+ .middleRight:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="90"],[data-editor-rotation="270"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="180"],[data-editor-rotation="0"])) > .resizers > .resizer),.middleLeft:is(:is(.annotationEditorLayer[data-main-rotation="0"] :is([data-editor-rotation="90"],[data-editor-rotation="270"]),.annotationEditorLayer[data-main-rotation="90"] :is([data-editor-rotation="0"],[data-editor-rotation="180"]),.annotationEditorLayer[data-main-rotation="180"] :is([data-editor-rotation="270"],[data-editor-rotation="90"]),.annotationEditorLayer[data-main-rotation="270"] :is([data-editor-rotation="180"],[data-editor-rotation="0"])) > .resizers > .resizer){
2664
+ cursor:ns-resize;
2665
+ }
2666
+
2667
+ :is(.annotationEditorLayer :is([data-main-rotation="0"] [data-editor-rotation="90"],[data-main-rotation="90"] [data-editor-rotation="0"],[data-main-rotation="180"] [data-editor-rotation="270"],[data-main-rotation="270"] [data-editor-rotation="180"])) .editToolbar{
2668
+ rotate:270deg;
2669
+ }
2670
+
2671
+ [dir="ltr"] :is(:is(.annotationEditorLayer :is([data-main-rotation="0"] [data-editor-rotation="90"],[data-main-rotation="90"] [data-editor-rotation="0"],[data-main-rotation="180"] [data-editor-rotation="270"],[data-main-rotation="270"] [data-editor-rotation="180"])) .editToolbar){
2672
+ inset-inline-end:calc(0px - var(--editor-toolbar-vert-offset));
2673
+ inset-block-start:0;
2674
+ }
2675
+
2676
+ [dir="rtl"] :is(:is(.annotationEditorLayer :is([data-main-rotation="0"] [data-editor-rotation="90"],[data-main-rotation="90"] [data-editor-rotation="0"],[data-main-rotation="180"] [data-editor-rotation="270"],[data-main-rotation="270"] [data-editor-rotation="180"])) .editToolbar){
2677
+ inset-inline-end:calc(100% + var(--editor-toolbar-vert-offset));
2678
+ inset-block-start:0;
2679
+ }
2680
+
2681
+ :is(.annotationEditorLayer :is([data-main-rotation="0"] [data-editor-rotation="180"],[data-main-rotation="90"] [data-editor-rotation="90"],[data-main-rotation="180"] [data-editor-rotation="0"],[data-main-rotation="270"] [data-editor-rotation="270"])) .editToolbar{
2682
+ rotate:180deg;
2683
+ inset-inline-end:100%;
2684
+ inset-block-start:calc(0pc - var(--editor-toolbar-vert-offset));
2685
+ }
2686
+
2687
+ :is(.annotationEditorLayer :is([data-main-rotation="0"] [data-editor-rotation="270"],[data-main-rotation="90"] [data-editor-rotation="180"],[data-main-rotation="180"] [data-editor-rotation="90"],[data-main-rotation="270"] [data-editor-rotation="0"])) .editToolbar{
2688
+ rotate:90deg;
2689
+ }
2690
+
2691
+ [dir="ltr"] :is(:is(.annotationEditorLayer :is([data-main-rotation="0"] [data-editor-rotation="270"],[data-main-rotation="90"] [data-editor-rotation="180"],[data-main-rotation="180"] [data-editor-rotation="90"],[data-main-rotation="270"] [data-editor-rotation="0"])) .editToolbar){
2692
+ inset-inline-end:calc(100% + var(--editor-toolbar-vert-offset));
2693
+ inset-block-start:100%;
2694
+ }
2695
+
2696
+ [dir="rtl"] :is(:is(.annotationEditorLayer :is([data-main-rotation="0"] [data-editor-rotation="270"],[data-main-rotation="90"] [data-editor-rotation="180"],[data-main-rotation="180"] [data-editor-rotation="90"],[data-main-rotation="270"] [data-editor-rotation="0"])) .editToolbar){
2697
+ inset-inline-start:calc(0px - var(--editor-toolbar-vert-offset));
2698
+ inset-block-start:0;
2699
+ }
2700
+
2701
+ .dialog.altText::backdrop{
2702
+ -webkit-mask:url(#alttext-manager-mask);
2703
+ mask:url(#alttext-manager-mask);
2704
+ }
2705
+
2706
+ .dialog.altText.positioned{
2707
+ margin:0;
2708
+ }
2709
+
2710
+ .dialog.altText #altTextContainer{
2711
+ width:300px;
2712
+ height:-moz-fit-content;
2713
+ height:fit-content;
2714
+ display:inline-flex;
2715
+ flex-direction:column;
2716
+ align-items:flex-start;
2717
+ gap:16px;
2718
+ }
2719
+
2720
+ :is(.dialog.altText #altTextContainer) #overallDescription{
2721
+ display:flex;
2722
+ flex-direction:column;
2723
+ align-items:flex-start;
2724
+ gap:4px;
2725
+ align-self:stretch;
2726
+ }
2727
+
2728
+ :is(:is(.dialog.altText #altTextContainer) #overallDescription) span{
2729
+ align-self:stretch;
2730
+ }
2731
+
2732
+ :is(:is(.dialog.altText #altTextContainer) #overallDescription) .title{
2733
+ font-size:13px;
2734
+ font-style:normal;
2735
+ font-weight:590;
2736
+ }
2737
+
2738
+ :is(.dialog.altText #altTextContainer) #addDescription{
2739
+ display:flex;
2740
+ flex-direction:column;
2741
+ align-items:stretch;
2742
+ gap:8px;
2743
+ }
2744
+
2745
+ :is(:is(.dialog.altText #altTextContainer) #addDescription) .descriptionArea{
2746
+ flex:1;
2747
+ padding-inline:24px 10px;
2748
+ }
2749
+
2750
+ :is(:is(:is(.dialog.altText #altTextContainer) #addDescription) .descriptionArea) textarea{
2751
+ width:100%;
2752
+ min-height:75px;
2753
+ }
2754
+
2755
+ :is(.dialog.altText #altTextContainer) #buttons{
2756
+ display:flex;
2757
+ justify-content:flex-end;
2758
+ align-items:flex-start;
2759
+ gap:8px;
2760
+ align-self:stretch;
2761
+ }
2762
+
2763
+ .dialog.newAltText{
2764
+ --new-alt-text-ai-disclaimer-icon:url("data:image/svg+xml,%3csvg%20width='17'%20height='16'%20viewBox='0%200%2017%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M3.49073%201.3015L3.30873%202.1505C3.29349%202.22246%203.25769%202.28844%203.20568%202.34045C3.15368%202.39246%203.08769%202.42826%203.01573%202.4435L2.16673%202.6255C1.76473%202.7125%201.76473%203.2865%202.16673%203.3725L3.01573%203.5555C3.08769%203.57074%203.15368%203.60654%203.20568%203.65855C3.25769%203.71056%203.29349%203.77654%203.30873%203.8485L3.49073%204.6975C3.57773%205.0995%204.15173%205.0995%204.23773%204.6975L4.42073%203.8485C4.43598%203.77654%204.47177%203.71056%204.52378%203.65855C4.57579%203.60654%204.64178%203.57074%204.71373%203.5555L5.56173%203.3725C5.96373%203.2855%205.96373%202.7115%205.56173%202.6255L4.71273%202.4435C4.64083%202.42814%204.57491%202.3923%204.52292%202.34031C4.47093%202.28832%204.43509%202.2224%204.41973%202.1505L4.23773%201.3015C4.15073%200.8995%203.57673%200.8995%203.49073%201.3015ZM10.8647%2013.9995C10.4853%2014.0056%2010.1158%2013.8782%209.82067%2013.6397C9.52553%2013.4013%209.32347%2013.0667%209.24973%2012.6945L8.89273%2011.0275C8.83676%2010.7687%208.70738%2010.5316%208.52009%2010.3445C8.3328%2010.1574%208.09554%2010.0282%207.83673%209.9725L6.16973%209.6155C5.38873%209.4465%204.86473%208.7975%204.86473%207.9995C4.86473%207.2015%205.38873%206.5525%206.16973%206.3845L7.83673%206.0275C8.09551%205.97135%208.33267%205.84193%208.51992%205.65468C8.70716%205.46744%208.83658%205.23028%208.89273%204.9715L9.25073%203.3045C9.41773%202.5235%2010.0667%201.9995%2010.8647%201.9995C11.6627%201.9995%2012.3117%202.5235%2012.4797%203.3045L12.8367%204.9715C12.9507%205.4995%2013.3647%205.9135%2013.8927%206.0265L15.5597%206.3835C16.3407%206.5525%2016.8647%207.2015%2016.8647%207.9995C16.8647%208.7975%2016.3407%209.4465%2015.5597%209.6145L13.8927%209.9715C13.6337%2010.0275%2013.3963%2010.157%2013.209%2010.3445C13.0217%2010.5319%2012.8925%2010.7694%2012.8367%2011.0285L12.4787%2012.6945C12.4054%2013.0667%2012.2036%2013.4014%2011.9086%2013.6399C11.6135%2013.8784%2011.2441%2014.0057%2010.8647%2013.9995ZM10.8647%203.2495C10.7667%203.2495%2010.5337%203.2795%2010.4727%203.5655L10.1147%205.2335C10.0081%205.72777%209.76116%206.18082%209.40361%206.53837C9.04606%206.89593%208.59301%207.14283%208.09873%207.2495L6.43173%207.6065C6.14573%207.6685%206.11473%207.9015%206.11473%207.9995C6.11473%208.0975%206.14573%208.3305%206.43173%208.3925L8.09873%208.7495C8.59301%208.85617%209.04606%209.10307%209.40361%209.46062C9.76116%209.81817%2010.0081%2010.2712%2010.1147%2010.7655L10.4727%2012.4335C10.5337%2012.7195%2010.7667%2012.7495%2010.8647%2012.7495C10.9627%2012.7495%2011.1957%2012.7195%2011.2567%2012.4335L11.6147%2010.7665C11.7212%2010.272%2011.9681%209.81878%2012.3256%209.46103C12.6832%209.10329%2013.1363%208.85624%2013.6307%208.7495L15.2977%208.3925C15.5837%208.3305%2015.6147%208.0975%2015.6147%207.9995C15.6147%207.9015%2015.5837%207.6685%2015.2977%207.6065L13.6307%207.2495C13.1365%207.14283%2012.6834%206.89593%2012.3259%206.53837C11.9683%206.18082%2011.7214%205.72777%2011.6147%205.2335L11.2567%203.5655C11.1957%203.2795%2010.9627%203.2495%2010.8647%203.2495ZM3.30873%2012.1505L3.49073%2011.3015C3.57673%2010.8995%204.15073%2010.8995%204.23773%2011.3015L4.41973%2012.1505C4.43509%2012.2224%204.47093%2012.2883%204.52292%2012.3403C4.57491%2012.3923%204.64083%2012.4281%204.71273%2012.4435L5.56173%2012.6255C5.96373%2012.7115%205.96373%2013.2855%205.56173%2013.3725L4.71273%2013.5545C4.64083%2013.5699%204.57491%2013.6057%204.52292%2013.6577C4.47093%2013.7097%204.43509%2013.7756%204.41973%2013.8475L4.23773%2014.6965C4.15173%2015.0985%203.57773%2015.0985%203.49073%2014.6965L3.30873%2013.8475C3.29337%2013.7756%203.25754%2013.7097%203.20555%2013.6577C3.15356%2013.6057%203.08764%2013.5699%203.01573%2013.5545L2.16673%2013.3725C1.76473%2013.2865%201.76473%2012.7125%202.16673%2012.6255L3.01573%2012.4435C3.08769%2012.4283%203.15368%2012.3925%203.20568%2012.3405C3.25769%2012.2884%203.29349%2012.2225%203.30873%2012.1505Z'%20fill='black'/%3e%3c/svg%3e");
2765
+ --new-alt-text-spinner-icon:url("data:image/svg+xml,%3c!--%20This%20Source%20Code%20Form%20is%20subject%20to%20the%20terms%20of%20the%20Mozilla%20Public%20-%20License,%20v.%202.0.%20If%20a%20copy%20of%20the%20MPL%20was%20not%20distributed%20with%20this%20-%20file,%20You%20can%20obtain%20one%20at%20http://mozilla.org/MPL/2.0/.%20--%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2016%2016'%20width='16'%20height='16'%3e%3cstyle%3e%20@media%20not%20(prefers-reduced-motion)%20{%20@keyframes%20loadingRotate%20{%20from%20{%20rotate:%200;%20}%20to%20{%20rotate:%20360deg%20}%20}%20%23circle-arrows%20{%20animation:%20loadingRotate%201.8s%20linear%20infinite;%20transform-origin:%2050%25%2050%25;%20}%20%23hourglass%20{%20display:%20none;%20}%20}%20@media%20(prefers-reduced-motion)%20{%20%23circle-arrows%20{%20display:%20none;%20}%20}%20%3c/style%3e%3cpath%20id='circle-arrows'%20d='M9%205.528c0%20.42.508.63.804.333l2.528-2.528a.47.47%200%200%200%200-.666L9.805.14A.471.471%200%200%200%209%20.472v1.866A5.756%205.756%200%200%200%202.25%208c0%20.942.232%201.83.635%202.615l1.143-1.143A4.208%204.208%200%200%201%203.75%208%204.254%204.254%200%200%201%208%203.75c.345%200%20.68.042%201%20.122v1.656zM7%2010.472v1.656c.32.08.655.122%201%20.122A4.254%204.254%200%200%200%2012.25%208c0-.52-.107-1.013-.279-1.474l1.143-1.143c.404.786.636%201.674.636%202.617A5.756%205.756%200%200%201%207%2013.662v1.866a.47.47%200%200%201-.804.333l-2.528-2.528a.47.47%200%200%201%200-.666l2.528-2.528a.47.47%200%200%201%20.804.333z'/%3e%3cg%20id='hourglass'%3e%3cpath%20d='M13,1%20C13.5522847,1%2014,1.44771525%2014,2%20C14,2.55228475%2013.5522847,3%2013,3%20L12.9854217,2.99990801%20C12.9950817,3.16495885%2013,3.33173274%2013,3.5%20C13,5.24679885%2010.9877318,6.01090495%2010.9877318,8.0017538%20C10.9877318,9.99260264%2013,10.7536922%2013,12.5%20C13,12.6686079%2012.9950617,12.8357163%2012.985363,13.0010943%20L13,13%20C13.5522847,13%2014,13.4477153%2014,14%20C14,14.5522847%2013.5522847,15%2013,15%20L3,15%20C2.44771525,15%202,14.5522847%202,14%20C2,13.4477153%202.44771525,13%203,13%20L3.01463704,13.0010943%20C3.00493827,12.8357163%203,12.6686079%203,12.5%20C3,10.7536922%204.9877318,9.99260264%205,8.0017538%20C5.0122682,6.01090495%203,5.24679885%203,3.5%20C3,3.33173274%203.00491834,3.16495885%203.01457832,2.99990801%20L3,3%20C2.44771525,3%202,2.55228475%202,2%20C2,1.44771525%202.44771525,1%203,1%20L13,1%20Z%20M10.987,3%20L5.012,3%20L5.00308914,3.24815712%20C5.00103707,3.33163368%205,3.4155948%205,3.5%20C5,5.36125069%206.99153646,6.01774089%206.99153646,8.0017538%20C6.99153646,9.98576671%205,10.6393737%205,12.5%20L5.00307746,12.7513676%20L5.01222201,12.9998392%20L5.60191711,12.9988344%20L6.0425138,12.2959826%20C7.02362731,10.7653275%207.67612271,10%208,10%20C8.37014547,10%209.16950644,10.9996115%2010.3980829,12.9988344%20L10.987778,12.9998392%20C10.9958674,12.8352104%2011,12.66849%2011,12.5%20C11,10.6393737%208.98689779,10.0147381%208.98689779,8.0017538%20C8.98689779,5.98876953%2011,5.36125069%2011,3.5%20L10.9969109,3.24815712%20L10.987,3%20Z'/%3e%3cpath%20d='M6,4%20L10,4%20C8.95166016,6%208.28499349,7%208,7%20C7.71500651,7%207.04833984,6%206,4%20Z'/%3e%3c/g%3e%3c/svg%3e");
2766
+ --preview-image-bg-color:#f0f0f4;
2767
+ --preview-image-border:none;
2768
+ }
2769
+
2770
+ @media (prefers-color-scheme: dark){
2771
+
2772
+ .dialog.newAltText{
2773
+ --preview-image-bg-color:#2b2a33;
2774
+ }
2775
+ }
2776
+
2777
+ @media screen and (forced-colors: active){
2778
+
2779
+ .dialog.newAltText{
2780
+ --preview-image-bg-color:ButtonFace;
2781
+ --preview-image-border:1px solid ButtonText;
2782
+ }
2783
+ }
2784
+
2785
+ .dialog.newAltText{
2786
+
2787
+ width:80%;
2788
+ max-width:570px;
2789
+ min-width:300px;
2790
+ padding:0;
2791
+ }
2792
+
2793
+ .dialog.newAltText.noAi #newAltTextDisclaimer,.dialog.newAltText.noAi #newAltTextCreateAutomatically{
2794
+ display:none !important;
2795
+ }
2796
+
2797
+ .dialog.newAltText.aiInstalling #newAltTextCreateAutomatically{
2798
+ display:none !important;
2799
+ }
2800
+
2801
+ .dialog.newAltText.aiInstalling #newAltTextDownloadModel{
2802
+ display:flex !important;
2803
+ }
2804
+
2805
+ .dialog.newAltText.error #newAltTextNotNow{
2806
+ display:none !important;
2807
+ }
2808
+
2809
+ .dialog.newAltText.error #newAltTextCancel{
2810
+ display:inline-block !important;
2811
+ }
2812
+
2813
+ .dialog.newAltText:not(.error) #newAltTextError{
2814
+ display:none !important;
2815
+ }
2816
+
2817
+ .dialog.newAltText #newAltTextContainer{
2818
+ display:flex;
2819
+ width:auto;
2820
+ padding:16px;
2821
+ flex-direction:column;
2822
+ justify-content:flex-end;
2823
+ align-items:flex-start;
2824
+ gap:12px;
2825
+ flex:0 1 auto;
2826
+ line-height:normal;
2827
+ }
2828
+
2829
+ :is(.dialog.newAltText #newAltTextContainer) #mainContent{
2830
+ display:flex;
2831
+ justify-content:flex-end;
2832
+ align-items:flex-start;
2833
+ gap:12px;
2834
+ align-self:stretch;
2835
+ flex:1 1 auto;
2836
+ }
2837
+
2838
+ :is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #descriptionAndSettings{
2839
+ display:flex;
2840
+ flex-direction:column;
2841
+ align-items:flex-start;
2842
+ gap:16px;
2843
+ flex:1 0 0;
2844
+ align-self:stretch;
2845
+ }
2846
+
2847
+ :is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #descriptionInstruction{
2848
+ display:flex;
2849
+ flex-direction:column;
2850
+ align-items:flex-start;
2851
+ gap:8px;
2852
+ align-self:stretch;
2853
+ flex:1 1 auto;
2854
+ }
2855
+
2856
+ :is(:is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #descriptionInstruction) #newAltTextDescriptionContainer{
2857
+ width:100%;
2858
+ height:70px;
2859
+ position:relative;
2860
+ }
2861
+
2862
+ :is(:is(:is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #descriptionInstruction) #newAltTextDescriptionContainer) textarea{
2863
+ width:100%;
2864
+ height:100%;
2865
+ padding:8px;
2866
+ }
2867
+
2868
+ :is(:is(:is(:is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #descriptionInstruction) #newAltTextDescriptionContainer) textarea)::-moz-placeholder{
2869
+ color:var(--text-secondary-color);
2870
+ }
2871
+
2872
+ :is(:is(:is(:is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #descriptionInstruction) #newAltTextDescriptionContainer) textarea)::placeholder{
2873
+ color:var(--text-secondary-color);
2874
+ }
2875
+
2876
+ :is(:is(:is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #descriptionInstruction) #newAltTextDescriptionContainer) .altTextSpinner{
2877
+ display:none;
2878
+ position:absolute;
2879
+ width:16px;
2880
+ height:16px;
2881
+ inset-inline-start:8px;
2882
+ inset-block-start:8px;
2883
+ -webkit-mask-size:cover;
2884
+ mask-size:cover;
2885
+ background-color:var(--text-secondary-color);
2886
+ pointer-events:none;
2887
+ }
2888
+
2889
+ .loading:is(:is(:is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #descriptionInstruction) #newAltTextDescriptionContainer) textarea::-moz-placeholder{
2890
+ color:transparent;
2891
+ }
2892
+
2893
+ .loading:is(:is(:is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #descriptionInstruction) #newAltTextDescriptionContainer) textarea::placeholder{
2894
+ color:transparent;
2895
+ }
2896
+
2897
+ .loading:is(:is(:is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #descriptionInstruction) #newAltTextDescriptionContainer) .altTextSpinner{
2898
+ display:inline-block;
2899
+ -webkit-mask-image:var(--new-alt-text-spinner-icon);
2900
+ mask-image:var(--new-alt-text-spinner-icon);
2901
+ }
2902
+
2903
+ :is(:is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #descriptionInstruction) #newAltTextDescription{
2904
+ font-size:11px;
2905
+ }
2906
+
2907
+ :is(:is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #descriptionInstruction) #newAltTextDisclaimer{
2908
+ display:flex;
2909
+ flex-direction:row;
2910
+ align-items:flex-start;
2911
+ gap:4px;
2912
+ font-size:11px;
2913
+ }
2914
+
2915
+ :is(:is(:is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #descriptionInstruction) #newAltTextDisclaimer)::before{
2916
+ content:"";
2917
+ display:inline-block;
2918
+ width:17px;
2919
+ height:16px;
2920
+ -webkit-mask-image:var(--new-alt-text-ai-disclaimer-icon);
2921
+ mask-image:var(--new-alt-text-ai-disclaimer-icon);
2922
+ -webkit-mask-size:cover;
2923
+ mask-size:cover;
2924
+ background-color:var(--text-secondary-color);
2925
+ flex:1 0 auto;
2926
+ }
2927
+
2928
+ :is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #newAltTextDownloadModel{
2929
+ display:flex;
2930
+ align-items:center;
2931
+ gap:4px;
2932
+ align-self:stretch;
2933
+ }
2934
+
2935
+ :is(:is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #newAltTextDownloadModel)::before{
2936
+ content:"";
2937
+ display:inline-block;
2938
+ width:16px;
2939
+ height:16px;
2940
+ -webkit-mask-image:var(--new-alt-text-spinner-icon);
2941
+ mask-image:var(--new-alt-text-spinner-icon);
2942
+ -webkit-mask-size:cover;
2943
+ mask-size:cover;
2944
+ background-color:var(--text-secondary-color);
2945
+ }
2946
+
2947
+ :is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #newAltTextImagePreview{
2948
+ width:180px;
2949
+ aspect-ratio:1;
2950
+ display:flex;
2951
+ justify-content:center;
2952
+ align-items:center;
2953
+ flex:0 0 auto;
2954
+ background-color:var(--preview-image-bg-color);
2955
+ border:var(--preview-image-border);
2956
+ }
2957
+
2958
+ :is(:is(:is(.dialog.newAltText #newAltTextContainer) #mainContent) #newAltTextImagePreview) > canvas{
2959
+ max-width:100%;
2960
+ max-height:100%;
2961
+ }
2962
+
2963
+ .colorPicker{
2964
+ --hover-outline-color:#0250bb;
2965
+ --selected-outline-color:#0060df;
2966
+ --swatch-border-color:#cfcfd8;
2967
+ }
2968
+
2969
+ @media (prefers-color-scheme: dark){
2970
+
2971
+ .colorPicker{
2972
+ --hover-outline-color:#80ebff;
2973
+ --selected-outline-color:#aaf2ff;
2974
+ --swatch-border-color:#52525e;
2975
+ }
2976
+ }
2977
+
2978
+ @media screen and (forced-colors: active){
2979
+
2980
+ .colorPicker{
2981
+ --hover-outline-color:Highlight;
2982
+ --selected-outline-color:var(--hover-outline-color);
2983
+ --swatch-border-color:ButtonText;
2984
+ }
2985
+ }
2986
+
2987
+ .colorPicker .swatch{
2988
+ width:16px;
2989
+ height:16px;
2990
+ border:1px solid var(--swatch-border-color);
2991
+ border-radius:100%;
2992
+ outline-offset:2px;
2993
+ box-sizing:border-box;
2994
+ forced-color-adjust:none;
2995
+ }
2996
+
2997
+ .colorPicker button:is(:hover,.selected) > .swatch{
2998
+ border:none;
2999
+ }
3000
+
3001
+ .annotationEditorLayer[data-main-rotation="0"] .highlightEditor:not(.free) > .editToolbar{
3002
+ rotate:0deg;
3003
+ }
3004
+
3005
+ .annotationEditorLayer[data-main-rotation="90"] .highlightEditor:not(.free) > .editToolbar{
3006
+ rotate:270deg;
3007
+ }
3008
+
3009
+ .annotationEditorLayer[data-main-rotation="180"] .highlightEditor:not(.free) > .editToolbar{
3010
+ rotate:180deg;
3011
+ }
3012
+
3013
+ .annotationEditorLayer[data-main-rotation="270"] .highlightEditor:not(.free) > .editToolbar{
3014
+ rotate:90deg;
3015
+ }
3016
+
3017
+ .annotationEditorLayer .highlightEditor{
3018
+ position:absolute;
3019
+ background:transparent;
3020
+ z-index:1;
3021
+ cursor:auto;
3022
+ max-width:100%;
3023
+ max-height:100%;
3024
+ border:none;
3025
+ outline:none;
3026
+ pointer-events:none;
3027
+ transform-origin:0 0;
3028
+ }
3029
+
3030
+ :is(.annotationEditorLayer .highlightEditor):not(.free){
3031
+ transform:none;
3032
+ }
3033
+
3034
+ :is(.annotationEditorLayer .highlightEditor) .internal{
3035
+ position:absolute;
3036
+ top:0;
3037
+ left:0;
3038
+ width:100%;
3039
+ height:100%;
3040
+ pointer-events:auto;
3041
+ }
3042
+
3043
+ .disabled:is(.annotationEditorLayer .highlightEditor) .internal{
3044
+ pointer-events:none;
3045
+ }
3046
+
3047
+ .selectedEditor:is(.annotationEditorLayer .highlightEditor) .internal{
3048
+ cursor:pointer;
3049
+ }
3050
+
3051
+ :is(.annotationEditorLayer .highlightEditor) .editToolbar{
3052
+ --editor-toolbar-colorpicker-arrow-image:url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M8.23336%2010.4664L11.8474%206.85339C11.894%206.8071%2011.931%206.75203%2011.9563%206.69136C11.9816%206.63069%2011.9946%206.56562%2011.9946%206.49989C11.9946%206.43417%2011.9816%206.3691%2011.9563%206.30843C11.931%206.24776%2011.894%206.19269%2011.8474%206.14639C11.7536%206.05266%2011.6264%206%2011.4939%206C11.3613%206%2011.2341%206.05266%2011.1404%206.14639L7.99236%209.29339L4.84736%206.14739C4.75305%206.05631%204.62675%206.00592%204.49566%206.00706C4.36456%206.0082%204.23915%206.06078%204.14645%206.15348C4.05374%206.24619%204.00116%206.37159%204.00002%206.50269C3.99888%206.63379%204.04928%206.76009%204.14036%206.85439L7.75236%2010.4674L8.23336%2010.4664Z'%20fill='black'/%3e%3c/svg%3e");
3053
+
3054
+ transform-origin:center !important;
3055
+ }
3056
+
3057
+ :is(:is(:is(.annotationEditorLayer .highlightEditor) .editToolbar) .buttons) .colorPicker{
3058
+ position:relative;
3059
+ width:auto;
3060
+ display:flex;
3061
+ justify-content:center;
3062
+ align-items:center;
3063
+ gap:4px;
3064
+ padding:4px;
3065
+ }
3066
+
3067
+ :is(:is(:is(:is(.annotationEditorLayer .highlightEditor) .editToolbar) .buttons) .colorPicker)::after{
3068
+ content:"";
3069
+ -webkit-mask-image:var(--editor-toolbar-colorpicker-arrow-image);
3070
+ mask-image:var(--editor-toolbar-colorpicker-arrow-image);
3071
+ -webkit-mask-repeat:no-repeat;
3072
+ mask-repeat:no-repeat;
3073
+ -webkit-mask-position:center;
3074
+ mask-position:center;
3075
+ display:inline-block;
3076
+ background-color:var(--editor-toolbar-fg-color);
3077
+ width:12px;
3078
+ height:12px;
3079
+ }
3080
+
3081
+ :is(:is(:is(:is(.annotationEditorLayer .highlightEditor) .editToolbar) .buttons) .colorPicker):hover::after{
3082
+ background-color:var(--editor-toolbar-hover-fg-color);
3083
+ }
3084
+
3085
+ :is(:is(:is(:is(.annotationEditorLayer .highlightEditor) .editToolbar) .buttons) .colorPicker):has(.dropdown:not(.hidden)){
3086
+ background-color:var(--editor-toolbar-hover-bg-color);
3087
+ }
3088
+
3089
+ :is(:is(:is(:is(.annotationEditorLayer .highlightEditor) .editToolbar) .buttons) .colorPicker):has(.dropdown:not(.hidden))::after{
3090
+ scale:-1;
3091
+ }
3092
+
3093
+ :is(:is(:is(:is(.annotationEditorLayer .highlightEditor) .editToolbar) .buttons) .colorPicker) .dropdown{
3094
+ position:absolute;
3095
+ display:flex;
3096
+ justify-content:center;
3097
+ align-items:center;
3098
+ flex-direction:column;
3099
+ gap:11px;
3100
+ padding-block:8px;
3101
+ border-radius:6px;
3102
+ background-color:var(--editor-toolbar-bg-color);
3103
+ border:1px solid var(--editor-toolbar-border-color);
3104
+ box-shadow:var(--editor-toolbar-shadow);
3105
+ inset-block-start:calc(100% + 4px);
3106
+ width:calc(100% + 2 * var(--editor-toolbar-padding));
3107
+ }
3108
+
3109
+ :is(:is(:is(:is(:is(.annotationEditorLayer .highlightEditor) .editToolbar) .buttons) .colorPicker) .dropdown) button{
3110
+ width:100%;
3111
+ height:auto;
3112
+ border:none;
3113
+ cursor:pointer;
3114
+ display:flex;
3115
+ justify-content:center;
3116
+ align-items:center;
3117
+ background:none;
3118
+ }
3119
+
3120
+ :is(:is(:is(:is(:is(:is(.annotationEditorLayer .highlightEditor) .editToolbar) .buttons) .colorPicker) .dropdown) button):is(:active,:focus-visible){
3121
+ outline:none;
3122
+ }
3123
+
3124
+ :is(:is(:is(:is(:is(:is(.annotationEditorLayer .highlightEditor) .editToolbar) .buttons) .colorPicker) .dropdown) button) > .swatch{
3125
+ outline-offset:2px;
3126
+ }
3127
+
3128
+ [aria-selected="true"]:is(:is(:is(:is(:is(:is(.annotationEditorLayer .highlightEditor) .editToolbar) .buttons) .colorPicker) .dropdown) button) > .swatch{
3129
+ outline:2px solid var(--selected-outline-color);
3130
+ }
3131
+
3132
+ :is(:is(:is(:is(:is(:is(.annotationEditorLayer .highlightEditor) .editToolbar) .buttons) .colorPicker) .dropdown) button):is(:hover,:active,:focus-visible) > .swatch{
3133
+ outline:2px solid var(--hover-outline-color);
3134
+ }
3135
+
3136
+ .editorParamsToolbar:has(#highlightParamsToolbarContainer){
3137
+ padding:unset;
3138
+ }
3139
+
3140
+ #highlightParamsToolbarContainer{
3141
+ gap:16px;
3142
+ padding-inline:10px;
3143
+ padding-block-end:12px;
3144
+ }
3145
+
3146
+ #highlightParamsToolbarContainer .colorPicker{
3147
+ display:flex;
3148
+ flex-direction:column;
3149
+ gap:8px;
3150
+ }
3151
+
3152
+ :is(#highlightParamsToolbarContainer .colorPicker) .dropdown{
3153
+ display:flex;
3154
+ justify-content:space-between;
3155
+ align-items:center;
3156
+ flex-direction:row;
3157
+ height:auto;
3158
+ }
3159
+
3160
+ :is(:is(#highlightParamsToolbarContainer .colorPicker) .dropdown) button{
3161
+ width:auto;
3162
+ height:auto;
3163
+ border:none;
3164
+ cursor:pointer;
3165
+ display:flex;
3166
+ justify-content:center;
3167
+ align-items:center;
3168
+ background:none;
3169
+ flex:0 0 auto;
3170
+ padding:0;
3171
+ }
3172
+
3173
+ :is(:is(:is(#highlightParamsToolbarContainer .colorPicker) .dropdown) button) .swatch{
3174
+ width:24px;
3175
+ height:24px;
3176
+ }
3177
+
3178
+ :is(:is(:is(#highlightParamsToolbarContainer .colorPicker) .dropdown) button):is(:active,:focus-visible){
3179
+ outline:none;
3180
+ }
3181
+
3182
+ [aria-selected="true"]:is(:is(:is(#highlightParamsToolbarContainer .colorPicker) .dropdown) button) > .swatch{
3183
+ outline:2px solid var(--selected-outline-color);
3184
+ }
3185
+
3186
+ :is(:is(:is(#highlightParamsToolbarContainer .colorPicker) .dropdown) button):is(:hover,:active,:focus-visible) > .swatch{
3187
+ outline:2px solid var(--hover-outline-color);
3188
+ }
3189
+
3190
+ #highlightParamsToolbarContainer #editorHighlightThickness{
3191
+ display:flex;
3192
+ flex-direction:column;
3193
+ align-items:center;
3194
+ gap:4px;
3195
+ align-self:stretch;
3196
+ }
3197
+
3198
+ :is(#highlightParamsToolbarContainer #editorHighlightThickness) .editorParamsLabel{
3199
+ height:auto;
3200
+ align-self:stretch;
3201
+ }
3202
+
3203
+ :is(#highlightParamsToolbarContainer #editorHighlightThickness) .thicknessPicker{
3204
+ display:flex;
3205
+ justify-content:space-between;
3206
+ align-items:center;
3207
+ align-self:stretch;
3208
+
3209
+ --example-color:#bfbfc9;
3210
+ }
3211
+
3212
+ @media (prefers-color-scheme: dark){
3213
+
3214
+ :is(#highlightParamsToolbarContainer #editorHighlightThickness) .thicknessPicker{
3215
+ --example-color:#80808e;
3216
+ }
3217
+ }
3218
+
3219
+ @media screen and (forced-colors: active){
3220
+
3221
+ :is(#highlightParamsToolbarContainer #editorHighlightThickness) .thicknessPicker{
3222
+ --example-color:CanvasText;
3223
+ }
3224
+ }
3225
+
3226
+ :is(:is(:is(#highlightParamsToolbarContainer #editorHighlightThickness) .thicknessPicker) > .editorParamsSlider[disabled]){
3227
+ opacity:0.4;
3228
+ }
3229
+
3230
+ :is(:is(#highlightParamsToolbarContainer #editorHighlightThickness) .thicknessPicker)::before,:is(:is(#highlightParamsToolbarContainer #editorHighlightThickness) .thicknessPicker)::after{
3231
+ content:"";
3232
+ width:8px;
3233
+ aspect-ratio:1;
3234
+ display:block;
3235
+ border-radius:100%;
3236
+ background-color:var(--example-color);
3237
+ }
3238
+
3239
+ :is(:is(#highlightParamsToolbarContainer #editorHighlightThickness) .thicknessPicker)::after{
3240
+ width:24px;
3241
+ }
3242
+
3243
+ :is(:is(#highlightParamsToolbarContainer #editorHighlightThickness) .thicknessPicker) .editorParamsSlider{
3244
+ width:unset;
3245
+ height:14px;
3246
+ }
3247
+
3248
+ #highlightParamsToolbarContainer #editorHighlightVisibility{
3249
+ display:flex;
3250
+ flex-direction:column;
3251
+ align-items:flex-start;
3252
+ gap:8px;
3253
+ align-self:stretch;
3254
+ }
3255
+
3256
+ :is(#highlightParamsToolbarContainer #editorHighlightVisibility) .divider{
3257
+ --divider-color:#d7d7db;
3258
+ }
3259
+
3260
+ @media (prefers-color-scheme: dark){
3261
+
3262
+ :is(#highlightParamsToolbarContainer #editorHighlightVisibility) .divider{
3263
+ --divider-color:#8f8f9d;
3264
+ }
3265
+ }
3266
+
3267
+ @media screen and (forced-colors: active){
3268
+
3269
+ :is(#highlightParamsToolbarContainer #editorHighlightVisibility) .divider{
3270
+ --divider-color:CanvasText;
3271
+ }
3272
+ }
3273
+
3274
+ :is(#highlightParamsToolbarContainer #editorHighlightVisibility) .divider{
3275
+
3276
+ margin-block:4px;
3277
+ width:100%;
3278
+ height:1px;
3279
+ background-color:var(--divider-color);
3280
+ }
3281
+
3282
+ :is(#highlightParamsToolbarContainer #editorHighlightVisibility) .toggler{
3283
+ display:flex;
3284
+ justify-content:space-between;
3285
+ align-items:center;
3286
+ align-self:stretch;
3287
+ }
3288
+
3289
+ #altTextSettingsDialog{
3290
+ padding:16px;
3291
+ }
3292
+
3293
+ #altTextSettingsDialog #altTextSettingsContainer{
3294
+ display:flex;
3295
+ width:573px;
3296
+ flex-direction:column;
3297
+ gap:16px;
3298
+ }
3299
+
3300
+ :is(#altTextSettingsDialog #altTextSettingsContainer) .mainContainer{
3301
+ gap:16px;
3302
+ }
3303
+
3304
+ :is(#altTextSettingsDialog #altTextSettingsContainer) .description{
3305
+ color:var(--text-secondary-color);
3306
+ }
3307
+
3308
+ :is(#altTextSettingsDialog #altTextSettingsContainer) #aiModelSettings{
3309
+ display:flex;
3310
+ flex-direction:column;
3311
+ gap:12px;
3312
+ }
3313
+
3314
+ :is(:is(#altTextSettingsDialog #altTextSettingsContainer) #aiModelSettings) button{
3315
+ width:-moz-fit-content;
3316
+ width:fit-content;
3317
+ }
3318
+
3319
+ .download:is(:is(#altTextSettingsDialog #altTextSettingsContainer) #aiModelSettings) #deleteModelButton{
3320
+ display:none;
3321
+ }
3322
+
3323
+ :is(:is(#altTextSettingsDialog #altTextSettingsContainer) #aiModelSettings):not(.download) #downloadModelButton{
3324
+ display:none;
3325
+ }
3326
+
3327
+ :is(#altTextSettingsDialog #altTextSettingsContainer) #automaticAltText,:is(#altTextSettingsDialog #altTextSettingsContainer) #altTextEditor{
3328
+ display:flex;
3329
+ flex-direction:column;
3330
+ gap:8px;
3331
+ }
3332
+
3333
+ :is(#altTextSettingsDialog #altTextSettingsContainer) #createModelDescription,:is(#altTextSettingsDialog #altTextSettingsContainer) #aiModelSettings,:is(#altTextSettingsDialog #altTextSettingsContainer) #showAltTextDialogDescription{
3334
+ padding-inline-start:40px;
3335
+ }
3336
+
3337
+ :is(#altTextSettingsDialog #altTextSettingsContainer) #automaticSettings{
3338
+ display:flex;
3339
+ flex-direction:column;
3340
+ gap:16px;
3341
+ }
3342
+
3343
+ :root{
3344
+ --viewer-container-height:0;
3345
+ --pdfViewer-padding-bottom:0;
3346
+ --page-margin:1px auto -8px;
3347
+ --page-border:9px solid transparent;
3348
+ --spreadHorizontalWrapped-margin-LR:-3.5px;
3349
+ --loading-icon-delay:400ms;
3350
+ }
3351
+
3352
+ @media screen and (forced-colors: active){
3353
+ :root{
3354
+ --pdfViewer-padding-bottom:9px;
3355
+ --page-margin:8px auto -1px;
3356
+ --page-border:1px solid CanvasText;
3357
+ --spreadHorizontalWrapped-margin-LR:3.5px;
3358
+ }
3359
+ }
3360
+
3361
+ [data-main-rotation="90"]{
3362
+ transform:rotate(90deg) translateY(-100%);
3363
+ }
3364
+
3365
+ [data-main-rotation="180"]{
3366
+ transform:rotate(180deg) translate(-100%, -100%);
3367
+ }
3368
+
3369
+ [data-main-rotation="270"]{
3370
+ transform:rotate(270deg) translateX(-100%);
3371
+ }
3372
+
3373
+ #hiddenCopyElement,
3374
+ .hiddenCanvasElement{
3375
+ position:absolute;
3376
+ top:0;
3377
+ left:0;
3378
+ width:0;
3379
+ height:0;
3380
+ display:none;
3381
+ }
3382
+
3383
+ .pdfViewer{
3384
+ --scale-factor:1;
3385
+ --page-bg-color:unset;
3386
+
3387
+ padding-bottom:var(--pdfViewer-padding-bottom);
3388
+
3389
+ --hcm-highlight-filter:none;
3390
+ --hcm-highlight-selected-filter:none;
3391
+ }
3392
+
3393
+ @media screen and (forced-colors: active){
3394
+
3395
+ .pdfViewer{
3396
+ --hcm-highlight-filter:invert(100%);
3397
+ }
3398
+ }
3399
+
3400
+ .pdfViewer.copyAll{
3401
+ cursor:wait;
3402
+ }
3403
+
3404
+ .pdfViewer .canvasWrapper{
3405
+ overflow:hidden;
3406
+ width:100%;
3407
+ height:100%;
3408
+ }
3409
+
3410
+ :is(.pdfViewer .canvasWrapper) canvas{
3411
+ position:absolute;
3412
+ top:0;
3413
+ left:0;
3414
+ margin:0;
3415
+ display:block;
3416
+ width:100%;
3417
+ height:100%;
3418
+ contain:content;
3419
+ }
3420
+
3421
+ :is(:is(.pdfViewer .canvasWrapper) canvas) .structTree{
3422
+ contain:strict;
3423
+ }
3424
+
3425
+ .pdfViewer .page{
3426
+ --scale-round-x:1px;
3427
+ --scale-round-y:1px;
3428
+
3429
+ direction:ltr;
3430
+ width:816px;
3431
+ height:1056px;
3432
+ margin:var(--page-margin);
3433
+ position:relative;
3434
+ overflow:visible;
3435
+ border:var(--page-border);
3436
+ background-clip:content-box;
3437
+ background-color:var(--page-bg-color, rgb(255 255 255));
3438
+ }
3439
+
3440
+ .pdfViewer .dummyPage{
3441
+ position:relative;
3442
+ width:0;
3443
+ height:var(--viewer-container-height);
3444
+ }
3445
+
3446
+ .pdfViewer.noUserSelect{
3447
+ -webkit-user-select:none;
3448
+ -moz-user-select:none;
3449
+ user-select:none;
3450
+ }
3451
+
3452
+ .pdfViewer.removePageBorders .page{
3453
+ margin:0 auto 10px;
3454
+ border:none;
3455
+ }
3456
+
3457
+ .pdfViewer.singlePageView{
3458
+ display:inline-block;
3459
+ }
3460
+
3461
+ .pdfViewer.singlePageView .page{
3462
+ margin:0;
3463
+ border:none;
3464
+ }
3465
+
3466
+ .pdfViewer:is(.scrollHorizontal, .scrollWrapped),
3467
+ .spread{
3468
+ margin-inline:3.5px;
3469
+ text-align:center;
3470
+ }
3471
+
3472
+ .pdfViewer.scrollHorizontal,
3473
+ .spread{
3474
+ white-space:nowrap;
3475
+ }
3476
+
3477
+ .pdfViewer.removePageBorders,
3478
+ .pdfViewer:is(.scrollHorizontal, .scrollWrapped) .spread{
3479
+ margin-inline:0;
3480
+ }
3481
+
3482
+ .spread :is(.page, .dummyPage),
3483
+ .pdfViewer:is(.scrollHorizontal, .scrollWrapped) :is(.page, .spread){
3484
+ display:inline-block;
3485
+ vertical-align:middle;
3486
+ }
3487
+
3488
+ .spread .page,
3489
+ .pdfViewer:is(.scrollHorizontal, .scrollWrapped) .page{
3490
+ margin-inline:var(--spreadHorizontalWrapped-margin-LR);
3491
+ }
3492
+
3493
+ .pdfViewer.removePageBorders .spread .page,
3494
+ .pdfViewer.removePageBorders:is(.scrollHorizontal, .scrollWrapped) .page{
3495
+ margin-inline:5px;
3496
+ }
3497
+
3498
+ .pdfViewer .page.loadingIcon::after{
3499
+ position:absolute;
3500
+ top:0;
3501
+ left:0;
3502
+ content:"";
3503
+ width:100%;
3504
+ height:100%;
3505
+ background:url("data:image/gif;base64,R0lGODlhGAAYAPQAAP///wAAAM7Ozvr6+uDg4LCwsOjo6I6OjsjIyJycnNjY2KioqMDAwPLy8nZ2doaGhri4uGhoaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJBwAAACwAAAAAGAAYAAAFriAgjiQAQWVaDgr5POSgkoTDjFE0NoQ8iw8HQZQTDQjDn4jhSABhAAOhoTqSDg7qSUQwxEaEwwFhXHhHgzOA1xshxAnfTzotGRaHglJqkJcaVEqCgyoCBQkJBQKDDXQGDYaIioyOgYSXA36XIgYMBWRzXZoKBQUMmil0lgalLSIClgBpO0g+s26nUWddXyoEDIsACq5SsTMMDIECwUdJPw0Mzsu0qHYkw72bBmozIQAh+QQJBwAAACwAAAAAGAAYAAAFsCAgjiTAMGVaDgR5HKQwqKNxIKPjjFCk0KNXC6ATKSI7oAhxWIhezwhENTCQEoeGCdWIPEgzESGxEIgGBWstEW4QCGGAIJEoxGmGt5ZkgCRQQHkGd2CESoeIIwoMBQUMP4cNeQQGDYuNj4iSb5WJnmeGng0CDGaBlIQEJziHk3sABidDAHBgagButSKvAAoyuHuUYHgCkAZqebw0AgLBQyyzNKO3byNuoSS8x8OfwIchACH5BAkHAAAALAAAAAAYABgAAAW4ICCOJIAgZVoOBJkkpDKoo5EI43GMjNPSokXCINKJCI4HcCRIQEQvqIOhGhBHhUTDhGo4diOZyFAoKEQDxra2mAEgjghOpCgz3LTBIxJ5kgwMBShACREHZ1V4Kg1rS44pBAgMDAg/Sw0GBAQGDZGTlY+YmpyPpSQDiqYiDQoCliqZBqkGAgKIS5kEjQ21VwCyp76dBHiNvz+MR74AqSOdVwbQuo+abppo10ssjdkAnc0rf8vgl8YqIQAh+QQJBwAAACwAAAAAGAAYAAAFrCAgjiQgCGVaDgZZFCQxqKNRKGOSjMjR0qLXTyciHA7AkaLACMIAiwOC1iAxCrMToHHYjWQiA4NBEA0Q1RpWxHg4cMXxNDk4OBxNUkPAQAEXDgllKgMzQA1pSYopBgonCj9JEA8REQ8QjY+RQJOVl4ugoYssBJuMpYYjDQSliwasiQOwNakALKqsqbWvIohFm7V6rQAGP6+JQLlFg7KDQLKJrLjBKbvAor3IKiEAIfkECQcAAAAsAAAAABgAGAAABbUgII4koChlmhokw5DEoI4NQ4xFMQoJO4uuhignMiQWvxGBIQC+AJBEUyUcIRiyE6CR0CllW4HABxBURTUw4nC4FcWo5CDBRpQaCoF7VjgsyCUDYDMNZ0mHdwYEBAaGMwwHDg4HDA2KjI4qkJKUiJ6faJkiA4qAKQkRB3E0i6YpAw8RERAjA4tnBoMApCMQDhFTuySKoSKMJAq6rD4GzASiJYtgi6PUcs9Kew0xh7rNJMqIhYchACH5BAkHAAAALAAAAAAYABgAAAW0ICCOJEAQZZo2JIKQxqCOjWCMDDMqxT2LAgELkBMZCoXfyCBQiFwiRsGpku0EshNgUNAtrYPT0GQVNRBWwSKBMp98P24iISgNDAS4ipGA6JUpA2WAhDR4eWM/CAkHBwkIDYcGiTOLjY+FmZkNlCN3eUoLDmwlDW+AAwcODl5bYl8wCVYMDw5UWzBtnAANEQ8kBIM0oAAGPgcREIQnVloAChEOqARjzgAQEbczg8YkWJq8nSUhACH5BAkHAAAALAAAAAAYABgAAAWtICCOJGAYZZoOpKKQqDoORDMKwkgwtiwSBBYAJ2owGL5RgxBziQQMgkwoMkhNqAEDARPSaiMDFdDIiRSFQowMXE8Z6RdpYHWnEAWGPVkajPmARVZMPUkCBQkJBQINgwaFPoeJi4GVlQ2Qc3VJBQcLV0ptfAMJBwdcIl+FYjALQgimoGNWIhAQZA4HXSpLMQ8PIgkOSHxAQhERPw7ASTSFyCMMDqBTJL8tf3y2fCEAIfkECQcAAAAsAAAAABgAGAAABa8gII4k0DRlmg6kYZCoOg5EDBDEaAi2jLO3nEkgkMEIL4BLpBAkVy3hCTAQKGAznM0AFNFGBAbj2cA9jQixcGZAGgECBu/9HnTp+FGjjezJFAwFBQwKe2Z+KoCChHmNjVMqA21nKQwJEJRlbnUFCQlFXlpeCWcGBUACCwlrdw8RKGImBwktdyMQEQciB7oACwcIeA4RVwAODiIGvHQKERAjxyMIB5QlVSTLYLZ0sW8hACH5BAkHAAAALAAAAAAYABgAAAW0ICCOJNA0ZZoOpGGQrDoOBCoSxNgQsQzgMZyIlvOJdi+AS2SoyXrK4umWPM5wNiV0UDUIBNkdoepTfMkA7thIECiyRtUAGq8fm2O4jIBgMBA1eAZ6Knx+gHaJR4QwdCMKBxEJRggFDGgQEREPjjAMBQUKIwIRDhBDC2QNDDEKoEkDoiMHDigICGkJBS2dDA6TAAnAEAkCdQ8ORQcHTAkLcQQODLPMIgIJaCWxJMIkPIoAt3EhACH5BAkHAAAALAAAAAAYABgAAAWtICCOJNA0ZZoOpGGQrDoOBCoSxNgQsQzgMZyIlvOJdi+AS2SoyXrK4umWHM5wNiV0UN3xdLiqr+mENcWpM9TIbrsBkEck8oC0DQqBQGGIz+t3eXtob0ZTPgNrIwQJDgtGAgwCWSIMDg4HiiUIDAxFAAoODwxDBWINCEGdSTQkCQcoegADBaQ6MggHjwAFBZUFCm0HB0kJCUy9bAYHCCPGIwqmRq0jySMGmj6yRiEAIfkECQcAAAAsAAAAABgAGAAABbIgII4k0DRlmg6kYZCsOg4EKhLE2BCxDOAxnIiW84l2L4BLZKipBopW8XRLDkeCiAMyMvQAA+uON4JEIo+vqukkKQ6RhLHplVGN+LyKcXA4Dgx5DWwGDXx+gIKENnqNdzIDaiMECwcFRgQCCowiCAcHCZIlCgICVgSfCEMMnA0CXaU2YSQFoQAKUQMMqjoyAglcAAyBAAIMRUYLCUkFlybDeAYJryLNk6xGNCTQXY0juHghACH5BAkHAAAALAAAAAAYABgAAAWzICCOJNA0ZVoOAmkY5KCSSgSNBDE2hDyLjohClBMNij8RJHIQvZwEVOpIekRQJyJs5AMoHA+GMbE1lnm9EcPhOHRnhpwUl3AsknHDm5RN+v8qCAkHBwkIfw1xBAYNgoSGiIqMgJQifZUjBhAJYj95ewIJCQV7KYpzBAkLLQADCHOtOpY5PgNlAAykAEUsQ1wzCgWdCIdeArczBQVbDJ0NAqyeBb64nQAGArBTt8R8mLuyPyEAOwAAAAAAAAAAAA==") center no-repeat;
3506
+ display:none;
3507
+ transition-property:display;
3508
+ transition-delay:var(--loading-icon-delay);
3509
+ z-index:5;
3510
+ contain:strict;
3511
+ }
3512
+
3513
+ .pdfViewer .page.loading::after{
3514
+ display:block;
3515
+ }
3516
+
3517
+ .pdfViewer .page:not(.loading)::after{
3518
+ transition-property:none;
3519
+ display:none;
3520
+ }
3521
+
3522
+ .pdfPresentationMode .pdfViewer{
3523
+ padding-bottom:0;
3524
+ }
3525
+
3526
+ .pdfPresentationMode .spread{
3527
+ margin:0;
3528
+ }
3529
+
3530
+ .pdfPresentationMode .pdfViewer .page{
3531
+ margin:0 auto;
3532
+ border:2px solid transparent;
3533
+ }
3534
+
3535
+ /* overrides for pdf_viewer.css from PDF.JS web viewer */
3536
+
3537
+ .textLayer {
3538
+ z-index: 2;
3539
+ opacity: 1;
3540
+ mix-blend-mode: normal;
3541
+ }
3542
+
3543
+ .textLayer span,
3544
+ .textLayer > div {
3545
+ /* Prevent "double text" by keeping the selectable text layer invisible.
3546
+ The actual glyphs are rendered on the canvas behind it. */
3547
+ color: transparent !important;
3548
+ }
3549
+
3550
+ /* Keep overlay hint card text visible (it is UI, not selectable text glyphs). */
3551
+
3552
+ .textLayer .Highlight [class*='hintChip'],
3553
+ .textLayer .Highlight [class*='hintChip'] span,
3554
+ .textLayer .Highlight [class*='hintChip'] div {
3555
+ color: rgba(15, 15, 15, 0.96) !important;
3556
+ -webkit-text-fill-color: currentColor !important;
3557
+ }
3558
+
3559
+ .annotationLayer {
3560
+ position: absolute;
3561
+ top: 0;
3562
+
3563
+ z-index: 3;
3564
+ }
3565
+
3566
+ html
3567
+ body
3568
+ .textLayer
3569
+ > div:not(.PdfHighlighter__highlight-layer):not(.Highlight):not(
3570
+ .Highlight__emoji
3571
+ ) {
3572
+ opacity: 1;
3573
+ mix-blend-mode: normal;
3574
+ }
3575
+
3576
+ .textLayer ::-moz-selection {
3577
+ /* Hide the native selection highlight; we render our own ghost highlight. */
3578
+ background: transparent;
3579
+ }
3580
+
3581
+ .textLayer ::selection {
3582
+ /* Hide the native selection highlight; we render our own ghost highlight. */
3583
+ background: transparent;
3584
+ }
3585
+
3586
+ /* Firefox selection */
3587
+
3588
+ .textLayer ::-moz-selection {
3589
+ background: transparent;
3590
+ }
3591
+
3592
+ /* biome-ignore lint/correctness/noUnknownMediaFeatureName: update this */
3593
+
3594
+ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
3595
+ .textLayer {
3596
+ opacity: 0.5;
3597
+ }
3598
+ }
3599
+
3600
+ /* Internet Explorer support method */
3601
+
3602
+ /* biome-ignore lint/correctness/noUnknownMediaFeatureName: update this */
3603
+
3604
+ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
3605
+ .textLayer {
3606
+ opacity: 0.5;
3607
+ }
3608
+ }
3609
+
3610
+ /* Microsoft Edge Browser 12+ (All) - @supports method */
3611
+
3612
+ @supports (-ms-ime-align: auto) {
3613
+ .textLayer {
3614
+ opacity: 0.5;
3615
+ }
3616
+ }
3617
+
3618
+ .Highlight__popup {
3619
+ background-color: #3d464d;
3620
+ border: 1px solid rgba(255, 255, 255, 0.25);
3621
+ color: white;
3622
+ padding: 0.5rem 1rem;
3623
+ border-radius: 3px;
3624
+ max-width: 300px;
3625
+ max-height: 100px;
3626
+ overflow-y: scroll;
3627
+ }