/*
==================================
			GRID
==================================
*/

.calculator {
	padding: 10px;
	background-color: white!important;
	border-radius: 5px;
	/*this is to remove space between divs that are inline-block*/
	font-size: 0;
}

.calculator > input[type=text] {
	width: 100%;	
	height: 33px;
	border: 2px solid lightgrey;
	text-align: right;
	font-size: 20px;
	padding-right: 10px;
    background-color: white!important;
}

.calculator .row { 
	margin-top: 10px;
    margin-left: 0px;
    margin-right: 0px;
}

.calculator .key {
	width: 42px;
	display: inline-block;
	background: url("/images/online/listBG.png");
	color: #333333;
	font-size: 12px;
	margin-right: 5px;
    margin-left: 5px;
	border-radius: 6px;
	height: 30px;
	line-height: 28px;
	text-align: center;
    border: 1px solid lightgrey;
}

.calculator .key:hover{
	cursor: pointer;
    opacity: 0.7;
}

.key.last{
	margin-right: 0px;
} 

.key.action {
}