/*---------------------------------------
 *                                      *
 *       Add Your Custom CSS Here       *
 *                                      *
 ---------------------------------------*/
 .member-table-mb {
    display: none;
}
.table-tab{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding-left: 0; */
    margin-top: 30px;
    font-size: 20px;
    padding: 0 10px;
}
.table-tab li{
    position: relative;
    list-style-type: none;
}
.table-tab li:hover,
.table-tab li.active{
    color: #45558e;
}
.table-tab li.active:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    background: #ffa949;
    left: 0;
}
.note{
    position: relative;
    font-size: 12px;
    font-weight: 500;
    bottom: 6px;
}
.member-table-note{
    text-align: left;
    font-size: 15px;
    font-weight: 300;
    color: rgb(43, 42, 42);
    padding: 1px 18px;
    margin-top: 8px;
}
@media (max-width: 992px) {
    .member-table-mb {
        display: block;
    }
    .member-table-pc {
        display: none;
    }
    .member-table-note {
        font-size: 12px;
        padding: 0;
        margin-top: 8px;
    }
}
