/* Clickable */
.clickable {
  cursor: pointer;
  transition: background 0.2s;
}

.clickable:hover,
.clickable:focus {
  background: rgba(0, 0, 0, 0.1);
}

.clickable:active {
  background: rgba(0, 0, 0, 0.2);
}
