/* Custom template */
@font-face {
	font-family: '<%= fontName %>';
	<% if (fontSrc1) { %> src: <%= fontSrc1 %>;<% }%>
	src: <%= fontSrc2 %>;
	font-weight: normal;
	font-style: normal;
}
.<%= cssPrefix %>:before,
.<%= cssPrefix %>-set {
 display: inline-block;
 font: normal normal normal <%= fontSizeBase %>/1 "AI Design Icons";
 font-size: inherit;
 text-rendering: auto;
 line-height: inherit;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 transform: translate(0, 0);
}
/* Icons */<% for (var glyphIdx = 0; glyphIdx < glyphs.length; glyphIdx++) { %>
.<%= cssPrefix %>-<%= glyphs[glyphIdx] %>:before { content:"\<%= codepoints[glyphIdx] %>"; }<% } %>



