/*
Overload some styles for RTL (see smartcountdown.css for common styles)
*/
/* Make sure that digits are not messed up in numbers */
.scd-digits {
	direction: ltr;
}
/* "Titles inline" layout fix */
.scd-title-row {
	float: right;
}
.scd-counter-row {
	float: right;
}
/* Time units order fix */
.scd-unit-horz {
	float: right;
}
/* Labels position fix */
.scd-digits-row {
	float: right;           /* digits are always LTR, so we always right-adjust them */
}
.scd-label-row {
	float: right;
	/*text-align: left;*/   /* table-like view */
	text-align: right;      /* more natural view */
}