/*Color*/
	.bg-positive {
		background-color: #2e6400;
		color: white;
	}
	.bg-positive:focus, .bg-positive:hover {
		background-color: #5fc705;
	}
	
	.bg-negative {
		background-color: darkRed;
		color: white;
	}
	.bg-negative:focus, .bg-negative:hover {
		background-color: red;
	}

	.bg-orange {
		background-color: darkorange;
		color: white;
	}
	.bg-orange:focus, .bg-orange:hover {
		background-color: orange;
	}

	.negative {
		color: darkred;
	}
	.positive {
		color: #2e6400;
	}

	.bg-dim {
		background-color: rgba(0, 0, 0, 0.3);
	}
	.bg-white {
		background-color: white;
	}
	

	.bg-primary {
		background-color: #1f264b;
	}

	.on-primary {
		color: white;
	}