﻿/*Mobile View*/
@media only screen and (max-width: 760px) {
    td, tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        border: 1px solid #808080;
    }

    tr + tr {
        margin-top: 1.5em;
    }

    td {
        /* make like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        background-color: #F8D9D5;
        text-align: left;
    }

    td:before {
        content: attr(data-label) ": ";
        
        line-height: 1.5;
        width: 100%;
        white-space: nowrap;
    }
}
