@ckeditor/ckeditor5-theme-lark 0.0.0-internal-20241017.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (110) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/LICENSE.md +17 -0
  3. package/README.md +22 -0
  4. package/dist/index-content.css +12 -0
  5. package/dist/index-editor.css +3653 -0
  6. package/dist/index.css +5335 -0
  7. package/dist/index.css.map +1 -0
  8. package/dist/index.js +6 -0
  9. package/dist/index.js.map +1 -0
  10. package/package.json +32 -0
  11. package/theme/ckeditor5-clipboard/clipboard.css +89 -0
  12. package/theme/ckeditor5-code-block/codeblock.css +28 -0
  13. package/theme/ckeditor5-editor-classic/classiceditor.css +48 -0
  14. package/theme/ckeditor5-engine/placeholder.css +39 -0
  15. package/theme/ckeditor5-find-and-replace/findandreplaceform.css +194 -0
  16. package/theme/ckeditor5-heading/heading.css +15 -0
  17. package/theme/ckeditor5-horizontal-line/horizontalline.css +10 -0
  18. package/theme/ckeditor5-html-embed/htmlembed.css +156 -0
  19. package/theme/ckeditor5-image/imageinsert.css +66 -0
  20. package/theme/ckeditor5-image/imageupload.css +4 -0
  21. package/theme/ckeditor5-image/imageuploadicon.css +108 -0
  22. package/theme/ckeditor5-image/imageuploadloader.css +50 -0
  23. package/theme/ckeditor5-image/imageuploadprogress.css +33 -0
  24. package/theme/ckeditor5-link/link.css +30 -0
  25. package/theme/ckeditor5-link/linkactions.css +84 -0
  26. package/theme/ckeditor5-link/linkform.css +61 -0
  27. package/theme/ckeditor5-link/linkimage.css +43 -0
  28. package/theme/ckeditor5-list/listproperties.css +62 -0
  29. package/theme/ckeditor5-list/liststyles.css +40 -0
  30. package/theme/ckeditor5-media-embed/mediaembedediting.css +109 -0
  31. package/theme/ckeditor5-mention/mention.css +14 -0
  32. package/theme/ckeditor5-restricted-editing/restrictedediting.css +69 -0
  33. package/theme/ckeditor5-special-characters/charactergrid.css +51 -0
  34. package/theme/ckeditor5-special-characters/characterinfo.css +26 -0
  35. package/theme/ckeditor5-special-characters/specialcharacters.css +32 -0
  36. package/theme/ckeditor5-style/style.css +8 -0
  37. package/theme/ckeditor5-style/stylegrid.css +98 -0
  38. package/theme/ckeditor5-style/stylegroup.css +16 -0
  39. package/theme/ckeditor5-style/stylepanel.css +14 -0
  40. package/theme/ckeditor5-table/colorinput.css +103 -0
  41. package/theme/ckeditor5-table/form.css +32 -0
  42. package/theme/ckeditor5-table/formrow.css +36 -0
  43. package/theme/ckeditor5-table/inserttable.css +46 -0
  44. package/theme/ckeditor5-table/tablecellproperties.css +25 -0
  45. package/theme/ckeditor5-table/tableediting.css +27 -0
  46. package/theme/ckeditor5-table/tableform.css +90 -0
  47. package/theme/ckeditor5-table/tableproperties.css +26 -0
  48. package/theme/ckeditor5-table/tableselection.css +47 -0
  49. package/theme/ckeditor5-ui/components/autocomplete/autocomplete.css +36 -0
  50. package/theme/ckeditor5-ui/components/button/button.css +167 -0
  51. package/theme/ckeditor5-ui/components/button/listitembutton.css +42 -0
  52. package/theme/ckeditor5-ui/components/button/switchbutton.css +134 -0
  53. package/theme/ckeditor5-ui/components/collapsible/collapsible.css +42 -0
  54. package/theme/ckeditor5-ui/components/colorgrid/colorgrid.css +94 -0
  55. package/theme/ckeditor5-ui/components/colorselector/colorselector.css +70 -0
  56. package/theme/ckeditor5-ui/components/dialog/dialog.css +49 -0
  57. package/theme/ckeditor5-ui/components/dialog/dialogactions.css +14 -0
  58. package/theme/ckeditor5-ui/components/dropdown/dropdown.css +126 -0
  59. package/theme/ckeditor5-ui/components/dropdown/listdropdown.css +33 -0
  60. package/theme/ckeditor5-ui/components/dropdown/menu/dropdownmenubutton.css +89 -0
  61. package/theme/ckeditor5-ui/components/dropdown/menu/dropdownmenulistitem.css +12 -0
  62. package/theme/ckeditor5-ui/components/dropdown/menu/dropdownmenulistitembutton.css +36 -0
  63. package/theme/ckeditor5-ui/components/dropdown/menu/dropdownmenupanel.css +52 -0
  64. package/theme/ckeditor5-ui/components/dropdown/splitbutton.css +112 -0
  65. package/theme/ckeditor5-ui/components/dropdown/toolbardropdown.css +8 -0
  66. package/theme/ckeditor5-ui/components/editorui/accessibilityhelp.css +103 -0
  67. package/theme/ckeditor5-ui/components/editorui/editorui.css +69 -0
  68. package/theme/ckeditor5-ui/components/formheader/formheader.css +32 -0
  69. package/theme/ckeditor5-ui/components/icon/icon.css +42 -0
  70. package/theme/ckeditor5-ui/components/input/input.css +81 -0
  71. package/theme/ckeditor5-ui/components/label/label.css +8 -0
  72. package/theme/ckeditor5-ui/components/labeledfield/labeledfieldview.css +127 -0
  73. package/theme/ckeditor5-ui/components/labeledinput/labeledinput.css +17 -0
  74. package/theme/ckeditor5-ui/components/list/list.css +114 -0
  75. package/theme/ckeditor5-ui/components/menubar/menubar.css +15 -0
  76. package/theme/ckeditor5-ui/components/menubar/menubarmenu.css +13 -0
  77. package/theme/ckeditor5-ui/components/menubar/menubarmenubutton.css +98 -0
  78. package/theme/ckeditor5-ui/components/menubar/menubarmenulistitem.css +12 -0
  79. package/theme/ckeditor5-ui/components/menubar/menubarmenulistitembutton.css +36 -0
  80. package/theme/ckeditor5-ui/components/menubar/menubarmenupanel.css +70 -0
  81. package/theme/ckeditor5-ui/components/panel/balloonpanel.css +207 -0
  82. package/theme/ckeditor5-ui/components/panel/balloonrotator.css +33 -0
  83. package/theme/ckeditor5-ui/components/panel/fakepanel.css +46 -0
  84. package/theme/ckeditor5-ui/components/panel/stickypanel.css +16 -0
  85. package/theme/ckeditor5-ui/components/responsive-form/responsiveform.css +82 -0
  86. package/theme/ckeditor5-ui/components/search/search.css +106 -0
  87. package/theme/ckeditor5-ui/components/spinner/spinner.css +32 -0
  88. package/theme/ckeditor5-ui/components/textarea/textarea.css +12 -0
  89. package/theme/ckeditor5-ui/components/toolbar/blocktoolbar.css +14 -0
  90. package/theme/ckeditor5-ui/components/toolbar/toolbar.css +203 -0
  91. package/theme/ckeditor5-ui/components/tooltip/tooltip.css +38 -0
  92. package/theme/ckeditor5-ui/globals/_colors.css +123 -0
  93. package/theme/ckeditor5-ui/globals/_disabled.css +11 -0
  94. package/theme/ckeditor5-ui/globals/_focus.css +31 -0
  95. package/theme/ckeditor5-ui/globals/_fonts.css +16 -0
  96. package/theme/ckeditor5-ui/globals/_reset.css +97 -0
  97. package/theme/ckeditor5-ui/globals/_rounded.css +11 -0
  98. package/theme/ckeditor5-ui/globals/_shadow.css +21 -0
  99. package/theme/ckeditor5-ui/globals/_spacing.css +14 -0
  100. package/theme/ckeditor5-ui/globals/globals.css +13 -0
  101. package/theme/ckeditor5-ui/mixins/_button.css +29 -0
  102. package/theme/ckeditor5-widget/widget.css +195 -0
  103. package/theme/ckeditor5-widget/widgetresize.css +44 -0
  104. package/theme/ckeditor5-widget/widgettypearound.css +302 -0
  105. package/theme/index.css +97 -0
  106. package/theme/mixins/_disabled.css +11 -0
  107. package/theme/mixins/_focus.css +13 -0
  108. package/theme/mixins/_rounded.css +19 -0
  109. package/theme/mixins/_shadow.css +18 -0
  110. package/theme/theme.css +4 -0
@@ -0,0 +1,3653 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ :root{
6
+ --ck-color-base-foreground:hsl(0, 0%, 98%);
7
+ --ck-color-base-background:hsl(0, 0%, 100%);
8
+ --ck-color-base-border:hsl(220, 6%, 81%);
9
+ --ck-color-base-action:hsl(104, 50.2%, 42.5%);
10
+ --ck-color-base-focus:hsl(209, 92%, 70%);
11
+ --ck-color-base-text:hsl(0, 0%, 20%);
12
+ --ck-color-base-active:hsl(218.1, 100%, 58%);
13
+ --ck-color-base-active-focus:hsl(218.2, 100%, 52.5%);
14
+ --ck-color-base-error:hsl(15, 100%, 43%);
15
+
16
+ --ck-color-focus-border-coordinates:218, 81.8%, 56.9%;
17
+ --ck-color-focus-border:hsl(var(--ck-color-focus-border-coordinates));
18
+ --ck-color-focus-outer-shadow:hsl(212.4, 89.3%, 89%);
19
+ --ck-color-focus-disabled-shadow:hsla(209, 90%, 72%,.3);
20
+ --ck-color-focus-error-shadow:hsla(9,100%,56%,.3);
21
+ --ck-color-text:var(--ck-color-base-text);
22
+ --ck-color-shadow-drop:hsla(0, 0%, 0%, 0.15);
23
+ --ck-color-shadow-drop-active:hsla(0, 0%, 0%, 0.2);
24
+ --ck-color-shadow-inner:hsla(0, 0%, 0%, 0.1);
25
+
26
+ --ck-color-button-default-background:transparent;
27
+ --ck-color-button-default-hover-background:hsl(0, 0%, 94.1%);
28
+ --ck-color-button-default-active-background:hsl(0, 0%, 94.1%);
29
+ --ck-color-button-default-disabled-background:transparent;
30
+
31
+ --ck-color-button-on-background:hsl(212, 100%, 97.1%);
32
+ --ck-color-button-on-hover-background:hsl(211.7, 100%, 92.9%);
33
+ --ck-color-button-on-active-background:hsl(211.7, 100%, 92.9%);
34
+ --ck-color-button-on-disabled-background:hsl(211, 15%, 95%);
35
+ --ck-color-button-on-color:hsl(218.1, 100%, 58%);
36
+
37
+
38
+ --ck-color-button-action-background:var(--ck-color-base-action);
39
+ --ck-color-button-action-hover-background:hsl(104, 53.2%, 40.2%);
40
+ --ck-color-button-action-active-background:hsl(104, 53.2%, 40.2%);
41
+ --ck-color-button-action-disabled-background:hsl(104, 44%, 58%);
42
+ --ck-color-button-action-text:var(--ck-color-base-background);
43
+
44
+ --ck-color-button-save:hsl(120, 100%, 27%);
45
+ --ck-color-button-cancel:hsl(15, 100%, 43%);
46
+
47
+ --ck-color-switch-button-off-background:hsl(0, 0%, 57.6%);
48
+ --ck-color-switch-button-off-hover-background:hsl(0, 0%, 49%);
49
+ --ck-color-switch-button-on-background:var(--ck-color-button-action-background);
50
+ --ck-color-switch-button-on-hover-background:hsl(104, 53.2%, 40.2%);
51
+ --ck-color-switch-button-inner-background:var(--ck-color-base-background);
52
+ --ck-color-switch-button-inner-shadow:hsla(0, 0%, 0%, 0.1);
53
+
54
+ --ck-color-dropdown-panel-background:var(--ck-color-base-background);
55
+ --ck-color-dropdown-panel-border:var(--ck-color-base-border);
56
+
57
+ --ck-color-dialog-background:var(--ck-custom-background);
58
+ --ck-color-dialog-form-header-border:var(--ck-custom-border);
59
+
60
+ --ck-color-input-background:var(--ck-color-base-background);
61
+ --ck-color-input-border:var(--ck-color-base-border);
62
+ --ck-color-input-error-border:var(--ck-color-base-error);
63
+ --ck-color-input-text:var(--ck-color-base-text);
64
+ --ck-color-input-disabled-background:hsl(0, 0%, 95%);
65
+ --ck-color-input-disabled-border:var(--ck-color-base-border);
66
+ --ck-color-input-disabled-text:hsl(0, 0%, 46%);
67
+
68
+ --ck-color-list-background:var(--ck-color-base-background);
69
+ --ck-color-list-button-hover-background:var(--ck-color-button-default-hover-background);
70
+ --ck-color-list-button-on-background:var(--ck-color-button-on-color);
71
+ --ck-color-list-button-on-background-focus:var(--ck-color-button-on-color);
72
+ --ck-color-list-button-on-text:var(--ck-color-base-background);
73
+
74
+ --ck-color-panel-background:var(--ck-color-base-background);
75
+ --ck-color-panel-border:var(--ck-color-base-border);
76
+
77
+ --ck-color-toolbar-background:var(--ck-color-base-background);
78
+ --ck-color-toolbar-border:var(--ck-color-base-border);
79
+
80
+ --ck-color-tooltip-background:var(--ck-color-base-text);
81
+ --ck-color-tooltip-text:var(--ck-color-base-background);
82
+
83
+ --ck-color-engine-placeholder-text:hsl(0, 0%, 44%);
84
+
85
+ --ck-color-upload-bar-background:hsl(209, 92%, 70%);
86
+
87
+ --ck-color-link-default:hsl(240, 100%, 47%);
88
+ --ck-color-link-selected-background:hsla(201, 100%, 56%, 0.1);
89
+ --ck-color-link-fake-selection:hsla(201, 100%, 56%, 0.3);
90
+
91
+ --ck-color-highlight-background:hsl(60, 100%, 50%);
92
+
93
+ --ck-color-light-red:hsl(0, 100%, 90%);
94
+ }
95
+ :root{
96
+ --ck-disabled-opacity:.5;
97
+ }
98
+ :root{
99
+ --ck-focus-outer-shadow-geometry:0 0 0 3px;
100
+ --ck-focus-outer-shadow:var(--ck-focus-outer-shadow-geometry) var(--ck-color-focus-outer-shadow);
101
+ --ck-focus-disabled-outer-shadow:var(--ck-focus-outer-shadow-geometry) var(--ck-color-focus-disabled-shadow);
102
+ --ck-focus-error-outer-shadow:var(--ck-focus-outer-shadow-geometry) var(--ck-color-focus-error-shadow);
103
+ --ck-focus-ring:1px solid var(--ck-color-focus-border);
104
+ }
105
+ :root{
106
+ --ck-font-size-base:13px;
107
+ --ck-line-height-base:1.84615;
108
+ --ck-font-face:Helvetica, Arial, Tahoma, Verdana, Sans-Serif;
109
+
110
+ --ck-font-size-tiny:0.7em;
111
+ --ck-font-size-small:0.75em;
112
+ --ck-font-size-normal:1em;
113
+ --ck-font-size-big:1.4em;
114
+ --ck-font-size-large:1.8em;
115
+ }
116
+ :root{
117
+ --ck-ui-component-min-height:2.3em;
118
+ }
119
+ .ck.ck-reset,
120
+ .ck.ck-reset_all,
121
+ .ck-reset_all *:not(.ck-reset_all-excluded *){
122
+ box-sizing:border-box;
123
+ width:auto;
124
+ height:auto;
125
+ position:static;
126
+ margin:0;
127
+ padding:0;
128
+ border:0;
129
+ background:transparent;
130
+ text-decoration:none;
131
+ vertical-align:middle;
132
+ transition:none;
133
+ word-wrap:break-word;
134
+ }
135
+ .ck.ck-reset_all,
136
+ .ck-reset_all *:not(.ck-reset_all-excluded *){
137
+ border-collapse:collapse;
138
+ font:normal normal normal var(--ck-font-size-base)/var(--ck-line-height-base) var(--ck-font-face);
139
+ color:var(--ck-color-text);
140
+ text-align:left;
141
+ white-space:nowrap;
142
+ cursor:auto;
143
+ float:none;
144
+ }
145
+ .ck-reset_all .ck-rtl *:not(.ck-reset_all-excluded *){
146
+ text-align:right;
147
+ }
148
+ .ck-reset_all iframe:not(.ck-reset_all-excluded *){
149
+ vertical-align:inherit;
150
+ }
151
+ .ck-reset_all textarea:not(.ck-reset_all-excluded *){
152
+ white-space:pre-wrap;
153
+ }
154
+ .ck-reset_all textarea:not(.ck-reset_all-excluded *),
155
+ .ck-reset_all input[type="text"]:not(.ck-reset_all-excluded *),
156
+ .ck-reset_all input[type="password"]:not(.ck-reset_all-excluded *){
157
+ cursor:text;
158
+ }
159
+ .ck-reset_all textarea[disabled]:not(.ck-reset_all-excluded *),
160
+ .ck-reset_all input[type="text"][disabled]:not(.ck-reset_all-excluded *),
161
+ .ck-reset_all input[type="password"][disabled]:not(.ck-reset_all-excluded *){
162
+ cursor:default;
163
+ }
164
+ .ck-reset_all fieldset:not(.ck-reset_all-excluded *){
165
+ padding:10px;
166
+ border:2px groove hsl(255, 7%, 88%);
167
+ }
168
+ .ck-reset_all button:not(.ck-reset_all-excluded *)::-moz-focus-inner{
169
+ padding:0;
170
+ border:0
171
+ }
172
+ .ck[dir="rtl"],
173
+ .ck[dir="rtl"] .ck{
174
+ text-align:right;
175
+ }
176
+ :root{
177
+ --ck-border-radius:2px;
178
+ }
179
+ :root{
180
+ --ck-inner-shadow:2px 2px 3px var(--ck-color-shadow-inner) inset;
181
+ --ck-drop-shadow:0 1px 2px 1px var(--ck-color-shadow-drop);
182
+ --ck-drop-shadow-active:0 3px 6px 1px var(--ck-color-shadow-drop-active);
183
+ }
184
+ :root{
185
+ --ck-spacing-unit:0.6em;
186
+ --ck-spacing-large:calc(var(--ck-spacing-unit) * 1.5);
187
+ --ck-spacing-standard:var(--ck-spacing-unit);
188
+ --ck-spacing-medium:calc(var(--ck-spacing-unit) * 0.8);
189
+ --ck-spacing-small:calc(var(--ck-spacing-unit) * 0.5);
190
+ --ck-spacing-tiny:calc(var(--ck-spacing-unit) * 0.3);
191
+ --ck-spacing-extra-tiny:calc(var(--ck-spacing-unit) * 0.16);
192
+ }
193
+ .ck.ck-autocomplete > .ck-search__results{
194
+ border-radius:0;
195
+
196
+ max-height:200px;
197
+ overflow-y:auto;
198
+ background:var(--ck-color-base-background);
199
+ border:1px solid var(--ck-color-dropdown-panel-border);
200
+ min-width:auto;
201
+ }
202
+ .ck-rounded-corners .ck.ck-autocomplete > .ck-search__results,
203
+ .ck.ck-autocomplete > .ck-search__results.ck-rounded-corners{
204
+ border-radius:var(--ck-border-radius);
205
+ }
206
+ .ck.ck-autocomplete > .ck-search__results{
207
+ box-shadow:var(--ck-drop-shadow), 0 0;
208
+ }
209
+ .ck.ck-autocomplete > .ck-search__results.ck-search__results_n{
210
+ border-bottom-left-radius:0;
211
+ border-bottom-right-radius:0;
212
+ margin-bottom:-1px;
213
+ }
214
+ .ck.ck-autocomplete > .ck-search__results.ck-search__results_s{
215
+ border-top-left-radius:0;
216
+ border-top-right-radius:0;
217
+ margin-top:-1px;
218
+ }
219
+ .ck.ck-button,
220
+ a.ck.ck-button{
221
+ background:var(--ck-color-button-default-background);
222
+ border-radius:0;
223
+
224
+ white-space:nowrap;
225
+ cursor:default;
226
+ vertical-align:middle;
227
+ padding:var(--ck-spacing-tiny);
228
+ text-align:center;
229
+ min-width:var(--ck-ui-component-min-height);
230
+ min-height:var(--ck-ui-component-min-height);
231
+ line-height:1;
232
+ font-size:inherit;
233
+ border:1px solid transparent;
234
+ transition:box-shadow .2s ease-in-out, border .2s ease-in-out;
235
+ -webkit-appearance:none;
236
+ }
237
+ .ck.ck-button:not(.ck-disabled):hover, a.ck.ck-button:not(.ck-disabled):hover{
238
+ background:var(--ck-color-button-default-hover-background);
239
+ }
240
+ .ck.ck-button:not(.ck-disabled):active, a.ck.ck-button:not(.ck-disabled):active{
241
+ background:var(--ck-color-button-default-active-background);
242
+ }
243
+ .ck.ck-button.ck-disabled, a.ck.ck-button.ck-disabled{
244
+ background:var(--ck-color-button-default-disabled-background);
245
+ }
246
+ .ck-rounded-corners .ck.ck-button,
247
+ .ck-rounded-corners a.ck.ck-button,
248
+ .ck.ck-button.ck-rounded-corners,
249
+ a.ck.ck-button.ck-rounded-corners{
250
+ border-radius:var(--ck-border-radius);
251
+ }
252
+ @media (prefers-reduced-motion: reduce){
253
+ .ck.ck-button,
254
+ a.ck.ck-button{
255
+ transition:none;
256
+ }
257
+ }
258
+ .ck.ck-button:active,
259
+ a.ck.ck-button:active,
260
+ .ck.ck-button:focus,
261
+ a.ck.ck-button:focus{
262
+ outline:none;
263
+ border:var(--ck-focus-ring);
264
+ box-shadow:var(--ck-focus-outer-shadow), 0 0;
265
+ }
266
+ .ck.ck-button .ck-button__icon use,
267
+ a.ck.ck-button .ck-button__icon use,
268
+ .ck.ck-button .ck-button__icon use *,
269
+ a.ck.ck-button .ck-button__icon use *{
270
+ color:inherit;
271
+ }
272
+ .ck.ck-button .ck-button__label, a.ck.ck-button .ck-button__label{
273
+ font-size:inherit;
274
+ font-weight:inherit;
275
+ color:inherit;
276
+ cursor:inherit;
277
+ vertical-align:middle;
278
+ }
279
+ [dir="ltr"] .ck.ck-button .ck-button__label, [dir="ltr"] a.ck.ck-button .ck-button__label{
280
+ text-align:left;
281
+ }
282
+ [dir="rtl"] .ck.ck-button .ck-button__label, [dir="rtl"] a.ck.ck-button .ck-button__label{
283
+ text-align:right;
284
+ }
285
+ .ck.ck-button .ck-button__keystroke, a.ck.ck-button .ck-button__keystroke{
286
+ color:inherit;
287
+
288
+ opacity:.5;
289
+ }
290
+ [dir="ltr"] .ck.ck-button .ck-button__keystroke, [dir="ltr"] a.ck.ck-button .ck-button__keystroke{
291
+ margin-left:var(--ck-spacing-large);
292
+ }
293
+ [dir="rtl"] .ck.ck-button .ck-button__keystroke, [dir="rtl"] a.ck.ck-button .ck-button__keystroke{
294
+ margin-right:var(--ck-spacing-large);
295
+ }
296
+ .ck.ck-button.ck-disabled:active,
297
+ a.ck.ck-button.ck-disabled:active,
298
+ .ck.ck-button.ck-disabled:focus,
299
+ a.ck.ck-button.ck-disabled:focus{
300
+ box-shadow:var(--ck-focus-disabled-outer-shadow), 0 0;
301
+ }
302
+ .ck.ck-button.ck-disabled .ck-button__icon, a.ck.ck-button.ck-disabled .ck-button__icon{
303
+ opacity:var(--ck-disabled-opacity);
304
+ }
305
+ .ck.ck-button.ck-disabled .ck-button__label, a.ck.ck-button.ck-disabled .ck-button__label{
306
+ opacity:var(--ck-disabled-opacity);
307
+ }
308
+ .ck.ck-button.ck-disabled .ck-button__keystroke, a.ck.ck-button.ck-disabled .ck-button__keystroke{
309
+ opacity:.3;
310
+ }
311
+ .ck.ck-button.ck-button_with-text, a.ck.ck-button.ck-button_with-text{
312
+ padding:var(--ck-spacing-tiny) var(--ck-spacing-standard);
313
+ }
314
+ [dir="ltr"] .ck.ck-button.ck-button_with-text .ck-button__icon, [dir="ltr"] a.ck.ck-button.ck-button_with-text .ck-button__icon{
315
+ margin-right:var(--ck-spacing-medium);
316
+ }
317
+ [dir="rtl"] .ck.ck-button.ck-button_with-text .ck-button__icon, [dir="rtl"] a.ck.ck-button.ck-button_with-text .ck-button__icon{
318
+ margin-left:var(--ck-spacing-medium);
319
+ }
320
+ .ck.ck-button.ck-button_with-keystroke .ck-button__label, a.ck.ck-button.ck-button_with-keystroke .ck-button__label{
321
+ flex-grow:1;
322
+ }
323
+ .ck.ck-button.ck-on, a.ck.ck-button.ck-on{
324
+ background:var(--ck-color-button-on-background);
325
+
326
+ color:var(--ck-color-button-on-color);
327
+ }
328
+ .ck.ck-button.ck-on:not(.ck-disabled):hover, a.ck.ck-button.ck-on:not(.ck-disabled):hover{
329
+ background:var(--ck-color-button-on-hover-background);
330
+ }
331
+ .ck.ck-button.ck-on:not(.ck-disabled):active, a.ck.ck-button.ck-on:not(.ck-disabled):active{
332
+ background:var(--ck-color-button-on-active-background);
333
+ }
334
+ .ck.ck-button.ck-on.ck-disabled, a.ck.ck-button.ck-on.ck-disabled{
335
+ background:var(--ck-color-button-on-disabled-background);
336
+ }
337
+ .ck.ck-button.ck-button-save, a.ck.ck-button.ck-button-save{
338
+ color:var(--ck-color-button-save);
339
+ }
340
+ .ck.ck-button.ck-button-cancel, a.ck.ck-button.ck-button-cancel{
341
+ color:var(--ck-color-button-cancel);
342
+ }
343
+ .ck.ck-button-action,
344
+ a.ck.ck-button-action{
345
+ background:var(--ck-color-button-action-background);
346
+
347
+ color:var(--ck-color-button-action-text);
348
+ }
349
+ .ck.ck-button-action:not(.ck-disabled):hover, a.ck.ck-button-action:not(.ck-disabled):hover{
350
+ background:var(--ck-color-button-action-hover-background);
351
+ }
352
+ .ck.ck-button-action:not(.ck-disabled):active, a.ck.ck-button-action:not(.ck-disabled):active{
353
+ background:var(--ck-color-button-action-active-background);
354
+ }
355
+ .ck.ck-button-action.ck-disabled, a.ck.ck-button-action.ck-disabled{
356
+ background:var(--ck-color-button-action-disabled-background);
357
+ }
358
+ .ck.ck-button-bold,
359
+ a.ck.ck-button-bold{
360
+ font-weight:bold;
361
+ }
362
+ :root{
363
+ --ck-switch-button-toggle-width:2.6153846154em;
364
+ --ck-switch-button-toggle-inner-size:calc(1.0769230769em + 1px);
365
+ --ck-switch-button-translation:calc(
366
+ var(--ck-switch-button-toggle-width) -
367
+ var(--ck-switch-button-toggle-inner-size) -
368
+ 2px );
369
+ --ck-switch-button-inner-hover-shadow:0 0 0 5px var(--ck-color-switch-button-inner-shadow);
370
+ }
371
+ .ck.ck-button.ck-switchbutton, .ck.ck-button.ck-switchbutton:hover, .ck.ck-button.ck-switchbutton:focus, .ck.ck-button.ck-switchbutton:active, .ck.ck-button.ck-switchbutton.ck-on:hover, .ck.ck-button.ck-switchbutton.ck-on:focus, .ck.ck-button.ck-switchbutton.ck-on:active{
372
+ color:inherit;
373
+ background:transparent;
374
+ }
375
+ [dir="ltr"] .ck.ck-button.ck-switchbutton .ck-button__label{
376
+ margin-right:calc(2 * var(--ck-spacing-large));
377
+ }
378
+ [dir="rtl"] .ck.ck-button.ck-switchbutton .ck-button__label{
379
+ margin-left:calc(2 * var(--ck-spacing-large));
380
+ }
381
+ .ck.ck-button.ck-switchbutton .ck-button__toggle{
382
+ border-radius:0;
383
+ transition:background 400ms ease, box-shadow .2s ease-in-out, outline .2s ease-in-out;
384
+ border:1px solid transparent;
385
+ width:var(--ck-switch-button-toggle-width);
386
+ background:var(--ck-color-switch-button-off-background);
387
+ }
388
+ .ck-rounded-corners .ck.ck-button.ck-switchbutton .ck-button__toggle,
389
+ .ck.ck-button.ck-switchbutton .ck-button__toggle.ck-rounded-corners{
390
+ border-radius:var(--ck-border-radius);
391
+ }
392
+ [dir="ltr"] .ck.ck-button.ck-switchbutton .ck-button__toggle{
393
+ margin-left:auto;
394
+ }
395
+ [dir="rtl"] .ck.ck-button.ck-switchbutton .ck-button__toggle{
396
+ margin-right:auto;
397
+ }
398
+ .ck.ck-button.ck-switchbutton .ck-button__toggle .ck-button__toggle__inner{
399
+ border-radius:0;
400
+
401
+ width:var(--ck-switch-button-toggle-inner-size);
402
+ height:var(--ck-switch-button-toggle-inner-size);
403
+ background:var(--ck-color-switch-button-inner-background);
404
+ transition:all 300ms ease;
405
+ }
406
+ .ck-rounded-corners .ck.ck-button.ck-switchbutton .ck-button__toggle .ck-button__toggle__inner,
407
+ .ck.ck-button.ck-switchbutton .ck-button__toggle .ck-button__toggle__inner.ck-rounded-corners{
408
+ border-radius:var(--ck-border-radius);
409
+ border-radius:calc(.5 * var(--ck-border-radius));
410
+ }
411
+ @media (prefers-reduced-motion: reduce){
412
+ .ck.ck-button.ck-switchbutton .ck-button__toggle .ck-button__toggle__inner{
413
+ transition:none;
414
+ }
415
+ }
416
+ .ck.ck-button.ck-switchbutton .ck-button__toggle:hover{
417
+ background:var(--ck-color-switch-button-off-hover-background);
418
+ }
419
+ .ck.ck-button.ck-switchbutton .ck-button__toggle:hover .ck-button__toggle__inner{
420
+ box-shadow:var(--ck-switch-button-inner-hover-shadow);
421
+ }
422
+ .ck.ck-button.ck-switchbutton.ck-disabled .ck-button__toggle{
423
+ opacity:var(--ck-disabled-opacity);
424
+ }
425
+ .ck.ck-button.ck-switchbutton:focus{
426
+ border-color:transparent;
427
+ outline:none;
428
+ box-shadow:none;
429
+ }
430
+ .ck.ck-button.ck-switchbutton:focus .ck-button__toggle{
431
+ box-shadow:0 0 0 1px var(--ck-color-base-background), 0 0 0 5px var(--ck-color-focus-outer-shadow);
432
+ outline-offset:1px;
433
+ outline:var(--ck-focus-ring);
434
+ }
435
+ .ck.ck-button.ck-switchbutton.ck-on .ck-button__toggle{
436
+ background:var(--ck-color-switch-button-on-background);
437
+ }
438
+ .ck.ck-button.ck-switchbutton.ck-on .ck-button__toggle:hover{
439
+ background:var(--ck-color-switch-button-on-hover-background);
440
+ }
441
+ [dir="ltr"] .ck.ck-button.ck-switchbutton.ck-on .ck-button__toggle .ck-button__toggle__inner{
442
+ transform:translateX( var(--ck-switch-button-translation));
443
+ }
444
+ [dir="rtl"] .ck.ck-button.ck-switchbutton.ck-on .ck-button__toggle .ck-button__toggle__inner{
445
+ transform:translateX( calc( -1 * var(--ck-switch-button-translation)));
446
+ }
447
+ .ck.ck-button.ck-list-item-button{
448
+ padding:var(--ck-spacing-tiny) calc(2 * var(--ck-spacing-standard));
449
+ }
450
+ .ck.ck-button.ck-list-item-button,
451
+ .ck.ck-button.ck-list-item-button.ck-on{
452
+ background:var(--ck-color-list-background);
453
+ color:var(--ck-color-text);
454
+ }
455
+ [dir="ltr"] .ck.ck-button.ck-list-item-button:has(.ck-list-item-button__check-holder){
456
+ padding-left:var(--ck-spacing-small);
457
+ }
458
+ [dir="rtl"] .ck.ck-button.ck-list-item-button:has(.ck-list-item-button__check-holder){
459
+ padding-right:var(--ck-spacing-small);
460
+ }
461
+ .ck.ck-button.ck-list-item-button:hover:not(.ck-disabled),
462
+ .ck.ck-button.ck-list-item-button.ck-button.ck-on:hover,
463
+ .ck.ck-button.ck-list-item-button.ck-on:not(.ck-list-item-button_toggleable),
464
+ .ck.ck-button.ck-list-item-button.ck-on:hover{
465
+ background:var(--ck-color-list-button-hover-background);
466
+ }
467
+ .ck.ck-button.ck-list-item-button:hover:not(.ck-disabled):not(.ck-disabled), .ck.ck-button.ck-list-item-button.ck-button.ck-on:hover:not(.ck-disabled), .ck.ck-button.ck-list-item-button.ck-on:not(.ck-list-item-button_toggleable):not(.ck-disabled), .ck.ck-button.ck-list-item-button.ck-on:hover:not(.ck-disabled){
468
+ color:var(--ck-color-text);
469
+ }
470
+ :root{
471
+ --ck-collapsible-arrow-size:calc(0.5 * var(--ck-icon-size));
472
+ }
473
+ .ck.ck-collapsible > .ck.ck-button{
474
+ width:100%;
475
+ font-weight:bold;
476
+ border-radius:0;
477
+ color:inherit;
478
+ }
479
+ .ck.ck-collapsible > .ck.ck-button:focus{
480
+ background:transparent;
481
+ }
482
+ .ck.ck-collapsible > .ck.ck-button:active, .ck.ck-collapsible > .ck.ck-button:not(:focus), .ck.ck-collapsible > .ck.ck-button:hover:not(:focus){
483
+ background:transparent;
484
+ border-color:transparent;
485
+ box-shadow:none;
486
+ }
487
+ .ck.ck-collapsible > .ck.ck-button > .ck-icon{
488
+ margin-right:var(--ck-spacing-medium);
489
+ width:var(--ck-collapsible-arrow-size);
490
+ }
491
+ .ck.ck-collapsible > .ck-collapsible__children{
492
+ padding:var(--ck-spacing-medium) var(--ck-spacing-large) var(--ck-spacing-large);
493
+ }
494
+ .ck.ck-collapsible.ck-collapsible_collapsed > .ck.ck-button .ck-icon{
495
+ transform:rotate(-90deg);
496
+ }
497
+ :root{
498
+ --ck-color-grid-tile-size:24px;
499
+ --ck-color-color-grid-check-icon:hsl(212, 81%, 46%);
500
+ }
501
+ .ck.ck-color-grid{
502
+ grid-gap:5px;
503
+ padding:8px;
504
+ }
505
+ .ck.ck-color-grid__tile{
506
+ transition:.2s ease box-shadow;
507
+ }
508
+ @media (forced-colors: none){
509
+ .ck.ck-color-grid__tile{
510
+ width:var(--ck-color-grid-tile-size);
511
+ height:var(--ck-color-grid-tile-size);
512
+ min-width:var(--ck-color-grid-tile-size);
513
+ min-height:var(--ck-color-grid-tile-size);
514
+ padding:0;
515
+ border:0;
516
+ }
517
+
518
+ .ck.ck-color-grid__tile.ck-on,
519
+ .ck.ck-color-grid__tile:focus:not( .ck-disabled),
520
+ .ck.ck-color-grid__tile:hover:not( .ck-disabled){
521
+ border:0;
522
+ }
523
+
524
+ .ck.ck-color-grid__tile.ck-color-selector__color-tile_bordered{
525
+ box-shadow:0 0 0 1px var(--ck-color-base-border);
526
+ }
527
+
528
+ .ck.ck-color-grid__tile.ck-on{
529
+ box-shadow:inset 0 0 0 1px var(--ck-color-base-background), 0 0 0 2px var(--ck-color-base-text);
530
+ }
531
+
532
+ .ck.ck-color-grid__tile:focus:not( .ck-disabled),
533
+ .ck.ck-color-grid__tile:hover:not( .ck-disabled){
534
+ box-shadow:inset 0 0 0 1px var(--ck-color-base-background), 0 0 0 2px var(--ck-color-focus-border);
535
+ }
536
+ }
537
+ @media (forced-colors: active){
538
+ .ck.ck-color-grid__tile{
539
+ width:unset;
540
+ height:unset;
541
+ min-width:unset;
542
+ min-height:unset;
543
+ padding:0 var(--ck-spacing-small);
544
+ }
545
+
546
+ .ck.ck-color-grid__tile .ck-button__label{
547
+ display:inline-block;
548
+ }
549
+ }
550
+ @media (prefers-reduced-motion: reduce){
551
+ .ck.ck-color-grid__tile{
552
+ transition:none;
553
+ }
554
+ }
555
+ .ck.ck-color-grid__tile.ck-disabled{
556
+ cursor:unset;
557
+ transition:unset;
558
+ }
559
+ .ck.ck-color-grid__tile .ck.ck-icon{
560
+ display:none;
561
+ color:var(--ck-color-color-grid-check-icon);
562
+ }
563
+ .ck.ck-color-grid__tile.ck-on .ck.ck-icon{
564
+ display:block;
565
+ }
566
+ .ck.ck-color-grid__label{
567
+ padding:0 var(--ck-spacing-standard);
568
+ }
569
+ .ck.ck-color-selector .ck-color-grids-fragment .ck-button.ck-color-selector__remove-color,
570
+ .ck.ck-color-selector .ck-color-grids-fragment .ck-button.ck-color-selector__color-picker{
571
+ width:100%;
572
+ }
573
+ .ck.ck-color-selector .ck-color-grids-fragment .ck-button.ck-color-selector__color-picker{
574
+ padding:calc(var(--ck-spacing-standard) / 2) var(--ck-spacing-standard);
575
+ border-bottom-left-radius:0;
576
+ border-bottom-right-radius:0;
577
+ }
578
+ .ck.ck-color-selector .ck-color-grids-fragment .ck-button.ck-color-selector__color-picker:not(:focus){
579
+ border-top:1px solid var(--ck-color-base-border);
580
+ }
581
+ [dir="ltr"] .ck.ck-color-selector .ck-color-grids-fragment .ck-button.ck-color-selector__color-picker .ck.ck-icon{
582
+ margin-right:var(--ck-spacing-standard);
583
+ }
584
+ [dir="rtl"] .ck.ck-color-selector .ck-color-grids-fragment .ck-button.ck-color-selector__color-picker .ck.ck-icon{
585
+ margin-left:var(--ck-spacing-standard);
586
+ }
587
+ .ck.ck-color-selector .ck-color-grids-fragment label.ck.ck-color-grid__label{
588
+ font-weight:unset;
589
+ }
590
+ .ck.ck-color-selector .ck-color-picker-fragment .ck.ck-color-picker{
591
+ padding:8px;
592
+ }
593
+ .ck.ck-color-selector .ck-color-picker-fragment .ck.ck-color-picker .hex-color-picker{
594
+ height:100px;
595
+ min-width:180px;
596
+ }
597
+ .ck.ck-color-selector .ck-color-picker-fragment .ck.ck-color-picker .hex-color-picker::part(saturation){
598
+ border-radius:var(--ck-border-radius) var(--ck-border-radius) 0 0;
599
+ }
600
+ .ck.ck-color-selector .ck-color-picker-fragment .ck.ck-color-picker .hex-color-picker::part(hue){
601
+ border-radius:0 0 var(--ck-border-radius) var(--ck-border-radius);
602
+ }
603
+ .ck.ck-color-selector .ck-color-picker-fragment .ck.ck-color-picker .hex-color-picker::part(saturation-pointer),
604
+ .ck.ck-color-selector .ck-color-picker-fragment .ck.ck-color-picker .hex-color-picker::part(hue-pointer){
605
+ width:15px;
606
+ height:15px;
607
+ }
608
+ .ck.ck-color-selector .ck-color-picker-fragment .ck.ck-color-selector_action-bar{
609
+ padding:0 8px 8px;
610
+ }
611
+ :root{
612
+ --ck-dialog-overlay-background-color:hsla( 0, 0%, 0%, .5);
613
+ --ck-dialog-drop-shadow:0px 0px 6px 2px hsl(0deg 0% 0% / 15%);
614
+ --ck-dialog-max-width:100vw;
615
+ --ck-dialog-max-height:90vh;
616
+ --ck-color-dialog-background:var(--ck-color-base-background);
617
+ --ck-color-dialog-form-header-border:var(--ck-color-base-border);
618
+ }
619
+ .ck.ck-dialog-overlay{
620
+ animation:ck-dialog-fade-in .3s;
621
+ background:var(--ck-dialog-overlay-background-color);
622
+ z-index:var(--ck-z-dialog);
623
+ }
624
+ .ck.ck-dialog{
625
+ border-radius:0;
626
+
627
+ --ck-drop-shadow:var(--ck-dialog-drop-shadow);
628
+
629
+ background:var(--ck-color-dialog-background);
630
+ max-height:var(--ck-dialog-max-height);
631
+ max-width:var(--ck-dialog-max-width);
632
+ border:1px solid var(--ck-color-base-border);
633
+ }
634
+ .ck-rounded-corners .ck.ck-dialog,
635
+ .ck.ck-dialog.ck-rounded-corners{
636
+ border-radius:var(--ck-border-radius);
637
+ }
638
+ .ck.ck-dialog{
639
+ box-shadow:var(--ck-drop-shadow), 0 0;
640
+ }
641
+ .ck.ck-dialog .ck.ck-form__header{
642
+ border-bottom:1px solid var(--ck-color-dialog-form-header-border);
643
+ }
644
+ @keyframes ck-dialog-fade-in{
645
+ 0%{
646
+ background:hsla( 0, 0%, 0%, 0);
647
+ }
648
+
649
+ 100%{
650
+ background:var(--ck-dialog-overlay-background-color);
651
+ }
652
+ }
653
+ .ck.ck-dialog .ck.ck-dialog__actions{
654
+ padding:var(--ck-spacing-large);
655
+ }
656
+ .ck.ck-dialog .ck.ck-dialog__actions > * + *{
657
+ margin-left:var(--ck-spacing-large);
658
+ }
659
+ :root{
660
+ --ck-dropdown-arrow-size:calc(0.5 * var(--ck-icon-size));
661
+ }
662
+ .ck.ck-dropdown{
663
+ font-size:inherit;
664
+ }
665
+ .ck.ck-dropdown .ck-dropdown__arrow{
666
+ width:var(--ck-dropdown-arrow-size);
667
+ }
668
+ [dir="ltr"] .ck.ck-dropdown .ck-dropdown__arrow{
669
+ right:var(--ck-spacing-standard);
670
+ margin-left:var(--ck-spacing-standard);
671
+ }
672
+ [dir="rtl"] .ck.ck-dropdown .ck-dropdown__arrow{
673
+ left:var(--ck-spacing-standard);
674
+ margin-right:var(--ck-spacing-small);
675
+ }
676
+ .ck.ck-dropdown.ck-disabled .ck-dropdown__arrow{
677
+ opacity:var(--ck-disabled-opacity);
678
+ }
679
+ [dir="ltr"] .ck.ck-dropdown .ck-button.ck-dropdown__button:not(.ck-button_with-text){
680
+ padding-left:var(--ck-spacing-small);
681
+ }
682
+ [dir="rtl"] .ck.ck-dropdown .ck-button.ck-dropdown__button:not(.ck-button_with-text){
683
+ padding-right:var(--ck-spacing-small);
684
+ }
685
+ .ck.ck-dropdown .ck-button.ck-dropdown__button .ck-button__label{
686
+ width:7em;
687
+ overflow:hidden;
688
+ text-overflow:ellipsis;
689
+ }
690
+ .ck.ck-dropdown .ck-button.ck-dropdown__button.ck-disabled .ck-button__label{
691
+ opacity:var(--ck-disabled-opacity);
692
+ }
693
+ .ck.ck-dropdown .ck-button.ck-dropdown__button.ck-on{
694
+ border-bottom-left-radius:0;
695
+ border-bottom-right-radius:0;
696
+ }
697
+ .ck.ck-dropdown .ck-button.ck-dropdown__button.ck-dropdown__button_label-width_auto .ck-button__label{
698
+ width:auto;
699
+ }
700
+ .ck.ck-dropdown .ck-button.ck-dropdown__button.ck-off:active,
701
+ .ck.ck-dropdown .ck-button.ck-dropdown__button.ck-on:active{
702
+ box-shadow:none;
703
+ }
704
+ .ck.ck-dropdown .ck-button.ck-dropdown__button.ck-off:active:focus, .ck.ck-dropdown .ck-button.ck-dropdown__button.ck-on:active:focus{
705
+ box-shadow:var(--ck-focus-outer-shadow), 0 0;
706
+ }
707
+ .ck.ck-dropdown__panel{
708
+ border-radius:0;
709
+
710
+ background:var(--ck-color-dropdown-panel-background);
711
+ border:1px solid var(--ck-color-dropdown-panel-border);
712
+ bottom:0;
713
+ min-width:100%;
714
+ }
715
+ .ck-rounded-corners .ck.ck-dropdown__panel,
716
+ .ck.ck-dropdown__panel.ck-rounded-corners{
717
+ border-radius:var(--ck-border-radius);
718
+ }
719
+ .ck.ck-dropdown__panel{
720
+ box-shadow:var(--ck-drop-shadow), 0 0;
721
+ }
722
+ .ck.ck-dropdown__panel.ck-dropdown__panel_se{
723
+ border-top-left-radius:0;
724
+ }
725
+ .ck.ck-dropdown__panel.ck-dropdown__panel_sw{
726
+ border-top-right-radius:0;
727
+ }
728
+ .ck.ck-dropdown__panel.ck-dropdown__panel_ne{
729
+ border-bottom-left-radius:0;
730
+ }
731
+ .ck.ck-dropdown__panel.ck-dropdown__panel_nw{
732
+ border-bottom-right-radius:0;
733
+ }
734
+ .ck.ck-dropdown__panel:focus{
735
+ outline:none;
736
+ }
737
+ .ck.ck-dropdown > .ck-dropdown__panel > .ck-list{
738
+ border-radius:0;
739
+ }
740
+ .ck-rounded-corners .ck.ck-dropdown > .ck-dropdown__panel > .ck-list,
741
+ .ck.ck-dropdown > .ck-dropdown__panel > .ck-list.ck-rounded-corners{
742
+ border-radius:var(--ck-border-radius);
743
+ border-top-left-radius:0;
744
+ }
745
+ .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:first-child > .ck-button{
746
+ border-radius:0;
747
+ }
748
+ .ck-rounded-corners .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:first-child > .ck-button,
749
+ .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:first-child > .ck-button.ck-rounded-corners{
750
+ border-radius:var(--ck-border-radius);
751
+ border-top-left-radius:0;
752
+ border-bottom-left-radius:0;
753
+ border-bottom-right-radius:0;
754
+ }
755
+ .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:last-child > .ck-button{
756
+ border-radius:0;
757
+ }
758
+ .ck-rounded-corners .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:last-child > .ck-button,
759
+ .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:last-child > .ck-button.ck-rounded-corners{
760
+ border-radius:var(--ck-border-radius);
761
+ border-top-left-radius:0;
762
+ border-top-right-radius:0;
763
+ }
764
+ :root{
765
+ --ck-color-split-button-hover-background:hsl(0, 0%, 92%);
766
+ --ck-color-split-button-hover-border:hsl(0, 0%, 70%);
767
+ }
768
+ [dir="ltr"] .ck.ck-splitbutton:hover > .ck-splitbutton__action, [dir="ltr"] .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__action{
769
+ border-top-right-radius:unset;
770
+ border-bottom-right-radius:unset;
771
+ }
772
+ [dir="rtl"] .ck.ck-splitbutton:hover > .ck-splitbutton__action, [dir="rtl"] .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__action{
773
+ border-top-left-radius:unset;
774
+ border-bottom-left-radius:unset;
775
+ }
776
+ .ck.ck-splitbutton > .ck-splitbutton__arrow{
777
+ min-width:unset;
778
+ }
779
+ [dir="ltr"] .ck.ck-splitbutton > .ck-splitbutton__arrow{
780
+ border-top-left-radius:unset;
781
+ border-bottom-left-radius:unset;
782
+ }
783
+ [dir="rtl"] .ck.ck-splitbutton > .ck-splitbutton__arrow{
784
+ border-top-right-radius:unset;
785
+ border-bottom-right-radius:unset;
786
+ }
787
+ .ck.ck-splitbutton > .ck-splitbutton__arrow svg{
788
+ width:var(--ck-dropdown-arrow-size);
789
+ }
790
+ .ck.ck-splitbutton > .ck-splitbutton__arrow:not(:focus){
791
+ border-top-width:0px;
792
+ border-bottom-width:0px;
793
+ }
794
+ .ck.ck-splitbutton.ck-splitbutton_open{
795
+ border-radius:0;
796
+ }
797
+ .ck-rounded-corners .ck.ck-splitbutton.ck-splitbutton_open,
798
+ .ck.ck-splitbutton.ck-splitbutton_open.ck-rounded-corners{
799
+ border-radius:var(--ck-border-radius);
800
+ }
801
+ .ck-rounded-corners .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__action, .ck.ck-splitbutton.ck-splitbutton_open.ck-rounded-corners > .ck-splitbutton__action{
802
+ border-bottom-left-radius:0;
803
+ }
804
+ .ck-rounded-corners .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__arrow, .ck.ck-splitbutton.ck-splitbutton_open.ck-rounded-corners > .ck-splitbutton__arrow{
805
+ border-bottom-right-radius:0;
806
+ }
807
+ .ck.ck-splitbutton.ck-splitbutton_open > .ck-button:not(.ck-on):not(.ck-disabled):not(:hover), .ck.ck-splitbutton:hover > .ck-button:not(.ck-on):not(.ck-disabled):not(:hover){
808
+ background:var(--ck-color-split-button-hover-background);
809
+ }
810
+ .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__arrow:not(.ck-disabled)::after, .ck.ck-splitbutton:hover > .ck-splitbutton__arrow:not(.ck-disabled)::after{
811
+ content:'';
812
+ position:absolute;
813
+ width:1px;
814
+ height:100%;
815
+ background-color:var(--ck-color-split-button-hover-border);
816
+ }
817
+ .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__arrow:focus::after, .ck.ck-splitbutton:hover > .ck-splitbutton__arrow:focus::after{
818
+ --ck-color-split-button-hover-border:var(--ck-color-focus-border);
819
+ }
820
+ [dir="ltr"] .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__arrow:not(.ck-disabled)::after, [dir="ltr"] .ck.ck-splitbutton:hover > .ck-splitbutton__arrow:not(.ck-disabled)::after{
821
+ left:-1px;
822
+ }
823
+ [dir="rtl"] .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__arrow:not(.ck-disabled)::after, [dir="rtl"] .ck.ck-splitbutton:hover > .ck-splitbutton__arrow:not(.ck-disabled)::after{
824
+ right:-1px;
825
+ }
826
+ .ck.ck-toolbar-dropdown .ck-toolbar{
827
+ border:0;
828
+ }
829
+ .ck.ck-button.ck-dropdown-menu-list__nested-menu__button{
830
+ width:100%;
831
+ padding:var(--ck-spacing-tiny) calc(2 * var(--ck-spacing-standard));
832
+ border-radius:0;
833
+ }
834
+ .ck.ck-button.ck-dropdown-menu-list__nested-menu__button:focus{
835
+ border-color:transparent;
836
+ box-shadow:none;
837
+ }
838
+ .ck.ck-button.ck-dropdown-menu-list__nested-menu__button:focus:not(.ck-on){
839
+ background:var(--ck-color-button-default-hover-background);
840
+ }
841
+ .ck.ck-button.ck-dropdown-menu-list__nested-menu__button > .ck-button__label{
842
+ flex-grow:1;
843
+ overflow:hidden;
844
+ text-overflow:ellipsis;
845
+ }
846
+ .ck.ck-button.ck-dropdown-menu-list__nested-menu__button.ck-disabled > .ck-button__label{
847
+ opacity:var(--ck-disabled-opacity);
848
+ }
849
+ .ck.ck-button.ck-dropdown-menu-list__nested-menu__button.ck-icon-spacing:not(:has(.ck-button__icon)) > .ck-button__label{
850
+ margin-left:calc(var(--ck-icon-size) - var(--ck-spacing-small));
851
+ }
852
+ .ck.ck-button.ck-dropdown-menu-list__nested-menu__button > .ck-dropdown-menu-list__nested-menu__button__arrow{
853
+ width:var(--ck-dropdown-arrow-size);
854
+ }
855
+ [dir="ltr"] .ck.ck-button.ck-dropdown-menu-list__nested-menu__button > .ck-dropdown-menu-list__nested-menu__button__arrow{
856
+ transform:rotate(-90deg);
857
+ margin-right:calc(-1 * var(--ck-spacing-small));
858
+ }
859
+ [dir="rtl"] .ck.ck-button.ck-dropdown-menu-list__nested-menu__button > .ck-dropdown-menu-list__nested-menu__button__arrow{
860
+ transform:rotate(90deg);
861
+ margin-left:calc(-1 * var(--ck-spacing-small));
862
+ }
863
+ .ck.ck-button.ck-dropdown-menu-list__nested-menu__button.ck-disabled > .ck-dropdown-menu-list__nested-menu__button__arrow{
864
+ opacity:var(--ck-disabled-opacity);
865
+ }
866
+ [dir="ltr"] .ck.ck-button.ck-dropdown-menu-list__nested-menu__button:not(.ck-button_with-text){
867
+ padding-left:var(--ck-spacing-small);
868
+ }
869
+ [dir="ltr"] .ck.ck-button.ck-dropdown-menu-list__nested-menu__button > .ck-dropdown-menu-list__nested-menu__button__arrow{
870
+ right:var(--ck-spacing-standard);
871
+ margin-left:var(--ck-spacing-standard);
872
+ }
873
+ [dir="rtl"] .ck.ck-button.ck-dropdown-menu-list__nested-menu__button:not(.ck-button_with-text){
874
+ padding-right:var(--ck-spacing-small);
875
+ }
876
+ [dir="rtl"] .ck.ck-button.ck-dropdown-menu-list__nested-menu__button > .ck-dropdown-menu-list__nested-menu__button__arrow{
877
+ left:var(--ck-spacing-standard);
878
+ margin-right:var(--ck-spacing-small);
879
+ }
880
+ :root{
881
+ --ck-dropdown-menu-menu-item-min-width:18em;
882
+ }
883
+ .ck.ck-dropdown-menu-list__nested-menu__item{
884
+ min-width:var(--ck-dropdown-menu-menu-item-min-width);
885
+ }
886
+ .ck-button.ck-dropdown-menu-list__nested-menu__item__button{
887
+ border-radius:0;
888
+ }
889
+ .ck-button.ck-dropdown-menu-list__nested-menu__item__button > .ck-spinner-container,
890
+ .ck-button.ck-dropdown-menu-list__nested-menu__item__button > .ck-spinner-container .ck-spinner{
891
+ --ck-toolbar-spinner-size:20px;
892
+ }
893
+ .ck-button.ck-dropdown-menu-list__nested-menu__item__button > .ck-spinner-container{
894
+ margin-left:calc(-1 * var(--ck-spacing-small));
895
+ margin-right:var(--ck-spacing-small);
896
+ }
897
+ .ck-button.ck-dropdown-menu-list__nested-menu__item__button:focus{
898
+ border-color:transparent;
899
+ box-shadow:none;
900
+ }
901
+ .ck-button.ck-dropdown-menu-list__nested-menu__item__button:focus:not(.ck-on){
902
+ background:var(--ck-color-button-default-hover-background);
903
+ }
904
+ :root{
905
+ --ck-dropdown-menu-menu-panel-max-width:75vw;
906
+ }
907
+ .ck.ck-balloon-panel.ck-dropdown-menu__nested-menu__panel{
908
+ box-shadow:var(--ck-drop-shadow), 0 0;
909
+
910
+ background:var(--ck-color-dropdown-panel-background);
911
+ border:1px solid var(--ck-color-dropdown-panel-border);
912
+ bottom:0;
913
+ height:fit-content;
914
+ max-width:var(--ck-dropdown-menu-menu-panel-max-width);
915
+ }
916
+ .ck.ck-balloon-panel.ck-dropdown-menu__nested-menu__panel::after,
917
+ .ck.ck-balloon-panel.ck-dropdown-menu__nested-menu__panel::before{
918
+ display:none;
919
+ }
920
+ .ck.ck-balloon-panel.ck-dropdown-menu__nested-menu__panel.ck-balloon-panel_es,
921
+ .ck.ck-balloon-panel.ck-dropdown-menu__nested-menu__panel.ck-balloon-panel_se{
922
+ border-top-left-radius:0;
923
+ }
924
+ .ck.ck-balloon-panel.ck-dropdown-menu__nested-menu__panel.ck-balloon-panel_ws,
925
+ .ck.ck-balloon-panel.ck-dropdown-menu__nested-menu__panel.ck-balloon-panel_sw{
926
+ border-top-right-radius:0;
927
+ }
928
+ .ck.ck-balloon-panel.ck-dropdown-menu__nested-menu__panel.ck-balloon-panel_en,
929
+ .ck.ck-balloon-panel.ck-dropdown-menu__nested-menu__panel.ck-balloon-panel_ne{
930
+ border-bottom-left-radius:0;
931
+ }
932
+ .ck.ck-balloon-panel.ck-dropdown-menu__nested-menu__panel.ck-balloon-panel_wn,
933
+ .ck.ck-balloon-panel.ck-dropdown-menu__nested-menu__panel.ck-balloon-panel_nw{
934
+ border-bottom-right-radius:0;
935
+ }
936
+ .ck.ck-balloon-panel.ck-dropdown-menu__nested-menu__panel:focus{
937
+ outline:none;
938
+ }
939
+ :root{
940
+ --ck-accessibility-help-dialog-max-width:600px;
941
+ --ck-accessibility-help-dialog-max-height:400px;
942
+ --ck-accessibility-help-dialog-border-color:hsl(220, 6%, 81%);
943
+ --ck-accessibility-help-dialog-code-background-color:hsl(0deg 0% 92.94%);
944
+ --ck-accessibility-help-dialog-kbd-shadow-color:hsl(0deg 0% 61%);
945
+ }
946
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content{
947
+ padding:var(--ck-spacing-large);
948
+ max-width:var(--ck-accessibility-help-dialog-max-width);
949
+ max-height:var(--ck-accessibility-help-dialog-max-height);
950
+ overflow:auto;
951
+ user-select:text;
952
+
953
+ border:1px solid transparent;
954
+ }
955
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content:focus{
956
+ outline:none;
957
+ border:var(--ck-focus-ring);
958
+ box-shadow:var(--ck-focus-outer-shadow), 0 0;
959
+ }
960
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content *{
961
+ white-space:normal;
962
+ }
963
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content .ck-label{
964
+ display:none;
965
+ }
966
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content h3{
967
+ font-weight:bold;
968
+ font-size:1.2em;
969
+ }
970
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content h4{
971
+ font-weight:bold;
972
+ font-size:1em;
973
+ }
974
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content p,
975
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content h3,
976
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content h4,
977
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content table{
978
+ margin:1em 0;
979
+ }
980
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content dl{
981
+ display:grid;
982
+ grid-template-columns:2fr 1fr;
983
+ border-top:1px solid var(--ck-accessibility-help-dialog-border-color);
984
+ border-bottom:none;
985
+ }
986
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content dl dt, .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content dl dd{
987
+ border-bottom:1px solid var(--ck-accessibility-help-dialog-border-color);
988
+ padding:.4em 0;
989
+ }
990
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content dl dt{
991
+ grid-column-start:1;
992
+ }
993
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content dl dd{
994
+ grid-column-start:2;
995
+ text-align:right;
996
+ }
997
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content kbd, .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content code{
998
+ display:inline-block;
999
+ background:var(--ck-accessibility-help-dialog-code-background-color);
1000
+ padding:.4em;
1001
+ vertical-align:middle;
1002
+ line-height:1;
1003
+ border-radius:2px;
1004
+ text-align:center;
1005
+ font-size:.9em;
1006
+ }
1007
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content code{
1008
+ font-family:monospace;
1009
+ }
1010
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content kbd{
1011
+ min-width:1.8em;
1012
+ box-shadow:0px 1px 1px var(--ck-accessibility-help-dialog-kbd-shadow-color);
1013
+ margin:0 1px;
1014
+ }
1015
+ .ck.ck-accessibility-help-dialog .ck-accessibility-help-dialog__content kbd + kbd{
1016
+ margin-left:2px;
1017
+ }
1018
+ :root{
1019
+ --ck-color-editable-blur-selection:hsl(0, 0%, 85%);
1020
+ }
1021
+ .ck.ck-editor__editable:not(.ck-editor__nested-editable){
1022
+ border-radius:0;
1023
+ }
1024
+ .ck-rounded-corners .ck.ck-editor__editable:not(.ck-editor__nested-editable),
1025
+ .ck.ck-editor__editable.ck-rounded-corners:not(.ck-editor__nested-editable){
1026
+ border-radius:var(--ck-border-radius);
1027
+ }
1028
+ .ck.ck-editor__editable.ck-focused:not(.ck-editor__nested-editable){
1029
+ outline:none;
1030
+ border:var(--ck-focus-ring);
1031
+ box-shadow:var(--ck-inner-shadow), 0 0;
1032
+ }
1033
+ .ck.ck-editor__editable_inline{
1034
+ overflow:auto;
1035
+ padding:0 var(--ck-spacing-standard);
1036
+ border:1px solid transparent;
1037
+ }
1038
+ .ck.ck-editor__editable_inline[dir="ltr"]{
1039
+ text-align:left;
1040
+ }
1041
+ .ck.ck-editor__editable_inline[dir="rtl"]{
1042
+ text-align:right;
1043
+ }
1044
+ .ck.ck-editor__editable_inline > *:first-child{
1045
+ margin-top:var(--ck-spacing-large);
1046
+ }
1047
+ .ck.ck-editor__editable_inline > *:last-child{
1048
+ margin-bottom:var(--ck-spacing-large);
1049
+ }
1050
+ .ck.ck-editor__editable_inline.ck-blurred ::selection{
1051
+ background:var(--ck-color-editable-blur-selection);
1052
+ }
1053
+ .ck.ck-balloon-panel.ck-toolbar-container[class*="arrow_n"]::after{
1054
+ border-bottom-color:var(--ck-color-panel-background);
1055
+ }
1056
+ .ck.ck-balloon-panel.ck-toolbar-container[class*="arrow_s"]::after{
1057
+ border-top-color:var(--ck-color-panel-background);
1058
+ }
1059
+ :root{
1060
+ --ck-form-header-height:44px;
1061
+ }
1062
+ .ck.ck-form__header{
1063
+ padding:var(--ck-spacing-small) var(--ck-spacing-large);
1064
+ height:var(--ck-form-header-height);
1065
+ line-height:var(--ck-form-header-height);
1066
+ border-bottom:1px solid var(--ck-color-base-border);
1067
+ }
1068
+ [dir="ltr"] .ck.ck-form__header > .ck-icon{
1069
+ margin-right:var(--ck-spacing-medium);
1070
+ }
1071
+ [dir="rtl"] .ck.ck-form__header > .ck-icon{
1072
+ margin-left:var(--ck-spacing-medium);
1073
+ }
1074
+ .ck.ck-form__header .ck-form__header__label{
1075
+ --ck-font-size-base:15px;
1076
+ font-weight:bold;
1077
+ }
1078
+ :root{
1079
+ --ck-icon-size:calc(var(--ck-line-height-base) * var(--ck-font-size-normal));
1080
+ --ck-icon-font-size:.8333350694em;
1081
+ }
1082
+ .ck.ck-icon{
1083
+ width:var(--ck-icon-size);
1084
+ height:var(--ck-icon-size);
1085
+ font-size:var(--ck-icon-font-size);
1086
+ cursor:inherit;
1087
+ will-change:transform;
1088
+ }
1089
+ .ck.ck-icon *{
1090
+ cursor:inherit;
1091
+ }
1092
+ .ck.ck-icon.ck-icon_inherit-color{
1093
+ color:inherit;
1094
+ }
1095
+ .ck.ck-icon.ck-icon_inherit-color *{
1096
+ color:inherit;
1097
+ }
1098
+ .ck.ck-icon.ck-icon_inherit-color *:not([fill]){
1099
+ fill:currentColor;
1100
+ }
1101
+ :root{
1102
+ --ck-input-width:18em;
1103
+ --ck-input-text-width:var(--ck-input-width);
1104
+ }
1105
+ .ck.ck-input{
1106
+ border-radius:0;
1107
+
1108
+ background:var(--ck-color-input-background);
1109
+ border:1px solid var(--ck-color-input-border);
1110
+ padding:var(--ck-spacing-extra-tiny) var(--ck-spacing-medium);
1111
+ min-width:var(--ck-input-width);
1112
+ min-height:var(--ck-ui-component-min-height);
1113
+ transition:box-shadow .1s ease-in-out, border .1s ease-in-out;
1114
+ }
1115
+ .ck-rounded-corners .ck.ck-input,
1116
+ .ck.ck-input.ck-rounded-corners{
1117
+ border-radius:var(--ck-border-radius);
1118
+ }
1119
+ @media (prefers-reduced-motion: reduce){
1120
+ .ck.ck-input{
1121
+ transition:none;
1122
+ }
1123
+ }
1124
+ .ck.ck-input:focus{
1125
+ outline:none;
1126
+ border:var(--ck-focus-ring);
1127
+ box-shadow:var(--ck-focus-outer-shadow), 0 0;
1128
+ }
1129
+ .ck.ck-input[readonly]{
1130
+ border:1px solid var(--ck-color-input-disabled-border);
1131
+ background:var(--ck-color-input-disabled-background);
1132
+ color:var(--ck-color-input-disabled-text);
1133
+ }
1134
+ .ck.ck-input[readonly]:focus{
1135
+ box-shadow:var(--ck-focus-disabled-outer-shadow), 0 0;
1136
+ }
1137
+ .ck.ck-input.ck-error{
1138
+ border-color:var(--ck-color-input-error-border);
1139
+ animation:ck-input-shake .3s ease both;
1140
+ }
1141
+ @media (prefers-reduced-motion: reduce){
1142
+ .ck.ck-input.ck-error{
1143
+ animation:none;
1144
+ }
1145
+ }
1146
+ .ck.ck-input.ck-error:focus{
1147
+ box-shadow:var(--ck-focus-error-outer-shadow), 0 0;
1148
+ }
1149
+ @keyframes ck-input-shake{
1150
+ 20%{
1151
+ transform:translateX(-2px);
1152
+ }
1153
+
1154
+ 40%{
1155
+ transform:translateX(2px);
1156
+ }
1157
+
1158
+ 60%{
1159
+ transform:translateX(-1px);
1160
+ }
1161
+
1162
+ 80%{
1163
+ transform:translateX(1px);
1164
+ }
1165
+ }
1166
+ .ck.ck-label{
1167
+ font-weight:bold;
1168
+ }
1169
+ :root{
1170
+ --ck-labeled-field-view-transition:.1s cubic-bezier(0, 0, 0.24, 0.95);
1171
+ --ck-labeled-field-empty-unfocused-max-width:100% - 2 * var(--ck-spacing-medium);
1172
+ --ck-labeled-field-label-default-position-x:var(--ck-spacing-medium);
1173
+ --ck-labeled-field-label-default-position-y:calc(0.6 * var(--ck-font-size-base));
1174
+ --ck-color-labeled-field-label-background:var(--ck-color-base-background);
1175
+ }
1176
+ .ck.ck-labeled-field-view{
1177
+ border-radius:0;
1178
+ }
1179
+ .ck-rounded-corners .ck.ck-labeled-field-view,
1180
+ .ck.ck-labeled-field-view.ck-rounded-corners{
1181
+ border-radius:var(--ck-border-radius);
1182
+ }
1183
+ .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper{
1184
+ width:100%;
1185
+ }
1186
+ .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label{
1187
+ top:0px;
1188
+
1189
+ pointer-events:none;
1190
+
1191
+ background:var(--ck-color-labeled-field-label-background);
1192
+ padding:0 calc(.5 * var(--ck-font-size-tiny));
1193
+ line-height:initial;
1194
+ font-weight:normal;
1195
+ text-overflow:ellipsis;
1196
+ overflow:hidden;
1197
+
1198
+ max-width:100%;
1199
+
1200
+ transition:transform var(--ck-labeled-field-view-transition), padding var(--ck-labeled-field-view-transition), background var(--ck-labeled-field-view-transition);
1201
+ }
1202
+ [dir="ltr"] .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label{
1203
+ left:0px;
1204
+ transform-origin:0 0;
1205
+ transform:translate(var(--ck-spacing-medium), -6px) scale(.75);
1206
+ }
1207
+ [dir="rtl"] .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label{
1208
+ right:0px;
1209
+ transform-origin:100% 0;
1210
+ transform:translate(calc(-1 * var(--ck-spacing-medium)), -6px) scale(.75);
1211
+ }
1212
+ @media (prefers-reduced-motion: reduce){
1213
+ .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label{
1214
+ transition:none;
1215
+ }
1216
+ }
1217
+ .ck.ck-labeled-field-view.ck-error > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label{
1218
+ color:var(--ck-color-base-error);
1219
+ }
1220
+ .ck.ck-labeled-field-view.ck-error .ck-input:not([readonly]) + .ck.ck-label{
1221
+ color:var(--ck-color-base-error);
1222
+ }
1223
+ .ck.ck-labeled-field-view .ck-labeled-field-view__status{
1224
+ font-size:var(--ck-font-size-small);
1225
+ margin-top:var(--ck-spacing-small);
1226
+ white-space:normal;
1227
+ }
1228
+ .ck.ck-labeled-field-view .ck-labeled-field-view__status.ck-labeled-field-view__status_error{
1229
+ color:var(--ck-color-base-error);
1230
+ }
1231
+ .ck.ck-labeled-field-view.ck-disabled > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label,
1232
+ .ck.ck-labeled-field-view.ck-labeled-field-view_empty:not(.ck-labeled-field-view_focused) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label{
1233
+ color:var(--ck-color-input-disabled-text);
1234
+ }
1235
+ .ck.ck-labeled-field-view.ck-disabled.ck-labeled-field-view_empty:not(.ck-labeled-field-view_placeholder) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label,
1236
+ .ck.ck-labeled-field-view.ck-labeled-field-view_empty:not(.ck-labeled-field-view_focused):not(.ck-labeled-field-view_placeholder):not(.ck-error) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label{
1237
+ max-width:calc(var(--ck-labeled-field-empty-unfocused-max-width));
1238
+
1239
+ background:transparent;
1240
+ padding:0;
1241
+ }
1242
+ [dir="ltr"] .ck.ck-labeled-field-view.ck-disabled.ck-labeled-field-view_empty:not(.ck-labeled-field-view_placeholder) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label, [dir="ltr"] .ck.ck-labeled-field-view.ck-labeled-field-view_empty:not(.ck-labeled-field-view_focused):not(.ck-labeled-field-view_placeholder):not(.ck-error) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label{
1243
+ transform:translate(var(--ck-labeled-field-label-default-position-x), var(--ck-labeled-field-label-default-position-y)) scale(1);
1244
+ }
1245
+ [dir="rtl"] .ck.ck-labeled-field-view.ck-disabled.ck-labeled-field-view_empty:not(.ck-labeled-field-view_placeholder) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label, [dir="rtl"] .ck.ck-labeled-field-view.ck-labeled-field-view_empty:not(.ck-labeled-field-view_focused):not(.ck-labeled-field-view_placeholder):not(.ck-error) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label{
1246
+ transform:translate(calc(-1 * var(--ck-labeled-field-label-default-position-x)), var(--ck-labeled-field-label-default-position-y)) scale(1);
1247
+ }
1248
+ .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper > .ck-dropdown > .ck.ck-button{
1249
+ background:transparent;
1250
+ }
1251
+ .ck.ck-labeled-field-view.ck-labeled-field-view_empty > .ck.ck-labeled-field-view__input-wrapper > .ck-dropdown > .ck-button > .ck-button__label{
1252
+ opacity:0;
1253
+ }
1254
+ .ck.ck-labeled-field-view.ck-labeled-field-view_empty:not(.ck-labeled-field-view_focused):not(.ck-labeled-field-view_placeholder) > .ck.ck-labeled-field-view__input-wrapper > .ck-dropdown + .ck-label{
1255
+ max-width:calc(var(--ck-labeled-field-empty-unfocused-max-width) - var(--ck-dropdown-arrow-size) - var(--ck-spacing-standard));
1256
+ }
1257
+ .ck.ck-labeled-input .ck-labeled-input__status{
1258
+ font-size:var(--ck-font-size-small);
1259
+ margin-top:var(--ck-spacing-small);
1260
+ white-space:normal;
1261
+ }
1262
+ .ck.ck-labeled-input .ck-labeled-input__status_error{
1263
+ color:var(--ck-color-base-error);
1264
+ }
1265
+ .ck.ck-list{
1266
+ border-radius:0;
1267
+
1268
+ list-style-type:none;
1269
+ background:var(--ck-color-list-background);
1270
+ padding:var(--ck-spacing-small) 0;
1271
+ }
1272
+ .ck-rounded-corners .ck.ck-list,
1273
+ .ck.ck-list.ck-rounded-corners{
1274
+ border-radius:var(--ck-border-radius);
1275
+ }
1276
+ .ck.ck-list__item{
1277
+ cursor:default;
1278
+ min-width:15em;
1279
+ }
1280
+ .ck.ck-list__item > .ck-button:not(.ck-list-item-button){
1281
+ padding:var(--ck-spacing-tiny) calc(2 * var(--ck-spacing-standard));
1282
+ min-height:unset;
1283
+ width:100%;
1284
+ border-radius:0;
1285
+ }
1286
+ [dir="ltr"] .ck.ck-list__item > .ck-button:not(.ck-list-item-button){
1287
+ text-align:left;
1288
+ }
1289
+ [dir="rtl"] .ck.ck-list__item > .ck-button:not(.ck-list-item-button){
1290
+ text-align:right;
1291
+ }
1292
+ .ck.ck-list__item > .ck-button:not(.ck-list-item-button) .ck-button__label{
1293
+ line-height:calc(var(--ck-line-height-base) * var(--ck-font-size-base));
1294
+ }
1295
+ .ck.ck-list__item > .ck-button:not(.ck-list-item-button):active{
1296
+ box-shadow:none;
1297
+ }
1298
+ .ck.ck-list__item > .ck-button.ck-on:not(.ck-list-item-button){
1299
+ background:var(--ck-color-list-button-on-background);
1300
+ color:var(--ck-color-list-button-on-text);
1301
+ }
1302
+ .ck.ck-list__item > .ck-button.ck-on:not(.ck-list-item-button):active{
1303
+ box-shadow:none;
1304
+ }
1305
+ .ck.ck-list__item > .ck-button.ck-on:not(.ck-list-item-button):hover:not(.ck-disabled){
1306
+ background:var(--ck-color-list-button-on-background-focus);
1307
+ }
1308
+ .ck.ck-list__item > .ck-button.ck-on:not(.ck-list-item-button):focus:not(.ck-disabled){
1309
+ border-color:var(--ck-color-base-background);
1310
+ }
1311
+ .ck.ck-list__item > .ck-button:not(.ck-list-item-button):hover:not(.ck-disabled){
1312
+ background:var(--ck-color-list-button-hover-background);
1313
+ }
1314
+ .ck.ck-list__item > .ck-button.ck-switchbutton.ck-on{
1315
+ background:var(--ck-color-list-background);
1316
+ color:inherit;
1317
+ }
1318
+ .ck.ck-list__item > .ck-button.ck-switchbutton.ck-on:hover:not(.ck-disabled){
1319
+ background:var(--ck-color-list-button-hover-background);
1320
+ color:inherit;
1321
+ }
1322
+ .ck-list .ck-list__group{
1323
+ padding-top:var(--ck-spacing-medium);
1324
+ }
1325
+ .ck-list .ck-list__group:first-child{
1326
+ padding-top:0;
1327
+ }
1328
+ *:not(.ck-hidden) ~ .ck-list .ck-list__group{
1329
+ border-top:1px solid var(--ck-color-base-border);
1330
+ }
1331
+ .ck-list .ck-list__group > .ck-label{
1332
+ font-size:11px;
1333
+ font-weight:bold;
1334
+ padding:var(--ck-spacing-medium) var(--ck-spacing-large) 0;
1335
+ }
1336
+ .ck.ck-list__separator{
1337
+ height:1px;
1338
+ width:100%;
1339
+ background:var(--ck-color-base-border);
1340
+ margin:var(--ck-spacing-small) 0;
1341
+ }
1342
+ .ck.ck-menu-bar{
1343
+ display:flex;
1344
+ flex-wrap:wrap;
1345
+ justify-content:flex-start;
1346
+ background:var(--ck-color-base-background);
1347
+ padding:var(--ck-spacing-small);
1348
+ gap:var(--ck-spacing-small);
1349
+ border:1px solid var(--ck-color-toolbar-border);
1350
+ width:100%;
1351
+ }
1352
+ .ck.ck-menu-bar__menu{
1353
+ font-size:inherit;
1354
+ }
1355
+ .ck.ck-menu-bar__menu.ck-menu-bar__menu_top-level{
1356
+ max-width:100%;
1357
+ }
1358
+ .ck.ck-menu-bar__menu > .ck-menu-bar__menu__button{
1359
+ width:100%;
1360
+ }
1361
+ .ck.ck-menu-bar__menu > .ck-menu-bar__menu__button > .ck-button__label{
1362
+ flex-grow:1;
1363
+ overflow:hidden;
1364
+ text-overflow:ellipsis;
1365
+ }
1366
+ .ck.ck-menu-bar__menu > .ck-menu-bar__menu__button.ck-disabled > .ck-button__label{
1367
+ opacity:var(--ck-disabled-opacity);
1368
+ }
1369
+ [dir="ltr"] .ck.ck-menu-bar__menu > .ck-menu-bar__menu__button:not(.ck-button_with-text){
1370
+ padding-left:var(--ck-spacing-small);
1371
+ }
1372
+ [dir="rtl"] .ck.ck-menu-bar__menu > .ck-menu-bar__menu__button:not(.ck-button_with-text){
1373
+ padding-right:var(--ck-spacing-small);
1374
+ }
1375
+ .ck.ck-menu-bar__menu.ck-menu-bar__menu_top-level > .ck-menu-bar__menu__button{
1376
+ padding:var(--ck-spacing-small) var(--ck-spacing-medium);
1377
+ min-height:unset;
1378
+ }
1379
+ .ck.ck-menu-bar__menu.ck-menu-bar__menu_top-level > .ck-menu-bar__menu__button .ck-button__label{
1380
+ width:unset;
1381
+ line-height:unset;
1382
+ }
1383
+ .ck.ck-menu-bar__menu.ck-menu-bar__menu_top-level > .ck-menu-bar__menu__button.ck-on{
1384
+ border-bottom-left-radius:0;
1385
+ border-bottom-right-radius:0;
1386
+ }
1387
+ .ck.ck-menu-bar__menu.ck-menu-bar__menu_top-level > .ck-menu-bar__menu__button .ck-icon{
1388
+ display:none;
1389
+ }
1390
+ .ck.ck-menu-bar__menu:not(.ck-menu-bar__menu_top-level) .ck-menu-bar__menu__button{
1391
+ border-radius:0;
1392
+ }
1393
+ .ck.ck-menu-bar__menu:not(.ck-menu-bar__menu_top-level) .ck-menu-bar__menu__button > .ck-menu-bar__menu__button__arrow{
1394
+ width:var(--ck-dropdown-arrow-size);
1395
+ }
1396
+ [dir="ltr"] .ck.ck-menu-bar__menu:not(.ck-menu-bar__menu_top-level) .ck-menu-bar__menu__button > .ck-menu-bar__menu__button__arrow{
1397
+ transform:rotate(-90deg);
1398
+ margin-left:var(--ck-spacing-standard);
1399
+ margin-right:calc(-1 * var(--ck-spacing-small));
1400
+ }
1401
+ [dir="rtl"] .ck.ck-menu-bar__menu:not(.ck-menu-bar__menu_top-level) .ck-menu-bar__menu__button > .ck-menu-bar__menu__button__arrow{
1402
+ transform:rotate(90deg);
1403
+
1404
+ left:var(--ck-spacing-standard);
1405
+ margin-right:var(--ck-spacing-small);
1406
+ margin-left:calc(-1 * var(--ck-spacing-small));
1407
+ }
1408
+ .ck.ck-menu-bar__menu:not(.ck-menu-bar__menu_top-level) .ck-menu-bar__menu__button.ck-disabled > .ck-menu-bar__menu__button__arrow{
1409
+ opacity:var(--ck-disabled-opacity);
1410
+ }
1411
+ :root{
1412
+ --ck-menu-bar-menu-item-min-width:18em;
1413
+ }
1414
+ .ck.ck-menu-bar__menu .ck.ck-menu-bar__menu__item{
1415
+ min-width:var(--ck-menu-bar-menu-item-min-width);
1416
+ }
1417
+ .ck.ck-menu-bar__menu .ck-button.ck-menu-bar__menu__item__button{
1418
+ border-radius:0;
1419
+ }
1420
+ .ck.ck-menu-bar__menu .ck-button.ck-menu-bar__menu__item__button > .ck-spinner-container,
1421
+ .ck.ck-menu-bar__menu .ck-button.ck-menu-bar__menu__item__button > .ck-spinner-container .ck-spinner{
1422
+ --ck-toolbar-spinner-size:20px;
1423
+ }
1424
+ .ck.ck-menu-bar__menu .ck-button.ck-menu-bar__menu__item__button > .ck-spinner-container{
1425
+ font-size:var(--ck-icon-font-size);
1426
+ }
1427
+ [dir="ltr"] .ck.ck-menu-bar__menu .ck-button.ck-menu-bar__menu__item__button > .ck-spinner-container{
1428
+ margin-right:var(--ck-spacing-medium);
1429
+ }
1430
+ [dir="rtl"] .ck.ck-menu-bar__menu .ck-button.ck-menu-bar__menu__item__button > .ck-spinner-container{
1431
+ margin-left:var(--ck-spacing-medium);
1432
+ }
1433
+ :root{
1434
+ --ck-menu-bar-menu-panel-max-width:75vw;
1435
+ }
1436
+ .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel{
1437
+ border-radius:0;
1438
+
1439
+ background:var(--ck-color-dropdown-panel-background);
1440
+ border:1px solid var(--ck-color-dropdown-panel-border);
1441
+ bottom:0;
1442
+ height:fit-content;
1443
+ max-width:var(--ck-menu-bar-menu-panel-max-width);
1444
+ }
1445
+ .ck-rounded-corners .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel,
1446
+ .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel.ck-rounded-corners{
1447
+ border-radius:var(--ck-border-radius);
1448
+ }
1449
+ .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel{
1450
+ box-shadow:var(--ck-drop-shadow), 0 0;
1451
+ }
1452
+ .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel.ck-menu-bar__menu__panel_position_es,
1453
+ .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel.ck-menu-bar__menu__panel_position_se{
1454
+ border-top-left-radius:0;
1455
+ }
1456
+ .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel.ck-menu-bar__menu__panel_position_ws,
1457
+ .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel.ck-menu-bar__menu__panel_position_sw{
1458
+ border-top-right-radius:0;
1459
+ }
1460
+ .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel.ck-menu-bar__menu__panel_position_en,
1461
+ .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel.ck-menu-bar__menu__panel_position_ne{
1462
+ border-bottom-left-radius:0;
1463
+ }
1464
+ .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel.ck-menu-bar__menu__panel_position_wn,
1465
+ .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel.ck-menu-bar__menu__panel_position_nw{
1466
+ border-bottom-right-radius:0;
1467
+ }
1468
+ .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel:focus{
1469
+ outline:none;
1470
+ }
1471
+ .ck.ck-menu-bar .ck-list-item-button:focus,
1472
+ .ck.ck-menu-bar .ck-list-item-button:active{
1473
+ border-color:transparent;
1474
+ box-shadow:none;
1475
+ }
1476
+ .ck.ck-menu-bar.ck-menu-bar_focus-border-enabled .ck-list-item-button:focus,
1477
+ .ck.ck-menu-bar.ck-menu-bar_focus-border-enabled .ck-list-item-button:active{
1478
+ position:relative;
1479
+ z-index:2;
1480
+
1481
+ outline:none;
1482
+
1483
+ border:var(--ck-focus-ring);
1484
+ box-shadow:var(--ck-focus-outer-shadow), 0 0;
1485
+ }
1486
+ :root{
1487
+ --ck-balloon-border-width:1px;
1488
+ --ck-balloon-arrow-offset:2px;
1489
+ --ck-balloon-arrow-height:10px;
1490
+ --ck-balloon-arrow-half-width:8px;
1491
+ --ck-balloon-arrow-drop-shadow:0 2px 2px var(--ck-color-shadow-drop);
1492
+ }
1493
+ .ck.ck-balloon-panel{
1494
+ border-radius:0;
1495
+
1496
+ min-height:15px;
1497
+
1498
+ background:var(--ck-color-panel-background);
1499
+ border:var(--ck-balloon-border-width) solid var(--ck-color-panel-border);
1500
+ }
1501
+ .ck-rounded-corners .ck.ck-balloon-panel,
1502
+ .ck.ck-balloon-panel.ck-rounded-corners{
1503
+ border-radius:var(--ck-border-radius);
1504
+ }
1505
+ .ck.ck-balloon-panel{
1506
+ box-shadow:var(--ck-drop-shadow), 0 0;
1507
+ }
1508
+ .ck.ck-balloon-panel.ck-balloon-panel_with-arrow::before,
1509
+ .ck.ck-balloon-panel.ck-balloon-panel_with-arrow::after{
1510
+ width:0;
1511
+ height:0;
1512
+ border-style:solid;
1513
+ }
1514
+ .ck.ck-balloon-panel[class*="arrow_n"]::before,
1515
+ .ck.ck-balloon-panel[class*="arrow_n"]::after{
1516
+ border-width:0 var(--ck-balloon-arrow-half-width) var(--ck-balloon-arrow-height) var(--ck-balloon-arrow-half-width);
1517
+ }
1518
+ .ck.ck-balloon-panel[class*="arrow_n"]::before{
1519
+ border-color:transparent transparent var(--ck-color-panel-border) transparent;
1520
+ margin-top:calc( -1 * var(--ck-balloon-border-width));
1521
+ }
1522
+ .ck.ck-balloon-panel[class*="arrow_n"]::after{
1523
+ border-color:transparent transparent var(--ck-color-panel-background) transparent;
1524
+ margin-top:calc( var(--ck-balloon-arrow-offset) - var(--ck-balloon-border-width));
1525
+ }
1526
+ .ck.ck-balloon-panel[class*="arrow_s"]::before,
1527
+ .ck.ck-balloon-panel[class*="arrow_s"]::after{
1528
+ border-width:var(--ck-balloon-arrow-height) var(--ck-balloon-arrow-half-width) 0 var(--ck-balloon-arrow-half-width);
1529
+ }
1530
+ .ck.ck-balloon-panel[class*="arrow_s"]::before{
1531
+ border-color:var(--ck-color-panel-border) transparent transparent;
1532
+ filter:drop-shadow(var(--ck-balloon-arrow-drop-shadow));
1533
+ margin-bottom:calc( -1 * var(--ck-balloon-border-width));
1534
+ }
1535
+ .ck.ck-balloon-panel[class*="arrow_s"]::after{
1536
+ border-color:var(--ck-color-panel-background) transparent transparent transparent;
1537
+ margin-bottom:calc( var(--ck-balloon-arrow-offset) - var(--ck-balloon-border-width));
1538
+ }
1539
+ .ck.ck-balloon-panel[class*="arrow_e"]::before,
1540
+ .ck.ck-balloon-panel[class*="arrow_e"]::after{
1541
+ border-width:var(--ck-balloon-arrow-half-width) 0 var(--ck-balloon-arrow-half-width) var(--ck-balloon-arrow-height);
1542
+ }
1543
+ .ck.ck-balloon-panel[class*="arrow_e"]::before{
1544
+ border-color:transparent transparent transparent var(--ck-color-panel-border);
1545
+ margin-right:calc( -1 * var(--ck-balloon-border-width));
1546
+ }
1547
+ .ck.ck-balloon-panel[class*="arrow_e"]::after{
1548
+ border-color:transparent transparent transparent var(--ck-color-panel-background);
1549
+ margin-right:calc( var(--ck-balloon-arrow-offset) - var(--ck-balloon-border-width));
1550
+ }
1551
+ .ck.ck-balloon-panel[class*="arrow_w"]::before,
1552
+ .ck.ck-balloon-panel[class*="arrow_w"]::after{
1553
+ border-width:var(--ck-balloon-arrow-half-width) var(--ck-balloon-arrow-height) var(--ck-balloon-arrow-half-width) 0;
1554
+ }
1555
+ .ck.ck-balloon-panel[class*="arrow_w"]::before{
1556
+ border-color:transparent var(--ck-color-panel-border) transparent transparent;
1557
+ margin-left:calc( -1 * var(--ck-balloon-border-width));
1558
+ }
1559
+ .ck.ck-balloon-panel[class*="arrow_w"]::after{
1560
+ border-color:transparent var(--ck-color-panel-background) transparent transparent;
1561
+ margin-left:calc( var(--ck-balloon-arrow-offset) - var(--ck-balloon-border-width));
1562
+ }
1563
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_n::before,
1564
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_n::after{
1565
+ left:50%;
1566
+ margin-left:calc(-1 * var(--ck-balloon-arrow-half-width));
1567
+ top:calc(-1 * var(--ck-balloon-arrow-height));
1568
+ }
1569
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_nw::before,
1570
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_nw::after{
1571
+ left:calc(2 * var(--ck-balloon-arrow-half-width));
1572
+ top:calc(-1 * var(--ck-balloon-arrow-height));
1573
+ }
1574
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_ne::before,
1575
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_ne::after{
1576
+ right:calc(2 * var(--ck-balloon-arrow-half-width));
1577
+ top:calc(-1 * var(--ck-balloon-arrow-height));
1578
+ }
1579
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_s::before,
1580
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_s::after{
1581
+ left:50%;
1582
+ margin-left:calc(-1 * var(--ck-balloon-arrow-half-width));
1583
+ bottom:calc(-1 * var(--ck-balloon-arrow-height));
1584
+ }
1585
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_sw::before,
1586
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_sw::after{
1587
+ left:calc(2 * var(--ck-balloon-arrow-half-width));
1588
+ bottom:calc(-1 * var(--ck-balloon-arrow-height));
1589
+ }
1590
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_se::before,
1591
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_se::after{
1592
+ right:calc(2 * var(--ck-balloon-arrow-half-width));
1593
+ bottom:calc(-1 * var(--ck-balloon-arrow-height));
1594
+ }
1595
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_sme::before,
1596
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_sme::after{
1597
+ right:25%;
1598
+ margin-right:calc(2 * var(--ck-balloon-arrow-half-width));
1599
+ bottom:calc(-1 * var(--ck-balloon-arrow-height));
1600
+ }
1601
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_smw::before,
1602
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_smw::after{
1603
+ left:25%;
1604
+ margin-left:calc(2 * var(--ck-balloon-arrow-half-width));
1605
+ bottom:calc(-1 * var(--ck-balloon-arrow-height));
1606
+ }
1607
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_nme::before,
1608
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_nme::after{
1609
+ right:25%;
1610
+ margin-right:calc(2 * var(--ck-balloon-arrow-half-width));
1611
+ top:calc(-1 * var(--ck-balloon-arrow-height));
1612
+ }
1613
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_nmw::before,
1614
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_nmw::after{
1615
+ left:25%;
1616
+ margin-left:calc(2 * var(--ck-balloon-arrow-half-width));
1617
+ top:calc(-1 * var(--ck-balloon-arrow-height));
1618
+ }
1619
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_e::before,
1620
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_e::after{
1621
+ right:calc(-1 * var(--ck-balloon-arrow-height));
1622
+ margin-top:calc(-1 * var(--ck-balloon-arrow-half-width));
1623
+ top:50%;
1624
+ }
1625
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_w::before,
1626
+ .ck.ck-balloon-panel.ck-balloon-panel_arrow_w::after{
1627
+ left:calc(-1 * var(--ck-balloon-arrow-height));
1628
+ margin-top:calc(-1 * var(--ck-balloon-arrow-half-width));
1629
+ top:50%;
1630
+ }
1631
+ .ck .ck-balloon-rotator__navigation{
1632
+ background:var(--ck-color-toolbar-background);
1633
+ border-bottom:1px solid var(--ck-color-toolbar-border);
1634
+ padding:0 var(--ck-spacing-small);
1635
+ }
1636
+ .ck .ck-balloon-rotator__navigation > *{
1637
+ margin-right:var(--ck-spacing-small);
1638
+ margin-top:var(--ck-spacing-small);
1639
+ margin-bottom:var(--ck-spacing-small);
1640
+ }
1641
+ .ck .ck-balloon-rotator__navigation .ck-balloon-rotator__counter{
1642
+ margin-right:var(--ck-spacing-standard);
1643
+ margin-left:var(--ck-spacing-small);
1644
+ }
1645
+ .ck .ck-balloon-rotator__content .ck.ck-annotation-wrapper{
1646
+ box-shadow:none;
1647
+ }
1648
+ :root{
1649
+ --ck-balloon-fake-panel-offset-horizontal:6px;
1650
+ --ck-balloon-fake-panel-offset-vertical:6px;
1651
+ }
1652
+ .ck .ck-fake-panel div{
1653
+ box-shadow:var(--ck-drop-shadow), 0 0;
1654
+
1655
+ min-height:15px;
1656
+
1657
+ background:var(--ck-color-panel-background);
1658
+ border:1px solid var(--ck-color-panel-border);
1659
+ border-radius:var(--ck-border-radius);
1660
+
1661
+ width:100%;
1662
+ height:100%;
1663
+ }
1664
+ .ck .ck-fake-panel div:nth-child( 1){
1665
+ margin-left:var(--ck-balloon-fake-panel-offset-horizontal);
1666
+ margin-top:var(--ck-balloon-fake-panel-offset-vertical);
1667
+ }
1668
+ .ck .ck-fake-panel div:nth-child( 2){
1669
+ margin-left:calc(var(--ck-balloon-fake-panel-offset-horizontal) * 2);
1670
+ margin-top:calc(var(--ck-balloon-fake-panel-offset-vertical) * 2);
1671
+ }
1672
+ .ck .ck-fake-panel div:nth-child( 3){
1673
+ margin-left:calc(var(--ck-balloon-fake-panel-offset-horizontal) * 3);
1674
+ margin-top:calc(var(--ck-balloon-fake-panel-offset-vertical) * 3);
1675
+ }
1676
+ .ck .ck-balloon-panel_arrow_s + .ck-fake-panel,
1677
+ .ck .ck-balloon-panel_arrow_se + .ck-fake-panel,
1678
+ .ck .ck-balloon-panel_arrow_sw + .ck-fake-panel{
1679
+ --ck-balloon-fake-panel-offset-vertical:-6px;
1680
+ }
1681
+ .ck.ck-sticky-panel .ck-sticky-panel__content_sticky{
1682
+ box-shadow:var(--ck-drop-shadow), 0 0;
1683
+
1684
+ border-width:0 1px 1px;
1685
+ border-top-left-radius:0;
1686
+ border-top-right-radius:0;
1687
+ }
1688
+ .ck-vertical-form > .ck-button:nth-last-child(2)::after{
1689
+ border-right:1px solid var(--ck-color-base-border);
1690
+ }
1691
+ .ck.ck-responsive-form{
1692
+ padding:var(--ck-spacing-large);
1693
+ }
1694
+ .ck.ck-responsive-form:focus{
1695
+ outline:none;
1696
+ }
1697
+ [dir="ltr"] .ck.ck-responsive-form > :not(:first-child){
1698
+ margin-left:var(--ck-spacing-standard);
1699
+ }
1700
+ [dir="rtl"] .ck.ck-responsive-form > :not(:last-child){
1701
+ margin-left:var(--ck-spacing-standard);
1702
+ }
1703
+ @media screen and (max-width: 600px){
1704
+ .ck.ck-responsive-form{
1705
+ padding:0;
1706
+ width:calc(.8 * var(--ck-input-width));
1707
+ }
1708
+
1709
+ .ck.ck-responsive-form .ck-labeled-field-view{
1710
+ margin:var(--ck-spacing-large) var(--ck-spacing-large) 0;
1711
+ }
1712
+
1713
+ .ck.ck-responsive-form .ck-labeled-field-view .ck-input-text,
1714
+ .ck.ck-responsive-form .ck-labeled-field-view .ck-input-number{
1715
+ min-width:0;
1716
+ width:100%;
1717
+ }
1718
+ .ck.ck-responsive-form .ck-labeled-field-view .ck-labeled-field-view__error{
1719
+ white-space:normal;
1720
+ }
1721
+ .ck.ck-responsive-form > .ck-button:nth-last-child(2)::after{
1722
+ border-right:1px solid var(--ck-color-base-border);
1723
+ }
1724
+
1725
+ .ck.ck-responsive-form > .ck-button:nth-last-child(1),
1726
+ .ck.ck-responsive-form > .ck-button:nth-last-child(2){
1727
+ padding:var(--ck-spacing-standard);
1728
+ margin-top:var(--ck-spacing-large);
1729
+ border-radius:0;
1730
+ }
1731
+
1732
+ .ck.ck-responsive-form > .ck-button:nth-last-child(1):not(:focus), .ck.ck-responsive-form > .ck-button:nth-last-child(2):not(:focus){
1733
+ border-top:1px solid var(--ck-color-base-border);
1734
+ }
1735
+
1736
+ [dir="ltr"] .ck.ck-responsive-form > .ck-button:nth-last-child(1), [dir="ltr"] .ck.ck-responsive-form > .ck-button:nth-last-child(2){
1737
+ margin-left:0;
1738
+ }
1739
+
1740
+ [dir="rtl"] .ck.ck-responsive-form > .ck-button:nth-last-child(1), [dir="rtl"] .ck.ck-responsive-form > .ck-button:nth-last-child(2){
1741
+ margin-left:0;
1742
+ }
1743
+
1744
+ [dir="rtl"] .ck.ck-responsive-form > .ck-button:nth-last-child(1):last-of-type, [dir="rtl"] .ck.ck-responsive-form > .ck-button:nth-last-child(2):last-of-type{
1745
+ border-right:1px solid var(--ck-color-base-border);
1746
+ }
1747
+ }
1748
+ :root{
1749
+ --ck-search-field-view-horizontal-spacing:calc(var(--ck-icon-size) + var(--ck-spacing-medium));
1750
+ }
1751
+ .ck.ck-search > .ck-labeled-field-view .ck-input{
1752
+ width:100%;
1753
+ }
1754
+ .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-icon{
1755
+ --ck-labeled-field-label-default-position-x:var(--ck-search-field-view-horizontal-spacing);
1756
+ }
1757
+ .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-icon > .ck-labeled-field-view__input-wrapper > .ck-icon{
1758
+ opacity:.5;
1759
+ pointer-events:none;
1760
+ }
1761
+ .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-icon .ck-input{
1762
+ width:100%;
1763
+ }
1764
+ [dir="ltr"] .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-icon .ck-input{
1765
+ padding-left:var(--ck-search-field-view-horizontal-spacing);
1766
+ }
1767
+ [dir="rtl"] .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-icon .ck-input:not(.ck-input-text_empty){
1768
+ padding-left:var(--ck-search-field-view-horizontal-spacing);
1769
+ }
1770
+ .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-reset{
1771
+ --ck-labeled-field-empty-unfocused-max-width:100% - 2 * var(--ck-search-field-view-horizontal-spacing);
1772
+ }
1773
+ .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-reset.ck-labeled-field-view_empty{
1774
+ --ck-labeled-field-empty-unfocused-max-width:100% - var(--ck-search-field-view-horizontal-spacing) - var(--ck-spacing-medium);
1775
+ }
1776
+ .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-reset .ck-search__reset{
1777
+ min-width:auto;
1778
+ min-height:auto;
1779
+
1780
+ background:none;
1781
+ opacity:.5;
1782
+ padding:0;
1783
+ }
1784
+ [dir="ltr"] .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-reset .ck-search__reset{
1785
+ right:var(--ck-spacing-medium);
1786
+ }
1787
+ [dir="rtl"] .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-reset .ck-search__reset{
1788
+ left:var(--ck-spacing-medium);
1789
+ }
1790
+ .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-reset .ck-search__reset:hover{
1791
+ opacity:1;
1792
+ }
1793
+ .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-reset .ck-input{
1794
+ width:100%;
1795
+ }
1796
+ [dir="ltr"] .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-reset .ck-input:not(.ck-input-text_empty){
1797
+ padding-right:var(--ck-search-field-view-horizontal-spacing);
1798
+ }
1799
+ [dir="rtl"] .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-reset .ck-input{
1800
+ padding-right:var(--ck-search-field-view-horizontal-spacing);
1801
+ }
1802
+ .ck.ck-search > .ck-search__results{
1803
+ min-width:100%;
1804
+ }
1805
+ .ck.ck-search > .ck-search__results > .ck-search__info{
1806
+ width:100%;
1807
+ padding:var(--ck-spacing-medium) var(--ck-spacing-large);
1808
+ }
1809
+ .ck.ck-search > .ck-search__results > .ck-search__info *{
1810
+ white-space:normal;
1811
+ }
1812
+ .ck.ck-search > .ck-search__results > .ck-search__info > span:first-child{
1813
+ font-weight:bold;
1814
+ }
1815
+ .ck.ck-search > .ck-search__results > .ck-search__info > span:last-child{
1816
+ margin-top:var(--ck-spacing-medium);
1817
+ }
1818
+ :root{
1819
+ --ck-toolbar-spinner-size:18px;
1820
+ }
1821
+ .ck.ck-spinner-container{
1822
+ width:var(--ck-toolbar-spinner-size);
1823
+ height:var(--ck-toolbar-spinner-size);
1824
+ animation:1.5s infinite ck-spinner-rotate linear;
1825
+ }
1826
+ @media (prefers-reduced-motion: reduce){
1827
+ .ck.ck-spinner-container{
1828
+ animation-duration:3s;
1829
+ }
1830
+ }
1831
+ .ck.ck-spinner{
1832
+ width:var(--ck-toolbar-spinner-size);
1833
+ height:var(--ck-toolbar-spinner-size);
1834
+ border-radius:50%;
1835
+ border:2px solid var(--ck-color-text);
1836
+ border-top-color:transparent;
1837
+ }
1838
+ @keyframes ck-spinner-rotate{
1839
+ to{
1840
+ transform:rotate(360deg)
1841
+ }
1842
+ }
1843
+ .ck-textarea{
1844
+ overflow-x:hidden
1845
+ }
1846
+ :root{
1847
+ --ck-color-block-toolbar-button:var(--ck-color-text);
1848
+ --ck-block-toolbar-button-size:var(--ck-font-size-normal);
1849
+ }
1850
+ .ck.ck-block-toolbar-button{
1851
+ color:var(--ck-color-block-toolbar-button);
1852
+ font-size:var(--ck-block-toolbar-size);
1853
+ }
1854
+ .ck.ck-toolbar{
1855
+ border-radius:0;
1856
+
1857
+ background:var(--ck-color-toolbar-background);
1858
+ padding:0 var(--ck-spacing-small);
1859
+ border:1px solid var(--ck-color-toolbar-border);
1860
+ }
1861
+ .ck-rounded-corners .ck.ck-toolbar,
1862
+ .ck.ck-toolbar.ck-rounded-corners{
1863
+ border-radius:var(--ck-border-radius);
1864
+ }
1865
+ .ck.ck-toolbar .ck.ck-toolbar__separator{
1866
+ height:var(--ck-icon-size);
1867
+ width:1px;
1868
+ min-width:1px;
1869
+ background:var(--ck-color-toolbar-border);
1870
+ margin-top:var(--ck-spacing-small);
1871
+ margin-bottom:var(--ck-spacing-small);
1872
+ }
1873
+ .ck.ck-toolbar .ck-toolbar__line-break{
1874
+ height:0;
1875
+ }
1876
+ .ck.ck-toolbar > .ck-toolbar__items > *:not(.ck-toolbar__line-break){
1877
+ margin-right:var(--ck-spacing-small);
1878
+ }
1879
+ .ck.ck-toolbar > .ck-toolbar__items:empty + .ck.ck-toolbar__separator{
1880
+ display:none;
1881
+ }
1882
+ .ck.ck-toolbar > .ck-toolbar__items > *:not(.ck-toolbar__line-break),
1883
+ .ck.ck-toolbar > .ck.ck-toolbar__grouped-dropdown{
1884
+ margin-top:var(--ck-spacing-small);
1885
+ margin-bottom:var(--ck-spacing-small);
1886
+ }
1887
+ .ck.ck-toolbar.ck-toolbar_vertical{
1888
+ padding:0;
1889
+ }
1890
+ .ck.ck-toolbar.ck-toolbar_vertical > .ck-toolbar__items > .ck{
1891
+ width:100%;
1892
+ margin:0;
1893
+ border-radius:0;
1894
+ }
1895
+ .ck.ck-toolbar.ck-toolbar_compact{
1896
+ padding:0;
1897
+ }
1898
+ .ck.ck-toolbar.ck-toolbar_compact > .ck-toolbar__items > *{
1899
+ margin:0;
1900
+ }
1901
+ .ck.ck-toolbar.ck-toolbar_compact > .ck-toolbar__items > *:not(:first-child):not(:last-child){
1902
+ border-radius:0;
1903
+ }
1904
+ .ck.ck-toolbar > .ck.ck-toolbar__grouped-dropdown > .ck.ck-button.ck-dropdown__button{
1905
+ padding-left:var(--ck-spacing-tiny);
1906
+ }
1907
+ .ck.ck-toolbar .ck-toolbar__nested-toolbar-dropdown > .ck-dropdown__panel{
1908
+ min-width:auto;
1909
+ }
1910
+ .ck.ck-toolbar .ck-toolbar__nested-toolbar-dropdown > .ck-button > .ck-button__label{
1911
+ max-width:7em;
1912
+ width:auto;
1913
+ }
1914
+ .ck.ck-toolbar:focus{
1915
+ outline:none;
1916
+ }
1917
+ .ck-toolbar-container .ck.ck-toolbar{
1918
+ border:0;
1919
+ }
1920
+ [dir="rtl"] .ck.ck-toolbar > .ck-toolbar__items > .ck, .ck.ck-toolbar[dir="rtl"] > .ck-toolbar__items > .ck{
1921
+ margin-right:0;
1922
+ }
1923
+ [dir="rtl"] .ck.ck-toolbar:not(.ck-toolbar_compact) > .ck-toolbar__items > .ck, .ck.ck-toolbar[dir="rtl"]:not(.ck-toolbar_compact) > .ck-toolbar__items > .ck{
1924
+ margin-left:var(--ck-spacing-small);
1925
+ }
1926
+ [dir="rtl"] .ck.ck-toolbar > .ck-toolbar__items > .ck:last-child, .ck.ck-toolbar[dir="rtl"] > .ck-toolbar__items > .ck:last-child{
1927
+ margin-left:0;
1928
+ }
1929
+ [dir="rtl"] .ck.ck-toolbar.ck-toolbar_compact > .ck-toolbar__items > .ck:first-child, .ck.ck-toolbar.ck-toolbar_compact[dir="rtl"] > .ck-toolbar__items > .ck:first-child{
1930
+ border-top-left-radius:0;
1931
+ border-bottom-left-radius:0;
1932
+ }
1933
+ [dir="rtl"] .ck.ck-toolbar.ck-toolbar_compact > .ck-toolbar__items > .ck:last-child, .ck.ck-toolbar.ck-toolbar_compact[dir="rtl"] > .ck-toolbar__items > .ck:last-child{
1934
+ border-top-right-radius:0;
1935
+ border-bottom-right-radius:0;
1936
+ }
1937
+ [dir="rtl"] .ck.ck-toolbar > .ck.ck-toolbar__separator, .ck.ck-toolbar[dir="rtl"] > .ck.ck-toolbar__separator{
1938
+ margin-left:var(--ck-spacing-small);
1939
+ }
1940
+ [dir="rtl"] .ck.ck-toolbar.ck-toolbar_grouping > .ck-toolbar__items:not(:empty):not(:only-child), .ck.ck-toolbar.ck-toolbar_grouping[dir="rtl"] > .ck-toolbar__items:not(:empty):not(:only-child){
1941
+ margin-left:var(--ck-spacing-small);
1942
+ }
1943
+ [dir="ltr"] .ck.ck-toolbar > .ck-toolbar__items > .ck:last-child, .ck.ck-toolbar[dir="ltr"] > .ck-toolbar__items > .ck:last-child{
1944
+ margin-right:0;
1945
+ }
1946
+ [dir="ltr"] .ck.ck-toolbar.ck-toolbar_compact > .ck-toolbar__items > .ck:first-child, .ck.ck-toolbar.ck-toolbar_compact[dir="ltr"] > .ck-toolbar__items > .ck:first-child{
1947
+ border-top-right-radius:0;
1948
+ border-bottom-right-radius:0;
1949
+ }
1950
+ [dir="ltr"] .ck.ck-toolbar.ck-toolbar_compact > .ck-toolbar__items > .ck:last-child, .ck.ck-toolbar.ck-toolbar_compact[dir="ltr"] > .ck-toolbar__items > .ck:last-child{
1951
+ border-top-left-radius:0;
1952
+ border-bottom-left-radius:0;
1953
+ }
1954
+ [dir="ltr"] .ck.ck-toolbar > .ck.ck-toolbar__separator, .ck.ck-toolbar[dir="ltr"] > .ck.ck-toolbar__separator{
1955
+ margin-right:var(--ck-spacing-small);
1956
+ }
1957
+ [dir="ltr"] .ck.ck-toolbar.ck-toolbar_grouping > .ck-toolbar__items:not(:empty):not(:only-child), .ck.ck-toolbar.ck-toolbar_grouping[dir="ltr"] > .ck-toolbar__items:not(:empty):not(:only-child){
1958
+ margin-right:var(--ck-spacing-small);
1959
+ }
1960
+ .ck.ck-balloon-panel.ck-tooltip{
1961
+ --ck-balloon-border-width:0px;
1962
+ --ck-balloon-arrow-offset:0px;
1963
+ --ck-balloon-arrow-half-width:4px;
1964
+ --ck-balloon-arrow-height:4px;
1965
+ --ck-tooltip-text-padding:4px;
1966
+ --ck-color-panel-background:var(--ck-color-tooltip-background);
1967
+
1968
+ padding:0 var(--ck-spacing-medium);
1969
+ box-shadow:none;
1970
+ }
1971
+ .ck.ck-balloon-panel.ck-tooltip .ck-tooltip__text{
1972
+ font-size:.9em;
1973
+ line-height:1.5;
1974
+ color:var(--ck-color-tooltip-text);
1975
+ }
1976
+ .ck.ck-balloon-panel.ck-tooltip.ck-tooltip_multi-line .ck-tooltip__text{
1977
+ white-space:break-spaces;
1978
+ display:inline-block;
1979
+ padding:var(--ck-tooltip-text-padding) 0;
1980
+ max-width:200px;
1981
+ }
1982
+ .ck.ck-balloon-panel.ck-tooltip::before{
1983
+ display:none;
1984
+ }
1985
+ .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content{
1986
+ border-radius:0;
1987
+
1988
+ border:1px solid var(--ck-color-base-border);
1989
+ border-bottom-width:0;
1990
+ }
1991
+ .ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content,
1992
+ .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content.ck-rounded-corners{
1993
+ border-radius:var(--ck-border-radius);
1994
+ border-bottom-left-radius:0;
1995
+ border-bottom-right-radius:0;
1996
+ }
1997
+ .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content.ck-sticky-panel__content_sticky{
1998
+ border-bottom-width:1px;
1999
+ }
2000
+ .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content .ck-menu-bar{
2001
+ border:0;
2002
+ border-bottom:1px solid var(--ck-color-base-border);
2003
+ }
2004
+ .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content .ck-toolbar{
2005
+ border:0;
2006
+ }
2007
+ .ck.ck-editor__main > .ck-editor__editable{
2008
+ background:var(--ck-color-base-background);
2009
+
2010
+ border-radius:0;
2011
+ }
2012
+ .ck-rounded-corners .ck.ck-editor__main > .ck-editor__editable,
2013
+ .ck.ck-editor__main > .ck-editor__editable.ck-rounded-corners{
2014
+ border-radius:var(--ck-border-radius);
2015
+ border-top-left-radius:0;
2016
+ border-top-right-radius:0;
2017
+ }
2018
+ .ck.ck-editor__main > .ck-editor__editable:not(.ck-focused){
2019
+ border-color:var(--ck-color-base-border);
2020
+ }
2021
+ :root{
2022
+ --ck-clipboard-drop-target-dot-width:12px;
2023
+ --ck-clipboard-drop-target-dot-height:8px;
2024
+ --ck-clipboard-drop-target-color:var(--ck-color-focus-border);
2025
+ }
2026
+ .ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span{
2027
+ bottom:calc(-.5 * var(--ck-clipboard-drop-target-dot-height));
2028
+ top:calc(-.5 * var(--ck-clipboard-drop-target-dot-height));
2029
+ border:1px solid var(--ck-clipboard-drop-target-color);
2030
+ background:var(--ck-clipboard-drop-target-color);
2031
+ margin-left:-1px;
2032
+ }
2033
+ .ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span::after{
2034
+ content:'';
2035
+ width:0;
2036
+ height:0;
2037
+
2038
+ display:block;
2039
+ position:absolute;
2040
+ left:50%;
2041
+ top:calc(-.5 * var(--ck-clipboard-drop-target-dot-height));
2042
+
2043
+ transform:translateX(-50%);
2044
+ border-color:var(--ck-clipboard-drop-target-color) transparent transparent transparent;
2045
+ border-width:calc(var(--ck-clipboard-drop-target-dot-height)) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width));
2046
+ border-style:solid;
2047
+ }
2048
+ .ck.ck-editor__editable .ck-widget.ck-clipboard-drop-target-range{
2049
+ outline:var(--ck-widget-outline-thickness) solid var(--ck-clipboard-drop-target-color) !important;
2050
+ }
2051
+ .ck.ck-editor__editable .ck-widget:-webkit-drag{
2052
+ zoom:0.6;
2053
+ outline:none !important;
2054
+ }
2055
+ .ck.ck-clipboard-drop-target-line{
2056
+ height:0;
2057
+ border:1px solid var(--ck-clipboard-drop-target-color);
2058
+ background:var(--ck-clipboard-drop-target-color);
2059
+ margin-top:-1px;
2060
+ }
2061
+ .ck.ck-clipboard-drop-target-line::before{
2062
+ content:'';
2063
+ position:absolute;
2064
+ top:calc(-.5 * var(--ck-clipboard-drop-target-dot-width));
2065
+ width:0;
2066
+ height:0;
2067
+ border-style:solid;
2068
+ }
2069
+ [dir="ltr"] .ck.ck-clipboard-drop-target-line::before{
2070
+ left:-1px;
2071
+
2072
+ border-width:calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height);
2073
+ border-color:transparent transparent transparent var(--ck-clipboard-drop-target-color);
2074
+ }
2075
+ [dir="rtl"] .ck.ck-clipboard-drop-target-line::before{
2076
+ right:-1px;
2077
+
2078
+ border-width:calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0;
2079
+ border-color:transparent var(--ck-clipboard-drop-target-color) transparent transparent;
2080
+ }
2081
+ :root{
2082
+ --ck-color-code-block-label-background:hsl(0, 0%, 46%);
2083
+ }
2084
+ .ck.ck-editor__editable pre[data-language]::after{
2085
+ top:-1px;
2086
+ right:10px;
2087
+ background:var(--ck-color-code-block-label-background);
2088
+
2089
+ font-size:10px;
2090
+ font-family:var(--ck-font-face);
2091
+ line-height:16px;
2092
+ padding:var(--ck-spacing-tiny) var(--ck-spacing-medium);
2093
+ color:hsl(0, 0%, 100%);
2094
+ white-space:nowrap;
2095
+ }
2096
+ .ck.ck-code-block-dropdown .ck-dropdown__panel{
2097
+ max-height:250px;
2098
+ overflow-y:auto;
2099
+ overflow-x:hidden;
2100
+ }
2101
+ @media (forced-colors: active){
2102
+ .ck.ck-placeholder, .ck .ck-placeholder{
2103
+ forced-color-adjust:preserve-parent-color;
2104
+ }
2105
+ }
2106
+ .ck.ck-placeholder::before, .ck .ck-placeholder::before{
2107
+ cursor:text;
2108
+ }
2109
+ @media (forced-colors: none){
2110
+ .ck.ck-placeholder::before, .ck .ck-placeholder::before{
2111
+ color:var(--ck-color-engine-placeholder-text);
2112
+ }
2113
+ }
2114
+ @media (forced-colors: active){
2115
+ .ck.ck-placeholder::before, .ck .ck-placeholder::before{
2116
+ font-style:italic;
2117
+ margin-left:1px;
2118
+ }
2119
+ }
2120
+ .ck.ck-find-and-replace-form{
2121
+ width:400px;
2122
+ }
2123
+ .ck.ck-find-and-replace-form:focus{
2124
+ outline:none;
2125
+ }
2126
+ .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs,
2127
+ .ck.ck-find-and-replace-form .ck-find-and-replace-form__actions{
2128
+ flex:1 1 auto;
2129
+ flex-direction:row;
2130
+ flex-wrap:wrap;
2131
+ align-items:center;
2132
+ align-content:stretch;
2133
+
2134
+ padding:var(--ck-spacing-large);
2135
+ margin:0;
2136
+
2137
+ }
2138
+ .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs > .ck-button, .ck.ck-find-and-replace-form .ck-find-and-replace-form__actions > .ck-button{
2139
+ flex:0 0 auto;
2140
+ }
2141
+ [dir="ltr"] .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs > * + *, [dir="ltr"] .ck.ck-find-and-replace-form .ck-find-and-replace-form__actions > * + *{
2142
+ margin-left:var(--ck-spacing-standard);
2143
+ }
2144
+ [dir="rtl"] .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs > * + *, [dir="rtl"] .ck.ck-find-and-replace-form .ck-find-and-replace-form__actions > * + *{
2145
+ margin-right:var(--ck-spacing-standard);
2146
+ }
2147
+ .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs .ck-labeled-field-view, .ck.ck-find-and-replace-form .ck-find-and-replace-form__actions .ck-labeled-field-view{
2148
+ flex:1 1 auto;
2149
+ }
2150
+ .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs .ck-labeled-field-view .ck-input, .ck.ck-find-and-replace-form .ck-find-and-replace-form__actions .ck-labeled-field-view .ck-input{
2151
+ width:100%;
2152
+ min-width:50px;
2153
+ }
2154
+ .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs{
2155
+ align-items:flex-start;
2156
+ }
2157
+ .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs > .ck-button-prev > .ck-icon{
2158
+ transform:rotate(90deg);
2159
+ }
2160
+ .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs > .ck-button-next > .ck-icon{
2161
+ transform:rotate(-90deg);
2162
+ }
2163
+ .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs .ck-results-counter{
2164
+ top:50%;
2165
+ transform:translateY(-50%);
2166
+
2167
+ color:var(--ck-color-base-border);
2168
+ }
2169
+ [dir="ltr"] .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs .ck-results-counter{
2170
+ right:var(--ck-spacing-standard);
2171
+ }
2172
+ [dir="rtl"] .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs .ck-results-counter{
2173
+ left:var(--ck-spacing-standard);
2174
+ }
2175
+ .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs > .ck-labeled-field-replace{
2176
+ flex:0 0 100%;
2177
+ padding-top:var(--ck-spacing-standard);
2178
+ }
2179
+ [dir="ltr"] .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs > .ck-labeled-field-replace{
2180
+ margin-left:0;
2181
+ }
2182
+ [dir="rtl"] .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs > .ck-labeled-field-replace{
2183
+ margin-right:0;
2184
+ }
2185
+ .ck.ck-find-and-replace-form .ck-find-and-replace-form__actions{
2186
+ flex-wrap:wrap;
2187
+ justify-content:flex-end;
2188
+ margin-top:calc( -1 * var(--ck-spacing-large));
2189
+ }
2190
+ .ck.ck-find-and-replace-form .ck-find-and-replace-form__actions > .ck-button-find{
2191
+ font-weight:bold;
2192
+ }
2193
+ .ck.ck-find-and-replace-form .ck-find-and-replace-form__actions > .ck-button-find .ck-button__label{
2194
+ padding-left:var(--ck-spacing-large);
2195
+ padding-right:var(--ck-spacing-large);
2196
+ }
2197
+ .ck.ck-find-and-replace-form .ck-switchbutton{
2198
+ width:100%;
2199
+ display:flex;
2200
+ flex-direction:row;
2201
+ flex-wrap:nowrap;
2202
+ justify-content:space-between;
2203
+ align-items:center;
2204
+ }
2205
+ @media screen and (max-width: 600px){
2206
+ .ck.ck-find-and-replace-form{
2207
+ width:300px;
2208
+ max-width:100%;
2209
+ }
2210
+ .ck.ck-find-and-replace-form.ck-find-and-replace-form__input{
2211
+ flex-wrap:wrap;
2212
+ }
2213
+
2214
+ .ck.ck-find-and-replace-form.ck-find-and-replace-form__input .ck-labeled-field-view{
2215
+ flex:1 0 auto;
2216
+ width:100%;
2217
+ margin-bottom:var(--ck-spacing-standard);
2218
+ }
2219
+
2220
+ .ck.ck-find-and-replace-form.ck-find-and-replace-form__input > .ck-button{
2221
+ text-align:center;
2222
+ }
2223
+
2224
+ .ck.ck-find-and-replace-form.ck-find-and-replace-form__input > .ck-button:first-of-type{
2225
+ flex:1 1 auto;
2226
+ }
2227
+
2228
+ [dir="ltr"] .ck.ck-find-and-replace-form.ck-find-and-replace-form__input > .ck-button:first-of-type{
2229
+ margin-left:0;
2230
+ }
2231
+
2232
+ [dir="rtl"] .ck.ck-find-and-replace-form.ck-find-and-replace-form__input > .ck-button:first-of-type{
2233
+ margin-right:0;
2234
+ }
2235
+
2236
+ .ck.ck-find-and-replace-form.ck-find-and-replace-form__input > .ck-button:first-of-type .ck-button__label{
2237
+ width:100%;
2238
+ text-align:center;
2239
+ }
2240
+ .ck.ck-find-and-replace-form.ck-find-and-replace-form__actions > :not(.ck-labeled-field-view){
2241
+ flex-wrap:wrap;
2242
+ flex:1 1 auto;
2243
+ }
2244
+
2245
+ .ck.ck-find-and-replace-form.ck-find-and-replace-form__actions > :not(.ck-labeled-field-view) > .ck-button{
2246
+ text-align:center;
2247
+ }
2248
+
2249
+ .ck.ck-find-and-replace-form.ck-find-and-replace-form__actions > :not(.ck-labeled-field-view) > .ck-button:first-of-type{
2250
+ flex:1 1 auto;
2251
+ }
2252
+
2253
+ [dir="ltr"] .ck.ck-find-and-replace-form.ck-find-and-replace-form__actions > :not(.ck-labeled-field-view) > .ck-button:first-of-type{
2254
+ margin-left:0;
2255
+ }
2256
+
2257
+ [dir="rtl"] .ck.ck-find-and-replace-form.ck-find-and-replace-form__actions > :not(.ck-labeled-field-view) > .ck-button:first-of-type{
2258
+ margin-right:0;
2259
+ }
2260
+
2261
+ .ck.ck-find-and-replace-form.ck-find-and-replace-form__actions > :not(.ck-labeled-field-view) > .ck-button .ck-button__label{
2262
+ width:100%;
2263
+ text-align:center;
2264
+ }
2265
+ }
2266
+ .ck.ck-dropdown.ck-heading-dropdown .ck-dropdown__button .ck-button__label{
2267
+ width:8em;
2268
+ }
2269
+ .ck.ck-dropdown.ck-heading-dropdown .ck-dropdown__panel .ck-list__item{
2270
+ min-width:18em;
2271
+ }
2272
+ :root{
2273
+ --ck-html-embed-content-width:calc(100% - 1.5 * var(--ck-icon-size));
2274
+ --ck-html-embed-source-height:10em;
2275
+ --ck-html-embed-unfocused-outline-width:1px;
2276
+ --ck-html-embed-content-min-height:calc(var(--ck-icon-size) + var(--ck-spacing-standard));
2277
+
2278
+ --ck-html-embed-source-disabled-background:var(--ck-color-base-foreground);
2279
+ --ck-html-embed-source-disabled-color:hsl(0deg 0% 45%);
2280
+ }
2281
+ .ck-widget.raw-html-embed{
2282
+ font-size:var(--ck-font-size-base);
2283
+ background-color:var(--ck-color-base-foreground);
2284
+ }
2285
+ .ck-widget.raw-html-embed:not(.ck-widget_selected):not(:hover){
2286
+ outline:var(--ck-html-embed-unfocused-outline-width) dashed var(--ck-color-widget-blurred-border);
2287
+ }
2288
+ .ck-widget.raw-html-embed[dir="ltr"]{
2289
+ text-align:left;
2290
+ }
2291
+ .ck-widget.raw-html-embed[dir="rtl"]{
2292
+ text-align:right;
2293
+ }
2294
+ .ck-widget.raw-html-embed::before{
2295
+ content:attr(data-html-embed-label);
2296
+ top:calc(-1 * var(--ck-html-embed-unfocused-outline-width));
2297
+ left:var(--ck-spacing-standard);
2298
+ background:hsl(0deg 0% 60%);
2299
+ transition:background var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve);
2300
+ padding:calc(var(--ck-spacing-tiny) + var(--ck-html-embed-unfocused-outline-width)) var(--ck-spacing-small) var(--ck-spacing-tiny);
2301
+ border-radius:0 0 var(--ck-border-radius) var(--ck-border-radius);
2302
+ color:var(--ck-color-base-background);
2303
+ font-size:var(--ck-font-size-tiny);
2304
+ font-family:var(--ck-font-face);
2305
+ }
2306
+ .ck-widget.raw-html-embed[dir="rtl"]::before{
2307
+ left:auto;
2308
+ right:var(--ck-spacing-standard);
2309
+ }
2310
+ .ck-widget.raw-html-embed[dir="ltr"] .ck-widget__type-around .ck-widget__type-around__button.ck-widget__type-around__button_before{
2311
+ margin-left:50px;
2312
+ }
2313
+ .ck.ck-editor__editable.ck-blurred .ck-widget.raw-html-embed.ck-widget_selected::before{
2314
+ top:0px;
2315
+ padding:var(--ck-spacing-tiny) var(--ck-spacing-small);
2316
+ }
2317
+ .ck.ck-editor__editable:not(.ck-blurred) .ck-widget.raw-html-embed.ck-widget_selected::before{
2318
+ top:0;
2319
+ padding:var(--ck-spacing-tiny) var(--ck-spacing-small);
2320
+ background:var(--ck-color-focus-border);
2321
+ }
2322
+ .ck.ck-editor__editable .ck-widget.raw-html-embed:not(.ck-widget_selected):hover::before{
2323
+ top:0px;
2324
+ padding:var(--ck-spacing-tiny) var(--ck-spacing-small);
2325
+ }
2326
+ .ck-widget.raw-html-embed .raw-html-embed__content-wrapper{
2327
+ padding:var(--ck-spacing-standard);
2328
+ }
2329
+ .ck-widget.raw-html-embed .raw-html-embed__buttons-wrapper{
2330
+ top:var(--ck-spacing-standard);
2331
+ right:var(--ck-spacing-standard);
2332
+ }
2333
+ .ck-widget.raw-html-embed .raw-html-embed__buttons-wrapper .ck-button.raw-html-embed__save-button{
2334
+ color:var(--ck-color-button-save);
2335
+ }
2336
+ .ck-widget.raw-html-embed .raw-html-embed__buttons-wrapper .ck-button.raw-html-embed__cancel-button{
2337
+ color:var(--ck-color-button-cancel);
2338
+ }
2339
+ .ck-widget.raw-html-embed .raw-html-embed__buttons-wrapper .ck-button:not(:first-child){
2340
+ margin-top:var(--ck-spacing-small);
2341
+ }
2342
+ .ck-widget.raw-html-embed[dir="rtl"] .raw-html-embed__buttons-wrapper{
2343
+ left:var(--ck-spacing-standard);
2344
+ right:auto;
2345
+ }
2346
+ .ck-widget.raw-html-embed .raw-html-embed__source{
2347
+ box-sizing:border-box;
2348
+ height:var(--ck-html-embed-source-height);
2349
+ width:var(--ck-html-embed-content-width);
2350
+ resize:none;
2351
+ min-width:0;
2352
+ padding:var(--ck-spacing-standard);
2353
+
2354
+ font-family:monospace;
2355
+ tab-size:4;
2356
+ white-space:pre-wrap;
2357
+ font-size:var(--ck-font-size-base);
2358
+ text-align:left;
2359
+ direction:ltr;
2360
+ }
2361
+ .ck-widget.raw-html-embed .raw-html-embed__source[disabled]{
2362
+ background:var(--ck-html-embed-source-disabled-background);
2363
+ color:var(--ck-html-embed-source-disabled-color);
2364
+ -webkit-text-fill-color:var(--ck-html-embed-source-disabled-color);
2365
+ opacity:1;
2366
+ }
2367
+ .ck-widget.raw-html-embed .raw-html-embed__preview{
2368
+ min-height:var(--ck-html-embed-content-min-height);
2369
+ width:var(--ck-html-embed-content-width);
2370
+ }
2371
+ .ck-editor__editable:not(.ck-read-only) .ck-widget.raw-html-embed .raw-html-embed__preview{
2372
+ pointer-events:none;
2373
+ }
2374
+ .ck-widget.raw-html-embed .raw-html-embed__preview-content{
2375
+ box-sizing:border-box;
2376
+ background-color:var(--ck-color-base-foreground);
2377
+ }
2378
+ .ck-widget.raw-html-embed .raw-html-embed__preview-content > *{
2379
+ margin-left:auto;
2380
+ margin-right:auto;
2381
+ }
2382
+ .ck-widget.raw-html-embed .raw-html-embed__preview-placeholder{
2383
+ color:var(--ck-html-embed-source-disabled-color)
2384
+ }
2385
+ :root{
2386
+ --ck-image-insert-insert-by-url-width:250px;
2387
+ }
2388
+ .ck.ck-image-insert-url{
2389
+ --ck-input-width:100%;
2390
+ }
2391
+ .ck.ck-image-insert-url .ck-image-insert-url__action-row{
2392
+ grid-column-gap:var(--ck-spacing-large);
2393
+ margin-top:var(--ck-spacing-large);
2394
+ }
2395
+ .ck.ck-image-insert-url .ck-image-insert-url__action-row .ck-button-save,
2396
+ .ck.ck-image-insert-url .ck-image-insert-url__action-row .ck-button-cancel{
2397
+ justify-content:center;
2398
+ min-width:auto;
2399
+ }
2400
+ .ck.ck-image-insert-url .ck-image-insert-url__action-row .ck-button .ck-button__label{
2401
+ color:var(--ck-color-text);
2402
+ }
2403
+ .ck.ck-image-insert-form > .ck.ck-button{
2404
+ display:block;
2405
+ width:100%;
2406
+ }
2407
+ [dir="ltr"] .ck.ck-image-insert-form > .ck.ck-button{
2408
+ text-align:left;
2409
+ }
2410
+ [dir="rtl"] .ck.ck-image-insert-form > .ck.ck-button{
2411
+ text-align:right;
2412
+ }
2413
+ .ck.ck-image-insert-form > .ck.ck-collapsible{
2414
+
2415
+ min-width:var(--ck-image-insert-insert-by-url-width);
2416
+ }
2417
+ .ck.ck-image-insert-form > .ck.ck-collapsible:not(:first-child){
2418
+ border-top:1px solid var(--ck-color-base-border);
2419
+ }
2420
+ .ck.ck-image-insert-form > .ck.ck-collapsible:not(:last-child){
2421
+ border-bottom:1px solid var(--ck-color-base-border);
2422
+ }
2423
+ .ck.ck-image-insert-form > .ck.ck-image-insert-url{
2424
+ min-width:var(--ck-image-insert-insert-by-url-width);
2425
+ padding:var(--ck-spacing-large);
2426
+ }
2427
+ .ck.ck-image-insert-form:focus{
2428
+ outline:none;
2429
+ }
2430
+ :root{
2431
+ --ck-color-image-upload-icon:hsl(0, 0%, 100%);
2432
+ --ck-color-image-upload-icon-background:hsl(120, 100%, 27%);
2433
+ --ck-image-upload-icon-size:20;
2434
+ --ck-image-upload-icon-width:2px;
2435
+ --ck-image-upload-icon-is-visible:clamp(0px, 100% - 50px, 1px);
2436
+ }
2437
+ .ck-image-upload-complete-icon{
2438
+ opacity:0;
2439
+ background:var(--ck-color-image-upload-icon-background);
2440
+ animation-name:ck-upload-complete-icon-show, ck-upload-complete-icon-hide;
2441
+ animation-fill-mode:forwards, forwards;
2442
+ animation-duration:500ms, 500ms;
2443
+ font-size:calc(1px * var(--ck-image-upload-icon-size));
2444
+ animation-delay:0ms, 3000ms;
2445
+ overflow:hidden;
2446
+ width:calc(var(--ck-image-upload-icon-is-visible) * var(--ck-image-upload-icon-size));
2447
+ height:calc(var(--ck-image-upload-icon-is-visible) * var(--ck-image-upload-icon-size));
2448
+ }
2449
+ .ck-image-upload-complete-icon::after{
2450
+ left:25%;
2451
+
2452
+ top:50%;
2453
+ opacity:0;
2454
+ height:0;
2455
+ width:0;
2456
+
2457
+ transform:scaleX(-1) rotate(135deg);
2458
+ transform-origin:left top;
2459
+ border-top:var(--ck-image-upload-icon-width) solid var(--ck-color-image-upload-icon);
2460
+ border-right:var(--ck-image-upload-icon-width) solid var(--ck-color-image-upload-icon);
2461
+
2462
+ animation-name:ck-upload-complete-icon-check;
2463
+ animation-duration:500ms;
2464
+ animation-delay:500ms;
2465
+ animation-fill-mode:forwards;
2466
+ box-sizing:border-box;
2467
+ }
2468
+ @media (prefers-reduced-motion: reduce){
2469
+ .ck-image-upload-complete-icon{
2470
+ animation-duration:0ms;
2471
+ }
2472
+
2473
+ .ck-image-upload-complete-icon::after{
2474
+ animation:none;
2475
+ opacity:1;
2476
+ width:0.3em;
2477
+ height:0.45em;
2478
+ }
2479
+ }
2480
+ @keyframes ck-upload-complete-icon-show{
2481
+ from{
2482
+ opacity:0;
2483
+ }
2484
+
2485
+ to{
2486
+ opacity:1;
2487
+ }
2488
+ }
2489
+ @keyframes ck-upload-complete-icon-hide{
2490
+ from{
2491
+ opacity:1;
2492
+ }
2493
+
2494
+ to{
2495
+ opacity:0;
2496
+ }
2497
+ }
2498
+ @keyframes ck-upload-complete-icon-check{
2499
+ 0%{
2500
+ opacity:1;
2501
+ width:0;
2502
+ height:0;
2503
+ }
2504
+ 33%{
2505
+ width:0.3em;
2506
+ height:0;
2507
+ }
2508
+ 100%{
2509
+ opacity:1;
2510
+ width:0.3em;
2511
+ height:0.45em;
2512
+ }
2513
+ }
2514
+ :root{
2515
+ --ck-color-upload-placeholder-loader:hsl(0, 0%, 70%);
2516
+ --ck-upload-placeholder-loader-size:32px;
2517
+ --ck-upload-placeholder-image-aspect-ratio:2.8;
2518
+ }
2519
+ .ck .ck-image-upload-placeholder{
2520
+ width:100%;
2521
+ margin:0;
2522
+ }
2523
+ .ck .ck-image-upload-placeholder.image-inline{
2524
+ width:calc( 2 * var(--ck-upload-placeholder-loader-size) * var(--ck-upload-placeholder-image-aspect-ratio));
2525
+ }
2526
+ .ck .ck-image-upload-placeholder img{
2527
+ aspect-ratio:var(--ck-upload-placeholder-image-aspect-ratio);
2528
+ }
2529
+ .ck .ck-upload-placeholder-loader{
2530
+ width:100%;
2531
+ height:100%;
2532
+ }
2533
+ .ck .ck-upload-placeholder-loader::before{
2534
+ width:var(--ck-upload-placeholder-loader-size);
2535
+ height:var(--ck-upload-placeholder-loader-size);
2536
+ border-radius:50%;
2537
+ border-top:3px solid var(--ck-color-upload-placeholder-loader);
2538
+ border-right:2px solid transparent;
2539
+ animation:ck-upload-placeholder-loader 1s linear infinite;
2540
+ }
2541
+ @keyframes ck-upload-placeholder-loader{
2542
+ to{
2543
+ transform:rotate( 360deg);
2544
+ }
2545
+ }
2546
+ .ck.ck-editor__editable .image.ck-appear, .ck.ck-editor__editable .image-inline.ck-appear{
2547
+ animation:fadeIn 700ms;
2548
+ }
2549
+ @media (prefers-reduced-motion: reduce){
2550
+ .ck.ck-editor__editable .image.ck-appear, .ck.ck-editor__editable .image-inline.ck-appear{
2551
+ opacity:1;
2552
+ animation:none;
2553
+ }
2554
+ }
2555
+ .ck.ck-editor__editable .image .ck-progress-bar,
2556
+ .ck.ck-editor__editable .image-inline .ck-progress-bar{
2557
+ height:2px;
2558
+ width:0;
2559
+ background:var(--ck-color-upload-bar-background);
2560
+ transition:width 100ms;
2561
+ }
2562
+ @keyframes fadeIn{
2563
+ from{ opacity:0; }
2564
+ to{ opacity:1; }
2565
+ }
2566
+ .ck .ck-link_selected{
2567
+ background:var(--ck-color-link-selected-background);
2568
+ }
2569
+ .ck .ck-link_selected span.image-inline{
2570
+ outline:var(--ck-widget-outline-thickness) solid var(--ck-color-link-selected-background);
2571
+ }
2572
+ .ck .ck-fake-link-selection{
2573
+ background:var(--ck-color-link-fake-selection);
2574
+ }
2575
+ .ck .ck-fake-link-selection_collapsed{
2576
+ height:100%;
2577
+ border-right:1px solid var(--ck-color-base-text);
2578
+ margin-right:-1px;
2579
+ outline:solid 1px hsla(0, 0%, 100%, .5);
2580
+ }
2581
+ .ck.ck-link-actions .ck-button.ck-link-actions__preview{
2582
+ padding-left:0;
2583
+ padding-right:0;
2584
+ }
2585
+ .ck.ck-link-actions .ck-button.ck-link-actions__preview .ck-button__label{
2586
+ padding:0 var(--ck-spacing-medium);
2587
+ color:var(--ck-color-link-default);
2588
+ text-overflow:ellipsis;
2589
+ cursor:pointer;
2590
+ max-width:var(--ck-input-width);
2591
+ min-width:3em;
2592
+ text-align:center;
2593
+ }
2594
+ .ck.ck-link-actions .ck-button.ck-link-actions__preview .ck-button__label:hover{
2595
+ text-decoration:underline;
2596
+ }
2597
+ .ck.ck-link-actions .ck-button.ck-link-actions__preview,
2598
+ .ck.ck-link-actions .ck-button.ck-link-actions__preview:hover,
2599
+ .ck.ck-link-actions .ck-button.ck-link-actions__preview:focus,
2600
+ .ck.ck-link-actions .ck-button.ck-link-actions__preview:active{
2601
+ background:none;
2602
+ }
2603
+ .ck.ck-link-actions .ck-button.ck-link-actions__preview:active{
2604
+ box-shadow:none;
2605
+ }
2606
+ .ck.ck-link-actions .ck-button.ck-link-actions__preview:focus .ck-button__label{
2607
+ text-decoration:underline;
2608
+ }
2609
+ [dir="ltr"] .ck.ck-link-actions .ck-button:not(:first-child){
2610
+ margin-left:var(--ck-spacing-standard);
2611
+ }
2612
+ [dir="rtl"] .ck.ck-link-actions .ck-button:not(:last-child){
2613
+ margin-left:var(--ck-spacing-standard);
2614
+ }
2615
+ @media screen and (max-width: 600px){
2616
+ .ck.ck-link-actions .ck-button.ck-link-actions__preview{
2617
+ margin:var(--ck-spacing-standard) var(--ck-spacing-standard) 0;
2618
+ }
2619
+
2620
+ .ck.ck-link-actions .ck-button.ck-link-actions__preview .ck-button__label{
2621
+ min-width:0;
2622
+ max-width:100%;
2623
+ }
2624
+ [dir="ltr"] .ck.ck-link-actions .ck-button:not(.ck-link-actions__preview){
2625
+ margin-left:0;
2626
+ }
2627
+
2628
+ [dir="rtl"] .ck.ck-link-actions .ck-button:not(.ck-link-actions__preview){
2629
+ margin-left:0;
2630
+ }
2631
+ }
2632
+ .ck.ck-link-form_layout-vertical{
2633
+ padding:0;
2634
+ min-width:var(--ck-input-width);
2635
+ }
2636
+ .ck.ck-link-form_layout-vertical .ck-labeled-field-view{
2637
+ margin:var(--ck-spacing-large) var(--ck-spacing-large) var(--ck-spacing-small);
2638
+ }
2639
+ .ck.ck-link-form_layout-vertical .ck-labeled-field-view .ck-input-text{
2640
+ min-width:0;
2641
+ width:100%;
2642
+ }
2643
+ .ck.ck-link-form_layout-vertical > .ck-button{
2644
+ padding:var(--ck-spacing-standard);
2645
+ margin:0;
2646
+ width:50%;
2647
+ border-radius:0;
2648
+ }
2649
+ .ck.ck-link-form_layout-vertical > .ck-button:not(:focus){
2650
+ border-top:1px solid var(--ck-color-base-border);
2651
+ }
2652
+ [dir="ltr"] .ck.ck-link-form_layout-vertical > .ck-button{
2653
+ margin-left:0;
2654
+ }
2655
+ [dir="rtl"] .ck.ck-link-form_layout-vertical > .ck-button{
2656
+ margin-left:0;
2657
+ }
2658
+ [dir="rtl"] .ck.ck-link-form_layout-vertical > .ck-button:last-of-type{
2659
+ border-right:1px solid var(--ck-color-base-border);
2660
+ }
2661
+ .ck.ck-link-form_layout-vertical .ck.ck-list{
2662
+ margin:0 var(--ck-spacing-large);
2663
+ }
2664
+ .ck.ck-link-form_layout-vertical .ck.ck-list .ck-button.ck-switchbutton{
2665
+ padding:0;
2666
+ width:100%;
2667
+ }
2668
+ .ck.ck-link-form_layout-vertical .ck.ck-list .ck-button.ck-switchbutton:hover{
2669
+ background:none;
2670
+ }
2671
+ :root{
2672
+ --ck-link-image-indicator-icon-size:20;
2673
+ --ck-link-image-indicator-icon-is-visible:clamp(0px, 100% - 50px, 1px);
2674
+ }
2675
+ .ck.ck-editor__editable figure.image > a::after, .ck.ck-editor__editable a span.image-inline::after{
2676
+ content:"";
2677
+ top:min(var(--ck-spacing-medium), 6%);
2678
+ right:min(var(--ck-spacing-medium), 6%);
2679
+
2680
+ background-color:hsla(0, 0%, 0%, .4);
2681
+ background-image:url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTExLjA3NyAxNSAuOTkxLTEuNDE2YS43NS43NSAwIDEgMSAxLjIyOS44NmwtMS4xNDggMS42NGEuNzQ4Ljc0OCAwIDAgMS0uMjE3LjIwNiA1LjI1MSA1LjI1MSAwIDAgMS04LjUwMy01Ljk1NS43NDEuNzQxIDAgMCAxIC4xMi0uMjc0bDEuMTQ3LTEuNjM5YS43NS43NSAwIDEgMSAxLjIyOC44Nkw0LjkzMyAxMC43bC4wMDYuMDAzYTMuNzUgMy43NSAwIDAgMCA2LjEzMiA0LjI5NGwuMDA2LjAwNHptNS40OTQtNS4zMzVhLjc0OC43NDggMCAwIDEtLjEyLjI3NGwtMS4xNDcgMS42MzlhLjc1Ljc1IDAgMSAxLTEuMjI4LS44NmwuODYtMS4yM2EzLjc1IDMuNzUgMCAwIDAtNi4xNDQtNC4zMDFsLS44NiAxLjIyOWEuNzUuNzUgMCAwIDEtMS4yMjktLjg2bDEuMTQ4LTEuNjRhLjc0OC43NDggMCAwIDEgLjIxNy0uMjA2IDUuMjUxIDUuMjUxIDAgMCAxIDguNTAzIDUuOTU1em0tNC41NjMtMi41MzJhLjc1Ljc1IDAgMCAxIC4xODQgMS4wNDVsLTMuMTU1IDQuNTA1YS43NS43NSAwIDEgMS0xLjIyOS0uODZsMy4xNTUtNC41MDZhLjc1Ljc1IDAgMCAxIDEuMDQ1LS4xODR6Ii8+PC9zdmc+");
2682
+ background-size:14px;
2683
+ background-repeat:no-repeat;
2684
+ background-position:center;
2685
+ border-radius:100%;
2686
+ overflow:hidden;
2687
+ width:calc(var(--ck-link-image-indicator-icon-is-visible) * var(--ck-link-image-indicator-icon-size));
2688
+ height:calc(var(--ck-link-image-indicator-icon-is-visible) * var(--ck-link-image-indicator-icon-size));
2689
+ }
2690
+ .ck.ck-list-properties.ck-list-properties_without-styles{
2691
+ padding:var(--ck-spacing-large);
2692
+ }
2693
+ .ck.ck-list-properties.ck-list-properties_without-styles > *{
2694
+ min-width:14em;
2695
+ }
2696
+ .ck.ck-list-properties.ck-list-properties_without-styles > * + *{
2697
+ margin-top:var(--ck-spacing-standard);
2698
+ }
2699
+ .ck.ck-list-properties.ck-list-properties_with-numbered-properties > .ck-list-styles-list{
2700
+ grid-template-columns:repeat( 4, auto);
2701
+ }
2702
+ .ck.ck-list-properties.ck-list-properties_with-numbered-properties > .ck-collapsible{
2703
+ border-top:1px solid var(--ck-color-base-border);
2704
+ }
2705
+ .ck.ck-list-properties.ck-list-properties_with-numbered-properties > .ck-collapsible > .ck-collapsible__children > *{
2706
+ width:100%;
2707
+ }
2708
+ .ck.ck-list-properties.ck-list-properties_with-numbered-properties > .ck-collapsible > .ck-collapsible__children > * + *{
2709
+ margin-top:var(--ck-spacing-standard);
2710
+ }
2711
+ .ck.ck-list-properties .ck.ck-numbered-list-properties__start-index .ck-input{
2712
+ min-width:auto;
2713
+ width:100%;
2714
+ }
2715
+ .ck.ck-list-properties .ck.ck-numbered-list-properties__reversed-order{
2716
+ background:transparent;
2717
+ padding-left:0;
2718
+ padding-right:0;
2719
+ margin-bottom:calc(-1 * var(--ck-spacing-tiny));
2720
+ }
2721
+ .ck.ck-list-properties .ck.ck-numbered-list-properties__reversed-order:active, .ck.ck-list-properties .ck.ck-numbered-list-properties__reversed-order:hover{
2722
+ box-shadow:none;
2723
+ border-color:transparent;
2724
+ background:none;
2725
+ }
2726
+ :root{
2727
+ --ck-list-style-button-size:44px;
2728
+ }
2729
+ .ck.ck-list-styles-list{
2730
+ grid-template-columns:repeat( 3, auto);
2731
+ row-gap:var(--ck-spacing-medium);
2732
+ column-gap:var(--ck-spacing-medium);
2733
+ padding:var(--ck-spacing-large);
2734
+ }
2735
+ .ck.ck-list-styles-list .ck-button{
2736
+ width:var(--ck-list-style-button-size);
2737
+ height:var(--ck-list-style-button-size);
2738
+ padding:0;
2739
+ margin:0;
2740
+ box-sizing:content-box;
2741
+ }
2742
+ .ck.ck-list-styles-list .ck-button .ck-icon{
2743
+ width:var(--ck-list-style-button-size);
2744
+ height:var(--ck-list-style-button-size);
2745
+ }
2746
+ :root{
2747
+ --ck-media-embed-placeholder-icon-size:3em;
2748
+
2749
+ --ck-color-media-embed-placeholder-url-text:hsl(0, 0%, 46%);
2750
+ --ck-color-media-embed-placeholder-url-text-hover:var(--ck-color-base-text);
2751
+ }
2752
+ .ck-media__wrapper{
2753
+ margin:0 auto;
2754
+ }
2755
+ .ck-media__wrapper .ck-media__placeholder{
2756
+ padding:calc( 3 * var(--ck-spacing-standard));
2757
+ background:var(--ck-color-base-foreground);
2758
+ }
2759
+ .ck-media__wrapper .ck-media__placeholder .ck-media__placeholder__icon{
2760
+ min-width:var(--ck-media-embed-placeholder-icon-size);
2761
+ height:var(--ck-media-embed-placeholder-icon-size);
2762
+ margin-bottom:var(--ck-spacing-large);
2763
+ background-position:center;
2764
+ background-size:cover;
2765
+ }
2766
+ .ck-media__wrapper .ck-media__placeholder .ck-media__placeholder__icon .ck-icon{
2767
+ width:100%;
2768
+ height:100%;
2769
+ }
2770
+ .ck-media__wrapper .ck-media__placeholder .ck-media__placeholder__url__text{
2771
+ color:var(--ck-color-media-embed-placeholder-url-text);
2772
+ white-space:nowrap;
2773
+ text-align:center;
2774
+ font-style:italic;
2775
+ text-overflow:ellipsis;
2776
+ }
2777
+ .ck-media__wrapper .ck-media__placeholder .ck-media__placeholder__url__text:hover{
2778
+ color:var(--ck-color-media-embed-placeholder-url-text-hover);
2779
+ cursor:pointer;
2780
+ text-decoration:underline;
2781
+ }
2782
+ .ck-media__wrapper[data-oembed-url*="open.spotify.com"]{
2783
+ max-width:300px;
2784
+ max-height:380px;
2785
+ }
2786
+ .ck-media__wrapper[data-oembed-url*="google.com/maps"] .ck-media__placeholder__icon,
2787
+ .ck-media__wrapper[data-oembed-url*="goo.gl/maps"] .ck-media__placeholder__icon,
2788
+ .ck-media__wrapper[data-oembed-url*="maps.google.com"] .ck-media__placeholder__icon,
2789
+ .ck-media__wrapper[data-oembed-url*="maps.app.goo.gl"] .ck-media__placeholder__icon{
2790
+ background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTAuMzc4IiBoZWlnaHQ9IjI1NC4xNjciIHZpZXdCb3g9IjAgMCA2Ni4yNDYgNjcuMjQ4Ij48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTcyLjUzMSAtMjE4LjQ1NSkgc2NhbGUoLjk4MDEyKSI+PHJlY3Qgcnk9IjUuMjM4IiByeD0iNS4yMzgiIHk9IjIzMS4zOTkiIHg9IjE3Ni4wMzEiIGhlaWdodD0iNjAuMDk5IiB3aWR0aD0iNjAuMDk5IiBmaWxsPSIjMzRhNjY4IiBwYWludC1vcmRlcj0ibWFya2VycyBzdHJva2UgZmlsbCIvPjxwYXRoIGQ9Ik0yMDYuNDc3IDI2MC45bC0yOC45ODcgMjguOTg3YTUuMjE4IDUuMjE4IDAgMCAwIDMuNzggMS42MWg0OS42MjFjMS42OTQgMCAzLjE5LS43OTggNC4xNDYtMi4wMzd6IiBmaWxsPSIjNWM4OGM1Ii8+PHBhdGggZD0iTTIyNi43NDIgMjIyLjk4OGMtOS4yNjYgMC0xNi43NzcgNy4xNy0xNi43NzcgMTYuMDE0LjAwNyAyLjc2Mi42NjMgNS40NzQgMi4wOTMgNy44NzUuNDMuNzAzLjgzIDEuNDA4IDEuMTkgMi4xMDcuMzMzLjUwMi42NSAxLjAwNS45NSAxLjUwOC4zNDMuNDc3LjY3My45NTcuOTg4IDEuNDQgMS4zMSAxLjc2OSAyLjUgMy41MDIgMy42MzcgNS4xNjguNzkzIDEuMjc1IDEuNjgzIDIuNjQgMi40NjYgMy45OSAyLjM2MyA0LjA5NCA0LjAwNyA4LjA5MiA0LjYgMTMuOTE0di4wMTJjLjE4Mi40MTIuNTE2LjY2Ni44NzkuNjY3LjQwMy0uMDAxLjc2OC0uMzE0LjkzLS43OTkuNjAzLTUuNzU2IDIuMjM4LTkuNzI5IDQuNTg1LTEzLjc5NC43ODItMS4zNSAxLjY3My0yLjcxNSAyLjQ2NS0zLjk5IDEuMTM3LTEuNjY2IDIuMzI4LTMuNCAzLjYzOC01LjE2OS4zMTUtLjQ4Mi42NDUtLjk2Mi45ODgtMS40MzkuMy0uNTAzLjYxNy0xLjAwNi45NS0xLjUwOC4zNTktLjcuNzYtMS40MDQgMS4xOS0yLjEwNyAxLjQyNi0yLjQwMiAyLTUuMTE0IDIuMDA0LTcuODc1IDAtOC44NDQtNy41MTEtMTYuMDE0LTE2Ljc3Ni0xNi4wMTR6IiBmaWxsPSIjZGQ0YjNlIiBwYWludC1vcmRlcj0ibWFya2VycyBzdHJva2UgZmlsbCIvPjxlbGxpcHNlIHJ5PSI1LjU2NCIgcng9IjUuODI4IiBjeT0iMjM5LjAwMiIgY3g9IjIyNi43NDIiIGZpbGw9IiM4MDJkMjciIHBhaW50LW9yZGVyPSJtYXJrZXJzIHN0cm9rZSBmaWxsIi8+PHBhdGggZD0iTTE5MC4zMDEgMjM3LjI4M2MtNC42NyAwLTguNDU3IDMuODUzLTguNDU3IDguNjA2czMuNzg2IDguNjA3IDguNDU3IDguNjA3YzMuMDQzIDAgNC44MDYtLjk1OCA2LjMzNy0yLjUxNiAxLjUzLTEuNTU3IDIuMDg3LTMuOTEzIDIuMDg3LTYuMjkgMC0uMzYyLS4wMjMtLjcyMi0uMDY0LTEuMDc5aC04LjI1N3YzLjA0M2g0Ljg1Yy0uMTk3Ljc1OS0uNTMxIDEuNDUtMS4wNTggMS45ODYtLjk0Mi45NTgtMi4wMjggMS41NDgtMy45MDEgMS41NDgtMi44NzYgMC01LjIwOC0yLjM3Mi01LjIwOC01LjI5OSAwLTIuOTI2IDIuMzMyLTUuMjk5IDUuMjA4LTUuMjk5IDEuMzk5IDAgMi42MTguNDA3IDMuNTg0IDEuMjkzbDIuMzgxLTIuMzhjMC0uMDAyLS4wMDMtLjAwNC0uMDA0LS4wMDUtMS41ODgtMS41MjQtMy42Mi0yLjIxNS01Ljk1NS0yLjIxNXptNC40MyA1LjY2bC4wMDMuMDA2di0uMDAzeiIgZmlsbD0iI2ZmZiIgcGFpbnQtb3JkZXI9Im1hcmtlcnMgc3Ryb2tlIGZpbGwiLz48cGF0aCBkPSJNMjE1LjE4NCAyNTEuOTI5bC03Ljk4IDcuOTc5IDI4LjQ3NyAyOC40NzVjLjI4Ny0uNjQ5LjQ0OS0xLjM2Ni40NDktMi4xMjN2LTMxLjE2NWMtLjQ2OS42NzUtLjkzNCAxLjM0OS0xLjM4MiAyLjAwNS0uNzkyIDEuMjc1LTEuNjgyIDIuNjQtMi40NjUgMy45OS0yLjM0NyA0LjA2NS0zLjk4MiA4LjAzOC00LjU4NSAxMy43OTQtLjE2Mi40ODUtLjUyNy43OTgtLjkzLjc5OS0uMzYzLS4wMDEtLjY5Ny0uMjU1LS44NzktLjY2N3YtLjAxMmMtLjU5My01LjgyMi0yLjIzNy05LjgyLTQuNi0xMy45MTQtLjc4My0xLjM1LTEuNjczLTIuNzE1LTIuNDY2LTMuOTktMS4xMzctMS42NjYtMi4zMjctMy40LTMuNjM3LTUuMTY5bC0uMDAyLS4wMDN6IiBmaWxsPSIjYzNjM2MzIi8+PHBhdGggZD0iTTIxMi45ODMgMjQ4LjQ5NWwtMzYuOTUyIDM2Ljk1M3YuODEyYTUuMjI3IDUuMjI3IDAgMCAwIDUuMjM4IDUuMjM4aDEuMDE1bDM1LjY2Ni0zNS42NjZhMTM2LjI3NSAxMzYuMjc1IDAgMCAwLTIuNzY0LTMuOSAzNy41NzUgMzcuNTc1IDAgMCAwLS45ODktMS40NGMtLjI5OS0uNTAzLS42MTYtMS4wMDYtLjk1LTEuNTA4LS4wODMtLjE2Mi0uMTc2LS4zMjYtLjI2NC0uNDg5eiIgZmlsbD0iI2ZkZGM0ZiIgcGFpbnQtb3JkZXI9Im1hcmtlcnMgc3Ryb2tlIGZpbGwiLz48cGF0aCBkPSJNMjExLjk5OCAyNjEuMDgzbC02LjE1MiA2LjE1MSAyNC4yNjQgMjQuMjY0aC43ODFhNS4yMjcgNS4yMjcgMCAwIDAgNS4yMzktNS4yMzh2LTEuMDQ1eiIgZmlsbD0iI2ZmZiIgcGFpbnQtb3JkZXI9Im1hcmtlcnMgc3Ryb2tlIGZpbGwiLz48L2c+PC9zdmc+);
2791
+ }
2792
+ .ck-media__wrapper[data-oembed-url*="facebook.com"] .ck-media__placeholder{
2793
+ background:hsl(220, 46%, 48%);
2794
+ }
2795
+ .ck-media__wrapper[data-oembed-url*="facebook.com"] .ck-media__placeholder .ck-media__placeholder__icon{
2796
+ background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIxMDI0cHgiIGhlaWdodD0iMTAyNHB4IiB2aWV3Qm94PSIwIDAgMTAyNCAxMDI0IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPiAgICAgICAgPHRpdGxlPkZpbGwgMTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZGVmcz48L2RlZnM+ICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9ImZMb2dvX1doaXRlIiBmaWxsPSIjRkZGRkZFIj4gICAgICAgICAgICA8cGF0aCBkPSJNOTY3LjQ4NCwwIEw1Ni41MTcsMCBDMjUuMzA0LDAgMCwyNS4zMDQgMCw1Ni41MTcgTDAsOTY3LjQ4MyBDMCw5OTguNjk0IDI1LjI5NywxMDI0IDU2LjUyMiwxMDI0IEw1NDcsMTAyNCBMNTQ3LDYyOCBMNDE0LDYyOCBMNDE0LDQ3MyBMNTQ3LDQ3MyBMNTQ3LDM1OS4wMjkgQzU0NywyMjYuNzY3IDYyNy43NzMsMTU0Ljc0NyA3NDUuNzU2LDE1NC43NDcgQzgwMi4yNjksMTU0Ljc0NyA4NTAuODQyLDE1OC45NTUgODY1LDE2MC44MzYgTDg2NSwyOTkgTDc4My4zODQsMjk5LjAzNyBDNzE5LjM5MSwyOTkuMDM3IDcwNywzMjkuNTI5IDcwNywzNzQuMjczIEw3MDcsNDczIEw4NjAuNDg3LDQ3MyBMODQwLjUwMSw2MjggTDcwNyw2MjggTDcwNywxMDI0IEw5NjcuNDg0LDEwMjQgQzk5OC42OTcsMTAyNCAxMDI0LDk5OC42OTcgMTAyNCw5NjcuNDg0IEwxMDI0LDU2LjUxNSBDMTAyNCwyNS4zMDMgOTk4LjY5NywwIDk2Ny40ODQsMCIgaWQ9IkZpbGwtMSI+PC9wYXRoPiAgICAgICAgPC9nPiAgICA8L2c+PC9zdmc+);
2797
+ }
2798
+ .ck-media__wrapper[data-oembed-url*="facebook.com"] .ck-media__placeholder .ck-media__placeholder__url__text{
2799
+ color:hsl(220, 100%, 90%);
2800
+ }
2801
+ .ck-media__wrapper[data-oembed-url*="facebook.com"] .ck-media__placeholder .ck-media__placeholder__url__text:hover{
2802
+ color:hsl(0, 0%, 100%);
2803
+ }
2804
+ .ck-media__wrapper[data-oembed-url*="instagram.com"] .ck-media__placeholder{
2805
+ background:linear-gradient(-135deg,hsl(246, 100%, 39%),hsl(302, 100%, 36%),hsl(0, 100%, 48%));
2806
+ }
2807
+ .ck-media__wrapper[data-oembed-url*="instagram.com"] .ck-media__placeholder .ck-media__placeholder__icon{
2808
+ background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSI1MDRweCIgaGVpZ2h0PSI1MDRweCIgdmlld0JveD0iMCAwIDUwNCA1MDQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+ICAgICAgICA8dGl0bGU+Z2x5cGgtbG9nb19NYXkyMDE2PC90aXRsZT4gICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+ICAgIDxkZWZzPiAgICAgICAgPHBvbHlnb24gaWQ9InBhdGgtMSIgcG9pbnRzPSIwIDAuMTU5IDUwMy44NDEgMC4xNTkgNTAzLjg0MSA1MDMuOTQgMCA1MDMuOTQiPjwvcG9seWdvbj4gICAgPC9kZWZzPiAgICA8ZyBpZD0iZ2x5cGgtbG9nb19NYXkyMDE2IiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxnIGlkPSJHcm91cC0zIj4gICAgICAgICAgICA8bWFzayBpZD0ibWFzay0yIiBmaWxsPSJ3aGl0ZSI+ICAgICAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI3BhdGgtMSI+PC91c2U+ICAgICAgICAgICAgPC9tYXNrPiAgICAgICAgICAgIDxnIGlkPSJDbGlwLTIiPjwvZz4gICAgICAgICAgICA8cGF0aCBkPSJNMjUxLjkyMSwwLjE1OSBDMTgzLjUwMywwLjE1OSAxNzQuOTI0LDAuNDQ5IDE0OC4wNTQsMS42NzUgQzEyMS4yNCwyLjg5OCAxMDIuOTI3LDcuMTU3IDg2LjkwMywxMy4zODUgQzcwLjMzNywxOS44MjIgNTYuMjg4LDI4LjQzNiA0Mi4yODIsNDIuNDQxIEMyOC4yNzcsNTYuNDQ3IDE5LjY2Myw3MC40OTYgMTMuMjI2LDg3LjA2MiBDNi45OTgsMTAzLjA4NiAyLjczOSwxMjEuMzk5IDEuNTE2LDE0OC4yMTMgQzAuMjksMTc1LjA4MyAwLDE4My42NjIgMCwyNTIuMDggQzAsMzIwLjQ5NyAwLjI5LDMyOS4wNzYgMS41MTYsMzU1Ljk0NiBDMi43MzksMzgyLjc2IDYuOTk4LDQwMS4wNzMgMTMuMjI2LDQxNy4wOTcgQzE5LjY2Myw0MzMuNjYzIDI4LjI3Nyw0NDcuNzEyIDQyLjI4Miw0NjEuNzE4IEM1Ni4yODgsNDc1LjcyMyA3MC4zMzcsNDg0LjMzNyA4Ni45MDMsNDkwLjc3NSBDMTAyLjkyNyw0OTcuMDAyIDEyMS4yNCw1MDEuMjYxIDE0OC4wNTQsNTAyLjQ4NCBDMTc0LjkyNCw1MDMuNzEgMTgzLjUwMyw1MDQgMjUxLjkyMSw1MDQgQzMyMC4zMzgsNTA0IDMyOC45MTcsNTAzLjcxIDM1NS43ODcsNTAyLjQ4NCBDMzgyLjYwMSw1MDEuMjYxIDQwMC45MTQsNDk3LjAwMiA0MTYuOTM4LDQ5MC43NzUgQzQzMy41MDQsNDg0LjMzNyA0NDcuNTUzLDQ3NS43MjMgNDYxLjU1OSw0NjEuNzE4IEM0NzUuNTY0LDQ0Ny43MTIgNDg0LjE3OCw0MzMuNjYzIDQ5MC42MTYsNDE3LjA5NyBDNDk2Ljg0Myw0MDEuMDczIDUwMS4xMDIsMzgyLjc2IDUwMi4zMjUsMzU1Ljk0NiBDNTAzLjU1MSwzMjkuMDc2IDUwMy44NDEsMzIwLjQ5NyA1MDMuODQxLDI1Mi4wOCBDNTAzLjg0MSwxODMuNjYyIDUwMy41NTEsMTc1LjA4MyA1MDIuMzI1LDE0OC4yMTMgQzUwMS4xMDIsMTIxLjM5OSA0OTYuODQzLDEwMy4wODYgNDkwLjYxNiw4Ny4wNjIgQzQ4NC4xNzgsNzAuNDk2IDQ3NS41NjQsNTYuNDQ3IDQ2MS41NTksNDIuNDQxIEM0NDcuNTUzLDI4LjQzNiA0MzMuNTA0LDE5LjgyMiA0MTYuOTM4LDEzLjM4NSBDNDAwLjkxNCw3LjE1NyAzODIuNjAxLDIuODk4IDM1NS43ODcsMS42NzUgQzMyOC45MTcsMC40NDkgMzIwLjMzOCwwLjE1OSAyNTEuOTIxLDAuMTU5IFogTTI1MS45MjEsNDUuNTUgQzMxOS4xODYsNDUuNTUgMzI3LjE1NCw0NS44MDcgMzUzLjcxOCw0Ny4wMTkgQzM3OC4yOCw0OC4xMzkgMzkxLjYxOSw1Mi4yNDMgNDAwLjQ5Niw1NS42OTMgQzQxMi4yNTUsNjAuMjYzIDQyMC42NDcsNjUuNzIyIDQyOS40NjIsNzQuNTM4IEM0MzguMjc4LDgzLjM1MyA0NDMuNzM3LDkxLjc0NSA0NDguMzA3LDEwMy41MDQgQzQ1MS43NTcsMTEyLjM4MSA0NTUuODYxLDEyNS43MiA0NTYuOTgxLDE1MC4yODIgQzQ1OC4xOTMsMTc2Ljg0NiA0NTguNDUsMTg0LjgxNCA0NTguNDUsMjUyLjA4IEM0NTguNDUsMzE5LjM0NSA0NTguMTkzLDMyNy4zMTMgNDU2Ljk4MSwzNTMuODc3IEM0NTUuODYxLDM3OC40MzkgNDUxLjc1NywzOTEuNzc4IDQ0OC4zMDcsNDAwLjY1NSBDNDQzLjczNyw0MTIuNDE0IDQzOC4yNzgsNDIwLjgwNiA0MjkuNDYyLDQyOS42MjEgQzQyMC42NDcsNDM4LjQzNyA0MTIuMjU1LDQ0My44OTYgNDAwLjQ5Niw0NDguNDY2IEMzOTEuNjE5LDQ1MS45MTYgMzc4LjI4LDQ1Ni4wMiAzNTMuNzE4LDQ1Ny4xNCBDMzI3LjE1OCw0NTguMzUyIDMxOS4xOTEsNDU4LjYwOSAyNTEuOTIxLDQ1OC42MDkgQzE4NC42NSw0NTguNjA5IDE3Ni42ODQsNDU4LjM1MiAxNTAuMTIzLDQ1Ny4xNCBDMTI1LjU2MSw0NTYuMDIgMTEyLjIyMiw0NTEuOTE2IDEwMy4zNDUsNDQ4LjQ2NiBDOTEuNTg2LDQ0My44OTYgODMuMTk0LDQzOC40MzcgNzQuMzc5LDQyOS42MjEgQzY1LjU2NCw0MjAuODA2IDYwLjEwNCw0MTIuNDE0IDU1LjUzNCw0MDAuNjU1IEM1Mi4wODQsMzkxLjc3OCA0Ny45OCwzNzguNDM5IDQ2Ljg2LDM1My44NzcgQzQ1LjY0OCwzMjcuMzEzIDQ1LjM5MSwzMTkuMzQ1IDQ1LjM5MSwyNTIuMDggQzQ1LjM5MSwxODQuODE0IDQ1LjY0OCwxNzYuODQ2IDQ2Ljg2LDE1MC4yODIgQzQ3Ljk4LDEyNS43MiA1Mi4wODQsMTEyLjM4MSA1NS41MzQsMTAzLjUwNCBDNjAuMTA0LDkxLjc0NSA2NS41NjMsODMuMzUzIDc0LjM3OSw3NC41MzggQzgzLjE5NCw2NS43MjIgOTEuNTg2LDYwLjI2MyAxMDMuMzQ1LDU1LjY5MyBDMTEyLjIyMiw1Mi4yNDMgMTI1LjU2MSw0OC4xMzkgMTUwLjEyMyw0Ny4wMTkgQzE3Ni42ODcsNDUuODA3IDE4NC42NTUsNDUuNTUgMjUxLjkyMSw0NS41NSBaIiBpZD0iRmlsbC0xIiBmaWxsPSIjRkZGRkZGIiBtYXNrPSJ1cmwoI21hc2stMikiPjwvcGF0aD4gICAgICAgIDwvZz4gICAgICAgIDxwYXRoIGQ9Ik0yNTEuOTIxLDMzNi4wNTMgQzIwNS41NDMsMzM2LjA1MyAxNjcuOTQ3LDI5OC40NTcgMTY3Ljk0NywyNTIuMDggQzE2Ny45NDcsMjA1LjcwMiAyMDUuNTQzLDE2OC4xMDYgMjUxLjkyMSwxNjguMTA2IEMyOTguMjk4LDE2OC4xMDYgMzM1Ljg5NCwyMDUuNzAyIDMzNS44OTQsMjUyLjA4IEMzMzUuODk0LDI5OC40NTcgMjk4LjI5OCwzMzYuMDUzIDI1MS45MjEsMzM2LjA1MyBaIE0yNTEuOTIxLDEyMi43MTUgQzE4MC40NzQsMTIyLjcxNSAxMjIuNTU2LDE4MC42MzMgMTIyLjU1NiwyNTIuMDggQzEyMi41NTYsMzIzLjUyNiAxODAuNDc0LDM4MS40NDQgMjUxLjkyMSwzODEuNDQ0IEMzMjMuMzY3LDM4MS40NDQgMzgxLjI4NSwzMjMuNTI2IDM4MS4yODUsMjUyLjA4IEMzODEuMjg1LDE4MC42MzMgMzIzLjM2NywxMjIuNzE1IDI1MS45MjEsMTIyLjcxNSBaIiBpZD0iRmlsbC00IiBmaWxsPSIjRkZGRkZGIj48L3BhdGg+ICAgICAgICA8cGF0aCBkPSJNNDE2LjYyNywxMTcuNjA0IEM0MTYuNjI3LDEzNC4zIDQwMy4wOTIsMTQ3LjgzNCAzODYuMzk2LDE0Ny44MzQgQzM2OS43MDEsMTQ3LjgzNCAzNTYuMTY2LDEzNC4zIDM1Ni4xNjYsMTE3LjYwNCBDMzU2LjE2NiwxMDAuOTA4IDM2OS43MDEsODcuMzczIDM4Ni4zOTYsODcuMzczIEM0MDMuMDkyLDg3LjM3MyA0MTYuNjI3LDEwMC45MDggNDE2LjYyNywxMTcuNjA0IiBpZD0iRmlsbC01IiBmaWxsPSIjRkZGRkZGIj48L3BhdGg+ICAgIDwvZz48L3N2Zz4=);
2809
+ }
2810
+ .ck-media__wrapper[data-oembed-url*="instagram.com"] .ck-media__placeholder .ck-media__placeholder__url__text{
2811
+ color:hsl(302, 100%, 94%);
2812
+ }
2813
+ .ck-media__wrapper[data-oembed-url*="instagram.com"] .ck-media__placeholder .ck-media__placeholder__url__text:hover{
2814
+ color:hsl(0, 0%, 100%);
2815
+ }
2816
+ .ck-media__wrapper[data-oembed-url*="twitter.com"] .ck.ck-media__placeholder{
2817
+ background:linear-gradient( to right, hsl(201, 85%, 70%), hsl(201, 85%, 35%));
2818
+ }
2819
+ .ck-media__wrapper[data-oembed-url*="twitter.com"] .ck.ck-media__placeholder .ck-media__placeholder__icon{
2820
+ background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IldoaXRlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDQwMCA0MDAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQwMCA0MDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPi5zdDB7ZmlsbDojRkZGRkZGO308L3N0eWxlPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik00MDAsMjAwYzAsMTEwLjUtODkuNSwyMDAtMjAwLDIwMFMwLDMxMC41LDAsMjAwUzg5LjUsMCwyMDAsMFM0MDAsODkuNSw0MDAsMjAweiBNMTYzLjQsMzA1LjVjODguNywwLDEzNy4yLTczLjUsMTM3LjItMTM3LjJjMC0yLjEsMC00LjItMC4xLTYuMmM5LjQtNi44LDE3LjYtMTUuMywyNC4xLTI1Yy04LjYsMy44LTE3LjksNi40LTI3LjcsNy42YzEwLTYsMTcuNi0xNS40LDIxLjItMjYuN2MtOS4zLDUuNS0xOS42LDkuNS0zMC42LDExLjdjLTguOC05LjQtMjEuMy0xNS4yLTM1LjItMTUuMmMtMjYuNiwwLTQ4LjIsMjEuNi00OC4yLDQ4LjJjMCwzLjgsMC40LDcuNSwxLjMsMTFjLTQwLjEtMi03NS42LTIxLjItOTkuNC01MC40Yy00LjEsNy4xLTYuNSwxNS40LTYuNSwyNC4yYzAsMTYuNyw4LjUsMzEuNSwyMS41LDQwLjFjLTcuOS0wLjItMTUuMy0yLjQtMjEuOC02YzAsMC4yLDAsMC40LDAsMC42YzAsMjMuNCwxNi42LDQyLjgsMzguNyw0Ny4zYy00LDEuMS04LjMsMS43LTEyLjcsMS43Yy0zLjEsMC02LjEtMC4zLTkuMS0wLjljNi4xLDE5LjIsMjMuOSwzMy4xLDQ1LDMzLjVjLTE2LjUsMTIuOS0zNy4zLDIwLjYtNTkuOSwyMC42Yy0zLjksMC03LjctMC4yLTExLjUtMC43QzExMC44LDI5Ny41LDEzNi4yLDMwNS41LDE2My40LDMwNS41Ii8+PC9zdmc+);
2821
+ }
2822
+ .ck-media__wrapper[data-oembed-url*="twitter.com"] .ck.ck-media__placeholder .ck-media__placeholder__url__text{
2823
+ color:hsl(201, 100%, 86%);
2824
+ }
2825
+ .ck-media__wrapper[data-oembed-url*="twitter.com"] .ck.ck-media__placeholder .ck-media__placeholder__url__text:hover{
2826
+ color:hsl(0, 0%, 100%);
2827
+ }
2828
+ :root{
2829
+ --ck-color-mention-background:hsla(341, 100%, 30%, 0.1);
2830
+ --ck-color-mention-text:hsl(341, 100%, 30%);
2831
+ }
2832
+ :root{
2833
+ --ck-color-restricted-editing-exception-background:hsla(31, 100%, 65%, .2);
2834
+ --ck-color-restricted-editing-exception-hover-background:hsla(31, 100%, 65%, .35);
2835
+ --ck-color-restricted-editing-exception-brackets:hsla(31, 100%, 40%, .4);
2836
+ --ck-color-restricted-editing-selected-exception-background:hsla(31, 100%, 65%, .5);
2837
+ --ck-color-restricted-editing-selected-exception-brackets:hsla(31, 100%, 40%, .6);
2838
+ }
2839
+ .ck-editor__editable .restricted-editing-exception{
2840
+ transition:.2s ease-in-out background;
2841
+ background-color:var(--ck-color-restricted-editing-exception-background);
2842
+ border:1px solid;
2843
+ border-image:linear-gradient(
2844
+ to right,
2845
+ var(--ck-color-restricted-editing-exception-brackets) 0%,
2846
+ var(--ck-color-restricted-editing-exception-brackets) 5px,
2847
+ hsla(0, 0%, 0%, 0) 6px,
2848
+ hsla(0, 0%, 0%, 0) calc(100% - 6px),
2849
+ var(--ck-color-restricted-editing-exception-brackets) calc(100% - 5px),
2850
+ var(--ck-color-restricted-editing-exception-brackets) 100%) 1;
2851
+ }
2852
+ @media (prefers-reduced-motion: reduce){
2853
+ .ck-editor__editable .restricted-editing-exception{
2854
+ transition:none;
2855
+ }
2856
+ }
2857
+ .ck-editor__editable .restricted-editing-exception.restricted-editing-exception_selected{
2858
+ background-color:var(--ck-color-restricted-editing-selected-exception-background);
2859
+ border-image:linear-gradient(
2860
+ to right,
2861
+ var(--ck-color-restricted-editing-selected-exception-brackets) 0%,
2862
+ var(--ck-color-restricted-editing-selected-exception-brackets) 5px,
2863
+ var(--ck-color-restricted-editing-selected-exception-brackets) calc(100% - 5px),
2864
+ var(--ck-color-restricted-editing-selected-exception-brackets) 100%) 1;
2865
+ }
2866
+ .ck-editor__editable .restricted-editing-exception.restricted-editing-exception_collapsed{
2867
+ padding-left:1ch;
2868
+ }
2869
+ .ck-restricted-editing_mode_restricted{
2870
+ cursor:default;
2871
+ }
2872
+ .ck-restricted-editing_mode_restricted *{
2873
+ cursor:default;
2874
+ }
2875
+ .ck-restricted-editing_mode_restricted .restricted-editing-exception{
2876
+ cursor:text;
2877
+ }
2878
+ .ck-restricted-editing_mode_restricted .restricted-editing-exception *{
2879
+ cursor:text;
2880
+ }
2881
+ .ck-restricted-editing_mode_restricted .restricted-editing-exception:hover{
2882
+ background:var(--ck-color-restricted-editing-exception-hover-background);
2883
+ }
2884
+ :root{
2885
+ --ck-character-grid-tile-size:24px;
2886
+ }
2887
+ .ck.ck-character-grid{
2888
+ overflow-y:auto;
2889
+ overflow-x:hidden;
2890
+ }
2891
+ .ck.ck-character-grid .ck-character-grid__tiles{
2892
+ grid-template-columns:repeat(auto-fill, minmax(var(--ck-character-grid-tile-size), 1fr));
2893
+ margin:var(--ck-spacing-standard) var(--ck-spacing-large);
2894
+ grid-gap:var(--ck-spacing-standard);
2895
+ }
2896
+ .ck.ck-character-grid .ck-character-grid__tile{
2897
+ width:var(--ck-character-grid-tile-size);
2898
+ height:var(--ck-character-grid-tile-size);
2899
+ min-width:var(--ck-character-grid-tile-size);
2900
+ min-height:var(--ck-character-grid-tile-size);
2901
+ font-size:1.5em;
2902
+ padding:0;
2903
+ transition:.2s ease box-shadow;
2904
+ border:0;
2905
+ }
2906
+ @media (prefers-reduced-motion: reduce){
2907
+ .ck.ck-character-grid .ck-character-grid__tile{
2908
+ transition:none;
2909
+ }
2910
+ }
2911
+ .ck.ck-character-grid .ck-character-grid__tile:focus:not( .ck-disabled),
2912
+ .ck.ck-character-grid .ck-character-grid__tile:hover:not( .ck-disabled){
2913
+ border:0;
2914
+ box-shadow:inset 0 0 0 1px var(--ck-color-base-background), 0 0 0 2px var(--ck-color-focus-border);
2915
+ }
2916
+ .ck.ck-character-grid .ck-character-grid__tile .ck-button__label{
2917
+ line-height:var(--ck-character-grid-tile-size);
2918
+ width:100%;
2919
+ text-align:center;
2920
+ }
2921
+ .ck.ck-character-info{
2922
+ padding:var(--ck-spacing-small) var(--ck-spacing-large);
2923
+ border-top:1px solid var(--ck-color-base-border);
2924
+ }
2925
+ .ck.ck-character-info > *{
2926
+ text-transform:uppercase;
2927
+ font-size:var(--ck-font-size-small);
2928
+ }
2929
+ .ck.ck-character-info .ck-character-info__name{
2930
+ max-width:280px;
2931
+ text-overflow:ellipsis;
2932
+ overflow:hidden;
2933
+ }
2934
+ .ck.ck-character-info .ck-character-info__code{
2935
+ opacity:.6;
2936
+ }
2937
+ .ck.ck-special-characters-navigation > .ck-label{
2938
+ max-width:160px;
2939
+ text-overflow:ellipsis;
2940
+ overflow:hidden;
2941
+ }
2942
+ .ck.ck-special-characters-navigation > .ck-dropdown .ck-dropdown__panel{
2943
+ max-height:250px;
2944
+ overflow-y:auto;
2945
+ overflow-x:hidden;
2946
+ }
2947
+ @media screen and (max-width: 600px){
2948
+ .ck.ck-special-characters-navigation{
2949
+ max-width:190px;
2950
+ }
2951
+
2952
+ .ck.ck-special-characters-navigation > .ck-form__header__label{
2953
+ text-overflow:ellipsis;
2954
+ overflow:hidden;
2955
+ }
2956
+ }
2957
+ .ck.ck-dropdown.ck-style-dropdown.ck-style-dropdown_multiple-active > .ck-button > .ck-button__label{
2958
+ font-style:italic;
2959
+ }
2960
+ :root{
2961
+ --ck-style-panel-button-width:120px;
2962
+ --ck-style-panel-button-height:80px;
2963
+ --ck-style-panel-button-label-background:hsl(0, 0%, 94.1%);
2964
+ --ck-style-panel-button-hover-label-background:hsl(0, 0%, 92.1%);
2965
+ --ck-style-panel-button-hover-border-color:hsl(0, 0%, 70%);
2966
+ }
2967
+ .ck.ck-style-panel .ck-style-grid{
2968
+ row-gap:var(--ck-spacing-large);
2969
+ column-gap:var(--ck-spacing-large);
2970
+ }
2971
+ .ck.ck-style-panel .ck-style-grid .ck-style-grid__button{
2972
+ --ck-color-button-default-hover-background:var(--ck-color-base-background);
2973
+ --ck-color-button-default-active-background:var(--ck-color-base-background);
2974
+
2975
+ padding:0;
2976
+ width:var(--ck-style-panel-button-width);
2977
+ height:var(--ck-style-panel-button-height);
2978
+ }
2979
+ .ck.ck-style-panel .ck-style-grid .ck-style-grid__button:not(:focus){
2980
+ border:1px solid var(--ck-color-base-border);
2981
+ }
2982
+ .ck.ck-style-panel .ck-style-grid .ck-style-grid__button .ck-button__label{
2983
+ height:22px;
2984
+ line-height:22px;
2985
+ width:100%;
2986
+ padding:0 var(--ck-spacing-medium);
2987
+ overflow:hidden;
2988
+ text-overflow:ellipsis;
2989
+ flex-shrink:0;
2990
+ }
2991
+ .ck.ck-style-panel .ck-style-grid .ck-style-grid__button .ck-style-grid__button__preview{
2992
+ width:100%;
2993
+ overflow:hidden;
2994
+ opacity:.9;
2995
+
2996
+ padding:var(--ck-spacing-medium);
2997
+ background:var(--ck-color-base-background);
2998
+ border:2px solid var(--ck-color-base-background);
2999
+ }
3000
+ .ck.ck-style-panel .ck-style-grid .ck-style-grid__button.ck-disabled{
3001
+ --ck-color-button-default-disabled-background:var(--ck-color-base-foreground);
3002
+ }
3003
+ .ck.ck-style-panel .ck-style-grid .ck-style-grid__button.ck-disabled:not(:focus){
3004
+ border-color:var(--ck-style-panel-button-label-background);
3005
+ }
3006
+ .ck.ck-style-panel .ck-style-grid .ck-style-grid__button.ck-disabled .ck-style-grid__button__preview{
3007
+ opacity:.4;
3008
+
3009
+ border-color:var(--ck-color-base-foreground);
3010
+ filter:saturate(.3);
3011
+ }
3012
+ .ck.ck-style-panel .ck-style-grid .ck-style-grid__button.ck-on{
3013
+ border-color:var(--ck-color-base-active);
3014
+ }
3015
+ .ck.ck-style-panel .ck-style-grid .ck-style-grid__button.ck-on .ck-button__label{
3016
+ box-shadow:0 -1px 0 var(--ck-color-base-active);
3017
+ z-index:1;
3018
+ }
3019
+ .ck.ck-style-panel .ck-style-grid .ck-style-grid__button.ck-on:hover{
3020
+ border-color:var(--ck-color-base-active-focus);
3021
+ }
3022
+ .ck.ck-style-panel .ck-style-grid .ck-style-grid__button:not(.ck-on) .ck-button__label{
3023
+ background:var(--ck-style-panel-button-label-background);
3024
+ }
3025
+ .ck.ck-style-panel .ck-style-grid .ck-style-grid__button:not(.ck-on):hover .ck-button__label{
3026
+ background:var(--ck-style-panel-button-hover-label-background);
3027
+ }
3028
+ .ck.ck-style-panel .ck-style-grid .ck-style-grid__button:hover:not(.ck-disabled):not(.ck-on){
3029
+ border-color:var(--ck-style-panel-button-hover-border-color);
3030
+ }
3031
+ .ck.ck-style-panel .ck-style-grid .ck-style-grid__button:hover:not(.ck-disabled):not(.ck-on) .ck-style-grid__button__preview{
3032
+ opacity:1;
3033
+ }
3034
+ .ck.ck-style-panel .ck-style-panel__style-group > .ck-label{
3035
+ margin:var(--ck-spacing-large) 0;
3036
+ }
3037
+ .ck.ck-style-panel .ck-style-panel__style-group:first-child > .ck-label{
3038
+ margin-top:0;
3039
+ }
3040
+ :root{
3041
+ --ck-style-panel-max-height:470px;
3042
+ }
3043
+ .ck.ck-style-panel{
3044
+ padding:var(--ck-spacing-large);
3045
+ overflow-y:auto;
3046
+ max-height:var(--ck-style-panel-max-height);
3047
+ }
3048
+ [dir="ltr"] .ck.ck-input-color > .ck.ck-input-text{
3049
+ border-top-right-radius:0;
3050
+ border-bottom-right-radius:0;
3051
+ }
3052
+ [dir="rtl"] .ck.ck-input-color > .ck.ck-input-text{
3053
+ border-top-left-radius:0;
3054
+ border-bottom-left-radius:0;
3055
+ }
3056
+ .ck.ck-input-color > .ck.ck-input-text:focus{
3057
+ z-index:0;
3058
+ }
3059
+ .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button{
3060
+ padding:0;
3061
+ }
3062
+ [dir="ltr"] .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button{
3063
+ border-top-left-radius:0;
3064
+ border-bottom-left-radius:0;
3065
+ }
3066
+ [dir="ltr"] .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button:not(:focus){
3067
+ border-left:1px solid transparent;
3068
+ }
3069
+ [dir="rtl"] .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button{
3070
+ border-top-right-radius:0;
3071
+ border-bottom-right-radius:0;
3072
+ }
3073
+ [dir="rtl"] .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button:not(:focus){
3074
+ border-right:1px solid transparent;
3075
+ }
3076
+ .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button.ck-disabled{
3077
+ background:var(--ck-color-input-disabled-background);
3078
+ }
3079
+ .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button > .ck.ck-input-color__button__preview{
3080
+ border-radius:0;
3081
+
3082
+ width:20px;
3083
+ height:20px;
3084
+ border:1px solid var(--ck-color-input-border);
3085
+ }
3086
+ .ck-rounded-corners .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button > .ck.ck-input-color__button__preview,
3087
+ .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button > .ck.ck-input-color__button__preview.ck-rounded-corners{
3088
+ border-radius:var(--ck-border-radius);
3089
+ }
3090
+ .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button > .ck.ck-input-color__button__preview > .ck.ck-input-color__button__preview__no-color-indicator{
3091
+ top:-30%;
3092
+ left:50%;
3093
+ height:150%;
3094
+ width:8%;
3095
+ background:hsl(0, 100%, 50%);
3096
+ border-radius:2px;
3097
+ transform:rotate(45deg);
3098
+ transform-origin:50%;
3099
+ }
3100
+ .ck.ck-input-color .ck.ck-input-color__remove-color{
3101
+ width:100%;
3102
+ padding:calc(var(--ck-spacing-standard) / 2) var(--ck-spacing-standard);
3103
+
3104
+ border-bottom-left-radius:0;
3105
+ border-bottom-right-radius:0;
3106
+ }
3107
+ .ck.ck-input-color .ck.ck-input-color__remove-color:not(:focus){
3108
+ border-bottom:1px solid var(--ck-color-input-border);
3109
+ }
3110
+ [dir="ltr"] .ck.ck-input-color .ck.ck-input-color__remove-color{
3111
+ border-top-right-radius:0;
3112
+ }
3113
+ [dir="rtl"] .ck.ck-input-color .ck.ck-input-color__remove-color{
3114
+ border-top-left-radius:0;
3115
+ }
3116
+ .ck.ck-input-color .ck.ck-input-color__remove-color .ck.ck-icon{
3117
+ margin-right:var(--ck-spacing-standard);
3118
+ }
3119
+ [dir="rtl"] .ck.ck-input-color .ck.ck-input-color__remove-color .ck.ck-icon{
3120
+ margin-right:0;
3121
+ margin-left:var(--ck-spacing-standard);
3122
+ }
3123
+ .ck.ck-form{
3124
+ padding:0 0 var(--ck-spacing-large);
3125
+ }
3126
+ .ck.ck-form:focus{
3127
+ outline:none;
3128
+ }
3129
+ .ck.ck-form .ck.ck-input-text{
3130
+ min-width:100%;
3131
+ width:0;
3132
+ }
3133
+ .ck.ck-form .ck.ck-dropdown{
3134
+ min-width:100%;
3135
+ }
3136
+ .ck.ck-form .ck.ck-dropdown .ck-dropdown__button:not(:focus){
3137
+ border:1px solid var(--ck-color-base-border);
3138
+ }
3139
+ .ck.ck-form .ck.ck-dropdown .ck-dropdown__button .ck-button__label{
3140
+ width:100%;
3141
+ }
3142
+ .ck.ck-form__row{
3143
+ padding:var(--ck-spacing-standard) var(--ck-spacing-large) 0;
3144
+ }
3145
+ [dir="ltr"] .ck.ck-form__row > *:not(.ck-label) + *{
3146
+ margin-left:var(--ck-spacing-large);
3147
+ }
3148
+ [dir="rtl"] .ck.ck-form__row > *:not(.ck-label) + *{
3149
+ margin-right:var(--ck-spacing-large);
3150
+ }
3151
+ .ck.ck-form__row > .ck-label{
3152
+ width:100%;
3153
+ min-width:100%;
3154
+ }
3155
+ .ck.ck-form__row.ck-table-form__action-row{
3156
+ margin-top:var(--ck-spacing-large);
3157
+ }
3158
+ .ck.ck-form__row.ck-table-form__action-row .ck-button .ck-button__label{
3159
+ color:var(--ck-color-text);
3160
+ }
3161
+ :root{
3162
+ --ck-insert-table-dropdown-padding:10px;
3163
+ --ck-insert-table-dropdown-box-height:11px;
3164
+ --ck-insert-table-dropdown-box-width:12px;
3165
+ --ck-insert-table-dropdown-box-margin:1px;
3166
+ }
3167
+ .ck .ck-insert-table-dropdown__grid{
3168
+ width:calc(var(--ck-insert-table-dropdown-box-width) * 10 + var(--ck-insert-table-dropdown-box-margin) * 20 + var(--ck-insert-table-dropdown-padding) * 2);
3169
+ padding:var(--ck-insert-table-dropdown-padding) var(--ck-insert-table-dropdown-padding) 0;
3170
+ }
3171
+ .ck .ck-insert-table-dropdown__label,
3172
+ .ck[dir=rtl] .ck-insert-table-dropdown__label{
3173
+ text-align:center;
3174
+ }
3175
+ .ck .ck-insert-table-dropdown-grid-box{
3176
+ min-width:var(--ck-insert-table-dropdown-box-width);
3177
+ min-height:var(--ck-insert-table-dropdown-box-height);
3178
+ margin:var(--ck-insert-table-dropdown-box-margin);
3179
+ border:1px solid var(--ck-color-base-border);
3180
+ border-radius:1px;
3181
+ outline:none;
3182
+ transition:none;
3183
+ }
3184
+ @media (prefers-reduced-motion: reduce){
3185
+ .ck .ck-insert-table-dropdown-grid-box{
3186
+ transition:none;
3187
+ }
3188
+ }
3189
+ .ck .ck-insert-table-dropdown-grid-box:focus{
3190
+ box-shadow:none;
3191
+ }
3192
+ .ck .ck-insert-table-dropdown-grid-box.ck-on{
3193
+ border-color:var(--ck-color-focus-border);
3194
+ background:var(--ck-color-focus-outer-shadow);
3195
+ }
3196
+ .ck.ck-table-cell-properties-form{
3197
+ width:320px;
3198
+ }
3199
+ .ck.ck-table-cell-properties-form .ck-form__row.ck-table-cell-properties-form__padding-row{
3200
+ align-self:flex-end;
3201
+ padding:0;
3202
+ width:25%;
3203
+ }
3204
+ .ck.ck-table-cell-properties-form .ck-form__row.ck-table-cell-properties-form__alignment-row .ck.ck-toolbar{
3205
+ background:none;
3206
+ margin-top:var(--ck-spacing-standard);
3207
+ }
3208
+ :root{
3209
+ --ck-color-selector-focused-cell-background:hsla(212, 90%, 80%, .3);
3210
+ }
3211
+ .ck-widget.table td.ck-editor__nested-editable.ck-editor__nested-editable_focused,
3212
+ .ck-widget.table th.ck-editor__nested-editable.ck-editor__nested-editable_focused,
3213
+ .ck-widget.table td.ck-editor__nested-editable:focus,
3214
+ .ck-widget.table th.ck-editor__nested-editable:focus{
3215
+ background:var(--ck-color-selector-focused-cell-background);
3216
+ outline:1px solid var(--ck-color-focus-border);
3217
+ outline-offset:-1px;
3218
+ }
3219
+ :root{
3220
+ --ck-table-properties-error-arrow-size:6px;
3221
+ --ck-table-properties-min-error-width:150px;
3222
+ }
3223
+ .ck.ck-table-form .ck-form__row.ck-table-form__border-row .ck-labeled-field-view > .ck-label{
3224
+ font-size:var(--ck-font-size-tiny);
3225
+ text-align:center;
3226
+ }
3227
+ .ck.ck-table-form .ck-form__row.ck-table-form__border-row .ck-table-form__border-style,
3228
+ .ck.ck-table-form .ck-form__row.ck-table-form__border-row .ck-table-form__border-width{
3229
+ width:80px;
3230
+ min-width:80px;
3231
+ max-width:80px;
3232
+ }
3233
+ .ck.ck-table-form .ck-form__row.ck-table-form__dimensions-row{
3234
+ padding:0;
3235
+ }
3236
+ .ck.ck-table-form .ck-form__row.ck-table-form__dimensions-row .ck-table-form__dimensions-row__width,
3237
+ .ck.ck-table-form .ck-form__row.ck-table-form__dimensions-row .ck-table-form__dimensions-row__height{
3238
+ margin:0
3239
+ }
3240
+ .ck.ck-table-form .ck-form__row.ck-table-form__dimensions-row .ck-table-form__dimension-operator{
3241
+ align-self:flex-end;
3242
+ display:inline-block;
3243
+ height:var(--ck-ui-component-min-height);
3244
+ line-height:var(--ck-ui-component-min-height);
3245
+ margin:0 var(--ck-spacing-small);
3246
+ }
3247
+ .ck.ck-table-form .ck.ck-labeled-field-view{
3248
+ padding-top:var(--ck-spacing-standard);
3249
+ }
3250
+ .ck.ck-table-form .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status{
3251
+ border-radius:0;
3252
+
3253
+ background:var(--ck-color-base-error);
3254
+ color:var(--ck-color-base-background);
3255
+ padding:var(--ck-spacing-small) var(--ck-spacing-medium);
3256
+ min-width:var(--ck-table-properties-min-error-width);
3257
+ text-align:center;
3258
+
3259
+ animation:ck-table-form-labeled-view-status-appear .15s ease both;
3260
+ }
3261
+ .ck-rounded-corners .ck.ck-table-form .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status,
3262
+ .ck.ck-table-form .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status.ck-rounded-corners{
3263
+ border-radius:var(--ck-border-radius);
3264
+ }
3265
+ .ck.ck-table-form .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status::after{
3266
+ border-color:transparent transparent var(--ck-color-base-error) transparent;
3267
+ border-width:0 var(--ck-table-properties-error-arrow-size) var(--ck-table-properties-error-arrow-size) var(--ck-table-properties-error-arrow-size);
3268
+ border-style:solid;
3269
+ }
3270
+ @media (prefers-reduced-motion: reduce){
3271
+ .ck.ck-table-form .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status{
3272
+ animation:none;
3273
+ }
3274
+ }
3275
+ .ck.ck-table-form .ck.ck-labeled-field-view .ck-input.ck-error:not(:focus) + .ck.ck-labeled-field-view__status{
3276
+ display:none;
3277
+ }
3278
+ @keyframes ck-table-form-labeled-view-status-appear{
3279
+ 0%{
3280
+ opacity:0;
3281
+ }
3282
+
3283
+ 100%{
3284
+ opacity:1;
3285
+ }
3286
+ }
3287
+ .ck.ck-table-properties-form{
3288
+ width:320px;
3289
+ }
3290
+ .ck.ck-table-properties-form .ck-form__row.ck-table-properties-form__alignment-row{
3291
+ align-self:flex-end;
3292
+ padding:0;
3293
+ }
3294
+ .ck.ck-table-properties-form .ck-form__row.ck-table-properties-form__alignment-row .ck.ck-toolbar{
3295
+ background:none;
3296
+ margin-top:var(--ck-spacing-standard);
3297
+ }
3298
+ .ck.ck-table-properties-form .ck-form__row.ck-table-properties-form__alignment-row .ck.ck-toolbar .ck-toolbar__items > *{
3299
+ width:40px;
3300
+ }
3301
+ :root{
3302
+ --ck-table-selected-cell-background:hsla(208, 90%, 80%, .3);
3303
+ }
3304
+ .ck.ck-editor__editable .table table td.ck-editor__editable_selected,
3305
+ .ck.ck-editor__editable .table table th.ck-editor__editable_selected{
3306
+ position:relative;
3307
+ caret-color:transparent;
3308
+ outline:unset;
3309
+ box-shadow:unset;
3310
+ }
3311
+ .ck.ck-editor__editable .table table td.ck-editor__editable_selected:after, .ck.ck-editor__editable .table table th.ck-editor__editable_selected:after{
3312
+ content:'';
3313
+ pointer-events:none;
3314
+ background-color:var(--ck-table-selected-cell-background);
3315
+ position:absolute;
3316
+ top:0;
3317
+ left:0;
3318
+ right:0;
3319
+ bottom:0;
3320
+ }
3321
+ .ck.ck-editor__editable .table table td.ck-editor__editable_selected ::selection,
3322
+ .ck.ck-editor__editable .table table th.ck-editor__editable_selected ::selection,
3323
+ .ck.ck-editor__editable .table table td.ck-editor__editable_selected:focus,
3324
+ .ck.ck-editor__editable .table table th.ck-editor__editable_selected:focus{
3325
+ background-color:transparent;
3326
+ }
3327
+ .ck.ck-editor__editable .table table td.ck-editor__editable_selected .ck-widget, .ck.ck-editor__editable .table table th.ck-editor__editable_selected .ck-widget{
3328
+ outline:unset;
3329
+ }
3330
+ .ck.ck-editor__editable .table table td.ck-editor__editable_selected .ck-widget > .ck-widget__selection-handle, .ck.ck-editor__editable .table table th.ck-editor__editable_selected .ck-widget > .ck-widget__selection-handle{
3331
+ display:none;
3332
+ }
3333
+ :root{
3334
+ --ck-widget-outline-thickness:3px;
3335
+ --ck-widget-handler-icon-size:16px;
3336
+ --ck-widget-handler-animation-duration:200ms;
3337
+ --ck-widget-handler-animation-curve:ease;
3338
+
3339
+ --ck-color-widget-blurred-border:hsl(0, 0%, 87%);
3340
+ --ck-color-widget-hover-border:hsl(43, 100%, 62%);
3341
+ --ck-color-widget-editable-focus-background:var(--ck-color-base-background);
3342
+ --ck-color-widget-drag-handler-icon-color:var(--ck-color-base-background);
3343
+ }
3344
+ .ck .ck-widget{
3345
+ outline-width:var(--ck-widget-outline-thickness);
3346
+ outline-style:solid;
3347
+ outline-color:transparent;
3348
+ transition:outline-color var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve);
3349
+ }
3350
+ @media (prefers-reduced-motion: reduce){
3351
+ .ck .ck-widget{
3352
+ transition:none;
3353
+ }
3354
+ }
3355
+ .ck .ck-widget.ck-widget_selected,
3356
+ .ck .ck-widget.ck-widget_selected:hover{
3357
+ outline:var(--ck-widget-outline-thickness) solid var(--ck-color-focus-border);
3358
+ }
3359
+ .ck .ck-widget:hover{
3360
+ outline-color:var(--ck-color-widget-hover-border);
3361
+ }
3362
+ .ck .ck-editor__nested-editable{
3363
+ border:1px solid transparent;
3364
+ }
3365
+ .ck .ck-editor__nested-editable.ck-editor__nested-editable_focused,
3366
+ .ck .ck-editor__nested-editable:focus{
3367
+ box-shadow:var(--ck-inner-shadow), 0 0;
3368
+ }
3369
+ @media (forced-colors: none){
3370
+ .ck .ck-editor__nested-editable.ck-editor__nested-editable_focused, .ck .ck-editor__nested-editable:focus{
3371
+ background-color:var(--ck-color-widget-editable-focus-background);
3372
+ }
3373
+ }
3374
+ .ck .ck-editor__nested-editable.ck-editor__nested-editable_focused:not(td, th), .ck .ck-editor__nested-editable:focus:not(td, th){
3375
+ outline:none;
3376
+ border:var(--ck-focus-ring);
3377
+ }
3378
+ .ck .ck-widget.ck-widget_with-selection-handle .ck-widget__selection-handle{
3379
+ padding:4px;
3380
+ box-sizing:border-box;
3381
+ background-color:transparent;
3382
+ opacity:0;
3383
+ transition:background-color var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve), visibility var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve), opacity var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve);
3384
+ border-radius:var(--ck-border-radius) var(--ck-border-radius) 0 0;
3385
+ transform:translateY(-100%);
3386
+ left:calc(0px - var(--ck-widget-outline-thickness));
3387
+ top:0;
3388
+ }
3389
+ @media (prefers-reduced-motion: reduce){
3390
+ .ck .ck-widget.ck-widget_with-selection-handle .ck-widget__selection-handle{
3391
+ transition:none;
3392
+ }
3393
+ }
3394
+ .ck .ck-widget.ck-widget_with-selection-handle .ck-widget__selection-handle .ck-icon{
3395
+ width:var(--ck-widget-handler-icon-size);
3396
+ height:var(--ck-widget-handler-icon-size);
3397
+ color:var(--ck-color-widget-drag-handler-icon-color);
3398
+ }
3399
+ .ck .ck-widget.ck-widget_with-selection-handle .ck-widget__selection-handle .ck-icon .ck-icon__selected-indicator{
3400
+ opacity:0;
3401
+ transition:opacity 300ms var(--ck-widget-handler-animation-curve);
3402
+ }
3403
+ @media (prefers-reduced-motion: reduce){
3404
+ .ck .ck-widget.ck-widget_with-selection-handle .ck-widget__selection-handle .ck-icon .ck-icon__selected-indicator{
3405
+ transition:none;
3406
+ }
3407
+ }
3408
+ .ck .ck-widget.ck-widget_with-selection-handle .ck-widget__selection-handle:hover .ck-icon .ck-icon__selected-indicator{
3409
+ opacity:1;
3410
+ }
3411
+ .ck .ck-widget.ck-widget_with-selection-handle:hover > .ck-widget__selection-handle{
3412
+ opacity:1;
3413
+ background-color:var(--ck-color-widget-hover-border);
3414
+ }
3415
+ .ck .ck-widget.ck-widget_with-selection-handle.ck-widget_selected > .ck-widget__selection-handle, .ck .ck-widget.ck-widget_with-selection-handle.ck-widget_selected:hover > .ck-widget__selection-handle{
3416
+ opacity:1;
3417
+ background-color:var(--ck-color-focus-border);
3418
+ }
3419
+ .ck .ck-widget.ck-widget_with-selection-handle.ck-widget_selected > .ck-widget__selection-handle .ck-icon .ck-icon__selected-indicator, .ck .ck-widget.ck-widget_with-selection-handle.ck-widget_selected:hover > .ck-widget__selection-handle .ck-icon .ck-icon__selected-indicator{
3420
+ opacity:1;
3421
+ }
3422
+ .ck[dir="rtl"] .ck-widget.ck-widget_with-selection-handle .ck-widget__selection-handle{
3423
+ left:auto;
3424
+ right:calc(0px - var(--ck-widget-outline-thickness));
3425
+ }
3426
+ .ck.ck-editor__editable.ck-read-only .ck-widget{
3427
+ transition:none;
3428
+ }
3429
+ .ck.ck-editor__editable.ck-read-only .ck-widget:not(.ck-widget_selected){
3430
+ --ck-widget-outline-thickness:0px;
3431
+ }
3432
+ .ck.ck-editor__editable.ck-read-only .ck-widget.ck-widget_with-selection-handle .ck-widget__selection-handle,
3433
+ .ck.ck-editor__editable.ck-read-only .ck-widget.ck-widget_with-selection-handle .ck-widget__selection-handle:hover{
3434
+ background:var(--ck-color-widget-blurred-border);
3435
+ }
3436
+ .ck.ck-editor__editable.ck-blurred .ck-widget.ck-widget_selected,
3437
+ .ck.ck-editor__editable.ck-blurred .ck-widget.ck-widget_selected:hover{
3438
+ outline-color:var(--ck-color-widget-blurred-border);
3439
+ }
3440
+ .ck.ck-editor__editable.ck-blurred .ck-widget.ck-widget_selected.ck-widget_with-selection-handle > .ck-widget__selection-handle,
3441
+ .ck.ck-editor__editable.ck-blurred .ck-widget.ck-widget_selected.ck-widget_with-selection-handle:hover > .ck-widget__selection-handle,
3442
+ .ck.ck-editor__editable.ck-blurred .ck-widget.ck-widget_selected.ck-widget_with-selection-handle > .ck-widget__selection-handle:hover,
3443
+ .ck.ck-editor__editable.ck-blurred .ck-widget.ck-widget_selected.ck-widget_with-selection-handle:hover > .ck-widget__selection-handle:hover{
3444
+ background:var(--ck-color-widget-blurred-border);
3445
+ }
3446
+ .ck.ck-editor__editable > .ck-widget.ck-widget_with-selection-handle:first-child,
3447
+ .ck.ck-editor__editable blockquote > .ck-widget.ck-widget_with-selection-handle:first-child{
3448
+ margin-top:calc(1em + var(--ck-widget-handler-icon-size));
3449
+ }
3450
+ :root{
3451
+ --ck-resizer-size:10px;
3452
+ --ck-resizer-offset:calc( ( var(--ck-resizer-size) / -2) - 2px);
3453
+ --ck-resizer-border-width:1px;
3454
+ }
3455
+ .ck .ck-widget__resizer{
3456
+ outline:1px solid var(--ck-color-resizer);
3457
+ }
3458
+ .ck .ck-widget__resizer__handle{
3459
+ width:var(--ck-resizer-size);
3460
+ height:var(--ck-resizer-size);
3461
+ background:var(--ck-color-focus-border);
3462
+ border:var(--ck-resizer-border-width) solid hsl(0, 0%, 100%);
3463
+ border-radius:var(--ck-resizer-border-radius);
3464
+ }
3465
+ .ck .ck-widget__resizer__handle.ck-widget__resizer__handle-top-left{
3466
+ top:var(--ck-resizer-offset);
3467
+ left:var(--ck-resizer-offset);
3468
+ }
3469
+ .ck .ck-widget__resizer__handle.ck-widget__resizer__handle-top-right{
3470
+ top:var(--ck-resizer-offset);
3471
+ right:var(--ck-resizer-offset);
3472
+ }
3473
+ .ck .ck-widget__resizer__handle.ck-widget__resizer__handle-bottom-right{
3474
+ bottom:var(--ck-resizer-offset);
3475
+ right:var(--ck-resizer-offset);
3476
+ }
3477
+ .ck .ck-widget__resizer__handle.ck-widget__resizer__handle-bottom-left{
3478
+ bottom:var(--ck-resizer-offset);
3479
+ left:var(--ck-resizer-offset);
3480
+ }
3481
+ :root{
3482
+ --ck-widget-type-around-button-size:20px;
3483
+ --ck-color-widget-type-around-button-active:var(--ck-color-focus-border);
3484
+ --ck-color-widget-type-around-button-hover:var(--ck-color-widget-hover-border);
3485
+ --ck-color-widget-type-around-button-blurred-editable:var(--ck-color-widget-blurred-border);
3486
+ --ck-color-widget-type-around-button-radar-start-alpha:0;
3487
+ --ck-color-widget-type-around-button-radar-end-alpha:.3;
3488
+ --ck-color-widget-type-around-button-icon:var(--ck-color-base-background);
3489
+ }
3490
+ .ck .ck-widget .ck-widget__type-around__button{
3491
+ width:var(--ck-widget-type-around-button-size);
3492
+ height:var(--ck-widget-type-around-button-size);
3493
+ background:var(--ck-color-widget-type-around-button);
3494
+ border-radius:100px;
3495
+ transition:opacity var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve), background var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve);
3496
+
3497
+ opacity:0;
3498
+
3499
+ pointer-events:none;
3500
+ }
3501
+ @media (prefers-reduced-motion: reduce){
3502
+ .ck .ck-widget .ck-widget__type-around__button{
3503
+ transition:none;
3504
+ }
3505
+ }
3506
+ .ck .ck-widget .ck-widget__type-around__button svg{
3507
+ width:10px;
3508
+ height:8px;
3509
+ transform:translate(-50%,-50%);
3510
+ transition:transform .5s ease;
3511
+ margin-top:1px;
3512
+ }
3513
+ @media (prefers-reduced-motion: reduce){
3514
+ .ck .ck-widget .ck-widget__type-around__button svg{
3515
+ transition:none;
3516
+ }
3517
+ }
3518
+ .ck .ck-widget .ck-widget__type-around__button svg *{
3519
+ stroke-dasharray:10;
3520
+ stroke-dashoffset:0;
3521
+
3522
+ fill:none;
3523
+ stroke:var(--ck-color-widget-type-around-button-icon);
3524
+ stroke-width:1.5px;
3525
+ stroke-linecap:round;
3526
+ stroke-linejoin:round;
3527
+ }
3528
+ .ck .ck-widget .ck-widget__type-around__button svg line{
3529
+ stroke-dasharray:7;
3530
+ }
3531
+ .ck .ck-widget .ck-widget__type-around__button:hover{
3532
+ animation:ck-widget-type-around-button-sonar 1s ease infinite;
3533
+ }
3534
+ .ck .ck-widget .ck-widget__type-around__button:hover svg polyline{
3535
+ animation:ck-widget-type-around-arrow-dash 2s linear;
3536
+ }
3537
+ .ck .ck-widget .ck-widget__type-around__button:hover svg line{
3538
+ animation:ck-widget-type-around-arrow-tip-dash 2s linear;
3539
+ }
3540
+ @media (prefers-reduced-motion: reduce){
3541
+ .ck .ck-widget .ck-widget__type-around__button:hover{
3542
+ animation:none;
3543
+ }
3544
+ .ck .ck-widget .ck-widget__type-around__button:hover svg polyline{
3545
+ animation:none;
3546
+ }
3547
+
3548
+ .ck .ck-widget .ck-widget__type-around__button:hover svg line{
3549
+ animation:none;
3550
+ }
3551
+ }
3552
+ .ck .ck-widget.ck-widget_selected > .ck-widget__type-around > .ck-widget__type-around__button, .ck .ck-widget:hover > .ck-widget__type-around > .ck-widget__type-around__button{
3553
+ opacity:1;
3554
+ pointer-events:auto;
3555
+ }
3556
+ .ck .ck-widget:not(.ck-widget_selected) > .ck-widget__type-around > .ck-widget__type-around__button{
3557
+ background:var(--ck-color-widget-type-around-button-hover);
3558
+ }
3559
+ .ck .ck-widget.ck-widget_selected > .ck-widget__type-around > .ck-widget__type-around__button,
3560
+ .ck .ck-widget > .ck-widget__type-around > .ck-widget__type-around__button:hover{
3561
+ background:var(--ck-color-widget-type-around-button-active);
3562
+ }
3563
+ .ck .ck-widget.ck-widget_selected > .ck-widget__type-around > .ck-widget__type-around__button::after, .ck .ck-widget > .ck-widget__type-around > .ck-widget__type-around__button:hover::after{
3564
+ width:calc(var(--ck-widget-type-around-button-size) - 2px);
3565
+ height:calc(var(--ck-widget-type-around-button-size) - 2px);
3566
+ border-radius:100px;
3567
+ background:linear-gradient(135deg, hsla(0,0%,100%,0) 0%, hsla(0,0%,100%,.3) 100%);
3568
+ }
3569
+ .ck .ck-widget.ck-widget_with-selection-handle > .ck-widget__type-around > .ck-widget__type-around__button_before{
3570
+ margin-left:20px;
3571
+ }
3572
+ .ck .ck-widget .ck-widget__type-around__fake-caret{
3573
+ pointer-events:none;
3574
+ height:1px;
3575
+ animation:ck-widget-type-around-fake-caret-pulse linear 1s infinite normal forwards;
3576
+ outline:solid 1px hsla(0, 0%, 100%, .5);
3577
+ background:var(--ck-color-base-text);
3578
+ }
3579
+ .ck .ck-widget.ck-widget_selected.ck-widget_type-around_show-fake-caret_before,
3580
+ .ck .ck-widget.ck-widget_selected.ck-widget_type-around_show-fake-caret_after{
3581
+ outline-color:transparent;
3582
+ }
3583
+ .ck .ck-widget.ck-widget_type-around_show-fake-caret_before.ck-widget_selected:hover, .ck .ck-widget.ck-widget_type-around_show-fake-caret_after.ck-widget_selected:hover{
3584
+ outline-color:var(--ck-color-widget-hover-border);
3585
+ }
3586
+ .ck .ck-widget.ck-widget_type-around_show-fake-caret_before > .ck-widget__type-around > .ck-widget__type-around__button, .ck .ck-widget.ck-widget_type-around_show-fake-caret_after > .ck-widget__type-around > .ck-widget__type-around__button{
3587
+ opacity:0;
3588
+ pointer-events:none;
3589
+ }
3590
+ .ck .ck-widget.ck-widget_type-around_show-fake-caret_before.ck-widget_with-selection-handle.ck-widget_selected > .ck-widget__selection-handle, .ck .ck-widget.ck-widget_type-around_show-fake-caret_after.ck-widget_with-selection-handle.ck-widget_selected > .ck-widget__selection-handle, .ck .ck-widget.ck-widget_type-around_show-fake-caret_before.ck-widget_with-selection-handle.ck-widget_selected:hover > .ck-widget__selection-handle, .ck .ck-widget.ck-widget_type-around_show-fake-caret_after.ck-widget_with-selection-handle.ck-widget_selected:hover > .ck-widget__selection-handle{
3591
+ opacity:0
3592
+ }
3593
+ .ck .ck-widget.ck-widget_type-around_show-fake-caret_before.ck-widget_selected.ck-widget_with-resizer > .ck-widget__resizer, .ck .ck-widget.ck-widget_type-around_show-fake-caret_after.ck-widget_selected.ck-widget_with-resizer > .ck-widget__resizer{
3594
+ opacity:0
3595
+ }
3596
+ .ck[dir="rtl"] .ck-widget.ck-widget_with-selection-handle .ck-widget__type-around > .ck-widget__type-around__button_before{
3597
+ margin-left:0;
3598
+ margin-right:20px;
3599
+ }
3600
+ .ck-editor__nested-editable.ck-editor__editable_selected .ck-widget.ck-widget_selected > .ck-widget__type-around > .ck-widget__type-around__button, .ck-editor__nested-editable.ck-editor__editable_selected .ck-widget:hover > .ck-widget__type-around > .ck-widget__type-around__button{
3601
+ opacity:0;
3602
+ pointer-events:none;
3603
+ }
3604
+ .ck-editor__editable.ck-blurred .ck-widget.ck-widget_selected > .ck-widget__type-around > .ck-widget__type-around__button:not(:hover){
3605
+ background:var(--ck-color-widget-type-around-button-blurred-editable);
3606
+ }
3607
+ .ck-editor__editable.ck-blurred .ck-widget.ck-widget_selected > .ck-widget__type-around > .ck-widget__type-around__button:not(:hover) svg *{
3608
+ stroke:hsl(0,0%,60%);
3609
+ }
3610
+ @keyframes ck-widget-type-around-arrow-dash{
3611
+ 0%{
3612
+ stroke-dashoffset:10;
3613
+ }
3614
+ 20%, 100%{
3615
+ stroke-dashoffset:0;
3616
+ }
3617
+ }
3618
+ @keyframes ck-widget-type-around-arrow-tip-dash{
3619
+ 0%, 20%{
3620
+ stroke-dashoffset:7;
3621
+ }
3622
+ 40%, 100%{
3623
+ stroke-dashoffset:0;
3624
+ }
3625
+ }
3626
+ @keyframes ck-widget-type-around-button-sonar{
3627
+ 0%{
3628
+ box-shadow:0 0 0 0 hsla(var(--ck-color-focus-border-coordinates), var(--ck-color-widget-type-around-button-radar-start-alpha));
3629
+ }
3630
+ 50%{
3631
+ box-shadow:0 0 0 5px hsla(var(--ck-color-focus-border-coordinates), var(--ck-color-widget-type-around-button-radar-end-alpha));
3632
+ }
3633
+ 100%{
3634
+ box-shadow:0 0 0 5px hsla(var(--ck-color-focus-border-coordinates), var(--ck-color-widget-type-around-button-radar-start-alpha));
3635
+ }
3636
+ }
3637
+ @keyframes ck-widget-type-around-fake-caret-pulse{
3638
+ 0%{
3639
+ opacity:1;
3640
+ }
3641
+ 49%{
3642
+ opacity:1;
3643
+ }
3644
+ 50%{
3645
+ opacity:0;
3646
+ }
3647
+ 99%{
3648
+ opacity:0;
3649
+ }
3650
+ 100%{
3651
+ opacity:1;
3652
+ }
3653
+ }