.stickers {
  --sticker_button_background_color: var(--button_background_color);
  --sticker_meta_text_color: var(--text_color_secondary);
  --sticker_error_text_color: var(--special_color_yellow);
}

.stickers {
  --sticker_font_size: var(--font_size_short);
  --sticker_line_height: var(--line_height_short);
}

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

.stickers > div.sticker-list > img.sticker-img,
.stickers > div.sticker-list > i.sticker-btn {
  display: block;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.stickers > div.sticker-list > img.sticker-img {
  object-fit: cover;
  object-position: 50% 50%;
}

.stickers > div.sticker-list > i.sticker-btn {
  border-radius: 50%;
  background-color: var(--sticker_button_background_color);
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.stickers > div.sticker-list > i.sticker-btn.more {
  background-image: url(../img/sticker.unfold.light.svg);
}
:root.darkmode .stickers > div.sticker-list > i.sticker-btn.more {
  background-image: url(../img/sticker.unfold.dark.svg);
}

.stickers > div.sticker-list.open > i.sticker-btn.more {
  background-image: url(../img/sticker.fold.light.svg);
}
:root.darkmode .stickers > div.sticker-list.open > i.sticker-btn.more {
  background-image: url(../img/sticker.fold.dark.svg);
}

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

.stickers > div.sticker-error {
  color: var(--sticker_error_text_color);
  font-size: var(--sticker_font_size);
  line-height: var(--sticker_line_height);
}