@charset "UTF-8";

/*테이블 스크롤*/
.horizon_table{
    overflow: auto;
}

/* 테이블 */
table {
    width: 100%;
    margin-top: 30px;
}
.tb02 {
    border-top: 2px solid #eee;
}
.tb02_bg {
    background: #F2F6FA;
}
.tb02 thead tr th {
    padding: 20px 10px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 1.5rem;
    color: #111;
    font-weight: 500;
}
.tb02 thead tr th:last-child {
    border-right: none;
}
.tb02 tbody tr th {
    padding: 20px 10px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
    font-size: 1.5rem;
}
.tb02 tbody tr td {
    padding: 20px 10px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
    font-size: 1.5rem;
    word-break: keep-all;
    text-align: center;
}
.tb02 tbody tr td:last-child {
    border-right: none;
}
.tb02 tbody tr td input {
    border: 1px solid #ddd;
    border-radius: 3px;
    height: 35px;
    line-height: 35px;
    font-size: 1.5rem;
}
.tb02 tbody tr td .tit{
    display: none;
}
.tb02 tbody tr td a.link{
    color: #1869C0;
    text-decoration: underline;
}
.tb02 tbody tr td .btn_group button{
    margin: 0 auto;
}
.tb02 tbody tr td .ex{
    padding: 0;
    color: unset;
    background: unset;
}



/*마이페이지*/
.mypage .table_box,
.mypage .tb02{
    margin-bottom: 60px;
}
/* .td_hide{
    text-indent: -9999px;
    overflow: hidden;
    height: 0;
    width: 0;
    font-size: 0;
} */

/*체크박스*/
table .check_box{
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:1280px) {
    .tb02 thead tr th,
    .tb02 tbody tr th,
    .tb02 tbody tr td{
        font-size: 1.4rem;
        padding: 10px 5px;
    }
}
@media screen and (max-width:768px) {
    .tb02 thead th{
        display: none;
    }
    .tb02 col{
        width: 100%!important;
    }
    .tb02 tbody tr{
        display: flex;
        flex-flow: column;
        align-items: flex-end;
        border-top: 2px solid #eee;
    }
    .tb02 tbody tr:first-child{
        border-top: none;
    }
    .tb02 tbody tr td{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border-right: none;
        padding: 15px 0;
    }
    .tb02 tbody tr td .tit{
        display: block;
        color: #111;
        font-weight: 500;
    }
    .tb02 tbody tr td .cont{
        display: flex;
        gap: 5px;
        /*240415 (s)*/
        align-items: center;
        /*240415 (e)*/
    }
    .tb02 tbody tr td .ex{
        padding: 2px 10px;
    }
    .tb02 tbody tr td .ex.blue{
        background-color:#E8F3FF;
        color: #1869C0;
    }
    .tb02 tbody tr td .ex.green{
        background-color:#F3F8E8;
        color: #207F3F;
    }
    /* .tb02 tbody tr td{
        position: relative;
        width: 100%;
        text-align: right;
        border-right: none;
        border-bottom: none;
    }
    .td_hide{
        text-indent: unset;
        overflow: auto;
        height: auto;
        width: auto;
        font-size: unset;
    }
    .mypage .certifi_history.apply.tab_content td::before{
        content: "";
        position: absolute;
        left: 0;
        font-weight: 500;
        color: #111;
    }
    .mypage .certifi_history.apply.tab_content td:nth-child(1)::before{
        content: "접수(신청)번호";
    } */
    .mypage .certifi_history.apply.tab_content td.group{
        background: #F7F7F7;
    }
    .mypage .certifi_objection .tb02 td .cont{
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        white-space: normal;
    }
    table{
        margin-top: 20px;
    }
    .td_enter{
        word-break: break-all!important;
        white-space: wrap!important;
    }
}