// =============================================================================
// :: Placeholder
// =============================================================================
@mixin bp-placeholder() {

	&::-moz-placeholder {
		@content;
		text-overflow: ellipsis;
	}

	&::-webkit-input-placeholder {
		@content;
		text-overflow: ellipsis;
	}

	&:-moz-placeholder {
		@content;
		text-overflow: ellipsis;
	}

	&:-ms-input-placeholder {
		@content;
		text-overflow: ellipsis;
	}
}
