.document-editor {
    border: 1px solid var(--ck-color-base-border);
    border-radius: var(--ck-border-radius);

    /* Set vertical boundaries for the document editor. */
    /* max-height: 700px; */

    /* This element is a flex container for easier rendering. */
    display: flex;
    flex-flow: column nowrap;
}

.document-editor__toolbar {
    /* Make sure the toolbar container is always above the editable. */
    z-index: 1;

    /* Create the illusion of the toolbar floating over the editable. */
    box-shadow: 0 0 5px hsla(0, 0%, 0%, .2);

    /* Use the CKEditor CSS variables to keep the UI consistent. */
    border-bottom: 1px solid var(--ck-color-toolbar-border);
}

/* Adjust the look of the toolbar inside the container. */
.document-editor__toolbar .ck-toolbar {
    border: 0;
    border-radius: 0;
}

/* Make the editable container look like the inside of a native word processor application. */
.document-editor__editable-container {
    padding: calc(2 * var(--ck-spacing-large));
    background: var(--ck-color-base-foreground);

    /* Make it possible to scroll the "page" of the edited content. */
    /* overflow-y: scroll; */
}

.document-editor__editable-container .ck-editor__editable {
    /* Set the dimensions of the "page". */
    width: 21cm;
    min-height: 29.7cm;

    /* Keep the "page" off the boundaries of the container. */
    padding: 0cm 0.5cm;

    border: 1px hsl(0, 0%, 82.7%) solid;
    border-radius: var(--ck-border-radius);
    background: white;

    /* The "page" should cast a slight shadow (3D illusion). */
    box-shadow: 0 0 5px hsla(0, 0%, 0%, .1);

    /* Center the "page". */
    margin: 0 auto;
}

.document-editor__editable-container_mini .ck-editor__editable {
    /* Set the dimensions of the "page". */
    min-height: 2cm;
}

/* Set the default font for the "page" of the content. */
.document-editor .ck-content,
.document-editor .ck-heading-dropdown .ck-list .ck-button__label {
    font: 16px/1.6 "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Adjust the headings dropdown to host some larger heading styles. */
.document-editor .ck-heading-dropdown .ck-list .ck-button__label {
    line-height: calc(1.7 * var(--ck-line-height-base) * var(--ck-font-size-base));
    min-width: 6em;
}

/* Scale down all heading previews because they are way too big to be presented in the UI.
Preserve the relative scale, though. */
.document-editor .ck-heading-dropdown .ck-list .ck-button:not(.ck-heading_paragraph) .ck-button__label {
    transform: scale(0.8);
    transform-origin: left;
}

/* Set the styles for "Heading 1". */
.document-editor .ck-content h2,
.document-editor .ck-heading-dropdown .ck-heading_heading1 .ck-button__label {
    font-size: 2.18em;
    font-weight: normal;
}

.document-editor .ck-content h2 {
    line-height: 1.37em;
    padding-top: .342em;
    margin-top: 0;
    margin-bottom: 0;
}

/* Set the styles for "Heading 2". */
.document-editor .ck-content h3,
.document-editor .ck-heading-dropdown .ck-heading_heading2 .ck-button__label {
    font-size: 1.75em;
    font-weight: normal;
}

.document-editor .ck-heading-dropdown .ck-heading_heading2.ck-on .ck-button__label {
    color: var(--ck-color-list-button-on-text);
}

/* Set the styles for "Heading 2". */
.document-editor .ck-content h3 {
    line-height: 1.86em;
    padding-top: .171em;
    margin-top: 0;
    margin-bottom: 0;
}

/* Set the styles for "Heading 3". */
.document-editor .ck-content h4,
.document-editor .ck-heading-dropdown .ck-heading_heading3 .ck-button__label {
    font-size: 1.31em;
    font-weight: bold;
}

.document-editor .ck-content h4 {
    line-height: 1.24em;
    padding-top: .286em;
    margin-top: 0;
    margin-bottom: 0;
}

/* Set the styles for "Paragraph". */
.document-editor .ck-content p {
    font-size: 1em;
    line-height: 1.63em;
    margin: 0;
}

/* Make the block quoted text serif with some additional spacing. */
.document-editor .ck-content blockquote {
    font-family: Georgia, serif;
    margin-left: calc(2 * var(--ck-spacing-large));
    margin-right: calc(2 * var(--ck-spacing-large));
}

/* Make the block quoted text serif with some additional spacing. */
.document-editor .ck-content p,
.document-editor .ck-content h1,
.document-editor .ck-content h2,
.document-editor .ck-content h3,
.document-editor .ck-content h4 {
    font-family: arial, "Helvetica Neue", Helvetica, sans-serif;
}

.document-editor .ck-content .image {
    clear: both;
    display: table;
    margin: 0.9em auto;
    min-width: 50px;
    text-align: center;
}

.table td .document-editor img {
    width: auto;
    height: auto;
    border-radius: unset;
}

.dynamic-template-pdf .text-tiny {
    font-size: .7em
}

.dynamic-template-pdf .text-small,
.dynamic-template-pdf .ql-size-small {
    font-size: .85em;
}

.dynamic-template-pdf .text-big,
.dynamic-template-pdf .ql-size-large {
    font-size: 1.4em
}

.dynamic-template-pdf .text-huge,
.dynamic-template-pdf .ql-size-huge {
    font-size: 1.8em
}

/* Table */
.dynamic-template-pdf .table {
    margin: 0.9em auto;
    display: table;
}

.dynamic-template-pdf .table table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    height: 100%;
}

.dynamic-template-pdf .table table td,
.dynamic-template-pdf .table table th {
    min-width: 2em;
    padding: .4em;
}

.dynamic-template-pdf .table table th {
    font-weight: bold;
    background: hsla(0, 0%, 0%, 5%);
}

.document-editor .ck-content .image-style-align-right {
    clear: none
}

.document-editor .ck-content .image-style-side {
    float: right;
    margin-left: var(--ck-image-style-spacing);
    max-width: 50%
}

.document-editor .ck-content .image-style-align-left {
    float: left;
    margin-right: var(--ck-image-style-spacing)
}

.document-editor .ck-content .image-style-align-center {
    margin-left: auto;
    margin-right: auto
}

.document-editor .ck-content .image-style-align-right {
    float: right;
    margin-left: var(--ck-image-style-spacing)
}

.document-editor .ck-content .image-style-block-align-right {
    margin-left: auto;
    margin-right: 0
}

.document-editor .ck-content .image-style-block-align-left {
    margin-left: 0;
    margin-right: auto
}

.document-editor .ck-content p + .image-style-align-left, .ck-content p + .image-style-align-right, .ck-content p + .image-style-side {
    margin-top: 0
}

.document-editor .ck-content .image-inline.image-style-align-left, .ck-content .image-inline.image-style-align-right {
    margin-bottom: var(--ck-inline-image-style-spacing);
}

body {
    --ck-z-default: 99999;
    --ck-z-modal: calc(var(--ck-z-default) + 999);
}