@font-face {
    font-family: 'ElegantIcons';
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
    font-family: 'ElegantIcons';
    content: attr(data-icon);
    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-facebook, .icon-google-plus, .icon-google-plus-2, .icon-facebook-2, .icon-twitter {
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}
.icon-facebook:before {
    content: "\e066"; 
}
.icon-google-plus:before {
    content: "\e076";
}
.icon-google-plus-2:before {
    content: "\e0d2";
}
.icon-facebook-2:before {
    content: "\e093";
}
.icon-twitter:before {
    content: "\e004";
}
