/* --------- EDITOR STYLES  ---------------------------------------------------------------------------------------- */

.editor__editable,
/* Classic build. */
main .ck-editor[role='application'] .ck.ck-content,
/* Decoupled document build. */
.ck.editor__editable[role='textbox'],
.ck.ck-editor__editable[role='textbox'],
/* Inline & Balloon build. */
.ck.editor[role='textbox'] {
    width: 100%;
    background: #fff;
    font-size: 1em;
    line-height: 1.6em;
    min-height: var(--ck-sample-editor-min-height);
    padding: 1.5em 2em;
    min-height: 300px;
    overflow: auto;
    max-height: 300px;
}

.ck.ck-editor__editable {
    background: #fff;
    border: 1px solid hsl(0, 0%, 70%);
    width: 100%;
}

/* Because of sidebar `position: relative`, Edge is overriding the outline of a focused editor. */
.ck.ck-editor__editable {
    position: relative;
    z-index: var(--ck-sample-editor-z-index);
}

.editor-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    position: relative;
    width: 100%;
    justify-content: center;
}

.editor-container--with-sidebar > .ck.ck-editor {
    width: calc( 100% - var(--ck-sample-sidebar-width) );
}

.ck .ck-sticky-panel .ck-sticky-panel__content_sticky{ position: static !important; }

/*CKeditor 호환안되는부분*/
.ck-content h1 span,
.ck-editor__editable h1 span{font-weight:700; font-size: 1.7em !important;}
.ck-content h2 span,
.ck-editor__editable h2 span{font-weight:700; font-size: 1.6em !important;}
.ck-content h3 span,
.ck-editor__editable h3 span{font-weight:700; font-size: 1.5em !important;}
.ck-content h4 span,
.ck-editor__editable h4 span{font-weight:700; font-size: 1.4em !important;}
.ck-content h5 span,
.ck-editor__editable h5 span{font-weight:700; font-size: 1.3em !important;}
.ck-content h6 span,
.ck-editor__editable h6 span{font-weight:700; font-size: 1.2em !important;}
.ck-editor__editable.ck-content .todo-list .todo-list__label > span[contenteditable="false"] > input{padding:0}

/*ck 서체설정*/
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap');