.pagination {
  display: flex;
  justify-content: center;
}

.pagination .pagination__item {
  border: 1px solid #5e6668;
  background: #5e6668;
  color: #fff;
  margin: 0 10px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color .2s ease, background .2s ease;
}

.pagination .pagination__item--active {
  color: #5e6668;
  background: #fff;
}

.pagination .pagination__item:hover {
  color: #5e6668;
  background: #fff;
}
