button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: $color__border-button;
    @include border-radius(3px);
	background: $color__background-button;
    color: #fff;
	box-shadow: none;
	@include font-size(1);
	line-height: 1;
	padding: $small__spacing/1.2 $small__spacing*1.2;
	text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
    -webkit-appearance: none;

	&:hover {
        background: $color__background-button-hover;
		border-color: $color__border-button-hover;
		box-shadow:none;
        color: #fff;
	}

	&:active,
	&:focus {
		border-color: $color__border-button-focus;
		box-shadow: none;
        color: #fff;
	}
}