
table {
    /* border-top: 1px solid #444; */
    width: 100%;
    margin:0;
    padding:0;
    border-collapse: collapse;
    border-spacing: 0;
}

table tr {
    /* border: 1px solid #ddd; */
    padding: 5px;
}

table th, table td {
    padding: 5px;
    text-align: center;
}

table th {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
    table {
        border: 0;
    }

    table thead {
        display: none;
        font-size: 10px;
    }

    table tr {
        margin-bottom: 10px;
        display: block;
    }

    table tr:after {
        content: "";
        display: table;
        clear: both;
    }
  
    table tr:before {
        display: block;
        border-bottom: 2px solid #ddd;
    }

    table td {
        box-sizing: border-box;
        display: block;
        float: left;
        clear: left;
        width: 100%;
        text-align: right;
        /* font-size: 9px; */
        border-bottom: 1px dotted #444;
    }

    table td:last-child {
        border-bottom: 0;
    }

    table td:before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
    }
}