
#package_list{width: 100%;margin: 0px auto;padding: 0 14px;}
#package_list .package {
    color: #0E5F8A;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 1em;
    line-height: 22px;
}
#package_list .cell {
    padding: 10px;
    display: table-cell;
    border-right: #2e9cd9 1px solid;
    font-weight: bold;
    font-size: 16px;
}
#package_list table { 
    width: 100%; 
    table-layout: fixed;
    border-collapse: collapse; 
}
/* Zebra striping */
#package_list tr:nth-of-type(odd) { 

}
#package_list th { 
    background: #2e9cd9; 
    color: #fff; 
    font-weight: 600; 
}
#package_list td, #package_list th { 
    color: #0367b0;
    text-align: center;
	font-size: 13px;
}
#package_list td
{
    display: table-cell;

}
/*Mobile View*/
@media 
only screen and 
    (max-width: 760px){
    #package_list td, #package_list tr { 
        display:inline;
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	#package_list thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	#package_list td { 
		/* make like a "row" */
		color: #0367b0;
		border: none;
		font-size: 12px;
		position: relative;
		text-align: left;
	}
	#package_list td:before { 
        content: attr(data-label);
        display: inline-block;
        line-height: 1.5;
	    margin-left: -100%;
        width: 100%;
		white-space: nowrap;
	}
}