/* ── SELECT MODE (list screen) ── */
#cards-wrap.select-mode .c-tile,
#cards-wrap.select-mode .c-list-row {
  position: relative;
  cursor: default
}

#cards-wrap.select-mode .c-tile:hover,
#cards-wrap.select-mode .c-list-row:hover {
  box-shadow: none;
  border-color: var(--bd)
}

.c-sel-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--bd);
  background: var(--card);
  cursor: pointer;
  transition: all .12s;
  flex-shrink: 0;
  font-size: 10px;
  line-height: 1
}

.c-sel-check.on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff
}

#cards-wrap.select-mode .c-tile {
  padding-left: 32px;
  position: relative
}

#cards-wrap.select-mode .c-tile .c-sel-check {
  position: absolute;
  top: 10px;
  left: 10px
}

#btn-select.sel-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}
