button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 0;
	background: $color__background-button;
	color: white;
	padding: 0.5rem 1.25rem;
	border-radius: 5px;
	line-height:1.25em;
	@include font-size(1.25);
	text-shadow: 0px 0px 5px rgba(33, 34, 35, 1);

	&:hover {
		box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
	}

	&:active,
	&:focus {
		box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.30);
	}
}

/*--------------------------------------------------------------
## Waves
--------------------------------------------------------------*/
@import "../components/waves";