.selectorGroup__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 0 32px 16px;
}
.selectorGroup__list .selectorGroup__listItem {
  display: block;
  border: solid 1px #dfdfdf;
  border-radius: 6px;
  background-color: #fff;
  font-size: 14px;
  line-height: 160%;
  font-weight: normal;
  text-align: center;
  padding: 10px 8px;
}
.selectorGroup__list .selectorGroup__listItem:hover {
  border: solid 1px #dfdfdf;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .selectorGroup__list {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 16px 16px;
  }
}
