﻿/**
    Contents:
  
    1) Defining fonts
    

*/



/* Fonts */
/* License: 
    The MIT License (MIT)

Copyright (c) 2012-2014 Sergey Pimenov
https://github.com/olton/Metro-UI-CSS#license
*/

@font-face {
    font-family: 'iconFont';
    src: url('../fonts/iconFont.eot');
    src: url('../fonts/iconFont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/iconFont.woff') format('x-woff'),
         url('../fonts/iconFont.ttf') format('truetype'),
         url('../fonts/iconFont.svg#iconfont') format('svg');

    font-weight: normal;
    font-style: normal;
}

[data-icon]:before {
    font-family: 'iconFont' !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^='icon-']:before, [class*=' icon-']:before {
    font-family: 'iconFont' !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}