/*!
 * 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{
    padding-top: 0.28rem;
    padding-bottom: 0.28rem;
    padding-left: 0.8rem;
    font-size: 16px;
    border-radius: 0.2rem;
    border: 1px solid #E4E4E4;
}
.dataTables_length select:focus{
    outline: none;
}
/* -- search box --*/
.dataTables_filter {
    margin-right: 1rem;
}
.dataTables_filter input[type="search"] {
    border: 1px solid #E4E4E4;
    border-radius: 3px; 
    line-height:35px;
}
/* -- 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: #585858;
}
.dataTables_wrapper .dataTables_info {
    margin-left: 1rem; 
    float:left;
}

.dataTables_wrapper .dataTables_paginate {
   float:right; 
   margin-bottom:15px;
}


/* ---------------------------------------- */
/* PAGINATION */
/* ---------------------------------------- */
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    color: white ;
    border: none;
    background:#dba340;
}



.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: white;
    border: none;
    background: #222;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 6px 12px;
    cursor: pointer; 
        background-color: #fff;
    border: 1px solid #ddd;
    color:#263238; 
    font-weight:300;
        margin-right: 5px;
            line-height: 30px;
}
.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;
}

@media (max-width:600px) {
    .dataTables_length {
      margin: 0;
      text-align: center;
    }
}