.category-panel {
  padding-top: 11px;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(2, 68px);
  align-content: start;
  justify-content: center;
  gap: 25px 56px;
  height: 100%;
  padding: 25px 0 38px;
  overflow-y: auto;
}

.category {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.category img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.category.is-selected {
  outline: 3px solid rgba(226, 97, 66, .35);
}
