﻿        .table {
    width: 100%;
}
.table caption {
    /*font-size: 15px;
    font-weight: 700;*/
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}
.table thead {
    background-color: #444;
}
.table thead tr th {
    padding: 10px;
    /*font-weight: 700;*/
    color: #f2f2f2;
    text-transform: uppercase;
}
.table thead tr th:first-child {
    text-align: center;
}
.table tbody {
    background-color: #fcfcfc;
}
.table tbody tr td {
    padding: 10px;
    text-align: center
}
.table tbody tr td:first-child {
    text-align: center;
    color: #333;
    /*font-weight: 700;*/
}
.table tbody tr:nth-of-type(odd) {
    background: white /*#eee;*/
}

@media only screen and (min-width: 250px) and (max-width: 750px) {
    .table tbody {
        border: 0;
    }
    .table tbody tr {
        margin-bottom: 10px;
        display: block;
        border-bottom: 2px solid #ddd;
    }
    .table tbody td {
        display: block;
        text-align: center;
        /*font-size: 13px;*/
        /*border-bottom: 1px dotted #ccc;*/
    }
    .table tbody td:last-child {
        border-bottom: 0;
    }
    .table tbody td:before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
    }
}
