﻿@media only screen and (max-width: 768px) {
    table.responsive-table {
        width: 100%;
        border-collapse: collapse;
    }

    table.responsive-table thead {
        display: none;
    }

    table.responsive-table tr {
        display: block;
        margin-bottom: 1em;
        border: 1px solid #dddddd;
    }

    table.responsive-table td {
        display: block;
        text-align: left;
        padding: 10px;
        border-bottom: 1px solid #dddddd;
        position: relative;
    }

    table.responsive-table td:before {
        content: attr(data-label);
        position: relative;
        width: 49%;
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: bold;
        vertical-align: top;
    }

    table.responsive-table td span.value {
        display: inline-block;
        width: 49%;
        text-align: left;
    }
}
