button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
	@include btn;
}

// General styles
.btn {
	text-decoration: none;

	@include btn;
	@include border-radius;
	&:hover {
		text-decoration: none;
	}
	&:active {
		outline: none;
		box-shadow: 0 0 10px;
	}
	&-fullwidth {
		width: 100%;
	}

	&.btn-default {
		background-color: transparent;
		border-color: $color__border-button;
	}
}
.link {
	display: inline-block;
	letter-spacing: 0.72px;
	text-transform: uppercase;
	@include font-size(12/16);
	line-height: 18px;
	font-weight: 600;
	i {
		font-size: 14px;
		line-height: 18px;
		margin-left: 5px;
	}
}