.pages {
  display: flex;
  justify-content: center;
}
.pages .pagination .page-item {
  display: inline-block;
  width: 120px;
  height: 48px;
  line-height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(102, 102, 102, 0.502);
  text-align: center;
  
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  cursor: pointer;
}
.pages .pagination .page-item:not(.disabled):hover {
  background: var(--primary-button-color);
  box-shadow: 0px 0px 49px 0px rgba(33, 41, 50, 0.05);
  color: #ffffff;
}
.pages .pagination .page-item.disabled {
  opacity: 0.6;
}
.pages .pagination .page-item.disabled:hover {
  cursor: not-allowed;
}
.pages .pagination .page-current {
  display: inline-block;
  padding: 0 20px;
  height: 48px;
  line-height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(102, 102, 102, 0.502);
  text-align: center;
  
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}
.pages .pagination a + a {
  margin-left: 10px;
}
.pages .empty {
  text-align: center;
}
.pages .empty .description {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}
