.table {
  width: 710px;
  margin: auto;
  font-weight: 700;
  font-family: Lato, sans-serif;
  color: #F4F4F5;
  border-collapse: collapse;
  border-spacing: 0;
}

.table__row {
  height: 40px;
  font-size: 12px;
  line-height: 18px;
}

.table__row:nth-child(even) {
  background-color:  #2D3443;
}

.table__row--you .table__cell:first-child,
.table__row:nth-child(even) .table__cell:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.table__row--you .table__cell:last-child,
.table__row:nth-child(even) .table__cell:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}


.table__cell:first-child {
  padding-left: 16px;
  text-align: left;
}

.table__cell:last-child {
  padding-right: 16px;
  text-align: right;
}

.table__cell--header {
  font-size: 10px;
  line-height: 14px;
  text-align: left;
}


.table__body .table__row--you{
  background-color: #CAAB72;
  color: #222939;
}


.table--leaderboard{
    margin-bottom: 64px;
}

.table--claims{
    margin-bottom: 48px;
}

.table__row-no-rewards{
  color:  #F4F4F5;
  font-family: Lato;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  border-radius: 4px;
  padding: 16px;
  background:  #2D3443;
  text-align: center;
}

.table__cell--header.center{
    text-align: center;
}

.table__head--equal th {
  width: 33.333%;
}


@media (max-width: 767px) {
    .table {
        width: calc(100% - 32px);
        margin: 0 16px 16px 16px;
    }

    .table--leaderboard,
    .table--claims{
    margin-bottom: 40px;
}

  


}