.button {
	display: inline-block;
	margin: 0;
	padding: 10px 26px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1em;
	color: #282828;
	background-color: #dadada;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: all 0.15s ease-out;
	border-radius: 4px;
	border: none;
	outline: none;
}

.button:hover {
	background-color: #d0d0d0;
}




/* VARIATIONS */
.button.big {
	padding: 18px 32px;
	font-size: 1.6rem;
	line-height: 1.4em;
}

.button.medium {
	padding: 12px 26px;
	font-size: 1.2rem;
	line-height: 1.4em;
}

.button.small {
	padding: 8px 22px;
	font-size: 1rem;
	line-height: 1.2em;
}

.button.smaller {
	padding: 6px 16px;
	font-size: 0.9rem;
	line-height: 1.2em;
}




/* COLORS */
.button.red {
	background-color: #c21719;
	color: white;
}

.button.red:hover {
	background-color: #d21b1e;
	color: white;
}

.button.gray {
	background-color: #898989;
	color: white;
}

.button.gray:hover {
	background-color: #a0a0a0;
	color: white;
}

.button.blue {
	background-color: #21bbef;
	color: white;
}

.button.blue:hover {
	background-color: #0089da;
	color: white;
}

.button.green {
	background-color: #57670b;
	color: #ffffff;
}

.button.green:hover {
	background-color: #809710;
	color: #ffffff;
}