sajjad 3 years ago
parent fa7791be24
commit b1634274e5

@ -7,36 +7,37 @@
backText="products"
link="products"
icon="WMi-left-open"
title="add a product"
:title="`${productId ? 'edit' : 'add'} a product`"
subTitle="what we perpared for people"
/>
</div>
<v-row class="mt-4">
<v-col cols="3">
<div class="pb-14 h-100">
<div class="add__workout dark w-100 h-100">
<ImageCropper
label="manager image"
:url.sync="form.thumbnail"
v-model="fileForm.media"
/>
<v-form lazy-validation ref="form" @submit.prevent="submit">
<v-row class="mt-4">
<v-col cols="3">
<div class="pb-14 h-100">
<div class="add__workout dark w-100 h-100">
<ImageCropper
label="manager image"
:url.sync="form.thumbnail"
v-model="fileForm.media"
/>
</div>
</div>
</div>
</v-col>
<v-col cols="9">
<v-row>
<v-col cols="4">
<v-autocomplete
dark
item-text="name"
item-value="id"
label="product category"
:items="getProductCategories"
v-model="form.product_categories_id"
></v-autocomplete>
</v-col>
<v-col cols="4">
<!-- <template>
</v-col>
<v-col cols="9">
<v-row>
<v-col cols="4">
<v-autocomplete
dark
item-text="name"
item-value="id"
label="product category"
:items="getProductCategories"
v-model="form.product_categories_id"
></v-autocomplete>
</v-col>
<v-col cols="4">
<!-- <template>
<v-treeview
activatable
dark
@ -50,169 +51,172 @@
v-model="form.product_category_id"
/>
</template> -->
<v-autocomplete
dark
item-text="name"
item-value="id"
label="workout subcategory"
:items="child"
v-model="form.product_category_id"
></v-autocomplete>
</v-col>
<v-col cols="4"></v-col>
</v-row>
<v-row>
<v-col cols="4"
><v-text-field
placeholder="product name"
label="product name"
class="no-error-msg pt-0 mt-0"
dark
v-model="form.name"
></v-text-field>
</v-col>
<v-col cols="8"
><v-text-field
placeholder="a short quote"
label="a short quote"
class="no-error-msg pt-0 mt-0"
dark
v-model="form.title"
></v-text-field
></v-col>
</v-row>
<v-row>
<v-col cols="12">
<v-textarea
rows="3"
label="description"
placeholder="description"
dark
v-model="form.description"
></v-textarea>
</v-col>
</v-row>
</v-col>
</v-row>
<v-divider dark></v-divider>
<v-row>
<v-col cols="12">
<v-row>
<v-col cols="2"
><v-text-field
placeholder="price"
label="price"
class="pt-0 mt-0"
prefix="$"
dark
:rules="[rules.price]"
v-model="form.price"
></v-text-field
></v-col>
<v-col cols="2"
><v-text-field
placeholder="package weight"
label="package weight"
class="pt-0 mt-0"
suffix="kg"
dark
:rules="[rules.weight]"
v-model="form.weight"
></v-text-field
></v-col>
<v-col cols="2"
><v-text-field
placeholder="package dimensions"
label="package dimensions"
class="no-error-msg pt-0 mt-0"
suffix="cm"
dark
v-model="form.dimensions"
></v-text-field
></v-col>
<v-col cols="6"
><v-text-field
placeholder="vintroduction video link"
label="vintroduction video link"
class="no-error-msg pt-0 mt-0"
dark
v-model="form.video_link"
></v-text-field
></v-col>
</v-row>
<v-row>
<v-col cols="12">
<v-text-field
placeholder="shopping link - amazon mainly"
label="shopping link - amazon mainly"
dark
v-model="form.purchase_link"
></v-text-field>
</v-col>
</v-row>
<v-row>
<v-col cols="12">
<v-combobox
v-model="form.tags"
clearable
:append-icon="null"
hide-selected
class="multiple"
label="product tags - useful for better search"
placeholder="product tags - useful for better search"
multiple
persistent-hint
small-chips
dark
>
<template #selection="{ item }">
<Chip
label
color="white"
text-color="black"
sm
@close="removeTags(item)"
:text="item"
close
/>
</template>
</v-combobox>
</v-col>
</v-row>
<v-row class="mb-4">
<v-col cols="12">
<div class="upload">
<div class="add__product dark w-100 h-100">
<div class="add__workout__picture d-flex align-center">
<i class="WMi-picture add__workout__picture--icon"></i>
<div class="add__workout__picture--text">
please upload or drag & Drop <br />
product images here
<v-autocomplete
dark
item-text="name"
item-value="id"
label="workout subcategory"
:items="child"
v-model="form.product_category_id"
></v-autocomplete>
</v-col>
<v-col cols="4"></v-col>
</v-row>
<v-row>
<v-col cols="4"
><v-text-field
placeholder="product name"
label="product name"
class="no-error-msg pt-0 mt-0"
dark
v-model="form.name"
></v-text-field>
</v-col>
<v-col cols="8"
><v-text-field
placeholder="a short quote"
label="a short quote"
class="no-error-msg pt-0 mt-0"
dark
v-model="form.title"
></v-text-field
></v-col>
</v-row>
<v-row>
<v-col cols="12">
<v-textarea
rows="3"
label="description"
placeholder="description"
dark
v-model="form.description"
></v-textarea>
</v-col>
</v-row>
</v-col>
</v-row>
<v-divider dark></v-divider>
<v-row>
<v-col cols="12">
<v-row>
<v-col cols="2"
><v-text-field
placeholder="price"
label="price"
class="pt-0 mt-0"
prefix="$"
dark
:rules="[rules.price]"
v-model="form.price"
></v-text-field
></v-col>
<v-col cols="2"
><v-text-field
placeholder="package weight"
label="package weight"
class="pt-0 mt-0"
suffix="kg"
dark
:rules="[rules.weight]"
v-model="form.weight"
></v-text-field
></v-col>
<v-col cols="2"
><v-text-field
placeholder="package dimensions"
label="package dimensions"
class="no-error-msg pt-0 mt-0"
suffix="cm"
dark
v-model="form.dimensions"
></v-text-field
></v-col>
<v-col cols="6"
><v-text-field
placeholder="vintroduction video link"
label="vintroduction video link"
class="no-error-msg pt-0 mt-0"
dark
v-model="form.video_link"
></v-text-field
></v-col>
</v-row>
<v-row>
<v-col cols="12">
<v-text-field
placeholder="shopping link - amazon mainly"
label="shopping link - amazon mainly"
dark
v-model="form.purchase_link"
></v-text-field>
</v-col>
</v-row>
<v-row>
<v-col cols="12">
<v-combobox
v-model="form.tags"
clearable
:append-icon="null"
hide-selected
class="multiple"
label="product tags - useful for better search"
placeholder="product tags - useful for better search"
multiple
persistent-hint
small-chips
dark
>
<template #selection="{ item }">
<Chip
label
color="white"
text-color="black"
sm
@close="removeTags(item)"
:text="item"
close
/>
</template>
</v-combobox>
</v-col>
</v-row>
<v-row class="mb-4">
<v-col cols="12">
<div class="upload">
<div class="add__product dark w-100 h-100">
<div class="add__workout__picture d-flex align-center">
<i class="WMi-picture add__workout__picture--icon"></i>
<div class="add__workout__picture--text">
please upload or drag & Drop <br />
product images here
</div>
</div>
</div>
</div>
</div>
</v-col>
</v-row>
</v-col>
</v-row>
<div class="mt-2">
<v-divider dark class="mb-2"></v-divider>
<div class="d-flex justify-space-between">
<RectangleButton
text="IVE CHANGED MY MIND"
icon="WMi-cancel"
class="px-0"
height="19"
/>
<RectangleButton
text="add the product"
class="custom-btn add-btn"
height="25"
@click.native="submit"
/>
</v-col>
</v-row>
</v-col>
</v-row>
<div class="mt-2">
<v-divider dark class="mb-2"></v-divider>
<div class="d-flex justify-space-between">
<router-link :to="{ name: 'products' }">
<RectangleButton
text="IVE CHANGED MY MIND"
icon="WMi-cancel"
class="px-0"
height="19"
/>
</router-link>
<RectangleButton
:text="`${productId ? 'update this' : 'add the'} product`"
class="custom-btn add-btn"
height="25"
type="submit"
/>
</div>
</div>
</div>
</v-form>
</div>
</main-back>
</div>
@ -253,7 +257,7 @@ export default {
computed: {
...mapGetters("productCategories", ["getProductCategories"]),
...mapGetters("products", ["getProduct"]),
ProductId() {
productId() {
return this.$route.params.id;
},
child() {
@ -271,21 +275,25 @@ export default {
...mapActions("products", ["addProduct", "updateProduct", "loadProduct"]),
async submit() {
try {
if (this.fileForm.media !== this.fileForm.media) {
let repository = new FileRepository();
await repository.store(this.fileForm);
}
if (this.ProductId) {
this.updateProduct(this.form);
} else {
this.addProduct(this.form);
let valid = this.$refs.form.validate();
console.log(valid);
if (valid) {
if (this.fileForm.media !== this.fileForm.media) {
let repository = new FileRepository();
await repository.store(this.fileForm);
}
if (this.productId) {
this.updateProduct(this.form);
} else {
this.addProduct(this.form);
}
}
} catch (e) {
return e;
}
},
async load() {
await this.loadProduct(this.ProductId);
await this.loadProduct(this.productId);
this.form = this.getProduct;
// this.changeProductCategories();
},
@ -296,7 +304,7 @@ export default {
},
async created() {
await this.loadProductCategories();
if (this.ProductId) {
if (this.productId) {
this.load();
}
},

@ -29,7 +29,7 @@
<div class="mr-5 section">
<box text="trainers" link="users" icon=" WMi-account-off" />
</div>
<div class="mr-5 section">
<div class="mr-5 section">
<box text="trainees" link="users" icon="WMi-users" />
</div>
</div>
@ -50,13 +50,13 @@
><Notification text="total trainees" quantity="112"
/></v-col>
<v-col cols="12" sm="3"
><Notification text="total trainees" quantity="15"
><Notification text="total trainers" quantity="15"
/></v-col>
<v-col cols="12" sm="3"
><Notification text="total trainees" quantity="147"
><Notification text="total programs" quantity="147"
/></v-col>
<v-col cols="12" sm="3"
><Notification text="total trainees" quantity="1140"
><Notification text="moves defined" quantity="1140"
/></v-col>
</v-row>
</div>

@ -6,6 +6,7 @@
x-small
:width="width"
:class="`color-${color} ${bgColor}`"
:type="type"
>
<template v-if="text">
<template v-if="icon"
@ -45,6 +46,10 @@ export default {
isModal: {
default: false,
},
type: {
type: String,
default: "button",
},
},
};
</script>

@ -1,120 +0,0 @@
Font license info
## Elusive
Copyright (C) 2013 by Aristeides Stathopoulos
Author: Aristeides Stathopoulos
License: SIL (http://scripts.sil.org/OFL)
Homepage: http://aristeides.com/
## Font Awesome
Copyright (C) 2016 by Dave Gandy
Author: Dave Gandy
License: SIL ()
Homepage: http://fortawesome.github.com/Font-Awesome/
## Typicons
(c) Stephen Hutchings 2012
Author: Stephen Hutchings
License: SIL (http://scripts.sil.org/OFL)
Homepage: http://typicons.com/
## Web Symbols
Copyright (c) 2011 by Just Be Nice studio. All rights reserved.
Author: Just Be Nice studio
License: SIL (http://scripts.sil.org/OFL)
Homepage: http://www.justbenicestudio.com/
## Entypo
Copyright (C) 2012 by Daniel Bruce
Author: Daniel Bruce
License: SIL (http://scripts.sil.org/OFL)
Homepage: http://www.entypo.com
## Iconic
Copyright (C) 2012 by P.J. Onori
Author: P.J. Onori
License: SIL (http://scripts.sil.org/OFL)
Homepage: http://somerandomdude.com/work/iconic/
## Fontelico
Copyright (C) 2012 by Fontello project
Author: Crowdsourced, for Fontello project
License: SIL (http://scripts.sil.org/OFL)
Homepage: http://fontello.com
## Zocial
Copyright (C) 2012 by Sam Collins
Author: Sam Collins
License: MIT (http://opensource.org/licenses/mit-license.php)
Homepage: http://zocial.smcllns.com/
## Maki
Copyright (C) Mapbox, LCC
Author: Mapbox
License: BSD (https://github.com/mapbox/maki/blob/gh-pages/LICENSE.txt)
Homepage: http://mapbox.com/maki/
## Linecons
Copyright (C) 2013 by Designmodo
Author: Designmodo for Smashing Magazine
License: CC BY ()
Homepage: http://designmodo.com/linecons-free/
## Modern Pictograms
Copyright (c) 2012 by John Caserta. All rights reserved.
Author: John Caserta
License: SIL (http://scripts.sil.org/OFL)
Homepage: http://thedesignoffice.org/project/modern-pictograms/
## MFG Labs
Copyright (C) 2012 by Daniel Bruce
Author: MFG Labs
License: SIL (http://scripts.sil.org/OFL)
Homepage: http://www.mfglabs.com/
## Brandico
(C) 2012 by Vitaly Puzrin
Author: Crowdsourced, for Fontello project
License: SIL (http://scripts.sil.org/OFL)
Homepage:

@ -1,75 +0,0 @@
This webfont is generated by https://fontello.com open source project.
================================================================================
Please, note, that you should obey original font licenses, used to make this
webfont pack. Details available in LICENSE.txt file.
- Usually, it's enough to publish content of LICENSE.txt file somewhere on your
site in "About" section.
- If your project is open-source, usually, it will be ok to make LICENSE.txt
file publicly available in your repository.
- Fonts, used in Fontello, don't require a clickable link on your site.
But any kind of additional authors crediting is welcome.
================================================================================
Comments on archive content
---------------------------
- /font/* - fonts in different formats
- /css/* - different kinds of css, for all situations. Should be ok with
twitter bootstrap. Also, you can skip <i> style and assign icon classes
directly to text elements, if you don't mind about IE7.
- demo.html - demo file, to show your webfont content
- LICENSE.txt - license info about source fonts, used to build your one.
- config.json - keeps your settings. You can import it back into fontello
anytime, to continue your work
Why so many CSS files ?
-----------------------
Because we like to fit all your needs :)
- basic file, <your_font_name>.css - is usually enough, it contains @font-face
and character code definitions
- *-ie7.css - if you need IE7 support, but still don't wish to put char codes
directly into html
- *-codes.css and *-ie7-codes.css - if you like to use your own @font-face
rules, but still wish to benefit from css generation. That can be very
convenient for automated asset build systems. When you need to update font -
no need to manually edit files, just override old version with archive
content. See fontello source code for examples.
- *-embedded.css - basic css file, but with embedded WOFF font, to avoid
CORS issues in Firefox and IE9+, when fonts are hosted on the separate domain.
We strongly recommend to resolve this issue by `Access-Control-Allow-Origin`
server headers. But if you ok with dirty hack - this file is for you. Note,
that data url moved to separate @font-face to avoid problems with <IE9, when
string is too long.
- animate.css - use it to get ideas about spinner rotation animation.
Attention for server setup
--------------------------
You MUST setup server to reply with proper `mime-types` for font files -
otherwise some browsers will fail to show fonts.
Usually, `apache` already has necessary settings, but `nginx` and other
webservers should be tuned. Here is list of mime types for our file extensions:
- `application/vnd.ms-fontobject` - eot
- `application/x-font-woff` - woff
- `application/x-font-ttf` - ttf
- `image/svg+xml` - svg

File diff suppressed because it is too large Load Diff

@ -1,85 +0,0 @@
/*
Animation example, for spinners
*/
.animate-spin {
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
display: inline-block;
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-webkit-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-o-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-ms-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}

@ -1,565 +0,0 @@
.WMi-th-large-1:before { content: '\77'; } /* 'w' */
.WMi-fast-fw:before { content: '\e763'; } /* '' */
.WMi-ok:before { content: '\e800'; } /* '' */
.WMi-mail:before { content: '\e801'; } /* '' */
.WMi-search:before { content: '\e802'; } /* '' */
.WMi-lock:before { content: '\e803'; } /* '' */
.WMi-star-half:before { content: '\e804'; } /* '' */
.WMi-attach-1:before { content: '\e805'; } /* '' */
.WMi-star:before { content: '\e806'; } /* '' */
.WMi-bookmark:before { content: '\e807'; } /* '' */
.WMi-heart:before { content: '\e808'; } /* '' */
.WMi-download:before { content: '\e809'; } /* '' */
.WMi-cancel:before { content: '\e80a'; } /* '' */
.WMi-trash-empty:before { content: '\e80b'; } /* '' */
.WMi-lock-open:before { content: '\e80c'; } /* '' */
.WMi-resize-vertical:before { content: '\e80d'; } /* '' */
.WMi-link:before { content: '\e80e'; } /* '' */
.WMi-left-open:before { content: '\e80f'; } /* '' */
.WMi-upload:before { content: '\e810'; } /* '' */
.WMi-up-open:before { content: '\e811'; } /* '' */
.WMi-tag-1:before { content: '\e812'; } /* '' */
.WMi-indent-right:before { content: '\e813'; } /* '' */
.WMi-cog:before { content: '\e814'; } /* '' */
.WMi-star-empty:before { content: '\e815'; } /* '' */
.WMi-truck:before { content: '\e816'; } /* '' */
.WMi-down-open:before { content: '\e817'; } /* '' */
.WMi-picture:before { content: '\e818'; } /* '' */
.WMi-right-open:before { content: '\e819'; } /* '' */
.WMi-music:before { content: '\e81a'; } /* '' */
.WMi-heart-empty:before { content: '\e81b'; } /* '' */
.WMi-temperatire:before { content: '\e81c'; } /* '' */
.WMi-comment:before { content: '\e81d'; } /* '' */
.WMi-indent-left:before { content: '\e81e'; } /* '' */
.WMi-briefcase:before { content: '\e81f'; } /* '' */
.WMi-cloud:before { content: '\e820'; } /* '' */
.WMi-globe:before { content: '\e821'; } /* '' */
.WMi-check:before { content: '\e822'; } /* '' */
.WMi-arrows-cw:before { content: '\e823'; } /* '' */
.WMi-check-1:before { content: '\e824'; } /* '' */
.WMi-attach:before { content: '\e825'; } /* '' */
.WMi-zoom-out:before { content: '\e826'; } /* '' */
.WMi-zoom-in:before { content: '\e827'; } /* '' */
.WMi-signal:before { content: '\e828'; } /* '' */
.WMi-layers:before { content: '\e829'; } /* '' */
.WMi-comment-1:before { content: '\e82a'; } /* '' */
.WMi-cancel-1:before { content: '\e82b'; } /* '' */
.WMi-emo-wink:before { content: '\e82c'; } /* '' */
.WMi-emo-happy:before { content: '\e82d'; } /* '' */
.WMi-macstore:before { content: '\e82e'; } /* '' */
.WMi-equalizer:before { content: '\e82f'; } /* '' */
.WMi-emo-coffee:before { content: '\e830'; } /* '' */
.WMi-emo-sleep:before { content: '\e831'; } /* '' */
.WMi-emo-unhappy:before { content: '\e832'; } /* '' */
.WMi-emo-wink2:before { content: '\e833'; } /* '' */
.WMi-emo-laugh:before { content: '\e834'; } /* '' */
.WMi-emo-squint:before { content: '\e835'; } /* '' */
.WMi-emo-angry:before { content: '\e836'; } /* '' */
.WMi-emo-sunglasses:before { content: '\e837'; } /* '' */
.WMi-off:before { content: '\e838'; } /* '' */
.WMi-asterisk:before { content: '\e839'; } /* '' */
.WMi-user-tag:before { content: '\e83a'; } /* '' */
.WMi-emo-displeased:before { content: '\e83b'; } /* '' */
.WMi-gift:before { content: '\e83c'; } /* '' */
.WMi-shop:before { content: '\e83d'; } /* '' */
.WMi-th:before { content: '\e83e'; } /* '' */
.WMi-basket-2:before { content: '\e83f'; } /* '' */
.WMi-shop-1:before { content: '\e840'; } /* '' */
.WMi-minus:before { content: '\e841'; } /* '' */
.WMi-rss-1:before { content: '\e842'; } /* '' */
.WMi-basket-1:before { content: '\e843'; } /* '' */
.WMi-chat:before { content: '\e844'; } /* '' */
.WMi-home:before { content: '\e845'; } /* '' */
.WMi-tags-1:before { content: '\e846'; } /* '' */
.WMi-plus:before { content: '\e847'; } /* '' */
.WMi-retweet:before { content: '\e848'; } /* '' */
.WMi-map-1:before { content: '\e849'; } /* '' */
.WMi-logout-1:before { content: '\e84a'; } /* '' */
.WMi-edit:before { content: '\e84b'; } /* '' */
.WMi-doc-landscape:before { content: '\e84c'; } /* '' */
.WMi-back-in-time:before { content: '\e84d'; } /* '' */
.WMi-gift-1:before { content: '\e84e'; } /* '' */
.WMi-logout:before { content: '\e84f'; } /* '' */
.WMi-chat-alt-1:before { content: '\e850'; } /* '' */
.WMi-switch:before { content: '\e851'; } /* '' */
.WMi-bank:before { content: '\e852'; } /* '' */
.WMi-location:before { content: '\e853'; } /* '' */
.WMi-art-gallery:before { content: '\e854'; } /* '' */
.WMi-level-down:before { content: '\e855'; } /* '' */
.WMi-phone:before { content: '\e856'; } /* '' */
.WMi-shuffle-1:before { content: '\e857'; } /* '' */
.WMi-help:before { content: '\e858'; } /* '' */
.WMi-phone-1:before { content: '\e859'; } /* '' */
.WMi-loop:before { content: '\e85a'; } /* '' */
.WMi-agriculture:before { content: '\e85b'; } /* '' */
.WMi-share:before { content: '\e85c'; } /* '' */
.WMi-warning-empty:before { content: '\e85d'; } /* '' */
.WMi-plus-alt:before { content: '\e85e'; } /* '' */
.WMi-credit-card:before { content: '\e85f'; } /* '' */
.WMi-shuffle:before { content: '\e860'; } /* '' */
.WMi-Clothes:before { content: '\e861'; } /* '' */
.WMi-sport-cup:before { content: '\e862'; } /* '' */
.WMi-wrench-1:before { content: '\e863'; } /* '' */
.WMi-marquee:before { content: '\e864'; } /* '' */
.WMi-emo-surprised:before { content: '\e865'; } /* '' */
.WMi-glyph-11:before { content: '\e866'; } /* '' */
.WMi-air-plane:before { content: '\e867'; } /* '' */
.WMi-glyph-48:before { content: '\e868'; } /* '' */
.WMi-wrench:before { content: '\e869'; } /* '' */
.WMi-Official:before { content: '\e86a'; } /* '' */
.WMi-advertising-1:before { content: '\e86b'; } /* '' */
.WMi-camera:before { content: '\e86c'; } /* '' */
.WMi-map-4:before { content: '\e86d'; } /* '' */
.WMi-pencil:before { content: '\e86e'; } /* '' */
.WMi-graduation-cap:before { content: '\e86f'; } /* '' */
.WMi-advertisement:before { content: '\e870'; } /* '' */
.WMi-filter:before { content: '\e871'; } /* '' */
.WMi-clock:before { content: '\e872'; } /* '' */
.WMi-glyph-25:before { content: '\e873'; } /* '' */
.WMi-user:before { content: '\e874'; } /* '' */
.WMi-users:before { content: '\e875'; } /* '' */
.WMi-crown-4:before { content: '\e876'; } /* '' */
.WMi-login:before { content: '\e877'; } /* '' */
.WMi-brush:before { content: '\e878'; } /* '' */
.WMi-map-o:before { content: '\e879'; } /* '' */
.WMi-flower:before { content: '\e87a'; } /* '' */
.WMi-camera-1:before { content: '\e87b'; } /* '' */
.WMi-calendar-1:before { content: '\e87c'; } /* '' */
.WMi-calendar-2:before { content: '\e87d'; } /* '' */
.WMi-doc-text-inv-1:before { content: '\e87e'; } /* '' */
.WMi-flight:before { content: '\e87f'; } /* '' */
.WMi-videocam:before { content: '\e880'; } /* '' */
.WMi-video:before { content: '\e881'; } /* '' */
.WMi-shop-3:before { content: '\e882'; } /* '' */
.WMi-glyph-30:before { content: '\e883'; } /* '' */
.WMi-glyph-27:before { content: '\e884'; } /* '' */
.WMi-glyph-26:before { content: '\e885'; } /* '' */
.WMi-glyph-29:before { content: '\e886'; } /* '' */
.WMi-glyph-32:before { content: '\e887'; } /* '' */
.WMi-glyph-31:before { content: '\e888'; } /* '' */
.WMi-glyph-36:before { content: '\e889'; } /* '' */
.WMi-glyph-33:before { content: '\e88a'; } /* '' */
.WMi-glyph-34:before { content: '\e88b'; } /* '' */
.WMi-glyph-38:before { content: '\e88c'; } /* '' */
.WMi-glyph-35:before { content: '\e88d'; } /* '' */
.WMi-glyph-40:before { content: '\e88e'; } /* '' */
.WMi-glyph-37:before { content: '\e88f'; } /* '' */
.WMi-glyph-42:before { content: '\e890'; } /* '' */
.WMi-glyph-39:before { content: '\e891'; } /* '' */
.WMi-glyph-44:before { content: '\e892'; } /* '' */
.WMi-glyph-41:before { content: '\e893'; } /* '' */
.WMi-glyph-43:before { content: '\e895'; } /* '' */
.WMi-gas-station:before { content: '\e896'; } /* '' */
.WMi-glyph-45:before { content: '\e897'; } /* '' */
.WMi-instagram-2:before { content: '\e898'; } /* '' */
.WMi-business-affiliate-network-2:before { content: '\e899'; } /* '' */
.WMi-globe-2:before { content: '\e89a'; } /* '' */
.WMi-bell:before { content: '\e89b'; } /* '' */
.WMi-code-1:before { content: '\e89c'; } /* '' */
.WMi-emo-tongue:before { content: '\e89d'; } /* '' */
.WMi-photography-2:before { content: '\e89e'; } /* '' */
.WMi-bank-1:before { content: '\e89f'; } /* '' */
.WMi-off-1:before { content: '\e8a0'; } /* '' */
.WMi-aparat:before { content: '\e8a1'; } /* '' */
.WMi-eye:before { content: '\e8a2'; } /* '' */
.WMi-youtube-play:before { content: '\e8a3'; } /* '' */
.WMi-info-2:before { content: '\e8a4'; } /* '' */
.WMi-cloud-1:before { content: '\e8a5'; } /* '' */
.WMi-skype:before { content: '\e8a6'; } /* '' */
.WMi-eye-off:before { content: '\e8a7'; } /* '' */
.WMi-percent:before { content: '\e8a8'; } /* '' */
.WMi-info-circled-alt:before { content: '\e8a9'; } /* '' */
.WMi-align-justify-1:before { content: '\e8aa'; } /* '' */
.WMi-to-end-alt:before { content: '\e8ab'; } /* '' */
.WMi-to-end:before { content: '\e8ac'; } /* '' */
.WMi-to-start:before { content: '\e8ad'; } /* '' */
.WMi-hourglass-1:before { content: '\e8ae'; } /* '' */
.WMi-users-cog:before { content: '\e8af'; } /* '' */
.WMi-to-start-alt:before { content: '\e8b0'; } /* '' */
.WMi-play:before { content: '\e8b1'; } /* '' */
.WMi-stop:before { content: '\e8b2'; } /* '' */
.WMi-align-center:before { content: '\e8b3'; } /* '' */
.WMi-doc-text:before { content: '\e8b5'; } /* '' */
.WMi-eject:before { content: '\e8b6'; } /* '' */
.WMi-crown:before { content: '\e8b7'; } /* '' */
.WMi-braille:before { content: '\e8b8'; } /* '' */
.WMi-user-md:before { content: '\e8b9'; } /* '' */
.WMi-fast-bw:before { content: '\e8ba'; } /* '' */
.WMi-align-left:before { content: '\e8bb'; } /* '' */
.WMi-user-nurse:before { content: '\e8bc'; } /* '' */
.WMi-pause:before { content: '\e8bd'; } /* '' */
.WMi-clock-1:before { content: '\e8be'; } /* '' */
.WMi-en-letters:before { content: '\e8bf'; } /* '' */
.WMi-user-graduate:before { content: '\e8c0'; } /* '' */
.WMi-sitemap:before { content: '\e8c1'; } /* '' */
.WMi-comment-processing-2:before { content: '\e8c2'; } /* '' */
.WMi-emo-saint:before { content: '\e8c3'; } /* '' */
.WMi-back:before { content: '\e8c4'; } /* '' */
.WMi-person:before { content: '\e8c5'; } /* '' */
.WMi-plus-outlined:before { content: '\e8c6'; } /* '' */
.WMi-comments:before { content: '\e8c7'; } /* '' */
.WMi-trash-alt:before { content: '\e8c8'; } /* '' */
.WMi-user-cog:before { content: '\e8c9'; } /* '' */
.WMi-user-friends:before { content: '\e8ca'; } /* '' */
.WMi-user-clock:before { content: '\e8cb'; } /* '' */
.WMi-ar-letters:before { content: '\e8cc'; } /* '' */
.WMi-transgender:before { content: '\e8cd'; } /* '' */
.WMi-user-tie:before { content: '\e8ce'; } /* '' */
.WMi-headphones-2:before { content: '\e8cf'; } /* '' */
.WMi-infinity-1:before { content: '\e8d1'; } /* '' */
.WMi-youtube:before { content: '\e8d2'; } /* '' */
.WMi-quote-left-alt:before { content: '\e8d3'; } /* '' */
.WMi-fa-letters:before { content: '\e8d4'; } /* '' */
.WMi-number:before { content: '\e8d5'; } /* '' */
.WMi-apple-alt:before { content: '\e8d6'; } /* '' */
.WMi-th-1:before { content: '\e8d8'; } /* '' */
.WMi-gender-female:before { content: '\e8d9'; } /* '' */
.WMi-user-shield:before { content: '\e8da'; } /* '' */
.WMi-max:before { content: '\e8dc'; } /* '' */
.WMi-comments-alt:before { content: '\e8dd'; } /* '' */
.WMi-color-palette:before { content: '\e8de'; } /* '' */
.WMi-user-lock:before { content: '\e8df'; } /* '' */
.WMi-wordpress:before { content: '\e8e0'; } /* '' */
.WMi-restroom:before { content: '\e8e5'; } /* '' */
.WMi-user-minus:before { content: '\e8e6'; } /* '' */
.WMi-eq:before { content: '\e8e7'; } /* '' */
.WMi-gift-3:before { content: '\e8e8'; } /* '' */
.WMi-location-arrow:before { content: '\e8e9'; } /* '' */
.WMi-glyph-28:before { content: '\e8ea'; } /* '' */
.WMi-pinterest:before { content: '\e8eb'; } /* '' */
.WMi-user-slash:before { content: '\e8ec'; } /* '' */
.WMi-willa-engine:before { content: '\e8ed'; } /* '' */
.WMi-sort-numeric-up:before { content: '\e8ee'; } /* '' */
.WMi-fish:before { content: '\e8ef'; } /* '' */
.WMi-min:before { content: '\e8f0'; } /* '' */
.WMi-sort-numeric-down:before { content: '\e8f1'; } /* '' */
.WMi-gender-male-2:before { content: '\e8f2'; } /* '' */
.WMi-undo-1:before { content: '\e8f3'; } /* '' */
.WMi-linkedin-3:before { content: '\e8f4'; } /* '' */
.WMi-sort-alphabetical:before { content: '\e8f5'; } /* '' */
.WMi-telegram-2:before { content: '\e8f6'; } /* '' */
.WMi-temperature-fahrenheit-2:before { content: '\e8f7'; } /* '' */
.WMi-infinity:before { content: '\e8f8'; } /* '' */
.WMi-quote-right-alt:before { content: '\e8f9'; } /* '' */
.WMi-linkedin-1:before { content: '\e8fa'; } /* '' */
.WMi-users-3:before { content: '\e8fb'; } /* '' */
.WMi-python:before { content: '\e8fc'; } /* '' */
.WMi-backspace:before { content: '\e8fd'; } /* '' */
.WMi-sim-card:before { content: '\e8fe'; } /* '' */
.WMi-graphic:before { content: '\e8ff'; } /* '' */
.WMi-php:before { content: '\e900'; } /* '' */
.WMi-comment-alt:before { content: '\e901'; } /* '' */
.WMi-emo-grin:before { content: '\e902'; } /* '' */
.WMi-temperature-celsius-2:before { content: '\e905'; } /* '' */
.WMi-theme:before { content: '\e908'; } /* '' */
.WMi-greater-than-equal:before { content: '\e90c'; } /* '' */
.WMi-mouse:before { content: '\e90d'; } /* '' */
.WMi-pizza-slice:before { content: '\e90e'; } /* '' */
.WMi-sd-card:before { content: '\e917'; } /* '' */
.WMi-archive:before { content: '\e919'; } /* '' */
.WMi-landmark:before { content: '\e91a'; } /* '' */
.WMi-car-crash:before { content: '\e91b'; } /* '' */
.WMi-car-side:before { content: '\e91c'; } /* '' */
.WMi-map-marked:before { content: '\e91d'; } /* '' */
.WMi-truck-monster:before { content: '\e92e'; } /* '' */
.WMi-equals:before { content: '\e93e'; } /* '' */
.WMi-internet-explorer:before { content: '\e948'; } /* '' */
.WMi-basket:before { content: '\e94b'; } /* '' */
.WMi-navigation:before { content: '\e94c'; } /* '' */
.WMi-drafting-compass:before { content: '\e953'; } /* '' */
.WMi-signal-1:before { content: '\e959'; } /* '' */
.WMi-envelope-open-text:before { content: '\e95b'; } /* '' */
.WMi-barcode:before { content: '\e961'; } /* '' */
.WMi-sort-numeric:before { content: '\e962'; } /* '' */
.WMi-sort-alpha-up-alt:before { content: '\e963'; } /* '' */
.WMi-sort-alpha-down:before { content: '\e964'; } /* '' */
.WMi-calendar-alt:before { content: '\e965'; } /* '' */
.WMi-calendar:before { content: '\e966'; } /* '' */
.WMi-quote-right:before { content: '\e967'; } /* '' */
.WMi-quote-left:before { content: '\e968'; } /* '' */
.WMi-radiation:before { content: '\e969'; } /* '' */
.WMi-pepper-hot:before { content: '\e96a'; } /* '' */
.WMi-hamburger:before { content: '\e96b'; } /* '' */
.WMi-list:before { content: '\e96c'; } /* '' */
.WMi-comment-2:before { content: '\e96d'; } /* '' */
.WMi-list-ol:before { content: '\e96e'; } /* '' */
.WMi-th-list:before { content: '\e96f'; } /* '' */
.WMi-percentage:before { content: '\e970'; } /* '' */
.WMi-trash-alt-4:before { content: '\e971'; } /* '' */
.WMi-plane-arrival:before { content: '\e972'; } /* '' */
.WMi-factory:before { content: '\e973'; } /* '' */
.WMi-helicopter:before { content: '\e974'; } /* '' */
.WMi-warehouse:before { content: '\e975'; } /* '' */
.WMi-transgender-1:before { content: '\e976'; } /* '' */
.WMi-map-signs:before { content: '\e977'; } /* '' */
.WMi-wifi-1:before { content: '\e978'; } /* '' */
.WMi-ruler-horizontal:before { content: '\e97a'; } /* '' */
.WMi-scale:before { content: '\e97b'; } /* '' */
.WMi-cylinder:before { content: '\e97c'; } /* '' */
.WMi-biking:before { content: '\e97d'; } /* '' */
.WMi-wheelchair:before { content: '\e97e'; } /* '' */
.WMi-folder:before { content: '\e97f'; } /* '' */
.WMi-chart-bar:before { content: '\e980'; } /* '' */
.WMi-cogs:before { content: '\e981'; } /* '' */
.WMi-cheese:before { content: '\e982'; } /* '' */
.WMi-sort-amount-down-alt-2:before { content: '\e984'; } /* '' */
.WMi-sort-amount-up-alt:before { content: '\e985'; } /* '' */
.WMi-bike:before { content: '\e986'; } /* '' */
.WMi-fire-alt:before { content: '\e987'; } /* '' */
.WMi-carrot:before { content: '\e988'; } /* '' */
.WMi-horse-head:before { content: '\e989'; } /* '' */
.WMi-cylinder-1:before { content: '\e98a'; } /* '' */
.WMi-pos:before { content: '\e98b'; } /* '' */
.WMi-pos-terminal:before { content: '\e98c'; } /* '' */
.WMi-ladder:before { content: '\e98d'; } /* '' */
.WMi-ice-cream:before { content: '\e98e'; } /* '' */
.WMi-oil-can:before { content: '\e98f'; } /* '' */
.WMi-spider:before { content: '\e990'; } /* '' */
.WMi-skull-crossbones:before { content: '\e991'; } /* '' */
.WMi-plane-departure:before { content: '\e992'; } /* '' */
.WMi-library-books:before { content: '\e993'; } /* '' */
.WMi-glass-martini-alt:before { content: '\e994'; } /* '' */
.WMi-shopping:before { content: '\e995'; } /* '' */
.WMi-taxi:before { content: '\e996'; } /* '' */
.WMi-lock-open-1:before { content: '\e997'; } /* '' */
.WMi-bed:before { content: '\e998'; } /* '' */
.WMi-fingerprint:before { content: '\e999'; } /* '' */
.WMi-shield:before { content: '\e99a'; } /* '' */
.WMi-shuttle-van:before { content: '\e99b'; } /* '' */
.WMi-mug-hot:before { content: '\e99c'; } /* '' */
.WMi-mosque:before { content: '\e99e'; } /* '' */
.WMi-tooth:before { content: '\e99f'; } /* '' */
.WMi-broadcast-tower:before { content: '\e9a0'; } /* '' */
.WMi-table-tennis:before { content: '\e9a1'; } /* '' */
.WMi-star-of-david:before { content: '\e9a2'; } /* '' */
.WMi-snowflake-o:before { content: '\e9a3'; } /* '' */
.WMi-th-large:before { content: '\e9a4'; } /* '' */
.WMi-wrench-2:before { content: '\e9a5'; } /* '' */
.WMi-shopping-cart:before { content: '\e9a9'; } /* '' */
.WMi-cart:before { content: '\e9aa'; } /* '' */
.WMi-communications:before { content: '\e9ab'; } /* '' */
.WMi-home-heart:before { content: '\e9ac'; } /* '' */
.WMi-hdd-1:before { content: '\e9ae'; } /* '' */
.WMi-location-on-map:before { content: '\e9af'; } /* '' */
.WMi-donut:before { content: '\e9b0'; } /* '' */
.WMi-less-than-equal:before { content: '\e9b1'; } /* '' */
.WMi-not-equal:before { content: '\e9b2'; } /* '' */
.WMi-cloud-download-alt:before { content: '\e9b3'; } /* '' */
.WMi-equal-alt:before { content: '\e9b4'; } /* '' */
.WMi-align-justify:before { content: '\e9b5'; } /* '' */
.WMi-tag:before { content: '\e9b7'; } /* '' */
.WMi-cash:before { content: '\e9b8'; } /* '' */
.WMi-electronic:before { content: '\e9b9'; } /* '' */
.WMi-list-2:before { content: '\e9bc'; } /* '' */
.WMi-signature:before { content: '\e9be'; } /* '' */
.WMi-animation:before { content: '\e9bf'; } /* '' */
.WMi-account-multiple-plus-1:before { content: '\e9c0'; } /* '' */
.WMi-account-key:before { content: '\e9c1'; } /* '' */
.WMi-shop-bag-2:before { content: '\e9c8'; } /* '' */
.WMi-open:before { content: '\e9cd'; } /* '' */
.WMi-alarm-plus:before { content: '\e9db'; } /* '' */
.WMi-account-multiple-minus-1:before { content: '\e9df'; } /* '' */
.WMi-icons:before { content: '\e9e3'; } /* '' */
.WMi-pause-1:before { content: '\f00e'; } /* '' */
.WMi-play-1:before { content: '\f00f'; } /* '' */
.WMi-to-end-1:before { content: '\f010'; } /* '' */
.WMi-to-start-1:before { content: '\f011'; } /* '' */
.WMi-account-off:before { content: '\f012'; } /* '' */
.WMi-account-plus:before { content: '\f014'; } /* '' */
.WMi-account-remove:before { content: '\f015'; } /* '' */
.WMi-account-switch:before { content: '\f019'; } /* '' */
.WMi-hash:before { content: '\f029'; } /* '' */
.WMi-alert-outline:before { content: '\f02a'; } /* '' */
.WMi-book:before { content: '\f02d'; } /* '' */
.WMi-food:before { content: '\f02f'; } /* '' */
.WMi-mobile-phone:before { content: '\f034'; } /* '' */
.WMi-apple:before { content: '\f035'; } /* '' */
.WMi-brightness:before { content: '\f037'; } /* '' */
.WMi-weight-kilogram:before { content: '\f05c'; } /* '' */
.WMi-stop-1:before { content: '\f080'; } /* '' */
.WMi-link-ext:before { content: '\f08e'; } /* '' */
.WMi-check-empty:before { content: '\f096'; } /* '' */
.WMi-bookmark-empty:before { content: '\f097'; } /* '' */
.WMi-twitter-1:before { content: '\f099'; } /* '' */
.WMi-rss:before { content: '\f09e'; } /* '' */
.WMi-hdd:before { content: '\f0a0'; } /* '' */
.WMi-resize-full-alt:before { content: '\f0b2'; } /* '' */
.WMi-beaker:before { content: '\f0c3'; } /* '' */
.WMi-menu:before { content: '\f0c9'; } /* '' */
.WMi-magic:before { content: '\f0d0'; } /* '' */
.WMi-gplus:before { content: '\f0d5'; } /* '' */
.WMi-WM-logo:before { content: '\f0da'; } /* '' */
.WMi-sort:before { content: '\f0dc'; } /* '' */
.WMi-chronometer-2:before { content: '\f0dd'; } /* '' */
.WMi-clothes:before { content: '\f0de'; } /* '' */
.WMi-mail-alt:before { content: '\f0e0'; } /* '' */
.WMi-cleaning:before { content: '\f0e2'; } /* '' */
.WMi-cargo-ship:before { content: '\f0e3'; } /* '' */
.WMi-wa-fit-2:before { content: '\f0e7'; } /* '' */
.WMi-exchange:before { content: '\f0ec'; } /* '' */
.WMi-doctor:before { content: '\f0f0'; } /* '' */
.WMi-medical:before { content: '\f0f1'; } /* '' */
.WMi-bell-alt:before { content: '\f0f3'; } /* '' */
.WMi-home-appliances:before { content: '\f0f4'; } /* '' */
.WMi-edible:before { content: '\f0f5'; } /* '' */
.WMi-plus-squared:before { content: '\f0fe'; } /* '' */
.WMi-angle-double-left:before { content: '\f100'; } /* '' */
.WMi-angle-double-right:before { content: '\f101'; } /* '' */
.WMi-angle-double-up:before { content: '\f102'; } /* '' */
.WMi-angle-double-down:before { content: '\f103'; } /* '' */
.WMi-angle-left:before { content: '\f104'; } /* '' */
.WMi-angle-right:before { content: '\f105'; } /* '' */
.WMi-angle-up:before { content: '\f106'; } /* '' */
.WMi-angle-down:before { content: '\f107'; } /* '' */
.WMi-imac:before { content: '\f108'; } /* '' */
.WMi-laptop:before { content: '\f109'; } /* '' */
.WMi-tablet:before { content: '\f10a'; } /* '' */
.WMi-mobile:before { content: '\f10b'; } /* '' */
.WMi-circle:before { content: '\f111'; } /* '' */
.WMi-command-line:before { content: '\f120'; } /* '' */
.WMi-code:before { content: '\f121'; } /* '' */
.WMi-star-half-alt:before { content: '\f123'; } /* '' */
.WMi-direction:before { content: '\f124'; } /* '' */
.WMi-crop-1:before { content: '\f125'; } /* '' */
.WMi-unlink:before { content: '\f127'; } /* '' */
.WMi-info:before { content: '\f129'; } /* '' */
.WMi-attention-alt:before { content: '\f12a'; } /* '' */
.WMi-html5:before { content: '\f13b'; } /* '' */
.WMi-css3:before { content: '\f13c'; } /* '' */
.WMi-ellipsis:before { content: '\f141'; } /* '' */
.WMi-ellipsis-vert:before { content: '\f142'; } /* '' */
.WMi-ok-squared:before { content: '\f14a'; } /* '' */
.WMi-compass:before { content: '\f14e'; } /* '' */
.WMi-doc-inv:before { content: '\f15b'; } /* '' */
.WMi-doc-text-inv:before { content: '\f15c'; } /* '' */
.WMi-sort-alt-up:before { content: '\f160'; } /* '' */
.WMi-sort-alt-down:before { content: '\f161'; } /* '' */
.WMi-align-right:before { content: '\f16a'; } /* '' */
.WMi-dropbox:before { content: '\f16b'; } /* '' */
.WMi-instagram:before { content: '\f16d'; } /* '' */
.WMi-windows:before { content: '\f17a'; } /* '' */
.WMi-content-cut:before { content: '\f190'; } /* '' */
.WMi-plus-squared-alt:before { content: '\f196'; } /* '' */
.WMi-backup-restore:before { content: '\f19c'; } /* '' */
.WMi-education:before { content: '\f19d'; } /* '' */
.WMi-crop:before { content: '\f19e'; } /* '' */
.WMi-google:before { content: '\f1a0'; } /* '' */
.WMi-paw:before { content: '\f1b0'; } /* '' */
.WMi-cube:before { content: '\f1b2'; } /* '' */
.WMi-cubes:before { content: '\f1b3'; } /* '' */
.WMi-vehicle:before { content: '\f1b9'; } /* '' */
.WMi-delivery:before { content: '\f1ba'; } /* '' */
.WMi-database:before { content: '\f1c0'; } /* '' */
.WMi-codeopen:before { content: '\f1cb'; } /* '' */
.WMi-paper-plane:before { content: '\f1d8'; } /* '' */
.WMi-telegram-1:before { content: '\f1d9'; } /* '' */
.WMi-sliders:before { content: '\f1de'; } /* '' */
.WMi-sport-ball:before { content: '\f1e3'; } /* '' */
.WMi-plug:before { content: '\f1e6'; } /* '' */
.WMi-wifi:before { content: '\f1eb'; } /* '' */
.WMi-trash:before { content: '\f1f8'; } /* '' */
.WMi-engine:before { content: '\f1fa'; } /* '' */
.WMi-eyedropper:before { content: '\f1fb'; } /* '' */
.WMi-brush-1:before { content: '\f1fc'; } /* '' */
.WMi-birthday:before { content: '\f1fd'; } /* '' */
.WMi-chart-pie:before { content: '\f200'; } /* '' */
.WMi-chart-line:before { content: '\f201'; } /* '' */
.WMi-toggle-off:before { content: '\f204'; } /* '' */
.WMi-toggle-on:before { content: '\f205'; } /* '' */
.WMi-diamond:before { content: '\f219'; } /* '' */
.WMi-motorcycle:before { content: '\f21c'; } /* '' */
.WMi-heartbeat:before { content: '\f21e'; } /* '' */
.WMi-pinterest-1:before { content: '\f231'; } /* '' */
.WMi-user-plus:before { content: '\f234'; } /* '' */
.WMi-user-times:before { content: '\f235'; } /* '' */
.WMi-flip-to-back-2:before { content: '\f247'; } /* '' */
.WMi-clone:before { content: '\f24d'; } /* '' */
.WMi-balance-scale:before { content: '\f24e'; } /* '' */
.WMi-wikipedia:before { content: '\f266'; } /* '' */
.WMi-television:before { content: '\f26c'; } /* '' */
.WMi-industry:before { content: '\f275'; } /* '' */
.WMi-map-signs-1:before { content: '\f277'; } /* '' */
.WMi-map-o-1:before { content: '\f278'; } /* '' */
.WMi-map:before { content: '\f279'; } /* '' */
.WMi-list-ul-2:before { content: '\f27a'; } /* '' */
.WMi-edge:before { content: '\f282'; } /* '' */
.WMi-credit-card-alt:before { content: '\f283'; } /* '' */
.WMi-shopping-bag:before { content: '\f290'; } /* '' */
.WMi-question-circle-o:before { content: '\f29c'; } /* '' */
.WMi-envelope-open:before { content: '\f2b6'; } /* '' */
.WMi-envelope-open-o:before { content: '\f2b7'; } /* '' */
.WMi-telegram:before { content: '\f2c6'; } /* '' */
.WMi-hanger:before { content: '\f2c8'; } /* '' */
.WMi-text:before { content: '\f2dc'; } /* '' */
.WMi-image-filter-none:before { content: '\f2f6'; } /* '' */
.WMi-facebook:before { content: '\f300'; } /* '' */
.WMi-twitter:before { content: '\f302'; } /* '' */
.WMi-linkedin-squared:before { content: '\f30c'; } /* '' */
.WMi-ruler-combined:before { content: '\f318'; } /* '' */
.WMi-linkedin:before { content: '\f31a'; } /* '' */
.WMi-javascript:before { content: '\f31e'; } /* '' */
.WMi-supermarket:before { content: '\f321'; } /* '' */
.WMi-win8:before { content: '\f325'; } /* '' */
.WMi-instagram-1:before { content: '\f32d'; } /* '' */
.WMi-message-reply-text:before { content: '\f368'; } /* '' */
.WMi-message-text-outline:before { content: '\f36a'; } /* '' */
.WMi-cloud-upload-alt:before { content: '\f382'; } /* '' */
.WMi-freight-truck:before { content: '\f3f0'; } /* '' */
.WMi-tree:before { content: '\f405'; } /* '' */
.WMi-school:before { content: '\f474'; } /* '' */
.WMi-selection:before { content: '\f489'; } /* '' */
.WMi-furniture:before { content: '\f4b9'; } /* '' */
.WMi-user-check:before { content: '\f4fc'; } /* '' */
.WMi-brightness-1:before { content: '\f504'; } /* '' */
.WMi-chart-bar-1:before { content: '\f526'; } /* '' */
.WMi-view-carousel:before { content: '\f56c'; } /* '' */
.WMi-view-dashboard:before { content: '\f56e'; } /* '' */
.WMi-view-day:before { content: '\f56f'; } /* '' */
.WMi-view-quilt:before { content: '\f574'; } /* '' */
.WMi-wrench-3:before { content: '\f5b7'; } /* '' */
.WMi-Scientific:before { content: '\f5ed'; } /* '' */
.WMi-advertisement-2:before { content: '\f5f7'; } /* '' */
.WMi-advertisement-1:before { content: '\f5f8'; } /* '' */
.WMi-chat-1:before { content: '\f5fa'; } /* '' */
.WMi-chat-alt:before { content: '\f5fb'; } /* '' */
.WMi-send-message:before { content: '\f5fc'; } /* '' */
.WMi-gold-medal:before { content: '\f5fd'; } /* '' */
.WMi-silver-medal:before { content: '\f5fe'; } /* '' */
.WMi-bronze-medal:before { content: '\f5ff'; } /* '' */
.WMi-globe-1:before { content: '\f600'; } /* '' */
.WMi-symbol:before { content: '\f601'; } /* '' */
.WMi-yoga-posture:before { content: '\f603'; } /* '' */
.WMi-money-copy:before { content: '\f604'; } /* '' */
.WMi-coffee-2:before { content: '\f605'; } /* '' */
.WMi-cardiogram:before { content: '\f607'; } /* '' */
.WMi-iphone:before { content: '\f608'; } /* '' */
.WMi-menu-2:before { content: '\f609'; } /* '' */
.WMi-text-fa:before { content: '\f60a'; } /* '' */
.WMi-volume-level:before { content: '\f60b'; } /* '' */
.WMi-headphones-1:before { content: '\f60c'; } /* '' */
.WMi-dumbbell:before { content: '\f60d'; } /* '' */
.WMi-video-camera-(1):before { content: '\f60e'; } /* '' */
.WMi-headphones:before { content: '\f60f'; } /* '' */
.WMi-shield-copy:before { content: '\f610'; } /* '' */
.WMi-shield-2:before { content: '\f611'; } /* '' */
.WMi-tags-alt:before { content: '\f612'; } /* '' */
.WMi-whatsapp:before { content: '\f613'; } /* '' */
.WMi-whatsapp-alt:before { content: '\f614'; } /* '' */
.WMi-guarantee:before { content: '\f615'; } /* '' */
.WMi-guarantee-1:before { content: '\f616'; } /* '' */
.WMi-verified:before { content: '\f617'; } /* '' */
.WMi-tags-2:before { content: '\f618'; } /* '' */
.WMi-mask:before { content: '\f619'; } /* '' */
.WMi-account-settings-variant-1:before { content: '\f631'; } /* '' */
.WMi-shape-rectangle-plus-2:before { content: '\f65f'; } /* '' */
.WMi-beauty-3:before { content: '\f665'; } /* '' */
.WMi-kaaba:before { content: '\f66b'; } /* '' */
.WMi-star-and-crescent:before { content: '\f699'; } /* '' */
.WMi-lamp:before { content: '\f6b4'; } /* '' */
.WMi-account-edit:before { content: '\f6bb'; } /* '' */
.WMi-view-parallel:before { content: '\f727'; } /* '' */
.WMi-cancel-2:before { content: '\f739'; } /* '' */
.WMi-truck-fast:before { content: '\f787'; } /* '' */
.WMi-heart-broken:before { content: '\f7a9'; } /* '' */
.WMi-money-check-alt:before { content: '\f7c2'; } /* '' */

File diff suppressed because one or more lines are too long

@ -1,565 +0,0 @@
.WMi-th-large-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x77;&nbsp;'); }
.WMi-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe763;&nbsp;'); }
.WMi-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.WMi-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.WMi-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
.WMi-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.WMi-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
.WMi-attach-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
.WMi-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.WMi-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.WMi-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); }
.WMi-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
.WMi-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.WMi-trash-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.WMi-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.WMi-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.WMi-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.WMi-left-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.WMi-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.WMi-up-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
.WMi-tag-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
.WMi-indent-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); }
.WMi-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); }
.WMi-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); }
.WMi-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe816;&nbsp;'); }
.WMi-down-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); }
.WMi-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe818;&nbsp;'); }
.WMi-right-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe819;&nbsp;'); }
.WMi-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); }
.WMi-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); }
.WMi-temperatire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81c;&nbsp;'); }
.WMi-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81d;&nbsp;'); }
.WMi-indent-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); }
.WMi-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); }
.WMi-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); }
.WMi-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); }
.WMi-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); }
.WMi-arrows-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); }
.WMi-check-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); }
.WMi-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); }
.WMi-zoom-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); }
.WMi-zoom-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); }
.WMi-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); }
.WMi-layers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); }
.WMi-comment-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); }
.WMi-cancel-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); }
.WMi-emo-wink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }
.WMi-emo-happy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); }
.WMi-macstore { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); }
.WMi-equalizer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); }
.WMi-emo-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); }
.WMi-emo-sleep { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); }
.WMi-emo-unhappy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe832;&nbsp;'); }
.WMi-emo-wink2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe833;&nbsp;'); }
.WMi-emo-laugh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe834;&nbsp;'); }
.WMi-emo-squint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe835;&nbsp;'); }
.WMi-emo-angry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); }
.WMi-emo-sunglasses { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); }
.WMi-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); }
.WMi-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); }
.WMi-user-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); }
.WMi-emo-displeased { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); }
.WMi-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); }
.WMi-shop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); }
.WMi-th { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); }
.WMi-basket-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); }
.WMi-shop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); }
.WMi-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); }
.WMi-rss-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); }
.WMi-basket-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
.WMi-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
.WMi-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
.WMi-tags-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.WMi-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
.WMi-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
.WMi-map-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
.WMi-logout-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84a;&nbsp;'); }
.WMi-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84b;&nbsp;'); }
.WMi-doc-landscape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); }
.WMi-back-in-time { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); }
.WMi-gift-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); }
.WMi-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); }
.WMi-chat-alt-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); }
.WMi-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); }
.WMi-bank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); }
.WMi-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe853;&nbsp;'); }
.WMi-art-gallery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); }
.WMi-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); }
.WMi-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); }
.WMi-shuffle-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); }
.WMi-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); }
.WMi-phone-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); }
.WMi-loop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); }
.WMi-agriculture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); }
.WMi-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); }
.WMi-warning-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); }
.WMi-plus-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); }
.WMi-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); }
.WMi-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); }
.WMi-Clothes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); }
.WMi-sport-cup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); }
.WMi-wrench-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); }
.WMi-marquee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); }
.WMi-emo-surprised { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe865;&nbsp;'); }
.WMi-glyph-11 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
.WMi-air-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
.WMi-glyph-48 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
.WMi-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.WMi-Official { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
.WMi-advertising-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
.WMi-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
.WMi-map-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); }
.WMi-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); }
.WMi-graduation-cap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86f;&nbsp;'); }
.WMi-advertisement { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); }
.WMi-filter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe871;&nbsp;'); }
.WMi-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); }
.WMi-glyph-25 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); }
.WMi-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); }
.WMi-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe875;&nbsp;'); }
.WMi-crown-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe876;&nbsp;'); }
.WMi-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe877;&nbsp;'); }
.WMi-brush { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe878;&nbsp;'); }
.WMi-map-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe879;&nbsp;'); }
.WMi-flower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87a;&nbsp;'); }
.WMi-camera-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87b;&nbsp;'); }
.WMi-calendar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87c;&nbsp;'); }
.WMi-calendar-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
.WMi-doc-text-inv-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
.WMi-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
.WMi-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.WMi-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.WMi-shop-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
.WMi-glyph-30 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
.WMi-glyph-27 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
.WMi-glyph-26 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); }
.WMi-glyph-29 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); }
.WMi-glyph-32 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); }
.WMi-glyph-31 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); }
.WMi-glyph-36 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); }
.WMi-glyph-33 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); }
.WMi-glyph-34 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); }
.WMi-glyph-38 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); }
.WMi-glyph-35 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); }
.WMi-glyph-40 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); }
.WMi-glyph-37 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); }
.WMi-glyph-42 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); }
.WMi-glyph-39 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
.WMi-glyph-44 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
.WMi-glyph-41 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
.WMi-glyph-43 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.WMi-gas-station { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.WMi-glyph-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
.WMi-instagram-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.WMi-business-affiliate-network-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
.WMi-globe-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
.WMi-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
.WMi-code-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); }
.WMi-emo-tongue { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89d;&nbsp;'); }
.WMi-photography-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
.WMi-bank-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
.WMi-off-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
.WMi-aparat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
.WMi-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); }
.WMi-youtube-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a3;&nbsp;'); }
.WMi-info-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); }
.WMi-cloud-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); }
.WMi-skype { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); }
.WMi-eye-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); }
.WMi-percent { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
.WMi-info-circled-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); }
.WMi-align-justify-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8aa;&nbsp;'); }
.WMi-to-end-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); }
.WMi-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ac;&nbsp;'); }
.WMi-to-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ad;&nbsp;'); }
.WMi-hourglass-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ae;&nbsp;'); }
.WMi-users-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8af;&nbsp;'); }
.WMi-to-start-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); }
.WMi-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); }
.WMi-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); }
.WMi-align-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
.WMi-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b5;&nbsp;'); }
.WMi-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b6;&nbsp;'); }
.WMi-crown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b7;&nbsp;'); }
.WMi-braille { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b8;&nbsp;'); }
.WMi-user-md { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b9;&nbsp;'); }
.WMi-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ba;&nbsp;'); }
.WMi-align-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bb;&nbsp;'); }
.WMi-user-nurse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); }
.WMi-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); }
.WMi-clock-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
.WMi-en-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); }
.WMi-user-graduate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c0;&nbsp;'); }
.WMi-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); }
.WMi-comment-processing-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c2;&nbsp;'); }
.WMi-emo-saint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c3;&nbsp;'); }
.WMi-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c4;&nbsp;'); }
.WMi-person { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c5;&nbsp;'); }
.WMi-plus-outlined { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c6;&nbsp;'); }
.WMi-comments { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c7;&nbsp;'); }
.WMi-trash-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c8;&nbsp;'); }
.WMi-user-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c9;&nbsp;'); }
.WMi-user-friends { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ca;&nbsp;'); }
.WMi-user-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cb;&nbsp;'); }
.WMi-ar-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); }
.WMi-transgender { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cd;&nbsp;'); }
.WMi-user-tie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ce;&nbsp;'); }
.WMi-headphones-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); }
.WMi-infinity-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); }
.WMi-youtube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); }
.WMi-quote-left-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d3;&nbsp;'); }
.WMi-fa-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
.WMi-number { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); }
.WMi-apple-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); }
.WMi-th-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); }
.WMi-gender-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d9;&nbsp;'); }
.WMi-user-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8da;&nbsp;'); }
.WMi-max { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dc;&nbsp;'); }
.WMi-comments-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dd;&nbsp;'); }
.WMi-color-palette { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8de;&nbsp;'); }
.WMi-user-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8df;&nbsp;'); }
.WMi-wordpress { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e0;&nbsp;'); }
.WMi-restroom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e5;&nbsp;'); }
.WMi-user-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e6;&nbsp;'); }
.WMi-eq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e7;&nbsp;'); }
.WMi-gift-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e8;&nbsp;'); }
.WMi-location-arrow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e9;&nbsp;'); }
.WMi-glyph-28 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ea;&nbsp;'); }
.WMi-pinterest { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8eb;&nbsp;'); }
.WMi-user-slash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ec;&nbsp;'); }
.WMi-willa-engine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ed;&nbsp;'); }
.WMi-sort-numeric-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ee;&nbsp;'); }
.WMi-fish { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ef;&nbsp;'); }
.WMi-min { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f0;&nbsp;'); }
.WMi-sort-numeric-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f1;&nbsp;'); }
.WMi-gender-male-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f2;&nbsp;'); }
.WMi-undo-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f3;&nbsp;'); }
.WMi-linkedin-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f4;&nbsp;'); }
.WMi-sort-alphabetical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f5;&nbsp;'); }
.WMi-telegram-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); }
.WMi-temperature-fahrenheit-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f7;&nbsp;'); }
.WMi-infinity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f8;&nbsp;'); }
.WMi-quote-right-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f9;&nbsp;'); }
.WMi-linkedin-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fa;&nbsp;'); }
.WMi-users-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fb;&nbsp;'); }
.WMi-python { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fc;&nbsp;'); }
.WMi-backspace { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fd;&nbsp;'); }
.WMi-sim-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fe;&nbsp;'); }
.WMi-graphic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ff;&nbsp;'); }
.WMi-php { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe900;&nbsp;'); }
.WMi-comment-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe901;&nbsp;'); }
.WMi-emo-grin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe902;&nbsp;'); }
.WMi-temperature-celsius-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe905;&nbsp;'); }
.WMi-theme { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe908;&nbsp;'); }
.WMi-greater-than-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90c;&nbsp;'); }
.WMi-mouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90d;&nbsp;'); }
.WMi-pizza-slice { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90e;&nbsp;'); }
.WMi-sd-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe917;&nbsp;'); }
.WMi-archive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe919;&nbsp;'); }
.WMi-landmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91a;&nbsp;'); }
.WMi-car-crash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91b;&nbsp;'); }
.WMi-car-side { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91c;&nbsp;'); }
.WMi-map-marked { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91d;&nbsp;'); }
.WMi-truck-monster { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92e;&nbsp;'); }
.WMi-equals { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93e;&nbsp;'); }
.WMi-internet-explorer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe948;&nbsp;'); }
.WMi-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94b;&nbsp;'); }
.WMi-navigation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94c;&nbsp;'); }
.WMi-drafting-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe953;&nbsp;'); }
.WMi-signal-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe959;&nbsp;'); }
.WMi-envelope-open-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95b;&nbsp;'); }
.WMi-barcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe961;&nbsp;'); }
.WMi-sort-numeric { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe962;&nbsp;'); }
.WMi-sort-alpha-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe963;&nbsp;'); }
.WMi-sort-alpha-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe964;&nbsp;'); }
.WMi-calendar-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe965;&nbsp;'); }
.WMi-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe966;&nbsp;'); }
.WMi-quote-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe967;&nbsp;'); }
.WMi-quote-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe968;&nbsp;'); }
.WMi-radiation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe969;&nbsp;'); }
.WMi-pepper-hot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96a;&nbsp;'); }
.WMi-hamburger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96b;&nbsp;'); }
.WMi-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96c;&nbsp;'); }
.WMi-comment-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96d;&nbsp;'); }
.WMi-list-ol { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96e;&nbsp;'); }
.WMi-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96f;&nbsp;'); }
.WMi-percentage { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe970;&nbsp;'); }
.WMi-trash-alt-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe971;&nbsp;'); }
.WMi-plane-arrival { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe972;&nbsp;'); }
.WMi-factory { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe973;&nbsp;'); }
.WMi-helicopter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe974;&nbsp;'); }
.WMi-warehouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe975;&nbsp;'); }
.WMi-transgender-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe976;&nbsp;'); }
.WMi-map-signs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe977;&nbsp;'); }
.WMi-wifi-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe978;&nbsp;'); }
.WMi-ruler-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97a;&nbsp;'); }
.WMi-scale { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97b;&nbsp;'); }
.WMi-cylinder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97c;&nbsp;'); }
.WMi-biking { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97d;&nbsp;'); }
.WMi-wheelchair { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97e;&nbsp;'); }
.WMi-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97f;&nbsp;'); }
.WMi-chart-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe980;&nbsp;'); }
.WMi-cogs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe981;&nbsp;'); }
.WMi-cheese { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe982;&nbsp;'); }
.WMi-sort-amount-down-alt-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe984;&nbsp;'); }
.WMi-sort-amount-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe985;&nbsp;'); }
.WMi-bike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe986;&nbsp;'); }
.WMi-fire-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe987;&nbsp;'); }
.WMi-carrot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe988;&nbsp;'); }
.WMi-horse-head { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe989;&nbsp;'); }
.WMi-cylinder-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98a;&nbsp;'); }
.WMi-pos { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98b;&nbsp;'); }
.WMi-pos-terminal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98c;&nbsp;'); }
.WMi-ladder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98d;&nbsp;'); }
.WMi-ice-cream { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98e;&nbsp;'); }
.WMi-oil-can { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98f;&nbsp;'); }
.WMi-spider { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe990;&nbsp;'); }
.WMi-skull-crossbones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe991;&nbsp;'); }
.WMi-plane-departure { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe992;&nbsp;'); }
.WMi-library-books { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe993;&nbsp;'); }
.WMi-glass-martini-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe994;&nbsp;'); }
.WMi-shopping { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe995;&nbsp;'); }
.WMi-taxi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe996;&nbsp;'); }
.WMi-lock-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe997;&nbsp;'); }
.WMi-bed { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe998;&nbsp;'); }
.WMi-fingerprint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe999;&nbsp;'); }
.WMi-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99a;&nbsp;'); }
.WMi-shuttle-van { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99b;&nbsp;'); }
.WMi-mug-hot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99c;&nbsp;'); }
.WMi-mosque { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99e;&nbsp;'); }
.WMi-tooth { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99f;&nbsp;'); }
.WMi-broadcast-tower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a0;&nbsp;'); }
.WMi-table-tennis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a1;&nbsp;'); }
.WMi-star-of-david { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a2;&nbsp;'); }
.WMi-snowflake-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a3;&nbsp;'); }
.WMi-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a4;&nbsp;'); }
.WMi-wrench-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a5;&nbsp;'); }
.WMi-shopping-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a9;&nbsp;'); }
.WMi-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9aa;&nbsp;'); }
.WMi-communications { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ab;&nbsp;'); }
.WMi-home-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ac;&nbsp;'); }
.WMi-hdd-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ae;&nbsp;'); }
.WMi-location-on-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9af;&nbsp;'); }
.WMi-donut { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b0;&nbsp;'); }
.WMi-less-than-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b1;&nbsp;'); }
.WMi-not-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b2;&nbsp;'); }
.WMi-cloud-download-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b3;&nbsp;'); }
.WMi-equal-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b4;&nbsp;'); }
.WMi-align-justify { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b5;&nbsp;'); }
.WMi-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b7;&nbsp;'); }
.WMi-cash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b8;&nbsp;'); }
.WMi-electronic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b9;&nbsp;'); }
.WMi-list-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bc;&nbsp;'); }
.WMi-signature { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9be;&nbsp;'); }
.WMi-animation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bf;&nbsp;'); }
.WMi-account-multiple-plus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c0;&nbsp;'); }
.WMi-account-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c1;&nbsp;'); }
.WMi-shop-bag-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c8;&nbsp;'); }
.WMi-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cd;&nbsp;'); }
.WMi-alarm-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9db;&nbsp;'); }
.WMi-account-multiple-minus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9df;&nbsp;'); }
.WMi-icons { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e3;&nbsp;'); }
.WMi-pause-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00e;&nbsp;'); }
.WMi-play-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00f;&nbsp;'); }
.WMi-to-end-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf010;&nbsp;'); }
.WMi-to-start-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf011;&nbsp;'); }
.WMi-account-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf012;&nbsp;'); }
.WMi-account-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf014;&nbsp;'); }
.WMi-account-remove { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf015;&nbsp;'); }
.WMi-account-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf019;&nbsp;'); }
.WMi-hash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf029;&nbsp;'); }
.WMi-alert-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02a;&nbsp;'); }
.WMi-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02d;&nbsp;'); }
.WMi-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02f;&nbsp;'); }
.WMi-mobile-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf034;&nbsp;'); }
.WMi-apple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf035;&nbsp;'); }
.WMi-brightness { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf037;&nbsp;'); }
.WMi-weight-kilogram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05c;&nbsp;'); }
.WMi-stop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf080;&nbsp;'); }
.WMi-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08e;&nbsp;'); }
.WMi-check-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf096;&nbsp;'); }
.WMi-bookmark-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf097;&nbsp;'); }
.WMi-twitter-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf099;&nbsp;'); }
.WMi-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09e;&nbsp;'); }
.WMi-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a0;&nbsp;'); }
.WMi-resize-full-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b2;&nbsp;'); }
.WMi-beaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c3;&nbsp;'); }
.WMi-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c9;&nbsp;'); }
.WMi-magic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d0;&nbsp;'); }
.WMi-gplus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d5;&nbsp;'); }
.WMi-WM-logo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0da;&nbsp;'); }
.WMi-sort { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dc;&nbsp;'); }
.WMi-chronometer-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dd;&nbsp;'); }
.WMi-clothes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0de;&nbsp;'); }
.WMi-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e0;&nbsp;'); }
.WMi-cleaning { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e2;&nbsp;'); }
.WMi-cargo-ship { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e3;&nbsp;'); }
.WMi-wa-fit-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e7;&nbsp;'); }
.WMi-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ec;&nbsp;'); }
.WMi-doctor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f0;&nbsp;'); }
.WMi-medical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f1;&nbsp;'); }
.WMi-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f3;&nbsp;'); }
.WMi-home-appliances { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f4;&nbsp;'); }
.WMi-edible { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f5;&nbsp;'); }
.WMi-plus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fe;&nbsp;'); }
.WMi-angle-double-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf100;&nbsp;'); }
.WMi-angle-double-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf101;&nbsp;'); }
.WMi-angle-double-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf102;&nbsp;'); }
.WMi-angle-double-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf103;&nbsp;'); }
.WMi-angle-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf104;&nbsp;'); }
.WMi-angle-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf105;&nbsp;'); }
.WMi-angle-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf106;&nbsp;'); }
.WMi-angle-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf107;&nbsp;'); }
.WMi-imac { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf108;&nbsp;'); }
.WMi-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf109;&nbsp;'); }
.WMi-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10a;&nbsp;'); }
.WMi-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10b;&nbsp;'); }
.WMi-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf111;&nbsp;'); }
.WMi-command-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf120;&nbsp;'); }
.WMi-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf121;&nbsp;'); }
.WMi-star-half-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf123;&nbsp;'); }
.WMi-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf124;&nbsp;'); }
.WMi-crop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf125;&nbsp;'); }
.WMi-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf127;&nbsp;'); }
.WMi-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf129;&nbsp;'); }
.WMi-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12a;&nbsp;'); }
.WMi-html5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13b;&nbsp;'); }
.WMi-css3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13c;&nbsp;'); }
.WMi-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf141;&nbsp;'); }
.WMi-ellipsis-vert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf142;&nbsp;'); }
.WMi-ok-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14a;&nbsp;'); }
.WMi-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14e;&nbsp;'); }
.WMi-doc-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15b;&nbsp;'); }
.WMi-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15c;&nbsp;'); }
.WMi-sort-alt-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf160;&nbsp;'); }
.WMi-sort-alt-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf161;&nbsp;'); }
.WMi-align-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16a;&nbsp;'); }
.WMi-dropbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16b;&nbsp;'); }
.WMi-instagram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16d;&nbsp;'); }
.WMi-windows { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17a;&nbsp;'); }
.WMi-content-cut { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf190;&nbsp;'); }
.WMi-plus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf196;&nbsp;'); }
.WMi-backup-restore { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19c;&nbsp;'); }
.WMi-education { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19d;&nbsp;'); }
.WMi-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19e;&nbsp;'); }
.WMi-google { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1a0;&nbsp;'); }
.WMi-paw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b0;&nbsp;'); }
.WMi-cube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b2;&nbsp;'); }
.WMi-cubes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b3;&nbsp;'); }
.WMi-vehicle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b9;&nbsp;'); }
.WMi-delivery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1ba;&nbsp;'); }
.WMi-database { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1c0;&nbsp;'); }
.WMi-codeopen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1cb;&nbsp;'); }
.WMi-paper-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1d8;&nbsp;'); }
.WMi-telegram-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1d9;&nbsp;'); }
.WMi-sliders { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1de;&nbsp;'); }
.WMi-sport-ball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1e3;&nbsp;'); }
.WMi-plug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1e6;&nbsp;'); }
.WMi-wifi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1eb;&nbsp;'); }
.WMi-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1f8;&nbsp;'); }
.WMi-engine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fa;&nbsp;'); }
.WMi-eyedropper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fb;&nbsp;'); }
.WMi-brush-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fc;&nbsp;'); }
.WMi-birthday { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fd;&nbsp;'); }
.WMi-chart-pie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf200;&nbsp;'); }
.WMi-chart-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf201;&nbsp;'); }
.WMi-toggle-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf204;&nbsp;'); }
.WMi-toggle-on { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf205;&nbsp;'); }
.WMi-diamond { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf219;&nbsp;'); }
.WMi-motorcycle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf21c;&nbsp;'); }
.WMi-heartbeat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf21e;&nbsp;'); }
.WMi-pinterest-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf231;&nbsp;'); }
.WMi-user-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf234;&nbsp;'); }
.WMi-user-times { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf235;&nbsp;'); }
.WMi-flip-to-back-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf247;&nbsp;'); }
.WMi-clone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf24d;&nbsp;'); }
.WMi-balance-scale { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf24e;&nbsp;'); }
.WMi-wikipedia { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf266;&nbsp;'); }
.WMi-television { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf26c;&nbsp;'); }
.WMi-industry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf275;&nbsp;'); }
.WMi-map-signs-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf277;&nbsp;'); }
.WMi-map-o-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf278;&nbsp;'); }
.WMi-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf279;&nbsp;'); }
.WMi-list-ul-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf27a;&nbsp;'); }
.WMi-edge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf282;&nbsp;'); }
.WMi-credit-card-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf283;&nbsp;'); }
.WMi-shopping-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf290;&nbsp;'); }
.WMi-question-circle-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf29c;&nbsp;'); }
.WMi-envelope-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2b6;&nbsp;'); }
.WMi-envelope-open-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2b7;&nbsp;'); }
.WMi-telegram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c6;&nbsp;'); }
.WMi-hanger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c8;&nbsp;'); }
.WMi-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2dc;&nbsp;'); }
.WMi-image-filter-none { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2f6;&nbsp;'); }
.WMi-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf300;&nbsp;'); }
.WMi-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf302;&nbsp;'); }
.WMi-linkedin-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf30c;&nbsp;'); }
.WMi-ruler-combined { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf318;&nbsp;'); }
.WMi-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf31a;&nbsp;'); }
.WMi-javascript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf31e;&nbsp;'); }
.WMi-supermarket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf321;&nbsp;'); }
.WMi-win8 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf325;&nbsp;'); }
.WMi-instagram-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf32d;&nbsp;'); }
.WMi-message-reply-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf368;&nbsp;'); }
.WMi-message-text-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf36a;&nbsp;'); }
.WMi-cloud-upload-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf382;&nbsp;'); }
.WMi-freight-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf3f0;&nbsp;'); }
.WMi-tree { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf405;&nbsp;'); }
.WMi-school { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf474;&nbsp;'); }
.WMi-selection { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf489;&nbsp;'); }
.WMi-furniture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4b9;&nbsp;'); }
.WMi-user-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4fc;&nbsp;'); }
.WMi-brightness-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf504;&nbsp;'); }
.WMi-chart-bar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf526;&nbsp;'); }
.WMi-view-carousel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56c;&nbsp;'); }
.WMi-view-dashboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56e;&nbsp;'); }
.WMi-view-day { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56f;&nbsp;'); }
.WMi-view-quilt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf574;&nbsp;'); }
.WMi-wrench-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b7;&nbsp;'); }
.WMi-Scientific { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ed;&nbsp;'); }
.WMi-advertisement-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f7;&nbsp;'); }
.WMi-advertisement-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f8;&nbsp;'); }
.WMi-chat-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fa;&nbsp;'); }
.WMi-chat-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fb;&nbsp;'); }
.WMi-send-message { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fc;&nbsp;'); }
.WMi-gold-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fd;&nbsp;'); }
.WMi-silver-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fe;&nbsp;'); }
.WMi-bronze-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ff;&nbsp;'); }
.WMi-globe-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf600;&nbsp;'); }
.WMi-symbol { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf601;&nbsp;'); }
.WMi-yoga-posture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf603;&nbsp;'); }
.WMi-money-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf604;&nbsp;'); }
.WMi-coffee-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf605;&nbsp;'); }
.WMi-cardiogram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf607;&nbsp;'); }
.WMi-iphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf608;&nbsp;'); }
.WMi-menu-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf609;&nbsp;'); }
.WMi-text-fa { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60a;&nbsp;'); }
.WMi-volume-level { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60b;&nbsp;'); }
.WMi-headphones-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60c;&nbsp;'); }
.WMi-dumbbell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60d;&nbsp;'); }
.WMi-video-camera-(1) { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60e;&nbsp;'); }
.WMi-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60f;&nbsp;'); }
.WMi-shield-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf610;&nbsp;'); }
.WMi-shield-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf611;&nbsp;'); }
.WMi-tags-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf612;&nbsp;'); }
.WMi-whatsapp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf613;&nbsp;'); }
.WMi-whatsapp-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf614;&nbsp;'); }
.WMi-guarantee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf615;&nbsp;'); }
.WMi-guarantee-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf616;&nbsp;'); }
.WMi-verified { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf617;&nbsp;'); }
.WMi-tags-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf618;&nbsp;'); }
.WMi-mask { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf619;&nbsp;'); }
.WMi-account-settings-variant-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf631;&nbsp;'); }
.WMi-shape-rectangle-plus-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf65f;&nbsp;'); }
.WMi-beauty-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf665;&nbsp;'); }
.WMi-kaaba { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf66b;&nbsp;'); }
.WMi-star-and-crescent { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf699;&nbsp;'); }
.WMi-lamp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf6b4;&nbsp;'); }
.WMi-account-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf6bb;&nbsp;'); }
.WMi-view-parallel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf727;&nbsp;'); }
.WMi-cancel-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf739;&nbsp;'); }
.WMi-truck-fast { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf787;&nbsp;'); }
.WMi-heart-broken { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7a9;&nbsp;'); }
.WMi-money-check-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7c2;&nbsp;'); }

@ -1,576 +0,0 @@
[class^="WMi-"], [class*=" WMi-"] {
font-family: 'fontello';
font-style: normal;
font-weight: normal;
/* fix buttons height */
line-height: 1em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
}
.WMi-th-large-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x77;&nbsp;'); }
.WMi-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe763;&nbsp;'); }
.WMi-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.WMi-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.WMi-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
.WMi-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.WMi-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
.WMi-attach-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
.WMi-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.WMi-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.WMi-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); }
.WMi-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
.WMi-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.WMi-trash-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.WMi-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.WMi-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.WMi-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.WMi-left-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.WMi-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.WMi-up-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
.WMi-tag-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
.WMi-indent-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); }
.WMi-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); }
.WMi-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); }
.WMi-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe816;&nbsp;'); }
.WMi-down-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); }
.WMi-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe818;&nbsp;'); }
.WMi-right-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe819;&nbsp;'); }
.WMi-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); }
.WMi-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); }
.WMi-temperatire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81c;&nbsp;'); }
.WMi-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81d;&nbsp;'); }
.WMi-indent-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); }
.WMi-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); }
.WMi-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); }
.WMi-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); }
.WMi-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); }
.WMi-arrows-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); }
.WMi-check-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); }
.WMi-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); }
.WMi-zoom-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); }
.WMi-zoom-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); }
.WMi-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); }
.WMi-layers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); }
.WMi-comment-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); }
.WMi-cancel-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); }
.WMi-emo-wink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }
.WMi-emo-happy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); }
.WMi-macstore { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); }
.WMi-equalizer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); }
.WMi-emo-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); }
.WMi-emo-sleep { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); }
.WMi-emo-unhappy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe832;&nbsp;'); }
.WMi-emo-wink2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe833;&nbsp;'); }
.WMi-emo-laugh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe834;&nbsp;'); }
.WMi-emo-squint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe835;&nbsp;'); }
.WMi-emo-angry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); }
.WMi-emo-sunglasses { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); }
.WMi-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); }
.WMi-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); }
.WMi-user-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); }
.WMi-emo-displeased { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); }
.WMi-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); }
.WMi-shop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); }
.WMi-th { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); }
.WMi-basket-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); }
.WMi-shop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); }
.WMi-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); }
.WMi-rss-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); }
.WMi-basket-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
.WMi-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
.WMi-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
.WMi-tags-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.WMi-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
.WMi-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
.WMi-map-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
.WMi-logout-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84a;&nbsp;'); }
.WMi-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84b;&nbsp;'); }
.WMi-doc-landscape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); }
.WMi-back-in-time { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); }
.WMi-gift-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); }
.WMi-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); }
.WMi-chat-alt-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); }
.WMi-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); }
.WMi-bank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); }
.WMi-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe853;&nbsp;'); }
.WMi-art-gallery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); }
.WMi-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); }
.WMi-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); }
.WMi-shuffle-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); }
.WMi-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); }
.WMi-phone-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); }
.WMi-loop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); }
.WMi-agriculture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); }
.WMi-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); }
.WMi-warning-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); }
.WMi-plus-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); }
.WMi-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); }
.WMi-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); }
.WMi-Clothes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); }
.WMi-sport-cup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); }
.WMi-wrench-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); }
.WMi-marquee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); }
.WMi-emo-surprised { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe865;&nbsp;'); }
.WMi-glyph-11 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
.WMi-air-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
.WMi-glyph-48 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
.WMi-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.WMi-Official { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
.WMi-advertising-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
.WMi-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
.WMi-map-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); }
.WMi-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); }
.WMi-graduation-cap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86f;&nbsp;'); }
.WMi-advertisement { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); }
.WMi-filter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe871;&nbsp;'); }
.WMi-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); }
.WMi-glyph-25 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); }
.WMi-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); }
.WMi-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe875;&nbsp;'); }
.WMi-crown-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe876;&nbsp;'); }
.WMi-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe877;&nbsp;'); }
.WMi-brush { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe878;&nbsp;'); }
.WMi-map-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe879;&nbsp;'); }
.WMi-flower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87a;&nbsp;'); }
.WMi-camera-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87b;&nbsp;'); }
.WMi-calendar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87c;&nbsp;'); }
.WMi-calendar-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
.WMi-doc-text-inv-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
.WMi-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
.WMi-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.WMi-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.WMi-shop-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
.WMi-glyph-30 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
.WMi-glyph-27 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
.WMi-glyph-26 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); }
.WMi-glyph-29 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); }
.WMi-glyph-32 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); }
.WMi-glyph-31 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); }
.WMi-glyph-36 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); }
.WMi-glyph-33 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); }
.WMi-glyph-34 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); }
.WMi-glyph-38 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); }
.WMi-glyph-35 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); }
.WMi-glyph-40 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); }
.WMi-glyph-37 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); }
.WMi-glyph-42 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); }
.WMi-glyph-39 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
.WMi-glyph-44 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
.WMi-glyph-41 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
.WMi-glyph-43 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.WMi-gas-station { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.WMi-glyph-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
.WMi-instagram-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.WMi-business-affiliate-network-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
.WMi-globe-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
.WMi-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
.WMi-code-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); }
.WMi-emo-tongue { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89d;&nbsp;'); }
.WMi-photography-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
.WMi-bank-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
.WMi-off-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
.WMi-aparat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
.WMi-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); }
.WMi-youtube-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a3;&nbsp;'); }
.WMi-info-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); }
.WMi-cloud-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); }
.WMi-skype { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); }
.WMi-eye-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); }
.WMi-percent { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
.WMi-info-circled-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); }
.WMi-align-justify-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8aa;&nbsp;'); }
.WMi-to-end-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); }
.WMi-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ac;&nbsp;'); }
.WMi-to-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ad;&nbsp;'); }
.WMi-hourglass-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ae;&nbsp;'); }
.WMi-users-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8af;&nbsp;'); }
.WMi-to-start-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); }
.WMi-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); }
.WMi-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); }
.WMi-align-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
.WMi-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b5;&nbsp;'); }
.WMi-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b6;&nbsp;'); }
.WMi-crown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b7;&nbsp;'); }
.WMi-braille { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b8;&nbsp;'); }
.WMi-user-md { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b9;&nbsp;'); }
.WMi-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ba;&nbsp;'); }
.WMi-align-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bb;&nbsp;'); }
.WMi-user-nurse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); }
.WMi-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); }
.WMi-clock-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
.WMi-en-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); }
.WMi-user-graduate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c0;&nbsp;'); }
.WMi-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); }
.WMi-comment-processing-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c2;&nbsp;'); }
.WMi-emo-saint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c3;&nbsp;'); }
.WMi-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c4;&nbsp;'); }
.WMi-person { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c5;&nbsp;'); }
.WMi-plus-outlined { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c6;&nbsp;'); }
.WMi-comments { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c7;&nbsp;'); }
.WMi-trash-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c8;&nbsp;'); }
.WMi-user-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c9;&nbsp;'); }
.WMi-user-friends { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ca;&nbsp;'); }
.WMi-user-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cb;&nbsp;'); }
.WMi-ar-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); }
.WMi-transgender { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cd;&nbsp;'); }
.WMi-user-tie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ce;&nbsp;'); }
.WMi-headphones-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); }
.WMi-infinity-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); }
.WMi-youtube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); }
.WMi-quote-left-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d3;&nbsp;'); }
.WMi-fa-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
.WMi-number { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); }
.WMi-apple-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); }
.WMi-th-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); }
.WMi-gender-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d9;&nbsp;'); }
.WMi-user-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8da;&nbsp;'); }
.WMi-max { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dc;&nbsp;'); }
.WMi-comments-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dd;&nbsp;'); }
.WMi-color-palette { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8de;&nbsp;'); }
.WMi-user-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8df;&nbsp;'); }
.WMi-wordpress { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e0;&nbsp;'); }
.WMi-restroom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e5;&nbsp;'); }
.WMi-user-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e6;&nbsp;'); }
.WMi-eq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e7;&nbsp;'); }
.WMi-gift-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e8;&nbsp;'); }
.WMi-location-arrow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e9;&nbsp;'); }
.WMi-glyph-28 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ea;&nbsp;'); }
.WMi-pinterest { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8eb;&nbsp;'); }
.WMi-user-slash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ec;&nbsp;'); }
.WMi-willa-engine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ed;&nbsp;'); }
.WMi-sort-numeric-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ee;&nbsp;'); }
.WMi-fish { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ef;&nbsp;'); }
.WMi-min { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f0;&nbsp;'); }
.WMi-sort-numeric-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f1;&nbsp;'); }
.WMi-gender-male-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f2;&nbsp;'); }
.WMi-undo-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f3;&nbsp;'); }
.WMi-linkedin-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f4;&nbsp;'); }
.WMi-sort-alphabetical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f5;&nbsp;'); }
.WMi-telegram-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); }
.WMi-temperature-fahrenheit-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f7;&nbsp;'); }
.WMi-infinity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f8;&nbsp;'); }
.WMi-quote-right-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f9;&nbsp;'); }
.WMi-linkedin-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fa;&nbsp;'); }
.WMi-users-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fb;&nbsp;'); }
.WMi-python { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fc;&nbsp;'); }
.WMi-backspace { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fd;&nbsp;'); }
.WMi-sim-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fe;&nbsp;'); }
.WMi-graphic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ff;&nbsp;'); }
.WMi-php { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe900;&nbsp;'); }
.WMi-comment-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe901;&nbsp;'); }
.WMi-emo-grin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe902;&nbsp;'); }
.WMi-temperature-celsius-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe905;&nbsp;'); }
.WMi-theme { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe908;&nbsp;'); }
.WMi-greater-than-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90c;&nbsp;'); }
.WMi-mouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90d;&nbsp;'); }
.WMi-pizza-slice { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90e;&nbsp;'); }
.WMi-sd-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe917;&nbsp;'); }
.WMi-archive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe919;&nbsp;'); }
.WMi-landmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91a;&nbsp;'); }
.WMi-car-crash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91b;&nbsp;'); }
.WMi-car-side { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91c;&nbsp;'); }
.WMi-map-marked { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91d;&nbsp;'); }
.WMi-truck-monster { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92e;&nbsp;'); }
.WMi-equals { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93e;&nbsp;'); }
.WMi-internet-explorer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe948;&nbsp;'); }
.WMi-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94b;&nbsp;'); }
.WMi-navigation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94c;&nbsp;'); }
.WMi-drafting-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe953;&nbsp;'); }
.WMi-signal-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe959;&nbsp;'); }
.WMi-envelope-open-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95b;&nbsp;'); }
.WMi-barcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe961;&nbsp;'); }
.WMi-sort-numeric { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe962;&nbsp;'); }
.WMi-sort-alpha-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe963;&nbsp;'); }
.WMi-sort-alpha-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe964;&nbsp;'); }
.WMi-calendar-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe965;&nbsp;'); }
.WMi-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe966;&nbsp;'); }
.WMi-quote-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe967;&nbsp;'); }
.WMi-quote-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe968;&nbsp;'); }
.WMi-radiation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe969;&nbsp;'); }
.WMi-pepper-hot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96a;&nbsp;'); }
.WMi-hamburger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96b;&nbsp;'); }
.WMi-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96c;&nbsp;'); }
.WMi-comment-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96d;&nbsp;'); }
.WMi-list-ol { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96e;&nbsp;'); }
.WMi-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96f;&nbsp;'); }
.WMi-percentage { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe970;&nbsp;'); }
.WMi-trash-alt-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe971;&nbsp;'); }
.WMi-plane-arrival { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe972;&nbsp;'); }
.WMi-factory { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe973;&nbsp;'); }
.WMi-helicopter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe974;&nbsp;'); }
.WMi-warehouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe975;&nbsp;'); }
.WMi-transgender-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe976;&nbsp;'); }
.WMi-map-signs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe977;&nbsp;'); }
.WMi-wifi-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe978;&nbsp;'); }
.WMi-ruler-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97a;&nbsp;'); }
.WMi-scale { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97b;&nbsp;'); }
.WMi-cylinder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97c;&nbsp;'); }
.WMi-biking { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97d;&nbsp;'); }
.WMi-wheelchair { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97e;&nbsp;'); }
.WMi-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97f;&nbsp;'); }
.WMi-chart-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe980;&nbsp;'); }
.WMi-cogs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe981;&nbsp;'); }
.WMi-cheese { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe982;&nbsp;'); }
.WMi-sort-amount-down-alt-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe984;&nbsp;'); }
.WMi-sort-amount-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe985;&nbsp;'); }
.WMi-bike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe986;&nbsp;'); }
.WMi-fire-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe987;&nbsp;'); }
.WMi-carrot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe988;&nbsp;'); }
.WMi-horse-head { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe989;&nbsp;'); }
.WMi-cylinder-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98a;&nbsp;'); }
.WMi-pos { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98b;&nbsp;'); }
.WMi-pos-terminal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98c;&nbsp;'); }
.WMi-ladder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98d;&nbsp;'); }
.WMi-ice-cream { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98e;&nbsp;'); }
.WMi-oil-can { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98f;&nbsp;'); }
.WMi-spider { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe990;&nbsp;'); }
.WMi-skull-crossbones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe991;&nbsp;'); }
.WMi-plane-departure { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe992;&nbsp;'); }
.WMi-library-books { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe993;&nbsp;'); }
.WMi-glass-martini-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe994;&nbsp;'); }
.WMi-shopping { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe995;&nbsp;'); }
.WMi-taxi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe996;&nbsp;'); }
.WMi-lock-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe997;&nbsp;'); }
.WMi-bed { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe998;&nbsp;'); }
.WMi-fingerprint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe999;&nbsp;'); }
.WMi-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99a;&nbsp;'); }
.WMi-shuttle-van { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99b;&nbsp;'); }
.WMi-mug-hot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99c;&nbsp;'); }
.WMi-mosque { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99e;&nbsp;'); }
.WMi-tooth { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99f;&nbsp;'); }
.WMi-broadcast-tower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a0;&nbsp;'); }
.WMi-table-tennis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a1;&nbsp;'); }
.WMi-star-of-david { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a2;&nbsp;'); }
.WMi-snowflake-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a3;&nbsp;'); }
.WMi-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a4;&nbsp;'); }
.WMi-wrench-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a5;&nbsp;'); }
.WMi-shopping-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a9;&nbsp;'); }
.WMi-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9aa;&nbsp;'); }
.WMi-communications { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ab;&nbsp;'); }
.WMi-home-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ac;&nbsp;'); }
.WMi-hdd-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ae;&nbsp;'); }
.WMi-location-on-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9af;&nbsp;'); }
.WMi-donut { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b0;&nbsp;'); }
.WMi-less-than-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b1;&nbsp;'); }
.WMi-not-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b2;&nbsp;'); }
.WMi-cloud-download-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b3;&nbsp;'); }
.WMi-equal-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b4;&nbsp;'); }
.WMi-align-justify { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b5;&nbsp;'); }
.WMi-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b7;&nbsp;'); }
.WMi-cash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b8;&nbsp;'); }
.WMi-electronic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b9;&nbsp;'); }
.WMi-list-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bc;&nbsp;'); }
.WMi-signature { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9be;&nbsp;'); }
.WMi-animation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bf;&nbsp;'); }
.WMi-account-multiple-plus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c0;&nbsp;'); }
.WMi-account-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c1;&nbsp;'); }
.WMi-shop-bag-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c8;&nbsp;'); }
.WMi-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cd;&nbsp;'); }
.WMi-alarm-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9db;&nbsp;'); }
.WMi-account-multiple-minus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9df;&nbsp;'); }
.WMi-icons { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e3;&nbsp;'); }
.WMi-pause-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00e;&nbsp;'); }
.WMi-play-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00f;&nbsp;'); }
.WMi-to-end-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf010;&nbsp;'); }
.WMi-to-start-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf011;&nbsp;'); }
.WMi-account-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf012;&nbsp;'); }
.WMi-account-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf014;&nbsp;'); }
.WMi-account-remove { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf015;&nbsp;'); }
.WMi-account-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf019;&nbsp;'); }
.WMi-hash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf029;&nbsp;'); }
.WMi-alert-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02a;&nbsp;'); }
.WMi-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02d;&nbsp;'); }
.WMi-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02f;&nbsp;'); }
.WMi-mobile-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf034;&nbsp;'); }
.WMi-apple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf035;&nbsp;'); }
.WMi-brightness { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf037;&nbsp;'); }
.WMi-weight-kilogram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05c;&nbsp;'); }
.WMi-stop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf080;&nbsp;'); }
.WMi-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08e;&nbsp;'); }
.WMi-check-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf096;&nbsp;'); }
.WMi-bookmark-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf097;&nbsp;'); }
.WMi-twitter-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf099;&nbsp;'); }
.WMi-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09e;&nbsp;'); }
.WMi-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a0;&nbsp;'); }
.WMi-resize-full-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b2;&nbsp;'); }
.WMi-beaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c3;&nbsp;'); }
.WMi-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c9;&nbsp;'); }
.WMi-magic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d0;&nbsp;'); }
.WMi-gplus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d5;&nbsp;'); }
.WMi-WM-logo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0da;&nbsp;'); }
.WMi-sort { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dc;&nbsp;'); }
.WMi-chronometer-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dd;&nbsp;'); }
.WMi-clothes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0de;&nbsp;'); }
.WMi-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e0;&nbsp;'); }
.WMi-cleaning { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e2;&nbsp;'); }
.WMi-cargo-ship { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e3;&nbsp;'); }
.WMi-wa-fit-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e7;&nbsp;'); }
.WMi-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ec;&nbsp;'); }
.WMi-doctor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f0;&nbsp;'); }
.WMi-medical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f1;&nbsp;'); }
.WMi-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f3;&nbsp;'); }
.WMi-home-appliances { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f4;&nbsp;'); }
.WMi-edible { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f5;&nbsp;'); }
.WMi-plus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fe;&nbsp;'); }
.WMi-angle-double-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf100;&nbsp;'); }
.WMi-angle-double-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf101;&nbsp;'); }
.WMi-angle-double-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf102;&nbsp;'); }
.WMi-angle-double-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf103;&nbsp;'); }
.WMi-angle-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf104;&nbsp;'); }
.WMi-angle-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf105;&nbsp;'); }
.WMi-angle-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf106;&nbsp;'); }
.WMi-angle-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf107;&nbsp;'); }
.WMi-imac { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf108;&nbsp;'); }
.WMi-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf109;&nbsp;'); }
.WMi-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10a;&nbsp;'); }
.WMi-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10b;&nbsp;'); }
.WMi-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf111;&nbsp;'); }
.WMi-command-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf120;&nbsp;'); }
.WMi-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf121;&nbsp;'); }
.WMi-star-half-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf123;&nbsp;'); }
.WMi-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf124;&nbsp;'); }
.WMi-crop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf125;&nbsp;'); }
.WMi-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf127;&nbsp;'); }
.WMi-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf129;&nbsp;'); }
.WMi-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12a;&nbsp;'); }
.WMi-html5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13b;&nbsp;'); }
.WMi-css3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13c;&nbsp;'); }
.WMi-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf141;&nbsp;'); }
.WMi-ellipsis-vert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf142;&nbsp;'); }
.WMi-ok-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14a;&nbsp;'); }
.WMi-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14e;&nbsp;'); }
.WMi-doc-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15b;&nbsp;'); }
.WMi-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15c;&nbsp;'); }
.WMi-sort-alt-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf160;&nbsp;'); }
.WMi-sort-alt-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf161;&nbsp;'); }
.WMi-align-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16a;&nbsp;'); }
.WMi-dropbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16b;&nbsp;'); }
.WMi-instagram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16d;&nbsp;'); }
.WMi-windows { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17a;&nbsp;'); }
.WMi-content-cut { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf190;&nbsp;'); }
.WMi-plus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf196;&nbsp;'); }
.WMi-backup-restore { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19c;&nbsp;'); }
.WMi-education { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19d;&nbsp;'); }
.WMi-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19e;&nbsp;'); }
.WMi-google { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1a0;&nbsp;'); }
.WMi-paw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b0;&nbsp;'); }
.WMi-cube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b2;&nbsp;'); }
.WMi-cubes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b3;&nbsp;'); }
.WMi-vehicle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b9;&nbsp;'); }
.WMi-delivery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1ba;&nbsp;'); }
.WMi-database { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1c0;&nbsp;'); }
.WMi-codeopen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1cb;&nbsp;'); }
.WMi-paper-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1d8;&nbsp;'); }
.WMi-telegram-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1d9;&nbsp;'); }
.WMi-sliders { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1de;&nbsp;'); }
.WMi-sport-ball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1e3;&nbsp;'); }
.WMi-plug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1e6;&nbsp;'); }
.WMi-wifi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1eb;&nbsp;'); }
.WMi-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1f8;&nbsp;'); }
.WMi-engine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fa;&nbsp;'); }
.WMi-eyedropper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fb;&nbsp;'); }
.WMi-brush-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fc;&nbsp;'); }
.WMi-birthday { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fd;&nbsp;'); }
.WMi-chart-pie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf200;&nbsp;'); }
.WMi-chart-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf201;&nbsp;'); }
.WMi-toggle-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf204;&nbsp;'); }
.WMi-toggle-on { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf205;&nbsp;'); }
.WMi-diamond { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf219;&nbsp;'); }
.WMi-motorcycle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf21c;&nbsp;'); }
.WMi-heartbeat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf21e;&nbsp;'); }
.WMi-pinterest-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf231;&nbsp;'); }
.WMi-user-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf234;&nbsp;'); }
.WMi-user-times { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf235;&nbsp;'); }
.WMi-flip-to-back-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf247;&nbsp;'); }
.WMi-clone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf24d;&nbsp;'); }
.WMi-balance-scale { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf24e;&nbsp;'); }
.WMi-wikipedia { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf266;&nbsp;'); }
.WMi-television { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf26c;&nbsp;'); }
.WMi-industry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf275;&nbsp;'); }
.WMi-map-signs-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf277;&nbsp;'); }
.WMi-map-o-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf278;&nbsp;'); }
.WMi-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf279;&nbsp;'); }
.WMi-list-ul-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf27a;&nbsp;'); }
.WMi-edge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf282;&nbsp;'); }
.WMi-credit-card-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf283;&nbsp;'); }
.WMi-shopping-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf290;&nbsp;'); }
.WMi-question-circle-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf29c;&nbsp;'); }
.WMi-envelope-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2b6;&nbsp;'); }
.WMi-envelope-open-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2b7;&nbsp;'); }
.WMi-telegram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c6;&nbsp;'); }
.WMi-hanger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c8;&nbsp;'); }
.WMi-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2dc;&nbsp;'); }
.WMi-image-filter-none { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2f6;&nbsp;'); }
.WMi-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf300;&nbsp;'); }
.WMi-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf302;&nbsp;'); }
.WMi-linkedin-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf30c;&nbsp;'); }
.WMi-ruler-combined { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf318;&nbsp;'); }
.WMi-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf31a;&nbsp;'); }
.WMi-javascript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf31e;&nbsp;'); }
.WMi-supermarket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf321;&nbsp;'); }
.WMi-win8 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf325;&nbsp;'); }
.WMi-instagram-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf32d;&nbsp;'); }
.WMi-message-reply-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf368;&nbsp;'); }
.WMi-message-text-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf36a;&nbsp;'); }
.WMi-cloud-upload-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf382;&nbsp;'); }
.WMi-freight-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf3f0;&nbsp;'); }
.WMi-tree { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf405;&nbsp;'); }
.WMi-school { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf474;&nbsp;'); }
.WMi-selection { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf489;&nbsp;'); }
.WMi-furniture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4b9;&nbsp;'); }
.WMi-user-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4fc;&nbsp;'); }
.WMi-brightness-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf504;&nbsp;'); }
.WMi-chart-bar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf526;&nbsp;'); }
.WMi-view-carousel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56c;&nbsp;'); }
.WMi-view-dashboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56e;&nbsp;'); }
.WMi-view-day { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56f;&nbsp;'); }
.WMi-view-quilt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf574;&nbsp;'); }
.WMi-wrench-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b7;&nbsp;'); }
.WMi-Scientific { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ed;&nbsp;'); }
.WMi-advertisement-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f7;&nbsp;'); }
.WMi-advertisement-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f8;&nbsp;'); }
.WMi-chat-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fa;&nbsp;'); }
.WMi-chat-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fb;&nbsp;'); }
.WMi-send-message { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fc;&nbsp;'); }
.WMi-gold-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fd;&nbsp;'); }
.WMi-silver-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fe;&nbsp;'); }
.WMi-bronze-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ff;&nbsp;'); }
.WMi-globe-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf600;&nbsp;'); }
.WMi-symbol { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf601;&nbsp;'); }
.WMi-yoga-posture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf603;&nbsp;'); }
.WMi-money-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf604;&nbsp;'); }
.WMi-coffee-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf605;&nbsp;'); }
.WMi-cardiogram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf607;&nbsp;'); }
.WMi-iphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf608;&nbsp;'); }
.WMi-menu-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf609;&nbsp;'); }
.WMi-text-fa { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60a;&nbsp;'); }
.WMi-volume-level { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60b;&nbsp;'); }
.WMi-headphones-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60c;&nbsp;'); }
.WMi-dumbbell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60d;&nbsp;'); }
.WMi-video-camera-(1) { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60e;&nbsp;'); }
.WMi-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60f;&nbsp;'); }
.WMi-shield-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf610;&nbsp;'); }
.WMi-shield-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf611;&nbsp;'); }
.WMi-tags-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf612;&nbsp;'); }
.WMi-whatsapp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf613;&nbsp;'); }
.WMi-whatsapp-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf614;&nbsp;'); }
.WMi-guarantee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf615;&nbsp;'); }
.WMi-guarantee-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf616;&nbsp;'); }
.WMi-verified { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf617;&nbsp;'); }
.WMi-tags-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf618;&nbsp;'); }
.WMi-mask { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf619;&nbsp;'); }
.WMi-account-settings-variant-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf631;&nbsp;'); }
.WMi-shape-rectangle-plus-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf65f;&nbsp;'); }
.WMi-beauty-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf665;&nbsp;'); }
.WMi-kaaba { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf66b;&nbsp;'); }
.WMi-star-and-crescent { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf699;&nbsp;'); }
.WMi-lamp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf6b4;&nbsp;'); }
.WMi-account-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf6bb;&nbsp;'); }
.WMi-view-parallel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf727;&nbsp;'); }
.WMi-cancel-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf739;&nbsp;'); }
.WMi-truck-fast { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf787;&nbsp;'); }
.WMi-heart-broken { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7a9;&nbsp;'); }
.WMi-money-check-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7c2;&nbsp;'); }

@ -1,620 +0,0 @@
@font-face {
font-family: 'fontello';
src: url('../font/fontello.eot?11153377');
src: url('../font/fontello.eot?11153377#iefix') format('embedded-opentype'),
url('../font/fontello.woff2?11153377') format('woff2'),
url('../font/fontello.woff?11153377') format('woff'),
url('../font/fontello.ttf?11153377') format('truetype'),
url('../font/fontello.svg?11153377#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'fontello';
src: url('../font/fontello.svg?11153377#fontello') format('svg');
}
}
*/
[class^="WMi-"]:before, [class*=" WMi-"]:before {
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: never;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: .2em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.WMi-th-large-1:before { content: '\77'; } /* 'w' */
.WMi-fast-fw:before { content: '\e763'; } /* '' */
.WMi-ok:before { content: '\e800'; } /* '' */
.WMi-mail:before { content: '\e801'; } /* '' */
.WMi-search:before { content: '\e802'; } /* '' */
.WMi-lock:before { content: '\e803'; } /* '' */
.WMi-star-half:before { content: '\e804'; } /* '' */
.WMi-attach-1:before { content: '\e805'; } /* '' */
.WMi-star:before { content: '\e806'; } /* '' */
.WMi-bookmark:before { content: '\e807'; } /* '' */
.WMi-heart:before { content: '\e808'; } /* '' */
.WMi-download:before { content: '\e809'; } /* '' */
.WMi-cancel:before { content: '\e80a'; } /* '' */
.WMi-trash-empty:before { content: '\e80b'; } /* '' */
.WMi-lock-open:before { content: '\e80c'; } /* '' */
.WMi-resize-vertical:before { content: '\e80d'; } /* '' */
.WMi-link:before { content: '\e80e'; } /* '' */
.WMi-left-open:before { content: '\e80f'; } /* '' */
.WMi-upload:before { content: '\e810'; } /* '' */
.WMi-up-open:before { content: '\e811'; } /* '' */
.WMi-tag-1:before { content: '\e812'; } /* '' */
.WMi-indent-right:before { content: '\e813'; } /* '' */
.WMi-cog:before { content: '\e814'; } /* '' */
.WMi-star-empty:before { content: '\e815'; } /* '' */
.WMi-truck:before { content: '\e816'; } /* '' */
.WMi-down-open:before { content: '\e817'; } /* '' */
.WMi-picture:before { content: '\e818'; } /* '' */
.WMi-right-open:before { content: '\e819'; } /* '' */
.WMi-music:before { content: '\e81a'; } /* '' */
.WMi-heart-empty:before { content: '\e81b'; } /* '' */
.WMi-temperatire:before { content: '\e81c'; } /* '' */
.WMi-comment:before { content: '\e81d'; } /* '' */
.WMi-indent-left:before { content: '\e81e'; } /* '' */
.WMi-briefcase:before { content: '\e81f'; } /* '' */
.WMi-cloud:before { content: '\e820'; } /* '' */
.WMi-globe:before { content: '\e821'; } /* '' */
.WMi-check:before { content: '\e822'; } /* '' */
.WMi-arrows-cw:before { content: '\e823'; } /* '' */
.WMi-check-1:before { content: '\e824'; } /* '' */
.WMi-attach:before { content: '\e825'; } /* '' */
.WMi-zoom-out:before { content: '\e826'; } /* '' */
.WMi-zoom-in:before { content: '\e827'; } /* '' */
.WMi-signal:before { content: '\e828'; } /* '' */
.WMi-layers:before { content: '\e829'; } /* '' */
.WMi-comment-1:before { content: '\e82a'; } /* '' */
.WMi-cancel-1:before { content: '\e82b'; } /* '' */
.WMi-emo-wink:before { content: '\e82c'; } /* '' */
.WMi-emo-happy:before { content: '\e82d'; } /* '' */
.WMi-macstore:before { content: '\e82e'; } /* '' */
.WMi-equalizer:before { content: '\e82f'; } /* '' */
.WMi-emo-coffee:before { content: '\e830'; } /* '' */
.WMi-emo-sleep:before { content: '\e831'; } /* '' */
.WMi-emo-unhappy:before { content: '\e832'; } /* '' */
.WMi-emo-wink2:before { content: '\e833'; } /* '' */
.WMi-emo-laugh:before { content: '\e834'; } /* '' */
.WMi-emo-squint:before { content: '\e835'; } /* '' */
.WMi-emo-angry:before { content: '\e836'; } /* '' */
.WMi-emo-sunglasses:before { content: '\e837'; } /* '' */
.WMi-off:before { content: '\e838'; } /* '' */
.WMi-asterisk:before { content: '\e839'; } /* '' */
.WMi-user-tag:before { content: '\e83a'; } /* '' */
.WMi-emo-displeased:before { content: '\e83b'; } /* '' */
.WMi-gift:before { content: '\e83c'; } /* '' */
.WMi-shop:before { content: '\e83d'; } /* '' */
.WMi-th:before { content: '\e83e'; } /* '' */
.WMi-basket-2:before { content: '\e83f'; } /* '' */
.WMi-shop-1:before { content: '\e840'; } /* '' */
.WMi-minus:before { content: '\e841'; } /* '' */
.WMi-rss-1:before { content: '\e842'; } /* '' */
.WMi-basket-1:before { content: '\e843'; } /* '' */
.WMi-chat:before { content: '\e844'; } /* '' */
.WMi-home:before { content: '\e845'; } /* '' */
.WMi-tags-1:before { content: '\e846'; } /* '' */
.WMi-plus:before { content: '\e847'; } /* '' */
.WMi-retweet:before { content: '\e848'; } /* '' */
.WMi-map-1:before { content: '\e849'; } /* '' */
.WMi-logout-1:before { content: '\e84a'; } /* '' */
.WMi-edit:before { content: '\e84b'; } /* '' */
.WMi-doc-landscape:before { content: '\e84c'; } /* '' */
.WMi-back-in-time:before { content: '\e84d'; } /* '' */
.WMi-gift-1:before { content: '\e84e'; } /* '' */
.WMi-logout:before { content: '\e84f'; } /* '' */
.WMi-chat-alt-1:before { content: '\e850'; } /* '' */
.WMi-switch:before { content: '\e851'; } /* '' */
.WMi-bank:before { content: '\e852'; } /* '' */
.WMi-location:before { content: '\e853'; } /* '' */
.WMi-art-gallery:before { content: '\e854'; } /* '' */
.WMi-level-down:before { content: '\e855'; } /* '' */
.WMi-phone:before { content: '\e856'; } /* '' */
.WMi-shuffle-1:before { content: '\e857'; } /* '' */
.WMi-help:before { content: '\e858'; } /* '' */
.WMi-phone-1:before { content: '\e859'; } /* '' */
.WMi-loop:before { content: '\e85a'; } /* '' */
.WMi-agriculture:before { content: '\e85b'; } /* '' */
.WMi-share:before { content: '\e85c'; } /* '' */
.WMi-warning-empty:before { content: '\e85d'; } /* '' */
.WMi-plus-alt:before { content: '\e85e'; } /* '' */
.WMi-credit-card:before { content: '\e85f'; } /* '' */
.WMi-shuffle:before { content: '\e860'; } /* '' */
.WMi-Clothes:before { content: '\e861'; } /* '' */
.WMi-sport-cup:before { content: '\e862'; } /* '' */
.WMi-wrench-1:before { content: '\e863'; } /* '' */
.WMi-marquee:before { content: '\e864'; } /* '' */
.WMi-emo-surprised:before { content: '\e865'; } /* '' */
.WMi-glyph-11:before { content: '\e866'; } /* '' */
.WMi-air-plane:before { content: '\e867'; } /* '' */
.WMi-glyph-48:before { content: '\e868'; } /* '' */
.WMi-wrench:before { content: '\e869'; } /* '' */
.WMi-Official:before { content: '\e86a'; } /* '' */
.WMi-advertising-1:before { content: '\e86b'; } /* '' */
.WMi-camera:before { content: '\e86c'; } /* '' */
.WMi-map-4:before { content: '\e86d'; } /* '' */
.WMi-pencil:before { content: '\e86e'; } /* '' */
.WMi-graduation-cap:before { content: '\e86f'; } /* '' */
.WMi-advertisement:before { content: '\e870'; } /* '' */
.WMi-filter:before { content: '\e871'; } /* '' */
.WMi-clock:before { content: '\e872'; } /* '' */
.WMi-glyph-25:before { content: '\e873'; } /* '' */
.WMi-user:before { content: '\e874'; } /* '' */
.WMi-users:before { content: '\e875'; } /* '' */
.WMi-crown-4:before { content: '\e876'; } /* '' */
.WMi-login:before { content: '\e877'; } /* '' */
.WMi-brush:before { content: '\e878'; } /* '' */
.WMi-map-o:before { content: '\e879'; } /* '' */
.WMi-flower:before { content: '\e87a'; } /* '' */
.WMi-camera-1:before { content: '\e87b'; } /* '' */
.WMi-calendar-1:before { content: '\e87c'; } /* '' */
.WMi-calendar-2:before { content: '\e87d'; } /* '' */
.WMi-doc-text-inv-1:before { content: '\e87e'; } /* '' */
.WMi-flight:before { content: '\e87f'; } /* '' */
.WMi-videocam:before { content: '\e880'; } /* '' */
.WMi-video:before { content: '\e881'; } /* '' */
.WMi-shop-3:before { content: '\e882'; } /* '' */
.WMi-glyph-30:before { content: '\e883'; } /* '' */
.WMi-glyph-27:before { content: '\e884'; } /* '' */
.WMi-glyph-26:before { content: '\e885'; } /* '' */
.WMi-glyph-29:before { content: '\e886'; } /* '' */
.WMi-glyph-32:before { content: '\e887'; } /* '' */
.WMi-glyph-31:before { content: '\e888'; } /* '' */
.WMi-glyph-36:before { content: '\e889'; } /* '' */
.WMi-glyph-33:before { content: '\e88a'; } /* '' */
.WMi-glyph-34:before { content: '\e88b'; } /* '' */
.WMi-glyph-38:before { content: '\e88c'; } /* '' */
.WMi-glyph-35:before { content: '\e88d'; } /* '' */
.WMi-glyph-40:before { content: '\e88e'; } /* '' */
.WMi-glyph-37:before { content: '\e88f'; } /* '' */
.WMi-glyph-42:before { content: '\e890'; } /* '' */
.WMi-glyph-39:before { content: '\e891'; } /* '' */
.WMi-glyph-44:before { content: '\e892'; } /* '' */
.WMi-glyph-41:before { content: '\e893'; } /* '' */
.WMi-glyph-43:before { content: '\e895'; } /* '' */
.WMi-gas-station:before { content: '\e896'; } /* '' */
.WMi-glyph-45:before { content: '\e897'; } /* '' */
.WMi-instagram-2:before { content: '\e898'; } /* '' */
.WMi-business-affiliate-network-2:before { content: '\e899'; } /* '' */
.WMi-globe-2:before { content: '\e89a'; } /* '' */
.WMi-bell:before { content: '\e89b'; } /* '' */
.WMi-code-1:before { content: '\e89c'; } /* '' */
.WMi-emo-tongue:before { content: '\e89d'; } /* '' */
.WMi-photography-2:before { content: '\e89e'; } /* '' */
.WMi-bank-1:before { content: '\e89f'; } /* '' */
.WMi-off-1:before { content: '\e8a0'; } /* '' */
.WMi-aparat:before { content: '\e8a1'; } /* '' */
.WMi-eye:before { content: '\e8a2'; } /* '' */
.WMi-youtube-play:before { content: '\e8a3'; } /* '' */
.WMi-info-2:before { content: '\e8a4'; } /* '' */
.WMi-cloud-1:before { content: '\e8a5'; } /* '' */
.WMi-skype:before { content: '\e8a6'; } /* '' */
.WMi-eye-off:before { content: '\e8a7'; } /* '' */
.WMi-percent:before { content: '\e8a8'; } /* '' */
.WMi-info-circled-alt:before { content: '\e8a9'; } /* '' */
.WMi-align-justify-1:before { content: '\e8aa'; } /* '' */
.WMi-to-end-alt:before { content: '\e8ab'; } /* '' */
.WMi-to-end:before { content: '\e8ac'; } /* '' */
.WMi-to-start:before { content: '\e8ad'; } /* '' */
.WMi-hourglass-1:before { content: '\e8ae'; } /* '' */
.WMi-users-cog:before { content: '\e8af'; } /* '' */
.WMi-to-start-alt:before { content: '\e8b0'; } /* '' */
.WMi-play:before { content: '\e8b1'; } /* '' */
.WMi-stop:before { content: '\e8b2'; } /* '' */
.WMi-align-center:before { content: '\e8b3'; } /* '' */
.WMi-doc-text:before { content: '\e8b5'; } /* '' */
.WMi-eject:before { content: '\e8b6'; } /* '' */
.WMi-crown:before { content: '\e8b7'; } /* '' */
.WMi-braille:before { content: '\e8b8'; } /* '' */
.WMi-user-md:before { content: '\e8b9'; } /* '' */
.WMi-fast-bw:before { content: '\e8ba'; } /* '' */
.WMi-align-left:before { content: '\e8bb'; } /* '' */
.WMi-user-nurse:before { content: '\e8bc'; } /* '' */
.WMi-pause:before { content: '\e8bd'; } /* '' */
.WMi-clock-1:before { content: '\e8be'; } /* '' */
.WMi-en-letters:before { content: '\e8bf'; } /* '' */
.WMi-user-graduate:before { content: '\e8c0'; } /* '' */
.WMi-sitemap:before { content: '\e8c1'; } /* '' */
.WMi-comment-processing-2:before { content: '\e8c2'; } /* '' */
.WMi-emo-saint:before { content: '\e8c3'; } /* '' */
.WMi-back:before { content: '\e8c4'; } /* '' */
.WMi-person:before { content: '\e8c5'; } /* '' */
.WMi-plus-outlined:before { content: '\e8c6'; } /* '' */
.WMi-comments:before { content: '\e8c7'; } /* '' */
.WMi-trash-alt:before { content: '\e8c8'; } /* '' */
.WMi-user-cog:before { content: '\e8c9'; } /* '' */
.WMi-user-friends:before { content: '\e8ca'; } /* '' */
.WMi-user-clock:before { content: '\e8cb'; } /* '' */
.WMi-ar-letters:before { content: '\e8cc'; } /* '' */
.WMi-transgender:before { content: '\e8cd'; } /* '' */
.WMi-user-tie:before { content: '\e8ce'; } /* '' */
.WMi-headphones-2:before { content: '\e8cf'; } /* '' */
.WMi-infinity-1:before { content: '\e8d1'; } /* '' */
.WMi-youtube:before { content: '\e8d2'; } /* '' */
.WMi-quote-left-alt:before { content: '\e8d3'; } /* '' */
.WMi-fa-letters:before { content: '\e8d4'; } /* '' */
.WMi-number:before { content: '\e8d5'; } /* '' */
.WMi-apple-alt:before { content: '\e8d6'; } /* '' */
.WMi-th-1:before { content: '\e8d8'; } /* '' */
.WMi-gender-female:before { content: '\e8d9'; } /* '' */
.WMi-user-shield:before { content: '\e8da'; } /* '' */
.WMi-max:before { content: '\e8dc'; } /* '' */
.WMi-comments-alt:before { content: '\e8dd'; } /* '' */
.WMi-color-palette:before { content: '\e8de'; } /* '' */
.WMi-user-lock:before { content: '\e8df'; } /* '' */
.WMi-wordpress:before { content: '\e8e0'; } /* '' */
.WMi-restroom:before { content: '\e8e5'; } /* '' */
.WMi-user-minus:before { content: '\e8e6'; } /* '' */
.WMi-eq:before { content: '\e8e7'; } /* '' */
.WMi-gift-3:before { content: '\e8e8'; } /* '' */
.WMi-location-arrow:before { content: '\e8e9'; } /* '' */
.WMi-glyph-28:before { content: '\e8ea'; } /* '' */
.WMi-pinterest:before { content: '\e8eb'; } /* '' */
.WMi-user-slash:before { content: '\e8ec'; } /* '' */
.WMi-willa-engine:before { content: '\e8ed'; } /* '' */
.WMi-sort-numeric-up:before { content: '\e8ee'; } /* '' */
.WMi-fish:before { content: '\e8ef'; } /* '' */
.WMi-min:before { content: '\e8f0'; } /* '' */
.WMi-sort-numeric-down:before { content: '\e8f1'; } /* '' */
.WMi-gender-male-2:before { content: '\e8f2'; } /* '' */
.WMi-undo-1:before { content: '\e8f3'; } /* '' */
.WMi-linkedin-3:before { content: '\e8f4'; } /* '' */
.WMi-sort-alphabetical:before { content: '\e8f5'; } /* '' */
.WMi-telegram-2:before { content: '\e8f6'; } /* '' */
.WMi-temperature-fahrenheit-2:before { content: '\e8f7'; } /* '' */
.WMi-infinity:before { content: '\e8f8'; } /* '' */
.WMi-quote-right-alt:before { content: '\e8f9'; } /* '' */
.WMi-linkedin-1:before { content: '\e8fa'; } /* '' */
.WMi-users-3:before { content: '\e8fb'; } /* '' */
.WMi-python:before { content: '\e8fc'; } /* '' */
.WMi-backspace:before { content: '\e8fd'; } /* '' */
.WMi-sim-card:before { content: '\e8fe'; } /* '' */
.WMi-graphic:before { content: '\e8ff'; } /* '' */
.WMi-php:before { content: '\e900'; } /* '' */
.WMi-comment-alt:before { content: '\e901'; } /* '' */
.WMi-emo-grin:before { content: '\e902'; } /* '' */
.WMi-temperature-celsius-2:before { content: '\e905'; } /* '' */
.WMi-theme:before { content: '\e908'; } /* '' */
.WMi-greater-than-equal:before { content: '\e90c'; } /* '' */
.WMi-mouse:before { content: '\e90d'; } /* '' */
.WMi-pizza-slice:before { content: '\e90e'; } /* '' */
.WMi-sd-card:before { content: '\e917'; } /* '' */
.WMi-archive:before { content: '\e919'; } /* '' */
.WMi-landmark:before { content: '\e91a'; } /* '' */
.WMi-car-crash:before { content: '\e91b'; } /* '' */
.WMi-car-side:before { content: '\e91c'; } /* '' */
.WMi-map-marked:before { content: '\e91d'; } /* '' */
.WMi-truck-monster:before { content: '\e92e'; } /* '' */
.WMi-equals:before { content: '\e93e'; } /* '' */
.WMi-internet-explorer:before { content: '\e948'; } /* '' */
.WMi-basket:before { content: '\e94b'; } /* '' */
.WMi-navigation:before { content: '\e94c'; } /* '' */
.WMi-drafting-compass:before { content: '\e953'; } /* '' */
.WMi-signal-1:before { content: '\e959'; } /* '' */
.WMi-envelope-open-text:before { content: '\e95b'; } /* '' */
.WMi-barcode:before { content: '\e961'; } /* '' */
.WMi-sort-numeric:before { content: '\e962'; } /* '' */
.WMi-sort-alpha-up-alt:before { content: '\e963'; } /* '' */
.WMi-sort-alpha-down:before { content: '\e964'; } /* '' */
.WMi-calendar-alt:before { content: '\e965'; } /* '' */
.WMi-calendar:before { content: '\e966'; } /* '' */
.WMi-quote-right:before { content: '\e967'; } /* '' */
.WMi-quote-left:before { content: '\e968'; } /* '' */
.WMi-radiation:before { content: '\e969'; } /* '' */
.WMi-pepper-hot:before { content: '\e96a'; } /* '' */
.WMi-hamburger:before { content: '\e96b'; } /* '' */
.WMi-list:before { content: '\e96c'; } /* '' */
.WMi-comment-2:before { content: '\e96d'; } /* '' */
.WMi-list-ol:before { content: '\e96e'; } /* '' */
.WMi-th-list:before { content: '\e96f'; } /* '' */
.WMi-percentage:before { content: '\e970'; } /* '' */
.WMi-trash-alt-4:before { content: '\e971'; } /* '' */
.WMi-plane-arrival:before { content: '\e972'; } /* '' */
.WMi-factory:before { content: '\e973'; } /* '' */
.WMi-helicopter:before { content: '\e974'; } /* '' */
.WMi-warehouse:before { content: '\e975'; } /* '' */
.WMi-transgender-1:before { content: '\e976'; } /* '' */
.WMi-map-signs:before { content: '\e977'; } /* '' */
.WMi-wifi-1:before { content: '\e978'; } /* '' */
.WMi-ruler-horizontal:before { content: '\e97a'; } /* '' */
.WMi-scale:before { content: '\e97b'; } /* '' */
.WMi-cylinder:before { content: '\e97c'; } /* '' */
.WMi-biking:before { content: '\e97d'; } /* '' */
.WMi-wheelchair:before { content: '\e97e'; } /* '' */
.WMi-folder:before { content: '\e97f'; } /* '' */
.WMi-chart-bar:before { content: '\e980'; } /* '' */
.WMi-cogs:before { content: '\e981'; } /* '' */
.WMi-cheese:before { content: '\e982'; } /* '' */
.WMi-sort-amount-down-alt-2:before { content: '\e984'; } /* '' */
.WMi-sort-amount-up-alt:before { content: '\e985'; } /* '' */
.WMi-bike:before { content: '\e986'; } /* '' */
.WMi-fire-alt:before { content: '\e987'; } /* '' */
.WMi-carrot:before { content: '\e988'; } /* '' */
.WMi-horse-head:before { content: '\e989'; } /* '' */
.WMi-cylinder-1:before { content: '\e98a'; } /* '' */
.WMi-pos:before { content: '\e98b'; } /* '' */
.WMi-pos-terminal:before { content: '\e98c'; } /* '' */
.WMi-ladder:before { content: '\e98d'; } /* '' */
.WMi-ice-cream:before { content: '\e98e'; } /* '' */
.WMi-oil-can:before { content: '\e98f'; } /* '' */
.WMi-spider:before { content: '\e990'; } /* '' */
.WMi-skull-crossbones:before { content: '\e991'; } /* '' */
.WMi-plane-departure:before { content: '\e992'; } /* '' */
.WMi-library-books:before { content: '\e993'; } /* '' */
.WMi-glass-martini-alt:before { content: '\e994'; } /* '' */
.WMi-shopping:before { content: '\e995'; } /* '' */
.WMi-taxi:before { content: '\e996'; } /* '' */
.WMi-lock-open-1:before { content: '\e997'; } /* '' */
.WMi-bed:before { content: '\e998'; } /* '' */
.WMi-fingerprint:before { content: '\e999'; } /* '' */
.WMi-shield:before { content: '\e99a'; } /* '' */
.WMi-shuttle-van:before { content: '\e99b'; } /* '' */
.WMi-mug-hot:before { content: '\e99c'; } /* '' */
.WMi-mosque:before { content: '\e99e'; } /* '' */
.WMi-tooth:before { content: '\e99f'; } /* '' */
.WMi-broadcast-tower:before { content: '\e9a0'; } /* '' */
.WMi-table-tennis:before { content: '\e9a1'; } /* '' */
.WMi-star-of-david:before { content: '\e9a2'; } /* '' */
.WMi-snowflake-o:before { content: '\e9a3'; } /* '' */
.WMi-th-large:before { content: '\e9a4'; } /* '' */
.WMi-wrench-2:before { content: '\e9a5'; } /* '' */
.WMi-shopping-cart:before { content: '\e9a9'; } /* '' */
.WMi-cart:before { content: '\e9aa'; } /* '' */
.WMi-communications:before { content: '\e9ab'; } /* '' */
.WMi-home-heart:before { content: '\e9ac'; } /* '' */
.WMi-hdd-1:before { content: '\e9ae'; } /* '' */
.WMi-location-on-map:before { content: '\e9af'; } /* '' */
.WMi-donut:before { content: '\e9b0'; } /* '' */
.WMi-less-than-equal:before { content: '\e9b1'; } /* '' */
.WMi-not-equal:before { content: '\e9b2'; } /* '' */
.WMi-cloud-download-alt:before { content: '\e9b3'; } /* '' */
.WMi-equal-alt:before { content: '\e9b4'; } /* '' */
.WMi-align-justify:before { content: '\e9b5'; } /* '' */
.WMi-tag:before { content: '\e9b7'; } /* '' */
.WMi-cash:before { content: '\e9b8'; } /* '' */
.WMi-electronic:before { content: '\e9b9'; } /* '' */
.WMi-list-2:before { content: '\e9bc'; } /* '' */
.WMi-signature:before { content: '\e9be'; } /* '' */
.WMi-animation:before { content: '\e9bf'; } /* '' */
.WMi-account-multiple-plus-1:before { content: '\e9c0'; } /* '' */
.WMi-account-key:before { content: '\e9c1'; } /* '' */
.WMi-shop-bag-2:before { content: '\e9c8'; } /* '' */
.WMi-open:before { content: '\e9cd'; } /* '' */
.WMi-alarm-plus:before { content: '\e9db'; } /* '' */
.WMi-account-multiple-minus-1:before { content: '\e9df'; } /* '' */
.WMi-icons:before { content: '\e9e3'; } /* '' */
.WMi-pause-1:before { content: '\f00e'; } /* '' */
.WMi-play-1:before { content: '\f00f'; } /* '' */
.WMi-to-end-1:before { content: '\f010'; } /* '' */
.WMi-to-start-1:before { content: '\f011'; } /* '' */
.WMi-account-off:before { content: '\f012'; } /* '' */
.WMi-account-plus:before { content: '\f014'; } /* '' */
.WMi-account-remove:before { content: '\f015'; } /* '' */
.WMi-account-switch:before { content: '\f019'; } /* '' */
.WMi-hash:before { content: '\f029'; } /* '' */
.WMi-alert-outline:before { content: '\f02a'; } /* '' */
.WMi-book:before { content: '\f02d'; } /* '' */
.WMi-food:before { content: '\f02f'; } /* '' */
.WMi-mobile-phone:before { content: '\f034'; } /* '' */
.WMi-apple:before { content: '\f035'; } /* '' */
.WMi-brightness:before { content: '\f037'; } /* '' */
.WMi-weight-kilogram:before { content: '\f05c'; } /* '' */
.WMi-stop-1:before { content: '\f080'; } /* '' */
.WMi-link-ext:before { content: '\f08e'; } /* '' */
.WMi-check-empty:before { content: '\f096'; } /* '' */
.WMi-bookmark-empty:before { content: '\f097'; } /* '' */
.WMi-twitter-1:before { content: '\f099'; } /* '' */
.WMi-rss:before { content: '\f09e'; } /* '' */
.WMi-hdd:before { content: '\f0a0'; } /* '' */
.WMi-resize-full-alt:before { content: '\f0b2'; } /* '' */
.WMi-beaker:before { content: '\f0c3'; } /* '' */
.WMi-menu:before { content: '\f0c9'; } /* '' */
.WMi-magic:before { content: '\f0d0'; } /* '' */
.WMi-gplus:before { content: '\f0d5'; } /* '' */
.WMi-WM-logo:before { content: '\f0da'; } /* '' */
.WMi-sort:before { content: '\f0dc'; } /* '' */
.WMi-chronometer-2:before { content: '\f0dd'; } /* '' */
.WMi-clothes:before { content: '\f0de'; } /* '' */
.WMi-mail-alt:before { content: '\f0e0'; } /* '' */
.WMi-cleaning:before { content: '\f0e2'; } /* '' */
.WMi-cargo-ship:before { content: '\f0e3'; } /* '' */
.WMi-wa-fit-2:before { content: '\f0e7'; } /* '' */
.WMi-exchange:before { content: '\f0ec'; } /* '' */
.WMi-doctor:before { content: '\f0f0'; } /* '' */
.WMi-medical:before { content: '\f0f1'; } /* '' */
.WMi-bell-alt:before { content: '\f0f3'; } /* '' */
.WMi-home-appliances:before { content: '\f0f4'; } /* '' */
.WMi-edible:before { content: '\f0f5'; } /* '' */
.WMi-plus-squared:before { content: '\f0fe'; } /* '' */
.WMi-angle-double-left:before { content: '\f100'; } /* '' */
.WMi-angle-double-right:before { content: '\f101'; } /* '' */
.WMi-angle-double-up:before { content: '\f102'; } /* '' */
.WMi-angle-double-down:before { content: '\f103'; } /* '' */
.WMi-angle-left:before { content: '\f104'; } /* '' */
.WMi-angle-right:before { content: '\f105'; } /* '' */
.WMi-angle-up:before { content: '\f106'; } /* '' */
.WMi-angle-down:before { content: '\f107'; } /* '' */
.WMi-imac:before { content: '\f108'; } /* '' */
.WMi-laptop:before { content: '\f109'; } /* '' */
.WMi-tablet:before { content: '\f10a'; } /* '' */
.WMi-mobile:before { content: '\f10b'; } /* '' */
.WMi-circle:before { content: '\f111'; } /* '' */
.WMi-command-line:before { content: '\f120'; } /* '' */
.WMi-code:before { content: '\f121'; } /* '' */
.WMi-star-half-alt:before { content: '\f123'; } /* '' */
.WMi-direction:before { content: '\f124'; } /* '' */
.WMi-crop-1:before { content: '\f125'; } /* '' */
.WMi-unlink:before { content: '\f127'; } /* '' */
.WMi-info:before { content: '\f129'; } /* '' */
.WMi-attention-alt:before { content: '\f12a'; } /* '' */
.WMi-html5:before { content: '\f13b'; } /* '' */
.WMi-css3:before { content: '\f13c'; } /* '' */
.WMi-ellipsis:before { content: '\f141'; } /* '' */
.WMi-ellipsis-vert:before { content: '\f142'; } /* '' */
.WMi-ok-squared:before { content: '\f14a'; } /* '' */
.WMi-compass:before { content: '\f14e'; } /* '' */
.WMi-doc-inv:before { content: '\f15b'; } /* '' */
.WMi-doc-text-inv:before { content: '\f15c'; } /* '' */
.WMi-sort-alt-up:before { content: '\f160'; } /* '' */
.WMi-sort-alt-down:before { content: '\f161'; } /* '' */
.WMi-align-right:before { content: '\f16a'; } /* '' */
.WMi-dropbox:before { content: '\f16b'; } /* '' */
.WMi-instagram:before { content: '\f16d'; } /* '' */
.WMi-windows:before { content: '\f17a'; } /* '' */
.WMi-content-cut:before { content: '\f190'; } /* '' */
.WMi-plus-squared-alt:before { content: '\f196'; } /* '' */
.WMi-backup-restore:before { content: '\f19c'; } /* '' */
.WMi-education:before { content: '\f19d'; } /* '' */
.WMi-crop:before { content: '\f19e'; } /* '' */
.WMi-google:before { content: '\f1a0'; } /* '' */
.WMi-paw:before { content: '\f1b0'; } /* '' */
.WMi-cube:before { content: '\f1b2'; } /* '' */
.WMi-cubes:before { content: '\f1b3'; } /* '' */
.WMi-vehicle:before { content: '\f1b9'; } /* '' */
.WMi-delivery:before { content: '\f1ba'; } /* '' */
.WMi-database:before { content: '\f1c0'; } /* '' */
.WMi-codeopen:before { content: '\f1cb'; } /* '' */
.WMi-paper-plane:before { content: '\f1d8'; } /* '' */
.WMi-telegram-1:before { content: '\f1d9'; } /* '' */
.WMi-sliders:before { content: '\f1de'; } /* '' */
.WMi-sport-ball:before { content: '\f1e3'; } /* '' */
.WMi-plug:before { content: '\f1e6'; } /* '' */
.WMi-wifi:before { content: '\f1eb'; } /* '' */
.WMi-trash:before { content: '\f1f8'; } /* '' */
.WMi-engine:before { content: '\f1fa'; } /* '' */
.WMi-eyedropper:before { content: '\f1fb'; } /* '' */
.WMi-brush-1:before { content: '\f1fc'; } /* '' */
.WMi-birthday:before { content: '\f1fd'; } /* '' */
.WMi-chart-pie:before { content: '\f200'; } /* '' */
.WMi-chart-line:before { content: '\f201'; } /* '' */
.WMi-toggle-off:before { content: '\f204'; } /* '' */
.WMi-toggle-on:before { content: '\f205'; } /* '' */
.WMi-diamond:before { content: '\f219'; } /* '' */
.WMi-motorcycle:before { content: '\f21c'; } /* '' */
.WMi-heartbeat:before { content: '\f21e'; } /* '' */
.WMi-pinterest-1:before { content: '\f231'; } /* '' */
.WMi-user-plus:before { content: '\f234'; } /* '' */
.WMi-user-times:before { content: '\f235'; } /* '' */
.WMi-flip-to-back-2:before { content: '\f247'; } /* '' */
.WMi-clone:before { content: '\f24d'; } /* '' */
.WMi-balance-scale:before { content: '\f24e'; } /* '' */
.WMi-wikipedia:before { content: '\f266'; } /* '' */
.WMi-television:before { content: '\f26c'; } /* '' */
.WMi-industry:before { content: '\f275'; } /* '' */
.WMi-map-signs-1:before { content: '\f277'; } /* '' */
.WMi-map-o-1:before { content: '\f278'; } /* '' */
.WMi-map:before { content: '\f279'; } /* '' */
.WMi-list-ul-2:before { content: '\f27a'; } /* '' */
.WMi-edge:before { content: '\f282'; } /* '' */
.WMi-credit-card-alt:before { content: '\f283'; } /* '' */
.WMi-shopping-bag:before { content: '\f290'; } /* '' */
.WMi-question-circle-o:before { content: '\f29c'; } /* '' */
.WMi-envelope-open:before { content: '\f2b6'; } /* '' */
.WMi-envelope-open-o:before { content: '\f2b7'; } /* '' */
.WMi-telegram:before { content: '\f2c6'; } /* '' */
.WMi-hanger:before { content: '\f2c8'; } /* '' */
.WMi-text:before { content: '\f2dc'; } /* '' */
.WMi-image-filter-none:before { content: '\f2f6'; } /* '' */
.WMi-facebook:before { content: '\f300'; } /* '' */
.WMi-twitter:before { content: '\f302'; } /* '' */
.WMi-linkedin-squared:before { content: '\f30c'; } /* '' */
.WMi-ruler-combined:before { content: '\f318'; } /* '' */
.WMi-linkedin:before { content: '\f31a'; } /* '' */
.WMi-javascript:before { content: '\f31e'; } /* '' */
.WMi-supermarket:before { content: '\f321'; } /* '' */
.WMi-win8:before { content: '\f325'; } /* '' */
.WMi-instagram-1:before { content: '\f32d'; } /* '' */
.WMi-message-reply-text:before { content: '\f368'; } /* '' */
.WMi-message-text-outline:before { content: '\f36a'; } /* '' */
.WMi-cloud-upload-alt:before { content: '\f382'; } /* '' */
.WMi-freight-truck:before { content: '\f3f0'; } /* '' */
.WMi-tree:before { content: '\f405'; } /* '' */
.WMi-school:before { content: '\f474'; } /* '' */
.WMi-selection:before { content: '\f489'; } /* '' */
.WMi-furniture:before { content: '\f4b9'; } /* '' */
.WMi-user-check:before { content: '\f4fc'; } /* '' */
.WMi-brightness-1:before { content: '\f504'; } /* '' */
.WMi-chart-bar-1:before { content: '\f526'; } /* '' */
.WMi-view-carousel:before { content: '\f56c'; } /* '' */
.WMi-view-dashboard:before { content: '\f56e'; } /* '' */
.WMi-view-day:before { content: '\f56f'; } /* '' */
.WMi-view-quilt:before { content: '\f574'; } /* '' */
.WMi-wrench-3:before { content: '\f5b7'; } /* '' */
.WMi-Scientific:before { content: '\f5ed'; } /* '' */
.WMi-advertisement-2:before { content: '\f5f7'; } /* '' */
.WMi-advertisement-1:before { content: '\f5f8'; } /* '' */
.WMi-chat-1:before { content: '\f5fa'; } /* '' */
.WMi-chat-alt:before { content: '\f5fb'; } /* '' */
.WMi-send-message:before { content: '\f5fc'; } /* '' */
.WMi-gold-medal:before { content: '\f5fd'; } /* '' */
.WMi-silver-medal:before { content: '\f5fe'; } /* '' */
.WMi-bronze-medal:before { content: '\f5ff'; } /* '' */
.WMi-globe-1:before { content: '\f600'; } /* '' */
.WMi-symbol:before { content: '\f601'; } /* '' */
.WMi-yoga-posture:before { content: '\f603'; } /* '' */
.WMi-money-copy:before { content: '\f604'; } /* '' */
.WMi-coffee-2:before { content: '\f605'; } /* '' */
.WMi-cardiogram:before { content: '\f607'; } /* '' */
.WMi-iphone:before { content: '\f608'; } /* '' */
.WMi-menu-2:before { content: '\f609'; } /* '' */
.WMi-text-fa:before { content: '\f60a'; } /* '' */
.WMi-volume-level:before { content: '\f60b'; } /* '' */
.WMi-headphones-1:before { content: '\f60c'; } /* '' */
.WMi-dumbbell:before { content: '\f60d'; } /* '' */
.WMi-video-camera-(1):before { content: '\f60e'; } /* '' */
.WMi-headphones:before { content: '\f60f'; } /* '' */
.WMi-shield-copy:before { content: '\f610'; } /* '' */
.WMi-shield-2:before { content: '\f611'; } /* '' */
.WMi-tags-alt:before { content: '\f612'; } /* '' */
.WMi-whatsapp:before { content: '\f613'; } /* '' */
.WMi-whatsapp-alt:before { content: '\f614'; } /* '' */
.WMi-guarantee:before { content: '\f615'; } /* '' */
.WMi-guarantee-1:before { content: '\f616'; } /* '' */
.WMi-verified:before { content: '\f617'; } /* '' */
.WMi-tags-2:before { content: '\f618'; } /* '' */
.WMi-mask:before { content: '\f619'; } /* '' */
.WMi-account-settings-variant-1:before { content: '\f631'; } /* '' */
.WMi-shape-rectangle-plus-2:before { content: '\f65f'; } /* '' */
.WMi-beauty-3:before { content: '\f665'; } /* '' */
.WMi-kaaba:before { content: '\f66b'; } /* '' */
.WMi-star-and-crescent:before { content: '\f699'; } /* '' */
.WMi-lamp:before { content: '\f6b4'; } /* '' */
.WMi-account-edit:before { content: '\f6bb'; } /* '' */
.WMi-view-parallel:before { content: '\f727'; } /* '' */
.WMi-cancel-2:before { content: '\f739'; } /* '' */
.WMi-truck-fast:before { content: '\f787'; } /* '' */
.WMi-heart-broken:before { content: '\f7a9'; } /* '' */
.WMi-money-check-alt:before { content: '\f7c2'; } /* '' */

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 256 KiB

@ -71,7 +71,7 @@
.WMi-basket-1:before { content: '\e843'; } /* '' */
.WMi-chat:before { content: '\e844'; } /* '' */
.WMi-home:before { content: '\e845'; } /* '' */
.WMi-tags:before { content: '\e846'; } /* '' */
.WMi-tags-1:before { content: '\e846'; } /* '' */
.WMi-plus:before { content: '\e847'; } /* '' */
.WMi-retweet:before { content: '\e848'; } /* '' */
.WMi-map-1:before { content: '\e849'; } /* '' */
@ -106,7 +106,7 @@
.WMi-glyph-11:before { content: '\e866'; } /* '' */
.WMi-air-plane:before { content: '\e867'; } /* '' */
.WMi-glyph-48:before { content: '\e868'; } /* '' */
.WMi-Repairing:before { content: '\e869'; } /* '' */
.WMi-wrench:before { content: '\e869'; } /* '' */
.WMi-Official:before { content: '\e86a'; } /* '' */
.WMi-advertising-1:before { content: '\e86b'; } /* '' */
.WMi-camera:before { content: '\e86c'; } /* '' */
@ -129,8 +129,8 @@
.WMi-calendar-2:before { content: '\e87d'; } /* '' */
.WMi-doc-text-inv-1:before { content: '\e87e'; } /* '' */
.WMi-flight:before { content: '\e87f'; } /* '' */
.WMi-videocam-1:before { content: '\e880'; } /* '' */
.WMi-video-1:before { content: '\e881'; } /* '' */
.WMi-videocam:before { content: '\e880'; } /* '' */
.WMi-video:before { content: '\e881'; } /* '' */
.WMi-shop-3:before { content: '\e882'; } /* '' */
.WMi-glyph-30:before { content: '\e883'; } /* '' */
.WMi-glyph-27:before { content: '\e884'; } /* '' */
@ -152,7 +152,7 @@
.WMi-glyph-43:before { content: '\e895'; } /* '' */
.WMi-gas-station:before { content: '\e896'; } /* '' */
.WMi-glyph-45:before { content: '\e897'; } /* '' */
.WMi-instagram-3:before { content: '\e898'; } /* '' */
.WMi-instagram-2:before { content: '\e898'; } /* '' */
.WMi-business-affiliate-network-2:before { content: '\e899'; } /* '' */
.WMi-globe-2:before { content: '\e89a'; } /* '' */
.WMi-bell:before { content: '\e89b'; } /* '' */
@ -161,14 +161,14 @@
.WMi-photography-2:before { content: '\e89e'; } /* '' */
.WMi-bank-1:before { content: '\e89f'; } /* '' */
.WMi-off-1:before { content: '\e8a0'; } /* '' */
.WMi-aparat-2:before { content: '\e8a1'; } /* '' */
.WMi-aparat:before { content: '\e8a1'; } /* '' */
.WMi-eye:before { content: '\e8a2'; } /* '' */
.WMi-youtube-play:before { content: '\e8a3'; } /* '' */
.WMi-info-2:before { content: '\e8a4'; } /* '' */
.WMi-cloud-1:before { content: '\e8a5'; } /* '' */
.WMi-skype:before { content: '\e8a6'; } /* '' */
.WMi-eye-off:before { content: '\e8a7'; } /* '' */
.WMi-percent-2:before { content: '\e8a8'; } /* '' */
.WMi-percent:before { content: '\e8a8'; } /* '' */
.WMi-info-circled-alt:before { content: '\e8a9'; } /* '' */
.WMi-align-justify-1:before { content: '\e8aa'; } /* '' */
.WMi-to-end-alt:before { content: '\e8ab'; } /* '' */
@ -179,17 +179,17 @@
.WMi-to-start-alt:before { content: '\e8b0'; } /* '' */
.WMi-play:before { content: '\e8b1'; } /* '' */
.WMi-stop:before { content: '\e8b2'; } /* '' */
.WMi-align-center-2:before { content: '\e8b3'; } /* '' */
.WMi-align-center:before { content: '\e8b3'; } /* '' */
.WMi-doc-text:before { content: '\e8b5'; } /* '' */
.WMi-eject:before { content: '\e8b6'; } /* '' */
.WMi-Beauty-1:before { content: '\e8b7'; } /* '' */
.WMi-crown:before { content: '\e8b7'; } /* '' */
.WMi-braille:before { content: '\e8b8'; } /* '' */
.WMi-user-md:before { content: '\e8b9'; } /* '' */
.WMi-fast-bw:before { content: '\e8ba'; } /* '' */
.WMi-align-left:before { content: '\e8bb'; } /* '' */
.WMi-user-nurse:before { content: '\e8bc'; } /* '' */
.WMi-pause:before { content: '\e8bd'; } /* '' */
.WMi-clock-3:before { content: '\e8be'; } /* '' */
.WMi-clock-1:before { content: '\e8be'; } /* '' */
.WMi-en-letters:before { content: '\e8bf'; } /* '' */
.WMi-user-graduate:before { content: '\e8c0'; } /* '' */
.WMi-sitemap:before { content: '\e8c1'; } /* '' */
@ -206,11 +206,11 @@
.WMi-ar-letters:before { content: '\e8cc'; } /* '' */
.WMi-transgender:before { content: '\e8cd'; } /* '' */
.WMi-user-tie:before { content: '\e8ce'; } /* '' */
.WMi-headphones:before { content: '\e8cf'; } /* '' */
.WMi-headphones-2:before { content: '\e8cf'; } /* '' */
.WMi-infinity-1:before { content: '\e8d1'; } /* '' */
.WMi-youtube-1:before { content: '\e8d2'; } /* '' */
.WMi-youtube:before { content: '\e8d2'; } /* '' */
.WMi-quote-left-alt:before { content: '\e8d3'; } /* '' */
.WMi-fa-letters-1:before { content: '\e8d4'; } /* '' */
.WMi-fa-letters:before { content: '\e8d4'; } /* '' */
.WMi-number:before { content: '\e8d5'; } /* '' */
.WMi-apple-alt:before { content: '\e8d6'; } /* '' */
.WMi-th-1:before { content: '\e8d8'; } /* '' */
@ -223,7 +223,7 @@
.WMi-wordpress:before { content: '\e8e0'; } /* '' */
.WMi-restroom:before { content: '\e8e5'; } /* '' */
.WMi-user-minus:before { content: '\e8e6'; } /* '' */
.WMi-eq-1:before { content: '\e8e7'; } /* '' */
.WMi-eq:before { content: '\e8e7'; } /* '' */
.WMi-gift-3:before { content: '\e8e8'; } /* '' */
.WMi-location-arrow:before { content: '\e8e9'; } /* '' */
.WMi-glyph-28:before { content: '\e8ea'; } /* '' */
@ -238,7 +238,7 @@
.WMi-undo-1:before { content: '\e8f3'; } /* '' */
.WMi-linkedin-3:before { content: '\e8f4'; } /* '' */
.WMi-sort-alphabetical:before { content: '\e8f5'; } /* '' */
.WMi-telegram-5:before { content: '\e8f6'; } /* '' */
.WMi-telegram-2:before { content: '\e8f6'; } /* '' */
.WMi-temperature-fahrenheit-2:before { content: '\e8f7'; } /* '' */
.WMi-infinity:before { content: '\e8f8'; } /* '' */
.WMi-quote-right-alt:before { content: '\e8f9'; } /* '' */
@ -261,7 +261,7 @@
.WMi-landmark:before { content: '\e91a'; } /* '' */
.WMi-car-crash:before { content: '\e91b'; } /* '' */
.WMi-car-side:before { content: '\e91c'; } /* '' */
.WMi-map-marked-2:before { content: '\e91d'; } /* '' */
.WMi-map-marked:before { content: '\e91d'; } /* '' */
.WMi-truck-monster:before { content: '\e92e'; } /* '' */
.WMi-equals:before { content: '\e93e'; } /* '' */
.WMi-internet-explorer:before { content: '\e948'; } /* '' */
@ -269,7 +269,7 @@
.WMi-navigation:before { content: '\e94c'; } /* '' */
.WMi-drafting-compass:before { content: '\e953'; } /* '' */
.WMi-signal-1:before { content: '\e959'; } /* '' */
.WMi-envelope-open-tex:before { content: '\e95b'; } /* '' */
.WMi-envelope-open-text:before { content: '\e95b'; } /* '' */
.WMi-barcode:before { content: '\e961'; } /* '' */
.WMi-sort-numeric:before { content: '\e962'; } /* '' */
.WMi-sort-alpha-up-alt:before { content: '\e963'; } /* '' */
@ -288,9 +288,9 @@
.WMi-percentage:before { content: '\e970'; } /* '' */
.WMi-trash-alt-4:before { content: '\e971'; } /* '' */
.WMi-plane-arrival:before { content: '\e972'; } /* '' */
.WMi-factory-2:before { content: '\e973'; } /* '' */
.WMi-factory:before { content: '\e973'; } /* '' */
.WMi-helicopter:before { content: '\e974'; } /* '' */
.WMi-warehouse-2:before { content: '\e975'; } /* '' */
.WMi-warehouse:before { content: '\e975'; } /* '' */
.WMi-transgender-1:before { content: '\e976'; } /* '' */
.WMi-map-signs:before { content: '\e977'; } /* '' */
.WMi-wifi-1:before { content: '\e978'; } /* '' */
@ -317,7 +317,7 @@
.WMi-oil-can:before { content: '\e98f'; } /* '' */
.WMi-spider:before { content: '\e990'; } /* '' */
.WMi-skull-crossbones:before { content: '\e991'; } /* '' */
.WMi-plane-departure-2:before { content: '\e992'; } /* '' */
.WMi-plane-departure:before { content: '\e992'; } /* '' */
.WMi-library-books:before { content: '\e993'; } /* '' */
.WMi-glass-martini-alt:before { content: '\e994'; } /* '' */
.WMi-shopping:before { content: '\e995'; } /* '' */
@ -325,7 +325,7 @@
.WMi-lock-open-1:before { content: '\e997'; } /* '' */
.WMi-bed:before { content: '\e998'; } /* '' */
.WMi-fingerprint:before { content: '\e999'; } /* '' */
.WMi-shield-2:before { content: '\e99a'; } /* '' */
.WMi-shield:before { content: '\e99a'; } /* '' */
.WMi-shuttle-van:before { content: '\e99b'; } /* '' */
.WMi-mug-hot:before { content: '\e99c'; } /* '' */
.WMi-mosque:before { content: '\e99e'; } /* '' */
@ -341,7 +341,7 @@
.WMi-communications:before { content: '\e9ab'; } /* '' */
.WMi-home-heart:before { content: '\e9ac'; } /* '' */
.WMi-hdd-1:before { content: '\e9ae'; } /* '' */
.WMi-map-2:before { content: '\e9af'; } /* '' */
.WMi-location-on-map:before { content: '\e9af'; } /* '' */
.WMi-donut:before { content: '\e9b0'; } /* '' */
.WMi-less-than-equal:before { content: '\e9b1'; } /* '' */
.WMi-not-equal:before { content: '\e9b2'; } /* '' */
@ -357,7 +357,7 @@
.WMi-account-multiple-plus-1:before { content: '\e9c0'; } /* '' */
.WMi-account-key:before { content: '\e9c1'; } /* '' */
.WMi-shop-bag-2:before { content: '\e9c8'; } /* '' */
.WMi-open-2:before { content: '\e9cd'; } /* '' */
.WMi-open:before { content: '\e9cd'; } /* '' */
.WMi-alarm-plus:before { content: '\e9db'; } /* '' */
.WMi-account-multiple-minus-1:before { content: '\e9df'; } /* '' */
.WMi-icons:before { content: '\e9e3'; } /* '' */
@ -372,7 +372,7 @@
.WMi-hash:before { content: '\f029'; } /* '' */
.WMi-alert-outline:before { content: '\f02a'; } /* '' */
.WMi-book:before { content: '\f02d'; } /* '' */
.WMi-food-1:before { content: '\f02f'; } /* '' */
.WMi-food:before { content: '\f02f'; } /* '' */
.WMi-mobile-phone:before { content: '\f034'; } /* '' */
.WMi-apple:before { content: '\f035'; } /* '' */
.WMi-brightness:before { content: '\f037'; } /* '' */
@ -395,7 +395,7 @@
.WMi-clothes:before { content: '\f0de'; } /* '' */
.WMi-mail-alt:before { content: '\f0e0'; } /* '' */
.WMi-cleaning:before { content: '\f0e2'; } /* '' */
.WMi-sea-ship-with-containers-2:before { content: '\f0e3'; } /* '' */
.WMi-cargo-ship:before { content: '\f0e3'; } /* '' */
.WMi-wa-fit-2:before { content: '\f0e7'; } /* '' */
.WMi-exchange:before { content: '\f0ec'; } /* '' */
.WMi-doctor:before { content: '\f0f0'; } /* '' */
@ -448,7 +448,7 @@
.WMi-paw:before { content: '\f1b0'; } /* '' */
.WMi-cube:before { content: '\f1b2'; } /* '' */
.WMi-cubes:before { content: '\f1b3'; } /* '' */
.WMi-Vehicle:before { content: '\f1b9'; } /* '' */
.WMi-vehicle:before { content: '\f1b9'; } /* '' */
.WMi-delivery:before { content: '\f1ba'; } /* '' */
.WMi-database:before { content: '\f1c0'; } /* '' */
.WMi-codeopen:before { content: '\f1cb'; } /* '' */
@ -489,8 +489,8 @@
.WMi-question-circle-o:before { content: '\f29c'; } /* '' */
.WMi-envelope-open:before { content: '\f2b6'; } /* '' */
.WMi-envelope-open-o:before { content: '\f2b7'; } /* '' */
.WMi-telegram-4:before { content: '\f2c6'; } /* '' */
.WMi-hanger-2:before { content: '\f2c8'; } /* '' */
.WMi-telegram:before { content: '\f2c6'; } /* '' */
.WMi-hanger:before { content: '\f2c8'; } /* '' */
.WMi-text:before { content: '\f2dc'; } /* '' */
.WMi-image-filter-none:before { content: '\f2f6'; } /* '' */
.WMi-facebook:before { content: '\f300'; } /* '' */
@ -502,8 +502,8 @@
.WMi-supermarket:before { content: '\f321'; } /* '' */
.WMi-win8:before { content: '\f325'; } /* '' */
.WMi-instagram-1:before { content: '\f32d'; } /* '' */
.WMi-message-reply-text-2:before { content: '\f368'; } /* '' */
.WMi-message-text-outline-2:before { content: '\f36a'; } /* '' */
.WMi-message-reply-text:before { content: '\f368'; } /* '' */
.WMi-message-text-outline:before { content: '\f36a'; } /* '' */
.WMi-cloud-upload-alt:before { content: '\f382'; } /* '' */
.WMi-freight-truck:before { content: '\f3f0'; } /* '' */
.WMi-tree:before { content: '\f405'; } /* '' */
@ -517,13 +517,40 @@
.WMi-view-dashboard:before { content: '\f56e'; } /* '' */
.WMi-view-day:before { content: '\f56f'; } /* '' */
.WMi-view-quilt:before { content: '\f574'; } /* '' */
.WMi-wrench:before { content: '\f5b7'; } /* '' */
.WMi-wrench-3:before { content: '\f5b7'; } /* '' */
.WMi-Scientific:before { content: '\f5ed'; } /* '' */
.WMi-advertisement-2:before { content: '\f5f7'; } /* '' */
.WMi-advertisement-1:before { content: '\f5f8'; } /* '' */
.WMi-chat-1:before { content: '\f5fa'; } /* '' */
.WMi-chat-alt:before { content: '\f5fb'; } /* '' */
.WMi-send-message:before { content: '\f5fc'; } /* '' */
.WMi-gold-medal:before { content: '\f5fd'; } /* '' */
.WMi-silver-medal:before { content: '\f5fe'; } /* '' */
.WMi-bronze-medal:before { content: '\f5ff'; } /* '' */
.WMi-globe-1:before { content: '\f600'; } /* '' */
.WMi-symbol:before { content: '\f601'; } /* '' */
.WMi-yoga-posture:before { content: '\f603'; } /* '' */
.WMi-money-copy:before { content: '\f604'; } /* '' */
.WMi-coffee-2:before { content: '\f605'; } /* '' */
.WMi-cardiogram:before { content: '\f607'; } /* '' */
.WMi-iphone:before { content: '\f608'; } /* '' */
.WMi-menu-2:before { content: '\f609'; } /* '' */
.WMi-text-fa:before { content: '\f60a'; } /* '' */
.WMi-volume-level:before { content: '\f60b'; } /* '' */
.WMi-headphones-1:before { content: '\f60c'; } /* '' */
.WMi-dumbbell:before { content: '\f60d'; } /* '' */
.WMi-video-camera-(1):before { content: '\f60e'; } /* '' */
.WMi-headphones:before { content: '\f60f'; } /* '' */
.WMi-shield-copy:before { content: '\f610'; } /* '' */
.WMi-shield-2:before { content: '\f611'; } /* '' */
.WMi-tags-alt:before { content: '\f612'; } /* '' */
.WMi-whatsapp:before { content: '\f613'; } /* '' */
.WMi-whatsapp-alt:before { content: '\f614'; } /* '' */
.WMi-guarantee:before { content: '\f615'; } /* '' */
.WMi-guarantee-1:before { content: '\f616'; } /* '' */
.WMi-verified:before { content: '\f617'; } /* '' */
.WMi-tags-2:before { content: '\f618'; } /* '' */
.WMi-mask:before { content: '\f619'; } /* '' */
.WMi-account-settings-variant-1:before { content: '\f631'; } /* '' */
.WMi-shape-rectangle-plus-2:before { content: '\f65f'; } /* '' */
.WMi-beauty-3:before { content: '\f665'; } /* '' */
@ -533,6 +560,6 @@
.WMi-account-edit:before { content: '\f6bb'; } /* '' */
.WMi-view-parallel:before { content: '\f727'; } /* '' */
.WMi-cancel-2:before { content: '\f739'; } /* '' */
.WMi-truck-fast-2:before { content: '\f787'; } /* '' */
.WMi-truck-fast:before { content: '\f787'; } /* '' */
.WMi-heart-broken:before { content: '\f7a9'; } /* '' */
.WMi-money-check-alt:before { content: '\f7c2'; } /* '' */
.WMi-money-check-alt:before { content: '\f7c2'; } /* '' */

File diff suppressed because one or more lines are too long

@ -71,7 +71,7 @@
.WMi-basket-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
.WMi-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
.WMi-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
.WMi-tags { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.WMi-tags-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.WMi-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
.WMi-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
.WMi-map-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
@ -106,7 +106,7 @@
.WMi-glyph-11 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
.WMi-air-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
.WMi-glyph-48 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
.WMi-Repairing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.WMi-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.WMi-Official { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
.WMi-advertising-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
.WMi-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
@ -129,8 +129,8 @@
.WMi-calendar-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
.WMi-doc-text-inv-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
.WMi-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
.WMi-videocam-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.WMi-video-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.WMi-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.WMi-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.WMi-shop-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
.WMi-glyph-30 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
.WMi-glyph-27 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
@ -152,7 +152,7 @@
.WMi-glyph-43 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.WMi-gas-station { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.WMi-glyph-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
.WMi-instagram-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.WMi-instagram-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.WMi-business-affiliate-network-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
.WMi-globe-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
.WMi-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
@ -161,14 +161,14 @@
.WMi-photography-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
.WMi-bank-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
.WMi-off-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
.WMi-aparat-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
.WMi-aparat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
.WMi-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); }
.WMi-youtube-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a3;&nbsp;'); }
.WMi-info-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); }
.WMi-cloud-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); }
.WMi-skype { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); }
.WMi-eye-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); }
.WMi-percent-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
.WMi-percent { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
.WMi-info-circled-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); }
.WMi-align-justify-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8aa;&nbsp;'); }
.WMi-to-end-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); }
@ -179,17 +179,17 @@
.WMi-to-start-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); }
.WMi-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); }
.WMi-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); }
.WMi-align-center-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
.WMi-align-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
.WMi-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b5;&nbsp;'); }
.WMi-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b6;&nbsp;'); }
.WMi-Beauty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b7;&nbsp;'); }
.WMi-crown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b7;&nbsp;'); }
.WMi-braille { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b8;&nbsp;'); }
.WMi-user-md { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b9;&nbsp;'); }
.WMi-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ba;&nbsp;'); }
.WMi-align-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bb;&nbsp;'); }
.WMi-user-nurse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); }
.WMi-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); }
.WMi-clock-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
.WMi-clock-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
.WMi-en-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); }
.WMi-user-graduate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c0;&nbsp;'); }
.WMi-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); }
@ -206,11 +206,11 @@
.WMi-ar-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); }
.WMi-transgender { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cd;&nbsp;'); }
.WMi-user-tie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ce;&nbsp;'); }
.WMi-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); }
.WMi-headphones-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); }
.WMi-infinity-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); }
.WMi-youtube-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); }
.WMi-youtube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); }
.WMi-quote-left-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d3;&nbsp;'); }
.WMi-fa-letters-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
.WMi-fa-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
.WMi-number { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); }
.WMi-apple-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); }
.WMi-th-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); }
@ -223,7 +223,7 @@
.WMi-wordpress { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e0;&nbsp;'); }
.WMi-restroom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e5;&nbsp;'); }
.WMi-user-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e6;&nbsp;'); }
.WMi-eq-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e7;&nbsp;'); }
.WMi-eq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e7;&nbsp;'); }
.WMi-gift-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e8;&nbsp;'); }
.WMi-location-arrow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e9;&nbsp;'); }
.WMi-glyph-28 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ea;&nbsp;'); }
@ -238,7 +238,7 @@
.WMi-undo-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f3;&nbsp;'); }
.WMi-linkedin-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f4;&nbsp;'); }
.WMi-sort-alphabetical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f5;&nbsp;'); }
.WMi-telegram-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); }
.WMi-telegram-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); }
.WMi-temperature-fahrenheit-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f7;&nbsp;'); }
.WMi-infinity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f8;&nbsp;'); }
.WMi-quote-right-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f9;&nbsp;'); }
@ -261,7 +261,7 @@
.WMi-landmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91a;&nbsp;'); }
.WMi-car-crash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91b;&nbsp;'); }
.WMi-car-side { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91c;&nbsp;'); }
.WMi-map-marked-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91d;&nbsp;'); }
.WMi-map-marked { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91d;&nbsp;'); }
.WMi-truck-monster { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92e;&nbsp;'); }
.WMi-equals { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93e;&nbsp;'); }
.WMi-internet-explorer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe948;&nbsp;'); }
@ -269,7 +269,7 @@
.WMi-navigation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94c;&nbsp;'); }
.WMi-drafting-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe953;&nbsp;'); }
.WMi-signal-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe959;&nbsp;'); }
.WMi-envelope-open-tex { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95b;&nbsp;'); }
.WMi-envelope-open-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95b;&nbsp;'); }
.WMi-barcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe961;&nbsp;'); }
.WMi-sort-numeric { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe962;&nbsp;'); }
.WMi-sort-alpha-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe963;&nbsp;'); }
@ -288,9 +288,9 @@
.WMi-percentage { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe970;&nbsp;'); }
.WMi-trash-alt-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe971;&nbsp;'); }
.WMi-plane-arrival { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe972;&nbsp;'); }
.WMi-factory-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe973;&nbsp;'); }
.WMi-factory { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe973;&nbsp;'); }
.WMi-helicopter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe974;&nbsp;'); }
.WMi-warehouse-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe975;&nbsp;'); }
.WMi-warehouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe975;&nbsp;'); }
.WMi-transgender-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe976;&nbsp;'); }
.WMi-map-signs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe977;&nbsp;'); }
.WMi-wifi-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe978;&nbsp;'); }
@ -317,7 +317,7 @@
.WMi-oil-can { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98f;&nbsp;'); }
.WMi-spider { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe990;&nbsp;'); }
.WMi-skull-crossbones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe991;&nbsp;'); }
.WMi-plane-departure-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe992;&nbsp;'); }
.WMi-plane-departure { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe992;&nbsp;'); }
.WMi-library-books { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe993;&nbsp;'); }
.WMi-glass-martini-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe994;&nbsp;'); }
.WMi-shopping { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe995;&nbsp;'); }
@ -325,7 +325,7 @@
.WMi-lock-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe997;&nbsp;'); }
.WMi-bed { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe998;&nbsp;'); }
.WMi-fingerprint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe999;&nbsp;'); }
.WMi-shield-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99a;&nbsp;'); }
.WMi-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99a;&nbsp;'); }
.WMi-shuttle-van { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99b;&nbsp;'); }
.WMi-mug-hot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99c;&nbsp;'); }
.WMi-mosque { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99e;&nbsp;'); }
@ -341,7 +341,7 @@
.WMi-communications { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ab;&nbsp;'); }
.WMi-home-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ac;&nbsp;'); }
.WMi-hdd-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ae;&nbsp;'); }
.WMi-map-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9af;&nbsp;'); }
.WMi-location-on-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9af;&nbsp;'); }
.WMi-donut { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b0;&nbsp;'); }
.WMi-less-than-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b1;&nbsp;'); }
.WMi-not-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b2;&nbsp;'); }
@ -357,7 +357,7 @@
.WMi-account-multiple-plus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c0;&nbsp;'); }
.WMi-account-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c1;&nbsp;'); }
.WMi-shop-bag-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c8;&nbsp;'); }
.WMi-open-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cd;&nbsp;'); }
.WMi-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cd;&nbsp;'); }
.WMi-alarm-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9db;&nbsp;'); }
.WMi-account-multiple-minus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9df;&nbsp;'); }
.WMi-icons { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e3;&nbsp;'); }
@ -372,7 +372,7 @@
.WMi-hash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf029;&nbsp;'); }
.WMi-alert-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02a;&nbsp;'); }
.WMi-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02d;&nbsp;'); }
.WMi-food-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02f;&nbsp;'); }
.WMi-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02f;&nbsp;'); }
.WMi-mobile-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf034;&nbsp;'); }
.WMi-apple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf035;&nbsp;'); }
.WMi-brightness { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf037;&nbsp;'); }
@ -395,7 +395,7 @@
.WMi-clothes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0de;&nbsp;'); }
.WMi-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e0;&nbsp;'); }
.WMi-cleaning { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e2;&nbsp;'); }
.WMi-sea-ship-with-containers-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e3;&nbsp;'); }
.WMi-cargo-ship { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e3;&nbsp;'); }
.WMi-wa-fit-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e7;&nbsp;'); }
.WMi-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ec;&nbsp;'); }
.WMi-doctor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f0;&nbsp;'); }
@ -448,7 +448,7 @@
.WMi-paw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b0;&nbsp;'); }
.WMi-cube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b2;&nbsp;'); }
.WMi-cubes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b3;&nbsp;'); }
.WMi-Vehicle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b9;&nbsp;'); }
.WMi-vehicle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b9;&nbsp;'); }
.WMi-delivery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1ba;&nbsp;'); }
.WMi-database { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1c0;&nbsp;'); }
.WMi-codeopen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1cb;&nbsp;'); }
@ -489,8 +489,8 @@
.WMi-question-circle-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf29c;&nbsp;'); }
.WMi-envelope-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2b6;&nbsp;'); }
.WMi-envelope-open-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2b7;&nbsp;'); }
.WMi-telegram-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c6;&nbsp;'); }
.WMi-hanger-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c8;&nbsp;'); }
.WMi-telegram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c6;&nbsp;'); }
.WMi-hanger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c8;&nbsp;'); }
.WMi-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2dc;&nbsp;'); }
.WMi-image-filter-none { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2f6;&nbsp;'); }
.WMi-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf300;&nbsp;'); }
@ -502,8 +502,8 @@
.WMi-supermarket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf321;&nbsp;'); }
.WMi-win8 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf325;&nbsp;'); }
.WMi-instagram-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf32d;&nbsp;'); }
.WMi-message-reply-text-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf368;&nbsp;'); }
.WMi-message-text-outline-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf36a;&nbsp;'); }
.WMi-message-reply-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf368;&nbsp;'); }
.WMi-message-text-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf36a;&nbsp;'); }
.WMi-cloud-upload-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf382;&nbsp;'); }
.WMi-freight-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf3f0;&nbsp;'); }
.WMi-tree { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf405;&nbsp;'); }
@ -517,13 +517,40 @@
.WMi-view-dashboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56e;&nbsp;'); }
.WMi-view-day { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56f;&nbsp;'); }
.WMi-view-quilt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf574;&nbsp;'); }
.WMi-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b7;&nbsp;'); }
.WMi-wrench-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b7;&nbsp;'); }
.WMi-Scientific { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ed;&nbsp;'); }
.WMi-advertisement-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f7;&nbsp;'); }
.WMi-advertisement-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f8;&nbsp;'); }
.WMi-chat-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fa;&nbsp;'); }
.WMi-chat-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fb;&nbsp;'); }
.WMi-send-message { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fc;&nbsp;'); }
.WMi-gold-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fd;&nbsp;'); }
.WMi-silver-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fe;&nbsp;'); }
.WMi-bronze-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ff;&nbsp;'); }
.WMi-globe-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf600;&nbsp;'); }
.WMi-symbol { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf601;&nbsp;'); }
.WMi-yoga-posture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf603;&nbsp;'); }
.WMi-money-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf604;&nbsp;'); }
.WMi-coffee-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf605;&nbsp;'); }
.WMi-cardiogram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf607;&nbsp;'); }
.WMi-iphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf608;&nbsp;'); }
.WMi-menu-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf609;&nbsp;'); }
.WMi-text-fa { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60a;&nbsp;'); }
.WMi-volume-level { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60b;&nbsp;'); }
.WMi-headphones-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60c;&nbsp;'); }
.WMi-dumbbell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60d;&nbsp;'); }
.WMi-video-camera-(1) { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60e;&nbsp;'); }
.WMi-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60f;&nbsp;'); }
.WMi-shield-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf610;&nbsp;'); }
.WMi-shield-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf611;&nbsp;'); }
.WMi-tags-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf612;&nbsp;'); }
.WMi-whatsapp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf613;&nbsp;'); }
.WMi-whatsapp-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf614;&nbsp;'); }
.WMi-guarantee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf615;&nbsp;'); }
.WMi-guarantee-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf616;&nbsp;'); }
.WMi-verified { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf617;&nbsp;'); }
.WMi-tags-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf618;&nbsp;'); }
.WMi-mask { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf619;&nbsp;'); }
.WMi-account-settings-variant-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf631;&nbsp;'); }
.WMi-shape-rectangle-plus-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf65f;&nbsp;'); }
.WMi-beauty-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf665;&nbsp;'); }
@ -533,6 +560,6 @@
.WMi-account-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf6bb;&nbsp;'); }
.WMi-view-parallel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf727;&nbsp;'); }
.WMi-cancel-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf739;&nbsp;'); }
.WMi-truck-fast-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf787;&nbsp;'); }
.WMi-truck-fast { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf787;&nbsp;'); }
.WMi-heart-broken { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7a9;&nbsp;'); }
.WMi-money-check-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7c2;&nbsp;'); }
.WMi-money-check-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7c2;&nbsp;'); }

@ -2,14 +2,14 @@
font-family: 'fontello';
font-style: normal;
font-weight: normal;
/* fix buttons height */
line-height: 1em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
}
.WMi-th-large-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x77;&nbsp;'); }
.WMi-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe763;&nbsp;'); }
.WMi-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
@ -82,7 +82,7 @@
.WMi-basket-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
.WMi-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
.WMi-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
.WMi-tags { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.WMi-tags-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.WMi-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
.WMi-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
.WMi-map-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
@ -117,7 +117,7 @@
.WMi-glyph-11 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
.WMi-air-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
.WMi-glyph-48 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
.WMi-Repairing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.WMi-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.WMi-Official { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
.WMi-advertising-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
.WMi-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
@ -140,8 +140,8 @@
.WMi-calendar-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
.WMi-doc-text-inv-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
.WMi-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
.WMi-videocam-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.WMi-video-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.WMi-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.WMi-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.WMi-shop-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
.WMi-glyph-30 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
.WMi-glyph-27 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
@ -163,7 +163,7 @@
.WMi-glyph-43 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.WMi-gas-station { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.WMi-glyph-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
.WMi-instagram-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.WMi-instagram-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.WMi-business-affiliate-network-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
.WMi-globe-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
.WMi-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
@ -172,14 +172,14 @@
.WMi-photography-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
.WMi-bank-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
.WMi-off-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
.WMi-aparat-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
.WMi-aparat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
.WMi-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); }
.WMi-youtube-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a3;&nbsp;'); }
.WMi-info-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); }
.WMi-cloud-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); }
.WMi-skype { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); }
.WMi-eye-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); }
.WMi-percent-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
.WMi-percent { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
.WMi-info-circled-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); }
.WMi-align-justify-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8aa;&nbsp;'); }
.WMi-to-end-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); }
@ -190,17 +190,17 @@
.WMi-to-start-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); }
.WMi-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); }
.WMi-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); }
.WMi-align-center-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
.WMi-align-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
.WMi-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b5;&nbsp;'); }
.WMi-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b6;&nbsp;'); }
.WMi-Beauty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b7;&nbsp;'); }
.WMi-crown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b7;&nbsp;'); }
.WMi-braille { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b8;&nbsp;'); }
.WMi-user-md { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b9;&nbsp;'); }
.WMi-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ba;&nbsp;'); }
.WMi-align-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bb;&nbsp;'); }
.WMi-user-nurse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); }
.WMi-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); }
.WMi-clock-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
.WMi-clock-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
.WMi-en-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); }
.WMi-user-graduate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c0;&nbsp;'); }
.WMi-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); }
@ -217,11 +217,11 @@
.WMi-ar-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); }
.WMi-transgender { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cd;&nbsp;'); }
.WMi-user-tie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ce;&nbsp;'); }
.WMi-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); }
.WMi-headphones-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); }
.WMi-infinity-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); }
.WMi-youtube-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); }
.WMi-youtube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); }
.WMi-quote-left-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d3;&nbsp;'); }
.WMi-fa-letters-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
.WMi-fa-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
.WMi-number { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); }
.WMi-apple-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); }
.WMi-th-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); }
@ -234,7 +234,7 @@
.WMi-wordpress { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e0;&nbsp;'); }
.WMi-restroom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e5;&nbsp;'); }
.WMi-user-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e6;&nbsp;'); }
.WMi-eq-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e7;&nbsp;'); }
.WMi-eq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e7;&nbsp;'); }
.WMi-gift-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e8;&nbsp;'); }
.WMi-location-arrow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e9;&nbsp;'); }
.WMi-glyph-28 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ea;&nbsp;'); }
@ -249,7 +249,7 @@
.WMi-undo-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f3;&nbsp;'); }
.WMi-linkedin-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f4;&nbsp;'); }
.WMi-sort-alphabetical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f5;&nbsp;'); }
.WMi-telegram-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); }
.WMi-telegram-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); }
.WMi-temperature-fahrenheit-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f7;&nbsp;'); }
.WMi-infinity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f8;&nbsp;'); }
.WMi-quote-right-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f9;&nbsp;'); }
@ -272,7 +272,7 @@
.WMi-landmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91a;&nbsp;'); }
.WMi-car-crash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91b;&nbsp;'); }
.WMi-car-side { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91c;&nbsp;'); }
.WMi-map-marked-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91d;&nbsp;'); }
.WMi-map-marked { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91d;&nbsp;'); }
.WMi-truck-monster { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92e;&nbsp;'); }
.WMi-equals { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93e;&nbsp;'); }
.WMi-internet-explorer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe948;&nbsp;'); }
@ -280,7 +280,7 @@
.WMi-navigation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94c;&nbsp;'); }
.WMi-drafting-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe953;&nbsp;'); }
.WMi-signal-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe959;&nbsp;'); }
.WMi-envelope-open-tex { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95b;&nbsp;'); }
.WMi-envelope-open-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95b;&nbsp;'); }
.WMi-barcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe961;&nbsp;'); }
.WMi-sort-numeric { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe962;&nbsp;'); }
.WMi-sort-alpha-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe963;&nbsp;'); }
@ -299,9 +299,9 @@
.WMi-percentage { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe970;&nbsp;'); }
.WMi-trash-alt-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe971;&nbsp;'); }
.WMi-plane-arrival { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe972;&nbsp;'); }
.WMi-factory-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe973;&nbsp;'); }
.WMi-factory { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe973;&nbsp;'); }
.WMi-helicopter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe974;&nbsp;'); }
.WMi-warehouse-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe975;&nbsp;'); }
.WMi-warehouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe975;&nbsp;'); }
.WMi-transgender-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe976;&nbsp;'); }
.WMi-map-signs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe977;&nbsp;'); }
.WMi-wifi-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe978;&nbsp;'); }
@ -328,7 +328,7 @@
.WMi-oil-can { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98f;&nbsp;'); }
.WMi-spider { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe990;&nbsp;'); }
.WMi-skull-crossbones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe991;&nbsp;'); }
.WMi-plane-departure-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe992;&nbsp;'); }
.WMi-plane-departure { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe992;&nbsp;'); }
.WMi-library-books { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe993;&nbsp;'); }
.WMi-glass-martini-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe994;&nbsp;'); }
.WMi-shopping { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe995;&nbsp;'); }
@ -336,7 +336,7 @@
.WMi-lock-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe997;&nbsp;'); }
.WMi-bed { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe998;&nbsp;'); }
.WMi-fingerprint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe999;&nbsp;'); }
.WMi-shield-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99a;&nbsp;'); }
.WMi-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99a;&nbsp;'); }
.WMi-shuttle-van { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99b;&nbsp;'); }
.WMi-mug-hot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99c;&nbsp;'); }
.WMi-mosque { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99e;&nbsp;'); }
@ -352,7 +352,7 @@
.WMi-communications { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ab;&nbsp;'); }
.WMi-home-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ac;&nbsp;'); }
.WMi-hdd-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ae;&nbsp;'); }
.WMi-map-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9af;&nbsp;'); }
.WMi-location-on-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9af;&nbsp;'); }
.WMi-donut { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b0;&nbsp;'); }
.WMi-less-than-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b1;&nbsp;'); }
.WMi-not-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b2;&nbsp;'); }
@ -368,7 +368,7 @@
.WMi-account-multiple-plus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c0;&nbsp;'); }
.WMi-account-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c1;&nbsp;'); }
.WMi-shop-bag-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c8;&nbsp;'); }
.WMi-open-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cd;&nbsp;'); }
.WMi-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cd;&nbsp;'); }
.WMi-alarm-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9db;&nbsp;'); }
.WMi-account-multiple-minus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9df;&nbsp;'); }
.WMi-icons { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e3;&nbsp;'); }
@ -383,7 +383,7 @@
.WMi-hash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf029;&nbsp;'); }
.WMi-alert-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02a;&nbsp;'); }
.WMi-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02d;&nbsp;'); }
.WMi-food-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02f;&nbsp;'); }
.WMi-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02f;&nbsp;'); }
.WMi-mobile-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf034;&nbsp;'); }
.WMi-apple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf035;&nbsp;'); }
.WMi-brightness { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf037;&nbsp;'); }
@ -406,7 +406,7 @@
.WMi-clothes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0de;&nbsp;'); }
.WMi-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e0;&nbsp;'); }
.WMi-cleaning { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e2;&nbsp;'); }
.WMi-sea-ship-with-containers-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e3;&nbsp;'); }
.WMi-cargo-ship { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e3;&nbsp;'); }
.WMi-wa-fit-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e7;&nbsp;'); }
.WMi-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ec;&nbsp;'); }
.WMi-doctor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f0;&nbsp;'); }
@ -459,7 +459,7 @@
.WMi-paw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b0;&nbsp;'); }
.WMi-cube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b2;&nbsp;'); }
.WMi-cubes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b3;&nbsp;'); }
.WMi-Vehicle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b9;&nbsp;'); }
.WMi-vehicle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b9;&nbsp;'); }
.WMi-delivery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1ba;&nbsp;'); }
.WMi-database { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1c0;&nbsp;'); }
.WMi-codeopen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1cb;&nbsp;'); }
@ -500,8 +500,8 @@
.WMi-question-circle-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf29c;&nbsp;'); }
.WMi-envelope-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2b6;&nbsp;'); }
.WMi-envelope-open-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2b7;&nbsp;'); }
.WMi-telegram-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c6;&nbsp;'); }
.WMi-hanger-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c8;&nbsp;'); }
.WMi-telegram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c6;&nbsp;'); }
.WMi-hanger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c8;&nbsp;'); }
.WMi-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2dc;&nbsp;'); }
.WMi-image-filter-none { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2f6;&nbsp;'); }
.WMi-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf300;&nbsp;'); }
@ -513,8 +513,8 @@
.WMi-supermarket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf321;&nbsp;'); }
.WMi-win8 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf325;&nbsp;'); }
.WMi-instagram-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf32d;&nbsp;'); }
.WMi-message-reply-text-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf368;&nbsp;'); }
.WMi-message-text-outline-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf36a;&nbsp;'); }
.WMi-message-reply-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf368;&nbsp;'); }
.WMi-message-text-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf36a;&nbsp;'); }
.WMi-cloud-upload-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf382;&nbsp;'); }
.WMi-freight-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf3f0;&nbsp;'); }
.WMi-tree { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf405;&nbsp;'); }
@ -528,13 +528,40 @@
.WMi-view-dashboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56e;&nbsp;'); }
.WMi-view-day { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56f;&nbsp;'); }
.WMi-view-quilt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf574;&nbsp;'); }
.WMi-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b7;&nbsp;'); }
.WMi-wrench-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b7;&nbsp;'); }
.WMi-Scientific { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ed;&nbsp;'); }
.WMi-advertisement-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f7;&nbsp;'); }
.WMi-advertisement-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f8;&nbsp;'); }
.WMi-chat-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fa;&nbsp;'); }
.WMi-chat-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fb;&nbsp;'); }
.WMi-send-message { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fc;&nbsp;'); }
.WMi-gold-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fd;&nbsp;'); }
.WMi-silver-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fe;&nbsp;'); }
.WMi-bronze-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ff;&nbsp;'); }
.WMi-globe-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf600;&nbsp;'); }
.WMi-symbol { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf601;&nbsp;'); }
.WMi-yoga-posture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf603;&nbsp;'); }
.WMi-money-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf604;&nbsp;'); }
.WMi-coffee-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf605;&nbsp;'); }
.WMi-cardiogram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf607;&nbsp;'); }
.WMi-iphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf608;&nbsp;'); }
.WMi-menu-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf609;&nbsp;'); }
.WMi-text-fa { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60a;&nbsp;'); }
.WMi-volume-level { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60b;&nbsp;'); }
.WMi-headphones-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60c;&nbsp;'); }
.WMi-dumbbell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60d;&nbsp;'); }
.WMi-video-camera-(1) { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60e;&nbsp;'); }
.WMi-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60f;&nbsp;'); }
.WMi-shield-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf610;&nbsp;'); }
.WMi-shield-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf611;&nbsp;'); }
.WMi-tags-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf612;&nbsp;'); }
.WMi-whatsapp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf613;&nbsp;'); }
.WMi-whatsapp-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf614;&nbsp;'); }
.WMi-guarantee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf615;&nbsp;'); }
.WMi-guarantee-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf616;&nbsp;'); }
.WMi-verified { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf617;&nbsp;'); }
.WMi-tags-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf618;&nbsp;'); }
.WMi-mask { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf619;&nbsp;'); }
.WMi-account-settings-variant-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf631;&nbsp;'); }
.WMi-shape-rectangle-plus-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf65f;&nbsp;'); }
.WMi-beauty-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf665;&nbsp;'); }
@ -544,6 +571,6 @@
.WMi-account-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf6bb;&nbsp;'); }
.WMi-view-parallel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf727;&nbsp;'); }
.WMi-cancel-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf739;&nbsp;'); }
.WMi-truck-fast-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf787;&nbsp;'); }
.WMi-truck-fast { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf787;&nbsp;'); }
.WMi-heart-broken { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7a9;&nbsp;'); }
.WMi-money-check-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7c2;&nbsp;'); }
.WMi-money-check-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7c2;&nbsp;'); }

@ -1,11 +1,11 @@
@font-face {
font-family: 'fontello';
src: url('../font/fontello.eot?61111312');
src: url('../font/fontello.eot?61111312#iefix') format('embedded-opentype'),
url('../font/fontello.woff2?61111312') format('woff2'),
url('../font/fontello.woff?61111312') format('woff'),
url('../font/fontello.ttf?61111312') format('truetype'),
url('../font/fontello.svg?61111312#fontello') format('svg');
src: url('../font/fontello.eot?11153377');
src: url('../font/fontello.eot?11153377#iefix') format('embedded-opentype'),
url('../font/fontello.woff2?11153377') format('woff2'),
url('../font/fontello.woff?11153377') format('woff'),
url('../font/fontello.ttf?11153377') format('truetype'),
url('../font/fontello.svg?11153377#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
@ -15,46 +15,45 @@
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'fontello';
src: url('../font/fontello.svg?61111312#fontello') format('svg');
src: url('../font/fontello.svg?11153377#fontello') format('svg');
}
}
*/
[class^="WMi-"]:before, [class*=" WMi-"]:before {
[class^="WMi-"]:before, [class*=" WMi-"]:before {
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: never;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: .2em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.WMi-th-large-1:before { content: '\77'; } /* 'w' */
.WMi-fast-fw:before { content: '\e763'; } /* '' */
.WMi-ok:before { content: '\e800'; } /* '' */
@ -127,7 +126,7 @@
.WMi-basket-1:before { content: '\e843'; } /* '' */
.WMi-chat:before { content: '\e844'; } /* '' */
.WMi-home:before { content: '\e845'; } /* '' */
.WMi-tags:before { content: '\e846'; } /* '' */
.WMi-tags-1:before { content: '\e846'; } /* '' */
.WMi-plus:before { content: '\e847'; } /* '' */
.WMi-retweet:before { content: '\e848'; } /* '' */
.WMi-map-1:before { content: '\e849'; } /* '' */
@ -162,7 +161,7 @@
.WMi-glyph-11:before { content: '\e866'; } /* '' */
.WMi-air-plane:before { content: '\e867'; } /* '' */
.WMi-glyph-48:before { content: '\e868'; } /* '' */
.WMi-Repairing:before { content: '\e869'; } /* '' */
.WMi-wrench:before { content: '\e869'; } /* '' */
.WMi-Official:before { content: '\e86a'; } /* '' */
.WMi-advertising-1:before { content: '\e86b'; } /* '' */
.WMi-camera:before { content: '\e86c'; } /* '' */
@ -185,8 +184,8 @@
.WMi-calendar-2:before { content: '\e87d'; } /* '' */
.WMi-doc-text-inv-1:before { content: '\e87e'; } /* '' */
.WMi-flight:before { content: '\e87f'; } /* '' */
.WMi-videocam-1:before { content: '\e880'; } /* '' */
.WMi-video-1:before { content: '\e881'; } /* '' */
.WMi-videocam:before { content: '\e880'; } /* '' */
.WMi-video:before { content: '\e881'; } /* '' */
.WMi-shop-3:before { content: '\e882'; } /* '' */
.WMi-glyph-30:before { content: '\e883'; } /* '' */
.WMi-glyph-27:before { content: '\e884'; } /* '' */
@ -208,7 +207,7 @@
.WMi-glyph-43:before { content: '\e895'; } /* '' */
.WMi-gas-station:before { content: '\e896'; } /* '' */
.WMi-glyph-45:before { content: '\e897'; } /* '' */
.WMi-instagram-3:before { content: '\e898'; } /* '' */
.WMi-instagram-2:before { content: '\e898'; } /* '' */
.WMi-business-affiliate-network-2:before { content: '\e899'; } /* '' */
.WMi-globe-2:before { content: '\e89a'; } /* '' */
.WMi-bell:before { content: '\e89b'; } /* '' */
@ -217,14 +216,14 @@
.WMi-photography-2:before { content: '\e89e'; } /* '' */
.WMi-bank-1:before { content: '\e89f'; } /* '' */
.WMi-off-1:before { content: '\e8a0'; } /* '' */
.WMi-aparat-2:before { content: '\e8a1'; } /* '' */
.WMi-aparat:before { content: '\e8a1'; } /* '' */
.WMi-eye:before { content: '\e8a2'; } /* '' */
.WMi-youtube-play:before { content: '\e8a3'; } /* '' */
.WMi-info-2:before { content: '\e8a4'; } /* '' */
.WMi-cloud-1:before { content: '\e8a5'; } /* '' */
.WMi-skype:before { content: '\e8a6'; } /* '' */
.WMi-eye-off:before { content: '\e8a7'; } /* '' */
.WMi-percent-2:before { content: '\e8a8'; } /* '' */
.WMi-percent:before { content: '\e8a8'; } /* '' */
.WMi-info-circled-alt:before { content: '\e8a9'; } /* '' */
.WMi-align-justify-1:before { content: '\e8aa'; } /* '' */
.WMi-to-end-alt:before { content: '\e8ab'; } /* '' */
@ -235,17 +234,17 @@
.WMi-to-start-alt:before { content: '\e8b0'; } /* '' */
.WMi-play:before { content: '\e8b1'; } /* '' */
.WMi-stop:before { content: '\e8b2'; } /* '' */
.WMi-align-center-2:before { content: '\e8b3'; } /* '' */
.WMi-align-center:before { content: '\e8b3'; } /* '' */
.WMi-doc-text:before { content: '\e8b5'; } /* '' */
.WMi-eject:before { content: '\e8b6'; } /* '' */
.WMi-Beauty-1:before { content: '\e8b7'; } /* '' */
.WMi-crown:before { content: '\e8b7'; } /* '' */
.WMi-braille:before { content: '\e8b8'; } /* '' */
.WMi-user-md:before { content: '\e8b9'; } /* '' */
.WMi-fast-bw:before { content: '\e8ba'; } /* '' */
.WMi-align-left:before { content: '\e8bb'; } /* '' */
.WMi-user-nurse:before { content: '\e8bc'; } /* '' */
.WMi-pause:before { content: '\e8bd'; } /* '' */
.WMi-clock-3:before { content: '\e8be'; } /* '' */
.WMi-clock-1:before { content: '\e8be'; } /* '' */
.WMi-en-letters:before { content: '\e8bf'; } /* '' */
.WMi-user-graduate:before { content: '\e8c0'; } /* '' */
.WMi-sitemap:before { content: '\e8c1'; } /* '' */
@ -262,11 +261,11 @@
.WMi-ar-letters:before { content: '\e8cc'; } /* '' */
.WMi-transgender:before { content: '\e8cd'; } /* '' */
.WMi-user-tie:before { content: '\e8ce'; } /* '' */
.WMi-headphones:before { content: '\e8cf'; } /* '' */
.WMi-headphones-2:before { content: '\e8cf'; } /* '' */
.WMi-infinity-1:before { content: '\e8d1'; } /* '' */
.WMi-youtube-1:before { content: '\e8d2'; } /* '' */
.WMi-youtube:before { content: '\e8d2'; } /* '' */
.WMi-quote-left-alt:before { content: '\e8d3'; } /* '' */
.WMi-fa-letters-1:before { content: '\e8d4'; } /* '' */
.WMi-fa-letters:before { content: '\e8d4'; } /* '' */
.WMi-number:before { content: '\e8d5'; } /* '' */
.WMi-apple-alt:before { content: '\e8d6'; } /* '' */
.WMi-th-1:before { content: '\e8d8'; } /* '' */
@ -279,7 +278,7 @@
.WMi-wordpress:before { content: '\e8e0'; } /* '' */
.WMi-restroom:before { content: '\e8e5'; } /* '' */
.WMi-user-minus:before { content: '\e8e6'; } /* '' */
.WMi-eq-1:before { content: '\e8e7'; } /* '' */
.WMi-eq:before { content: '\e8e7'; } /* '' */
.WMi-gift-3:before { content: '\e8e8'; } /* '' */
.WMi-location-arrow:before { content: '\e8e9'; } /* '' */
.WMi-glyph-28:before { content: '\e8ea'; } /* '' */
@ -294,7 +293,7 @@
.WMi-undo-1:before { content: '\e8f3'; } /* '' */
.WMi-linkedin-3:before { content: '\e8f4'; } /* '' */
.WMi-sort-alphabetical:before { content: '\e8f5'; } /* '' */
.WMi-telegram-5:before { content: '\e8f6'; } /* '' */
.WMi-telegram-2:before { content: '\e8f6'; } /* '' */
.WMi-temperature-fahrenheit-2:before { content: '\e8f7'; } /* '' */
.WMi-infinity:before { content: '\e8f8'; } /* '' */
.WMi-quote-right-alt:before { content: '\e8f9'; } /* '' */
@ -317,7 +316,7 @@
.WMi-landmark:before { content: '\e91a'; } /* '' */
.WMi-car-crash:before { content: '\e91b'; } /* '' */
.WMi-car-side:before { content: '\e91c'; } /* '' */
.WMi-map-marked-2:before { content: '\e91d'; } /* '' */
.WMi-map-marked:before { content: '\e91d'; } /* '' */
.WMi-truck-monster:before { content: '\e92e'; } /* '' */
.WMi-equals:before { content: '\e93e'; } /* '' */
.WMi-internet-explorer:before { content: '\e948'; } /* '' */
@ -325,7 +324,7 @@
.WMi-navigation:before { content: '\e94c'; } /* '' */
.WMi-drafting-compass:before { content: '\e953'; } /* '' */
.WMi-signal-1:before { content: '\e959'; } /* '' */
.WMi-envelope-open-tex:before { content: '\e95b'; } /* '' */
.WMi-envelope-open-text:before { content: '\e95b'; } /* '' */
.WMi-barcode:before { content: '\e961'; } /* '' */
.WMi-sort-numeric:before { content: '\e962'; } /* '' */
.WMi-sort-alpha-up-alt:before { content: '\e963'; } /* '' */
@ -344,9 +343,9 @@
.WMi-percentage:before { content: '\e970'; } /* '' */
.WMi-trash-alt-4:before { content: '\e971'; } /* '' */
.WMi-plane-arrival:before { content: '\e972'; } /* '' */
.WMi-factory-2:before { content: '\e973'; } /* '' */
.WMi-factory:before { content: '\e973'; } /* '' */
.WMi-helicopter:before { content: '\e974'; } /* '' */
.WMi-warehouse-2:before { content: '\e975'; } /* '' */
.WMi-warehouse:before { content: '\e975'; } /* '' */
.WMi-transgender-1:before { content: '\e976'; } /* '' */
.WMi-map-signs:before { content: '\e977'; } /* '' */
.WMi-wifi-1:before { content: '\e978'; } /* '' */
@ -373,7 +372,7 @@
.WMi-oil-can:before { content: '\e98f'; } /* '' */
.WMi-spider:before { content: '\e990'; } /* '' */
.WMi-skull-crossbones:before { content: '\e991'; } /* '' */
.WMi-plane-departure-2:before { content: '\e992'; } /* '' */
.WMi-plane-departure:before { content: '\e992'; } /* '' */
.WMi-library-books:before { content: '\e993'; } /* '' */
.WMi-glass-martini-alt:before { content: '\e994'; } /* '' */
.WMi-shopping:before { content: '\e995'; } /* '' */
@ -381,7 +380,7 @@
.WMi-lock-open-1:before { content: '\e997'; } /* '' */
.WMi-bed:before { content: '\e998'; } /* '' */
.WMi-fingerprint:before { content: '\e999'; } /* '' */
.WMi-shield-2:before { content: '\e99a'; } /* '' */
.WMi-shield:before { content: '\e99a'; } /* '' */
.WMi-shuttle-van:before { content: '\e99b'; } /* '' */
.WMi-mug-hot:before { content: '\e99c'; } /* '' */
.WMi-mosque:before { content: '\e99e'; } /* '' */
@ -397,7 +396,7 @@
.WMi-communications:before { content: '\e9ab'; } /* '' */
.WMi-home-heart:before { content: '\e9ac'; } /* '' */
.WMi-hdd-1:before { content: '\e9ae'; } /* '' */
.WMi-map-2:before { content: '\e9af'; } /* '' */
.WMi-location-on-map:before { content: '\e9af'; } /* '' */
.WMi-donut:before { content: '\e9b0'; } /* '' */
.WMi-less-than-equal:before { content: '\e9b1'; } /* '' */
.WMi-not-equal:before { content: '\e9b2'; } /* '' */
@ -413,7 +412,7 @@
.WMi-account-multiple-plus-1:before { content: '\e9c0'; } /* '' */
.WMi-account-key:before { content: '\e9c1'; } /* '' */
.WMi-shop-bag-2:before { content: '\e9c8'; } /* '' */
.WMi-open-2:before { content: '\e9cd'; } /* '' */
.WMi-open:before { content: '\e9cd'; } /* '' */
.WMi-alarm-plus:before { content: '\e9db'; } /* '' */
.WMi-account-multiple-minus-1:before { content: '\e9df'; } /* '' */
.WMi-icons:before { content: '\e9e3'; } /* '' */
@ -428,7 +427,7 @@
.WMi-hash:before { content: '\f029'; } /* '' */
.WMi-alert-outline:before { content: '\f02a'; } /* '' */
.WMi-book:before { content: '\f02d'; } /* '' */
.WMi-food-1:before { content: '\f02f'; } /* '' */
.WMi-food:before { content: '\f02f'; } /* '' */
.WMi-mobile-phone:before { content: '\f034'; } /* '' */
.WMi-apple:before { content: '\f035'; } /* '' */
.WMi-brightness:before { content: '\f037'; } /* '' */
@ -451,7 +450,7 @@
.WMi-clothes:before { content: '\f0de'; } /* '' */
.WMi-mail-alt:before { content: '\f0e0'; } /* '' */
.WMi-cleaning:before { content: '\f0e2'; } /* '' */
.WMi-sea-ship-with-containers-2:before { content: '\f0e3'; } /* '' */
.WMi-cargo-ship:before { content: '\f0e3'; } /* '' */
.WMi-wa-fit-2:before { content: '\f0e7'; } /* '' */
.WMi-exchange:before { content: '\f0ec'; } /* '' */
.WMi-doctor:before { content: '\f0f0'; } /* '' */
@ -504,7 +503,7 @@
.WMi-paw:before { content: '\f1b0'; } /* '' */
.WMi-cube:before { content: '\f1b2'; } /* '' */
.WMi-cubes:before { content: '\f1b3'; } /* '' */
.WMi-Vehicle:before { content: '\f1b9'; } /* '' */
.WMi-vehicle:before { content: '\f1b9'; } /* '' */
.WMi-delivery:before { content: '\f1ba'; } /* '' */
.WMi-database:before { content: '\f1c0'; } /* '' */
.WMi-codeopen:before { content: '\f1cb'; } /* '' */
@ -545,8 +544,8 @@
.WMi-question-circle-o:before { content: '\f29c'; } /* '' */
.WMi-envelope-open:before { content: '\f2b6'; } /* '' */
.WMi-envelope-open-o:before { content: '\f2b7'; } /* '' */
.WMi-telegram-4:before { content: '\f2c6'; } /* '' */
.WMi-hanger-2:before { content: '\f2c8'; } /* '' */
.WMi-telegram:before { content: '\f2c6'; } /* '' */
.WMi-hanger:before { content: '\f2c8'; } /* '' */
.WMi-text:before { content: '\f2dc'; } /* '' */
.WMi-image-filter-none:before { content: '\f2f6'; } /* '' */
.WMi-facebook:before { content: '\f300'; } /* '' */
@ -558,8 +557,8 @@
.WMi-supermarket:before { content: '\f321'; } /* '' */
.WMi-win8:before { content: '\f325'; } /* '' */
.WMi-instagram-1:before { content: '\f32d'; } /* '' */
.WMi-message-reply-text-2:before { content: '\f368'; } /* '' */
.WMi-message-text-outline-2:before { content: '\f36a'; } /* '' */
.WMi-message-reply-text:before { content: '\f368'; } /* '' */
.WMi-message-text-outline:before { content: '\f36a'; } /* '' */
.WMi-cloud-upload-alt:before { content: '\f382'; } /* '' */
.WMi-freight-truck:before { content: '\f3f0'; } /* '' */
.WMi-tree:before { content: '\f405'; } /* '' */
@ -573,13 +572,40 @@
.WMi-view-dashboard:before { content: '\f56e'; } /* '' */
.WMi-view-day:before { content: '\f56f'; } /* '' */
.WMi-view-quilt:before { content: '\f574'; } /* '' */
.WMi-wrench:before { content: '\f5b7'; } /* '' */
.WMi-wrench-3:before { content: '\f5b7'; } /* '' */
.WMi-Scientific:before { content: '\f5ed'; } /* '' */
.WMi-advertisement-2:before { content: '\f5f7'; } /* '' */
.WMi-advertisement-1:before { content: '\f5f8'; } /* '' */
.WMi-chat-1:before { content: '\f5fa'; } /* '' */
.WMi-chat-alt:before { content: '\f5fb'; } /* '' */
.WMi-send-message:before { content: '\f5fc'; } /* '' */
.WMi-gold-medal:before { content: '\f5fd'; } /* '' */
.WMi-silver-medal:before { content: '\f5fe'; } /* '' */
.WMi-bronze-medal:before { content: '\f5ff'; } /* '' */
.WMi-globe-1:before { content: '\f600'; } /* '' */
.WMi-symbol:before { content: '\f601'; } /* '' */
.WMi-yoga-posture:before { content: '\f603'; } /* '' */
.WMi-money-copy:before { content: '\f604'; } /* '' */
.WMi-coffee-2:before { content: '\f605'; } /* '' */
.WMi-cardiogram:before { content: '\f607'; } /* '' */
.WMi-iphone:before { content: '\f608'; } /* '' */
.WMi-menu-2:before { content: '\f609'; } /* '' */
.WMi-text-fa:before { content: '\f60a'; } /* '' */
.WMi-volume-level:before { content: '\f60b'; } /* '' */
.WMi-headphones-1:before { content: '\f60c'; } /* '' */
.WMi-dumbbell:before { content: '\f60d'; } /* '' */
.WMi-video-camera-(1):before { content: '\f60e'; } /* '' */
.WMi-headphones:before { content: '\f60f'; } /* '' */
.WMi-shield-copy:before { content: '\f610'; } /* '' */
.WMi-shield-2:before { content: '\f611'; } /* '' */
.WMi-tags-alt:before { content: '\f612'; } /* '' */
.WMi-whatsapp:before { content: '\f613'; } /* '' */
.WMi-whatsapp-alt:before { content: '\f614'; } /* '' */
.WMi-guarantee:before { content: '\f615'; } /* '' */
.WMi-guarantee-1:before { content: '\f616'; } /* '' */
.WMi-verified:before { content: '\f617'; } /* '' */
.WMi-tags-2:before { content: '\f618'; } /* '' */
.WMi-mask:before { content: '\f619'; } /* '' */
.WMi-account-settings-variant-1:before { content: '\f631'; } /* '' */
.WMi-shape-rectangle-plus-2:before { content: '\f65f'; } /* '' */
.WMi-beauty-3:before { content: '\f665'; } /* '' */
@ -589,6 +615,6 @@
.WMi-account-edit:before { content: '\f6bb'; } /* '' */
.WMi-view-parallel:before { content: '\f727'; } /* '' */
.WMi-cancel-2:before { content: '\f739'; } /* '' */
.WMi-truck-fast-2:before { content: '\f787'; } /* '' */
.WMi-truck-fast:before { content: '\f787'; } /* '' */
.WMi-heart-broken:before { content: '\f7a9'; } /* '' */
.WMi-money-check-alt:before { content: '\f7c2'; } /* '' */
.WMi-money-check-alt:before { content: '\f7c2'; } /* '' */

File diff suppressed because it is too large Load Diff

@ -150,7 +150,7 @@
<glyph glyph-name="home" unicode="&#xe845;" d="M786 296v-267q0-15-11-25t-25-11h-214v214h-143v-214h-214q-15 0-25 11t-11 25v267q0 1 0 2t0 2l321 264 321-264q1-1 1-4z m124 39l-34-41q-5-5-12-6h-2q-7 0-12 3l-386 322-386-322q-7-4-13-3-7 1-12 6l-35 41q-4 6-3 13t6 12l401 334q18 15 42 15t43-15l136-113v108q0 8 5 13t13 5h107q8 0 13-5t5-13v-227l122-102q6-4 6-12t-4-13z" horiz-adv-x="928.6" />
<glyph glyph-name="tags" unicode="&#xe846;" d="M250 600q0 30-21 51t-50 20-51-20-21-51 21-50 51-21 50 21 21 50z m595-321q0-30-20-51l-274-274q-22-21-51-21-30 0-50 21l-399 399q-21 21-36 57t-15 65v232q0 29 21 50t50 22h233q29 0 65-15t57-36l399-399q20-21 20-50z m215 0q0-30-21-51l-274-274q-22-21-51-21-20 0-33 8t-29 25l262 262q21 21 21 51 0 29-21 50l-399 399q-21 21-57 36t-65 15h125q29 0 65-15t57-36l399-399q21-21 21-50z" horiz-adv-x="1071.4" />
<glyph glyph-name="tags-1" unicode="&#xe846;" d="M250 600q0 30-21 51t-50 20-51-20-21-51 21-50 51-21 50 21 21 50z m595-321q0-30-20-51l-274-274q-22-21-51-21-30 0-50 21l-399 399q-21 21-36 57t-15 65v232q0 29 21 50t50 22h233q29 0 65-15t57-36l399-399q20-21 20-50z m215 0q0-30-21-51l-274-274q-22-21-51-21-20 0-33 8t-29 25l262 262q21 21 21 51 0 29-21 50l-399 399q-21 21-57 36t-65 15h125q29 0 65-15t57-36l399-399q21-21 21-50z" horiz-adv-x="1071.4" />
<glyph glyph-name="plus" unicode="&#xe847;" d="M786 439v-107q0-22-16-38t-38-15h-232v-233q0-22-16-37t-38-16h-107q-22 0-38 16t-15 37v233h-232q-23 0-38 15t-16 38v107q0 23 16 38t38 16h232v232q0 22 15 38t38 16h107q23 0 38-16t16-38v-232h232q23 0 38-16t16-38z" horiz-adv-x="785.7" />
@ -220,7 +220,7 @@
<glyph glyph-name="glyph-48" unicode="&#xe868;" d="M33 788l438 0c17 0 31 14 31 31s-14 31-31 31l-438 0c-17 0-31-14-31-31s14-31 31-31z m0-188l438 0c17 0 31 14 31 32s-14 31-31 31l-438 0c-17 0-31-14-31-31s14-32 31-32z m469-156c0 17-14 31-31 31l-438 0c-17 0-31-14-31-31s14-31 31-31l438 0c17 0 31 14 31 31z m487 89l-305 306c-10 9-24 11-36 6-12-5-21-16-21-30l0-692c-33 25-77 40-125 40-103 0-187-70-187-157 0-86 84-156 187-156 104 0 188 70 188 156 0 4 0 8-1 12l0 727 256-256c12-12 32-12 44 0 12 12 12 32 0 44z m-362-530c-2-43-53-90-125-90-74 0-126 49-126 93 0 45 52 94 126 94 72 0 123-47 125-91l0-6z" horiz-adv-x="1000" />
<glyph glyph-name="Repairing" unicode="&#xe869;" d="M214 29q0 14-10 25t-25 10-25-10-11-25 11-25 25-11 25 11 10 25z m360 234l-381-381q-21-20-50-20-29 0-51 20l-59 61q-21 20-21 50 0 29 21 51l380 380q22-55 64-97t97-64z m354 243q0-22-13-59-27-75-92-122t-144-46q-104 0-177 73t-73 177 73 176 177 74q32 0 67-10t60-26q9-6 9-15t-9-16l-163-94v-125l108-60q2 2 44 27t75 45 40 20q8 0 13-5t5-14z" horiz-adv-x="928.6" />
<glyph glyph-name="wrench" unicode="&#xe869;" d="M214 29q0 14-10 25t-25 10-25-10-11-25 11-25 25-11 25 11 10 25z m360 234l-381-381q-21-20-50-20-29 0-51 20l-59 61q-21 20-21 50 0 29 21 51l380 380q22-55 64-97t97-64z m354 243q0-22-13-59-27-75-92-122t-144-46q-104 0-177 73t-73 177 73 176 177 74q32 0 67-10t60-26q9-6 9-15t-9-16l-163-94v-125l108-60q2 2 44 27t75 45 40 20q8 0 13-5t5-14z" horiz-adv-x="928.6" />
<glyph glyph-name="Official" unicode="&#xe86a;" d="M325-96q-127 0-217 90t-90 218 90 217l311 303q63 64 158 64t157-64q65-66 65-158t-65-157l-279-274q-41-41-98-40t-99 42-41 98 41 98l108 108 79-78-109-109q-7-7-7-19 0-13 7-21 19-19 40 0l279 274q33 32 33 79t-33 78q-31 31-79 31t-79-31l-311-303q-56-57-56-138t57-138q55-56 138-56t138 56l139 139 80-79-140-140q-90-90-217-90z" horiz-adv-x="817" />
@ -266,9 +266,9 @@
<glyph glyph-name="flight" unicode="&#xe87f;" d="M268-120l124 400-180 0-112-100-100 0 80 170-80 170 100 0 112-100 180 0-124 400 100 0 224-400 274 0t36-4 46-11 36-21 16-34q0-32-38-49t-74-19l-38-2-258 0-224-400-100 0z" horiz-adv-x="1000" />
<glyph glyph-name="videocam-1" unicode="&#xe880;" d="M1000 654v-608q0-23-22-32-7-3-14-3-15 0-25 10l-225 225v-92q0-67-47-114t-113-47h-393q-67 0-114 47t-47 114v392q0 67 47 114t114 47h393q66 0 113-47t47-114v-92l225 225q10 10 25 10 7 0 14-2 22-10 22-33z" horiz-adv-x="1000" />
<glyph glyph-name="videocam" unicode="&#xe880;" d="M1000 654v-608q0-23-22-32-7-3-14-3-15 0-25 10l-225 225v-92q0-67-47-114t-113-47h-393q-67 0-114 47t-47 114v392q0 67 47 114t114 47h393q66 0 113-47t47-114v-92l225 225q10 10 25 10 7 0 14-2 22-10 22-33z" horiz-adv-x="1000" />
<glyph glyph-name="video-1" unicode="&#xe881;" d="M0-29l0 758 1000 0 0-758-1000 0z m123 123l754 0 0 512-754 0 0-512z m266 82l0 340 293-170z" horiz-adv-x="1000" />
<glyph glyph-name="video" unicode="&#xe881;" d="M0-29l0 758 1000 0 0-758-1000 0z m123 123l754 0 0 512-754 0 0-512z m266 82l0 340 293-170z" horiz-adv-x="1000" />
<glyph glyph-name="shop-3" unicode="&#xe882;" d="M300 775c-50 0-94-50-100-100l-17-150-83 0c-25 0-50-25-50-50l-50-500c0-25 25-50 50-50l650 0c25 0 50 25 50 50l-50 500c0 25-25 50-50 50l-83 0-17 150c-6 50-50 100-100 100z m0-50l150 0c25 0 47-25 50-50l17-150-284 0 17 150c3 25 25 50 50 50z" horiz-adv-x="750" />
@ -312,7 +312,7 @@
<glyph glyph-name="glyph-45" unicode="&#xe897;" d="M992 573c-6 8-15 13-25 13l-98 0-200 171c-25 24-64 24-89 0l-197-171-80 0-50 173c-20 68-66 76-86 76l-133 0c-18 0-31-14-31-31s13-32 31-32l133 0c5 0 18 0 26-30l173-635c4-13 16-22 30-22l422 0c13 0 25 8 29 20l149 439c3 10 2 20-4 29z m-367 139l148-126-297 0 149 126z m171-565l-376 0-99 377 601 0-126-377z m-62-125c-43 0-78-35-78-78s35-79 78-79 79 35 79 79-35 78-79 78z m-281 0c-43 0-78-35-78-78s35-79 78-79 78 35 78 79-35 78-78 78z" horiz-adv-x="1000" />
<glyph glyph-name="instagram-3" unicode="&#xe898;" d="M0-50l0 800q0 41 30 71t70 29l800 0q41 0 71-29t29-71l0-800q0-41-29-71t-71-29l-800 0q-41 0-70 29t-30 71z m200 400q0-124 88-212t212-88 212 88 88 212-88 212-212 88-212-88-88-212z m100 0q0 82 59 141t141 59 141-59 59-141-59-141-141-59-141 59-59 141z" horiz-adv-x="1000" />
<glyph glyph-name="instagram-2" unicode="&#xe898;" d="M0-50l0 800q0 41 30 71t70 29l800 0q41 0 71-29t29-71l0-800q0-41-29-71t-71-29l-800 0q-41 0-70 29t-30 71z m200 400q0-124 88-212t212-88 212 88 88 212-88 212-212 88-212-88-88-212z m100 0q0 82 59 141t141 59 141-59 59-141-59-141-141-59-141 59-59 141z" horiz-adv-x="1000" />
<glyph glyph-name="business-affiliate-network-2" unicode="&#xe899;" d="M374 511l-61 57c7 13 11 28 11 44 0 49-40 90-90 90-50 0-90-41-90-90 0-50 40-91 90-91 18 0 34 6 48 14l61-57c9 12 19 23 31 33z m257 7l81 136c8-2 16-4 25-4 50 0 90 41 90 90 0 50-40 91-90 91-50 0-90-41-90-91 0-24 10-47 26-63l-81-136c14-6 27-14 39-23z m279-114c-39 0-72-24-85-59l-112 11c0-1 0-1 0-2 0-15-1-29-4-43l112-11c7-43 44-76 89-76 50 0 90 40 90 90 0 50-40 90-90 90z m-310-354l-25 109c-14-5-29-8-44-10l25-110c-29-15-49-45-49-80 0-49 40-90 90-90 50 0 90 41 90 90 1 49-38 89-87 91z m-294 260l-140-47c-16 25-44 41-76 41-50 0-90-40-90-90 0-50 40-90 90-90 50 0 90 40 90 90 0 2 0 4 0 6l140 47c-6 14-11 28-14 43z" horiz-adv-x="1000" />
@ -330,7 +330,7 @@
<glyph glyph-name="off-1" unicode="&#xe8a0;" d="M0 350q0 207 147 354l101-102q-105-103-105-252t104-253 253-104 253 104 104 253-105 252l102 102q146-147 146-354t-146-354-354-146-353 146-147 354z m428-78l0 578 144 0 0-578-144 0z" horiz-adv-x="1000" />
<glyph glyph-name="aparat-2" unicode="&#xe8a1;" d="M277 832c-52-10-97-47-115-96-3-10-26-97-26-97 1 0 5 4 11 11 12 14 37 38 51 50 61 51 133 85 209 100 31 6 28 5 25 6-5 2-91 24-101 26-13 2-41 2-54 0z m190-63c-2 0-9-1-16-2-93-9-183-53-250-120-70-69-111-155-122-254-2-17-2-66 0-84 6-54 19-99 43-146 59-116 169-199 298-223 30-6 39-7 80-7 41 0 51 1 80 7 84 16 160 56 221 116 94 94 137 224 118 356-7 43-18 80-37 119-22 46-47 80-82 116-67 66-149 106-246 120-12 2-76 3-87 2z m-59-115c54-14 91-61 91-116 0-46-25-86-67-106-20-10-28-12-53-11-17 0-22 0-29 2-44 12-76 45-87 87-5 19-4 45 2 65 14 41 50 72 94 80 11 3 36 2 49-1z m299-57c30-7 58-26 75-51 32-48 25-112-17-151-41-39-102-44-149-13-36 23-58 67-53 109 1 13 1 13 6 27 9 29 31 54 60 68 17 9 32 13 53 13 11 0 18-1 25-2z m-192-199c18-7 32-23 35-42 6-33-26-65-60-59-34 5-54 41-41 71 7 17 24 30 42 32 6 1 17 0 24-2z m-169-61c50-12 86-53 91-104 1-10 0-26-2-35-9-38-32-67-67-84-16-7-26-10-46-10-15-1-20 0-28 2-24 5-43 15-59 31-17 16-28 34-33 56-17 66 26 133 94 146 13 2 38 2 50-2z m304-58c30-8 55-25 71-50 12-19 18-37 19-59 3-47-23-90-66-112-31-16-68-17-100-3-27 11-48 31-61 57-10 20-11 28-11 53 0 19 0 21 3 31 14 44 47 75 93 85 11 2 40 1 52-2z m128 436c0-1 5-5 11-10 88-72 148-176 164-284 1-8 3-14 3-14 1 0 29 106 30 116 1 4 1 15 1 27-1 21-3 33-10 51-16 38-48 69-86 84-4 1-31 8-58 16-28 7-52 13-53 14-1 0-2 0-2 0z m-739-437c-3-9-24-91-25-98-2-14-1-44 3-58 13-50 47-88 94-105 10-4 98-27 100-26 0 0-4 4-10 9-14 11-35 32-50 48-54 60-93 138-108 217-3 14-3 15-4 13z m820-211c-70-87-172-147-280-166-8-1-15-3-15-3 0-1 95-26 107-28 16-3 46-2 62 3 28 7 51 21 72 42 14 15 25 31 32 50 3 9 31 111 30 111 0 1-4-3-8-9z" horiz-adv-x="1000" />
<glyph glyph-name="aparat" unicode="&#xe8a1;" d="M277 832c-52-10-97-47-115-96-3-10-26-97-26-97 1 0 5 4 11 11 12 14 37 38 51 50 61 51 133 85 209 100 31 6 28 5 25 6-5 2-91 24-101 26-13 2-41 2-54 0z m190-63c-2 0-9-1-16-2-93-9-183-53-250-120-70-69-111-155-122-254-2-17-2-66 0-84 6-54 19-99 43-146 59-116 169-199 298-223 30-6 39-7 80-7 41 0 51 1 80 7 84 16 160 56 221 116 94 94 137 224 118 356-7 43-18 80-37 119-22 46-47 80-82 116-67 66-149 106-246 120-12 2-76 3-87 2z m-59-115c54-14 91-61 91-116 0-46-25-86-67-106-20-10-28-12-53-11-17 0-22 0-29 2-44 12-76 45-87 87-5 19-4 45 2 65 14 41 50 72 94 80 11 3 36 2 49-1z m299-57c30-7 58-26 75-51 32-48 25-112-17-151-41-39-102-44-149-13-36 23-58 67-53 109 1 13 1 13 6 27 9 29 31 54 60 68 17 9 32 13 53 13 11 0 18-1 25-2z m-192-199c18-7 32-23 35-42 6-33-26-65-60-59-34 5-54 41-41 71 7 17 24 30 42 32 6 1 17 0 24-2z m-169-61c50-12 86-53 91-104 1-10 0-26-2-35-9-38-32-67-67-84-16-7-26-10-46-10-15-1-20 0-28 2-24 5-43 15-59 31-17 16-28 34-33 56-17 66 26 133 94 146 13 2 38 2 50-2z m304-58c30-8 55-25 71-50 12-19 18-37 19-59 3-47-23-90-66-112-31-16-68-17-100-3-27 11-48 31-61 57-10 20-11 28-11 53 0 19 0 21 3 31 14 44 47 75 93 85 11 2 40 1 52-2z m128 436c0-1 5-5 11-10 88-72 148-176 164-284 1-8 3-14 3-14 1 0 29 106 30 116 1 4 1 15 1 27-1 21-3 33-10 51-16 38-48 69-86 84-4 1-31 8-58 16-28 7-52 13-53 14-1 0-2 0-2 0z m-739-437c-3-9-24-91-25-98-2-14-1-44 3-58 13-50 47-88 94-105 10-4 98-27 100-26 0 0-4 4-10 9-14 11-35 32-50 48-54 60-93 138-108 217-3 14-3 15-4 13z m820-211c-70-87-172-147-280-166-8-1-15-3-15-3 0-1 95-26 107-28 16-3 46-2 62 3 28 7 51 21 72 42 14 15 25 31 32 50 3 9 31 111 30 111 0 1-4-3-8-9z" horiz-adv-x="1000" />
<glyph glyph-name="eye" unicode="&#xe8a2;" d="M929 314q-85 132-213 197 34-58 34-125 0-103-73-177t-177-73-177 73-73 177q0 67 34 125-128-65-213-197 75-114 187-182t242-68 243 68 186 182z m-402 215q0 11-8 19t-19 7q-70 0-120-50t-50-119q0-11 8-19t19-8 19 8 8 19q0 48 34 82t82 34q11 0 19 8t8 19z m473-215q0-19-11-38-78-129-210-206t-279-77-279 77-210 206q-11 19-11 38t11 39q78 128 210 205t279 78 279-78 210-205q11-20 11-39z" horiz-adv-x="1000" />
@ -344,7 +344,7 @@
<glyph glyph-name="eye-off" unicode="&#xe8a7;" d="M310 105l43 79q-48 35-76 88t-27 114q0 67 34 125-128-65-213-197 94-144 239-209z m217 424q0 11-8 19t-19 7q-70 0-120-50t-50-119q0-11 8-19t19-8 19 8 8 19q0 48 34 82t82 34q11 0 19 8t8 19z m202 106q0-4 0-5-59-105-176-316t-176-316l-28-50q-5-9-15-9-7 0-75 39-9 6-9 16 0 7 25 49-80 36-147 96t-117 137q-11 17-11 38t11 39q86 131 212 207t277 76q50 0 100-10l31 54q5 9 15 9 3 0 10-3t18-9 18-10 18-10 10-7q9-5 9-15z m21-249q0-78-44-142t-117-91l157 280q4-25 4-47z m250-72q0-19-11-38-22-36-61-81-84-96-194-149t-234-53l41 74q119 10 219 76t169 171q-65 100-158 164l35 63q53-36 102-85t81-103q11-19 11-39z" horiz-adv-x="1000" />
<glyph glyph-name="percent-2" unicode="&#xe8a8;" d="M292 683c69 0 125-55 125-125s-56-125-125-125-125 56-125 125 56 125 125 125m416-416c70 0 125-56 125-125s-55-125-125-125-125 56-125 125 56 125 125 125m125 358l-608-608-58 58 608 608 58-58z" horiz-adv-x="1000" />
<glyph glyph-name="percent" unicode="&#xe8a8;" d="M292 683c69 0 125-55 125-125s-56-125-125-125-125 56-125 125 56 125 125 125m416-416c70 0 125-56 125-125s-55-125-125-125-125 56-125 125 56 125 125 125m125 358l-608-608-58 58 608 608 58-58z" horiz-adv-x="1000" />
<glyph glyph-name="info-circled-alt" unicode="&#xe8a9;" d="M0 350q0 95 37 182t100 149 149 100 183 37q95 0 182-37t149-100 100-149 37-182q0-95-37-182t-100-150-149-100-182-37q-96 0-183 37t-149 100-100 150-37 182z m117 0q0-71 28-137t75-112 112-75 137-28 136 28 112 75 75 112 28 137-28 136-75 112-112 75-136 28-137-28-112-75-75-112-28-136z m281 170q0 28 20 45t51 17q32 0 51-17t19-45-19-46-51-17q-32 0-51 17t-20 46z m5-402v299h132v-299h-132z" horiz-adv-x="937.5" />
@ -366,13 +366,13 @@
<glyph glyph-name="stop" unicode="&#xe8b2;" d="M857 743v-786q0-14-10-25t-26-11h-785q-15 0-25 11t-11 25v786q0 14 11 25t25 11h785q15 0 26-11t10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="align-center-2" unicode="&#xe8b3;" d="M844 538c17 0 31-14 31-32v-62c0-17-14-31-31-31h-813c-17 0-31 14-31 31v62c0 18 14 32 31 32h813z m0-500c17 0 31-14 31-32v-62c0-18-14-32-31-32h-813c-17 0-31 14-31 32v62c0 18 14 32 31 32h813z m-633 625c-13 0-23 10-23 23v78c0 13 10 24 23 24h0 453c13 0 24-11 24-24v-78 0c0-13-11-23-24-23v0h-453z m453-500h-453c-13 0-23 10-23 23v78c0 13 10 24 23 24h0 453c13 0 24-11 24-24v-78 0c0-13-11-23-24-23v0z" horiz-adv-x="875" />
<glyph glyph-name="align-center" unicode="&#xe8b3;" d="M844 538c17 0 31-14 31-32v-62c0-17-14-31-31-31h-813c-17 0-31 14-31 31v62c0 18 14 32 31 32h813z m0-500c17 0 31-14 31-32v-62c0-18-14-32-31-32h-813c-17 0-31 14-31 32v62c0 18 14 32 31 32h813z m-633 625c-13 0-23 10-23 23v78c0 13 10 24 23 24h0 453c13 0 24-11 24-24v-78 0c0-13-11-23-24-23v0h-453z m453-500h-453c-13 0-23 10-23 23v78c0 13 10 24 23 24h0 453c13 0 24-11 24-24v-78 0c0-13-11-23-24-23v0z" horiz-adv-x="875" />
<glyph glyph-name="doc-text" unicode="&#xe8b5;" d="M212 308l0 90 280 0 0-90-280 0z m388 492q42 0 71-29t29-71l0-700q0-40-29-70t-71-30l-500 0q-40 0-70 30t-30 70l0 700q0 42 30 71t70 29l500 0z m0-800l0 700-500 0 0-700 500 0z m-110 592l0-88-280 0 0 88 280 0z m0-392l0-88-280 0 0 88 280 0z" horiz-adv-x="700" />
<glyph glyph-name="eject" unicode="&#xe8b6;" d="M0-96l0 258 1000 0 0-258-1000 0z m0 354l500 539 500-539-1000 0z" horiz-adv-x="1000" />
<glyph glyph-name="Beauty-1" unicode="&#xe8b7;" d="M419 822c-39 0-71-32-71-72 0-40 32-72 71-72 39 0 74 32 74 72 0 40-35 72-74 72z m-48-222c-40-119-101-151-101-151s-52 145-109 231c-23-52-47-86-96-100-1-44 51-208 55-290l601 0c2 79 55 256 55 288-38 16-85 51-96 102-63-86-109-231-109-231s-61 32-101 151c-27-13-77-13-99 0z m-297 222c-40 0-74-32-74-72 0-40 34-72 74-72 39 0 70 32 70 72 0 40-31 72-70 72z m47-603l0-119 600 0c0 43 0 81 0 119z m644 603c-40 0-72-32-72-72 0-40 32-72 72-72 40 0 72 32 72 72 0 40-32 72-72 72z" horiz-adv-x="837" />
<glyph glyph-name="crown" unicode="&#xe8b7;" d="M419 822c-39 0-71-32-71-72 0-40 32-72 71-72 39 0 74 32 74 72 0 40-35 72-74 72z m-48-222c-40-119-101-151-101-151s-52 145-109 231c-23-52-47-86-96-100-1-44 51-208 55-290l601 0c2 79 55 256 55 288-38 16-85 51-96 102-63-86-109-231-109-231s-61 32-101 151c-27-13-77-13-99 0z m-297 222c-40 0-74-32-74-72 0-40 34-72 74-72 39 0 70 32 70 72 0 40-31 72-70 72z m47-603l0-119 600 0c0 43 0 81 0 119z m644 603c-40 0-72-32-72-72 0-40 32-72 72-72 40 0 72 32 72 72 0 40-32 72-72 72z" horiz-adv-x="837" />
<glyph glyph-name="braille" unicode="&#xe8b8;" d="M0-26q0 52 36 88t87 36 88-36 37-88-37-88-88-36-87 36-36 88z m0 376q0 51 36 88t87 37 88-37 37-88-37-88-88-37-87 37-36 88z m0 376q0 52 36 88t87 36 88-36 37-88-37-88-88-36-87 36-36 88z m397-752q0 52 37 88t88 36 86-36 37-88-37-88-86-36-88 36-37 88z m0 376q0 51 37 88t88 37 86-37 37-88-37-88-86-37-88 37-37 88z m0 376q0 52 37 88t88 36 86-36 37-88-37-88-86-36-88 36-37 88z" horiz-adv-x="644" />
@ -386,7 +386,7 @@
<glyph glyph-name="pause" unicode="&#xe8bd;" d="M857 743v-786q0-14-10-25t-26-11h-285q-15 0-25 11t-11 25v786q0 14 11 25t25 11h285q15 0 26-11t10-25z m-500 0v-786q0-14-10-25t-26-11h-285q-15 0-25 11t-11 25v786q0 14 11 25t25 11h285q15 0 26-11t10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="clock-3" unicode="&#xe8be;" d="M500 834c268 0 484-216 484-484s-216-484-484-484-484 216-484 484 216 484 484 484z m112-683c10-8 25-6 32 5l55 75c8 11 6 26-5 33l-124 91v268c0 13-10 24-23 24h-94c-13 0-23-11-23-24v-328c0-8 3-15 9-19z" horiz-adv-x="1000" />
<glyph glyph-name="clock-1" unicode="&#xe8be;" d="M500 834c268 0 484-216 484-484s-216-484-484-484-484 216-484 484 216 484 484 484z m112-683c10-8 25-6 32 5l55 75c8 11 6 26-5 33l-124 91v268c0 13-10 24-23 24h-94c-13 0-23-11-23-24v-328c0-8 3-15 9-19z" horiz-adv-x="1000" />
<glyph glyph-name="en-letters" unicode="&#xe8bf;" d="M425 224v-111h-396v511h386v-112h-248v-86h219v-108h-219v-94h258z m547 400v-511h-115l-218 272v-272h-137v511h115l218-273v273h137z" horiz-adv-x="1000" />
@ -420,15 +420,15 @@
<glyph glyph-name="user-tie" unicode="&#xe8ce;" d="M438 350c-139 0-250 112-250 250s111 250 250 250 250-112 250-250-112-250-250-250z m187-64c139-6 250-120 250-261v-81c0-52-42-94-94-94h-687c-52 0-94 42-94 94v81c0 141 111 255 250 261l94-374 62 266-62 110h187l-62-110 62-266z" horiz-adv-x="875" />
<glyph glyph-name="headphones" unicode="&#xe8cf;" d="M856 294q22 0 39-16t16-40l0-223q0-24-16-40t-39-16l-168 0 0 447q0 92-65 157t-158 66-158-66-66-157l0-447-167 0q-24 0-40 16t-16 40l0 223q0 23 16 39t40 17l56 0 0 112q0 138 98 236t236 99 237-99 98-236l0-112 57 0z" horiz-adv-x="928" />
<glyph glyph-name="headphones-2" unicode="&#xe8cf;" d="M856 294q22 0 39-16t16-40l0-223q0-24-16-40t-39-16l-168 0 0 447q0 92-65 157t-158 66-158-66-66-157l0-447-167 0q-24 0-40 16t-16 40l0 223q0 23 16 39t40 17l56 0 0 112q0 138 98 236t236 99 237-99 98-236l0-112 57 0z" horiz-adv-x="928" />
<glyph glyph-name="infinity-1" unicode="&#xe8d1;" d="M0 350q0 93 66 159t159 66 159-66l72-69 73 70q65 65 157 65 92 0 158-66t67-159-67-159-158-66q-92 0-158 66l-72 69-73-70q-65-65-158-65t-159 66-66 159z m225 95q-39 0-67-28t-28-67q0-40 28-67t67-28 68 28l68 67-68 66q-29 29-68 29z m529-162q27 27 27 67t-27 68-67 27-67-27l-70-68 69-66q27-28 67-28t68 27z" horiz-adv-x="911" />
<glyph glyph-name="youtube-1" unicode="&#xe8d2;" d="M0 123q0 54 6 162 4 53 38 87t87 36q100 5 301 5t301-5q53-3 87-36t38-87q5-90 5-162t-5-162q-4-53-38-87t-87-36q-100-5-301-5t-301 5q-53 3-87 36t-38 87q-6 108-6 162z m67 141l61 0 0-326 59 0 0 326 61 0 0 55-181 0 0-55z m65 603l60 0 38-152 4 0 36 152 60 0-46-148q-23-73-23-75l0-158-59 0 0 151q-2 14-5 26t-9 26-9 25z m116-885q0-48 36-48 32 0 61 35l0-31 52 0 0 281-52 0 0-214q-21-21-31-21-14 0-14 19l0 216-52 0 0-237z m79 575l0 146q0 34 22 53t56 18q33 0 54-20t20-53l0-145q0-36-20-56t-56-21q-35 0-55 22t-21 56z m54-7q0-23 22-23 23 0 23 25l0 153q0 9-7 15t-16 6-15-5-7-15l0-156z m67-612l53 0 0 21q20-25 50-25 47 0 47 62l0 156q0 71-51 71-25 0-46-27l0 123-53 0 0-381z m53 53l0 176q11 11 22 11 22 0 22-28l0-148q0-24-19-24-14 0-25 13z m23 539l0 237 52 0 0-215q0-19 14-19 13 0 31 21l0 213 52 0 0-281-52 0 0 31q-29-35-61-35-36 0-36 48z m114-513q0-38 19-63t57-24q78 0 78 87l0 21-54 0q0-2 1-13t-1-17-2-14-7-12-14-3q-23 0-23 40l0 53 100 0 0 72q0 38-18 60t-57 22q-36 0-57-23t-22-59l0-127z m54 99l0 30q0 31 23 31t23-31l0-30-46 0z" horiz-adv-x="863" />
<glyph glyph-name="youtube" unicode="&#xe8d2;" d="M0 123q0 54 6 162 4 53 38 87t87 36q100 5 301 5t301-5q53-3 87-36t38-87q5-90 5-162t-5-162q-4-53-38-87t-87-36q-100-5-301-5t-301 5q-53 3-87 36t-38 87q-6 108-6 162z m67 141l61 0 0-326 59 0 0 326 61 0 0 55-181 0 0-55z m65 603l60 0 38-152 4 0 36 152 60 0-46-148q-23-73-23-75l0-158-59 0 0 151q-2 14-5 26t-9 26-9 25z m116-885q0-48 36-48 32 0 61 35l0-31 52 0 0 281-52 0 0-214q-21-21-31-21-14 0-14 19l0 216-52 0 0-237z m79 575l0 146q0 34 22 53t56 18q33 0 54-20t20-53l0-145q0-36-20-56t-56-21q-35 0-55 22t-21 56z m54-7q0-23 22-23 23 0 23 25l0 153q0 9-7 15t-16 6-15-5-7-15l0-156z m67-612l53 0 0 21q20-25 50-25 47 0 47 62l0 156q0 71-51 71-25 0-46-27l0 123-53 0 0-381z m53 53l0 176q11 11 22 11 22 0 22-28l0-148q0-24-19-24-14 0-25 13z m23 539l0 237 52 0 0-215q0-19 14-19 13 0 31 21l0 213 52 0 0-281-52 0 0 31q-29-35-61-35-36 0-36 48z m114-513q0-38 19-63t57-24q78 0 78 87l0 21-54 0q0-2 1-13t-1-17-2-14-7-12-14-3q-23 0-23 40l0 53 100 0 0 72q0 38-18 60t-57 22q-36 0-57-23t-22-59l0-127z m54 99l0 30q0 31 23 31t23-31l0-30-46 0z" horiz-adv-x="863" />
<glyph glyph-name="quote-left-alt" unicode="&#xe8d3;" d="M911 16l-335 0 0 335 335 334 0-669z m-558 0l-335 0 0 335 335 334 0-669z" horiz-adv-x="928" />
<glyph glyph-name="fa-letters-1" unicode="&#xe8d4;" d="M176 512v-113h218v-111h-218v-176h-140v512h387v-112h-247z m624-300h-208l-39-100h-142l218 512h137l218-512h-145l-39 100z m-40 106l-64 164-63-164h127z" horiz-adv-x="1000" />
<glyph glyph-name="fa-letters" unicode="&#xe8d4;" d="M176 512v-113h218v-111h-218v-176h-140v512h387v-112h-247z m624-300h-208l-39-100h-142l218 512h137l218-512h-145l-39 100z m-40 106l-64 164-63-164h127z" horiz-adv-x="1000" />
<glyph glyph-name="number" unicode="&#xe8d5;" d="M123 92c-36 24-65 57-85 102-21 44-31 97-31 158 0 60 10 113 31 157 20 45 49 79 85 102 36 23 78 35 125 35 46 0 87-12 124-35 36-23 64-57 85-102 20-44 31-97 31-157 0-61-11-114-31-158-21-45-49-78-85-102-37-23-78-34-124-34-47 0-89 11-125 34z m186 136c16 26 23 67 23 124 0 56-7 98-23 124-15 26-36 39-61 39-27 0-48-13-63-39-15-26-23-68-23-124 0-57 7-98 23-124 15-26 36-39 63-39 25 0 46 13 61 39z m616 346c45-48 68-117 68-207 0-65-12-120-36-167-24-46-58-82-102-106-44-24-95-36-153-36-30 0-60 3-88 11-28 7-52 17-71 30l56 115c26-20 60-30 100-30 39 0 71 12 95 34 24 22 38 55 42 97-31-27-71-41-122-41-34 0-66 7-94 22-29 15-52 36-68 63-17 27-26 58-26 93 0 39 10 72 29 102 19 29 44 52 77 68 32 15 68 23 108 23 78 1 140-23 185-71z m-120-165c14 13 21 30 21 52 0 21-6 38-20 51-14 13-33 20-56 20-22 0-40-7-53-19-14-13-21-31-21-53 0-21 7-39 21-52 13-13 32-19 54-19 22 0 40 6 54 20z" horiz-adv-x="1000" />
@ -454,7 +454,7 @@
<glyph glyph-name="user-minus" unicode="&#xe8e6;" d="M1219 444c17 0 31-14 31-31v-63c0-17-14-31-31-31h-375c-17 0-31 14-31 31v63c0 17 14 31 31 31h375z m-781-94c-139 0-250 112-250 250s111 250 250 250 250-112 250-250-112-250-250-250z m175-62c144 0 262-118 262-263v-81c0-52-42-94-94-94h-687c-52 0-94 42-94 94v81c0 145 118 263 263 263h32c44-20 92-32 143-32s99 12 142 32h33z" horiz-adv-x="1250" />
<glyph glyph-name="eq-1" unicode="&#xe8e7;" d="M729 637q44 0 74-31t31-73-31-73-74-31l-625 0q-44 0-74 30t-30 74 30 74 74 30l625 0z m0-364q44 0 74-31t31-74q0-43-31-73t-74-31l-625 0q-44 0-74 30t-30 74 31 74 73 31l625 0z" horiz-adv-x="834" />
<glyph glyph-name="eq" unicode="&#xe8e7;" d="M729 637q44 0 74-31t31-73-31-73-74-31l-625 0q-44 0-74 30t-30 74 30 74 74 30l625 0z m0-364q44 0 74-31t31-74q0-43-31-73t-74-31l-625 0q-44 0-74 30t-30 74 31 74 73 31l625 0z" horiz-adv-x="834" />
<glyph glyph-name="gift-3" unicode="&#xe8e8;" d="M518 93v400h-179v-400q0-14 10-21t26-8h107q16 0 26 8t10 21z m-255 471h109l-70 90q-15 17-39 17-22 0-38-15t-15-38 15-38 38-16z m384 54q0 22-15 38t-38 15q-24 0-39-17l-69-90h108q22 0 38 16t15 38z m210-143v-179q0-7-5-12t-13-5h-53v-233q0-22-16-37t-38-16h-607q-22 0-38 16t-16 37v233h-53q-8 0-13 5t-5 12v179q0 8 5 13t13 5h245q-51 0-88 36t-37 89 37 88 88 37q60 0 94-43l72-92 71 92q34 43 94 43 52 0 88-37t37-88-37-89-88-36h245q8 0 13-5t5-13z" horiz-adv-x="857.1" />
@ -484,7 +484,7 @@
<glyph glyph-name="sort-alphabetical" unicode="&#xe8f5;" d="M385 642l136 135 135-135h-271m271-584l-135-135-136 135h271m-286 196h-120l-30-112h-99l129 416h125l130-416h-102l-33 112m-106 68h93l-27 88-10 40-11 40h-1l-9-40-10-41-25-87m280-180v52l198 282v3h-179v79h301v-55l-194-278v-3h197v-80h-323z" horiz-adv-x="1000" />
<glyph glyph-name="telegram-5" unicode="&#xe8f6;" d="M615 555l-358-120c-30-9-49-36-49-67 0-31 19-57 49-67l145-49 49-145c10-30 36-49 67-49 31 0 58 19 67 49l120 358c8 26 2 53-17 73s-47 25-73 17z m-97-387l-50 150-150 50 300 100z m0 0m-18 682c-276 0-500-224-500-500s224-500 500-500 500 224 500 500-224 500-500 500z m0-917c-230 0-417 187-417 417s187 417 417 417 417-187 417-417-187-417-417-417z m0 0" horiz-adv-x="1000" />
<glyph glyph-name="telegram-2" unicode="&#xe8f6;" d="M615 555l-358-120c-30-9-49-36-49-67 0-31 19-57 49-67l145-49 49-145c10-30 36-49 67-49 31 0 58 19 67 49l120 358c8 26 2 53-17 73s-47 25-73 17z m-97-387l-50 150-150 50 300 100z m0 0m-18 682c-276 0-500-224-500-500s224-500 500-500 500 224 500 500-224 500-500 500z m0-917c-230 0-417 187-417 417s187 417 417 417 417-187 417-417-187-417-417-417z m0 0" horiz-adv-x="1000" />
<glyph glyph-name="temperature-fahrenheit-2" unicode="&#xe8f7;" d="M458 17v625h375v-125h-250v-125h209v-125h-209v-250h-125m-208 708c69 0 125-56 125-125s-56-125-125-125-125 56-125 125 56 125 125 125m0-83c-23 0-42-19-42-42s19-42 42-42 42 19 42 42-19 42-42 42z" horiz-adv-x="1000" />
@ -530,7 +530,7 @@
<glyph glyph-name="car-side" unicode="&#xe91c;" d="M1063 475c103 0 187-84 187-187v-157c0-17-14-31-31-31h-94c0-104-84-188-187-188s-188 84-188 188h-250c0-104-84-188-187-188s-188 84-188 188h-94c-17 0-31 14-31 31v219c0 58 40 107 94 121l93 238c19 47 65 79 116 79h418c33 0 77-21 98-47l212-266h32z m-750-469c51 0 93 42 93 94s-42 94-93 94-94-42-94-94 42-94 94-94z m140 469v188h-150l-75-188h225z m94 0h324l-150 188h-174v-188z m391-469c51 0 93 42 93 94s-42 94-93 94-94-42-94-94 42-94 94-94z" horiz-adv-x="1250" />
<glyph glyph-name="map-marked-2" unicode="&#xe91d;" d="M563 850c135 0 246-110 246-246 0-110-161-310-223-383-12-15-35-15-47 0-62 73-223 273-223 383 0 136 111 246 247 246z m-524-422l232 93c10-29 24-60 42-91v-455l-270-123c-21-8-43 7-43 29v489c0 24 18 50 39 58z m524-280c27 0 53 12 71 33 38 45 79 97 116 150v-481l-375 125v356c37-53 78-105 116-150 18-21 44-33 72-33z m519 387c21 8 43-7 43-29v-489c0-23-18-49-39-58l-273-109v563z" horiz-adv-x="1125" />
<glyph glyph-name="map-marked" unicode="&#xe91d;" d="M563 850c135 0 246-110 246-246 0-110-161-310-223-383-12-15-35-15-47 0-62 73-223 273-223 383 0 136 111 246 247 246z m-524-422l232 93c10-29 24-60 42-91v-455l-270-123c-21-8-43 7-43 29v489c0 24 18 50 39 58z m524-280c27 0 53 12 71 33 38 45 79 97 116 150v-481l-375 125v356c37-53 78-105 116-150 18-21 44-33 72-33z m519 387c21 8 43-7 43-29v-489c0-23-18-49-39-58l-273-109v563z" horiz-adv-x="1125" />
<glyph glyph-name="truck-monster" unicode="&#xe92e;" d="M1219 413c17 0 31-14 31-32v-62c0-17-14-31-31-31h-33c-57 75-147 125-248 125-102 0-192-50-249-125h-128c-57 75-147 125-248 125s-192-50-249-125h-33c-17 0-31 14-31 31v62c0 18 14 32 31 32h32v156c0 17 14 31 31 31h344v188c0 34 28 62 62 62h221c33 0 77-21 98-47l162-203h144c35 0 63-28 63-62v-125h31z m-656 187h258l-100 125h-158v-125z m593-437c18 0 32-14 32-32v-62c0-17-14-31-32-31h-10c-3-12-11-30-17-41l7-8c13-12 13-32 0-44l-44-44c-12-12-32-12-44 0l-7 7c-13-7-27-12-41-17v-10c0-17-14-31-31-31h-63c-17 0-31 14-31 31v10c-14 5-28 10-41 17l-7-7c-12-12-32-12-44 0l-44 44c-13 12-13 32 0 44l7 8c-7 13-13 26-17 41h-10c-17 0-31 14-31 31v62c0 18 14 32 31 32h10c3 11 11 30 17 40l-7 8c-13 12-13 32 0 44l44 44c12 12 32 12 44 0l7-7c13 7 27 12 41 17v10c0 17 14 31 31 31h63c17 0 31-14 31-31v-10c12-4 30-11 41-17l7 7c12 12 32 12 44 0l44-44c13-12 13-32 0-44l-7-8c7-13 13-26 17-40h10z m-218-157c51 0 93 42 93 94s-42 94-93 94-94-42-94-94 42-94 94-94z m-407 157c18 0 32-14 32-32v-62c0-17-14-31-32-31h-10c-3-12-11-30-17-41l7-7c13-13 13-32 0-45l-44-44c-12-12-32-12-44 0l-7 7c-13-7-27-12-41-17v-10c0-17-14-31-31-31h-63c-17 0-31 14-31 31v10c-14 5-28 10-41 17l-7-7c-12-12-32-12-44 0l-44 44c-13 13-13 32 0 45l7 7c-7 13-13 26-17 41h-10c-17 0-31 14-31 31v62c0 18 14 32 31 32h10c3 11 11 30 17 40l-7 8c-13 12-13 32 0 44l44 44c12 12 32 12 44 0l7-7c13 7 27 12 41 17v10c0 17 14 31 31 31h63c17 0 31-14 31-31v-10c12-4 30-11 41-17l7 7c12 12 32 12 44 0l44-44c13-12 13-32 0-44l-7-8c7-13 13-26 17-40h10z m-218-157c51 0 93 42 93 94s-42 94-93 94-94-42-94-94 42-94 94-94z" horiz-adv-x="1250" />
@ -546,7 +546,7 @@
<glyph glyph-name="signal-1" unicode="&#xe959;" d="M222-150h-222v333h222v-333z m371 0h-223v667h223v-667z m148 0v1000h222v-1000h-222z" horiz-adv-x="963" />
<glyph glyph-name="envelope-open-tex" unicode="&#xe95b;" d="M344 428c-17 0-31 14-31 31v32c0 17 14 31 31 31h312c18 0 32-14 32-31v-32c0-17-14-31-32-31h-312z m-31-156v31c0 17 14 31 31 31h312c18 0 32-14 32-31v-31c0-17-14-31-32-31h-312c-17 0-31 14-31 31z m187-237c32 0 64 10 92 30l408 295v-416c0-52-42-94-94-94h-812c-52 0-94 42-94 94v416l409-295c27-20 59-30 91-30z m464 497c23-18 36-45 36-74v-21l-187-135v361h-625v-361l-188 135v21c0 25 16 58 36 74 17 13 34 26 58 44v87c0 51 42 93 94 93h151c6 5 11 9 18 13 33 24 98 82 143 81 45 1 111-57 143-81 7-4 12-8 18-13h152c51 0 93-42 93-93v-87c24-18 41-31 58-44z" horiz-adv-x="1000" />
<glyph glyph-name="envelope-open-text" unicode="&#xe95b;" d="M344 428c-17 0-31 14-31 31v32c0 17 14 31 31 31h312c18 0 32-14 32-31v-32c0-17-14-31-32-31h-312z m-31-156v31c0 17 14 31 31 31h312c18 0 32-14 32-31v-31c0-17-14-31-32-31h-312c-17 0-31 14-31 31z m187-237c32 0 64 10 92 30l408 295v-416c0-52-42-94-94-94h-812c-52 0-94 42-94 94v416l409-295c27-20 59-30 91-30z m464 497c23-18 36-45 36-74v-21l-187-135v361h-625v-361l-188 135v21c0 25 16 58 36 74 17 13 34 26 58 44v87c0 51 42 93 94 93h151c6 5 11 9 18 13 33 24 98 82 143 81 45 1 111-57 143-81 7-4 12-8 18-13h152c51 0 93-42 93-93v-87c24-18 41-31 58-44z" horiz-adv-x="1000" />
<glyph glyph-name="barcode" unicode="&#xe961;" d="M0-25v750h35v-750h-35z m53 0v750h17v-750h-17z m53 0v750h17v-750h-17z m87 0v750h17v-750h-17z m70 0v750h35v-750h-35z m88 0v750h17v-750h-17z m35 0v750h18v-750h-18z m35 0v750h18v-750h-18z m70 0v750h35v-750h-35z m88 0v750h35v-750h-35z m70 0v750h35v-750h-35z m70 0v750h36v-750h-36z m53 0v750h35v-750h-35z m88 0v750h52v-750h-52z m70 0v750h18v-750h-18z m35 0v750h35v-750h-35z" horiz-adv-x="1000" />
@ -584,11 +584,11 @@
<glyph glyph-name="plane-arrival" unicode="&#xe972;" d="M1219-25c17 0 31-14 31-31v-63c0-17-14-31-31-31h-1188c-17 0-31 14-31 31v63c0 17 14 31 31 31h1188z m-1131 473c-13 12-25 28-25 46l0 199c0 21 20 36 40 31l78-22c9-2 17-9 21-19l54-133 200-54-94 321c0 22 20 38 40 32l128-35c11-3 19-12 22-23l196-375 191-52c52-14 101-39 138-78 42-43 53-79 46-107-8-28-34-54-92-70-52-14-107-11-159 3l-561 153c-16 4-38 16-50 27z" horiz-adv-x="1250" />
<glyph glyph-name="factory-2" unicode="&#xe973;" d="M167 100v-83h166v83h-166m0 167v-84h416v84h-416m250-167v-83h166v83h-166m250 167v-84h166v84h-166m0-167v-83h166v83h-166m-584-167v584l209-167v167l208-167v167l208-167 42 417h125l42-417v-417h-834z" horiz-adv-x="1000" />
<glyph glyph-name="factory" unicode="&#xe973;" d="M167 100v-83h166v83h-166m0 167v-84h416v84h-416m250-167v-83h166v83h-166m250 167v-84h166v84h-166m0-167v-83h166v83h-166m-584-167v584l209-167v167l208-167v167l208-167 42 417h125l42-417v-417h-834z" horiz-adv-x="1000" />
<glyph glyph-name="helicopter" unicode="&#xe974;" d="M594 100c-17 0-40 11-50 25l-169 225-312 125-62 211c-5 20 10 39 30 39h78c10 0 20-5 25-12l85-113h406v125h-344c-17 0-31 14-31 31v63c0 17 14 31 31 31h813c17 0 31-14 31-31v-63c0-17-14-31-31-31h-344v-125c242 0 438-196 438-437 0-35-28-63-63-63h-531z m219 368v-243h243c-25 122-121 218-243 243z m428-514c13-13 12-34-2-46-65-57-105-58-134-58h-636c-17 0-31 14-31 31v63c0 17 14 31 31 31h636c21 0 35 9 49 22 12 12 32 13 44 0z" horiz-adv-x="1250" />
<glyph glyph-name="warehouse-2" unicode="&#xe975;" d="M984 163c9 0 16-7 16-16v-94c0-8-7-15-16-15h-718c-8 0-15 7-15 15l0 94c0 9 7 16 15 16h718z m0-188c9 0 16-7 16-16v-93c0-9-7-16-16-16h-718c-9 0-16 7-16 16l0 93c0 9 7 16 16 16h718z m0 375c9 0 16-7 16-16v-93c0-9-7-16-16-16h-717c-9 0-16 7-16 16l0 93c0 9 7 16 16 16h717z m208 272c35-15 58-49 58-87v-669c0-9-7-16-16-16h-156c-8 0-15 7-15 16v484c0 34-29 63-64 63h-748c-35 0-63-29-63-63v-484c0-9-7-16-16-16h-156c-9 0-16 7-16 16v669c0 38 23 72 58 87l531 221c9 4 26 7 36 7 10 0 26-3 36-7z" horiz-adv-x="1250" />
<glyph glyph-name="warehouse" unicode="&#xe975;" d="M984 163c9 0 16-7 16-16v-94c0-8-7-15-16-15h-718c-8 0-15 7-15 15l0 94c0 9 7 16 15 16h718z m0-188c9 0 16-7 16-16v-93c0-9-7-16-16-16h-718c-9 0-16 7-16 16l0 93c0 9 7 16 16 16h718z m0 375c9 0 16-7 16-16v-93c0-9-7-16-16-16h-717c-9 0-16 7-16 16l0 93c0 9 7 16 16 16h717z m208 272c35-15 58-49 58-87v-669c0-9-7-16-16-16h-156c-8 0-15 7-15 16v484c0 34-29 63-64 63h-748c-35 0-63-29-63-63v-484c0-9-7-16-16-16h-156c-9 0-16 7-16 16v669c0 38 23 72 58 87l531 221c9 4 26 7 36 7 10 0 26-3 36-7z" horiz-adv-x="1250" />
<glyph glyph-name="transgender-1" unicode="&#xe976;" d="M727 850c13 0 23-10 23-23v-155c0-21-25-31-40-16l-33 33-158-158c28-43 44-95 44-150 0-133-94-245-219-274v-54h70c13 0 24-10 24-23v-78c0-13-11-24-24-24h-70v-55c0-13-11-23-24-23h-78c-13 0-23 10-23 23v55h-71c-12 0-23 11-23 24v78c0 13 11 23 23 23h71v54c-125 28-219 141-219 274 0 156 126 282 281 282 55 0 107-16 150-44l158 158-33 33c-15 15-5 40 16 40h155z m-446-625c86 0 157 70 157 156s-71 157-157 157-156-71-156-157 70-156 156-156z" horiz-adv-x="750" />
@ -642,7 +642,7 @@
<glyph glyph-name="skull-crossbones" unicode="&#xe991;" d="M858-35c15-8 21-26 14-42l-28-56c-8-15-27-21-42-14l-364 178-365-178c-15-7-34-1-42 14l-28 56c-7 16-1 34 14 42l278 135-278 135c-15 8-21 26-14 42l28 56c8 15 27 21 42 14l365-177 364 177c15 7 34 1 42-14l28-56c7-16 1-34-14-42l-278-135z m-565 422c-82 43-137 122-137 213 0 138 126 250 282 250s281-112 281-250c0-91-55-170-137-213l11-51c5-25-11-48-32-48h-247c-21 0-37 23-32 48z m254 244c-35 0-63-28-63-62s28-63 63-63 62 28 62 63-28 62-62 62z m-219 0c-34 0-62-28-62-62s28-63 62-63 63 28 63 63-28 62-63 62z" horiz-adv-x="875" />
<glyph glyph-name="plane-departure-2" unicode="&#xe992;" d="M1219-25c17 0 31-14 31-31v-63c0-17-14-31-31-31h-1188c-17 0-31 14-31 31v63c0 17 14 31 31 31h1188z m-1062 209l-148 162c-15 17-10 44 10 54l79 40c4 2 11 4 16 4 4 0 11-2 15-4l141-71 202 102-305 192c-16 17-11 45 10 56l128 65c5 2 12 4 16 4 6 0 15-3 20-6l427-161 192 98c52 26 110 42 169 38 65-4 99-25 113-54 15-28 11-68-25-124-32-49-79-87-131-114l-568-288c-15-8-41-14-58-14l-255 0c-18 0-35 7-48 21z" horiz-adv-x="1250" />
<glyph glyph-name="plane-departure" unicode="&#xe992;" d="M1219-25c17 0 31-14 31-31v-63c0-17-14-31-31-31h-1188c-17 0-31 14-31 31v63c0 17 14 31 31 31h1188z m-1062 209l-148 162c-15 17-10 44 10 54l79 40c4 2 11 4 16 4 4 0 11-2 15-4l141-71 202 102-305 192c-16 17-11 45 10 56l128 65c5 2 12 4 16 4 6 0 15-3 20-6l427-161 192 98c52 26 110 42 169 38 65-4 99-25 113-54 15-28 11-68-25-124-32-49-79-87-131-114l-568-288c-15-8-41-14-58-14l-255 0c-18 0-35 7-48 21z" horiz-adv-x="1250" />
<glyph glyph-name="library-books" unicode="&#xe993;" d="M792 558h-417v84h417m-167-417h-250v83h250m167 84h-417v83h417m41 292h-500c-45 0-83-38-83-84v-500c0-45 38-83 83-83h500c46 0 84 38 84 83v500c0 46-38 84-84 84m-666-167h-84v-583c0-46 38-84 84-84h583v84h-583v583z" horiz-adv-x="1000" />
@ -658,7 +658,7 @@
<glyph glyph-name="fingerprint" unicode="&#xe999;" d="M500 370c26 0 47-21 47-47 3-194-31-345-57-439-6-21-25-34-46-34-40 0-50 41-45 60 39 136 57 272 54 413 0 26 21 47 47 47z m-1 159c111-1 203-91 205-200 1-100-6-200-23-297-1-10-14-46-53-39-26 4-43 28-39 54 15 92 22 186 21 280-1 59-52 108-113 109-67 0-107-52-106-103 1-100-8-201-28-299-5-25-30-41-56-36-25 5-41 30-36 55 19 92 28 185 26 279-2 105 82 197 202 197z m-217 39c20-16 24-46 7-66-36-45-55-100-54-158 1-80-6-159-20-237-1-9-15-45-54-38-26 5-43 29-38 55 13 71 19 145 18 218-1 80 25 158 75 219 17 20 46 23 66 7z m214 122c198-3 361-163 364-355 0-8 0-21 0-29 0-57-5-149-12-206-2-18-19-45-52-41-25 3-44 26-41 52 9 73 12 148 11 222-2 143-124 261-271 263-23 0-45-2-67-7-25-6-50 9-56 35-6 25 10 50 35 56 29 7 59 10 89 10z m493-238c12-55 11-98 11-141 0-26-21-46-47-46h0c-26 0-47 21-47 47 1 47 0 78-9 120-6 26 10 51 36 56 25 6 50-10 56-36z m-79 178c15-22 10-51-11-66-21-14-51-9-65 12-78 111-206 178-342 180-110 2-212-39-288-115-72-72-112-169-110-271l0-46c-1-26-22-46-47-46-1 0-1 0-1 0-26 1-47 22-46 48l0 42c-2 128 47 249 138 340 93 93 220 144 356 142 165-2 321-85 416-220z" horiz-adv-x="1000" />
<glyph glyph-name="shield-2" unicode="&#xe99a;" d="M912 694c-171 0-301 49-412 156-110-107-241-156-412-156 0-280-58-681 412-844 470 163 412 564 412 844z m-446-493l-137 137 61 62 76-76 144 144 61-61-205-206z" horiz-adv-x="1000" />
<glyph glyph-name="shield" unicode="&#xe99a;" d="M912 694c-171 0-301 49-412 156-110-107-241-156-412-156 0-280-58-681 412-844 470 163 412 564 412 844z m-446-493l-137 137 61 62 76-76 144 144 61-61-205-206z" horiz-adv-x="1000" />
<glyph glyph-name="shuttle-van" unicode="&#xe99b;" d="M1228 439c14-17 22-38 22-60v-216c0-35-28-63-62-63h-63c0-104-84-188-187-188s-188 84-188 188h-250c0-104-84-188-187-188s-188 84-188 188h-62c-35 0-63 28-63 63v562c0 35 28 63 63 63h831c24 0 56-16 72-34z m-1103 36h188v188h-188v-188z m188-469c51 0 93 42 93 94s-42 94-93 94-94-42-94-94 42-94 94-94z m312 469v188h-187v-188h187z m313-469c51 0 93 42 93 94s-42 94-93 94-94-42-94-94 42-94 94-94z m-188 469h285l-156 188h-129v-188z" horiz-adv-x="1250" />
@ -690,7 +690,7 @@
<glyph glyph-name="hdd-1" unicode="&#xe9ae;" d="M1125 256v-187c0-52-42-94-94-94h-937c-52 0-94 42-94 94v187c0 52 42 94 94 94h937c52 0 94-42 94-94z m-94 157h-937 0c-18 0-44-6-60-12l188 282c16 23 51 42 78 42h525c28 0 63-19 78-42l188-282c-15 6-42 12-60 12h0z m-93-188c-35 0-63-28-63-62s28-63 63-63 62 28 62 63-28 62-62 62z m-188 0c-34 0-62-28-62-62s28-63 62-63 63 28 63 63-28 62-63 62z" horiz-adv-x="1125" />
<glyph glyph-name="map-2" unicode="&#xe9af;" d="M332 55h139v-139h-139z m-143 284h240l-97 98c-38 38-62 86-68 139h-75z m-189-284h273v-139h-273z m529 225h112v-364h-112z m341 45l130-91v342h-130z m-870-45h471v-166h-471z m0 296h130v-237h-130z m668-139l-97-98h240v237h-75c-6-53-30-101-68-139z m332-274l-169 117h-131v-364h300z m-627 315l127-127 127 127c34 34 52 79 52 127 0 99-80 179-179 179s-179-80-179-179c0-48 18-93 52-127z m127 233c59 0 106-48 106-106s-47-106-106-106-106 47-106 106 48 106 106 106z" horiz-adv-x="1000" />
<glyph glyph-name="location-on-map" unicode="&#xe9af;" d="M332 55h139v-139h-139z m-143 284h240l-97 98c-38 38-62 86-68 139h-75z m-189-284h273v-139h-273z m529 225h112v-364h-112z m341 45l130-91v342h-130z m-870-45h471v-166h-471z m0 296h130v-237h-130z m668-139l-97-98h240v237h-75c-6-53-30-101-68-139z m332-274l-169 117h-131v-364h300z m-627 315l127-127 127 127c34 34 52 79 52 127 0 99-80 179-179 179s-179-80-179-179c0-48 18-93 52-127z m127 233c59 0 106-48 106-106s-47-106-106-106-106 47-106 106 48 106 106 106z" horiz-adv-x="1000" />
<glyph glyph-name="donut" unicode="&#xe9b0;" d="M500 850c-276 0-500-224-500-500 0-276 225-500 500-500 276 0 500 225 500 500 0 276-224 500-500 500z m230-339h65c18 0 33-14 33-32s-15-33-33-33h-65c-18 0-33 15-33 33s15 32 33 32z m-186 186c13 13 33 13 46 0l65-65c13-13 13-33 0-46-13-13-33-13-46 0l-65 65c-13 13-13 34 0 46z m130-347c0-96-78-174-174-174s-174 78-174 174 78 174 174 174 174-78 174-174z m-335 292h65c18 0 32-15 32-33 0-18-14-32-32-32h-65c-18 0-33 14-33 32 0 18 15 33 33 33z m-186-205l65 65c12 12 33 12 46 0 13-13 13-34 0-46l-65-66c-13-12-34-12-46 0-13 13-13 34 0 47z m0-131c12 13 33 13 46 0l65-65c13-13 13-34 0-46-13-13-34-13-46 0l-65 65c-13 13-13 33 0 46z m347-391c-128 0-242 56-322 144 38 14 81 8 115-18 68-52 159-52 227 0 45 34 103 34 148 0 28-22 61-34 94-37-73-56-164-89-262-89z m351 345l-65-65c-13-13-34-13-47 0-12 12-12 33 0 46l66 65c12 13 33 13 46 0 13-13 13-33 0-46z" horiz-adv-x="1000" />
@ -722,7 +722,7 @@
<glyph glyph-name="shop-bag-2" unicode="&#xe9c8;" d="M999-71l-82 492c-7 64-65 116-129 116l-69 0 0 83c0 128-91 231-218 231-127 0-220-103-220-231l0-83-75 0c-64 0-122-52-129-114l-75-493c-3-26 2-46 15-60 12-14 29-21 52-21l853 0c32 0 51 13 61 24 9 10 19 27 16 56z m-655 691c0 93 64 168 157 168s155-75 155-168l0-83-312 0 0 83z m581-708l-852 0c-5 0-11 2-10 10l76 492c4 33 35 61 67 61l75 0 0-72c-18-10-31-30-31-53 0-35 28-63 63-63s62 28 62 63c0 23-13 43-31 53l0 72 312 0 0-72c-18-10-31-30-31-53 0-35 28-63 63-63s62 28 62 63c0 23-13 43-31 53l0 72 69 0c33 0 64-28 68-62l81-492c0-4-3-9-12-9z" horiz-adv-x="1000" />
<glyph glyph-name="open-2" unicode="&#xe9cd;" d="M200 325c-28 0-50-22-50-50v-200c0-28 22-50 50-50s50 22 50 50v200c0 28-22 50-50 50z m200 0c-28 0-50-22-50-50v-83c0-28 22-50 50-50s50 22 50 50v83c0 28-22 50-50 50z m457 133l-274 275c-4 42-40 75-83 75s-79-33-82-75l-275-275h-143v-566h1000v566h-143z m-357 317c28 0 50-22 50-50s-22-50-50-50-50 22-50 50 22 50 50 50z m-76-83c13-30 42-50 76-50s64 20 76 50l234-234h-620l234 234z m-141-617c0-46-37-83-83-83s-83 37-83 83v200c0 46 37 83 83 83s83-37 83-83v-200z m200 117c0-46-37-84-83-84-19 0-36 7-50 17v-117c0-9-7-16-17-16s-16 7-16 16v184 83c0 46 37 83 83 83s83-37 83-83v-83z m184 0c9 0 16-8 16-17s-7-17-16-17h-117v-133h117c9 0 16-7 16-17s-7-16-16-16h-134c-9 0-16 7-16 16v334c0 9 7 16 16 16h134c9 0 16-7 16-16s-7-17-16-17h-117v-133h117z m216-184c0 0 0 0 0 0 0-2 0-3-1-5 0 0 0-1 0-1 0-1-1-3-2-4-1 0-1-1-2-2 0 0-1 0-1-1-1-1-2-2-4-2 0 0 0 0 0 0-2-1-4-1-6-1h0 0l0 0c-2 0-4 0-6 1-1 0-1 0-2 1-1 0-2 1-3 2-1 0-1 1-1 1-2 1-2 3-3 4 0 0-1 1-1 1 0 0 0 0 0 0l-101 253v-247c0-9-7-16-17-16s-16 7-16 16v334c0 0 0 0 0 0 0 2 0 3 1 5 0 0 0 1 0 1 1 1 1 2 2 3 1 1 1 2 2 3 0 0 1 0 1 1 1 1 3 2 4 2 0 0 0 0 0 0 1 1 2 1 3 1 1 0 2 0 3 0 0 0 0 0 1 0 1 0 3 0 5-1 0 0 1 0 1 0 1-1 2-2 4-2 0-1 1-1 1-2 1 0 1-1 1-1 1-1 2-3 3-4 0 0 0 0 0 0l101-253v247c0 9 8 16 17 16s16-7 16-16v-334z" horiz-adv-x="1000" />
<glyph glyph-name="open" unicode="&#xe9cd;" d="M200 325c-28 0-50-22-50-50v-200c0-28 22-50 50-50s50 22 50 50v200c0 28-22 50-50 50z m200 0c-28 0-50-22-50-50v-83c0-28 22-50 50-50s50 22 50 50v83c0 28-22 50-50 50z m457 133l-274 275c-4 42-40 75-83 75s-79-33-82-75l-275-275h-143v-566h1000v566h-143z m-357 317c28 0 50-22 50-50s-22-50-50-50-50 22-50 50 22 50 50 50z m-76-83c13-30 42-50 76-50s64 20 76 50l234-234h-620l234 234z m-141-617c0-46-37-83-83-83s-83 37-83 83v200c0 46 37 83 83 83s83-37 83-83v-200z m200 117c0-46-37-84-83-84-19 0-36 7-50 17v-117c0-9-7-16-17-16s-16 7-16 16v184 83c0 46 37 83 83 83s83-37 83-83v-83z m184 0c9 0 16-8 16-17s-7-17-16-17h-117v-133h117c9 0 16-7 16-17s-7-16-16-16h-134c-9 0-16 7-16 16v334c0 9 7 16 16 16h134c9 0 16-7 16-16s-7-17-16-17h-117v-133h117z m216-184c0 0 0 0 0 0 0-2 0-3-1-5 0 0 0-1 0-1 0-1-1-3-2-4-1 0-1-1-2-2 0 0-1 0-1-1-1-1-2-2-4-2 0 0 0 0 0 0-2-1-4-1-6-1h0 0l0 0c-2 0-4 0-6 1-1 0-1 0-2 1-1 0-2 1-3 2-1 0-1 1-1 1-2 1-2 3-3 4 0 0-1 1-1 1 0 0 0 0 0 0l-101 253v-247c0-9-7-16-17-16s-16 7-16 16v334c0 0 0 0 0 0 0 2 0 3 1 5 0 0 0 1 0 1 1 1 1 2 2 3 1 1 1 2 2 3 0 0 1 0 1 1 1 1 3 2 4 2 0 0 0 0 0 0 1 1 2 1 3 1 1 0 2 0 3 0 0 0 0 0 1 0 1 0 3 0 5-1 0 0 1 0 1 0 1-1 2-2 4-2 0-1 1-1 1-2 1 0 1-1 1-1 1-1 2-3 3-4 0 0 0 0 0 0l101-253v247c0 9 8 16 17 16s16-7 16-16v-334z" horiz-adv-x="1000" />
<glyph glyph-name="alarm-plus" unicode="&#xe9db;" d="M542 475h-84v-125h-125v-83h125v-125h84v125h125v83h-125m-42-333c-161 0-292 130-292 291s131 292 292 292 292-130 292-292-131-291-292-291m0 666c-207 0-375-168-375-375s168-375 375-375 375 168 375 375-168 375-375 375m417-71l-192 161-54-64 192-161m-535 161l-53 64-192-161 54-64 191 161z" horiz-adv-x="1000" />
@ -752,7 +752,7 @@
<glyph glyph-name="book" unicode="&#xf02d;" d="M875 147c0-15-7-28-17-36-9-30-9-116 0-146 10-9 17-22 17-37v-31c0-26-21-47-47-47h-640c-104 0-188 84-188 188v625c0 103 84 187 188 187h640c26 0 47-21 47-47v-656z m-625 441v-39c0-6 5-11 12-11h414c6 0 12 5 12 11v39c0 7-6 12-12 12h-414c-7 0-12-5-12-12z m0-125v-39c0-6 5-11 12-11h414c6 0 12 5 12 11v39c0 7-6 12-12 12h-414c-7 0-12-5-12-12z m495-488c-4 33-4 92 0 125h-557c-35 0-63-28-63-62 0-35 28-63 63-63h557z" horiz-adv-x="875" />
<glyph glyph-name="food-1" unicode="&#xf02f;" d="M0-108c0-25 17-42 42-42h916c25 0 42 17 42 42v41h-1000v-41z m917 125h83c0 262-200 475-458 496v45h41c25 0 42 17 42 42s-17 42-42 42h-166c-25 0-42-17-42-42s17-42 42-42h41v-45c-258-21-458-234-458-496h83 834z m-417 416c200 0 371-141 408-333h-816c37 192 208 333 408 333z m188-91l-21-38c62-37 112-91 141-158l38 17c-29 75-88 137-158 179z" horiz-adv-x="1000" />
<glyph glyph-name="food" unicode="&#xf02f;" d="M0-108c0-25 17-42 42-42h916c25 0 42 17 42 42v41h-1000v-41z m917 125h83c0 262-200 475-458 496v45h41c25 0 42 17 42 42s-17 42-42 42h-166c-25 0-42-17-42-42s17-42 42-42h41v-45c-258-21-458-234-458-496h83 834z m-417 416c200 0 371-141 408-333h-816c37 192 208 333 408 333z m188-91l-21-38c62-37 112-91 141-158l38 17c-29 75-88 137-158 179z" horiz-adv-x="1000" />
<glyph glyph-name="mobile-phone" unicode="&#xf034;" d="M0-18v736q0 42 29 71t70 29h359q41 0 70-29t29-71v-736q0-42-29-71t-70-30h-359q-41 0-70 29t-29 72z m234 61q0-19 13-32t31-13 31 14 14 31-14 31-31 12-31-12-13-31z" horiz-adv-x="556.6" />
@ -798,7 +798,7 @@
<glyph glyph-name="cleaning" unicode="&#xf0e2;" d="M807 737l59-59-238-238c44-65 50-142 13-192l-263 264c50 37 127 31 191-14l238 239m-560-619c-84 84-135 184-149 277l203 87 310-310-87-203c-93 14-193 65-277 149z" horiz-adv-x="1000" />
<glyph glyph-name="sea-ship-with-containers-2" unicode="&#xf0e3;" d="M1000 290l-118-246c-15-29-44-47-76-47h-697c-12 0-21 14-15 25l0 1c10 18 4 41-13 53l-1 1c-39 28-63 74-63 123v55h620v1c0 19 15 34 34 34h329l0 0z m-398 206h-120c-10 0-17-7-17-17v-189c0-10 7-17 17-17h120c10 0 18 7 18 17v189c0 10-8 17-18 17z m207-68h-138c-9 0-17-8-17-18v-69c0-9 8-17 17-17h138c10 0 17 8 17 17v69c0 10-7 18-17 18z m-534-155h138c10 0 17 7 17 17v138c0 9-7 17-17 17h-138c-9 0-17-8-17-17v-138c0-10 8-17 17-17z m-8 258l-43-35v-223h-172v223h-52v35h121v50h-45v20h45v102h17v-102h44v-20h-44v-50h129z m-74-142h-56v-51h56v51z m0 83h-56v-52h56v52z" horiz-adv-x="1000" />
<glyph glyph-name="cargo-ship" unicode="&#xf0e3;" d="M1000 290l-118-246c-15-29-44-47-76-47h-697c-12 0-21 14-15 25l0 1c10 18 4 41-13 53l-1 1c-39 28-63 74-63 123v55h620v1c0 19 15 34 34 34h329l0 0z m-398 206h-120c-10 0-17-7-17-17v-189c0-10 7-17 17-17h120c10 0 18 7 18 17v189c0 10-8 17-18 17z m207-68h-138c-9 0-17-8-17-18v-69c0-9 8-17 17-17h138c10 0 17 8 17 17v69c0 10-7 18-17 18z m-534-155h138c10 0 17 7 17 17v138c0 9-7 17-17 17h-138c-9 0-17-8-17-17v-138c0-10 8-17 17-17z m-8 258l-43-35v-223h-172v223h-52v35h121v50h-45v20h45v102h17v-102h44v-20h-44v-50h129z m-74-142h-56v-51h56v51z m0 83h-56v-52h56v52z" horiz-adv-x="1000" />
<glyph glyph-name="wa-fit-2" unicode="&#xf0e7;" d="M116 743l-7-6 0-388 0-388 7-7 6-6 64-1 63-1 150 151 151 150 144-145c80-80 148-147 151-150 5-3 10-4 16-4 11 0 18 4 24 13 3 5 4 11 4 78l0 73-123 123c-68 67-126 126-130 130-4 4-22 22-41 40l-33 33-10 0c-6 0-13-1-16-3-3-1-69-66-146-143l-140-140 0 290c0 216-1 292-2 295-6 11-5 11-67 12l-58 0-7-6z m973-90c-53-53-139-140-193-194l-98-97 0-13 0-13 39-38 38-38 12 0 13 0 144 143 143 144 0-292 0-292 7-8 7-7 57 0c53 0 56 0 61 4 12 10 11-15 11 396 0 264-1 382-2 386-2 3-5 8-7 11-4 4-5 4-71 4l-66 0-95-96z" horiz-adv-x="1437" />
@ -904,7 +904,7 @@
<glyph glyph-name="cubes" unicode="&#xf1b3;" d="M357-61l214 107v176l-214-92v-191z m-36 254l226 96-226 97-225-97z m608-254l214 107v176l-214-92v-191z m-36 254l225 96-225 97-226-97z m-250 163l214 92v149l-214-92v-149z m-36 212l246 105-246 106-246-106z m607-289v-233q0-20-10-37t-29-26l-250-125q-14-8-32-8t-32 8l-250 125q-2 1-4 2-1-1-4-2l-250-125q-14-8-32-8t-31 8l-250 125q-19 9-29 26t-11 37v233q0 21 12 39t32 26l242 104v223q0 22 12 40t31 26l250 107q13 6 28 6t28-6l250-107q20-9 32-26t12-40v-223l242-104q20-8 32-26t11-39z" horiz-adv-x="1285.7" />
<glyph glyph-name="Vehicle" unicode="&#xf1b9;" d="M268 243q0 37-26 63t-63 26-63-26-27-63 27-63 63-26 63 26 26 63z m20 178h567l-50 200q-1 4-8 9t-11 6h-429q-5 0-12-6t-7-9z m766-178q0 37-27 63t-63 26-63-26-26-63 26-63 63-26 63 26 27 63z m89 53v-214q0-8-5-13t-13-5h-54v-71q0-45-31-76t-76-31-76 31-31 76v71h-571v-71q0-45-31-76t-76-31-76 31-32 76v71h-53q-8 0-13 5t-5 13v214q0 52 37 89t88 36h16l58 234q13 53 58 88t100 36h429q54 0 100-36t58-88l58-234h16q52 0 88-36t37-89z" horiz-adv-x="1142.9" />
<glyph glyph-name="vehicle" unicode="&#xf1b9;" d="M268 243q0 37-26 63t-63 26-63-26-27-63 27-63 63-26 63 26 26 63z m20 178h567l-50 200q-1 4-8 9t-11 6h-429q-5 0-12-6t-7-9z m766-178q0 37-27 63t-63 26-63-26-26-63 26-63 63-26 63 26 27 63z m89 53v-214q0-8-5-13t-13-5h-54v-71q0-45-31-76t-76-31-76 31-31 76v71h-571v-71q0-45-31-76t-76-31-76 31-32 76v71h-53q-8 0-13 5t-5 13v214q0 52 37 89t88 36h16l58 234q13 53 58 88t100 36h429q54 0 100-36t58-88l58-234h16q52 0 88-36t37-89z" horiz-adv-x="1142.9" />
<glyph glyph-name="delivery" unicode="&#xf1ba;" d="M974 116c3 14 2 29-2 45-30 105-117 321-190 410-19 23-56 21-77 0-9-10-14-22-16-34-5 5-12 9-20 10 0 0-185 23-187 23h-84c-27 0-35-16-35-36v-269h-62v289c0 14-11 26-26 26h-249c-14 0-26-12-26-26 0 0 0-405 0-432 0-30 25-54 55-54h53c-3-11-4-23-4-35 0-81 66-148 147-148 81 0 147 67 147 148 0 12-1 24-4 35h165v-36c0-29 23-52 52-52h1c14 0 27 5 36 15 10 10 15 23 15 37l0 36h47c-3-11-5-23-5-35 0-81 67-148 148-148 81 0 147 67 147 148 0 31-9 59-26 83z m-121-28c30 0 55-25 55-55s-25-56-55-56c-31 0-56 25-56 56s25 55 56 55z m-546-55c0-31-25-56-56-56-30 0-55 25-55 56s25 55 55 55c31 0 56-25 56-55z m354 224c0 29-24 52-52 52h-86v176l42-5c3-16 17-28 34-28h147l12-95-97-127 0 27z m-231 350c57 0 103 47 103 104 0 7 0 14-2 21l23 1c14 0 28 9 34 22l8 16c3 7 3 15-1 21-4 7-11 10-20 10l-96 0c-14 8-31 13-49 13-57 0-104-47-104-104 0-57 47-104 104-104z" horiz-adv-x="1000" />
@ -986,9 +986,9 @@
<glyph glyph-name="envelope-open-o" unicode="&#xf2b7;" d="M823 341l21-29q5-6 4-13t-6-11q-24-19-71-55t-82-63-37-29q-22-18-34-27t-33-23-43-20-41-7h-2q-20 0-41 7t-42 20-34 23-34 27q-3 2-36 28t-80 62-68 53q-7 4-7 11t3 13l21 29q4 6 12 7t14-3q52-41 170-132 3-2 25-20t33-26 32-18 32-9h2q13 0 32 9t32 18 34 26 24 20q144 110 174 135 7 4 14 4t12-7z m106-402v518q-51 47-89 78-51 41-217 169-2 2-24 20t-34 27-31 18-33 10h-2q-13 0-32-10t-32-18-34-27-24-20q-120-92-176-137t-72-58-46-41q-8-7-12-11v-518q0-7 6-12t12-6h822q7 0 12 6t6 12z m71 518v-518q0-37-26-63t-63-26h-822q-36 0-63 26t-26 63v518q0 31 23 53 69 63 195 162t130 101q20 17 33 27t35 23 42 20 41 7h2q20 0 41-7t43-20 34-23 33-27q24-20 87-68t126-99 112-96q23-22 23-53z" horiz-adv-x="1000" />
<glyph glyph-name="telegram-4" unicode="&#xf2c6;" d="M664 121l82 386q5 25-6 36t-29 3l-482-185q-16-6-22-14t-2-15 18-11l124-38 286 180q12 8 18 3 4-3-3-8l-231-210-9-127q13 0 25 13l60 58 125-93q36-20 46 22z m336 229q0-102-40-194t-106-160-160-106-194-40-194 40-160 106-106 160-40 194 40 194 106 160 160 106 194 40 194-40 160-106 106-160 40-194z" horiz-adv-x="1000" />
<glyph glyph-name="telegram" unicode="&#xf2c6;" d="M664 121l82 386q5 25-6 36t-29 3l-482-185q-16-6-22-14t-2-15 18-11l124-38 286 180q12 8 18 3 4-3-3-8l-231-210-9-127q13 0 25 13l60 58 125-93q36-20 46 22z m336 229q0-102-40-194t-106-160-160-106-194-40-194 40-160 106-106 160-40 194 40 194 106 160 160 106 194 40 194-40 160-106 106-160 40-194z" horiz-adv-x="1000" />
<glyph glyph-name="hanger-2" unicode="&#xf2c8;" d="M865 169h0c31-18 52-51 52-90 0-57-47-104-104-104h-625c-58 0-105 47-105 104 0 39 21 72 52 90h0l323 187s0 36 42 77c42 0 83 38 83 84s-37 83-83 83-83-37-83-83h-84c0 92 75 166 167 166s167-74 167-166c0-78-53-143-125-162l323-186m-677-111h625c7 0 14 4 17 11 6 10 3 22-7 28l-323 187-323-187c-10-6-13-18-7-28 3-7 10-11 18-11z" horiz-adv-x="1000" />
<glyph glyph-name="hanger" unicode="&#xf2c8;" d="M865 169h0c31-18 52-51 52-90 0-57-47-104-104-104h-625c-58 0-105 47-105 104 0 39 21 72 52 90h0l323 187s0 36 42 77c42 0 83 38 83 84s-37 83-83 83-83-37-83-83h-84c0 92 75 166 167 166s167-74 167-166c0-78-53-143-125-162l323-186m-677-111h625c7 0 14 4 17 11 6 10 3 22-7 28l-323 187-323-187c-10-6-13-18-7-28 3-7 10-11 18-11z" horiz-adv-x="1000" />
<glyph glyph-name="text" unicode="&#xf2dc;" d="M401 212h-212l-40-101h-144l221 520h140l222-520h-148l-39 101z m-42 108l-64 167-64-167h128z m576 154c34-30 51-77 51-140v-223h-127v52c-19-39-58-59-114-59-30 0-57 5-79 16-22 11-38 26-49 45-12 18-17 39-17 63 0 38 14 68 42 89 28 21 72 31 131 31h77c-2 43-30 64-82 64-19 0-38-3-57-9-19-6-35-15-49-26l-46 96c22 15 48 27 79 35 31 8 61 12 93 12 64 0 113-15 147-46z m-111-269c12 8 21 20 26 35v35h-59c-40 0-60-14-60-41 0-12 5-22 14-29 9-8 22-12 37-12 16 0 30 4 42 12z" horiz-adv-x="1000" />
@ -1012,9 +1012,9 @@
<glyph glyph-name="instagram-1" unicode="&#xf32d;" d="M690 350q0 26-6 50l176 0 0-344q0-56-39-96t-95-40l-592 0q-56 0-95 40t-39 96l0 344 174 0q-4-32-4-50 0-106 76-183t184-77q106 0 183 77t77 183z m36 430q56 0 95-39t39-95l0-146-218 0q-78 110-212 110-138 0-212-110l-218 0 0 146q0 56 39 95t95 39l592 0z m64-166l0 72q0 24-24 24l-72 0q-24 0-24-24l0-72q0-8 7-16t17-8l72 0q24 0 24 24z m-200-264q0-66-47-113t-113-47-113 47-47 113q0 68 47 114t113 46 113-46 47-114z" horiz-adv-x="860" />
<glyph glyph-name="message-reply-text-2" unicode="&#xf368;" d="M750 517h-500v83h500v-83m0-125h-500v83h500v-83m0-125h-500v83h500v-83m167 416c0 46-38 84-84 84h-666c-46 0-84-38-84-84v-500c0-45 38-83 84-83h583l167-167v750z" horiz-adv-x="1000" />
<glyph glyph-name="message-reply-text" unicode="&#xf368;" d="M750 517h-500v83h500v-83m0-125h-500v83h500v-83m0-125h-500v83h500v-83m167 416c0 46-38 84-84 84h-666c-46 0-84-38-84-84v-500c0-45 38-83 84-83h583l167-167v750z" horiz-adv-x="1000" />
<glyph glyph-name="message-text-outline-2" unicode="&#xf36a;" d="M833 767c46 0 84-38 84-84v-500c0-45-38-83-84-83h-583l-167-167v750c0 47 38 84 84 84h666m-666-84v-548l48 48h618v500h-666m83-125h500v-83h-500v83m0-166h375v-84h-375v84z" horiz-adv-x="1000" />
<glyph glyph-name="message-text-outline" unicode="&#xf36a;" d="M833 767c46 0 84-38 84-84v-500c0-45-38-83-84-83h-583l-167-167v750c0 47 38 84 84 84h666m-666-84v-548l48 48h618v500h-666m83-125h500v-83h-500v83m0-166h375v-84h-375v84z" horiz-adv-x="1000" />
<glyph glyph-name="cloud-upload-alt" unicode="&#xf382;" d="M1050 407c114-23 200-124 200-244 0-139-112-251-250-251h-719c-155 0-281 127-281 282 0 122 79 227 188 265 0 6 0 11 0 16 0 173 139 313 312 313 116 0 217-63 271-157 30 20 66 32 104 32 104 0 188-84 188-188 0-24-5-47-13-68z m-282-119c28 0 42 33 22 53l-205 206c-12 12-32 12-45 0l-205-206c-20-20-6-53 22-53h127v-219c0-17 14-31 32-31h93c18 0 32 14 32 31v219h127z" horiz-adv-x="1250" />
@ -1042,7 +1042,7 @@
<glyph glyph-name="view-quilt" unicode="&#xf574;" d="M417 642v-250h458v250m-208-542h208v250h-208m-500-250h208v542h-208m250-542h208v250h-208v-250z" horiz-adv-x="1000" />
<glyph glyph-name="wrench" unicode="&#xf5b7;" d="M946 58l-379 380c37 95 16 208-63 287-83 83-208 100-308 54l179-179-125-125-183 179c-50-100-29-225 54-308 79-79 192-100 287-63l380-379c16-17 41-17 58 0l96 96c21 17 21 46 4 58z" horiz-adv-x="1000" />
<glyph glyph-name="wrench-3" unicode="&#xf5b7;" d="M946 58l-379 380c37 95 16 208-63 287-83 83-208 100-308 54l179-179-125-125-183 179c-50-100-29-225 54-308 79-79 192-100 287-63l380-379c16-17 41-17 58 0l96 96c21 17 21 46 4 58z" horiz-adv-x="1000" />
<glyph glyph-name="Scientific" unicode="&#xf5ed;" d="M117 262l118 118 105 20c135 183 391 274 484 274 0-93-91-349-274-484l-20-105-118-118-30 147c-59 0-59 0-88 30-30 29-30 29-30 88l-147 30m118-118l59-59-111-111h-59v59l111 111m-59 59l52-8-103-102v60l51 50m169-125l8-52-50-51h-60l102 103m197 376c-35 0-63-28-63-62s28-63 63-63 62 28 62 63-28 62-62 62z" horiz-adv-x="1000" />
@ -1056,6 +1056,60 @@
<glyph glyph-name="send-message" unicode="&#xf5fc;" d="M814 265c-13-13-13-33 0-46l85-84c12-13 33-13 45 0 13 12 13 33 0 46l-84 84c-13 13-33 13-46 0l0 0z m-229-229c-13-13-13-33 0-46l85-84c12-13 33-13 45 0 13 12 13 33 0 45l-84 85c-13 12-33 12-46 0l0 0z m76 153c-12-13-12-33 0-46l215-214c12-13 33-13 45 0 13 12 13 33 0 45l-214 215c-13 12-33 12-46 0z m-619 659l936-305c26-9 30-45 6-59l-353-205c-11-7-25-6-36 2l-99 74 74-100c7-10 8-24 2-35l-206-354c-14-24-50-20-58 6l-306 936c-8 25 15 49 40 40l0 0z" horiz-adv-x="1000" />
<glyph glyph-name="gold-medal" unicode="&#xf5fd;" d="M609 627l153 223h-143l-81-121z m224 223l-188-273 69-99 255 372z m-452 0h-132l239-356c4 0 8 0 12 0 57 0 110-13 158-37z m42-364l-246 364h-146l289-405c32 19 66 33 103 41 0 0 0 0 0 0z m77-50c-161 0-293-132-293-293s132-293 293-293c162 0 293 131 293 293 0 161-131 293-293 293z m29-385c0-16-13-29-29-29s-29 13-29 29v154h-10c-16 0-29 13-29 29s13 30 29 30h39c16 0 29-13 29-30z" horiz-adv-x="1000" />
<glyph glyph-name="silver-medal" unicode="&#xf5fe;" d="M609 627l153 223h-143l-81-121z m224 223l-188-273 69-99 255 372z m-452 0h-132l239-356c4 0 8 0 12 0 57 0 110-13 158-37z m42-364l-246 364h-146l289-405c32 19 66 33 103 41 0 0 0 0 0 0z m77-50c-161 0-293-132-293-293s132-293 293-293c162 0 293 131 293 293 0 161-131 293-293 293z m51-400c-27-1-46-1-60-1-36 0-39 1-43 2-10 3-17 11-20 20-5 16 3 26 15 41 9 12 26 35 55 76 9 13 13 23 15 28l0 3c-1 9-8 17-17 17-9 0-16-6-17-15-4-15-19-26-35-23-16 4-26 19-23 35 7 35 38 61 75 61 42 0 76-34 76-76 0-4-1-9-2-14-3-15-11-32-24-50-13-19-24-34-33-46 12 0 25 0 37 0 0 0 0 0 0 0 16 0 29-13 30-29 0-16-13-29-29-29z" horiz-adv-x="1000" />
<glyph glyph-name="bronze-medal" unicode="&#xf5ff;" d="M609 627l153 223h-143l-81-121z m224 223l-188-273 69-99 255 372z m-452 0h-132l239-356c4 0 8 0 12 0 57 0 110-13 158-37z m42-364l-246 364h-146l289-405c32 19 66 33 103 41 0 0 0 0 0 0z m77-50c-161 0-293-132-293-293s132-293 293-293c162 0 293 131 293 293 0 161-131 293-293 293z m76-339c0-42-34-76-76-76-38 0-70 28-75 65-1 4-1 7-1 11 0 16 13 29 29 29s30-13 30-29c0-1 0-2 0-3 1-8 8-15 17-15 10 0 18 8 18 18s-8 17-18 17c-16 0-29 13-29 30s13 29 29 29c10 0 18 8 18 17s-8 18-18 18c-8 0-16-6-17-14-3-16-19-26-35-23-15 3-26 18-23 34 7 36 39 61 75 61 42 0 76-34 76-76 0-17-6-33-16-46 10-13 16-30 16-47z" horiz-adv-x="1000" />
<glyph glyph-name="globe-1" unicode="&#xf600;" d="M500 850c-276 0-500-224-500-500s224-500 500-500 500 224 500 500-224 500-500 500z m0-917c-113 0-216 46-292 120v68c0 20 9 32 20 47 10 15 22 33 22 57 0 40-36 44-55 46-14 2-27 3-34 10-6 6-12 16-18 27-12 22-28 50-58 68 13 218 194 391 415 391 11 0 23-1 34-2-2-1-5-3-7-4-4-4-6-10-6-16 0-5 3-11 7-15 7-6 9-10 9-10 0-1-4-7-26-18-35-18-75-54-81-92-3-18 2-34 14-46 4-3 9-6 14-6 29 0 52 11 73 21 22 11 43 21 73 21 82 0 146-18 146-42 0-8-3-11-4-12-10-10-45-9-75-9-8 0-17 1-25 1-28 0-37 4-47 8-12 6-26 12-57 12-35 0-98-6-140-47-34-34-30-75-28-102 0-6 1-12 1-17 0-41 42-63 83-63 64 0 119-12 125-21 0-23 7-39 13-52 5-10 8-19 8-31 0-9-1-11-6-17-7-10-15-21-15-45 0-44 43-92 47-98 4-4 10-7 16-7 2 0 3 1 5 1 12 3 120 33 120 104 0 22 7 28 17 37 10 9 25 21 25 46 0 17 29 60 57 90 4 4 5 10 5 16-1 6-3 11-8 15-16 12-61 53-76 93 9-5 19-12 28-21 7-6 16-10 26-9 17 1 37 14 56 31 10-36 16-73 16-111 0-230-187-417-417-417z" horiz-adv-x="1000" />
<glyph glyph-name="symbol" unicode="&#xf601;" d="M458 517c-17 0-31 14-31 31v271c0 17 14 31 31 31s32-14 32-31v-271c0-17-14-31-32-31z m0 0m0-667c-252 0-458 206-458 458 0 192 121 365 302 431 16 6 34-2 40-18 6-16-2-34-19-40-156-57-260-207-260-373 0-218 177-396 395-396 219 0 396 178 396 396 0 166-105 316-260 373-17 6-25 24-19 40 6 16 24 24 40 18 180-66 302-239 302-431 0-252-206-458-459-458z m0 0" horiz-adv-x="1000" />
<glyph glyph-name="yoga-posture" unicode="&#xf603;" d="M502 533c1 0 1 0 1 0 0 0 0 0 0 0 88 0 159 71 159 158 0 88-71 159-159 159 0 0 0 0 0 0 0 0 0 0-1 0-87 0-158-71-158-159 0-87 71-158 158-158z m399-325l-179 130-57 138c-10 27-36 42-63 42l0 0h-102-102l0 0c-27 0-52-15-63-42l-57-138-179-130c-30-21-36-63-14-93 13-18 33-27 54-27 13 0 27 4 39 12l193 141-5-51-183-185c-25-27-32-66-18-99 15-34 48-56 84-56h88c-23 20-37 51-37 85 0 61 46 111 104 111 0 0 67 0 99 0 33 0 59-27 59-27h-158c-44 0-79-38-79-84 0-47 35-85 79-85h153c1 0 3 0 5 1h185c36 0 70 22 84 55 14 34 7 73-18 99l-179 186h0l-5 50 193-141c12-8 26-12 40-12 20 0 41 9 54 27 21 30 15 72-15 93z" horiz-adv-x="1000" />
<glyph glyph-name="money-copy" unicode="&#xf604;" d="M910 663h-820c-50 0-90-41-90-90v-446c0-49 40-89 90-89h820c50 0 90 40 90 89v446c0 49-40 90-90 90z m-707-344c-17 0-31 14-31 31s14 31 31 31h0c17 0 31-14 31-31s-14-31-31-31z m297-141c-95 0-172 77-172 172s77 172 172 172 172-77 172-172-77-172-172-172z m297 141c-17 0-31 14-31 31s14 31 31 31h0c17 0 31-14 31-31s-14-31-31-31z" horiz-adv-x="1000" />
<glyph glyph-name="coffee-2" unicode="&#xf605;" d="M298 675c28 19 45 54 45 87s-17 65-45 83c-13 9-31 5-40-8-9-13-6-32 8-41 11-7 18-20 18-34s-7-30-18-38c-28-19-45-50-45-83s17-64 45-83c14-9 32-5 40 8 9 14 6 32-8 41-11 8-18 20-18 34 0 14 7 26 18 34z m147 0c28 19 44 54 44 87s-16 65-44 83c-14 9-32 5-41-8-9-13-5-32 8-41 12-7 19-20 19-34s-7-30-19-38c-27-19-44-50-44-83s17-64 44-83c14-9 32-5 41 8 9 14 5 32-8 41-12 8-18 20-18 34 0 14 6 26 18 34z m146 0c28 19 45 54 45 87 0 34-17 65-45 83-13 9-31 5-40-8-9-13-6-32 8-41 11-7 18-20 18-34 0-14-7-30-18-38-28-19-45-50-45-83s17-64 45-83c14-9 32-5 40 8 9 14 6 32-8 41-11 8-18 20-18 34 0 14 7 26 18 34z m343-311c-27 46-76 74-128 74h-57v29c0 16-13 30-29 30h-586c-16 0-29-13-29-30v-186c0-46 7-94 22-139 16-47 46-86 83-116h434c21 17 39 37 54 59 108 4 190 53 238 139 25 44 24 96-2 140z m-49-111c-33-60-86-97-157-107 14 43 21 90 21 135v98h57c32 0 61-16 77-44 16-27 16-56 2-82z m-106-286h-703c-17 0-30-13-30-29 0-49 40-88 88-88h586c49 0 88 39 88 88 0 16-13 29-29 29z" horiz-adv-x="1000" />
<glyph glyph-name="cardiogram" unicode="&#xf607;" d="M500 718c-218 191-495 23-500-204-1-58 16-114 49-166h215l39 64c11 18 38 19 50 1l81-128 117 249c11 22 41 23 53 2l101-188h246c182 285-178 609-451 370z m162-413l-82 152-116-245c-10-20-39-22-51-3l-84 132-23-37c-5-9-15-15-25-15h-186c6-6-25 25 384-382 12-11 30-11 41 0 403 401 379 376 384 382h-217c-10 0-20 6-25 16z" horiz-adv-x="1000" />
<glyph glyph-name="iphone" unicode="&#xf608;" d="M734 850c-22 0-453 0-468 0-65 0-118-53-118-117v-766c0-64 53-117 118-117h468c65 0 118 53 118 117v766c0 64-53 117-118 117z m39-883c0-21-17-39-39-39h-468c-22 0-39 18-39 39v766c0 21 17 39 39 39h69l8-24c6-16 21-27 37-27h240c16 0 31 11 37 27l8 24h69c22 0 39-18 39-39v-766z" horiz-adv-x="1000" />
<glyph glyph-name="menu-2" unicode="&#xf609;" d="M31 538h938c17 0 31 14 31 31 0 17-14 31-31 31h-938c-17 0-31-14-31-31 0-17 14-31 31-31z m938-157h-938c-17 0-31-14-31-31s14-31 31-31h938c17 0 31 14 31 31s-14 31-31 31z m0-218h-625c-17 0-31-14-31-32 0-17 14-31 31-31h625c17 0 31 14 31 31 0 18-14 32-31 32z" horiz-adv-x="1000" />
<glyph glyph-name="text-fa" unicode="&#xf60a;" d="M295 384l-129-55c-19-7-35-14-47-19-13-5-22-11-30-16-7-5-12-11-15-17-3-5-4-13-4-21 0-11 1-20 3-28 3-7 6-14 10-19 5-4 10-8 16-11 7-3 14-5 21-7 8-1 17-2 26-2 9 0 18 0 28 0h101v-57h-101c-23 0-44 2-64 6-19 4-36 10-49 20-14 9-25 22-33 37-8 16-12 36-12 60 0 12 2 23 5 33 3 10 8 19 14 27 5 8 12 15 20 21 8 7 17 12 27 17 9 5 20 10 31 14 11 4 22 8 34 12l88 30c-17 6-34 13-52 18-17 6-34 12-51 17-3 1-6 2-9 3-3 1-6 1-8 1-4 0-7 0-10 0-2-1-5-2-7-4-2-2-4-4-6-8-2-3-4-7-6-12l-50 16c3 9 6 17 11 25 4 8 9 15 15 21 5 6 12 11 20 14s16 5 26 5c8 0 17-1 26-4 12-4 23-8 33-12 9-4 19-8 29-12 5-2 11-5 17-8 6-3 13-6 21-9 7-3 16-7 25-11 10-4 21-9 34-14l2-51z m-152-117l40 41 40-41-40-42-40 42z m277-13c-10 0-21 2-30 6-10 3-18 9-26 16-3 3-6 7-9 11-3 4-6 9-9 14-2 6-4 12-6 19-1 7-2 15-2 24 0 8 1 16 2 25 1 9 3 17 5 25 2 8 3 15 5 21 2 5 3 9 3 10l26-8 26-9c-1-4-2-9-4-14-1-6-3-12-4-18-1-6-2-12-3-17-1-6-2-11-2-15 0-7 1-13 3-18 2-4 5-7 8-10 3-2 5-4 8-4 3-1 6-1 10-1h262c1 0 4 0 7 1 4 0 7 2 10 4 4 2 6 6 9 10 2 5 4 11 4 19 0 3-1 8-1 12-1 5-1 10-2 16-1 5-2 11-3 17-1 5-2 11-3 16-1 2-1 4-2 5l52 14c0 0 0-1 1-2 1-5 2-12 3-19 1-7 3-14 4-21s2-14 2-20c1-7 1-13 1-18 0-15-2-29-7-40-5-12-12-21-20-29-8-7-17-13-27-16-10-4-20-6-30-6h-261z m91-76l40 41 40-41-40-42-40 42z m473 403h-108c-8 0-16 0-22 0-6-1-11-2-15-4-4-3-8-6-10-10-3-4-5-10-8-17l-40 12c3 14 9 25 15 34 7 8 15 15 24 20 8 4 16 7 26 8 9 1 19 2 30 2h108v-45z m-64-327h-54v295h54v-295z" horiz-adv-x="1000" />
<glyph glyph-name="volume-level" unicode="&#xf60b;" d="M888 797h-776c-62 0-112-50-112-112s50-112 112-112h776c62 0 112 50 112 112s-50 112-112 112z m-268-335h-508c-62 0-112-50-112-112 0-62 50-112 112-112h508c62 0 112 50 112 112 0 62-50 112-112 112z m-290-335h-218c-62 0-112-50-112-112s50-112 112-112h218c62 0 112 50 112 112s-50 112-112 112z" horiz-adv-x="1000" />
<glyph glyph-name="headphones-1" unicode="&#xf60c;" d="M266 440c-49 0-88-40-88-88v-238c0-49 39-88 88-88 48 0 88 39 88 88v238c0 48-40 88-88 88z m-147-88c0 8 1 17 3 25-36-12-61-45-61-84v-121c0-39 25-72 61-83-2 8-3 16-3 25v238z m615 88c-48 0-87-40-87-88v-238c0-49 39-88 87-88 9 0 18 2 26 4-11-36-45-63-84-63h-93c-13 34-45 59-83 59-48 0-88-40-88-88 0-49 40-88 88-88 38 0 70 25 83 59h93c81 0 146 65 146 146v59 238c0 48-39 88-88 88z m144-63c2-8 3-17 3-25v-238c0-9-1-17-3-25 36 11 62 44 62 83v121c0 39-26 72-62 84z m-378 473c-242 0-439-197-439-439v-1c17 13 37 23 60 27 13 198 178 354 379 354s366-156 380-354c22-4 42-14 60-27v1c0 242-198 439-440 439z" horiz-adv-x="1000" />
<glyph glyph-name="dumbbell" unicode="&#xf60d;" d="M320 690h360v-177h-360z m0 0m628 48h-25v-261h25c29 0 52 23 52 52v157c0 29-23 52-52 52z m0 0m-123 111h-99v-495h99c29 0 52 23 52 52v391c0 28-23 52-52 52z m0 0m-702-52v-391c0-29 23-52 52-52h99v495h-99c-29 0-52-24-52-52z m0 0m-123-111v-157c0-29 23-52 52-52h25v261h-25c-29 0-52-23-52-52z m0 0" horiz-adv-x="1000" />
<glyph glyph-name="video-camera-(1)" unicode="&#xf60e;" d="M566 644h-457c-60 0-109-49-109-110v-368c0-60 49-110 109-110h457c60 0 109 50 109 110v368c0 62-49 110-109 110z m353-60c-6-1-13-5-19-8l-170-98v-254l172-99c31-18 71-7 89 24 6 10 9 21 9 33v338c0 41-38 73-81 64z" horiz-adv-x="1000" />
<glyph glyph-name="headphones" unicode="&#xf60f;" d="M842 508c0 189-153 342-342 342s-342-153-342-342c-49-6-95-38-95-112v-179c0-83 58-114 114-114h55c11 0 19 9 19 19v368c0 11-8 19-19 19h-36c0 168 136 304 304 304s304-136 304-304h-36c-10 0-19-8-19-19v-367c0-11 9-19 19-19h36c-5-131-68-161-193-167v13c0 21-17 38-38 38h-120c-21 0-38-17-38-38v-62c0-21 17-38 38-38h120c21 0 38 17 38 38v11c121 5 225 30 231 206 49 6 95 38 95 112v179c0 74-46 106-95 112z m-629-36v-330h-37c-28 0-76 10-76 76v178c0 66 47 76 76 76h37z m360-555v-29h-120v62h120v-33z m326 300c0-65-47-76-76-76h-36v330h37c28 0 76-10 76-76l-1-178z" horiz-adv-x="1000" />
<glyph glyph-name="shield-copy" unicode="&#xf610;" d="M237 526c4-48 13-112 34-180 43-145 121-248 229-306 109 58 186 161 229 306 21 68 30 132 34 180l-263 131z m704 90c0 11-7 20-16 25l-412 206c-8 4-18 4-26 0l-412-206c-9-5-16-14-16-25 0-6-7-148 41-314 29-98 72-184 126-255 69-89 158-155 264-195 3-1 7-2 10-2s7 1 10 2c106 40 195 106 264 195 55 71 97 157 126 255 48 166 41 308 41 314z m-428-635c-4-2-9-3-13-3s-9 1-13 3c-130 64-222 181-272 348-25 83-34 161-38 212 0 12 6 23 17 28l293 147c8 4 18 4 26 0l294-147c10-5 16-16 16-28-3-51-13-129-38-212-50-167-142-284-272-348z" horiz-adv-x="1000" />
<glyph glyph-name="shield-2" unicode="&#xf611;" d="M765 511c-8 8-22 8-30 0l-277-277-152 152c-8 8-21 8-29 0-8-9-8-22 0-30l167-167c4-4 9-6 14-6 6 0 11 2 15 6l292 292c8 8 8 21 0 30z m158 213l-417 125c-4 1-8 1-12 0l-417-125c-8-2-14-11-14-20v-458c0-184 280-348 431-395 2-1 4-1 6-1s4 0 6 1c151 47 432 211 432 395v458c0 9-6 18-15 20z m-27-478c0-146-232-300-396-353-164 53-396 207-396 353v443l396 118 396-118v-443z" horiz-adv-x="1000" />
<glyph glyph-name="tags-alt" unicode="&#xf612;" d="M780 797h-307c-19 0-38-8-52-22l-399-399c-29-29-29-75 0-104l307-307c28-29 75-29 103 0l400 400c14 13 21 32 21 52v306c0 41-32 74-73 74z m-128-257c-31 0-55 25-55 55s24 55 55 55 55-24 55-55-25-55-55-55z m275 183l0-341c0-17-7-33-19-45l-406-406 6-6c29-29 75-29 104 0l367 366c13 14 21 33 21 52v307c0 41-33 73-73 73z" horiz-adv-x="1000" />
<glyph glyph-name="whatsapp" unicode="&#xf613;" d="M798 714c-88 88-204 136-329 136-256 0-465-209-465-465 0-82 22-162 62-232l-66-241 247 64c68-37 144-56 222-56h0c257 0 465 208 465 465 0 124-48 241-136 329z m-329-716h0c-69 0-137 19-197 54l-14 8-146-38 39 143-9 14c-39 62-59 133-59 206 0 213 173 387 386 387 104-1 201-41 274-114s113-170 113-273c0-213-174-387-387-387z m212 290c-11 6-68 34-79 38-11 3-18 5-26-6-8-12-30-38-37-46-7-8-14-9-25-3-12 6-49 18-94 58-34 31-57 69-64 80-7 12 0 18 5 24 12 16 25 32 29 40 4 8 2 14-1 20-3 6-26 63-36 86-9 23-19 20-26 20-7 1-15 1-22 1-8 0-21-3-31-15-11-11-41-39-41-97s42-112 47-120c6-8 82-125 199-175 28-12 49-19 66-25 28-9 53-7 73-4 23 3 69 28 79 55 10 27 10 50 7 55-3 5-11 8-23 14z m0 0" horiz-adv-x="1000" />
<glyph glyph-name="whatsapp-alt" unicode="&#xf614;" d="M860 710c-91 90-211 140-339 140s-248-50-339-140-140-211-140-339c0-81 21-161 59-231l-101-290 290 101c70-39 150-59 231-59 128 0 248 50 339 140 90 91 140 211 140 339s-50 248-140 339z m-102-517l-55-55c-46-46-176 10-291 124-114 115-170 245-124 291l55 55c12 11 30 11 42 0l69-69c11-12 11-30 0-42l-42-41c40-85 109-154 194-194l41 42c12 11 30 11 42 0l69-69c11-12 11-30 0-42z" horiz-adv-x="1000" />
<glyph glyph-name="guarantee" unicode="&#xf615;" d="M1000 349l-86 112 20 138-131 52-52 131-138-19-113 86-111-85-139 19-52-131-130-51 19-139-87-113 86-111-20-139 131-51 52-131 138 19 112-85 111 85 139-19 52 131 130 53-19 138 88 110z m-540-162l-167 138 36 44 124-102 211 245 43-38-247-287z" horiz-adv-x="1000" />
<glyph glyph-name="guarantee-1" unicode="&#xf616;" d="M946 496c-13 41-7 102-41 149-35 48-95 62-129 86-34 25-65 78-121 97-55 18-111-7-155-7-43 0-100 25-155 7-56-19-87-72-121-97-34-24-94-38-129-86-34-47-28-109-41-149-13-39-54-86-54-146 0-60 41-107 54-146 13-40 7-102 41-149 35-48 95-62 129-86 34-25 65-78 121-97 55-18 112 7 155 7 43 0 100-25 155-7 56 19 87 72 121 97 34 24 94 38 129 86 34 47 28 109 41 149 13 39 54 86 54 146 0 60-41 107-54 146z m-74-268c-15-47-11-100-31-127-19-28-71-40-111-69-40-29-67-75-100-86-30-10-80 11-130 11-51 0-100-21-130-11-33 11-60 57-100 86-39 29-92 42-111 69-20 26-16 80-31 127-15 47-50 87-50 122 0 35 35 75 50 122 15 47 11 101 31 127 19 28 71 40 111 69 40 29 67 75 100 86 30 9 80-11 130-11 51 0 100 21 130 11 33-11 60-57 100-86 40-29 92-41 111-69 20-26 16-80 31-127v0c15-47 50-87 50-122 0-35-35-75-50-122z m-192 247c15-15 15-40 0-55l-196-195c-15-16-39-16-55 0l-109 109c-15 15-15 40 0 55s40 15 55 0l82-81 168 167c15 16 40 16 55 0z" horiz-adv-x="1000" />
<glyph glyph-name="verified" unicode="&#xf617;" d="M898 688l-383 159c-10 4-20 4-30 0l-383-159c-14-6-24-20-24-36v-193c0-266 161-506 407-606 10-4 20-4 30 0 246 100 407 340 407 606v193c0 16-10 30-24 36z m-54-229c0-226-133-435-344-528-205 91-344 296-344 528v167l344 143 344-143z m-387-132l168 168c15 15 40 15 55 0s15-40 0-55l-196-196c-15-15-39-15-55 0l-109 109c-15 16-15 40 0 56s40 15 55 0z" horiz-adv-x="1000" />
<glyph glyph-name="tags-2" unicode="&#xf618;" d="M886 742c0 42-34 76-76 76h-319c-20 0-40-8-54-22l-415-415c-29-30-29-78 0-108l319-318c15-15 34-23 54-23 12 0 24 4 35 10 41 33-19-25 434 428 14 14 22 33 22 53 0 324 0 268 0 319z m-38-319c0-10-4-19-11-27l-415-414c-7-8-17-12-27-12s-20 4-27 12l-319 318c-7 8-11 17-11 27 0 10 4 20 11 27l415 415c7 7 17 11 27 11h319c21 0 38-17 38-38v-319z m114 319v-357c0-10-4-19-11-27l-450-449 27-27 450 449c14 15 22 34 22 54v357h-38z m-285-57c-42 0-77-34-77-76s35-76 77-76 76 34 76 76-35 76-76 76z m0-114c-21 0-39 17-39 38s18 38 39 38 38-17 38-38-17-38-38-38z" horiz-adv-x="1000" />
<glyph glyph-name="mask" unicode="&#xf619;" d="M803 127c-30 0-58 15-90 32-33 18-70 38-113 38-35 0-68-14-100-41-32 27-65 41-100 41-43 0-80-21-113-38-32-17-60-32-90-32-13 0-26 3-40 9l-128 59 59-142c16-38 44-77 78-108 53-50 115-77 175-77 61 0 114 26 159 78 45-52 98-78 159-78 60 0 122 27 176 77 33 31 61 70 77 108l59 142-128-59c-14-6-27-9-40-9z m-537 173c101 0 189 57 234 141 45-84 133-141 234-141 147 0 266 120 266 266s-119 266-266 266c-101 0-189-57-234-140-45 83-133 140-234 140-147 0-266-119-266-266s119-266 266-266z m468 399c74 0 133-60 133-133s-59-133-133-133c-73 0-132 60-132 133s59 133 132 133z m-468 0c73 0 133-60 133-133s-60-133-133-133-133 60-133 133 60 133 133 133z" horiz-adv-x="1000" />
<glyph glyph-name="account-settings-variant-1" unicode="&#xf631;" d="M375 683c-92 0-167-74-167-166s75-167 167-167 167 75 167 167-75 166-167 166m0-416c-111 0-333-56-333-167v-83h461c-2 13-3 27-3 41 0 63 21 125 59 175-64 22-135 34-184 34m375 0c-5 0-10-4-11-9l-8-55c-12-5-24-12-35-20l-52 21c-4 0-10 0-13-5l-41-72c-3-5-2-10 2-14l44-34c-1-7-1-14-1-21 0-7 0-13 1-20l-44-35c-4-3-5-8-2-13l41-72c3-6 8-6 13-6l52 21c11-7 22-14 35-19l8-55c1-5 5-9 11-9h83c5 0 10 4 10 9l8 55c13 5 24 12 35 19l52-21c5 0 10 0 13 6l42 72c2 5 1 10-3 13l-44 35c1 7 2 13 2 20 0 7-1 14-2 21l44 34c4 4 5 9 3 14l-42 72c-3 5-8 5-13 5l-52-21c-11 8-22 15-35 20l-8 55c0 5-5 9-10 9m-41-146c34 0 62-28 62-63s-28-62-62-62c-35 0-63 28-63 62s28 63 63 63z" horiz-adv-x="1000" />
<glyph glyph-name="shape-rectangle-plus-2" unicode="&#xf65f;" d="M792 600h125v-83h-125v-125h-84v125h-125v83h125v125h84v-125m-84-458v125h84v-209h-667v542h333v-83h-250v-375h500z" horiz-adv-x="1000" />
@ -1074,11 +1128,11 @@
<glyph glyph-name="cancel-2" unicode="&#xf739;" d="M500 767c230 0 417-187 417-417s-187-417-417-417-417 187-417 417 187 417 417 417m0-84c-184 0-333-149-333-333 0-77 26-148 70-205l468 468c-57 44-128 70-205 70m0-666c184 0 333 149 333 333 0 77-26 148-70 205l-468-468c57-44 128-70 205-70z" horiz-adv-x="1000" />
<glyph glyph-name="truck-fast-2" unicode="&#xf787;" d="M125 288l-31 62h219l-25 63h-205l-31 62h325l-25 63h-306l-36 62h157c0 46 37 83 83 83h500v-166h125l125-167v-208h-83c0-69-56-125-125-125s-125 56-125 125h-167c0-69-56-125-125-125s-125 56-125 125h-83v146h-42m667-209c34 0 62 28 62 63s-28 62-62 62-63-28-63-62 28-63 63-63m62 375h-104v-104h186l-82 104m-479-375c35 0 63 28 63 63s-28 62-63 62-62-28-62-62 27-63 62-63z" horiz-adv-x="1000" />
<glyph glyph-name="truck-fast" unicode="&#xf787;" d="M125 288l-31 62h219l-25 63h-205l-31 62h325l-25 63h-306l-36 62h157c0 46 37 83 83 83h500v-166h125l125-167v-208h-83c0-69-56-125-125-125s-125 56-125 125h-167c0-69-56-125-125-125s-125 56-125 125h-83v146h-42m667-209c34 0 62 28 62 63s-28 62-62 62-63-28-63-62 28-63 63-63m62 375h-104v-104h186l-82 104m-479-375c35 0 63 28 63 63s-28 62-63 62-62-28-62-62 27-63 62-63z" horiz-adv-x="1000" />
<glyph glyph-name="heart-broken" unicode="&#xf7a9;" d="M925 706c95-97 99-252 15-356l-415-427c-14-14-36-14-50 0l-414 427c-85 104-81 259 14 356l5 5c90 92 232 101 333 27l56-169-188-125 282-281-94 250 187 125-67 202c101 72 242 63 332-29z" horiz-adv-x="1000" />
<glyph glyph-name="money-check-alt" unicode="&#xf7c2;" d="M1188 788c34 0 62-28 62-63v-750c0-35-28-63-62-63h-1125c-35 0-63 28-63 63v750c0 35 28 63 63 63h1125z m-844-578c46 1 83 40 83 88 0 39-25 74-62 84l-87 27c-11 3-18 13-18 25 0 14 11 25 23 25h55c9 0 18-2 25-7 7-4 15-4 20 2l23 21c7 7 7 18-1 24-18 14-39 21-61 22v32c0 9-7 16-16 16h-31c-9 0-16-7-16-16v-31c-46-2-83-40-83-88 0-39 25-74 62-85l88-26c10-3 17-14 17-25 0-15-11-26-23-26h-55c-9 0-18 2-25 7-7 4-15 4-20-1l-23-22c-7-7-7-18 1-24 18-13 39-21 61-22v-32c0-8 7-15 16-15h31c9 0 16 7 16 15v32z m469 31v31c0 9-7 16-16 16h-219c-8 0-15-7-15-16v-31c0-9 7-16 15-16h219c9 0 16 7 16 16z m312 0v31c0 9-7 16-16 16h-156c-8 0-15-7-15-16v-31c0-9 7-16 15-16h156c9 0 16 7 16 16z m0 187v31c0 9-7 16-16 16h-531c-8 0-15-7-15-16v-31c0-8 7-15 15-15h531c9 0 16 7 16 15z" horiz-adv-x="1250" />
</font>
</defs>
</svg>
</svg>

Before

Width:  |  Height:  |  Size: 241 KiB

After

Width:  |  Height:  |  Size: 256 KiB

@ -1,6 +1,5 @@
// import
import Vue from 'vue';
import '../styles/icon/fontello-71c002f7/css/fontello.css';
import '../styles/icon/fontello-b9d25c07/css/fontello.css';
import AuthHeader from '../components/Global/Header/AuthHeader.vue';
import Header from '../components/Global/Header/Header.vue';

Loading…
Cancel
Save