/* notice */
.content-section .content-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px 0;
}

.support-group {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px 0;
}

/* notice */


/* faq */
.faq-tab {
    width: max-content;
}

.faq-tab ul {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 56px;
}

.faq-tab ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.faq-tab ul li:not(:last-child):after {
    content: "";
    width: 1px;
    height: 14px;
    background-color: var(--colorGray300);
    position: absolute;
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
}

.faq-tab ul li button {
    font-size: var(--fontSizeMd);
    line-height: var(--lineHeightMd);
    color: var(--colorGray600);
}

/* faq */


/* check-ip */
.ipcheck-group {
    width: 100%;
}

.ipcheck-group {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px 0;
}

.ip-search {
    width: 100%;
    height: 200px;
    border-top: 2px solid var(--colorBlack);
    border-bottom: 1px solid var(--colorGray300);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px 0;
    box-sizing: border-box;
}

.ip-search p {
    font-size: var(--fontSizeBase);
    line-height: var(--lineHeightSm);
}

/* check-ip */


/* inquiry-write */
.write-group {
    width: 100%;
    border-top: 2px solid var(--colorBlack);
    border-bottom: 1px solid var(--colorGray300);
    padding: 40px 0;
}

.write-group .signup-group ul li {
    grid-template-columns: 72px 1fr;
}

.file-group {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.file-input {
    height: 48px;
    padding: 0 14px 0 12px;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    gap: 0 10px;
    border: 1px solid var(--colorGray300);
    box-sizing: border-box;
}

.file-input>p {
    font-size: var(--fontSizeSm);
    color: var(--colorGray600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-remove-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-add-group {
    width: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--colorBlack);
    cursor: pointer;
}

.file-add-group input {
    display: none;
}

.write-btn-group {
    grid-template-columns: auto auto;
}

.write-group .input-group {
    width: calc(100% - 1px);
}

/* ck-editor css */
.input-group .ck-editor__top .ck-sticky-panel .ck-sticky-panel__content .ck-toolbar {
    border: none !important;
    box-sizing: border-box !important;
    border-bottom: none !important;
    border-radius: 0 !important;
}

.editor-box .ck-editor__top .ck-sticky-panel .ck-sticky-panel__content {
    border: none !important;
}

.editor-box .ck .ck-editor__main {
    padding: 15px 14px;
    box-sizing: border-box;
    background-color: var(--colorWhite);
}

.editor-box .ck-content {
    border: none !important;
    height: 330px;
    border-radius: 0 !important;
    border-top: none !important;
    padding: 0;
}

.editor-box .ck-content::-webkit-scrollbar {
    display: none;
}

.editor-box .ck-editor {
    width: 100% !important;
    border: 1px solid var(--colorGray400) !important;
    border-radius: 0 !important;
    overflow: hidden !important;
}

.editor-box .ck-editor:focus-within{
    border: 1px solid var(--colorRed) !important;
}

.input-group.highlight .ck-editor {
    border: 1px solid var(--colorRed) !important;
    border-radius: 0 !important;
}

.input-group.focused.highlight .ck-editor {
    border: 1px solid var(--colorRed) !important;
    border-radius: 0 !important;
}

.input-group.focused .ck-editor {
    border: 1px solid var(--colorBlack) !important;
    border-radius: 0 !important;
}

.editor-box .ck-editor__editable_inline.ck-focused {
    &:not(.ck-editor__nested-editable) {
        box-shadow: none !important;
    }
}

.editor-box .ck.ck-toolbar .ck.ck-toolbar__separator {
    display: none;
}

.ck-content p {
    line-height: 1.857;
    word-break: break-all;
    overflow-wrap: break-word;
    margin: 0 !important;
}
/* inquiry-write */


/* remote */
.remote-group{
    height: auto;
    padding: 60px 0;
    gap: 30px 0;
}

.remote-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px 0;
}

.remote-content .desc{
    text-align: center;
    font-size: var(--fontSizeBase);
    line-height: var(--lineHeightSm);
}

.remote-group .btn-group{
    width: 360px;
    display: grid;
    grid-template-columns: 1fr 120px;
}
/* remote */





/* responsive css */
@media screen and (min-width: 768px) and (max-width: 1279px) {

    /* notice */
    .content-section .content-inner {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 40px 0;
    }

    .support-group {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 40px 0;
    }

    /* notice */


    /* notice-detail */
    .detail-btn-group{
        margin-top: -10px;
    }

    .detail-btn-group .btn-group,
    .detail-btn-group .btn{
        width: 100%;
    }


    /* check-ip */
    .ipcheck-group {
        gap: 40px 0;
    }

    /* check-ip */


    /* inquiry-write */
    .write-btn-group {
        width: 100%;
        grid-template-columns: 1fr;
        margin-top: -10px;
    }

    .write-btn-group .btn {
        width: 100%;
    }

    /* inquiry-write */
}

@media screen and (max-width: 767px) {

    /* notice */
    .content-section .content-inner {
        gap: 30px 0;
    }

    .support-group {
        gap: 30px 0;
    }

    /* notice */


    /* faq */
    .faq-tab {
        width: 100%;
        width: 250px;
    }

    .faq-tab ul {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px 30px;
    }

    .faq-tab ul li:not(:last-child):after {
        height: 12px;
        right: -15px;
    }

    .faq-tab ul li:nth-child(4):after {
        content: none;
    }

    .faq-tab ul li button {
        font-size: var(--fontSizeBase);
        line-height: var(--lineHeightSm);
    }

    /* faq */


    /* check-ip */
    .ipcheck-group {
        gap: 40px 0;
    }

    .ip-search p {
        font-size: var(--fontSizeSm);
        line-height: var(--lineHeightXs);
    }

    /* check-ip */


    /* inquiry-write */
    .write-group {
        padding: 30px 0;
    }

    .write-group .signup-group ul li {
        grid-template-columns: 1fr;
    }

    .write-btn-group {
        width: 100%;
        grid-template-columns: 1fr;
    }
    /* inquiry-write */


    /* remote */
    .remote-group{
        padding: 40px 0;
    }

    .remote-content img{
        width: 80px;
    }

    .remote-content .desc{
        font-size: var(--fontSizeSm);
        line-height: var(--lineHeightXs);
    }

    .remote-group .btn-group{
        width: 100%;
        grid-template-columns: 1fr 110px;
        gap: 0 6px;
    }
    /* remote */
}