suneditor 3.0.0-alpha.1 → 3.0.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suneditor",
3
- "version": "3.0.0-alpha.1",
3
+ "version": "3.0.0-alpha.2",
4
4
  "description": "Vanilla javascript based WYSIWYG web editor",
5
5
  "author": "Yi JiHong",
6
6
  "license": "MIT",
@@ -33,9 +33,6 @@
33
33
  "node_modules"
34
34
  ],
35
35
  "types": "typings/index.d.ts",
36
- "engines": {
37
- "node": ">=14.21.3"
38
- },
39
36
  "devDependencies": {
40
37
  "@babel/core": "^7.22.1",
41
38
  "@codemirror/lang-html": "^6.4.3",
@@ -95,4 +92,4 @@
95
92
  "javascript",
96
93
  "vanillajs"
97
94
  ]
98
- }
95
+ }
@@ -575,10 +575,6 @@
575
575
  height: 54px;
576
576
  }
577
577
 
578
- .sun-editor-editable audio.active {
579
- outline: 2px solid var(--se-edit-hover);
580
- }
581
-
582
578
  /** -- Paragraph styles custom -- */
583
579
  /* Bordered */
584
580
  .sun-editor-editable .__se__p-bordered,
@@ -83,6 +83,7 @@ export function OnKeyDown_wysiwyg(frameContext, e) {
83
83
 
84
84
  switch (keyCode) {
85
85
  case 8 /** backspace key */: {
86
+ this.component.deselect();
86
87
  _styleNodes = this.__cacheStyleNodes;
87
88
  if (selectRange && this._hardDelete()) {
88
89
  e.preventDefault();
@@ -300,6 +301,7 @@ export function OnKeyDown_wysiwyg(frameContext, e) {
300
301
  break;
301
302
  }
302
303
  case 46 /** delete key */: {
304
+ this.component.deselect();
303
305
  _styleNodes = this.__cacheStyleNodes;
304
306
  if (selectRange && this._hardDelete()) {
305
307
  e.preventDefault();
@@ -542,6 +544,7 @@ export function OnKeyDown_wysiwyg(frameContext, e) {
542
544
  break;
543
545
  }
544
546
  case 13 /** enter key */: {
547
+ this.component.deselect();
545
548
  const brBlock = this.format.getBrLine(selectionNode, null);
546
549
 
547
550
  if (this.editor.frameOptions.get('charCounter_type') === 'byte-html') {
@@ -32,7 +32,6 @@ const EventManager = function (editor) {
32
32
  this.__close_move = null;
33
33
  this.__geckoActiveEvent = null;
34
34
  this.__scrollparents = [];
35
- this.__scrollID = '';
36
35
  this.__cacheStyleNodes = [];
37
36
  this.__selectionSyncEvent = null;
38
37
  // input plugins
@@ -45,6 +44,7 @@ const EventManager = function (editor) {
45
44
  this.__focusTemp = this.carrierWrapper.querySelector('.__se__focus__temp__');
46
45
  this.__retainTimer = null;
47
46
  this.__eventDoc = null;
47
+ // this.__scrollID = '';
48
48
  };
49
49
 
50
50
  EventManager.prototype = {
@@ -663,6 +663,18 @@ EventManager.prototype = {
663
663
  this.addEvent(eventWysiwyg, 'blur', OnBlur_wysiwyg.bind(this, fc), false);
664
664
  this.addEvent(codeArea, 'mousedown', OnFocus_code.bind(this, fc), false);
665
665
 
666
+ /** drag handle */
667
+ const dragHandle = this.editor.frameContext.get('wrapper').querySelector('.se-drag-handle');
668
+ this.addEvent(
669
+ dragHandle,
670
+ 'wheel',
671
+ (event) => {
672
+ event.preventDefault();
673
+ this.component.deselect();
674
+ },
675
+ false
676
+ );
677
+
666
678
  /** line breaker */
667
679
  this.addEvent(
668
680
  [fc.get('lineBreaker_t'), fc.get('lineBreaker_b')],
@@ -790,24 +802,26 @@ EventManager.prototype = {
790
802
  const openCont = this.editor.opendControllers;
791
803
  if (!openCont.length) return;
792
804
 
793
- if (isMobile) {
794
- this.__rePositionController(openCont);
795
- } else {
796
- if (this.__scrollID) _w.clearTimeout(this.__scrollID);
805
+ this.__rePositionController(openCont);
797
806
 
798
- if (_DragHandle.get('__dragHandler') && !domUtils.hasClass(_DragHandle.get('__dragHandler'), 'se-drag-handle-full')) _DragHandle.get('__dragHandler').style.display = 'none';
807
+ // if (isMobile) {
808
+ // this.__rePositionController(openCont);
809
+ // } else {
810
+ // if (this.__scrollID) _w.clearTimeout(this.__scrollID);
799
811
 
800
- for (let i = 0; i < openCont.length; i++) {
801
- if (openCont[i].notInCarrier) continue;
802
- openCont[i].inst?.hide();
803
- }
812
+ // if (_DragHandle.get('__dragHandler') && !domUtils.hasClass(_DragHandle.get('__dragHandler'), 'se-drag-handle-full')) _DragHandle.get('__dragHandler').style.display = 'none';
804
813
 
805
- this.__scrollID = _w.setTimeout(() => {
806
- _w.clearTimeout(this.__scrollID);
807
- this.__scrollID = '';
808
- this.__rePositionController(openCont);
809
- }, 250);
810
- }
814
+ // for (let i = 0; i < openCont.length; i++) {
815
+ // if (openCont[i].notInCarrier) continue;
816
+ // openCont[i].inst?.hide();
817
+ // }
818
+
819
+ // this.__scrollID = _w.setTimeout(() => {
820
+ // _w.clearTimeout(this.__scrollID);
821
+ // this.__scrollID = '';
822
+ // this.__rePositionController(openCont);
823
+ // }, 250);
824
+ // }
811
825
  },
812
826
 
813
827
  __rePositionController(cont) {
@@ -321,14 +321,10 @@ Component.prototype = {
321
321
  */
322
322
  _setComponentLineBreaker(element) {
323
323
  this.eventManager._lineBreakComp = null;
324
- const fc = this.editor.frameContext;
325
- const wysiwyg = fc.get('wysiwyg');
326
-
327
324
  const info = this.get(element);
328
325
  if (!info) return;
329
326
 
330
- const yScroll = wysiwyg.scrollY || wysiwyg.scrollTop || 0;
331
- const wScroll = wysiwyg.scrollX || wysiwyg.scrollLeft || 0;
327
+ const fc = this.editor.frameContext;
332
328
  const container = info.container;
333
329
  const isNonSelected = domUtils.hasClass(container, 'se-flex-component');
334
330
  const lb_t = fc.get('lineBreaker_t');
@@ -343,15 +339,16 @@ Component.prototype = {
343
339
  let componentTop, w;
344
340
  const isRtl = this.options.get('_rtl');
345
341
  const dir = isRtl ? ['right', 'left'] : ['left', 'right'];
342
+ const { t, scrollX, scrollY } = this.offset.getSize(offsetTarget);
346
343
  if (isList ? !container.previousSibling : !this.format.isLine(container.previousElementSibling)) {
347
344
  const tH = numbers.get(_w.getComputedStyle(lb_t).height, 1);
348
345
  this.eventManager._lineBreakComp = container;
349
- componentTop = this.offset.get(offsetTarget).top + yScroll;
346
+ componentTop = t + scrollY;
350
347
  w = target.offsetWidth / 2 / 2;
351
- t_style.top = componentTop - yScroll - tH / 2 + 'px';
348
+ t_style.top = componentTop - scrollY - tH / 2 + 'px';
352
349
  t_style[dir[0]] = (isNonSelected ? 4 : this.offset.get(target).left + w) + 'px';
353
350
  t_style[dir[1]] = '';
354
- lb_t.setAttribute('data-offset', yScroll + ',' + wScroll);
351
+ lb_t.setAttribute('data-offset', scrollY + ',' + scrollX);
355
352
  t_style.display = 'block';
356
353
  } else {
357
354
  t_style.display = 'none';
@@ -365,16 +362,16 @@ Component.prototype = {
365
362
 
366
363
  if (!componentTop) {
367
364
  this.eventManager._lineBreakComp = container;
368
- componentTop = this.offset.get(offsetTarget).top + yScroll;
365
+ componentTop = t + scrollY;
369
366
  w = target.offsetWidth / 2 / 2;
370
367
  }
371
368
 
372
- b_style.top = componentTop + target.offsetHeight - yScroll - bH / 2 + 'px';
369
+ b_style.top = componentTop + target.offsetHeight - scrollY - bH / 2 + 'px';
373
370
  b_style.right = '';
374
371
  b_style.left = this.offset.get(target).left + (isRtl ? 0 : target.offsetWidth) - (isNonSelected ? 0 : w) - (isNonSelected ? bW / 2 : bW) + 'px';
375
372
 
376
373
  const bDir = 'left';
377
- lb_b.setAttribute('data-offset', yScroll + ',' + bDir + ',' + wScroll);
374
+ lb_b.setAttribute('data-offset', scrollY + ',' + bDir + ',' + scrollX);
378
375
  b_style.display = 'block';
379
376
  } else {
380
377
  b_style.display = 'none';
@@ -1147,11 +1147,6 @@ Editor.prototype = {
1147
1147
  */
1148
1148
  _iframeAutoHeight(fc) {
1149
1149
  const autoFrame = fc.get('_iframeAuto');
1150
- if (autoFrame) {
1151
- this._w.setTimeout(() => {
1152
- fc.get('wysiwygFrame').style.height = autoFrame.offsetHeight + 'px';
1153
- }, 0);
1154
- }
1155
1150
 
1156
1151
  if (autoFrame) {
1157
1152
  this._w.setTimeout(() => {
@@ -65,7 +65,7 @@ const Figure = function (inst, controls, params) {
65
65
  this._resizeClientX = 0;
66
66
  this._resizeClientY = 0;
67
67
  this._resize_direction = '';
68
- this._floatClassRegExp = '__se__float\\-[a-z]+';
68
+ this._floatClassStr = '__se__float-none|__se__float-left|__se__float-center|__se__float-right';
69
69
  this.__preventSizechange = false;
70
70
  this.__revertSize = { w: '', h: '' };
71
71
  this.__offset = {};
@@ -305,6 +305,8 @@ Figure.prototype = {
305
305
  _figure.main.style.display = 'block';
306
306
 
307
307
  if (_DragHandle.get('__overInfo') !== ON_OVER_COMPONENT) {
308
+ // align button
309
+ this._setAlignIcon();
308
310
  this.editor._visibleControllers(true, true);
309
311
  // size
310
312
  const size = this.getSize(target);
@@ -325,9 +327,6 @@ Figure.prototype = {
325
327
  this._element_l = l;
326
328
  this._element_t = t;
327
329
 
328
- // align button
329
- this._setAlignIcon();
330
-
331
330
  // drag
332
331
  if (_DragHandle.get('__overInfo') !== ON_OVER_COMPONENT || domUtils.hasClass(figureInfo.container, 'se-input-component')) {
333
332
  this._setDragEvent(_figure.main);
@@ -397,7 +396,7 @@ Figure.prototype = {
397
396
  */
398
397
  setAlign(target, align) {
399
398
  if (!target) target = this._element;
400
- align = align || 'none';
399
+ this.align = align = align || 'none';
401
400
 
402
401
  const figure = Figure.GetContainer(target);
403
402
  const container = figure.container;
@@ -412,10 +411,15 @@ Figure.prototype = {
412
411
  }
413
412
 
414
413
  if (!domUtils.hasClass(container, '__se__float-' + align)) {
415
- domUtils.removeClass(container, this._floatClassRegExp);
414
+ domUtils.removeClass(container, this._floatClassStr);
416
415
  domUtils.addClass(container, '__se__float-' + align);
417
416
  }
418
417
 
418
+ if (this.autoRatio) {
419
+ const { w, h } = this.getSize(this._element);
420
+ this.__setCoverPaddingBottom(w, h);
421
+ }
422
+
419
423
  this._setAlignIcon();
420
424
  },
421
425
 
@@ -626,8 +630,8 @@ Figure.prototype = {
626
630
  h = numbers.is(h) ? h + this.sizeUnit : h;
627
631
  sizeTarget.style.height = this._element.style.height = this.autoRatio && !this.isVertical ? '100%' : h;
628
632
  if (this.autoRatio) {
629
- this._cover.style.paddingBottom = h;
630
633
  this._cover.style.height = h;
634
+ this.__setCoverPaddingBottom(w, h);
631
635
  }
632
636
  }
633
637
 
@@ -637,6 +641,15 @@ Figure.prototype = {
637
641
  this._saveCurrentSize();
638
642
  },
639
643
 
644
+ __setCoverPaddingBottom(w, h) {
645
+ this._cover.style.height = h;
646
+ if (/%$/.test(w) && this.align === 'center') {
647
+ this._cover.style.paddingBottom = !/%$/.test(h) ? h : numbers.get((numbers.get(h, 2) / 100) * numbers.get(w, 2), 2) + '%';
648
+ } else {
649
+ this._cover.style.paddingBottom = h;
650
+ }
651
+ },
652
+
640
653
  _setAutoSize() {
641
654
  if (this._caption) this._caption.style.marginTop = '';
642
655
  this.deleteTransform();
@@ -671,8 +684,10 @@ Figure.prototype = {
671
684
  this._element.style.maxWidth = '';
672
685
  this._element.style.height = this.autoRatio ? '100%' : heightPercentage ? '' : h;
673
686
 
674
- if (this.autoRatio) this._cover.style.paddingBottom = h;
675
687
  if (this.align === 'center') this.setAlign(this._element, this.align);
688
+ if (this.autoRatio) {
689
+ this.__setCoverPaddingBottom(w, h);
690
+ }
676
691
 
677
692
  this._setCaptionPosition(this._element);
678
693
 
@@ -686,7 +701,7 @@ Figure.prototype = {
686
701
  this._container.style.width = '';
687
702
  this._container.style.height = '';
688
703
 
689
- domUtils.removeClass(this._container, this._floatClassRegExp);
704
+ domUtils.removeClass(this._container, this._floatClassStr);
690
705
  domUtils.addClass(this._container, '__se__float-' + this.align);
691
706
 
692
707
  if (this.align === 'center') this.setAlign(this._element, this.align);
@@ -812,10 +827,9 @@ Figure.prototype = {
812
827
  };
813
828
 
814
829
  function OnScrollDragHandler(dragHandle, figureMain) {
815
- const offset = this.offset.get(figureMain);
816
830
  dragHandle.style.display = 'block';
817
- dragHandle.style.left = offset.left + (this.options.get('_rtl') ? dragHandle.offsetWidth : figureMain.offsetWidth - dragHandle.offsetWidth * 1.5) + 'px';
818
- dragHandle.style.top = offset.top - dragHandle.offsetHeight + 'px';
831
+ dragHandle.style.left = figureMain.offsetLeft + (this.options.get('_rtl') ? dragHandle.offsetWidth : figureMain.offsetWidth - dragHandle.offsetWidth * 1.5) + 'px';
832
+ dragHandle.style.top = figureMain.offsetTop - dragHandle.offsetHeight + 'px';
819
833
  }
820
834
 
821
835
  function GetRotateValue(element) {
@@ -142,15 +142,6 @@ Audio_.prototype = {
142
142
  }
143
143
  },
144
144
 
145
- /**
146
- * @override controller
147
- */
148
- close() {
149
- if (!this._element) return;
150
- domUtils.removeClass(this._element, 'active');
151
- domUtils.removeClass(this._element.parentElement, 'se-figure-selected');
152
- },
153
-
154
145
  /**
155
146
  * @override core
156
147
  */
@@ -183,10 +174,8 @@ Audio_.prototype = {
183
174
  */
184
175
  ready(target) {
185
176
  if (_DragHandle.get('__overInfo') === ON_OVER_COMPONENT) return;
186
- domUtils.addClass(target, 'active');
187
- domUtils.addClass(target.parentElement, 'se-figure-selected');
188
177
  this._element = target;
189
- this.controller.open(target, null, { isWWTarget: false, initMethod: UnSelect.bind(null, target), addOffset: null });
178
+ this.controller.open(target, null, { isWWTarget: false, addOffset: null });
190
179
  },
191
180
 
192
181
  /**
@@ -392,13 +381,6 @@ Audio_.prototype = {
392
381
  constructor: Audio_
393
382
  };
394
383
 
395
- function UnSelect(target) {
396
- if (target) {
397
- domUtils.removeClass(target, 'active');
398
- domUtils.removeClass(target.parentElement, 'se-figure-selected');
399
- }
400
- }
401
-
402
384
  async function UploadCallBack(info, xmlHttp) {
403
385
  if ((await this.triggerEvent('audioUploadHandler', { xmlHttp, info })) === NO_EVENT) {
404
386
  const response = JSON.parse(xmlHttp.responseText);
@@ -1 +0,0 @@
1
- .sun-editor{background-color:#fff;border:1px solid #dadada;box-sizing:border-box;color:#000;font-family:Helvetica Neue;font-size:16px;height:auto;width:auto}.sun-editor *{box-sizing:border-box;overflow:visible}.sun-editor-common button,.sun-editor-common input,.sun-editor-common select,.sun-editor-common textarea{font-size:14px;line-height:1.5}.sun-editor-common blockquote,.sun-editor-common body,.sun-editor-common button,.sun-editor-common code,.sun-editor-common dd,.sun-editor-common div,.sun-editor-common dl,.sun-editor-common dt,.sun-editor-common fieldset,.sun-editor-common form,.sun-editor-common h1,.sun-editor-common h2,.sun-editor-common h3,.sun-editor-common h4,.sun-editor-common h5,.sun-editor-common h6,.sun-editor-common input,.sun-editor-common legend,.sun-editor-common li,.sun-editor-common ol,.sun-editor-common p,.sun-editor-common pre,.sun-editor-common select,.sun-editor-common td,.sun-editor-common textarea,.sun-editor-common th,.sun-editor-common ul{border:0;margin:0;padding:0}.sun-editor-common dl,.sun-editor-common menu,.sun-editor-common ol,.sun-editor-common ul{list-style:none}.sun-editor-common hr{margin:6px 0!important}.sun-editor textarea{border:0;padding:0;resize:none}.sun-editor button{background-color:initial;border:0;cursor:pointer;outline:none;touch-action:manipulation}.sun-editor button,.sun-editor input,.sun-editor select,.sun-editor textarea{vertical-align:middle}.sun-editor button span{display:block;margin:0;padding:0}.sun-editor button .se-txt{display:block;line-height:2;margin-top:0;max-height:24px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sun-editor .se-wrapper .CodeMirror,.sun-editor .se-wrapper .cm-editor,.sun-editor .se-wrapper .se-code-viewer-mirror{font-size:13px}.sun-editor button *{backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;pointer-events:none}.sun-editor button{color:#000}.sun-editor .se-btn{border:0 solid #ccc;border-radius:2px;float:left;font-size:12px;height:34px;line-height:1.8;margin:1px;padding:0;width:34px}.sun-editor .se-form-group button.se-btn{border-width:1px}.sun-editor .se-btn.se-btn-info{color:#3288ff}.sun-editor .se-btn-w-auto{width:auto!important}.sun-editor .se-btn:not(.on):not(.active):enabled:focus,.sun-editor .se-btn:not(.on):not(.active):enabled:hover{background-color:#e1e1e1;border-color:#d1d1d1}.sun-editor .se-btn:not(.on):not(.active):enabled.__se__active,.sun-editor .se-btn:not(.on):not(.active):enabled:active{background-color:#ececec;border-color:#ececec!important;-webkit-box-shadow:0 0 0 .3rem #ececec;box-shadow:0 0 0 .3rem #ececec;outline:1px solid #b1b1b1!important;transition:box-shadow .1s ease-in-out}.sun-editor .se-menu-list li:hover .se-btn-input input:enabled,.sun-editor .se-menu-list li:hover .se-side-btn-a:not(.on):not(.active):enabled,.sun-editor .se-menu-list li:hover .se-side-btn-after:not(.on):not(.active):enabled,.sun-editor .se-menu-list li:hover .se-side-btn-b:not(.on):not(.active):enabled,.sun-editor .se-menu-list li:hover .se-side-btn-before:not(.on):not(.active):enabled{border:1px solid #e1e1e1}.sun-editor .se-menu-list li .se-btn-input.active input:enabled,.sun-editor .se-menu-list li .se-btn-input.on input:enabled,.sun-editor .se-menu-list li .se-side-btn-after.active:enabled,.sun-editor .se-menu-list li .se-side-btn-after.on:enabled,.sun-editor .se-menu-list li .se-side-btn-before.active:enabled,.sun-editor .se-menu-list li .se-side-btn-before.on:enabled{border-color:#80bdff}.sun-editor .se-menu-list li .se-side-btn-after.active:enabled,.sun-editor .se-menu-list li .se-side-btn-after.on:enabled{border-left:1px solid;border-right:0}.sun-editor .se-menu-list li .se-side-btn-before.active:enabled,.sun-editor .se-menu-list li .se-side-btn-before.on:enabled{border-left:0;border-right:1px solid}.sun-editor .se-menu-list li .se-btn-input.active input:enabled,.sun-editor .se-menu-list li .se-btn-input.on input:enabled{border-style:solid;border-width:1px}.sun-editor .se-menu-list li:hover .se-btn-input.active input:enabled,.sun-editor .se-menu-list li:hover .se-btn-input.on input:enabled,.sun-editor .se-menu-list li:hover .se-side-btn-after.active:enabled,.sun-editor .se-menu-list li:hover .se-side-btn-after.on:enabled,.sun-editor .se-menu-list li:hover .se-side-btn-before.active:enabled,.sun-editor .se-menu-list li:hover .se-side-btn-before.on:enabled{border-color:#3f9dff}.sun-editor .se-btn:enabled.on{background-color:#eaf3ff;border-color:#c4ddff;color:#4592ff}.sun-editor .se-btn:enabled.on:focus,.sun-editor .se-btn:enabled.on:hover{background-color:#d0e3ff;border-color:#c4ddff;color:#407dd1}.sun-editor .se-btn:enabled.on.__se__active,.sun-editor .se-btn:enabled.on:active{background-color:#d0e3ff;border-color:#d0e3ff!important;-webkit-box-shadow:0 0 0 .3rem #d0e3ff;box-shadow:0 0 0 .3rem #d0e3ff;color:#3288ff;color:1px solid #3288ff;outline:1px solid #3288ff!important;transition:box-shadow .1s ease-in-out}.sun-editor .se-btn:enabled.active{background-color:#dbeaff;border-color:#80bdff;color:#4592ff}.sun-editor .se-btn:enabled.active:focus,.sun-editor .se-btn:enabled.active:hover{background-color:#c4ddff;border-color:#3f9dff;color:#1275ff}.sun-editor .se-btn:enabled.active.__se__active,.sun-editor .se-btn:enabled.active:active{background-color:#c4ddff;border-color:#1275ff!important;-webkit-box-shadow:0 0 0 .3rem #c4ddff;box-shadow:0 0 0 .3rem #c4ddff;color:#1275ff;outline:1px solid #1275ff!important;transition:box-shadow .1s ease-in-out}.sun-editor .se-btn-primary{background-color:#eaf3ff;border:1px solid #1275ff;border-radius:2px;outline:0 none}.sun-editor .se-btn-primary:focus,.sun-editor .se-btn-primary:hover{background-color:#c4ddff}.sun-editor .se-btn-primary.__se__active,.sun-editor .se-btn-primary:active{background-color:#eaf3ff;border-color:#eaf3ff!important;-webkit-box-shadow:0 0 0 .3rem #eaf3ff;box-shadow:0 0 0 .3rem #eaf3ff;outline:1px solid #1275ff!important;transition:box-shadow .1s ease-in-out}.sun-editor .se-btn.se-btn-success{border-color:#89b589;color:green}.sun-editor .se-btn.se-btn-success:not(.on):not(.active):enabled:focus,.sun-editor .se-btn.se-btn-success:not(.on):not(.active):enabled:hover{background-color:#dff4e6;border-color:#89b589}.sun-editor .se-btn.se-btn-success:not(.on):not(.active):enabled.__se__active,.sun-editor .se-btn.se-btn-success:not(.on):not(.active):enabled:active{background-color:#dff4e6;border-color:#dff4e6!important;-webkit-box-shadow:0 0 0 .3rem #dff4e6;box-shadow:0 0 0 .3rem #dff4e6;outline:1px solid #89b589!important;transition:box-shadow .1s ease-in-out}.sun-editor .se-btn.se-btn-success:enabled.on{background-color:#dff4e6;border-color:#89b589;color:green}.sun-editor .se-btn.se-btn-success:enabled.on:focus,.sun-editor .se-btn.se-btn-success:enabled.on:hover{background-color:#d5f3e0;border-color:#769c76;color:green}.sun-editor .se-btn.se-btn-success:enabled.on.__se__active,.sun-editor .se-btn.se-btn-success:enabled.on:active{background-color:#d5f3e0;border-color:#d5f3e0!important;-webkit-box-shadow:0 0 0 .3rem #d5f3e0;box-shadow:0 0 0 .3rem #d5f3e0;color:green;color:1px solid green;outline:1px solid #628562!important;transition:box-shadow .1s ease-in-out}.sun-editor .se-btn.se-btn-success:enabled.active{background-color:#d5f3e0;border-color:#419c41;color:green}.sun-editor .se-btn.se-btn-success:enabled.active:focus,.sun-editor .se-btn.se-btn-success:enabled.active:hover{background-color:#c1f4d3;border-color:#419c41;color:#006c00}.sun-editor .se-btn.se-btn-success:enabled.active.__se__active,.sun-editor .se-btn.se-btn-success:enabled.active:active{background-color:#c1f4d3;border-color:#c1f4d3!important;-webkit-box-shadow:0 0 0 .3rem #c1f4d3;box-shadow:0 0 0 .3rem #c1f4d3;color:#006c00;outline:1px solid #419c41!important;transition:box-shadow .1s ease-in-out}.sun-editor .se-btn.se-btn-danger{border-color:#e1a6a2;color:#b94a48}.sun-editor .se-btn.se-btn-danger:not(.on):not(.active):enabled:focus,.sun-editor .se-btn.se-btn-danger:not(.on):not(.active):enabled:hover{background-color:#f8e3e1;border-color:#e1a6a2}.sun-editor .se-btn.se-btn-danger:not(.on):not(.active):enabled.__se__active,.sun-editor .se-btn.se-btn-danger:not(.on):not(.active):enabled:active{background-color:#f8e3e1;border-color:#f8e3e1!important;-webkit-box-shadow:0 0 0 .3rem #f8e3e1;box-shadow:0 0 0 .3rem #f8e3e1;outline:1px solid #e1a6a2!important;transition:box-shadow .1s ease-in-out}.sun-editor .se-btn.se-btn-danger:enabled.on{background-color:#f8e6e4;border-color:#d8a6a0;color:#b94a48}.sun-editor .se-btn.se-btn-danger:enabled.on:focus,.sun-editor .se-btn.se-btn-danger:enabled.on:hover{background-color:#f7deda;border-color:#c8958f;color:#b94a48}.sun-editor .se-btn.se-btn-danger:enabled.on.__se__active,.sun-editor .se-btn.se-btn-danger:enabled.on:active{background-color:#f5d0c8;border-color:#f5d0c8!important;-webkit-box-shadow:0 0 0 .3rem #f7deda;box-shadow:0 0 0 .3rem #f7deda;color:#b94a48;outline:1px solid #a37068!important;transition:box-shadow .1s ease-in-out}.sun-editor .se-btn.se-btn-danger:enabled.active{background-color:#f7deda;border-color:#d17872;color:#b94a48}.sun-editor .se-btn.se-btn-danger:enabled.active:focus,.sun-editor .se-btn.se-btn-danger:enabled.active:hover{background-color:#f5d0c8;border-color:#d17872;color:#a65242}.sun-editor .se-btn.se-btn-danger:enabled.active.__se__active,.sun-editor .se-btn.se-btn-danger:enabled.active:active{background-color:#f5d0c8;border-color:#f5d0c8!important;-webkit-box-shadow:0 0 0 .3rem #f5d0c8;box-shadow:0 0 0 .3rem #f5d0c8;color:#a65242;outline:1px solid #d17872!important;transition:box-shadow .1s ease-in-out}.sun-editor input,.sun-editor select,.sun-editor textarea{border:1px solid #ccc;border-radius:2px;color:#000}.sun-editor .se-btn:disabled,.sun-editor button:disabled,.sun-editor input:disabled{color:#bdbdbd;cursor:not-allowed}.sun-editor .se-btn-list{cursor:pointer;font-size:12px;height:auto;line-height:normal;min-height:32px;padding:0 14px;text-align:left;text-decoration:none;text-indent:0;width:100%}.sun-editor .se-btn-list.default_value{border:1px dashed #b1b1b1}.sun-editor svg{fill:currentColor}.sun-editor .se-svg,.sun-editor button>svg{height:15px;margin:auto;width:15px;fill:currentColor;display:block;float:none;text-align:center}.sun-editor button>svg.se-mdi{height:20px;width:20px}.sun-editor button.se-sub-arrow-btn{width:18px}.sun-editor button.se-sub-arrow-btn svg{width:8px}.sun-editor button.se-sub-btn{width:24px}.sun-editor button.se-sub-btn svg{width:12px}.sun-editor button.se-side-btn{border-radius:0;margin-left:0;margin-right:0}.sun-editor button.se-side-btn-a{border-radius:2px 0 0 2px;float:left;margin-right:0}.sun-editor button.se-side-btn-b{border-radius:0 2px 2px 0;float:left;margin-left:0}.sun-editor button.se-side-btn-before{border-radius:2px 0 0 2px;float:left;margin-right:0}.sun-editor button.se-side-btn-after{border-radius:0 2px 2px 0;margin-left:0}.sun-editor button.se-btn-list>* li:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTE5IDEzSDV2LTJoMTR6Ii8+PC9zdmc+);background-size:cover;content:"";display:inline-block;height:13px;opacity:.5;width:18px}.sun-editor .close>svg,.sun-editor .se-close-btn>svg{height:10px;width:10px}.sun-editor .se-btn-select>svg{float:right;height:8px;width:8px}.sun-editor .se-select-item .se-list-icon{display:inline-block;height:16px;margin:0 6px 6px 0;vertical-align:middle;width:16px}.sun-editor .se-btn-list>.se-list-icon{display:inline-block;height:16px;margin:-1px 10px 0 0;vertical-align:middle;width:16px}.sun-editor button>i:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-size:15px;font-style:normal;font-variant:normal;line-height:2;text-rendering:auto}.sun-editor button>[class=se-icon-text]{font-size:20px;line-height:1}.sun-editor .se-arrow,.sun-editor .se-arrow:after{border:11px solid #0000;display:block;height:0;margin-left:-11px;margin-right:0;position:absolute;width:0}.sun-editor .se-controller .se-arrow{left:20px;margin-left:-11px;margin-right:0;right:auto}.sun-editor .se-arrow.se-arrow-up{border-bottom-color:#999;border-top-width:0;top:-12px}.sun-editor .se-arrow.se-arrow-up:after{border-bottom-color:#fff;border-top-width:0;content:" ";top:1px}.sun-editor .se-arrow.se-arrow-down{border-bottom-width:0;border-top-color:#999;bottom:-12px}.sun-editor .se-arrow.se-arrow-down:after{border-bottom-width:0;border-top-color:#fff;content:" ";top:-12px}.sun-editor .se-container{height:100%;position:relative;width:100%}.sun-editor .se-loading-box{background-color:#fff;display:none;filter:alpha(opacity=70);height:100%;left:0;opacity:.7;position:fixed;top:0;width:100%;z-index:2147483647}.sun-editor .se-container .se-loading-box{position:absolute}.sun-editor .se-loading-box .se-loading-effect{animation:spinner .8s linear infinite;border-radius:50%;border-right:2px solid #0000;border-top:2px solid #07d;display:block;height:44px;left:50%;margin:-25px 0 0 -25px;position:absolute;top:50%;width:44px}.sun-editor .se-line-breaker-component{background-color:#fff;border:1px solid #3288ff;border-radius:2px;color:#3288ff;cursor:pointer;display:none;height:24px;opacity:.75;position:absolute;width:24px;z-index:2147483647}.sun-editor .se-line-breaker-component:hover{background-color:#4592ff;color:#fff;opacity:.9}.sun-editor .se-toolbar{background-color:#fff;display:block;height:auto;margin:0;outline:1px solid #e1e1e1;overflow:visible;padding:0;position:relative;width:100%;z-index:7}.sun-editor .se-toolbar-shadow{background-color:initial!important;border:none!important;display:block!important;height:0!important;margin:0!important;outline:none!important;overflow:visible!important;padding:0!important;position:relative!important;visibility:hidden!important;width:100%!important;z-index:0!important}.sun-editor .se-toolbar-separator-vertical{display:inline-block;height:38px;margin:0;vertical-align:top;width:0}.sun-editor .se-toolbar.se-toolbar-balloon,.sun-editor .se-toolbar.se-toolbar-inline{box-shadow:0 3px 9px #00000080;-webkit-box-shadow:0 3px 9px #00000080;display:none;position:absolute}.sun-editor .se-toolbar.se-toolbar-balloon{width:auto;z-index:2147483647}.sun-editor .se-toolbar.se-toolbar-sticky{position:fixed;top:0}.sun-editor .se-toolbar-sticky-dummy{display:none;position:static;z-index:-1}.sun-editor .se-toolbar .se-arrow.se-arrow-up{border-bottom-color:#e1e1e1}.sun-editor .se-toolbar .se-arrow.se-arrow-up:after{border-bottom-color:#fff}.sun-editor .se-toolbar .se-arrow.se-arrow-down{border-top-color:#e1e1e1}.sun-editor .se-toolbar .se-arrow.se-arrow-down:after{border-top-color:#fff}.sun-editor .se-toolbar.se-toolbar-onscroll-hide{visibility:hidden!important}.sun-editor .se-btn-module{display:inline-block}.sun-editor .se-btn-module-border{border:1px solid #e1e1e1;border-radius:2px;margin-left:1px;margin-right:1px}.sun-editor .se-btn-module-enter{background-color:initial;display:block;height:0;margin:0;padding:0;width:100%}.sun-editor .se-toolbar-more-layer{background-color:#fff;margin:0 -3px}.sun-editor .se-toolbar-more-layer .se-more-layer{border-top:1px solid #e1e1e1;display:none}.sun-editor .se-toolbar-more-layer .se-more-layer .se-more-form{display:inline-block;height:auto;padding:4px 3px 0;width:100%}.sun-editor .se-btn-module .se-btn-more.se-btn-more-text{padding:0 4px;width:auto}.sun-editor .se-menu-list,.sun-editor .se-menu-list li{float:left;margin:0;padding:0}.sun-editor .se-menu-list li{position:relative}.sun-editor .se-menu-list li.se-toolbar-hidden-btn{display:none}.sun-editor .se-menu-list li .se-toolbar-btn:not(input){border-color:#0000}.sun-editor .se-btn-select{display:flex;padding:4px 6px;width:auto}.sun-editor .se-btn-select .se-txt{flex:auto;margin-right:4px;text-align:left}.sun-editor .se-btn-select .se-not-arrow-text{flex:auto;margin:0;text-align:center}.sun-editor .se-btn-select.on .se-txt+svg{transform:rotate(-180deg)}.sun-editor .se-btn-select.se-btn-tool-font{width:100px}.sun-editor .se-btn-select.se-btn-tool-format{width:82px}.sun-editor .se-btn-select.se-btn-tool-font-size .se-txt{margin:0;width:66px}.sun-editor .se-btn-select.se-btn-tool-font-size .se-not-arrow-text{width:50px}.sun-editor .se-btn-input{border:0!important;padding:0!important}.sun-editor .se-btn-input input{border:0;font-size:13px;height:34px}.sun-editor .se-btn-input input:hover{border:1px solid #c1c1c1}.sun-editor .se-btn-input input:focus{border:1px solid #3288ff!important;outline:0}.sun-editor .se-btn-tray{height:auto;margin:0;padding:4px 3px 0;position:relative;width:100%}.sun-editor .se-menu-tray{height:0;left:0;position:absolute;top:0;width:100%;z-index:2147483647}.sun-editor .se-dropdown{overflow-x:hidden;overflow-y:auto}.sun-editor .se-menu-container{overflow-x:unset;overflow-y:unset}.sun-editor .se-list-layer{background-color:#fff;border:1px solid #e1e1e1;border-radius:2px;-webkit-box-shadow:0 3px 9px #00000080;box-shadow:0 3px 9px #00000080;display:none;height:auto;left:0;outline:0 none;padding:4px;position:absolute;top:0;z-index:5}.sun-editor .se-list-layer .se-list-inner{margin:0;overflow:visible;padding:0}.sun-editor .se-list-layer button{margin:0 0 2px;width:100%}.sun-editor .se-list-inner ul{margin:auto;padding:0;width:100%}.sun-editor .se-list-inner :not(.se-list-horizontal) li>button{min-width:100%;width:max-content}.sun-editor .se-list-inner .se-list-basic li{width:100%}.sun-editor .se-list-inner input{border-radius:0}.sun-editor .se-list-inner ul.se-list-carrier{height:52px;width:165px}.sun-editor .se-list-inner ul.se-list-carrier li button>ol,.sun-editor .se-list-inner ul.se-list-carrier li button>ul{font-size:10px}.sun-editor .se-list-inner .se-list-checked li .se-svg{float:left;padding:6px 6px 0 0}.sun-editor .se-list-inner .se-list-checked li .se-svg>svg{display:none}.sun-editor .se-list-inner .se-list-checked li.se-checked *{color:#4592ff}.sun-editor .se-list-inner .se-list-checked li.se-checked .se-svg>svg{display:block}.sun-editor .se-list-inner .se-list-horizontal{display:flex;padding:2px}.sun-editor .se-list-inner .se-list-horizontal li{margin:0 2px;padding:0}.sun-editor .se-list-layer.se-list-font-size{max-height:300px;min-width:140px}.sun-editor .se-list-layer.se-list-font-family{min-width:156px}.sun-editor .se-list-layer.se-list-font-family .default{border-bottom:1px solid #ccc}.sun-editor .se-list-layer.se-list-line{width:125px}.sun-editor .se-list-layer.se-list-line hr{border-width:1px 0 0;height:1px}.sun-editor .se-list-layer.se-list-align .se-list-inner{left:9px}.sun-editor .se-list-layer.se-list-format{min-width:156px}.sun-editor .se-list-layer.se-list-format li{padding:0;width:100%}.sun-editor .se-list-layer.se-list-format ul .se-btn-list{line-height:100%}.sun-editor .se-list-layer.se-list-format ul .se-btn-list[data-value=h1]{height:40px}.sun-editor .se-list-layer.se-list-format ul .se-btn-list[data-value=h2]{height:34px}.sun-editor .se-list-layer.se-list-format ul p{font-size:13px}.sun-editor .se-list-layer.se-list-format ul div{font-size:13px;padding:4px 2px}.sun-editor .se-list-layer.se-list-format ul h1{font-size:2em;font-weight:700}.sun-editor .se-list-layer.se-list-format ul h2{font-size:1.5em;font-weight:700}.sun-editor .se-list-layer.se-list-format ul h3{font-size:1.17em;font-weight:700}.sun-editor .se-list-layer.se-list-format ul h4{font-size:1em;font-weight:700}.sun-editor .se-list-layer.se-list-format ul h5{font-size:.83em;font-weight:700}.sun-editor .se-list-layer.se-list-format ul h6{font-size:.67em;font-weight:700}.sun-editor .se-list-layer.se-list-format ul blockquote{background-color:initial;border:solid #b1b1b1;border-width:0 0 0 5px;color:#999;font-size:13px;height:22px;line-height:1.5;margin:0;padding:0 0 0 7px}.sun-editor .se-list-layer.se-list-format ul pre{background-color:#f9f9f9;border:1px solid #e1e1e1;border-radius:2px;color:#666;font-size:13px;margin:0;padding:4px 11px}.sun-editor-editable table td:not(.se-selected-table-cell):hover:before,.sun-editor-editable table th:not(.se-selected-table-cell):hover:before{background-color:initial;content:"";cursor:ew-resize;height:100%;left:-2px;position:absolute;top:0;width:4px}.sun-editor-editable table td:not(.se-selected-table-cell):hover:after,.sun-editor-editable table th:not(.se-selected-table-cell):hover:after{background-color:initial;content:"";cursor:ew-resize;height:100%;position:absolute;right:-2px;top:0;width:4px}.sun-editor .se-table-resize-line{height:100%;margin-left:-2px;top:0;width:4px}.sun-editor .se-table-resize-line,.sun-editor .se-table-resize-row{background-color:#80bdff;display:none;opacity:.4;pointer-events:none;position:absolute}.sun-editor .se-table-resize-row{height:5px;left:0;margin-top:-3px;width:100%}.sun-editor .se-table-resize-line-prev{border-left:1px dashed #f0c20a;height:100%;margin-left:-1px;top:0;width:4px}.sun-editor .se-table-resize-line-prev,.sun-editor .se-table-resize-row-prev{background-color:initial;display:none;opacity:.8;pointer-events:none;position:absolute}.sun-editor .se-table-resize-row-prev{border-top:1px dashed #f0c20a;height:4px;left:0;margin-top:-1px;width:100%}.sun-editor .se-selector-table{-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#fff;border:1px solid #ccc;border-radius:2px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);display:none;float:left;font-size:14px;left:1px;list-style:none;margin:2px 0 0;padding:5px 0;position:absolute;text-align:left;top:34px;z-index:5}.sun-editor .se-selector-table .se-table-size{font-size:18px;padding:0 5px}.sun-editor .se-selector-table .se-table-size-picker{cursor:pointer;font-size:18px;height:10em;position:absolute!important;width:10em;z-index:3}.sun-editor .se-selector-table .se-table-size-highlighted{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo4QTZCNzMzN0I3RUYxMUU4ODcwQ0QwMjM1NTgzRTJDNyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo4QTZCNzMzNkI3RUYxMUU4ODcwQ0QwMjM1NTgzRTJDNyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOCAoV2luZG93cykiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MzYyNEUxRUI3RUUxMUU4ODZGQzgwRjNBODgyNTdFOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0MzYyNEUxRkI3RUUxMUU4ODZGQzgwRjNBODgyNTdFOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pl0yAuwAAABBSURBVDhPY/wPBAxUAGCDGvdBeWSAeicIDTfIXREiQArYeR9hEBOEohyMGkQYjBpEGAxjg6ib+yFMygCVvMbAAABj0hwMTNeKJwAAAABJRU5ErkJggg==) repeat;font-size:18px;height:1em;position:absolute!important;width:1em;z-index:2}.sun-editor .se-selector-table .se-table-size-unhighlighted{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC) repeat;font-size:18px;height:5em;position:relative!important;width:5em;z-index:1}.sun-editor .se-selector-table .se-table-size-display{padding-left:5px}.sun-editor .se-list-layer.se-table-split{top:36px}.sun-editor .se-list-layer .se-selector-color{display:block;height:auto;margin:auto;max-width:252px;padding:0;width:max-content}.sun-editor .se-list-layer .se-selector-color .se-color-pallet{height:100%;padding:0;width:100%}.sun-editor .se-list-layer .se-selector-color .se-color-pallet li{display:flex;float:left;margin:0;position:relative}.sun-editor .se-list-layer .se-selector-color .se-color-pallet button{border:1px solid #fff;border-radius:0;display:block;height:28px;margin:0;text-indent:-9999px;width:28px}.sun-editor .se-list-layer .se-selector-color .se-color-pallet button.active,.sun-editor .se-list-layer .se-selector-color .se-color-pallet button:focus,.sun-editor .se-list-layer .se-selector-color .se-color-pallet button:hover{border:3px solid #fff}.sun-editor .se-hue-slider{padding:14px}.sun-editor .se-hue-slider-container{border-radius:50%;height:auto;outline:2px solid #fff;position:relative;width:auto}.sun-editor .se-hue-slider-container .se-hue-wheel{border-radius:50%;cursor:pointer}.sun-editor .se-hue-slider-container .se-hue-wheel-pointer{background-color:initial;border:2px solid #fff;border-radius:50%;box-shadow:0 0 2px #000;height:10px;left:50%;outline:2px solid #000;pointer-events:none;position:absolute;top:50%;transform:translate(-50%,-50%);width:10px}.sun-editor .se-hue-gradient-container{border-radius:14px;height:28px;margin-top:14px;outline:2px solid #fff;position:relative}.sun-editor .se-hue-gradient-container .se-hue-gradient{background:linear-gradient(90deg,#000,#fff);border-radius:14px;cursor:pointer;height:28px;position:relative}.sun-editor .se-hue-gradient-container .se-hue-gradient-pointer{background-color:initial;border:2px solid #fff;border-radius:50%;box-shadow:0 0 2px #000;height:14px;left:calc(100% - 14px);outline:2px solid #000;pointer-events:none;position:absolute;top:14px;transform:translate(-50%,-50%);width:14px}.sun-editor .se-hue-final-hex{display:flex;margin-top:10px}.sun-editor .se-form-group{display:flex;height:auto;min-height:40px;padding:4px;width:100%}.sun-editor .se-form-group.se-form-w0{padding-left:0;padding-right:0}.sun-editor .se-form-group.se-form-h0{padding-bottom:0;padding-top:0}.sun-editor .se-btn-group input,.sun-editor .se-form-group input{border:1px solid #ccc;display:inline-block;flex:auto;font-size:12px;height:34px;margin:1px 0;padding:0 4px;width:auto}.sun-editor .se-btn-group input{margin:1px 3px}.sun-editor .se-dropdown-form-group button,.sun-editor .se-form-group button{float:right;height:34px;margin:1px;width:34px}.sun-editor .se-form-group.se-form-flex-btn button{flex:auto;float:none}.sun-editor .se-form-group .se-group-item{position:relative}.sun-editor .se-form-group label{display:inline-block;font-weight:700;margin-bottom:5px;max-width:100%}.sun-editor .se-form-group-label{height:auto;padding:0 4px;width:100%}.sun-editor .se-form-group-label label{font-size:13px;font-weight:700}.sun-editor .se-dropdown .se-form-group input{color:#555;height:34px}.sun-editor .se-dropdown .se-form-group .se-color-input:focus{border-bottom:3px solid #b1b1b1}.sun-editor .se-wrapper{height:auto;overflow:hidden;position:relative!important;width:100%;z-index:1}.sun-editor .se-wrapper .se-wrapper-inner{height:100%;min-height:65px;overflow-x:auto;overflow-y:auto;width:100%;-webkit-overflow-scrolling:touch;user-select:auto;-o-user-select:auto;-moz-user-select:auto;-khtml-user-select:auto;-webkit-user-select:auto;-ms-user-select:auto}.sun-editor .se-wrapper .se-wrapper-inner:focus{outline:none}.sun-editor .se-wrapper .se-code-wrapper .se-code-view-line{background-color:#f5f5f5;color:#222;font-size:13px;overflow:hidden;padding-right:6px;text-align:right;width:50px}.sun-editor .se-wrapper .se-code-viewer{background-color:#222;color:#f5f5f5;font-size:13px;margin:0;padding:4px;resize:none!important;word-break:break-all}.sun-editor .se-wrapper .se-wrapper-wysiwyg{display:block}.sun-editor-editable[contenteditable=true] .katex *,.sun-editor-editable[contenteditable=true] .se-disable-pointer *{pointer-events:none}.sun-editor .se-wrapper .se-placeholder{backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;color:#b1b1b1;display:none;font-size:13px;left:0;line-height:1.5;margin-left:0;margin-right:0;margin-top:0;overflow:hidden;padding-left:16px;padding-right:16px;padding-top:16px;pointer-events:none;position:absolute;right:0;text-overflow:ellipsis;top:0;white-space:nowrap;z-index:1}.sun-editor .se-status-bar{background-color:#fff;border-top:1px solid #e1e1e1;cursor:ns-resize;display:flex;height:auto;min-height:16px;padding:0 4px;width:auto}.sun-editor .se-status-bar.se-resizing-none{cursor:default}.sun-editor .se-back-wrapper{cursor:default;display:none;height:100%;left:0;position:fixed;top:0;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;width:100%;z-index:2147483647}.sun-editor .se-status-bar .se-navigation{background:#0000;color:#666;flex:auto;font-size:10px;height:auto;line-height:1.5;margin:0;padding:0;position:relative;width:auto}.sun-editor .se-status-bar .se-char-counter-wrapper{background:#0000;color:#999;display:block;flex:none;font-size:13px;height:auto;margin:0;padding:0;position:relative;width:auto}.sun-editor .se-status-bar .se-char-counter-wrapper.se-blink{animation:blinker .2s linear infinite;color:#b94a48}.sun-editor .se-status-bar .se-char-counter-wrapper .se-char-label{margin-right:4px}.sun-editor .se-modal{display:none;height:100%;left:0;position:fixed;top:0;width:100%;z-index:2147483647}.sun-editor .se-modal button,.sun-editor .se-modal input,.sun-editor .se-modal label{color:#111;font-size:14px;line-height:1.5;margin:0}.sun-editor .se-modal .se-modal-back{background-color:#222;opacity:.5}.sun-editor .se-modal .se-modal-back,.sun-editor .se-modal .se-modal-inner{height:100%;left:0;position:absolute;top:0;width:100%}.sun-editor .se-modal .se-modal-inner .se-modal-content{-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#fff;border:1px solid #0003;border-radius:2px;-webkit-box-shadow:0 3px 9px #00000080;box-shadow:0 3px 9px #00000080;display:none;margin:1.75rem auto;max-width:500px;outline:0;position:relative;width:auto}@media screen and (max-width:509px){.sun-editor .se-modal .se-modal-inner .se-modal-content{width:100%}}.sun-editor .se-modal .se-modal-inner .se-modal-content label{display:inline-block;font-weight:700;margin-bottom:5px;max-width:100%}.sun-editor .se-modal .se-modal-inner .se-modal-content .se-btn-primary{border-radius:2px;display:inline-block;font-size:14px;font-weight:400;line-height:1.42857143;margin:0 0 10px!important;padding:5px 11px;text-align:center;-ms-touch-action:manipulation;touch-action:manipulation;vertical-align:middle;white-space:nowrap}.sun-editor .se-modal .se-modal-inner .se-modal-header{border-bottom:1px solid #e5e5e5;height:50px;padding:6px 15px}.sun-editor .se-modal .se-modal-inner .se-modal-header .se-close-btn{filter:alpha(opacity=100);float:right;font-weight:700;opacity:1;text-shadow:0 1px 0 #fff}.sun-editor .se-modal .se-modal-inner .se-modal-header .se-modal-title{float:left;font-size:15px;font-weight:700;line-height:2.5;margin:0;padding:0}.sun-editor .se-modal .se-modal-inner .se-modal-body{padding:15px 15px 5px;position:relative}.sun-editor .se-modal .se-modal-inner .se-modal-form{margin-bottom:10px}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-modal-flex-form{display:flex;position:relative}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-modal-flex-form .se-btn{border:1px solid #ccc;margin-left:0;margin-right:4px}.sun-editor .se-modal .se-modal-inner .se-modal-form-footer{margin-bottom:0;margin-top:10px}.sun-editor .se-modal .se-modal-inner input:disabled{background-color:#f3f3f3}.sun-editor .se-modal .se-modal-inner .se-modal-size-text{width:100%}.sun-editor .se-modal .se-modal-inner .se-modal-size-text .size-h,.sun-editor .se-modal .se-modal-inner .se-modal-size-text .size-w{text-align:center;width:70px}.sun-editor .se-modal .se-modal-inner .se-modal-size-x{margin:0 8px;text-align:center;width:25px}.sun-editor .se-modal .se-modal-inner .se-modal-footer{border-top:1px solid #e5e5e5;height:auto;min-height:55px;padding:10px 15px 0;text-align:right}.sun-editor .se-modal .se-modal-inner .se-modal-footer>div{float:left;line-height:1.7}.sun-editor .se-modal .se-modal-inner .se-modal-footer>div>label{margin:0 5px 0 0}.sun-editor .se-modal .se-modal-inner .se-modal-btn-radio{margin-left:12px;margin-right:6px}.sun-editor .se-modal .se-modal-inner .se-modal-btn-check{margin-left:12px;margin-right:4px}.sun-editor .se-modal .se-modal-inner .se-modal-btn-check:disabled+span{color:#999}.sun-editor .se-modal .se-modal-inner .se-modal-form-footer .se-modal-btn-check{margin-left:0;margin-right:4px}.sun-editor .se-modal .se-modal-inner .se-modal-form-footer label:first-child{margin-left:0;margin-right:16px}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-modal-form-files{align-items:center;display:flex;position:relative}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-modal-form-files>input{flex:auto}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-modal-form-files .se-modal-files-edge-button{border:1px solid #ccc;flex:none;margin-left:1px;opacity:.8}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-input-select{display:inline-block;font-size:14px;height:34px;line-height:1.42857143;text-align:center;width:auto}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-input-control{display:inline-block;font-size:14px;height:34px;line-height:1.42857143;text-align:center;width:70px}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper{display:block;height:auto;padding:0;position:relative;width:100%}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper>.se-input-form-abs{background-color:#f9f9f9;border:2px dashed #ccc;display:block;height:100%;margin:0;padding:0;pointer-events:none;position:absolute;width:100%}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper>.se-input-form-abs *{pointer-events:none;vertical-align:middle}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper>.se-input-form-abs>div{display:block;height:100%;margin:auto;padding-top:3px;position:relative;width:100%}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper>.se-input-form-abs>div .se-input-file-w{margin:auto;max-width:100%;padding:0 4px;width:max-content}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper>.se-input-form-abs>div .se-input-file-icon-files,.sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper>.se-input-form-abs>div .se-input-file-icon-up{display:inline-block;width:20px}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper>.se-input-form-abs>div .se-input-file-icon-files{display:none}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper>.se-input-form-abs>div .se-input-file-cnt{display:inline;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-input-form{display:block;font-size:14px;height:34px;line-height:1.42857143;padding:0 4px;width:100%}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-input-form.se-input-url{direction:ltr}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-input-form.se-input-url:disabled{color:#999;text-decoration:line-through}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-video-ratio{margin-left:4px;width:70px}.sun-editor .se-modal .se-modal-inner .se-modal-form a{color:#004cff}.sun-editor .se-modal .se-modal-inner .se-modal-btn-revert{border:1px solid #ccc;float:right}.sun-editor .se-modal-tabs{border-bottom:1px solid #e5e5e5;height:25px;width:100%}.sun-editor .se-modal-tabs button{background-color:#e5e5e5;border-right:1px solid #e5e5e5;float:left;outline:none;padding:2px 13px;transition:.3s}.sun-editor .se-modal-tabs button:hover{background-color:#fff}.sun-editor .se-modal-tabs button.active{background-color:#fff;border-bottom:0}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-input-form.se-math-exp{border:1px solid #3f9dff;direction:ltr;font-size:13px;height:14em;padding:4px;resize:vertical}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-input-select.se-math-size{height:28px;margin-left:1em;width:6em}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-math-preview{font-size:13px}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-math-preview>span{-webkit-box-shadow:0 0 0 .1rem #d0e3ff;box-shadow:0 0 0 .1rem #d0e3ff;display:inline-block}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-math-preview>span *{direction:ltr}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-math-preview>.se-math-katex-error{-webkit-box-shadow:0 0 0 .1rem #f2dede;box-shadow:0 0 0 .1rem #f2dede;color:#b94a48}.sun-editor .se-modal .se-modal-inner .se-modal-form .se-math-preview>.se-math-katex-error svg{color:#b94a48;height:30px;width:auto}.sun-editor .se-modal .se-modal-inner .se-link-preview{background-color:initial;color:#666;display:block;font-family:inherit;font-size:13px;font-weight:400;height:auto;max-height:18px;max-height:none;overflow:hidden;overflow-wrap:break-word;text-overflow:ellipsis;white-space:pre-wrap;word-break:break-word}.sun-editor .se-modal .se-modal-inner .se-anchor-preview-form{display:flex;margin-top:4px;width:100%}.sun-editor .se-modal .se-modal-inner .se-anchor-preview-form .se-svg.se-anchor-preview-icon{color:#4592ff;display:none;flex:unset;line-height:1;margin:2px}.sun-editor .se-modal .se-modal-inner .se-anchor-preview-form .se-link-preview{flex:auto;margin:0}.sun-editor .se-modal .se-modal-inner .se-anchor-rel{height:34px;position:relative}.sun-editor .se-modal .se-modal-inner .se-anchor-rel-btn{border-width:1px}.sun-editor .se-modal .se-modal-inner .se-anchor-rel-wrapper{align-items:center;display:flex;height:34px;line-height:1;padding:0 6px}.sun-editor .se-modal .se-modal-inner .se-anchor-rel-preview{text-align:left}.sun-editor .se-controller{border:1px solid #999;display:none;letter-spacing:normal;margin:0;overflow:visible;padding:2px 2px 0;position:absolute;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;word-break:normal;word-spacing:normal;z-index:2147483646;word-wrap:normal;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#fff;line-break:auto;white-space:normal}.sun-editor .se-controller.se-empty-controller{border:none;padding:0}.sun-editor .se-controller:not(.se-resizing-container){-webkit-box-shadow:0 5px 10px #0003;box-shadow:0 5px 10px #0003}.sun-editor-editable[contenteditable=true] figure a,.sun-editor-editable[contenteditable=true] figure iframe,.sun-editor-editable[contenteditable=true] figure img,.sun-editor-editable[contenteditable=true] figure video{z-index:0}.sun-editor-editable[contenteditable=true] figure figcaption{display:block;z-index:2}.sun-editor-editable[contenteditable=true] figure figcaption:focus{border-color:#80bdff;-webkit-box-shadow:0 0 0 .2rem #c7deff;box-shadow:0 0 0 .2rem #c7deff;outline:0}.sun-editor-editable[contenteditable=true]:not(.se-read-only) figure:not(.se-input-component):after{background:#0000;bottom:0;content:"";cursor:default;display:block;left:0;position:absolute;right:0;top:0;z-index:1}.sun-editor-editable[contenteditable=true] .se-component{outline:1px dashed #e1e1e1}.sun-editor-editable[contenteditable=true] .se-component.se-component-selected>figure,.sun-editor-editable[contenteditable=true] .se-component:not(:has(figure)).se-component-selected,.sun-editor-editable[contenteditable=true] figure.se-component-selected{outline:2px solid #80bdff}.sun-editor-editable .se-component figure.se-figure-selected:not(.se-figure-over-selected):after{pointer-events:none}.sun-editor-editable[contenteditable=true] .se-copy{background-color:#d1d1d1;-webkit-box-shadow:0 0 0 .5rem #1275ff;box-shadow:0 0 0 .5rem #1275ff;opacity:.3;transition:box-shadow .15s ease-in-out}.sun-editor-editable[contenteditable=true] .se-component:not(:has(figure)).se-component-selected.se-drag-over,.sun-editor-editable[contenteditable=true] figure.se-figure-selected.se-drag-over,.sun-editor-editable[contenteditable=true] hr.se-component-selected.se-drag-over{outline:2px solid #f0c20a}.sun-editor-editable[contenteditable=true] figure.se-drag-over>iframe{pointer-events:none}.sun-editor .se-controller .se-btn-group{display:flex;left:0;margin:0;padding:0 0 2px;position:relative;top:0}.sun-editor .se-controller .se-btn-group .se-btn-group-sub{display:none;left:50%;min-width:auto;width:max-content}.sun-editor .se-controller .se-btn-group .se-btn-group-sub button{margin:0;min-width:72px}.sun-editor .se-controller .se-btn-group button{border:none;border-radius:2px;display:inline-block;font-size:12px;font-weight:400;height:auto;line-height:1.5;margin:1px;min-height:34px;position:relative;text-align:center;-ms-touch-action:manipulation;touch-action:manipulation;white-space:nowrap}.sun-editor .se-controller .se-controller-content{left:0;margin:0;padding:0 0 2px;position:relative;top:0}.sun-editor .se-controller .se-controller-header{border-bottom:1px solid #e5e5e5;height:38px;padding:4px;width:100%}.sun-editor .se-controller .se-controller-body{font-size:13px;padding:4px 4px 1px;position:relative;width:100%}.sun-editor .se-controller .se-controller-body .se-btn:disabled,.sun-editor .se-controller .se-controller-body button:disabled,.sun-editor .se-controller .se-controller-body input:disabled{background-color:#ececec}.sun-editor .se-controller .se-controller-header .se-close-btn{filter:alpha(opacity=100);float:right;font-weight:700;height:28px;min-height:28px;opacity:1;text-shadow:0 1px 0 #fff;width:28px}.sun-editor .se-controller .se-controller-header .se-controller-title{float:left;font-size:13px;font-weight:700;line-height:2.2;margin:0;padding:0}.sun-editor .se-controller-resizing{font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143}.sun-editor .se-resizing-container{backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;background-color:initial!important;border:0;display:none;outline:none;padding:0;pointer-events:none;position:absolute;z-index:6}.sun-editor .se-drag-handle{background-color:#80bdff;border:0;color:#fff;cursor:move;display:none;height:18px;outline:2px solid #0000;padding:1px;pointer-events:auto;position:absolute;width:18px;z-index:2147483646}.sun-editor .se-drag-handle.se-drag-handle-full{cursor:default}.sun-editor .se-drag-handle>svg{max-height:100%;max-width:100%;pointer-events:none}.sun-editor .se-drag-handle:hover{background-color:#f0c20a}.sun-editor .se-drag-handle.se-dragging{opacity:0}.sun-editor .se-resizing-container .se-resize-dot{border:0;display:inline-block;outline:2px solid #80bdff;padding:0;position:absolute}.sun-editor .se-resizing-container.se-resize-ing .se-resize-dot{outline:2px solid #4592ff}.sun-editor .se-resizing-container .se-resize-dot>span{background-color:#4592ff;border:1px solid #4592ff;border-radius:1px;height:8px;pointer-events:auto;position:absolute;width:8px}.sun-editor .se-resizing-container .se-resize-dot>span.tl{cursor:nw-resize;left:-6px;top:-6px}.sun-editor .se-resizing-container .se-resize-dot>span.tr{cursor:ne-resize;right:-6px;top:-6px}.sun-editor .se-resizing-container .se-resize-dot>span.bl{bottom:-6px;cursor:sw-resize;left:-6px}.sun-editor .se-resizing-container .se-resize-dot>span.br{bottom:-6px;cursor:se-resize;right:-6px}.sun-editor .se-resizing-container .se-resize-dot>span.lw{bottom:50%;cursor:w-resize;left:-8px}.sun-editor .se-resizing-container .se-resize-dot>span.th{cursor:n-resize;left:50%;top:-8px}.sun-editor .se-resizing-container .se-resize-dot>span.rw{bottom:50%;cursor:e-resize;right:-8px}.sun-editor .se-resizing-container .se-resize-dot>span.bh{bottom:-8px;cursor:s-resize;right:50%}.sun-editor .se-resizing-container .se-resize-display{background-color:#333;border-radius:2px;bottom:0;color:#fff;font-size:12px;left:auto;margin:2px;opacity:.75;padding:5px;pointer-events:none;position:absolute;right:0}.sun-editor .se-resizing-container.se-resize-ing .se-resize-display{opacity:1}.sun-editor .se-controller-table,.sun-editor .se-controller-table-cell{font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;width:auto}.sun-editor .se-controller.se-table-props .se-border-style,.sun-editor .se-controller.se-table-props .se-color-input{width:70px}.sun-editor .se-controller.se-table-props .__se__border_size{width:52px}.sun-editor .se-controller.se-table-props .se-table-props-align li{margin-right:2px}.sun-editor .se-controller-link{font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143}.sun-editor .se-controller-link:after,.sun-editor .se-controller-link:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sun-editor .se-controller-link .link-content{margin:0;padding:0}.sun-editor .se-controller-link .link-content a{color:#4592ff;display:inline-block;margin-left:5px;max-width:200px;overflow:hidden;text-overflow:ellipsis;vertical-align:middle;white-space:nowrap}.sun-editor .se-select-menu{background-color:#fff;border:1px solid #bababa;border-radius:2px;-webkit-box-shadow:0 3px 9px #00000080;box-shadow:0 3px 9px #00000080;display:none;height:auto;left:0;margin:0;min-width:auto;outline:0 none;overflow-x:visible;overflow-y:visible;overflow:visible;padding:2px 0;position:absolute;top:0;width:max-content;z-index:2147483647}.sun-editor .se-select-menu.se-select-menu-scroll{overflow-y:auto}.sun-editor .se-select-menu ul{margin:0;max-width:100%;min-width:-moz-max-content;min-width:-webkit-max-content;min-width:-o-max-content;min-width:-ms-max-content;padding:0;width:auto;word-break:break-all}.sun-editor .se-select-menu .se-select-item{cursor:pointer;font-size:12px;line-height:28px;list-style:none;margin:2px 0;min-height:28px;padding:0 6px}.sun-editor .se-select-menu .se-select-item button{margin:0;min-height:28px;padding:0}.sun-editor .se-select-menu .se-select-item button span{margin:0;padding:0}.sun-editor .se-select-menu .se-select-item .se-select-on{color:#4592ff}.sun-editor .se-select-menu.se-select-menu-mouse-move .se-select-item:hover,.sun-editor .se-select-menu:not(.se-select-menu-mouse-move) .se-select-item.active{border-color:#d0e3ff!important;-webkit-box-shadow:0 0 0 .3rem #d0e3ff;box-shadow:0 0 0 .3rem #d0e3ff;outline:1px solid #3288ff!important;transition:box-shadow .1s ease-in-out}.sun-editor .se-select-menu.se-select-menu-mouse-move .se-select-item.__se__active,.sun-editor .se-select-menu.se-select-menu-mouse-move .se-select-item:active{background-color:#dbeaff;border-color:#dbeaff!important;-webkit-box-shadow:inset 2px 2px 5px #b7ccf2,inset -2px -2px 5px #e6f2ff;box-shadow:inset 2px 2px 5px #b7ccf2,inset -2px -2px 5px #e6f2ff;outline:1px solid #3288ff!important;transition:background-color .1s ease-in-out,box-shadow .1s ease-in-out}.sun-editor .se-modal-form-files .se-select-menu{height:auto;width:100%}.sun-editor .se-select-menu.se-resizing-align-list{width:74px}.sun-editor .se-file-browser{display:none;height:100%;left:0;position:fixed;top:0;width:100%;z-index:2147483647}.sun-editor .se-file-browser button,.sun-editor .se-file-browser input,.sun-editor .se-file-browser label{color:#111;font-size:14px;line-height:1.5;margin:0}.sun-editor .se-file-browser .se-file-browser-back{background-color:#222;opacity:.5}.sun-editor .se-file-browser .se-file-browser-back,.sun-editor .se-file-browser .se-file-browser-inner{display:block;height:100%;left:0;position:absolute;top:0;width:100%}.sun-editor .se-file-browser .se-file-browser-inner .se-file-browser-content{-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#fff;border:1px solid #0003;border-radius:2px;-webkit-box-shadow:0 3px 9px #00000080;box-shadow:0 3px 9px #00000080;margin:20px auto;max-width:100%;outline:0;position:relative;width:960px}.sun-editor .se-file-browser .se-file-browser-header{border-bottom:1px solid #e5e5e5;height:auto;min-height:50px;padding:6px 15px}.sun-editor .se-file-browser .se-file-browser-header .se-file-browser-close{filter:alpha(opacity=100);float:right;font-weight:700;opacity:1;text-shadow:0 1px 0 #fff}.sun-editor .se-file-browser .se-file-browser-header .se-file-browser-title{font-size:16px;font-weight:700;line-height:2.2;margin:0;padding:0}.sun-editor .se-file-browser .se-file-browser-tags{display:block;font-size:13px;margin:0 -15px;padding:0;text-align:left;width:100%}.sun-editor .se-file-browser .se-file-browser-tags a{-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#f5f5f5;border-radius:32px;-moz-border-radius:32px;-webkit-border-radius:32px;color:#333;cursor:pointer;display:inline-block;margin:8px 0 8px 8px;padding:6px 12px;text-decoration:none}.sun-editor .se-file-browser .se-file-browser-tags a:hover{background-color:#e1e1e1}.sun-editor .se-file-browser .se-file-browser-tags a:active{background-color:#d1d1d1}.sun-editor .se-file-browser .se-file-browser-tags a.on{background-color:#ebf3fe;color:#4592ff}.sun-editor .se-file-browser .se-file-browser-tags a.on:hover{background-color:#d8e8fe}.sun-editor .se-file-browser .se-file-browser-tags a.on:active{background-color:#d0e3ff}.sun-editor .se-file-browser .se-file-browser-body{height:auto;min-height:350px;overflow-y:auto;padding:20px;position:relative}.sun-editor .se-file-browser .se-file-browser-body .se-file-browser-list{position:relative;width:100%}@media screen and (max-width:992px){.sun-editor .se-file-browser .se-file-browser-inner .se-file-browser-content{width:748px}}@media screen and (max-width:768px){.sun-editor .se-file-browser .se-file-browser-inner .se-file-browser-content{width:600px}}.sun-editor .se-file-browser .se-file-browser-list .se-file-item-column{display:block;float:left;height:auto;position:relative}.sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-column{margin:0 10px;width:calc(25% - 20px)}@media screen and (max-width:992px){.sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-column{width:calc(33% - 20px)}}@media screen and (max-width:768px){.sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-column{width:calc(50% - 20px)}}.sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-img{border-radius:2px;cursor:pointer;display:block;height:auto;margin:10px 0;outline:0;position:relative;width:100%}.sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-img:hover{-webkit-box-shadow:0 0 0 .2rem #3288ff;box-shadow:0 0 0 .2rem #3288ff;opacity:.8}.sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-img>img{border-radius:2px;display:block;height:auto;outline:0;position:relative;width:100%}.sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-img>.se-file-name-image{background-color:initial;border-bottom-left-radius:4px;border-bottom-right-radius:4px;bottom:0;color:#fff;font-size:13px;height:30px;left:0;padding:5px 10px;pointer-events:none;position:absolute;width:100%;z-index:1}.sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-img>.se-file-name-image.se-file-name-back{background-color:#333;opacity:.6;pointer-events:none}.sun-editor .se-notice{background-color:#fff;border:1px solid #0003;border-radius:2px;-webkit-box-shadow:0 3px 9px #00000080;box-shadow:0 3px 9px #00000080;color:#b94a48;display:none;height:auto;margin:1.75rem auto;max-width:500px;padding:15px;position:relative;width:auto;word-break:break-all;z-index:7}.sun-editor .se-notice button{float:right;padding:7px}.sun-editor input:not(.se-toolbar-btn):focus,.sun-editor select:focus,.sun-editor textarea:focus{border-color:#80bdff;-webkit-box-shadow:0 0 0 .2rem #d0e3ff;box-shadow:0 0 0 .2rem #d0e3ff;outline:0;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.sun-editor .se-tooltip{font-size:13px;overflow:visible;position:relative}.sun-editor .se-tooltip .se-tooltip-inner{backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;background:#0000;bottom:auto;display:block;float:none;height:auto;left:50%;line-height:1.5;margin:0;opacity:0;padding:0;pointer-events:none;position:absolute;top:120%;transition:opacity .5s;visibility:hidden;width:auto;z-index:1}.sun-editor .se-tooltip .se-tooltip-inner .se-tooltip-text{background-color:#333;border-radius:2px;color:#fff;cursor:auto;display:inline-block;font-size:.9em;height:auto;left:-50%;line-height:unset;margin:0;padding:4px 6px;position:relative;text-align:center;white-space:nowrap;width:auto}.sun-editor .se-tooltip .se-tooltip-inner .se-tooltip-text:after{border:5px solid;border-color:#0000 #0000 #333;bottom:100%;content:"";left:50%;margin-left:-5px;position:absolute}.sun-editor .se-tooltip:hover .se-tooltip-inner{opacity:1;visibility:visible}.sun-editor :not(.se-shortcut-hide) .se-tooltip .se-tooltip-inner .se-tooltip-text .se-shortcut{display:block!important}.sun-editor .se-shortcut-hide .se-tooltip .se-tooltip-inner .se-tooltip-text .se-shortcut{display:none!important}.sun-editor .se-tooltip .se-tooltip-inner .se-tooltip-text .se-shortcut>.se-shortcut-key{display:inline;font-weight:700}.sun-editor input.se-color-input{border:0;border-bottom:2px solid #b1b1b1;border-radius:0;margin:0 2px;outline:none;text-transform:uppercase;width:72px}.sun-editor input.se-color-input::placeholder{font-size:.9em;text-transform:none}.sun-editor input.se-color-input::-webkit-search-cancel-button{-webkit-appearance:none;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEzLjQ2IDEyIDE5IDE3LjU0VjE5aC0xLjQ2TDEyIDEzLjQ2IDYuNDYgMTlINXYtMS40NkwxMC41NCAxMiA1IDYuNDZWNWgxLjQ2TDEyIDEwLjU0IDE3LjU0IDVIMTl2MS40NnoiLz48L3N2Zz4=) no-repeat 50%;background-size:cover;height:15px;width:15px}.sun-editor .se-visible-hidden{visibility:hidden}.sun-editor-editable table td.se-selected-table-cell:after,.sun-editor-editable table th.se-selected-table-cell:after{background-color:#d0e3ff;bottom:-1px;content:"";height:100%;left:-1px;opacity:.3;position:absolute;right:-1px;top:-1px;width:100%}.sun-editor-editable table td.se-selected-cell-focus,.sun-editor-editable table th.se-selected-cell-focus{outline:2px dashed #1275ff;z-index:1}.sun-editor.se-rtl .se-icon-flip-rtl .se-svg,.sun-editor.se-rtl .se-icon-flip-rtl svg{transform:scaleX(-1)}.sun-editor.se-rtl .se-btn-select svg{margin:auto 1px}.sun-editor.se-rtl .se-status-bar .se-navigation{direction:rtl}.sun-editor.se-rtl .se-btn-select .se-txt{direction:rtl;flex:auto;margin-left:4px;text-align:right}.sun-editor.se-rtl button.se-side-btn{float:right}.sun-editor.se-rtl button.se-side-btn-b{border-radius:2px 0 0 2px;float:right;margin-right:0}.sun-editor.se-rtl button.se-side-btn-a{border-radius:0 2px 2px 0;float:right;margin-left:0}.sun-editor.se-rtl button.se-side-btn-after{border-radius:2px 0 0 2px;margin-right:0}.sun-editor.se-rtl button.se-side-btn-before{border-radius:0 2px 2px 0;float:right;margin-left:0}.sun-editor.se-rtl .se-menu-list li .se-side-btn-after.active:enabled,.sun-editor.se-rtl .se-menu-list li .se-side-btn-after.on:enabled{border-left:0;border-right:1px solid}.sun-editor.se-rtl .se-menu-list li .se-side-btn-before.active:enabled,.sun-editor.se-rtl .se-menu-list li .se-side-btn-before.on:enabled{border-left:1px solid;border-right:0}.sun-editor.se-rtl .se-btn-list{text-align:right}.sun-editor.se-rtl .se-btn-list>.se-list-icon{margin:-1px 0 0 10px}.sun-editor.se-rtl .se-menu-list:not(.se-menu-dir-fix),.sun-editor.se-rtl .se-menu-list:not(.se-menu-dir-fix) li{float:right}.sun-editor.se-rtl .se-list-layer *{direction:rtl}.sun-editor.se-rtl .se-list-layer.se-list-format ul blockquote{border-bottom:0;border-left-width:0;border-right-width:5px;border-top:0;padding:0 7px 0 0}.sun-editor.se-rtl .se-select-item .se-list-icon{margin:0 0 6px 6px}.sun-editor.se-rtl .se-list-layer .se-selector-color .se-color-pallet li{float:right}.sun-editor.se-rtl .se-list-inner .se-list-checked li button>.se-svg{float:right;padding:6px 0 0 6px}.sun-editor.se-rtl .se-tooltip .se-tooltip-inner .se-tooltip-text,.sun-editor.se-rtl .se-wrapper .se-placeholder{direction:rtl}.sun-editor.se-rtl .se-tooltip .se-tooltip-inner .se-tooltip-text .se-shortcut{direction:ltr}.sun-editor.se-rtl .se-modal *{direction:rtl}.sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-form .se-video-ratio{margin-left:0;margin-right:4px}.sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-header .se-close-btn{float:left}.sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-header .se-modal-title{float:right}.sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-form .se-modal-form-files .se-modal-files-edge-button{margin-left:0;margin-right:1px}.sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-form .se-modal-flex-form .se-btn{margin-left:4px;margin-right:0}.sun-editor.se-rtl .se-modal-tabs button{float:right}.sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-size-text{padding-right:34px}.sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-footer .se-btn-primary{float:left}.sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-footer>div{float:right}.sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-footer>div>label{margin:0 0 0 5px}.sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-form-footer label:first-child{margin-left:16px;margin-right:0}.sun-editor.se-rtl .se-modal .se-modal-inner .se-anchor-rel-preview{margin-left:4px;text-align:right}.sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-btn-revert{float:left}.sun-editor.se-rtl .se-modal .se-modal-inner .se-anchor-rel-btn{float:right}.sun-editor.se-rtl .se-file-browser *{direction:rtl}.sun-editor.se-rtl .se-file-browser .se-file-browser-tags{text-align:right}.sun-editor.se-rtl .se-file-browser .se-file-browser-tags a{margin:8px 8px 0}.sun-editor.se-rtl .se-file-browser .se-file-browser-header .se-file-browser-close{float:left}.sun-editor.se-rtl .se-controller .se-btn-group,.sun-editor.se-rtl .se-controller .se-controller-body{direction:rtl}.sun-editor.se-rtl .se-resizing-container .se-resize-display{direction:rtl;left:0;right:auto}.sun-editor.se-rtl .se-controller .se-controller-header .se-close-btn{float:left}.sun-editor.se-rtl .se-controller .se-controller-header .se-controller-title{float:right}.sun-editor.se-rtl .se-controller.se-table-props .se-table-props-align li{margin-left:2px;margin-right:0}.sun-editor.se-rtl .se-controller .se-arrow{left:auto;margin-left:0;margin-right:-11px;right:20px}.sun-editor .se-btn-module-border.module-float-left{float:left}.sun-editor .se-btn-module-border.module-float-right{float:right}.sun-editor .se-error{color:#d9534f}.sun-editor input.se-error:focus,select.se-error:focus,textarea.se-error:focus{border:1px solid #f2dede;-webkit-box-shadow:0 0 0 .2rem #eed3d7;box-shadow:0 0 0 .2rem #eed3d7;outline:0;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.sun-editor hr.__se__solid{border-style:solid none none}.sun-editor hr.__se__dotted{border-style:dotted none none}.sun-editor hr.__se__dashed{border-style:dashed none none}.sun-editor .se-select-menu .se-select-item .se-mention-item span+span{margin:0 4px;opacity:.5}.sun-editor .se-show-block div,.sun-editor .se-show-block h1,.sun-editor .se-show-block h2,.sun-editor .se-show-block h3,.sun-editor .se-show-block h4,.sun-editor .se-show-block h5,.sun-editor .se-show-block h6,.sun-editor .se-show-block li,.sun-editor .se-show-block ol,.sun-editor .se-show-block p,.sun-editor .se-show-block pre,.sun-editor .se-show-block ul{border:1px dashed #3f9dff!important;padding:14px 8px 8px!important}.sun-editor .se-show-block ol,.sun-editor .se-show-block ul{border:1px dashed #d539ff!important}.sun-editor .se-show-block pre{border:1px dashed #27c022!important}.sun-editor .se-show-block p{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAPAQMAAAAF7dc0AAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAaSURBVAjXY/j/gwGCPvxg+F4BQiAGDP1HQQByxxw0gqOzIwAAAABJRU5ErkJggg==) no-repeat}.sun-editor .se-show-block div{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAPAQMAAAAxlBYoAAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAmSURBVAjXY/j//wcDDH+8XsHwDYi/hwNx1A8w/nYLKH4XoQYJAwCXnSgcl2MOPgAAAABJRU5ErkJggg==) no-repeat}.sun-editor .se-show-block h1{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAPAQMAAAA4f7ZSAAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAfSURBVAjXY/j/v4EBhr+9B+LzEPrDeygfhI8j1CBhAEhmJGY4Rf6uAAAAAElFTkSuQmCC) no-repeat}.sun-editor .se-show-block h2{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAPAQMAAAA4f7ZSAAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAmSURBVAjXY/j/v4EBhr+dB+LtQPy9geEDEH97D8T3gbgdoQYJAwA51iPuD2haEAAAAABJRU5ErkJggg==) no-repeat}.sun-editor .se-show-block h3{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAPAQMAAAA4f7ZSAAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAiSURBVAjXY/j/v4EBhr+dB+LtQPy9geHDeQgN5p9HqEHCADeWI+69VG2MAAAAAElFTkSuQmCC) no-repeat}.sun-editor .se-show-block h4{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPAQMAAADTSA1RAAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAiSURBVAjXY/j//wADDH97DsTXIfjDdiDdDMTfIRhZHRQDAKJOJ6L+K3y7AAAAAElFTkSuQmCC) no-repeat}.sun-editor .se-show-block h5{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAPAQMAAAA4f7ZSAAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAlSURBVAjXY/j/v4EBhr+1A/F+IO5vYPiwHUh/B2IQfR6hBgkDABlWIy5uM+9GAAAAAElFTkSuQmCC) no-repeat}.sun-editor .se-show-block h6{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAPAQMAAAA4f7ZSAAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAiSURBVAjXY/j/v4EBhr+dB+LtQLy/geFDP5S9HSKOrA6KAR9GIza1ptJnAAAAAElFTkSuQmCC) no-repeat}.sun-editor .se-show-block li{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAPCAYAAADkmO9VAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAA7SURBVDhPYxgFcNDQ0PAfykQBIHEYhgoRB/BpwCfHBKWpBkaggYxQGgOgBzyQD1aLLA4TGwWDGjAwAACR3RcEU9Ui+wAAAABJRU5ErkJggg==) no-repeat}.sun-editor .se-show-block ol{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAABHSURBVDhPYxgFcNDQ0PAfhKFcFIBLHCdA1oBNM0kGEmMAPgOZoDTVANUNxAqQvURMECADRiiNAWCagDSGGhyW4DRrMAEGBgAu0SX6WpGgjAAAAABJRU5ErkJggg==) no-repeat}.sun-editor .se-show-block ul{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAA1SURBVDhPYxgFDA0NDf+hTBSALI5LDQgwQWmqgVEDKQcsUBoF4ItFGEBXA+QzQpmDGjAwAAA8DQ4Lni6gdAAAAABJRU5ErkJggg==) no-repeat}.sun-editor.sun-editor-carrier-wrapper{border:none!important;display:block!important;height:0!important;margin:0!important;outline:none!important;padding:0!important;position:static!important;width:0!important}.sun-editor.sun-editor-carrier-wrapper .se-drag-cursor{background-color:#1275ff;display:none;pointer-events:none;position:absolute;width:2px;z-index:2147483647}.sun-editor.sun-editor-carrier-wrapper .se-drag-cursor:before{background-color:initial;border:0 solid #0000;border-top-color:#1275ff;border-width:6px 5px 0;content:"";height:0;margin-left:-4px;margin-right:0;position:absolute;top:-3px;width:0}.sun-editor.sun-editor-carrier-wrapper .se-drag-cursor:after{background-color:initial;border:0 solid;border-color:#0000 #0000 #1275ff;border-width:0 5px 5px;bottom:-3px;content:"";height:0;margin-left:-4px;margin-right:0;position:absolute;width:0}@keyframes blinker{50%{opacity:0}}@keyframes spinner{to{transform:rotate(361deg)}}:root{--se-edit-font-size:13px;--se-edit-font:#333;--se-edit-font-sub:#666;--se-edit-background:#fff;--se-edit-background-sub:#f9f9f9;--se-edit-border-light:#e1e1e1;--se-edit-border-dark:#b1b1b1;--se-edit-border-dark-n1:#c1c1c1;--se-edit-border-dark-n2:#d1d1d1;--se-edit-anchor:#004cff;--se-edit-anchor-on-back:#e8f7ff;--se-edit-anchor-on-font:#0093ff;--se-edit-hr-on-back:#c7deff;--se-edit-active:#4592ff;--se-edit-hover:#80bdff}.sun-editor-editable{background-color:var(--se-edit-background);color:var(--se-edit-font);font-family:Helvetica Neue;font-size:var(--se-edit-font-size);line-height:1.5;word-break:normal;word-wrap:break-word;margin:0;padding:16px}.sun-editor-editable *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:inherit;font-family:inherit;font-size:inherit}.sun-editor-editable.se-rtl,.sun-editor-editable.se-rtl *{direction:rtl}.sun-editor-editable .se-component>figure{direction:ltr}.sun-editor-editable audio,.sun-editor-editable figcaption,.sun-editor-editable figure,.sun-editor-editable iframe,.sun-editor-editable img,.sun-editor-editable td,.sun-editor-editable th,.sun-editor-editable video{position:relative}.sun-editor-editable span{display:inline;margin:0;padding:0;vertical-align:initial}.sun-editor-editable span.katex{display:inline-block}.sun-editor-editable span.katex *{direction:ltr}.sun-editor-editable a{color:var(--se-edit-anchor);text-decoration:none;white-space:nowrap}.sun-editor-editable span[style~="color:"] a{color:inherit}.sun-editor-editable a:focus,.sun-editor-editable a:hover{color:var(--se-edit-anchor-on-font);cursor:pointer;text-decoration:underline}.sun-editor-editable a.on{background-color:var(--se-edit-anchor-on-back);color:var(--se-edit-anchor-on-font)}.sun-editor-editable pre{background-color:var(--se-edit-background-sub);border:1px solid var(--se-edit-border-light);border-radius:2px;color:var(--se-edit-font-sub);display:block;font-family:monospace;line-height:1.45;margin:0 0 10px;padding:8px;white-space:pre-wrap!important;word-wrap:break-word;overflow:visible}.sun-editor-editable ol{list-style-type:decimal}.sun-editor-editable ol,.sun-editor-editable ul{display:block;list-style-position:outside;margin-block-end:1em;margin-block-start:1em;margin-inline-end:0;margin-inline-start:0;padding-inline-start:40px}.sun-editor-editable ul{list-style-type:disc}.sun-editor-editable li{display:list-item;margin-bottom:5px;text-align:-webkit-match-parent}.sun-editor-editable ol ol,.sun-editor-editable ol ul,.sun-editor-editable ul ol,.sun-editor-editable ul ul{margin:0}.sun-editor-editable ol ol,.sun-editor-editable ul ol{list-style-type:lower-alpha}.sun-editor-editable ol ol ol,.sun-editor-editable ul ol ol,.sun-editor-editable ul ul ol{list-style-type:upper-roman}.sun-editor-editable ol ul,.sun-editor-editable ul ul{list-style-type:circle}.sun-editor-editable ol ol ul,.sun-editor-editable ol ul ul,.sun-editor-editable ul ul ul{list-style-type:square}.sun-editor-editable sub,.sun-editor-editable sup{font-size:75%;line-height:0}.sun-editor-editable sub{vertical-align:sub}.sun-editor-editable sup{vertical-align:super}.sun-editor-editable p{display:block;margin:0 0 10px}.sun-editor-editable div{display:block;margin:0;padding:0}.sun-editor-editable blockquote{border-color:var(--se-edit-border-dark);border-style:solid;border-width:0 0 0 5px;color:#999;display:block;font-family:inherit;font-size:inherit;margin-block-end:1em;margin-block-start:1em;margin-inline-end:0;margin-inline-start:0;padding:0 5px 0 20px}.sun-editor-editable blockquote blockquote{border-color:var(--se-edit-border-dark-n1)}.sun-editor-editable blockquote blockquote blockquote{border-color:var(--se-edit-border-dark-n2)}.sun-editor-editable blockquote blockquote blockquote blockquote{border-color:var(--se-edit-border-light)}.sun-editor-editable.se-rtl blockquote{border-left-width:0;border-right-width:5px;padding-left:5px;padding-right:20px}.sun-editor-editable h1{font-size:2em;margin-block-end:.67em;margin-block-start:.67em}.sun-editor-editable h1,.sun-editor-editable h2{display:block;font-weight:700;margin-inline-end:0;margin-inline-start:0}.sun-editor-editable h2{font-size:1.5em;margin-block-end:.83em;margin-block-start:.83em}.sun-editor-editable h3{font-size:1.17em;margin-block-end:1em;margin-block-start:1em}.sun-editor-editable h3,.sun-editor-editable h4{display:block;font-weight:700;margin-inline-end:0;margin-inline-start:0}.sun-editor-editable h4{font-size:1em;margin-block-end:1.33em;margin-block-start:1.33em}.sun-editor-editable h5{font-size:.83em;margin-block-end:1.67em;margin-block-start:1.67em}.sun-editor-editable h5,.sun-editor-editable h6{display:block;font-weight:700;margin-inline-end:0;margin-inline-start:0}.sun-editor-editable h6{font-size:.67em;margin-block-end:2.33em;margin-block-start:2.33em}.sun-editor-editable hr{border-color:#000;border-image:initial;border-width:1px 0 0;display:flex;height:20px;margin-bottom:0;margin-top:20px}.sun-editor-editable hr.__se__solid{border-style:solid none none}.sun-editor-editable hr.__se__dotted{border-style:dotted none none}.sun-editor-editable hr.__se__dashed{border-style:dashed none none}.sun-editor-editable hr.on{border-color:var(--se-edit-active);-webkit-box-shadow:0 0 0 .1rem var(--se-edit-hr-on-back);box-shadow:0 0 0 .1rem var(--se-edit-hr-on-back)}.sun-editor-editable table{background-color:var(--se-edit-background);border-collapse:collapse;border-color:var(--se-edit-border-light);border-spacing:0;border-style:solid;border-width:1px;display:table;margin:0;max-width:100%;table-layout:auto!important;width:100%}.sun-editor-editable.se-rtl table{background-color:var(--se-edit-background);border-collapse:initial;margin:0 0 10px auto}.sun-editor-editable table caption{background-color:var(--se-edit-background-sub);border:1px solid var(--se-edit-border-light);caption-side:top;margin:0;outline:none;padding:.5em;text-align:unset}.sun-editor-editable table caption.se-table-caption-top{border-bottom:0;caption-side:top}.sun-editor-editable table caption.se-table-caption-bottom{border-top:0;caption-side:bottom}.sun-editor-editable table thead{border-bottom:2px solid var(--se-edit-font)}.sun-editor-editable table tr{box-sizing:border-box;position:relative}.sun-editor-editable table th{background-color:#f3f3f3}.sun-editor-editable table td,.sun-editor-editable table th{background-clip:padding-box;background-color:inherit;border-color:var(--se-edit-border-light);border-style:solid;border-width:1px;padding:.4em;vertical-align:middle}.sun-editor-editable table.se-table-layout-fixed{table-layout:fixed!important}.sun-editor-editable.se-disabled *{user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.sun-editor-editable .se-component{background-color:inherit;display:flex;margin:0 0 10px;padding:1px}.sun-editor-editable .se-component.se-file-figure>figure{outline:1px solid #bbb;padding:1em}.sun-editor-editable .se-component.se-file-figure>figure>a[data-se-file-download]{color:var(--se-edit-font);margin:0 4px}.sun-editor-editable .se-component.se-file-figure>figure>a:before{content:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTIwIDE4SDRWOGgxNm0wLTJoLThsLTItMkg0Yy0xLjExIDAtMiAuODktMiAydjEyYTIgMiAwIDAgMCAyIDJoMTZhMiAyIDAgMCAwIDItMlY4YTIgMiAwIDAgMC0yLTIiLz48L3N2Zz4=);display:inline-block;height:auto;vertical-align:middle;width:1.5em}.sun-editor-editable .__se__float-left{float:left;margin-right:4px}.sun-editor-editable .__se__float-right{float:right;margin-left:4px}.sun-editor-editable .__se__float-center{float:center}.sun-editor-editable .__se__float-none{float:none}.sun-editor-editable audio,.sun-editor-editable iframe,.sun-editor-editable img,.sun-editor-editable video{cursor:default;display:block;height:auto;margin:0;max-width:100%;padding:0;width:auto}.sun-editor-editable .se-image-container,.sun-editor-editable .se-video-container{height:auto;max-width:100%;width:auto}.sun-editor-editable figure{display:block;margin:0;min-width:20px;outline:none;padding:0}.sun-editor-editable .se-component figure{padding:0}.sun-editor-editable .se-flex-component{margin:0 0 10px;max-width:100%;min-width:min-content;width:100%}.sun-editor-editable .se-inline-component{display:inline-block;margin:0;max-width:max-content;min-width:min-content;padding:0;width:auto}.sun-editor-editable figure.se-scroll-figure-x{overflow-x:auto;padding:0 1px}.sun-editor-editable figure.se-scroll-figure-y{overflow-y:auto;padding:1px 0}.sun-editor-editable figure.se-scroll-figure-xy{overflow-x:auto;overflow-y:auto;padding:1px}.sun-editor-editable .__se__float-center figure,.sun-editor-editable .__se__float-left figure,.sun-editor-editable .__se__float-right figure{margin:auto!important}.sun-editor-editable figure figcaption{background-color:var(--se-edit-background-sub);margin:0;outline:none;padding:1em .5em}.sun-editor-editable figure figcaption p{line-height:2;margin:0}.sun-editor-editable .se-image-container a img{margin:1px;outline:1px solid var(--se-edit-active);padding:1px}.sun-editor-editable .se-video-container iframe,.sun-editor-editable .se-video-container video{border:0;height:100%;left:0;outline:1px solid #9e9e9e;position:absolute;top:0;width:100%}.sun-editor-editable .se-video-container figure{left:0;max-width:100%;width:100%}.sun-editor-editable audio{height:54px;width:300px}.sun-editor-editable audio.active{outline:2px solid var(--se-edit-hover)}.sun-editor .__se__p-bordered,.sun-editor-editable .__se__p-bordered{border-bottom:1px solid var(--se-edit-border-dark);border-top:1px solid var(--se-edit-border-dark);padding:4px 0}.sun-editor .__se__p-spaced,.sun-editor-editable .__se__p-spaced{letter-spacing:1px}.sun-editor .__se__p-neon,.sun-editor-editable .__se__p-neon{animation:neonFlicker 1.5s infinite alternate;background:#000;border:2px solid #fff;border-radius:6px;color:#fff;font-style:italic;font-weight:200;padding:6px 4px;text-transform:uppercase}@keyframes neonFlicker{0%,19%,21%,23%,25%,54%,56%,to{box-shadow:0 0 .5px #fff,inset 0 0 .5px #fff,0 0 2px #08f,inset 0 0 2px #08f,0 0 4px #08f,inset 0 0 4px #08f;text-shadow:-.2rem -.2rem 1rem #fff,.2rem .2rem 1rem #fff,0 0 2px #f40,0 0 4px #f40,0 0 6px #f40,0 0 8px #f40,0 0 10px #f40}20%,24%,55%{box-shadow:none;text-shadow:none}}.sun-editor .__se__t-shadow,.sun-editor-editable .__se__t-shadow{text-shadow:-.2rem -.2rem 1rem var(--se-edit-background,.2rem .2rem 1rem --se-edit-background,0 0 .2rem #999,0 0 .4rem #888,0 0 .6rem #777) 0 0 .8rem var(--se-edit-font-sub,0 0 1rem #555)}.sun-editor .__se__t-code,.sun-editor-editable .__se__t-code{background-color:#1b1f230d;border-radius:6px;color:var(--se-edit-font-sub);font-family:monospace;padding:.2em .4em}