table {
    width: 100%;
    border-collapse: collapse;
    margin-right: 10px;
}

/* Zebra striping */
tr:nth-of-type(odd) {
background-image: linear-gradient(72deg, #e3e3e3 0%, rgba(152, 155, 162, 0.96) 73.18%); /*     background: #eee; */
}

th {
    background: #5d5d5d;
    color: white;
    /* 	font-weight: bold;  */
}

td, th {
    padding: 3px;
    border: 1px solid rgba(153, 153, 153, 0.87);
    text-align: left;
    font-size: 12px;
}

/*
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {
/*
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {
*/

    table {
        width: 100%;
        /* 	  	margin-left: 0; */
        margin-top: 10px;
        position:inherit;
    }

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

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

    tr { border: 1px solid rgba(31, 61, 90, 0); }

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #690e1c;
        position: relative;
        padding-left: 15%;
/*         padding-left: 32%; */
    }

    td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 2px;
        left: 12px;
        width: 20%;
        padding-right: 10px;
        white-space: nowrap;
        /* Label the data */
        content: attr(data-column);

        color: #392f2f;
        font-weight: bold;
    }

}