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

    .rwd-table th {
        display: none;
    }

    .rwd-table td {
        display: grid;

    }

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

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

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

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


h1 {
    font-weight: normal;
    letter-spacing: 1px;
    color: #34495E;
}

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

    .rwd-table tr {
        border: 0.1px solid 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;
}

