.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 30px;
}

.pagination {
    display: flex;
}

.page-item {
    margin-right: 10px;
}

.page-item.active a, .page-item.active span{
  color: #fff;
  background-color: #d14a2b;
  border-color: #d14a2b;
}

.page-item a, .page-item span {
    min-width: 10px;
    display: block;
    padding: 0 11px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #999999;
}

.page-item a:hover {
  color: #222;
  background-color: #eee;
  border-color: #ddd;
}

.pagenum {
  display: none;
  margin-right: 10px;
}

@media screen and (max-width:767px) {

  .pagination {
      display: none;
  }
  .pagenum {
    display: block;
  }
}