
.pndiv {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
}
.pagination {
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 990px) {
  .pagination {
  padding: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
}
}

.pagination,
.pagination * {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.pagination a {
  display: inline-block;
  padding: 8px 14px;
  cursor: pointer;
  text-decoration: none;
  font-size: 21px;
  color: #ffffff;
  background-color: #3A53A4;
}
@media only screen and (max-width: 990px) {
  .pagination a {
  display: inline-block;
  padding: 8px 14px;
  cursor: pointer;
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  background-color: #3A53A4;
}
}

.pagination a.disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: not-allowed;
}
.pagination a.current {
  background-color: #020202;
}
.single-item {
  width: 386px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 10px;
}