.tierlist {
  width: 100%;

  background: #1a1a17;

  display: flex;
  justify-content: left;
  flex-direction: column;

  border: 3px solid black;
  color: black;
  border-radius: 8px;

  overflow: hidden;
  user-select: none;
}

.tierlist div:last-child {
  border-bottom: none;
}

.tierlist_rank {
  min-height: 100px;
  width: 100%;
  border-bottom: 2px solid black;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2px;
}

.tierlist_rank_box {
  border-right: 3px solid black;
  width: 100px;
  min-height: 100px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.4em;
}

.tierlist_ranking {
  padding: 3px;
  padding-left: 5px;
  display: grid;
  grid-template-columns: repeat(auto-fill, 90px);
  column-gap: 3px;
  row-gap: 7px;
  align-items: center;
}

.tierlist_ranking>* {
  width: 90px;
  height: 90px;
  border-radius: 3px;
  overflow: hidden;
}

.tierlist_ranking>a>img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

/*Rank colors*/
[rank=SSS]>.tierlist_rank_box {
  background-color: #ff00ff;
}

[rank=S]>.tierlist_rank_box {
  background-color: #ff7f7f;
}

[rank=A]>.tierlist_rank_box {
  background-color: #ffbf7f;
}

[rank=B]>.tierlist_rank_box {
  background-color: #ffdf7f;
}

[rank=C]>.tierlist_rank_box {
  background-color: #ffff7f;
}

[rank=D]>.tierlist_rank_box {
  background-color: #bfff7f;
}

[rank=F]>.tierlist_rank_box {
  background-color: #bf7fbf;
}
