#discount-chart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#discount-chart table {
  margin: 5% 0 5% 0;
  border-collapse: collapse;
  width: 75%;
  border-color: black;
}

#discount-chart table th {
  border: 3px white solid;
  background-color: #0099ff;
  color: white;
  padding: 10px;
  font-size: 1.3rem;
}

#discount-chart table tr {
  border: 3px white solid;
}

#discount-chart table tr:nth-child(even) {
  background-color: #f2f2f2;
}

#discount-chart table td {
  border: 3px white solid;
  padding: 10px;
}

@media only screen and (max-width: 600px) {
  #discount-chart table {
    margin-left: -1.5%;
  }
  #discount-chart table th {
    display: none;
  }
  #discount-chart table, #discount-chart table tr, #discount-chart table td {
    display: block;
    width: 100%;
  }
  #discount-chart table tr {
    margin-bottom: 15px;
  }
  #discount-chart table td {
    width: 50%;
    text-align: right;
    padding-left: 45%;
    position: relative;
  }
  #discount-chart table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
  }
}
/*# sourceMappingURL=discount-chart.css.map */