.dataTables_wrapper{
    thead{
        .sorting{
            position: relative;

            &:after{
                position: absolute;
                right: 0;
                bottom: 5px;
                content: "\e92d";
                font-family: 'feather' !important;
            }
            &:before{
                position: absolute;
                right: 0;
                top: 5px;
                content: "\e930";
                font-family: 'feather' !important;
            }
        }

        .sorting_desc{
            position: relative;

            &:after{
                position: absolute;
                right: 0;
                bottom: 5px;
                content: "\e92d";
                font-family: 'feather' !important;
            }
        }
        .sorting_asc{
            position: relative;
            &:after{
                position: absolute;
                right: 0;
                top: 5px;
                content: "\e930";
                font-family: 'feather' !important;
            }
        }
    }

    .dataTables_length{
        float: left;

        select{
            @include inline-block;
            width: auto;
            margin: 0 0.2rem;
        }
    }
    .dataTables_filter{
        @extend .form-control;
        color: $body-color;
        float: right;
        text-align: right;        

        input{
            @include inline-block;
            width: auto;
            margin-left: 0.2rem;
        }
    }

    .dataTables_paginate {
        float: right;
        text-align: right;

        .paginate_button{
            @extend .btn, .btn-secondary;    
        }
    }    
    .dataTables_info {
        color: $gray-500;
        clear: both;
        float: left;    
        margin: 0;
        padding: 0 !important;
        line-height: 38px;
    }
}