@media screen and (max-width: 5120px) { 	
	.standard_table{
		width:48%;
		border:1px solid gray;
	}
	.standard_table thead tr{
		background-color:gray;
		color: white;
		font-weight:bolder;
	}
	.standard_table tbody tr:nth-child(odd){
		background-color:white;
	}
	.standard_table tbody tr:nth-child(even){
		background-color:#e5e4e4;
	}
	.standard_table tr{
		
	}
	.standard_table tr td{
			padding:10px 12px;
	}
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
	.standard_table{
		width:100%;
		border:1px solid gray;
	}
}

@media screen and (max-width: 480px) { 
	.standard_table{
		width:100%;
		border:1px solid gray;
	}
	.standard_table thead tr{
		font-size:2.9vw;
		font-weight:bold;
	}
	.standard_table tbody tr td:nth-child(1){
		font-size:13px;
		font-weight:bold;
	}
	.standard_table tbody tr td:not(:first-child) {
		font-size:13px;
	}
	.standard_table tr td {
        padding: 10px 8px;
    }
}