
.blook-default-pagination{
    margin-top: 15px;
    .posts-navigation{
        margin: 0;
    }
    a{
        margin-top: 15px;
        display: inline-block;
        @include border();
        height: 40px;
        line-height: 38px;
        padding: 0 30px;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: $font_weight_bold;
        position: relative;
        &:after,
        &:before{
            display: inline-block;
            position: absolute;
            top: 50%;
            @include transform(translateY(-50%));
            @extend %ionicons;
        }

    }
    .nav-links{
        text-align: center;
        display: block;
    }
  
    .nav-next,
    .nav-previous{
        padding: 0 7.5px;
        flex: auto;
        text-align: inherit;
        display: inline-block;
    }
  
    .nav-previous{
        a{
            padding-left: 45px;
            &:after,
            &:before{
                content: "\f3cf";
            }
            &:after{
                left: 35px;
            }
            &::before{
                left: 30px;
            }
        }
    }
    .nav-next{
        a{
            padding-right: 45px;
            &:after,
            &:before{
                content: "\f3d1";
            }
            &:before{
                right: 35px;
            }
            &:after{
                right: 30px;
            }
        }
    }
   
}
.blook-pagination-numeric{
    margin-top: 20px;
    .nav-links{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .page-numbers{
        background: $color_light_gray;
        height: 40px;
        width: 40px;
        border-radius: 100%;
        margin-left: 5px;
        margin-right: 5px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        i{
            display: inline-block;
            font-size: 14px;
        }
    }
    
}