@charset "UTF-8";
/* mypage 공통 css */
.mypage-container {
    width: 70%;
    margin:0 auto;
}

/* 내정보 CSS */
.user {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.money {
    display: flex;
}

.user span, .user a {
    font-size: 14px;

}

/* 회원 메뉴 CSS */
.user .user-menu a {
    padding: 0 10px;
}

.user .user-menu a:not(:nth-child(1)) {
    border-left: solid 1px #DADADA;
}

.user .user-info .user-name {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
}

/* 아이콘 CSS */
.user .user-menu .edit-icon {
    width: 16px;
    height: 16px;
}

/* money CSS */
.money span {
    /*vertical-align: middle;*/
}

.money .cash-info .cash-title, .money .point-info .point-title {
    color: #979797;
}

.money .cash {
    width: 15px;
    height: 15px;
    font-size: 10px;
    line-height: 15px;
}

.money .point {
    width: 15px;
    height: 15px;
    font-size: 10px;
    line-height: 15px;
}

.money div:nth-child(1) {
    padding-right: 15px
}

.money div:not(:nth-child(1)) {
    padding-left: 15px;
    border-left: solid 1px #DADADA;
}

/* nav CSS */
.mypage-nav {
    font-size: 16px;
}


.mypage-nav .bd-nav {
    border-bottom: solid 1px #EAEAEA;
}

.mypage-nav .bd-nav .bd-nav-list {
    padding: 0 15px 12px 15px;
    font-size: 16px;
}

.mypage-nav .bd-nav .active {
    color: #4ab74e;
    font-weight: bold;
    border-bottom: solid 5px #4ab74e;
}

/* sub-nav CSS */
.sub-nav {
    justify-content: flex-start;
    background-color: #F7F7F7;
    padding: 0 65px;
}

.sub-nav .active {
    color: #4ab74e;
}

.sub-nav-list {
    margin: 13px 20px;
}

.sub-nav-list li {
    font-size: 16px;
}

/* cash-list */
.cash-list-box {
    display: flex;
    justify-content: center;
}

.cash-list-box .cash-list  {
    width: 1000px;
}

.cash-list-box table {
    width: 1000px;
}

.cash-list-box table thead tr {
    border-top: solid 1px #979797;
    border-bottom: solid 1px #979797;
}

.cash-list-box table thead tr th{
    font-size: 12px;
    font-weight: normal;
    padding: 10px 0;
    color: #9B9B9B;
}

.cash-list-box table tbody tr td{
    font-size: 14px;
    font-weight: normal;
    padding: 15px 0;
    vertical-align: middle;
}

.cash-list-box table tbody tr td button, .cash-list-box table tbody tr td a.btn{
    width: 58px;
    height: 20px;
    font-size: 12px;
}

.cash-list-box table tbody tr td .btn-disabled {
    color: #979797;
    cursor: not-allowed;
    background-color: #D8D8D8;
    border: solid 1px #D8D8D8;
}

.cash-list-box table tbody tr td .btn-disabled:focus {
    outline: 0;
}

/*point-list*/
.point-notice-container {
    display: flex;
    justify-content: center;
}

#pointNotice {
    width: 1000px;
}

#pointNotice  ul li {
    list-style: disc;
    list-style-position: inside;
}
.highlight-yellow {
    background-color: #fff9c4;
    padding: 2px 4px;
    border-radius: 3px;
}