
 .pagination-blk{
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    li{
      display: inline-block;
      font-size: 15px;
      margin-right: 15px;
      font-weight: $font-weight-light;
      &.active {
        width: 32px;
        height: 32px;
        background: $green;
        color: $white;
        border-radius: 50%;
        line-height: 32px;
      }
    }
    &~span{
      display: none;
    }
  }
  .backward, .forward{
    display: none;
  }
  .previous{
    padding-right: 25px;
  }
  .next{
    padding-left: 25px;
    color: $green;
  }
}