/*!
 * angular-datatables - v0.5.6
 * https://github.com/l-lin/angular-datatables
 * License: MIT
 */
/* ---------------------------------------- */
/* DATATABLE */
/* ---------------------------------------- */

.dataTables_wrapper {
    /*border: 1px solid #DDDDDD;*/
    padding: 1rem 0;
}

table.dataTable,
table.dataTable.no-footer {
    margin: 1rem 0;
    width: 100% !important;
    /*border-top: 1px solid #DDDDDD;;
    border-bottom: 1px solid #DDDDDD;*/
}
/* -- select box --*/
.dataTables_length {
    margin: 0.2rem 0 -2.2rem 1rem;
}

    .dataTables_length select {
        border: none;
        border: 1px solid #E4E4E4;
        border-radius: 5px;
        height: calc(1.8125rem + 2px);
        background-color: #fff;
        border: 1px solid #969696;
        color: #45454c;
    }

        .dataTables_length select:focus {
            outline: none;
        }
/* -- search box --*/
.dataTables_filter {
    margin-right: 1rem;
}

    .dataTables_filter input[type="search"] {
        border-radius: 5px;
        background-color: #fff;
        border: 1px solid #c2c2c2;
        color: #303033;
        margin-left: 10px;
        outline: none;
        padding: 3px 10px;
        /*        width: 500px;*/
    }
/* -- table --*/
table.dataTable thead th, table.dataTable thead td {
    border-bottom: 1px solid #DDDDDD;
}

table.dataTable tbody th, table.dataTable tbody td {
    padding: 5px 18px;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: #16171a;
    font-size: 17px;
}

.dataTables_wrapper .dataTables_paginate {
    float: right;
    margin-bottom: 10px;
    margin-top: 10px;
}

.dataTables_wrapper .dataTables_info {
    margin-left: 1rem;
    float: left;
}

.dataTables_wrapper .dataTables_length {
    float: left;
    margin-bottom: 15px;
}

.dataTables_wrapper .dataTables_filter {
    float: right;
}


/* ---------------------------------------- */
/* PAGINATION */
/* ---------------------------------------- */
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: white !important;
    border: none;
    background: #525ce5;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 6px 12px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #25292a;
    font-weight: 300;
    margin-right: 5px;
    line-height: 30px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        /*transition: all 0.4s ease;*/
        padding: 6px 12px;
        background: #1b1b1b;
        color: #fff;
        font-weight: 300;
        line-height: 30px;
    }
