	/*
	Max width before this PARTICULAR table gets nasty
	This query will take effect for any screen smaller than 760px
	and also iPads specifically.
	*/
   
    #table_price_booking{
        width:100%;
    }

    #table_price_booking .thead{
        background: none repeat scroll 0 0 #AAFF7F;
    }

	@media
	only screen and (max-width: 760px),
	(min-device-width: 768px) and (max-device-width: 1024px)  {

		/* Force table to not be like tables anymore */
		 #table_price_booking.pr_day1, #table_price_booking.pr_day1 thead, #table_price_booking.pr_day1 tbody, #table_price_booking.pr_day1 th, #table_price_booking.pr_day1 td, #table_price_booking.pr_day1 tr {
			display: block;
		}

		/* Hide table headers (but not display: none;, for accessibility) */
		#table_price_booking thead tr {
			position: absolute;
			top: -9999px;
			left: -9999px;
		}

		#table_price_booking tr { border: 1px solid #000; }

		#table_price_booking td {
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee;
			position: relative;
			/*padding-left: 30%;*/
			margin:10px;
		}

		#table_price_booking td:before {
			/* Now like a table header */
			position: absolute;
			/* Top/left values mimic padding */
			left: 6px;
			width: 30%;
			padding-right: 10px;
			white-space: nowrap;
		}

		/*
		Label the data
		*/
		.pr_day1 td:nth-of-type(1):before { content: ""; }
		.pr_day1 td:nth-of-type(2):before { content: "Người lớn"; }
		.pr_day1 td:nth-of-type(3):before { content: "T.E - có giường "; }
		.pr_day1 td:nth-of-type(4):before { content: "T.E - ngủ ghép"; }
		.pr_day1 td:nth-of-type(5):before { content: "Trẻ nhỏ"; }
		
		.pr_day2 td:nth-of-type(1):before { content: "Điểm đến"; }
		.pr_day2 td:nth-of-type(2):before { content: "Ngày đi"; }
		.pr_day2 td:nth-of-type(3):before { content: "Ngày về"; }
		.pr_day2 td:nth-of-type(4):before { content: "Giá(VNĐ)"; }
		.pr_day2 td:nth-of-type(5):before { content: "Số chỗ còn nhận"; }
	}

@media (min-width: 768px) {	
#table_price_booking {
		border-collapse: collapse;
		width: 100%;
		}
		#table_price_booking tr:nth-of-type(2n+1) {
			background: none repeat scroll 0 0 #f7f7f7;
		}
		#table_price_booking th {			
			color: #000;
			font-size:85%;
			font-weight: bold;
			text-align:center;
			white-space:nowrap;
		}
		#table_price_booking td, #table_price_booking th {
			border: 1px dotted #ccc;
			padding: 10px;
		}
}
	#table_price_booking .content_program {
		background-color:#bfd9b3;
	}	
	#table_price_booking .content_program1 {
		background-color:#fcdeb8;
	}
	#table_price_booking .content_program2 {
		background-color:#dcddab;
	}
	#table_price_booking .content_program3 {
		background-color:#f799d1;
	}
	#table_price_booking .content_program4 {
		background-color:#cfcced;
	}
	#table_price_booking .content_program5 {
		background-color:#fde0e2;
	}
	#table_price_booking .content_program:hover, #table_price_booking .content_program1:hover, #table_price_booking .content_program2:hover, #table_price_booking .content_program3:hover, #table_price_booking .content_program4:hover, #table_price_booking .content_program5:hover {
		box-shadow: 5px 5px 5px #888888;
	}
	#table_price_booking .content_program i, #table_price_booking .content_program1 i, #table_price_booking .content_program2 i, #table_price_booking .content_program3 i, #table_price_booking .content_program4 i, #table_price_booking .content_program5 i {
		font-size:90%;
	}      


