.pagination {
  margin: 20px 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
  clear: both;
}

.pagination > li {
  display: inline-block;
}

.pagination > li > a {
  border: 0;
  color: #333333;
  line-height: 28px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
          transition: all 0.3s ease;
}

.pagination > .pagination-item > a:hover {
  background: #333;
  color: #fff;
}

.pagination > .pagination-item {
  font-weight: 700;
}

.pagination > .pagination-item > a {
  display: block;
  background-color: #dfe0e1;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  text-align: center;

}

.pagination > .pagination-item > .active {
  background-color: #cf1c6d !important;
  color: #fff;
}

.pagination > .pagination-all {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #dfe0e1;
}

.pagination > .pagination-previous {
  margin-right: 10px;
}

.pagination > .pagination-next {
  margin-left: 10px;
}

.pagination .pagination-previous:hover a,
.pagination .pagination-next:hover a {
  background: transparent;
  color: #cf1c6d;
}


