﻿/*
    Jumpeye framework    
	Version: 1.0.0
	www.jumpeye.com
	
	Created by Jumpeye Components
 
    Tables
*/

	/** general */

    .table { font-family: Arial, Tahoma, Helvetica, sans-serif; }
    .table thead td,
    .table tbody td,
    .table tfoot td { text-align: center; }
    
    /* mobile devices */
    /* hide unecessary columns */
    /* http://elvery.net/demo/responsive-tables */
    @media only screen and (max-width: 767px) {
        .table { width: 100%; }
        .table td:last-child,
        .table th:last-child {display: none;}
    }
     
    @media only screen and (max-width: 640px) {
        .table { width: 100%; }
        .table td:last-child,
        .table th:last-child{display: none;}
    }