/* ============================================================
  Posts PAGINATION
============================================================ */
.custom-pagination {
  clear: both;
  display: block;
  margin: 40px auto 0;
  text-align: center;
  width: 50%;
}
.custom-pagination span,
.custom-pagination a {
  display: inline-block;
  padding: 2px 5px 10px 2px;
  letter-spacing: 0;
  margin: 10px 15px;
}
.custom-pagination a {
  color: #626262;
}
.custom-pagination a:hover {
  color: #4dc3e1;
  border-bottom: 2px solid #4dc3e1;
}
.custom-pagination span.page-num {
  margin-right: 10px;
  padding: 0;
}
.custom-pagination span.dots {
  padding: 0;
  color: gainsboro;
}
.custom-pagination span.current {
  color: #4dc3e1;
  border-bottom: 2px solid #4dc3e1;
}
@media (max-width: 767px) {
.custom-pagination {
        width: 100%;
    }
    .custom-pagination span.page-numbers.page-num {
        display: none;
    }
}
