/* Minification failed. Returning unminified contents.
(141,28): run-time error CSS1039: Token not allowed after unary operator: '-ck-color-base-border'
(142,25): run-time error CSS1039: Token not allowed after unary operator: '-ck-border-radius'
(160,35): run-time error CSS1039: Token not allowed after unary operator: '-ck-color-toolbar-border'
(171,29): run-time error CSS1039: Token not allowed after unary operator: '-ck-spacing-large'
(172,22): run-time error CSS1039: Token not allowed after unary operator: '-ck-color-base-foreground'
(184,29): run-time error CSS1039: Token not allowed after unary operator: '-ck-border-radius'
(201,35): run-time error CSS1039: Token not allowed after unary operator: '-ck-line-height-base'
(201,64): run-time error CSS1039: Token not allowed after unary operator: '-ck-font-size-base'
(234,17): run-time error CSS1039: Token not allowed after unary operator: '-ck-color-list-button-on-text'
(268,33): run-time error CSS1039: Token not allowed after unary operator: '-ck-spacing-large'
(269,34): run-time error CSS1039: Token not allowed after unary operator: '-ck-spacing-large'
(349,22): run-time error CSS1039: Token not allowed after unary operator: '-ck-color-toolbar-background'
(350,19): run-time error CSS1039: Token not allowed after unary operator: '-ck-spacing-small'
(350,43): run-time error CSS1039: Token not allowed after unary operator: '-ck-spacing-standard'
(351,28): run-time error CSS1039: Token not allowed after unary operator: '-ck-color-toolbar-border'
(353,29): run-time error CSS1039: Token not allowed after unary operator: '-ck-border-radius'
(356,28): run-time error CSS1039: Token not allowed after unary operator: '-ck-spacing-standard'
 */
blockquote {
    font-style: italic;
    font-family: Georgia, Times, "Times New Roman", serif;
    padding: 2px 0;
    border-style: solid;
    border-color: #ccc;
    border-width: 0;
}

.cke_contents_ltr blockquote {
    padding-left: 20px;
    padding-right: 8px;
    border-left-width: 5px;
}

.cke_contents_rtl blockquote {
    padding-left: 8px;
    padding-right: 20px;
    border-right-width: 5px;
}

.ck-editor__main a {
    color: #0782C1 !important;
}

    .ck-editor__main a:hover, .ck-editor__main a:focus {
        color: #23527c !important;
        text-decoration: underline !important;
    }

hr {
    border: 0px;
    border-top: 1px solid #ccc;
}

img.right {
    border: 1px solid #ccc;
    float: right;
    margin-left: 15px;
    padding: 5px;
}

img.left {
    border: 1px solid #ccc;
    float: left;
    margin-right: 15px;
    padding: 5px;
}

pre {
    white-space: pre-wrap; /* CSS 2.1 */
    word-wrap: break-word; /* IE7 */
    tab-size: 4;
}

.marker {
    background-color: Yellow;
}

figure {
    border: solid 1px #ccc;
    border-radius: 2px;
    background: transparent;
    padding: 10px;
    margin: 10px 20px;
    display: inline-block;
}

    figure > figcaption {
        text-align: center;
        display: block; /* For IE8 */
    }

.ck-content a > img {
    padding: 1px;
    margin: 1px;
    border: none;
    outline: 1px solid #0782C1;
}

.cke_editable {
    font-size: 13px;
    line-height: 1.6;
}

.esignature-attachment {
    border-bottom: 1px solid #1396CC;
    padding-left: 16px;
    background: url(/prod/Portal/Content/css/ThirdParty/ckeditor5/plugins/eSattachment/images/icon.png) no-repeat center left;
}

.attachment {
    border-bottom: 1px solid #1396CC;
    padding-left: 16px;
    background: url(/prod/Portal/Content/css/ThirdParty/ckeditor5/plugins/attachment/images/icon.png) no-repeat center left;
}

.email-workflow {
    border-bottom: 1px solid #1396CC;
    padding-left: 16px;
    background: url(/prod/Portal/Content/css/ThirdParty/ckeditor5/plugins/emailWorkflow/images/icon.png) no-repeat center left;
}

.ck-content .formElementOnEditor {
    border-bottom: 1px solid #1396CC;
    padding-left: 20px;
    background: url(/prod/Portal/Content/css/ThirdParty/ckeditor5/images/insert_icon.svg) no-repeat center left;
    background-size: 18px;
}

.link-to-next-stage {
    background: url(/prod/Portal/Content/css/ThirdParty/ckeditor5/plugins/linkToNextStage/images/icon.png) no-repeat left center;
    border-bottom: 1px solid #1396cc;
    padding-left: 16px;
}

.content-source-wrapper {
    border: 1px solid #fff;
    border-radius: 5px;
}

    .content-source-wrapper:hover {
        border: 1px solid #26abe2;
        border-radius: 5px;
    }

        .content-source-wrapper:hover:before {
            border: 1px solid #26abe2;
            border-radius: 5px;
            padding: 3px;
            background: #1396cc;
            content: attr(data-title);
            position: absolute;
            color: #fff;
            font-size: 12px;
            line-height: 12px;
            margin-top: 0;
        }

.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;
}

.ck-editor__main {
    cursor: auto;
}

.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: 15.8cm;
        min-height: 21cm;
        /* Keep the "page" off the boundaries of the container. */
        padding: 1cm 2cm 2cm;
        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;
    }


/* 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-bottom: .142em;
}

/* 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;
    color: hsl( 203, 100%, 50% );
}

.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-bottom: .357em;
}

/* 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-bottom: .952em;
}

/* Set the styles for "Paragraph". */
.document-editor .ck-content p {
    font-size: 1em;
    line-height: 1.63em;
    padding-top: .5em;
    margin-bottom: 1.13em;
}

/* 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) );
}

.ck-font-size-dropdown .ck-dropdown__panel .ck-list {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
}

.ck-font-size-dropdown .ck-list__item:last-child {
    padding-top: 20px;
}

.ckeditor-dialog {
    font-size: 12px;
}

    .ckeditor-dialog .ui-dialog-titlebar {
        font-weight: 700;
        font-size: 13px;
        cursor: move;
        position: relative;
        color: #333;
        border-bottom: 1px solid #ddd;
        padding: 10px 12px;
        background: #eee;
    }

        .ckeditor-dialog .ui-dialog-titlebar .ui-dialog-title {
            font: normal normal normal 14px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;
        }

    .ckeditor-dialog .ui-dialog-buttonpane {
        border-bottom: 1px solid #ddd !important;
        background: #eee !important;
    }

.ckEditor-ok-btn {
    color: #fff !important;
    border-color: #2274c9 !important;
    background: #3f8edf !important;
}

.ckEditor-cancel-btn {
    background: #fff !important;
}

.esignOptions {
    margin: 8px;
}

.row-editor {
    display: flex;
    position: relative;
}

    .row-editor .ck.ck-editor {
        width: 100%;
        min-width: 92%;
    }

.editorChangesSidebar, .headerChangesSidebar, .footerChangesSidebar {
    min-width: 30px;
    padding: 0 10px;
}

.ck-content .todo-list .todo-list__label > input {
    left: 0;
    margin-right: 0;
    right: -25px;
    margin-left: -15px
}

.todo-list .todo-list__label {
    display: inline;
}

.ck.ck-word-count {
    display: flex;
    justify-content: flex-end;
    background: var(--ck-color-toolbar-background);
    padding: var(--ck-spacing-small) var(--ck-spacing-standard);
    border: 1px solid var(--ck-color-toolbar-border);
    border-top-width: 0;
    border-radius: 0 0 var(--ck-border-radius);
}
    .ck.ck-word-count .ck-word-count__words {
        margin-right: var(--ck-spacing-standard);
    }
.ck-content .table {
    display: table;
    width: auto;
    margin: 0.9em auto;
}
