.table-block {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	/* display: inline-block; */
	/* background-color: #FFFFFF; */
	/* padding: 2rem 2rem; */
	color: #000;
}

.table {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	border: 1px solid #ccc;
	border-collapse: collapse;
	border-spacing: 0;
	
}

.table th, .table td {
	padding: 10px;
	/* text-align: left; */
	text-align: justify;
	border-right: 1px solid #ddd;
}

.th-1 {
	width: 10%;
}

.th-2{
	width: 60%;
}

/* .th-3{
	width: 30%;
} */

.th-4{
	width: 30%;
}

.table th {
	color: #000000;
	background-color: #FFD700;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
}

.table tr {
	text-align: justify;
	border: 1px solid #ddd;
	padding: 5px;
}

.table td {
	padding: 10px;
	/* text-align: left; */
	text-align: justify;
	border-right: 1px solid #ddd;
	
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	
}

table.table tr:nth-child(2n+2) {
	background: #F5FFFA;
}

.table tr:hover {
	background-color: #FFD700;
}

table.table tr:nth-child(2n+2):hover {
	background: #FFD700;
}

/* Zebra striping */
/* .tr:nth-of-type(odd) {
	background: #F5FFFA;
} */

/* table.table tr:nth-child(1) {
	background: #000;
	color: #fff;
} */




@media screen and (max-width: 600px) {
	.table {
		border: 0;
	}

	.table thead {
		display: none;
	}

	.table tr {
		/* margin-bottom: 20px; */
		display: block;
		/* border-bottom: 2px solid #ddd; */
		 
		border: #ccc solid 1px;
		border-radius: 5px;
		margin: 20px 1%;
		padding: 12px;

		box-shadow: 0 3px 3px #666;
	}

	.table td {
		display: block;
		/* text-align: left; */
		/* text-align: right; */
		text-align: justify;
		font-size: 12px;
		border-bottom: 1px dotted #ccc;
		border-right: 1px solid transparent;
		
		overflow-wrap: break-word;
		word-wrap: break-word;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		-moz-hyphens: auto;
		hyphens: auto;
		
	}

	.table td:last-child {
		border-bottom: 0;
	}

	.table td:before {
		color: #808080;
		content: attr(data-label);
		float: left;
		/* text-transform: uppercase; */
		/* font-weight: bold; */
		margin-right: 10px;
		
	}

	table.table tr:nth-child(2n+2) {
		background: none;
	}
	
	.table tr:hover {
		background: none;
	}

	table.table tr:nth-child(2n+2):hover {
		background: none;
	}
}

/* @media screen and (max-width: 360px) {
	.table-block {
		display: none;
	}	
} */