/*
 * fontello.css – E.ON Custom Icon Font
 * 6 eigene Icons: runner, register, waves, results, location, camera
 * Gezeichnet für E.ON Firmenlauf Essen, DSGVO-konform (self-hosted)
 */

@font-face {
    font-family: 'fontello';
    src: url('../fonts/fontello/fontello.woff2') format('woff2'),
         url('../fonts/fontello/fontello.woff')  format('woff'),
         url('../fonts/fontello/fontello.ttf')   format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"]::before,
[class*=" icon-"]::before {
    font-family: 'fontello';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-runner::before   { content: '\e800'; }
.icon-register::before { content: '\e801'; }
.icon-waves::before    { content: '\e802'; }
.icon-results::before  { content: '\e803'; }
.icon-location::before { content: '\e804'; }
.icon-camera::before   { content: '\e805'; }
