/* Minimal self-hosted Font Awesome 4.5 subset.
 *
 * Replaces the render-blocking maxcdn.bootstrapcdn.com stylesheet, which was
 * measured costing ~3s of first paint. The full library defines 600+ icons;
 * the site uses exactly four. If a new fa-* icon is ever added to a view, add
 * its glyph rule here (codes: https://fontawesome.com/v4/cheatsheet/).
 */
@font-face {
	font-family: 'FontAwesome';
	src: url('../fonts/fontawesome-webfont.woff2') format('woff2'),
	     url('../fonts/fontawesome-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

.fa {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.fa-globe:before    { content: "\f0ac"; }
.fa-whatsapp:before { content: "\f232"; }
.fa-car:before      { content: "\f1b9"; }
.fa-sun-o:before    { content: "\f185"; }

/* The theme's icon-facebook / icon-instagram classes were the ONLY users of
 * the 313KB fontello font, so that font is no longer loaded (see
 * all_icons.min.css) and the two glyphs are served from this subset instead. */
.icon-facebook:before,
.icon-instagram:before {
	font-family: 'FontAwesome' !important;
	font-style: normal;
	font-weight: normal;
}
.icon-facebook:before  { content: "\f09a"; }
.icon-instagram:before { content: "\f16d"; }
