@charset "utf-8";
/* CSS Document */

.wrapper {
	max-width: 1280px;
	margin: auto;
	position:relative;
	margin-top: 0;
}

hgroup {
	padding: 20px;
	display: block;
	margin-top: 10px;
}

hgroup h1 {
	font-size:20px;
	font-weight:300;
	border-bottom: 1px solid var(--s);
}

main {
	padding: 0 20px;
	display: block;
}

table {
	margin: auto;
	padding: 0 30px;
	border-collapse: collapse;
	margin-bottom: 30px;
	border-bottom: solid 3px #20b7c5;
}

table td {
	font-family: 'Assistant', sans-serif;
	height: 30px;
	font-size: 16px;
}

table th {
	font-family: 'Assistant', sans-serif;
	border-bottom: solid 3px #20b7c5;
	line-height: 18px;
	height: 40px;
	padding-right: 5px;
	font-size: 14px;
	background: rgba(128, 235, 242, 0.4);
}

table .cabezas_pq {
	display: none;
}

table th:nth-child(2) {
	text-align: center;
}

/* table th:nth-child(3), table th:nth-child(4), table th:nth-child(5) {
	text-align: right;
} */

table td:nth-child(1) {
	width: 52%;
	border-right: solid 1px #20b7c5;
	padding: 0 10px;
}

table td:nth-child(2) {
	width: 7%;
}

table td:nth-child(3) {
	width: 10%;
}

table td:nth-child(4) {
	width: 10%;
}

table td:nth-child(5) {
	width: 8%;
}

table tr:nth-child(odd) {
	background: rgba(104, 2017, 249, 0.15)
}

table td:nth-child(2) {
	text-align: center;
	border-right: solid 1px #20b7c5;
}

table td:nth-child(3), table td:nth-child(4) {
	text-align: right;
	border-right: solid 1px #20b7c5;
	padding-right: 10px;
}

table td:nth-child(5) {
	text-align: right;
	padding-right: 10px;	
} 


	

/*-----------------------------------------------Responsive Design-------------------------------------------------------*/



@media screen and (max-width: 1024px) { /*----------------1024-----------------*/

	.wrapper {
		overflow: hidden;
	}
	
	main {
		padding: 0 10px;
	}
	hgroup {
		padding: 15px 10px;
	}

	hgroup h1 {
		font-size:24px;
	}

	table {
		width: 100%;
	}

}


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

	table td {
		font-size: 14px;
	}

}


@media screen and (max-width: 375px) { /*-----------------360------------------*/

	main {
		padding: 0 5px;
	}

	hgroup {
		padding: 10px 15px;
	}

	hgroup h1 {
		font-size: 16px;
	}

	hgroup .icon-list2 {
		font-size: 16px;
	}

	table th {
		font-size: 10px;
	}

	table td {
		font-size: 10px;
	}

}


