/* TABLE STYLE */
table {
  border: 0;
  padding: 0 22px;
  margin: 0;
  border-spacing: 0;
  width: 100%;
}
tr {
  display: flex;
  flex-direction: row;
}
th,
td {
  width: 100%;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
th {
  font-weight: bold;
  font-size: 12px;
  line-height: 24px;
  color: #ffffff;
  background-color: #4d4c48;
  border: 1px #4d4c48 solid;
  border-left-color: #7b7b78;
}
tr:first-child th:first-child {
  border-radius: 5px 0px 0px 0px;
  border-left-color: #4d4c48;
}
tr:first-child th:last-child {
  border-radius: 0px 5px 0px 0px;
}
td {
  font-weight: normal;
  font-size: 13px;
  line-height: 18px;
  color: #303030;
  border-left: 1px #e8e8e1 solid;
  border-bottom: 1px #e8e8e1 solid;
}
td:last-child {
  border-right: 1px #e8e8e1 solid;
}
tr:last-child td:first-child {
  border-radius: 0px 0px 0px 5px;
}
tr:last-child td:last-child {
  border-radius: 0px 0px 5px 0px;
}
.table-container {
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .table-container {
    overflow-x: scroll;
  }
  th,
  td {
    width: 40%;
    flex: none;
  }
}
@media screen and (max-width: 650px) {
  table {
    padding: 0 15px;
  }
}
@media screen and (max-width: 550px) {
  th,
  td {
    width: 50%;
    flex: none;
  }
}
