/**
 * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
 */
:root {
  --ck-image-processing-highlight-color: #f9fafa;
  --ck-image-processing-background-color: #e3e5e8;
}

.ck.ck-editor__editable .image.image-processing {
  position: relative;
}

.ck.ck-editor__editable .image.image-processing:before {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg,
					var(--ck-image-processing-background-color),
					var(--ck-image-processing-highlight-color),
					var(--ck-image-processing-background-color));
  background-size: 200% 100%;
  width: 100%;
  height: 100%;
  animation: 2s linear infinite ck-image-processing-animation;
  position: absolute;
  top: 0;
  left: 0;
}

.ck.ck-editor__editable .image.image-processing img {
  height: 100%;
}

@keyframes ck-image-processing-animation {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/*# sourceMappingURL=index.css.map */