#registration {
    max-width: var(--section-max-width);
}

#registration .section-body {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
}

/* Registration 정보 */
#registration .reg-info table {
    width: 100%;
}

#registration .reg-info .reg-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#registration .reg-info .reg-header a {
    font-size: 14px;
}

/******************* 테이블 기본 스타일 */
#registration table {
    border-collapse: collapse;
    margin: 10px 0;
}
#registration table td {
    padding: 10px;
    font-size: 14px;
}
#registration table th {
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px;
    text-align: right;
}
#registration .title {
    text-transform: capitalize;
    min-width: 140px;
}
#registration .currency {
    text-align: right;
    min-width: 80px;
    font-weight: lighter;
}
#registration span {
    font-size: 10px;
    font-weight: bold;
    background: #e6012dd1;
    color: #fff;
    padding: 1px 6px;
    border-radius: 10px;
}
#registration table th:first-child {
    text-align: left;
}
#registration table tr td[colspan] ul {
    width: 100%;
    border: 1px solid #fff2;
    box-sizing: border-box;
    padding: 10px;
}
#registration table tr td:first-child,
#registration table th:first-child {
    padding-left: 2px;
}
#registration table tr td:last-child,
#registration table th:last-child {
    padding-right: 2px;
}

/* 개별 테이블 제어 */
#registration table.training tr td:first-child:not([colspan]) {
    min-width: 240px;
}



/******************* 토글 세팅 */
#registration .reg-info:last-child .tgls{
    --tgl-label-width: 60px !important;
    margin: 0;
}



/******************* 기타 */
#registration .v-hr {
    width: 1px;
    border-left: 1px solid #fff2;
}







@media (max-width: 1100px) {
    #registration .section-body {
        flex-direction: column;
        gap: 50px;
    }
    #registration table tr td:first-child:not([colspan]) {
        min-width: 100px !important;
        width: auto;
    }
}
@media (max-width: 768px) {
    #registration table td,
    #registration table th {
        font-size: 12px;
    }
    #registration table .currency {
        min-width: 60px;
    }
    #registration span {
        font-size: 8px;
        font-weight: 400;
    }
}
