@charset "UTF-8";
*{font-family: 'Noto Sans KR', sans-serif;}


/* 스크롤바 설정 width */
::-webkit-scrollbar {
    height :5px;
    width: 0;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 15px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}


/*등록금납부 전체 레이아웃 -> uisetting.css */


/*table wrapper*/
.content .table_wrapper {
    width: 100%;
    padding-bottom: 60px;
    overflow-x: auto;
    overflow-y: visible;
    position: relative;
    background-color: rgba(241,242,242,1);
}

/*등록금 납부 표 레이아웃*/
.content .tuition_table {
    width: 235%;
    background-color: #fff
}

.tuition_table table,tr{
    width: 100%;
}

.tuition_table th,td {
    height: 29.5px;
    text-align: center;
}

/*표 스타일*/

.tuition_table td {
    border : 1px solid transparent;
    border-color: transparent rgba(0,90,170,0.5) rgba(0,90,170,0.5) rgba(0,90,170,0.5)
}

td[headers="year"] {
    border-color: transparent rgba(0,90,170,0.5) rgba(0,90,170,0.5) transparent
}
td[headers="rf_date"] {
    border-color: transparent transparent rgba(0,90,170,0.5) rgba(0,90,170,0.5)
}


/*등록금, 감면장학금액, 부과금액 오른쪽 정렬*/
td[headers="tuition"],td[headers="reduce"],td[headers="impose"] {
    text-align: right;
    box-sizing: border-box;
    padding-right: 5px;
}