.contribution-limits {
	flex-flow: column;
}

#colaLimits {

	thead th:first-of-type {
		width: 35%;
		text-align: left;
	}

	tbody tr th {
		font-weight: normal;
		border-right: 3px solid var(--white);
	}
	tbody tr th:first-of-type {
		text-align: left;
		padding-left: 0.9rem;
	}
	tbody tr td {
		text-align: right;
		font-size: 1rem;
		padding: 0.9rem 0.9rem 0.7rem;
		border-right: 3px solid var(--white);
	}
	tfoot {
	    border-top: 0.9rem solid #fff;
	}
	
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

	#colaLimits {
		
		thead th.sticky-col, tbody th.sticky-col {
			position: sticky;
			width: 50%;
			max-width: 50%;
			min-width: 50%;
			text-align: left;
			padding: 0.9rem 0.9rem 0.4rem;
			align-items: center;
		}
		thead th:nth-child(2), tbody td:nth-child(2) {
			width: 50%;
			max-width: 50%;
			min-width: 50%;
		}
		thead th:nth-child(n + 3), tbody td:nth-child(n + 3) {
			display: none;
		}
		tbody tr td{
			width: 50%;
			max-width: 50%;
			min-width: 50%;
		}
	}

}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

	#colaLimits {
		
		thead th.sticky-col, tbody th.sticky-col {
			position: sticky;
			width: 50%;
			max-width: 50%;
			min-width: 50%;
			text-align: left;
			padding: 0.9rem 0.9rem 0.4rem;
			align-items: center;
		}
		thead th:nth-child(2), tbody td:nth-child(2) {
			width: 50%;
			max-width: 50%;
			min-width: 50%;
		}
		thead th:nth-child(n + 3), tbody td:nth-child(n + 3) {
			display: none;
		}
		tbody tr td{
			width: 50%;
			max-width: 50%;
			min-width: 50%;
		}
	}

}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

	#colaLimits {
		
		thead th.sticky-col, tbody th.sticky-col {
			position: sticky;
			width: 40%;
			max-width: 40%;
			min-width: 40%;
			text-align: left;
			padding: 0.9rem 0.9rem 0.4rem;
			align-items: center;
		}
		thead th:nth-child(-n + 4), tbody td:nth-child(-n + 4) {
			width: 30%;
			max-width: 30%;
			min-width: 30%;
			display: table-cell;
		}
		thead th:nth-child(n + 4), tbody td:nth-child(n + 4) {
			display: none;
		}
		tbody tr td{
			width: 30%;
			max-width: 30%;
			min-width: 30%;
		}
	}

}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

	#colaLimits {
		
		thead th.sticky-col, tbody th.sticky-col {
			position: sticky;
			width: 40%;
			max-width: 40%;
			min-width: 40%;
			text-align: left;
			padding: 0.9rem 0.9rem 0.4rem;
			align-items: center;
		}
		thead th:nth-child(-n + 4), tbody td:nth-child(-n + 4) {
			width: 30%;
			max-width: 30%;
			min-width: 30%;
			display: table-cell;
		}
		thead th:nth-child(n + 4), tbody td:nth-child(n + 4) {
			display: none;
		}
		tbody tr td{
			width: 30%;
			max-width: 30%;
			min-width: 30%;
		}
	}

}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

	#colaLimits {
		
		thead th.sticky-col, tbody th.sticky-col {
			position: sticky;
			width: auto;
			max-width: auto;
			min-width: auto;
			text-align: left;
			padding: 0.9rem 0.9rem 0.4rem;
			align-items: center;
		}
		thead th, tbody td {
			width: auto;
			max-width: auto;
			min-width: auto;
			display: table-cell;
		}
		thead th:nth-child(n + 4), tbody td:nth-child(n + 4) {
			display: table-cell;
		}    
		thead th:first-of-type {
        	width: 45%;
			max-width: 45%;
			min-width: 45%;
		}
		tbody tr td{
			width: auto;
			max-width: auto;
			min-width: auto;
		}
	}


}