/*!
 * jodit-pro - PRO Version of Jodit Editor
 * Author: Chupurnov Valerii <chupurnov@gmail.com>
 * Version: v4.13.15
 * Url: https://xdsoft.net/jodit/pro/
 * License(s): SEE LICENSE IN LICENSE.md
 */
	
/*!
 * Jodit Editor PRO (https://xdsoft.net/jodit/)
 * See LICENSE.md in the project root for license information.
 * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/
 */
/*
 * The editor is embedded inside a Jodit dialog (square corners), so its own
 * outer rounding on the root shell and the canvas area reads as out of place
 * flush against the dialog edge. Flatten those two surfaces (the only ones that
 * carry the card radius), scoped to our container so it only applies here.
 *
 * NB: the editor injects its own CSS from JS using the unprefixed `--jd-jie-*`
 * custom properties, but this build prefixes authored custom properties
 * (`--jd-jie-radius` → `--jd-jie-radius`), so overriding the token from here would
 * not reach the editor — hence the direct `border-radius` on the elements.
 */
.jodit-image-editor-pro .jie,
.jodit-image-editor-pro .jie-canvas-wrap {
  border-radius: 0;
}
/*
 * The save button that started the in-flight export (the adapter toggles the
 * class while the editor status is `exporting`): a small border spinner shown
 * *in place of* the floppy icon — same footprint, so the button doesn't jump.
 */
.jodit-image-editor-pro__button_busy .jodit-ui-button__icon svg {
  display: none;
}
.jodit-image-editor-pro__button_busy .jodit-ui-button__icon::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: jodit-image-editor-pro-spin 0.8s linear infinite;
}
@keyframes jodit-image-editor-pro-spin {
  to {
    transform: rotate(360deg);
  }
}

