.error {color: red;}

@media only screen and (max-width: 760px) {
    .table table, .table thead, .table tbody, .table th, .table td, .table tr {
        display: block;
    }
    .table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table tr {
        margin: 0 0 1rem 0;
        border-bottom: 1px solid #eee;
    }

    .table td {
        position: relative;
        padding-left: 30%;
        border: none;
    }

    .table td:before {
        white-space: nowrap;
        position: absolute;
        left: 6px;
        top: 6px;
        width: 25%;
        padding-right: 10px;
        white-space: nowrap;
    }
    .table td:nth-of-type(1):before { content: "Amount"; }
    .table td:nth-of-type(2):before { content: "Recipient"; }
    .table td:nth-of-type(3):before { content: "Quantity"; }
    .table td:nth-of-type(4):before { content: "Send Via"; }
    .table td:nth-of-type(5):before { content: ""; }
}