.stickers {
  --sticker_meta_text_color: var(--text_color_secondary);
  --sticker_list_font_size: var(--font_size_grande);
  --sticker_meta_font_size: var(--font_size_short);
}

.stickers > div.sticker-list {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(auto-fill, 1.625em);
  row-gap: 0.625em;
  justify-items: center;
  font-size: var(--sticker_list_font_size);
}

.stickers > div.sticker-list > img.sticker-img {
  display: block;
  width: 1em;
  height: 1em;
  object-fit: cover;
  object-position: 50% 50%;
  cursor: pointer;
}

.stickers > div.sticker-list > img.sticker-img.more {
  cursor: help;
}

.stickers > div.sticker-meta {
  height: 20px;
  margin: 6px 0 0;
  color: var(--sticker_meta_text_color);
  font-size: var(--sticker_meta_font_size);
  line-height: 20px;
  text-align: right;
  opacity: 0.4;
}