/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/2815083
 * @preserve
 */

/**
 * @file
 * CKEditor appearance overrides.
 */

:root {
  /*
   * Color Palette.
   */
  /* Secondary. */
  /* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
  /*
   * Base.
   */
  /*
   * Typography.
   */ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
  /**
   * Spaces.
   */ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
  /*
   * Common.
   */
  /*
   * Inputs.
   */ /* Absolute zero with opacity. */ /* Davy's grey with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
  /*
   * Details.
   */
  /**
   * Buttons.
   */
  /**
   * jQuery.UI dropdown.
   */ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
  /**
   * Progress bar.
   */
  /**
   * Tabledrag icon size.
   */ /* 17px */
  /**
   * Ajax progress.
   */
  /**
   * Breadcrumb.
   */
}

.cke .cke_top,
.cke .cke_bottom,
.cke .cke_contents,
.cke.cke_chrome {
  transition: border-color 0.2s ease-in-out 0s;
}

.cke.cke_chrome {
  border-radius: 0.125em; /* (2 / 16) */
}

.cke .cke_inner {
  border-radius: 0.0625em; /* (1 / 16) */
}

.cke_path_empty:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: #fff;
}

.cke .cke_top {
  border: 0.0833em solid transparent; /* Moono lisa skin uses font-size 12px */
  border-bottom: 0;
  border-radius: 0.0833em 0.0833em 0 0;
}

.cke .cke_contents {
  border: 0.0625em solid transparent;
  border-top: 0;
  border-bottom: 0;
}

.cke .cke_bottom {
  border: 0.0833em solid transparent; /* Moono lisa skin uses font-size 12px */
  border-top: 0;
  border-radius: 0 0 0.0833em 0.0833em;
}

/* Default */

.cke.cke_chrome {
  border-color: #8e929c;
}

/* Error. */

.error + .cke.cke_chrome,
.error + .cke .cke_contents,
.error + .cke .cke_top,
.error + .cke .cke_bottom {
  border-color: #d72222;
}

/* Hover. */

.cke.cke_chrome:hover,
.cke:hover .cke_contents,
.cke:hover .cke_top,
.cke:hover .cke_bottom,
.error + .cke.cke_chrome:hover,
.error + .cke:hover .cke_contents,
.error + .cke:hover .cke_top,
.error + .cke:hover .cke_bottom {
  border-color: #222330;
}

/* Focus. */

.cke.cke_chrome.cke_focus,
.cke.cke_focus .cke_contents,
.cke.cke_focus .cke_top,
.cke.cke_focus .cke_bottom,
.error + .cke.cke_chrome.cke_focus,
.error + .cke.cke_focus .cke_contents,
.error + .cke.cke_focus .cke_top,
.error + .cke.cke_focus .cke_bottom {
  border-color: #003cc5;
}

/* Disabled. */

[disabled] + .cke.cke_chrome {
  border-color: #bababf;
}

[disabled] + .cke .cke_contents,
[disabled] + .cke .cke_top,
[disabled] + .cke .cke_bottom {
  border-color: transparent;
}

[disabled] + .cke .cke_contents {
  border-color: #f2f2f3;
  background: hsl(240, 4%, 90%); /* Calculated from disabled input bg and iframe opacity. */
}

[disabled] + .cke iframe,
[disabled] + .cke .cke_source {
  opacity: 0.505;
}

[disabled] + .cke .cke_bottom {
  background: #f2f2f3;
}

[disabled] + .cke .cke_bottom > * {
  /* Don't show element path dor disabled editor. */
  opacity: 0;
}

[disabled] + .cke .cke_path_empty::after {
  content: none;
}
