@media screen and (max-width: 1150px) {
    /* Force table to not be like tables anymore */
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    tr {
        margin: 0 0 1rem 0;
    }
    tr:nth-child(odd) {
        background: #ccc;
    }
    .table td {
        /* Behave  like a "row" */
        padding: 0px;
        border: none !important;
        border-bottom: 1px solid #eee !important;
        position: relative !important;
        padding-left: 50% !important;
    }
    td:before {
        /* Now like a table header */
        position: absolute !important;
        /* Top/left values mimic padding */
        top: 0 !important;
        left: 6px !important;
        width: 45% !important;
        padding-right: 10px !important;
        white-space: nowrap !important;
    }
}

@media (min-width: 1151px) {
    table td,
    table th {
        padding: 8px !important;
        text-align: center !important;
        font-size: 7px;
    }
    .td-numero {
        width: 20px !important;
    }
}

.remove-icon {
    color: blue;
    cursor: pointer;
}