/* 오버레이 + 스피너 기본 스타일 */
.__loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
}
.__loading-overlay.is-active { display: block; }

.__loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: __spin 1s linear infinite;
}
@keyframes __spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* datepicker modal */
#date-modal.date-popover {
    display: none;
    position: fixed;
    z-index: 99999;
    opacity: 1 !important;
    visibility: visible !important;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

#date-modal .date-modal__content {
    position: relative;
    transform: none;
    left: auto; top: auto;
    padding: 12px;
    min-width: 280px;
    max-width: 90vw;
    max-height: 80vh;
    overflow: auto;
}

@media screen and (max-width: 767.98px) {
    #date-modal.date-popover {
        background: rgba(0, 0, 0, 0.2);
        top: 56px;
        width: 100vw;
        height: calc(100vh - 56px);
        border-radius: 0;
    }

    #date-modal .date-modal__content {
        max-width: initial;
        max-height: initial;
    }

    #inline-calendar .ui-datepicker-inline {
        width: 100% !important;
        height: calc(100vh - 84px);
    }

    #inline-calendar .ui-datepicker-buttonpane {
        position: fixed;
        width: calc(100vw - 28px);
        bottom: 36px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 10px;
    }

    #inline-calendar .ui-datepicker-close {
        margin-left: 0 !important;
    }

    #inline-calendar table.ui-datepicker-calendar .ui-state-default {
        height: 60px;
        line-height: 60px;
        font-size: 2rem;
    }

    /* jquery ui datepicker 오픈 시 body 스크롤 제어를 위해 추가 */
    .scroll-lock {
        overflow: hidden;
    }

    #rsvtCalendar table.ui-datepicker-calendar tbody tr td a.ui-state-default {
        width: 40px !important;
        height: 40px !important;
        line-height: 40px !important;
    }
}

/* 탭메뉴 */
.tabmenu {
    margin-bottom: 20px;
}
.tabmenu:before, .tabmenu:after {
    content: "";
    display: table;
}

.tab-list {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    font-size: 16px;
}
.tab-list li {
    flex: 0 0 auto;
    height: 48px;
    font-weight: 500;
}
.tab-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 10px;
}
.tab-list li span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    max-height: 2.4em;
    line-height: 1.2em;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #7e8594;
}
.tab-list li.on {
    position: relative;
}
@media (max-width: 1024.98px) {
    .tab-list li {
        width: 33.333%;
    }
}
@media (max-width: 767.98px) {
    .tab-list li {
        width: 50%;
    }
}

.tabmenu-type1 .tab-list {
    display: flex;
    justify-items: flex-start;
    text-align: center;
    flex-wrap: wrap;
    overflow: hidden;
    background-color: #fff;
    border-radius: 10px;
}
.tabmenu-type1 .tab-list li {
    flex: 1 1 auto;
    width: 20%;
    height: 48px;
}
.tabmenu-type1 .tab-list li a {
    border-radius: 10px;
}
.tabmenu-type1 .tab-list li.on a {
    border: 1px solid #bfdbfe;
    background-color: #eff6ff;
    font-weight: 700;
}
.tabmenu-type1 .tab-list li.on a span {
    color: #1d4ed8;
}
@media (min-width: 1025px) {
    .tabmenu-type1 .tab-list li a:hover {
        border-color: transparent;
        background-color: #f9fafb;
    }
    .tabmenu-type1 .tab-list li a:hover span {
        color: #374151;
    }
    .tabmenu-type1 .tab-list li.on a:hover {
        border: 1px solid #bfdbfe;
        background-color: #eff6ff;
    }
    .tabmenu-type1 .tab-list li.on a:hover span {
        color: #1d4ed8;
    }
}
.tabmenu-type1 .tab-list li:nth-child(n+6) {
    flex: 0 0 auto;
}
@media (max-width: 1024.98px) {
    .tabmenu-type1 .tab-list {
        flex-wrap: wrap;
    }
    .tabmenu-type1 .tab-list li {
        flex: 1 1 auto;
        width: 33.333%;
    }
    .tabmenu-type1 .tab-list li:nth-child(n+4) {
        flex: 0 0 auto;
    }
}
@media (max-width: 767.98px) {
    .tabmenu-type1 .tab-list li {
        width: 50%;
    }
    .tabmenu-type1 .tab-list li:nth-child(n+3) {
        flex: 0 0 auto;
    }
}
.tabmenu-type1.bg-lightgray {
    border-radius: 10px;
}
.tabmenu-type1.bg-lightgray .tab-list {
    border: 1px solid #f9fafb;
    border-radius: 10px;
    background-color: #f9fafb !important;
}
@media (min-width: 1025px) {
    .tabmenu-type1.bg-lightgray li a:hover {
        background-color: #f3f4f6;
    }
}

.tabmenu-type2 li.on span {
    color: #1d4ed8;
}

.tab-content {
    /*display: none;*/
}

/* 에디터 영역 */
.webeditor-area .webeditor-viewport {
    padding: 0;
    border-radius: 0 0 12px 12px;
}
.webeditor-area .webeditor-viewport .cke_chrome {
    border: none;
}
.webeditor-area .webeditor-viewport .cke_toolbar_break {
    width: calc(100% + 24px);
    height: 1px;
    margin-left: -12px;
    background: #e5e7eb;
}
.webeditor-area .cke_top.cke_reset_all {
    display: flex;
    position: relative;
    min-height: 76px;
    height: auto;
    padding: 4px 12px 8px;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}
.webeditor-area .cke_top.cke_reset_all#cke_4_top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.webeditor-area .cke_contents.cke_reset#cke_4_contents {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.webeditor-area .cke_inner {
    border-radius: 12px;
}
.webeditor-area .cke_inner .cke_contents {
    text-align: center;
}
.webeditor-area .cke_inner .cke_toolbar:nth-child(n+3) {
    margin-top: 8px;
}
.webeditor-area .cke_toolbox {
    width: 100%;
    height: 100%;
    padding-bottom: 0;
    /* 드롭다운 (combo box) button */
}
.webeditor-area .cke_toolbox .cke_combo_button {
    width: 102px !important;
    height: 34px !important;
    padding: 0 30px 0 16px !important;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: right 11px center;
    background-image: url(../../neibis/images/ico-caret-down-gray-md@2x.png);
    background-color: #fff;
    border-radius: 9px;
    border: 1px solid #d1d5db;
    cursor: pointer;
}
.webeditor-area .cke_toolbox .cke_combo_button:disabled {
    border-color: #e5e7eb;
    pointer-events: none;
    background-color: #f3f4f6;
}
.webeditor-area .cke_toolbox .cke_combo_button[aria-expanded=true] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.webeditor-area .cke_toolbox .cke_combo_button:hover {
    margin-left: 0;
    background-repeat: no-repeat;
    background-position: right 11px center;
    background-image: url(../../neibis/images/ico-caret-down-gray-md@2x.png);
    background-color: #fff;
    background-size: 16px;
    border: 1px solid #d1d5db;
}
.webeditor-area .cke_toolbox .cke_combo__font {
    margin-right: 4px;
}
.webeditor-area .cke_toolbox .cke_combo__font .cke_combo_button {
    height: 24px !important;
}
.webeditor-area .cke_toolbox .cke_combo__font .cke_combo_button .cke_combo_inlinelabel {
    margin-top: 0;
    font-size: 12px;
    line-height: 24px;
}
.webeditor-area .cke_toolbox .cke_combo__font .cke_combo_button .cke_combo_text {
    padding: 0;
}
.webeditor-area .cke_toolbox .cke_combo__font:after {
    content: none;
}
.webeditor-area .cke_toolbox .cke_combo_text.cke_combo_inlinelabel {
    width: auto;
    padding-left: 0;
    margin-top: 7px;
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    color: #374151;
    cursor: pointer;
}
.webeditor-area .cke_toolbox .cke_combo_text.cke_combo_inlinelabel:hover {
    margin-left: 0 !important;
}
.webeditor-area .cke_toolbox .cke_combo {
    margin-bottom: 0;
}
.webeditor-area .cke_combo_arrow,
.webeditor-area .cke_combo_open,
.webeditor-area .cke_toolbar_end {
    display: none;
}
.webeditor-area .cke_button.cke_button__undo,
.webeditor-area .cke_button.cke_button__redo {
    width: 28px !important;
    height: 28px !important;
    margin: 5px 0 6px;
    padding: 0 !important;
    border: none;
    cursor: pointer;
}
.webeditor-area .cke_button.cke_button__undo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background: url(../../neibis/images/inuix.editor/ico-prev-darkgray-sm@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.webeditor-area .cke_button.cke_button__redo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background: url(../../neibis/images/inuix.editor/ico-next-darkgray-sm@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.webeditor-area a.cke_button_on {
    background: #d1d5db !important;
}
.webeditor-area .cke_bottom {
    display: none;
}
.webeditor-area .cke_toolbar.cke_toolbar_last {
    padding-right: 12px;
}
.webeditor-area [aria-labelledby=cke_13_label] .cke_button:hover {
    background: #d1d5db;
}
.webeditor-area #cke_1_contents,
.webeditor-area .cke_contents {
    background: #f9fafb;
    padding: 12px;
}

/* toolbar */
.cke_toolbar .cke_toolgroup {
    display: flex;
    align-items: center;
    margin: 0 !important;
    padding-right: 0 !important;
}
.cke_toolbar .cke_toolgroup a.cke_button:last-child:after {
    display: none !important;
}
.cke_toolbar .cke_toolgroup .cke_button {
    position: relative;
    margin-right: 4px;
    padding: 4px 6px;
    border: none;
    border-radius: 5px;
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif;
    font-size: 14px;
    color: #374151 !important;
    line-height: 130%;
    cursor: pointer;
}
.cke_toolbar .cke_toolgroup .cke_button .cke_button_icon {
    background-image: none !important;
}
.cke_toolbar .cke_toolgroup .cke_button .cke_button_icon.cke_button__h1_icon, .cke_toolbar .cke_toolgroup .cke_button .cke_button_icon.cke_button__h2_icon, .cke_toolbar .cke_toolgroup .cke_button .cke_button_icon.cke_button__h3_icon {
    display: none;
    background-image: none !important;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__h1:before {
    content: "제목1";
    width: 34px;
    font-weight: 700;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__h2:before {
    content: "제목2";
    width: 34px;
    font-weight: 500;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__h3:before {
    content: "제목3";
    width: 34px;
    font-weight: 400;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__bold:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-bold-md@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__italic:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-italic-md@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__underline:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-underline-md@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__strike:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-strike-md@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__code:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-inlinecode-md@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__codeblock:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 14px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-blockcode-sm@2x.png) center center no-repeat;
    background-size: 16px 14px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__textcolor {
    padding: 4px 4px 4px 6px !important;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__textcolor:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-textcolor-md@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__bgcolor {
    padding: 4px 4px 4px 6px !important;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__bgcolor:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-bgcolor-sm@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__justifyleft:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-alignleft-sm@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__justifycenter:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-aligncenter-sm@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__justifyright:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-alignright-sm@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__bulletedlist:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-ul-md@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__numberedlist:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-ol-md@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__table:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-table-md@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__blockquote {
    width: 15px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__blockquote:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 15px;
    height: 15px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-quote-md@2x.png) center center no-repeat;
    background-size: 15px 15px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__image:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-image-md@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__link:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-link-md@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__button {
    width: 21px;
    margin-right: 8px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__button:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 21px;
    height: 13.5px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-button-md@2x.png) center center no-repeat;
    background-size: 21px 13.5px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__emojipanel {
    padding: 4px 4px 4px 6px !important;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__emojipanel:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-emoji-md@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button__templates:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-template-md@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_toolbar .cke_toolgroup .cke_button .cke_button_arrow {
    width: 12px;
    height: 12px;
    margin: 4px 0 0 4px !important;
    background: url(../../neibis/images/inuix.editor/ico-toolbar-downarrow-sm@2x.png) center center no-repeat;
    background-size: 12px 12px;
    border: none !important;
}
.cke_toolbar .cke_toolgroup .cke_button.cke_button_off:hover, .cke_toolbar .cke_toolgroup .cke_button.cke_button_off:focus, .cke_toolbar .cke_toolgroup .cke_button.cke_button_off:active {
    padding: 4px 6px;
}
.cke_toolbar .cke_toolgroup .cke_button:hover {
    border-radius: 5px;
    background: #d1d5db;
}
.cke_toolbar.cke_view_btngroup {
    position: absolute !important;
    right: 0 !important;
}
.cke_toolbar.cke_view_btngroup::before {
    content: none !important;
}
.cke_toolbar.cke_view_btngroup .cke_toolgroup {
    height: 28px;
    margin-bottom: 6px;
    margin-top: 2px !important;
    margin-right: 4px !important;
    padding: 2px;
    border-radius: 6px;
    background: #d1d5db;
}
.cke_toolbar.cke_view_btngroup .cke_toolgroup .cke_button {
    cursor: pointer;
    margin-right: 0;
}
.cke_toolbar.cke_view_btngroup .cke_toolgroup .cke_button[title="PC View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-pc-gray-sm@2x.png) center center no-repeat !important;
    background-size: 16px 16px !important;
}
.cke_toolbar.cke_view_btngroup .cke_toolgroup .cke_button[title="Tablet View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-tablet-gray-sm@2x.png) center center no-repeat !important;
    background-size: 12px 12px !important;
}
.cke_toolbar.cke_view_btngroup .cke_toolgroup .cke_button[title="Mobile View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-moblie-gray-sm@2x.png) center center no-repeat !important;
    background-size: 12px 12px !important;
}
.cke_toolbar.cke_view_btngroup .cke_toolgroup .cke_button.on {
    background: #4b5563;
}
.cke_toolbar.cke_view_btngroup .cke_toolgroup .cke_button.on[title="PC View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-pc-white-sm@2x.png) center center no-repeat !important;
    background-size: 16px 16px !important;
}
.cke_toolbar.cke_view_btngroup .cke_toolgroup .cke_button.on[title="Tablet View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-tablet-white-sm@2x.png) center center no-repeat !important;
    background-size: 12px 12px !important;
}
.cke_toolbar.cke_view_btngroup .cke_toolgroup .cke_button.on[title="Mobile View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-moblie-white-sm@2x.png) center center no-repeat !important;
    background-size: 12px 12px !important;
}
.cke_toolbar.cke_view_btngroup .cke_toolgroup .cke_button:hover {
    background: #a6adb9 !important;
}
.cke_toolbar.cke_view_btngroup .cke_toolgroup .cke_button:hover[title="PC View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-pc-white-sm@2x.png) center center no-repeat !important;
    background-size: 16px 16px !important;
}
.cke_toolbar.cke_view_btngroup .cke_toolgroup .cke_button:hover[title="Tablet View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-tablet-white-sm@2x.png) center center no-repeat !important;
    background-size: 12px 12px !important;
}
.cke_toolbar.cke_view_btngroup .cke_toolgroup .cke_button:hover[title="Mobile View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-moblie-white-sm@2x.png) center center no-repeat !important;
    background-size: 12px 12px !important;
}
.cke_toolbar#cke_17,
.cke_toolbar#cke_20,
.cke_toolbar#cke_23,
.cke_toolbar#cke_81
.cke_toolbar_break {
    display: none !important;
}
.cke_toolbar#cke_24 {
    position: relative;
    margin-left: 4px;
}
.cke_toolbar#cke_24::before {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    right: 0px;
    width: 1px;
    height: 16px;
    background-color: #d1d5db;
    border-radius: 100px;
}
.cke_toolbar#cke_32 {
    position: relative;
    margin-left: 4px;
}
.cke_toolbar#cke_32::before {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    right: 0px;
    width: 1px;
    height: 16px;
    background-color: #d1d5db;
    border-radius: 100px;
}
.cke_toolbar#cke_35 {
    position: relative;
    margin-left: 4px;
}
.cke_toolbar#cke_35::before {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    right: 0px;
    width: 1px;
    height: 16px;
    background-color: #d1d5db;
    border-radius: 100px;
}
.cke_toolbar#cke_39 {
    position: relative;
    margin-left: 4px;
}
.cke_toolbar#cke_39::before {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    right: 0px;
    width: 1px;
    height: 16px;
    background-color: #d1d5db;
    border-radius: 100px;
}
.cke_toolbar#cke_42 {
    position: relative;
    margin-left: 4px;
}
.cke_toolbar#cke_42::before {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    right: 0px;
    width: 1px;
    height: 16px;
    background-color: #d1d5db;
    border-radius: 100px;
}
.cke_toolbar#cke_45 {
    position: relative;
    margin-left: 4px;
    margin-right: 4px;
}
.cke_toolbar#cke_45::before {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    right: 0px;
    width: 1px;
    height: 16px;
    background-color: #d1d5db;
    border-radius: 100px;
}
.cke_toolbar[aria-labelledby=cke_16_label] .cke_toolgroup {
    height: 28px;
    margin-bottom: 6px;
    margin-top: 2px !important;
    margin-right: 4px !important;
    padding: 2px;
    border-radius: 6px;
    background: #d1d5db;
}
.cke_toolbar[aria-labelledby=cke_16_label] .cke_toolgroup .cke_button {
    cursor: pointer;
    margin-right: 0;
}
.cke_toolbar[aria-labelledby=cke_16_label] .cke_toolgroup .cke_button[title="PC View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-pc-gray-sm@2x.png) center center no-repeat !important;
    background-size: 16px 16px !important;
}
.cke_toolbar[aria-labelledby=cke_16_label] .cke_toolgroup .cke_button[title="Tablet View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-tablet-gray-sm@2x.png) center center no-repeat !important;
    background-size: 12px 12px !important;
}
.cke_toolbar[aria-labelledby=cke_16_label] .cke_toolgroup .cke_button[title="Mobile View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-moblie-gray-sm@2x.png) center center no-repeat !important;
    background-size: 12px 12px !important;
}
.cke_toolbar[aria-labelledby=cke_16_label] .cke_toolgroup .cke_button.on {
    background: #4b5563;
}
.cke_toolbar[aria-labelledby=cke_16_label] .cke_toolgroup .cke_button.on[title="PC View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-pc-white-sm@2x.png) center center no-repeat !important;
    background-size: 16px 16px !important;
}
.cke_toolbar[aria-labelledby=cke_16_label] .cke_toolgroup .cke_button.on[title="Tablet View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-tablet-white-sm@2x.png) center center no-repeat !important;
    background-size: 12px 12px !important;
}
.cke_toolbar[aria-labelledby=cke_16_label] .cke_toolgroup .cke_button.on[title="Mobile View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-moblie-white-sm@2x.png) center center no-repeat !important;
    background-size: 12px 12px !important;
}
.cke_toolbar[aria-labelledby=cke_16_label] .cke_toolgroup .cke_button:hover {
    background: #a6adb9 !important;
}
.cke_toolbar[aria-labelledby=cke_16_label] .cke_toolgroup .cke_button:hover[title="PC View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-pc-white-sm@2x.png) center center no-repeat !important;
    background-size: 16px 16px !important;
}
.cke_toolbar[aria-labelledby=cke_16_label] .cke_toolgroup .cke_button:hover[title="Tablet View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-tablet-white-sm@2x.png) center center no-repeat !important;
    background-size: 12px 12px !important;
}
.cke_toolbar[aria-labelledby=cke_16_label] .cke_toolgroup .cke_button:hover[title="Mobile View"] .cke_button_icon {
    background: url(../../neibis/images/inuix.editor/ico-moblie-white-sm@2x.png) center center no-repeat !important;
    background-size: 12px 12px !important;
}

/* 콘텐츠 변경 이력 버튼 */
.btn-outline-gray.btn-con-change-history {
    position: relative;
    padding-left: 38px !important;
}
.btn-outline-gray.btn-con-change-history::before {
    content: "";
    position: absolute;
    top: calc(50% - 7px);
    left: 17px;
    width: 16px;
    height: 16px;
    background: url(../../neibis/images/inuix.editor/ico-history-darkgray-md.png) center center no-repeat !important;
    background-size: 16px 16px !important;
}

/* 드롭다운 (combo box) */
.cke_panel.cke_panel {
    border: none;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif;
}

.cke_panel.cke_combopanel {
    width: 140px;
    height: 246px;
    padding: 4px;
    border: 1px solid #d1d5db;
    border-radius: 0px 0px 9px 9px !important;
    box-shadow: none;
}

/* 레이어 팝업 */
.cke_dialog_background_cover {
    z-index: 600 !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.cke_reset_all .cke_dialog {
    border-radius: 12px;
    overflow: hidden;
}
.cke_reset_all.cke_editor_ckeditor_dialog {
    z-index: 700 !important;
}
.cke_reset_all .cke_dialog_title {
    display: flex;
    padding: 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid #e5e7eb;
    background: none;
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    color: #1f2937;
}
.cke_reset_all .cke_dialog_contents_body {
    padding: 14px 24px 24px;
}
.cke_reset_all .cke_dialog_contents_body tbody {
    width: 100%;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_hbox .cke_dialog_ui_hbox_first {
    padding-right: 10px;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_hbox > .cke_dialog_ui_hbox_last {
    padding-right: 0;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_hbox > .cke_dialog_ui_hbox_last .cke_dialog_ui_hbox_last {
    padding-left: 0;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_text {
    margin-top: 10px;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_labeled_label {
    display: inline-block;
    height: 18px;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
    color: #1f2937;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_labeled_label + .cke_dialog_ui_labeled_content {
    margin-top: 0;
    margin-right: 5px;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_labeled_content {
    width: 100% !important;
    min-width: 150px !important;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_vbox_child {
    width: 100% !important;
    padding: 0 !important;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_vbox_child .cke_dialog_ui_html {
    margin-top: 10px !important;
    margin-left: 20px !important;
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif !important;
    font-size: 14px !important;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_file {
    margin-top: 10px;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_input_file {
    margin-top: 10px;
}
.cke_reset_all .cke_dialog_contents_body .ImagePreviewBox {
    margin-top: 8px !important;
    padding: 12px 0 12px 16px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 9px !important;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_input_text {
    min-width: 150px !important;
    padding: 0 !important;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_input_text .cke_dialog_ui_input_text {
    display: flex !important;
    height: 40px !important;
    padding: 0px 16px !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 1 0 0 !important;
    border-radius: 9px !important;
    border: 1px solid #d1d5db !important;
    background: #fff !important;
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 130% !important;
    color: #374151 !important;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_select {
    margin-top: 10px !important;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_input_select {
    min-width: 161px !important;
    width: 100% !important;
    margin-right: 0 !important;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_input_select .cke_dialog_ui_input_select {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 100% !important;
    height: 40px !important;
    padding: 0 0 0 12px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    background-size: 12px !important;
    background: url(../../neibis/images/ico-caret-down-gray-sm@2x.png) right 20px no-repeat !important;
    background-position: right 12px center !important;
    background-size: 12px 12px !important;
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 130% !important;
    color: #374151 !important;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_textarea {
    margin-top: 10px !important;
}
.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_input_textarea .cke_dialog_ui_input_textarea {
    height: auto !important;
    min-height: 120px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    overflow-y: auto !important;
    line-height: inherit !important;
    resize: none !important;
    border: 1px solid #d1d5db !important;
    border-radius: 9px !important;
    color: #374151 !important;
    background: #fff url(../../neibis/images/ico-textarea@2x.png) no-repeat !important;
    background-size: 5.5px 5.5px !important;
    background-position: right 6px bottom 6px !important;
}
.cke_reset_all .cke_dialog_footer {
    display: flex;
    padding: 16px 0px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-top: 1px solid #e5e7eb;
    background: none;
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif;
}
.cke_reset_all .cke_dialog_footer .cke_dialog_ui_button {
    display: flex;
    width: 70px;
    height: 40px;
    padding: 0px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 9px;
}
.cke_reset_all .cke_dialog_footer .cke_dialog_ui_button span {
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
}
.cke_reset_all .cke_dialog_footer .cke_dialog_ui_button_ok {
    border: none;
    background: #357fed;
    color: #fff;
}
.cke_reset_all .cke_dialog_footer .cke_dialog_ui_button_ok:hover, .cke_reset_all .cke_dialog_footer .cke_dialog_ui_button_ok:focus {
    border: none;
    background: #2563eb;
    box-shadow: none;
}
.cke_reset_all .cke_dialog_footer .cke_dialog_ui_button_cancel {
    border: 1px solid #d1d5db;
    background: #fff;
}
.cke_reset_all .cke_dialog_close_button {
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: url(../../neibis/images/inuix.editor/ico-close-darkgray-md@2x.png) center center no-repeat;
    background-size: 16px 16px;
}
.cke_reset_all .cke_resizer {
    display: none;
}
.cke_reset_all .cke_dialog_ui_checkbox label {
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif;
    font-size: 14px;
}
.cke_reset_all #cke_378_uiElement {
    margin-left: 10px;
}
.cke_reset_all .cke_dialog_tabs {
    left: 24px;
    width: calc(100% - 48px);
    height: 47px;
    border-bottom: 1px solid #e5e7eb;
}
.cke_reset_all .cke_dialog_tabs .cke_dialog_tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    border: none;
    background: none;
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #7e8594;
}
.cke_reset_all .cke_dialog_tabs .cke_dialog_tab.cke_dialog_tab_selected {
    position: relative;
    color: #1d4ed8;
    font-weight: 700;
}
.cke_reset_all .cke_dialog_tabs .cke_dialog_tab.cke_dialog_tab_selected::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #357fed;
}
.cke_reset_all .cke_dialog_tabs .cke_dialog_tab:hover:not(.cke_reset_all .cke_dialog_tabs .cke_dialog_tab.cke_dialog_tab_selected) {
    position: relative;
    color: #374151;
}
.cke_reset_all .cke_dialog_tabs .cke_dialog_tab:hover:not(.cke_reset_all .cke_dialog_tabs .cke_dialog_tab.cke_dialog_tab_selected)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d1d5db;
}
.cke_reset_all .cke_dialog_tabs + .cke_dialog_contents {
    border-top: none;
}

.cke_browser_webkit .cke_tpl_list {
    margin-top: 10px !important;
}
.cke_browser_webkit .cke_tpl_list .cke_tpl_title {
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif !important;
    font-size: 14px !important;
}
.cke_browser_webkit .cke_tpl_list .cke_tpl_title + br + span {
    display: block !important;
    margin-top: 5px !important;
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif !important;
    font-size: 14px !important;
}
.cke_browser_webkit .cke_tpl_list .cke_tpl_preview_img {
    padding-right: 15px !important;
}
.cke_browser_webkit .cke_dialog_image_ratiolock {
    display: none !important;
}
.cke_browser_webkit #cke_658_uiElement {
    margin-left: 10px !important;
}

#uploadButton {
    background-color: red;
}

.cke_dialog_ui_button.cke_dialog_ui_fileButton, .cke_dialog_ui_button.cke_dialog_ui_fileButton:hover, .cke_dialog_ui_button.cke_dialog_ui_fileButton:focus {
    display: inline-flex;
    width: auto;
    height: 40px;
    padding: 0px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 9px;
    border: none;
    background: #357fed;
}
.cke_dialog_ui_button.cke_dialog_ui_fileButton.cke_dialog_ui_fileButton:hover, .cke_dialog_ui_button.cke_dialog_ui_fileButton.cke_dialog_ui_fileButton:focus, .cke_dialog_ui_button.cke_dialog_ui_fileButton:hover.cke_dialog_ui_fileButton:hover, .cke_dialog_ui_button.cke_dialog_ui_fileButton:hover.cke_dialog_ui_fileButton:focus, .cke_dialog_ui_button.cke_dialog_ui_fileButton:focus.cke_dialog_ui_fileButton:hover, .cke_dialog_ui_button.cke_dialog_ui_fileButton:focus.cke_dialog_ui_fileButton:focus {
    background-color: #2563eb;
}
.cke_dialog_ui_button.cke_dialog_ui_fileButton .cke_dialog_ui_button, .cke_dialog_ui_button.cke_dialog_ui_fileButton:hover .cke_dialog_ui_button, .cke_dialog_ui_button.cke_dialog_ui_fileButton:focus .cke_dialog_ui_button {
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    line-height: 130%;
}

.cke_reset_all .cke_dialog_contents_body .cke_dialog_ui_input_file {
    height: 40px;
}

.cke_dialog_ui_labeled_content.cke_dialog_ui_input_file .cke_dialog_ui_input_file {
    margin-top: 0;
    padding: 7px 10px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    box-sizing: border-box;
}

.cke_notification.cke_notification_success {
    background-color: #099268;
}
.cke_notification.cke_notification_warning {
    background-color: #e03131;
}
.cke_notification.cke_notification_success, .cke_notification.cke_notification_warning {
    padding: 10px;
    border-radius: 16px;
    border: none;
}
.cke_notification.cke_notification_success .cke_notification_message, .cke_notification.cke_notification_warning .cke_notification_message {
    font-family: -apple-system, BlinkMacSystemFont, "Spoqa Han Sans Neo", "malgun gothic", Arial, sans-serif;
    font-size: 14px;
}
.cke_notification.cke_notification_success .cke_notification_close, .cke_notification.cke_notification_warning .cke_notification_close {
    width: 20px;
    height: 20px;
    margin: 5px;
    background: url(../../neibis/images/ico-floating-close-white-lg@2x.png);
    background-size: 20px auto;
}

.html-editor-area .html-editor-header {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 12px;
}
.html-editor-area .html-editor-header .tabmenu {
    margin-bottom: 0;
}
.html-editor-area .html-editor-body {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
}
.html-editor-area .html-editor-body .codes-area {
    border-radius: 8px;
}
.html-editor-area .html-editor-body > .webeditor-area {
    position: absolute;
    bottom: 0;
    left: -9999px;
    visibility: hidden;
}
.html-editor-area .html-editor-body .webeditor-viewport {
    border-radius: 12px;
}
.html-editor-area .html-editor-body .CodeMirror-sizer {
    margin-left: 48px !important;
}

/* 출처 유형 */
.citation_wrap {
    border-radius: 8px;
    border: 1px solid #999;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    column-gap: 70px;
}

.citation_wrap img {
    width: auto;
    height: 45px;
}

.citation_wrap p {
    font-size: 20px;
    font-weight: bold;
}

.btn-select-artist{
    width: 100%;
}

@media (max-width: 767.98px) {
    .citation_wrap {
        padding: 24px 30px;
        flex-direction: column;
        row-gap: 18px;
    }
    .citation_wrap img {
        height: 70px;
    }
    .citation_wrap p {
        font-size: 14px;
        font-weight: bold;
    }
}