/* CSS Document */
#boxTBNumpad {
	background: rgba(173,180,190,0.8);
	display: none;
	position: fixed;
	width: 100%;
	left: 0;
	top: auto;
	bottom: 0;
	font-size: 0;
	z-index: 1000000;
	transform: translateY(100%);
	transition: opacity 0.1s, transform 0.5s;
	-moz-transition: opacity 0.1s, transform 0.5s;
	-ms-transition: opacity 0.1s, transform 0.5s;
	-o-transition: opacity 0.1s, transform 0.5s;
	-webkit-transition: opacity 0.1s, transform 0.5s;
	-webkit-text-size-adjust: none;					/*prevent webkit from resizing text to fit */
	-webkit-user-select: none;						/*prevent copy paste, to allow, change 'none' to 'text' */
}
#TBNumpad {
	width: 100%;
	max-width: 640px;
	padding: 3px 10px;
	margin: 0 auto;
	font-size: 0;
	text-align: center;
}
.monitorTBNumpad {
	background: rgb(100,100,100);
	color: white;
	width: 97%;
	height: 50px;
	margin: 5px auto;
	border: 1px solid white;
}
#showLabelMonitor {
	height: 16px;
	margin: 3px 5px;
	font-size: 13px;
	text-align: left;
}
#showResultMonitor {
	font-size: 22px;
}
#TBNumpad button {
	background: white;
	width: 31%;
	height: 40px;
	margin: 2px 1%;
	border-radius: 10px;
	font-size: 20px;
	text-align: center;
}
#btnTBNumpadEnter {
	color: teal;
}