@media
only screen  and (max-width:768px)
    /*, (min-device-width: 768px) and (max-device-width: 1024px)*/  {
    /* TODO pasar por variable el max-width */

    /* Force table to not be like tables anymore */
    #table, #table>thead, #table>tbody, #table>thead>tr>th, #table>tbody>tr>td, #table>tbody>tr, #table>thead>tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    #table>thead>tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    #table>thead>tr, #table>tbody>tr  {
        margin: 0 0 1rem 0;
    }

    #table>thead>tr>td, #table>tbody>tr>td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 35% !important;
    }

    #table>thead>tr>td:before, #table>tbody>tr>td:before {
        /* Now like a table header */
        position: absolute;
        left: 6px;
        width: 30%;
        padding-right: 5px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

}

div#divClipboard {
    background-color: aliceblue;
    padding: 1rem;
    border-radius: 1rem;
}