[class*="cus-pagination"] {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  font-size: 14px;
}
[class*="cus-pagination"] *:not(.prev, .next) {
  display: inline-block;
  min-width: 25px;
  text-align: center;
  background: #eee;
  margin: 0 5px;
}
[class*="cus-pagination"] .current:not(.prev, .next) {
  display: inline-block;
  min-width: 25px;
  text-align: center;
  background: #0065c0;
  margin: 0 5px;
  color: #fff;
}

[class*="cus-pagination"] *:first-child {
  margin-right: 20px;
}
[class*="cus-pagination"] *:last-child {
  margin-left: 20px;
}

[class*="cus-pagination"] .current.next {
  cursor: not-allowed;
}
[class*="cus-pagination"] .current.prev {
  cursor: not-allowed;
}
