﻿.rwd-table {
    min-width: 300px;
}

    .rwd-table th {
        display: none;
    }

    .rwd-table td {
        display: block;
    }

        .rwd-table td:before {
            content: attr(data-th) " ";
            font-weight: bold;
            width: 10em;
        }

@media (min-width: 1024px) {
    .rwd-table td:before {
        display: none;
    }
}

.rwd-table th, .rwd-table td {
    text-align: left;
}

@media (min-width: 1024px) {
    .rwd-table th, .rwd-table td {
        display: table-cell;
    }
}

body {
    padding: 0 0em;
    font-family: Source Sans Pro, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background: #eee;
}

h1 {
    font-weight: normal;
    letter-spacing: -1px;
}

.rwd-table {
    background: #fff;
    color: #fff;
    border-radius: .4em;
    overflow: hidden;
}

    .rwd-table tr {
        border: 0.5px  black;
        border-color: #46637f;
    }

    .rwd-table th, .rwd-table td {
        margin: .5em 1em;
    }

@media (min-width: 1024px) {
    .rwd-table th, .rwd-table td {
        padding: 1em !important;
    }
}

.rwd-table th, .rwd-table td:before {
    color: #000000;
}
