.default-pagination {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-right: -6px;
}

.default-pagination > * {
  margin-right: 6px;
}

.default-pagination > *:not(.wp-pagenavi) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  border: 1px solid var(--blue);
  -webkit-border-radius: 20px;
  border-radius: 20px;

  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;

  -webkit-transition: border-color 0.4s, background-color 0.4s, box-shadow 0.4s,
    opacity 0.4s;
  transition: border-color 0.4s, background-color 0.4s, box-shadow 0.4s,
    opacity 0.4s;
}

.default-pagination > *.-active {
  border-color: var(--white);
  background-color: var(--white);
  pointer-events: none;
  box-shadow: 0 0 81px rgba(0, 0, 0, 0.2);
}

.-apple .default-pagination > * {
  padding-top: 2px;
}

@media screen and (max-width: 1024px) {
  .default-pagination {
    margin-right: -5px;
  }

  .default-pagination > * {
    margin-right: 5px;
  }
}
