table { 
    width: 100%;
}

    tr {
        display: block;
        padding: 20px 0;
    }

    tr:first-child {
        display: none;
    }

    tr:nth-of-type(even) {
        background-color: #2d2d2d;
        color: #ffffff;
    }
        
        td {
            display: block;
            padding: 5px 30px;
            vertical-align: middle;
        }

        td:first-child {
            font-size: 14px;
            letter-spacing: 1px;
        }

        .label_sale {
            display: inline-block;
            font-weight: 700;
        }

        @media screen and (min-width : 992px) {
            tr { display: table-row; padding: 0; }
            tr:first-child { display: flex; }
            td { display: inline-block; padding: 20px 30px; width: 15%; text-align: center; }
            td:first-child { width: 40%; text-align: left; }
            .label_sale { display: none; }
        }