@include wrap-class() {
    .wcc-table {
        border: none;
        border-collapse: collapse;
        border-spacing: 0;
        width: 100%;
        clear: both;
        margin: 0;
        background-color: color(mono,white);
        min-height: 100px;
        th {
            border-bottom: none;
            font-weight: $font--medium;
            padding: 18px 10px;
        }
        td {
            padding: 16px 10px;
        }
        th,td {
            vertical-align: middle;
        }
        thead {
            background-color: #fff;
        }
        tbody{
            position: relative;
        }
        tbody tr {
            vertical-align: middle;
        }
        tr,td{
            color: #23282D;
            font-size: 14px;
        }
        
        &.wcc-table-stripped {
            tbody tr:nth-of-type(odd) {
                background-color: #FAFBFC;
            }
        }
        .wcc-table-check-column {
            width: 30px;
        }
        th,thead td, tfoot td {
            text-align: left;
        }
    }
    .wcc-table-align--center{
        td,th {
            text-align: center;
        }
    }
    .wcc-custom-table {
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0;
        background-color: #fff;
      } 
    .wcc-custom-table th,
    .wcc-custom-table td {
        padding: 10px 10px 10px 18px;
        text-align: left;
    }
    .wcc-custom-table tbody tr {
        background-color: #FAFBFC;
    }
    .wcc-custom-table th {
        font-weight: bold;
        color: #6E7681;
        font-size: 14px;
    }
    .wcc-custom-table tbody tr:nth-child(even) {
        background-color: #FFF;
    }
}
