.responsive-flip-table {
	padding: 5px;
}

.responsive-flip-table table {
	width: 100%;
}

.responsive-flip-table th, 
.responsive-flip-table td {
    line-height: 35px;
    text-align: center;
	border-bottom: solid 1px #e7e7ea;
	padding-bottom: 5px;
	padding-top: 5px;
}

.responsive-flip-table tr:last-child td {
    border-bottom: 0px;
}

@media only screen and (max-width: 800px) {
	.responsive-flip-table table, 
	.responsive-flip-table thead, 
	.responsive-flip-table tbody, 
	.responsive-flip-table th, 
	.responsive-flip-table td, 
	.responsive-flip-table tr { 
		display: block;
	}

	.responsive-flip-table thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	.responsive-flip-table tr { 
		margin-bottom: 30px;
	}

	.responsive-flip-table td {
		border: none;
		position: relative;
		padding-left: 50%;
		white-space: normal;
		text-align: center;
		border-bottom: solid 1px #e7e7ea;
	}
		
	.responsive-flip-table tr:last-child td {
		border-bottom: solid 1px #e7e7ea;
	}
	
	.responsive-flip-table tr td:last-child  {
		border-bottom: 0px;
	}

	.responsive-flip-table td:before {
		position: absolute;
		top: 6px;
		left: 6px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
		text-align: center;
		font-weight: bold;
	}
	
	.responsive-flip-table td:before {
		content: attr(data-title);
	}
}
	