@mixin helper-font-size($from, $to) {
	@for $i from $from through $to {
		.f-s-#{$i} {
			font-size: rem($i * 1px) !important;
		}
	}
}