@media screen and (max-width:991px) {
    .table_row {
        overflow: hidden;
        overflow-x: scroll;
        white-space: nowrap;
        scrollbar-face-color: #F2ECE6;
    }

    .table_row table {
        width: 100%;
        min-width: 1100px;
    }
}

.link_page {
    font-weight: 600;
    color: firebrick;
    text-decoration: none;
}


.main-count-box p,
.main-pay-box p {
    font-size: 4rem;
    text-align: center;
}


.main-count-box p>span,
.main-pay-box p>span {
    font-weight: bold;
}

/* ==================================== date ==================================== */
.edk_custom_input[type="date"],
.edk_custom_input[type="datetime-local"] {
    position: relative;
}

.edk_custom_input[type="date"]::-webkit-clear-button,
.edk_custom_input[type="datetime-local"]::-webkit-clear-button,
.edk_custom_input[type="date"]::-webkit-inner-spin-button,
.edk_custom_input[type="datetime-local"]::-webkit-inner-spin-button {
    display: none;
}

.edk_custom_input[type="date"]:after,
.edk_custom_input[type="datetime-local"]:after {
    position: absolute;
    top: 50%;
    right: 18px;
    content: '';
    width: 20px;
    height: 20px;
    background: url('./img/icon_calendar.png') center center / cover no-repeat;
    transform: translateY(-50%);
    z-index: 0;
}

/* 클릭 범위 넓히기 */
.edk_custom_input[type="date"]::-webkit-calendar-picker-indicator,
.edk_custom_input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: -10px;
    top: 0;
    transform: translateX(-10px);
    padding-left: 3000px;
    height: 100%;
    cursor: pointer;
    background: transparent;
    z-index: 1;
}

/* ==================================== date ==================================== */
/* ==================================== board list ==================================== */
.edk_main_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #333;
    gap: 0 10px;
    padding: 14px 0;
}

.edk_main_title:not(:last-child) {
    border-bottom: 1px solid #E4E6EF;
}

.edk_main_title::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: #333;
    border-radius: 50%;
}

.edk_main_title:hover::before {
    background-color: #0073e9;
}

.edk_main_title span {
    display: block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* ==================================== board list ==================================== */
/* ==================================== file ==================================== */
.hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    z-index: -1;
    border: none;
}

.edk_file_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 0;
}

.edk_file_item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #efefef;
    gap: 0 16px;
}

.edk_file_label {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.edk_file_remove {
    background-color: transparent;
    padding: 0;
    display: block;
}

/* ==================================== file ==================================== */
/* ==================================== comment ==================================== */

.comment {
    font-size: 18px;
}

.comment>li {
    border-bottom: 1px solid #efefef;
    padding: 20px;
}

.comment_text {
    margin-bottom: 20px;
}

.sub_comment li {
    /* display: flex; */
    /* gap: 0 5px; */
    background-color: #F3F6F9;
    border-radius: 5px;
    padding: 20px;
    /* align-items: center; */
}

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

.ri-corner-down-right-line {
    vertical-align: top;
    margin-top: -8px;
}

.comment_name {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}


.comment_date {
    margin-top: 16px;
    font-size: 14px;
    color: #555;
}


/* ==================================== comment ==================================== */


/* ==================================== detail profile tab ==================================== */
.edk_profile_aside.active {
    left: 0;
}

.card.card-custom>.card-header .card-title .card-icon .edk_card_title_icon i {
    font-size: 18px;
}