@media only screen and (max-width: 767px) {

    /* Force table to not be like tables anymore */
    table,
    thead,
    tbody,
    th,
    td,
    tr,
    tfoot {
        display: block;
    }

    tfoot {
        margin-top: 5px;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 20px;
        padding: 10px 0;
    }

    td, .table td {
        /* Behave  like a "row" */
        border: none;
        position: relative;
        padding: 3px 3px 3px 45% !important;
        white-space: normal;
        text-align: left;
        min-height: 21px;
    }

    td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 3px;
        left: 10px;
        width: 35%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    /*
    Label the data
    */
    td:before {
        content: attr(data-title);
    }

    td[data-title="Azioni"] {
        display: none;
    }

    td:empty {
        display: none;
    }
}