.show_desk_only{display:inline;}
        .show_mobile_only{display:none;}
        .td_value{text-align: left;}
        th {text-align: left;}
        
        
        tr:nth-child(odd) {background-color: #f2f2f2;}
        tr:nth-child(even) {background-color: #d4cdcd;}
        thead tr{border-bottom: 3px solid #333333; background-color: #d4cdcd !important;}
        

@media 
only screen and (max-width: 641px){



	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr { border: 1px solid #ccc; }
	
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
		text-align: left;
	}
	
	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 50%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	
	/*
	Label the data
	*/
	td:nth-of-type(1):before { content: "Fertile days"; }
	td:nth-of-type(2):before { content: "Due date"; }
	
        .show_desk_only{display:none;}
        .show_mobile_only{display:block;}
        .td_value{text-align: right;}
	
}