/* 한줄 말줄임 */
.edk_ellipsis_one {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* min-width */
.edk_w_1000 {
    min-width: 1000px;
}

.edk_w_900 {
    min-width: 900px;
}

.edk_w_800 {
    min-width: 800px;
}

.edk_w_700 {
    min-width: 700px;
}

.edk_w_600 {
    min-width: 600px;
}

.edk_w_500 {
    min-width: 500px;
}


/* page 항목 상세설명 */
.edk_btn_info {
    padding: 0;
}

.edk_btn_info i {
    font-size: 22px;
}

.edk_info_area .edk_info_content {
    width: 100%;
    background-color: #fff;
    margin-bottom: 0;
    font-size: 16px;
}

/* page 항목 상세설명 end*/

/* page input 항목 그룹*/
.edk_section:not(:last-of-type) {
    margin-bottom: 2.5rem;
}

.edk_section .edk_section_title {
    margin-bottom: 1.5rem;
}

.edk_section_content {
    gap: 12px 0;
}

.edk_content_item {
    display: flex;
    width: 100%;
    height: 100%;
}

/* 빈 섹션 */
.edk_empty,
.edk_sm_empty,
.edk_md_empty,
.edk_lg_empty,
.edk_xl_empty {
    visibility: hidden;
}

/* input 개별 title */
.edk_content_item .edk_item_title {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px;
    font-size: 15px;
    word-break: break-word;
    background-color: #eee;
    border: 1px solid #ccc;
    width: 100%;
    max-width: 100px;
    flex-shrink: 0;
}


/* input 개별 title end */



/* input 개별 content */
.edk_content_item .edk_input_area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: calc(100% - 100px);
    border: 1px solid #ccc;
}


/* =========================================== input =========================================== */
/* >>> input common style */

/* input number 화살표 없애기 */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox  */
input[type='number'] {
    -moz-appearance: textfield;
}

/* input number 화살표 없애기 end */


/* detail - bgc:skyblue */
.edk_content_item .edk_input_area .edk_input {
    width: 100%;
    height: 100%;
    padding: 8px 13px;
    font-size: 15px;
    background-color: transparent;
}

.edk_content_item .edk_input_area textarea.edk_input {
    border: none;
    height: auto;
}

.edk_content_item .edk_input_area .edk_input:disabled {
    background-color: #F3F6F9;
    background: url("/static/app_admin/base/img/icon_lock.png") calc(100% - 10px) 50% / 20px no-repeat, #F3F6F9;
}

/* detail - btn과 같이 있는 input */
.edk_content_item .edk_input_area.edk_input_group {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 0;
}

.edk_content_item .edk_input_area.edk_input_group>.edk_input {
    width: 1%;
    flex: 1 1 auto;
}

.edk_content_item .edk_input_area.edk_input_group .edk_input_in_btn {
    min-width: 10%;
}

/* table - border(all) */
.edk_form_wrap {
    margin-bottom: 30px;
}

.edk_table_input_wrap {
    align-items: flex-end;
    justify-content: flex-end;
    gap: 8px 0;
}

.edk_table_input_wrap:not(:last-child) {
    margin-bottom: 10px;
}

.edk_table_input_wrap .edk_table_label {
    color: #666;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
}

.edk_table_input_wrap .edk_table_input {
    width: 100%;
    border: 1px solid #ececec;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.edk_table_input_wrap .edk_table_input:disabled {
    background-color: #f1f1f1;
}

.edk_table_input_wrap .edk_table_input:focus-visible {
    outline: 1px solid var(--primary);
}

/* >>> checkbox, radio */

/* detail - blue */
.edk_content_item .edk_input_area .edk_checkbox_list,
.edk_content_item .edk_input_area .edk_radio_list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 8px 13px;
}

.edk_content_item .edk_input_area .edk_checkbox_list .checkbox,
.edk_content_item .edk_input_area .edk_radio_list .radio {
    font-size: 15px;
}

.edk_content_item .edk_input_area .edk_checkbox_list .checkbox span,
.edk_content_item .edk_input_area .edk_radio_list .radio span {
    margin-right: 0.75rem;
}


/* >>> switch */
/* detail - blue */
.edk_content_item .edk_input_area.edk_switch_group {
    padding: 8px 13px;
    justify-content: center;
}

/* >>> select */
/* detail - blue */
.edk_content_item .edk_input_area .edk_select {
    width: 100%;
    height: 100%;
    padding: 8px 13px;
    font-size: 15px;
    background-color: transparent;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('/static/app_admin/base/img/icon_select_down.png') no-repeat calc(100% - 10px) 50% /20px auto;
    cursor: pointer;
}

.edk_content_item .edk_input_area .edk_select:disabled {
    background-color: #F3F6F9;
}

.edk_content_item .edk_input_area .edk_select option[disabled] {
    display: none;
}

/* table - all border */
.edk_table_input_wrap select.edk_table_input {
    background: url(/static/app_admin/base/img/arrow-drop-down-line.png) no-repeat center right 10px/18px;
    padding-right: 28px;

    position: relative;
}

.edk_table_input_wrap select.edk_table_input:focus {
    background-image: url(/static/app_admin/base/img/arrow-drop-up-line.png);
}

/* >>> date */
input[type=date] {
    position: relative;
}

input[type='date']::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* table - 다른 input과 높이값 맞추기 위해 */
.edk_table_input_wrap input[type=date].edk_table_input {
    padding: 9px 10px;
}


/* >>> search */
/* table - search input과 검색버튼 레이아웃 잡기 */
.edk_search_wrap {
    display: flex;
    gap: 8px;
}

/* =========================================== button =========================================== */
/* blue fill btn */
.edk_content_item .edk_input_area.edk_input_group .edk_input_in_btn .edk_btn {
    display: block;
    border-radius: 0;
    height: 100%;
    width: 100%;
    font-size: 15px;
}

/* all-border(radius있는) btn */
.edk_table_btn {
    display: block;
    flex-shrink: 0;
    font-size: 14px;
    background-color: transparent;
    padding: 10px 20px;
    border: 1px solid #ececec;
    border-radius: 5px;
}

.edk_table_btn:hover {
    background-color: #E4E6EF;
}

/* =========================================== table =========================================== */
/* gray border table */
.edk_table_wrap {
    width: 100%;
    overflow-x: auto;
}

.edk_table {
    font-size: 14px;
    color: #181C32;
    border-collapse: collapse;
    border: 1px solid #ececec;
    box-sizing: border-box;
    table-layout: fixed;
}

.edk_table thead {
    border-bottom: 1px solid #ececec;
}

.bg_gray {
    background-color: #ddd;
}

.edk_table tr:not(:last-child) {
    border-bottom: 1px solid #ececec;
}


.edk_table th:not(:last-child),
.edk_table td:not(:last-child) {
    border-right: 1px solid #ececec;
}

.edk_table th {
    font-weight: bold;
}

.edk_table th,
.edk_table td {
    padding: 20px 10px;
    text-align: center;
}

.edk_table tbody tr:hover {
    cursor: pointer;
    background-color: #E4E6EF;
}

/* =========================================== img =========================================== */
/* detail - click img */
.edk_content_item .edk_input_area.edk_img_area {
    gap: 8px;
    padding: 8px 13px;
    justify-content: space-between;
}

.edk_content_item .edk_input_area.edk_img_area .edk_img_item {
    width: 240px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.edk_content_item.edk_item_two .edk_input_area.edk_img_area .edk_img_item {
    width: 190px;
}

.edk_content_item .edk_input_area.edk_img_area .edk_img_item:after {
    display: block;
    content: "";
    padding-bottom: 100%;
}

.edk_content_item .edk_input_area.edk_img_area .edk_img_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.edk_content_item .edk_input_area.edk_img_area .edk_img_item .edk_img_btn {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 6;
    padding: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.edk_content_item .edk_input_area.edk_img_area .edk_img_item:hover .edk_img_btn {
    opacity: 1;
}

@media screen and (max-width:1199px) {
    .edk_xl_empty {
        display: none;
    }
}

@media screen and (max-width:991px) {
    .edk_lg_empty {
        display: none;
    }
}

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

@media screen and (max-width:767px) {
    .edk_content_item .edk_item_title {
        max-width: 30%;
    }

    .edk_content_item .edk_input_area {
        width: 70%;
    }

    .edk_md_empty {
        display: none;
    }
}

@media screen and (max-width:575px) {
    .edk_sm_empty {
        display: none;
    }
}