/*Cards view*/
.table-cards tbody td.fix-td, .table-cards tbody tr.fix-background {
    width: 350px !important;
}

.table-cards tbody td.fix-td .card {
    height: auto !important;
}

@media screen and (max-width: 767px) {
    .table-cards tbody td.fix-td, .table-cards tbody tr.fix-background {
        width: 100% !important;
    }

    .table-cards.dataTable > tbody > tr > td:first-child {
        padding-left: 5px !important;
    }

    .table-cards tbody tr {
        padding-left: 0px !important;
        margin-left: 0px !important;
    }
}


/*Original styles*/
.table-cards {
    background-color: transparent;
}

.table-cards thead {
    display: none !important;
}

/*--[  This does the job of making the table rows appear as cards ]----------------*/
.table-cards tbody img {
    height: 100px;
    width: auto !important;
    color: #FFFFFF;
    margin: 5px auto;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.table-cards tbody tr {
    float: left;
    margin: 10px;
    width: 293px;
    max-width: 500px !important;
    /*height: 287px;*/
    /*box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);*/
    background-color: transparent;
}

.table-cards tbody td {
    display: block;
    width: 293px !important;
    max-width: 500px !important;
    /*height: 287px !important;*/
    overflow: hidden;
    text-align: left;
    border-top: none !important;
}

.table {
    background-color: #fff;
}



