input[type=text], input[type=number], select, textarea {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 16px;
}

input[type=submit], input[type=reset]{
	width: 100%;
	background-color: #2070FF;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}

label {
	display: block;
	margin: 10px 0 0 0;
}

input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	opacity: 1;
}

div.calc {
	border-radius: 5px;
	background-color: #eee;
	padding: 20px;
	margin: 28px 0;
}

table {
	max-width: 400px;
	margin: auto;
}


th, td {
  padding: 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

input[type=number].cc {
	padding: 6px;
	text-align: center;
	max-width: 80%;
	font-size: 20px;

}


input[type=text]:disabled.cr {
	padding: 0 16px;
	border: 0;
	background-color: #eee;
	color: #2070FF;
	font-weight: bold;
	font-size: 24px;
	text-align: right;
} 