table {
    margin-bottom: 50px;
    width: 100%;
    border-spacing: 1px;
    margin-left: -1px;

}

table thead th {
    text-align: left;
    background-color: #d72e4e;
    padding: 10px;
    text-transform: uppercase;
    font-family: Arial;
    font-size: 12px;
    line-height: 28px;
    white-space: nowrap;
    color : white;
}

table tr:nth-child(odd) {
    background-color: rgba(215, 46, 78, .05)
}

table td {
    text-align: left;
    padding: 10px;
    font-family: Arial;
    font-size: 13px;
    line-height: 18px;
    white-space: inherit;
    color: #534e4d
}



@media screen and (max-width:545px){
    table thead {
      display: none;
    }

    table tr{
    display: block;
    margin-bottom: 40px;
    }
    table td {
    display: block;
    text-align: right;
    }
    table td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    }
}