/*
*   Responsive table with css
*   Ade Budiman - art.visuadlesigner@gmail.com
*   2015
*/

.mbtableresponsive thead tr th {
    vertical-align: middle;
}
.mbtableresponsive tbody tr td {
    vertical-align: middle;
}

@media screen and (max-width: 576px) {
}

@media screen and (max-width: 768px) {

    .mbtableresponsive {
        border: 0;
    }

    .mbtableresponsive thead {
        display: none;
    }

    .mbtableresponsive tr {
        margin-bottom: 10px;
        display: block;
        border-bottom: 2px solid black;
    }

    .mbtableresponsive td {
        display: block;
        text-align: right;
        font-size: 13px;
        border-bottom: 1px dotted #ccc;
    }

    .mbtableresponsive td:last-child {
        border-bottom: 0;
    }

    .mbtableresponsive td:before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
    }

}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 1200px) {
}
