/* Protect e-mail address with CSS only */
.e-mail:before {
	content: attr(data-website) "\0040" attr(data-user);
	unicode-bidi: bidi-override;
	direction: rtl;
}

/* Protect phone numbers with CSS only */
.phone-no:before {
	content: attr(data-user);
	unicode-bidi: bidi-override;
	direction: rtl;
}

