.market-tables {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 10px;
}
.market-tables > div {
  flex: 1 0 50%;
  margin: 0 0 20px;
  padding: 0 10px;
}
.market-block table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.market-block thead {
  text-align: left;
}
.market-block th {
  padding: 10px;
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: normal;
  background: var(--darker-blue);
  color: #fff;
}
.market-block tbody {
  text-align: left;
}
.market-block td {
  padding: 7px 10px;
  border-bottom: 1px solid var(--light-grey);
  font-size: 1.5rem;
  line-height: 1.8rem;
}
.market-block tr:hover td {
  background: var(--light-grey);
}
.market-block .up {
  color: #28611a;
}
.market-block .down {
  color: #bf3939;
}
.market-block__note {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-style: italic;
  background: #fff;
  color: var(--dark-blue);
}