/*
Theme Name: Uncode Child
Description: Child theme for Uncode theme
Author: Undsgn™
Author URI: http://www.undsgn.com
Template: uncode
Version: 1.0.0
Text Domain: uncode
*/

body table { width: 100%; }
body table td { font-weight: 400; }
body table tr:nth-of-type(even) { background: #f6f6f6; }
body table tr strong { color: black; }
body table thead tr { background: #ffc42e; color: white; }

@media only screen and (max-width: 639px) {

/* Force table to not be like tables anymore */
	table.responsive-table, .responsive-table thead, .responsive-table tbody, .responsive-table th, .responsive-table td, .responsive-table tr { 
		display: block; 
	}
	
	.responsive-table thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	.responsive-table tr { border: 1px solid #ccc; }
	
	.responsive-table td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}
	
	.responsive-table td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		font-weight: bold;
		color: black;
	}
	
	/*
	Label the data
	*/
	#accomodation-table td:nth-of-type(1):before { content: "LODGING"; }
	#accomodation-table td:nth-of-type(2):before { content: "HIGH SEASON"; }
	#accomodation-table td:nth-of-type(3):before { content: "LOW SEASON"; }
	#amenity-table td:nth-of-type(4):before { content: "AMENITY"; }
	#amenity-table td:nth-of-type(5):before { content: "RATE"; }


}