﻿/*Responsive table mobile view*/
@media screen and (max-width: 900px) {

    .responsive-table .table {
        display: table-row !important;
    }

    .responsive-table thead {
        display: none;
    }

    .responsive-table tr {
        margin-bottom: 20px !important;
        display: block;
        box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em !important;
        height: auto !important;
    }

    .responsive-table tfoot tr {
        margin-bottom: 0 !important;
    }
        .responsive-table tfoot tr th {
            border: 0 !important;
        }

    .responsive-table td {
        display: block;
        padding: 10px !important;
        text-align: left;
    }

        .responsive-table td:last-child {
            padding: 5px 5px !important;
        }

        .responsive-table td:before {
            content: attr(data-label);
            font-weight: bold;
            float: right;
            width: -webkit-fill-available;
        }

        .responsive-table td:nth-last-child(2) {
            text-align: start !important;
        }

    #DataTables_Table_0_filter{
        margin: 1rem 0.5rem !important;
    }
    .dataTables_length{
        display: none !important;
    }
    .dt-buttons{
        text-align: start !important;
    }
}
