/* PAGINATION */
div.custom-pagination {
  display: flex;
  justify-content: center;
  margin: 10px;
}

div.custom-pagination a {
  color: rgb(125, 128, 138)
}

div.custom-pagination a, div.custom-pagination em, div.custom-pagination span {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  text-decoration: none;
  padding: 5px 10px;
}

div.custom-pagination a:hover {
  background-color: rgb(226, 234, 255);
}

div.custom-pagination a:first-child {
  border-radius: 5px 0 0 5px;
}

div.custom-pagination > em:first-child {
  border-radius: 5px 0 0 5px;
}

div.custom-pagination a:last-child {
  border-right: 1px solid #ddd;
  border-radius: 0 5px 5px 0;
}

div.custom-pagination a:last-of-type + em {
  border-radius: 0 5px 5px 0;
}

div.custom-pagination em {
  color: #fff;
  font-style: normal;
  background-color: rgb(53, 79, 226);
  border-top: 1px solid rgb(53, 79, 226);
  border-bottom: 1px solid rgb(53, 79, 226);
  padding: 5px 11px;
}

div.custom-pagination .disabled {
  display: none;
}

/* Website Custom Pagination */
div.w-custom-pagination em {
  color: #fff;
  font-style: normal;
  background-color: rgb(253, 148, 28);
  border-top: 1px solid rgb(253, 148, 28);
  border-bottom: 1px solid rgb(253, 148, 28);
  padding: 5px 11px;
}

div.w-custom-pagination a:hover {
  background-color: rgb(255, 245, 226);
}