/* 대표 색 */
.rep_color {
    color: #0c599e;
}

.rep_bg_color {
    background-color: #0c599e;
}

/* new 공통 테이블 */
.common_table {
    border: 1px solid #dddddd;
    border-top: 2px solid #0c599e;
    border-bottom: none;
    display: grid;
}
.common_th {
    color: #666;
    font-size: 17px;
    font-weight: 500;
    background-color: #eef0f2;
    border-right: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    display: flex;
    justify-content: center;
    align-items: center;
}
.common_td {
    border-bottom: 1px solid #dddddd;
}
.common_td p {
    color: #666;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
}

/* 링크 복사 완료 글 */
.copy_message {
    color: #666666cc;
    font-size: 18px;
    font-weight: 500;
    background-color: #ffffffcc;
    padding: 50px;
    border: 1px solid #666666cc;
    border-radius: 10px;
    position: fixed;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.relative {
    position: relative;
}

@media screen and (max-width: 991px) {
    .common_th {
        font-size: 14px;
    }
    .common_td p {
        font-size: 13px;
    }
}