body {
 font-family: "Helvetica Neue", Helvetica, Arial;
 font-size: 20px;
 line-height: 40px;
 font-weight: 400;
 color: #3b3b3b;
 -webkit-font-smoothing: antialiased;
 font-smoothing: antialiased;
 background: #404040;
 }
 @media screen and (max-width: 580px) {
 body {
 font-size: 16px;
 line-height: 22px;
 }
 }
 .heading {
 color: #fff;
 text-align: center;
 }
 .footer {
 color: #fff;
 text-align: center;
 }
 .alignment {
 text-align: center;
 }
 .wrapper {
 margin: 0 auto;
 padding: 10px;         
 }
 .wrapper .btn {
  background-color: #f1f1f1;
  color: black;
  font-size: 20px;
  border: none;
  cursor: pointer;
  padding: 8px 8px;
  border-radius: 5px;
  text-align: center;
}
.wrapper .btn:hover {
  background-color: #EA6153;
  color: white;
}
 .wrapper .txt {
  background-color: #f1f1f1;
  color: black;
  font-size: 20px;
  border: none;  
  padding: 8px 8px;
  border-radius: 5px;
  text-align: left;
}
 .table {
 margin: 0 0 40px 0;
 width: 100%;
 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
 display: table;
 }
 @media screen and (max-width: 580px) {
 .table {
 display: block;
 }
 }
 .row {
 display: table-row;
 background: #f6f6f6;
 }
 .row:nth-of-type(odd) {
 background: #e9e9e9;
 }
 .row.header {
 font-weight: 900;
 color: #ffffff;
 background: #ea6153;
 }
 .row.green {
 background: #27ae60;
 }
 .row.blue {
 background: #2980b9;
 }
 @media screen and (max-width: 580px) {
 .row {
 padding: 14px 0 7px;
 display: block;
 }
 .row.header {
 padding: 0;
 height: 6px;
 }
 .row.header .cell {
 display: none;
 }
 .row .cell {
 margin-bottom: 10px;
 text-align:right;
 }
 .row .cell:before {
 margin-bottom: 3px;
 content: attr(data-title);
 min-width: 98px;
 font-size: 10px;
 line-height: 10px;
 font-weight: bold;
 text-transform: uppercase;
 color: #969696;
 display: block;
 }
 }
 .cell {
 padding: 6px 12px;
 display: table-cell;
 text-align:right;
 }
 @media screen and (max-width: 580px) {
 .cell {
 padding: 2px 16px;
 display: block;
 }
 }