mixin input-focus
	:focus
		border 1px solid input-focus-border-color !important
		// TODO: Replace with alpha(main-color, 20%) function
		box-shadow 0 0 6px rgba(248, 165, 130, 0.2) !important

mixin button-hover
	:hover,
	&.active
		cursor pointer
		color button-hover-color
		background button-hover-background

	:active
		transform translateY(3px)