.paginate-wrapper {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 20px 12px;
}

.paginate-wrapper ul {
  display: flex;
}

.pagination-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid rgb(229, 229, 229);
  color: rgb(0, 0, 0);
  font-weight: bold;
  outline: none;
  background-color: rgb(241, 241, 241);
}

.pagination-link:hover {
  background-color: rgb(229, 229, 229);
}

.pagination-arrow {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 14px;
  font-weight: normal;
  border: 1px solid rgb(204, 204, 204);
  background-color: rgb(241, 241, 241);
  color: rgb(0, 0, 0);
  opacity: 0.3;
  cursor: default;
}

.pagination-arrow:hover {
  background-color: rgb(229, 229, 229);
}

.cursor-pointer {
  cursor: pointer;
}

.pagination-link.page-active {
  color: var(--document-color);
  background-color: var(--product-card-btn-bg);
  cursor: default;
}
