.sw-dns-pagination {
  padding-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  .page-numbers {
    font-size: 18px;
    line-height: 32px;
    height: 32px;
    width: 32px;
    color: #0044ab;
    text-align: center;
    font-weight: 400;

    svg {
      margin: unset;
      padding: unset;
      width: unset;
      height: unset;
    }

    &:hover {
      text-decoration: underline;
    }

    &:active {
      text-decoration: underline;
      color: #00086f;
    }

    &.current {
      color: #000000;
      font-weight: bold;

      &:hover {
        text-decoration: none;
      }
      &:active {
        text-decoration: none;
        color: #000000;
      }

      &::after {
        content: "";
        display: block;
        width: 22px;
        height: 4px;
        background: linear-gradient(to bottom, #3fb9ff, #0066ff);
        border-radius: 2px;
        margin: -4px auto 0;
      }
    }

    &.diactivated {
      color: #d9d9d3;

      svg path {
        stroke: #d9d9d3;
      }
    }

    &.dots {
      &:hover {
        text-decoration: none;
      }
      &:active {
        text-decoration: none;
        color: #0044ab;
      }
    }
  }

  .prev,
  .next {
    line-height: 0;
  }

  .prev {
    margin-right: 40px;
  }

  .next {
    margin-left: 40px;
  }

  @media (max-width: 767px) {
    .prev {
      margin-right: 24px;
    }

    .next {
      margin-left: 24px;
    }
  }
}
