.list {
  @include list-unstyled;
  padding: 0;
  margin: 0;

  &-inline {
    li {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  }

  &-dashed {
    @include rfs(12);
    color: $black;
    > li {
      &:not(:last-child) {
        margin-bottom: 0.75rem;
      }
      .bordered {
        height: 1px;
        border-bottom: 1px dashed $gray-88;
        margin: 0 0.25rem;
        flex-grow: 1;
        min-width: 1rem;
      }
    }
    p {
      @include rfs(12);
    }
  }

  &-dot {
    // font-family-heebo
    font-weight: 400;
    margin-top: 0.5rem;
    @include rfs(16);
    li {
      position: relative;
      padding-left: 1rem;
      color: $gray-80;
      &:before {
        content: "";
        position: absolute;
        top: 6px;
        left: 0;
        background-color: $primary;
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 50%;
      }
      &:not(:last-child) {
        margin-bottom: 0.5rem;
      }
    }
  }
  &-bullets {
    // font-family-heebo
    font-weight: 400;
    margin-top: 0.5rem;
    @include rfs(16);
    li {
      position: relative;
      padding-left: 1rem;
      color: $gray-80;
      &:before {
        content: "";
        position: absolute;
        top: 6px;
        left: 0;
        background-color: $primary;
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 50%;
      }
      &:not(:last-child) {
        margin-bottom: 0.5rem;
      }
    }
  }
  &-bordered {
    li {
      padding: 0.5rem 0;
      color: $gray-88;
      border-top: 1px solid $border-color;

      p {
        font-weight: 400;
        // @include rfs(14);
      }
      span {
        font-weight: 500;
        @include rfs(16);
      }
    }
  }
  &-separator {
    display: flex;
    li {
      padding: 0 0.75rem;
      display: flex;
      align-items: center;
      &:not(:last-child) {
        border-right: 1px solid $border-color-light;
      }
    }
  }
}

.pagination {
  li {
    font-weight: 400;
    @include rfs(14);
    i {
      @include rfs(14);
    }
    .page-link {
      border-radius: 0.25rem;
      padding: 0.25rem 0.5rem;
      margin-right: 0.25rem;
    }
  }
}
