
#calc_newpoints {
		width: 700px;
}
#calc_newpoints .col {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
#calc_newpoints td {
	width: 50%;
	border: 1px solid #CCC;
	vertical-align: top;
}

.inputs {
	display: flex;
}
.higher, .ordinary {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 150px;
}

.newId .inputs {
	flex-direction: column;
	align-items: center;
}
.newId .higher, .newId .ordinary {
	width: 200px;
}

td {
	padding: 5px;
}

/* Chart containers */
.top .oldId {
	min-height: 200px;
	height: 300px;
}

.bay {
	display: flex;
	align-items: center;
	min-height: 44px;
	width: 100%;
	max-width: 300px;
	border-radius: 3px;
	background-color: #efdecd;
	border: 2px solid #cd9575;
	box-sizing: border-box;
	padding: 2px;
}
.closer {
	color: #FFF;
	height: 30px;
	width: 30px;
	min-width: 30px;
	flex: 0 0 auto;
	cursor: pointer;
	background-image: url('svg/close.svg');
}
.tray {
	flex: 1 0 0;
	max-width: 270px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.tray .gradeButton { 
	border-radius: 3px;
	height: 30px;
	margin: 3px;
	padding: 3px;
}
.tray .higher.gradeButton,
.tray .ordinary.gradeButton { 
	width: 30px;
}

.title {
	width: 100%;
	font-family: sans-serif;
	text-transform: capitalize; 
	margin: 4px 3px;
}
.lcvp .title {
	text-transform: uppercase;
}

.gradeButton {
	border-radius: 3px;
	margin: 3px;
	padding: 5px;
	height: 40px;
	border: 1px solid #efdecd;
	color: #FFF;
	font-weight: bold;
	font-family: sans-serif;
	text-align: center;
}
.higher .gradeButton,
.ordinary .gradeButton {
	width: 40px;
}

.oldId .higher .gradeButton:nth-child(3),
.oldId .ordinary .gradeButton:nth-child(3) { /* Leave a space after A2, since there is no A3. */
	margin-right: 40px;
}

.desc {
	color: #555;
	font-size: 12px;
	font-family: sans-serif;
	margin-left: 5px;
}

