.button {
	color: white;
	display: inline-flex;
	justify-content: center;
	align-items: center;
    height: 30px;
    min-width: 114px;
    margin-left: 4px;
    margin-right: 4px;
    cursor: pointer;
    border: 1px solid  #405309;
    border-radius: 5px;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.5);
	background-image: linear-gradient(to top, #4C620B, #7DA013);
	font-size: 12px;
	padding-left: 5px;
	padding-right: 5px;
}

.button > div:first-child {
	font-size: 20px;
    margin-right: 5px;	
}

.button:hover {
	background-image: linear-gradient(to top, #749510, #A0CF17);
}

.button-disabled {
	color: gray;
	background-image: linear-gradient(to top, #B8C2A4, #FDFDFC);
}

.button-disabled:hover {
	background-image: linear-gradient(to top, #DAE5C3, #FFFFFF);
}
*/