.button {
	display: flex; float: right; overflow: hidden;
	border: 0; padding: 15px 20px;
	align-items: center; justify-content: center;
	text-transform: uppercase; letter-spacing: 0.02em;
	cursor: pointer;
	
	font: 700 12px/12px "Lato", sans-serif;
}
.button:not(:nth-child(1)) { margin-right: 10px; }

.button.button-default { background: #fff; color: #000; }
.button.button-default:hover { background: #000; color: #fff; }

.button.button-red { background: #f00000; color: #fff; }
.button.button-red:hover { background: #000; }

.button.button-green { background: #8BC34A; color: #fff; }
.button.button-green:hover { background: #8BC34A; color: #fff; }



.form-item {
	display: inline-block; vertical-align: top;
	width: auto; height: auto;
	margin: 3px; padding: 3px;
	font-size: 12px; line-height: 12px;
	border: 1px solid #ccc;
}