.leaderboard {
  width: 100%;
  height: 100%;
  color: white;
  font-family: 'amazonember';
}
.leaderboard-wrap {
  height: 100%;
  overflow-y: auto;
}
.list-item,
.list-item-header {
  list-style: none;
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.list-item.self {
  background: #f396245c;
}
.list-item:hover {
  background: rgba(255, 255, 255, 0.08);
}
.list-item-header.fixed {
  position: sticky;
  top: 0;
  font-weight: bold;
  color: var(--primary);
  z-index: 10;
  background: var(--background);
}
.leaderboard .rank {
  /* width: 40px; */
  z-index: 1;
  text-align: center;
}
.leaderboard .name {
  width: 100%;
  padding: 0 1rem;
}
@media only screen and (min-width: 1920px) {
  .list-item, .list-item-header {
    font-size: 20px;
  }
}
@media only screen and (min-width: 2800px) {
  .list-item, .list-item-header {
    font-size: 40px;
  }
}
@media only screen and (min-width: 3800px) {
  .list-item, .list-item-header {
    font-size: 45px;
  }
}