/* pc */

.edk_file_wrap .file_item.text {
    display: flex;
    gap: 16px;
}

.edk_file_wrap .file_item.text .file_remove {
    position: static;
    width: 24px;
    transform: translateY(0);
}

.edk_WAI.radio+label {
    padding-left: 28px;
}

.edk_WAI.radio+label:before {
    width: 24px;
    height: 24px;
    background-image: url("/static/app_www/base/img/icon_radio_default_g.png");
}

.edk_WAI.radio:checked+label:before {
    background-image: url("/static/app_www/base/img/icon_radio_check_gr.png");
}

/* input 영역 추가 */
.edk_input_wrap .input_title {
    margin-bottom: 14px;
    font-size: 16px;
}

.edk_input_wrap .sub_title {
    color: #5E5E5E;
    font-size: 14px;
    font-weight: 400;
    margin-top: 6px;
}

.input_flex_area .unit_text {
    position: absolute;
    right: 16px;
    top: 13px;
    font-size: 16px;
    font-weight: 600;
}

/* 댓글 입력 영역 */
.edk_input_wrap.comment_input .title {
    margin-bottom: 12px;
    font-size: 14px;
}

.edk_input_wrap.comment_input .edk_input {
    background-color: var(--bg-sub-color);
    border: 1px solid #E1E1E1;
    border-radius: 100px;
    padding: 13px 16px;
    padding-right: 43px;
    font-size: 16px;
    height: 50px;
}

.edk_input_wrap.comment_input .btn_comment {
    background-color: transparent;
    width: 36px;
    aspect-ratio: 1/1;
    display: flex;
    position: absolute;
    right: 7px;
    top: 7px;
}

/* 공개비공개 switch 커스텀 */
.edk_switch.view_level input[type="checkbox"] {
    border-radius: 0;
    border: 1px solid var(--sub-color);
    height: 40px;
    width: 140px;
}

.edk_switch.view_level input[type="checkbox"]::before {
    content: "공개";
    border-radius: 0;
    transform: scale(1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    background-color: var(--sub-color);
}

.edk_switch.view_level input[type="checkbox"]::after {
    content: "비공개";
    right: 15px;
    font-size: 14px;
    color: var(--sub-color);
}

.edk_switch.view_level input[type="checkbox"]:checked {
    background-color: var(--sub-color);
    border-color: var(--sub-color);
}

.edk_switch.view_level input[type="checkbox"]:checked::after {
    content: "공개";
    left: 22px;
    color: #fff;
}

.edk_switch.view_level input[type="checkbox"]:checked::before {
    content: "비공개";
    background-color: white;
    color: var(--sub-color);
    left: 50%;
}

/* tablet */
@media screen and (max-width: 1023px) {}

/* mobile */
@media screen and (max-width: 767px) {}