﻿/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {

    .mobileTable table, .mobileTable thead, .mobileTable tbody, .mobileTable th, .mobileTable td, .mobileTable tr {
        display: block !important;
    }

    .mobileTable thead tr {
        position: absolute !important;
        top: -9999px !important;
        left: -9999px !important;
    }

    .mobileTable tr {
        border: 1px solid #ccc !important;
    }
    .mobileTable td {
        border: none !important;
        border-bottom: 1px solid #eee !important;
        position: relative !important;
        text-align: center !important;
    }
}

