UI.form-builder
Mojtaba Afraz 4 years ago
commit e6923d8262

@ -0,0 +1,112 @@
<?php
namespace App\Console\Commands;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Str;
class Vuex
{
private static bool $isCategory = false;
private static string $module;
private static string $storeModule;
private static bool $replace = false;
private static $instance = null;
private function __construct($arguments, $options)
{
static::$isCategory = $options['category'];
static::$replace = $options['replace'];
static::$module = $arguments['module'];
static::$storeModule = $arguments['store-module'];
}
public static function initialize ($arguments, $options) {
if (!self::$instance) {
self::$instance = new static($arguments, $options);
}
return self::$instance;
}
public function createAllFiles () {
if (static::$storeModule && static::$module) {
static::createStoreFiles();
static::createRepositoryFile();
static::createResourceFile();
if (!static::$isCategory) {
static::createStorageFile();
}
}
}
public static function createStoreFiles () {
$moduleFiles = ['actions', 'mutations', 'state', 'getters'];
$basePath = 'modules/wm-' . static::$module . '/resources/js/store/modules/' . static::$storeModule . '/';
$baseDefaultPath = static::$isCategory ? 'resources/js/Default/store/category/' : 'resources/js/Default/store/store/';
foreach ($moduleFiles as $moduleFile) {
if (static::hasExists($basePath . $moduleFile)) {
$data = Storage::disk('local')->get($baseDefaultPath . $moduleFile . '.text');
$data = static::replacer($data);
Storage::disk('local')->put($basePath . $moduleFile . '.js', $data);
}
}
}
public static function createRepositoryFile () {
$baseRepositoryPath = 'modules/wm-' . static::$module . '/resources/js/abstraction/repositories/' . static::$storeModule . '/' . static::$storeModule . 'Repository.js';
$baseDefaultPath = static::$isCategory ? 'resources/js/Default/abstraction/repositories/categoryRepository.text' : 'resources/js/Default/abstraction/repositories/repository.text';
if (static::hasExists($baseRepositoryPath)) {
$data = Storage::disk('local')->get($baseDefaultPath);
$data = static::replacer($data);
Storage::disk('local')->put($baseRepositoryPath, $data);
}
}
public static function createResourceFile() {
$baseResourcePath = 'modules/wm-' . static::$module . '/resources/js/abstraction/resources/' . static::$storeModule . '/' . static::$storeModule . 'Resource.js';
$baseDefaultPath = static::$isCategory ? 'resources/js/Default/abstraction/resources/categoryResource.text' : 'resources/js/Default/abstraction/resources/resource.text';
if (static::hasExists($baseResourcePath)) {
$data = Storage::disk('local')->get($baseDefaultPath);
$data = static::replacer($data);
Storage::disk('local')->put($baseResourcePath, $data);
}
}
public static function createStorageFile() {
$baseStoragePath = 'modules/wm-' . static::$module . '/resources/js/services/' . static::$storeModule . '.storage.js';
$baseDefaultPath = 'resources/js/Default/services/storage.text';
if (static::hasExists($baseStoragePath)) {
$data = Storage::disk('local')->get($baseDefaultPath);
$data = static::replacer($data);
Storage::disk('local')->put($baseStoragePath, $data);
}
}
private static function hasExists($path) {
$continue = true;
if (Storage::disk('local')->exists($path)) {
$continue = static::$replace;
}
return $continue;
}
private static function replacer($data) {
$data = str_replace('|-module-|', Str::camel(static::$storeModule), $data);
$data = str_replace('|-snake_module-|', Str::snake(static::$storeModule), $data);
$data = str_replace('|-Module-|', Str::title(static::$storeModule), $data);
$data = str_replace('|-MODULE-|', Str::upper(Str::snake(static::$storeModule)), $data);
$data = str_replace('|-BaseModule-|', Str::title(static::$module), $data);
return str_replace('|-baseModule-|', Str::camel(static::$module), $data);
}
}

@ -2,10 +2,9 @@
namespace App\Console\Commands;
use App\Console\Commands\Vuex;
use App\Services\MorphModelFinder;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Str;
class VuexBuild extends Command
{
@ -14,14 +13,15 @@ class VuexBuild extends Command
*
* @var string
*/
protected $signature = 'make:vuex {module} {store-module} {--category}';
protected $signature = 'make:vuex {module} {store-module} {--category} {--replace}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Create a vuex modules';
protected $description = 'Create a vuex modules module store-module --category --replace';
/**
* @var MorphModelFinder
@ -46,43 +46,9 @@ class VuexBuild extends Command
*/
public function handle(): void
{
$isCategory = $this->option('category');
$module = $this->argument('module');
$storeModule = $this->argument('store-module');
$moduleFiles = ['actions.js', 'mutations.js', 'state.js', 'getters.js'];
$baseRepositoryPath = 'modules/wm-' . $module . '/resources/js/abstraction/repositories/' . $storeModule;
$baseResourcePath = 'modules/wm-' . $module . '/resources/js/abstraction/resources/' . $storeModule;
$baseActionPath = 'modules/wm-' . $module . '/resources/js/store/modules/' . $storeModule . '/';
$baseDefaultActionPath = 'resources/js/Default/store/store/';
// $name = $this->choice(
// 'file exist, Do yo really Replace File?',
// ['Taylor', 'Dayle'],
// 'Dayle'
// );
if ($storeModule && $module) {
foreach ($moduleFiles as $moduleFile) {
if (Storage::disk('local')->exists($baseActionPath . $moduleFile)) {
if ($this->confirm('file exist, Do yo really Replace File?', true)) {
$data = Storage::disk('local')->get($baseDefaultActionPath . $moduleFile);
$data = str_replace('|-module-|', Str::snake($storeModule), $data);
$data = str_replace('|-Module-|', Str::title($storeModule), $data);
$data = str_replace('|-MODULE-|', Str::upper($storeModule), $data);
$data = str_replace('|-BaseModule-|', Str::title($module), $data);
$data = str_replace('|-baseModule-|', Str::camel($module), $data);
Storage::disk('local')->put($baseActionPath . $moduleFile, $data);
}
}
}
}
Vuex::initialize($this->arguments(), $this->options())->createAllFiles();
$this->info('modules Store Created');
}
}

@ -13,7 +13,7 @@ class Kernel extends ConsoleKernel
* @var array
*/
protected $commands = [
//
];
/**
@ -26,6 +26,8 @@ class Kernel extends ConsoleKernel
{
$schedule->command('today:schedule')->daily();
$schedule->command('today:run')->everyMinute();
$schedule->command('domain:update_ssl_expiry_date')->daily(); # update SSL expired_at
$schedule->command('domain:update_domain_expiry_date')->daily(); # update domain expired_at
}
/**

@ -36,6 +36,10 @@ class Handler extends ExceptionHandler
*/
public function report(Throwable $exception)
{
if (app()->bound('sentry') && $this->shouldReport($exception)) {
app('sentry')->captureException($exception);
}
parent::report($exception);
}

@ -16,8 +16,8 @@
"laravel/tinker": "^2.0",
"maatwebsite/excel": "^3.1",
"nestedset/willaarts": "^5.0.7",
"sentry/sentry-laravel": "^2.3",
"spatie/laravel-medialibrary": "^8.0.0",
"wm/admin": "dev-master",
"wm/common": "dev-master",
"wm/core": "dev-master",
"wm/crm": "dev-master",
@ -74,7 +74,6 @@
"@php artisan key:generate --ansi"
]
},
"repositories": [
{
"type": "path",
@ -96,9 +95,9 @@
"type": "path",
"url": "./modules/wm-web-builder"
},
{
"type": "path",
"url" : "./modules/wm-product"
}
{
"type": "path",
"url": "./modules/wm-product"
}
]
}

@ -0,0 +1,37 @@
<?php
return [
'dsn' => env('SENTRY_LARAVEL_DSN', env('SENTRY_DSN')),
// capture release as git sha
// 'release' => trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')),
// When left empty or `null` the Laravel environment will be used
'environment' => env('SENTRY_ENVIRONMENT'),
'breadcrumbs' => [
// Capture Laravel logs in breadcrumbs
'logs' => true,
// Capture SQL queries in breadcrumbs
'sql_queries' => true,
// Capture bindings on SQL queries logged in breadcrumbs
'sql_bindings' => true,
// Capture queue job information in breadcrumbs
'queue_info' => true,
// Capture command information in breadcrumbs
'command_info' => true,
],
// @see: https://docs.sentry.io/platforms/php/configuration/options/#send-default-pii
'send_default_pii' => false,
'traces_sample_rate' => (float)(env('SENTRY_TRACES_SAMPLE_RATE', 0.0)),
'controllers_base_namespace' => env('SENTRY_CONTROLLERS_BASE_NAMESPACE', 'App\\Http\\Controllers'),
];

@ -0,0 +1,54 @@
import {setData, getJson, getArray} from '@|-BaseModule-|/abstraction/resources/|-module-|/|-module-|Resource'
import axios from "axios";
import url from "@|-BaseModule-|/router/urls";
export default class |-module-|Repository {
async index() {
let response = await axios.get(url('url'));
if (response && response.status === 200) {
return getArray(response.data.data);
}
}
async store(data) {
const params = setData(data);
let response = await axios.post(url('url'), params);
if (response && response.status === 201) {
return getJson(response.data.data);
}
}
async update(data) {
const params = setData(data, true);
let response = await axios.post(url('url', {|-module-|: data.id}), params);
if (response && response.status === 200) {
return getJson(response.data.data);
}
}
async destroy(dataId) {
let response = await axios.delete(url('url', {|-module-|: dataId}));
if (response && response.status === 200) {
return true;
}
}
}

@ -0,0 +1,82 @@
import {setQuery, setData, getJson, getArray} from "@|-BaseModule-|/abstraction/resources/|-module-|/|-module-|Resource";
import axios from "axios";
import url from "@|-BaseModule-|/router/urls";
export default class |-Module-|Repository {
async index(data) {
const params = setQuery(data);
let response = await axios.get(url('url'), {params});
if (response && response.status === 200) {
return getArray(response.data);
}
}
async store(data) {
const params = setData(data);
let response = await axios.post(url('url'), params);
if (response && response.status === 201) {
return getJson(response.data);
}
}
async update(data) {
const params = setData(data, true);
let response = await axios.post(url('url', {|-module-|: data.id}), params);
if (response && response.status === 200) {
return getJson(response.data.data);
}
}
async show(dataId) {
let response = await axios.get(url('url', {|-module-|: dataId}));
if (response && response.status === 200) {
return getJson(response.data.data);
}
}
async destroy(dataId) {
let response = await axios.delete(url('url', {|-module-|: dataId}));
if (response && response.status === 200) {
return true;
}
}
async destroyList(dataIds) {
let response = await axios.delete(url('url'), {params: {ids: dataIds}});
if (response && response.status === 200) {
return true;
}
}
}

@ -0,0 +1,32 @@
import {SetQueries} from "@Global/utils/common/CreateQueriesObject";
import {objectToFormData} from "@Global/utils/object-to-formdata";
import {addToTags} from "@Global/utils/common/addToTags";
const getJson = (data) => {
return {
...data,
};
};
const getArray = (data) => {
return data.map((Item) => (getJson(Item)));
};
const setQuery = (data) => {
return SetQueries(data);
};
const setData = (data, hasUpdate = false) => {
//data = addToTags(data, ['name', 'name_en']);
return objectToFormData(
{
...data,
_method: hasUpdate ? 'put' : 'post'
}
);
};
export {setData, setQuery, getArray, getJson};

@ -0,0 +1,32 @@
import {SetQueries, SetPagination} from "@Global/utils/common/CreateQueriesObject";
import {objectToFormData} from "@Global/utils/object-to-formdata";
const getJson = (data) => {
return {
...data,
};
};
const getArray = ({data, meta}) => {
const pagination = SetPagination(meta);
data = data.map((Item) => (getJson(Item)));
return {data, pagination};
};
const setQuery = (data) => {
return SetQueries(data);
};
const setData = (data, hasUpdate = false) => {
return objectToFormData(
{
...data,
_method: hasUpdate ? 'put' : 'post'
}
);
};
export {setData, setQuery, getArray, getJson};

@ -0,0 +1,42 @@
import { Paginate, Sort } from '@Global/services/storage.|-module-|';
const |-MODULE-| = '|-module-|';
const |-Module-|Paginate = {
get() {
return Paginate.get(|-MODULE-|);
},
getWithDefault() {
if(this.get()) {
return this.get();
}
return {
page: 1,
pageCount: 1,
pageStart: 1,
pageStop: 1,
itemsLength: 1,
itemsPerPage: 12,
};
},
save(paginate) {
return Paginate.save(|-MODULE-|, paginate);
},
remove() {
return Paginate.remove(|-MODULE-|);
},
}
const SortPaginate = {
get() {
return Sort.get(|-MODULE-|);
},
save() {
return Sort.save(|-MODULE-|);
},
remove() {
return Sort.remove(|-MODULE-|);
},
}
export { |-Module-|Paginate, SortPaginate }

@ -1,4 +1,4 @@
import |-Module-|Repository from "@|-BaseModule-|/abstraction/repositories/|-module-|Repository";
import |-Module-|Repository from "@|-BaseModule-|/abstraction/repositories/|-module-|/|-module-|Repository";
let repository = new |-Module-|Repository();
@ -6,9 +6,8 @@ export default {
async load|-Module-|({ commit, state }) {
try {
commit("SET_LOADING", true);
const |-module-| = await repository.index({pagination: state.pagination, filters: state.filters});
commit("SET_|-MODULE-|", |-module-|.data);
commit("SET_|-MODULE-|_PAGINATION", |-module-|.pagination);
const |-module-| = await repository.index();
commit("SET_|-MODULE-|", |-module-|);
return |-module-|;
} catch (e) {
return e;
@ -16,13 +15,6 @@ export default {
commit("SET_LOADING", false);
}
},
async show|-Module-|({}, |-module-|Id) {
try {
return await repository.show(|-module-|Id);
} catch (e) {
return e;
}
},
async store|-Module-|({ commit }, data) {
try {
const |-module-| = await repository.store(data);

@ -1,7 +1,14 @@
export default {
get|-Module-|: state => state.|-module-|,
getList|-Module-|: state => {
if (state.has_filter) {
return state.filtered_|-snake_module-|;
}
return state.|-snake_module-|;
},
get|-Module-|: state => state.|-snake_module-|,
isFiltered|-Module-|: state =>state.is_filtered,
getFilter|-Module-|: state =>state.filter,
get|-Module-|Loading: state => state.loading,
get|-Module-|Pagination: state => state.pagination,
get|-Module-|Selected: state => state.selected,
};

@ -1,36 +1,26 @@
import Vue from 'vue';
//import { |-module-|Paginate } from "@|-BaseModule-|/services/localStorage/|-module-|.storage"
import {addIndexTreeToList} from '@Global/utils/common/ProcessTreeArray';
export default {
SET_|-MODULE-|(state, |-module-|) {
Vue.set(state, '|-module-|', |-module-|);
Vue.set(state, '|-snake_module-|', addIndexTreeToList(|-module-|));
},
UPDATE_|-MODULE-|(state, |-module-|) {
const index = state.|-module-|.findIndex(x => x.id === |-module-|.id);
|-module-| = {...state.|-module-|[index], ...|-module-|};
Vue.set(state.|-module-|, index, |-module-|);
},
SET_|-MODULE-|_PAGINATION(state, pagination) {
Vue.set(state, "pagination", pagination);
//|-module-|Paginate.save(pagination);
const index = state.|-snake_module-|.findIndex(x => x.id === |-module-|.id);
Vue.set(state.|-snake_module-|, index, |-module-|);
Vue.set(state, '|-snake_module-|', addIndexTreeToList(state.|-snake_module-|));
},
REMOVE_|-MODULE-|(state, id) {
const Index = state.|-module-|.findIndex(x => x.id === id);
const selectedIndex = state.|-module-|_selected.findIndex(x => x.id === id);
Vue.delete(state.|-module-|, Index);
Vue.delete(state.|-module-|_selected, selectedIndex);
Vue.set(state.pagination, 'itemsLength', state.pagination.itemsLength - 1);
Vue.set(state.pagination, 'pageStop', state.pagination.pageStop - 1);
const Index = state.|-snake_module-|.findIndex(x => x.id === id);
Vue.delete(state.|-snake_module-|, Index);
Vue.set(state, '|-snake_module-|', addIndexTreeToList(state.|-snake_module-|));
},
ADD_|-MODULE-|(state, |-module-|) {
state.|-module-|.unshift(|-module-|);
Vue.set(state, '|-module-|', state.|-module-|);
Vue.set(state.pagination, 'itemsLength', state.pagination.itemsLength + 1);
Vue.set(state.pagination, 'pageStop', state.pagination.pageStop + 1);
Vue.set(state.|-snake_module-|, state.|-snake_module-|.length, |-module-|);
Vue.set(state, '|-snake_module-|', addIndexTreeToList(state.|-snake_module-|))
},
ADD_|-MODULE-|_SELECTED(state, |-module-|Id) {
@ -39,10 +29,15 @@ export default {
},
SET_FILTER_|-MODULE-|(state, value) {
state.filters = value;
Vue.set(state, 'filtered_|-snake_module-|', value);
Vue.set(state, 'has_filter', true);
},
RESET_FILTERED_|-MODULE-|(state, value) {
Vue.set(state, 'filtered_|-snake_module-|', [value]);
Vue.set(state, 'is_filter', false);
},
SET_LOADING(state, value) {
state.loading = value;
}
},
};

@ -1,14 +1,19 @@
//import { |-module-|Paginate } from "@|-BaseModule-|/services/localStorage/|-module-|.storage";
export default {
module_info:{
name: '|-module-|',
module: '|-baseModule-|',
},
|-module-|: [],
|-module-|_selected: [],
//pagination: newsPaginate.getWithDefault(),
filter: [],
is_filtered: false,
|-snake_module-|: [],
filtered_|-snake_module-|: [],
|-snake_module-|_selected: [],
loading: false,
filters:{},
default_category: {
id: null,
name: "بدون دسته بندی",
name_en: "No Category",
type: "default"
}
};

@ -1,7 +0,0 @@
export default {
get|-Module-|: state => state.|-module-|,
get|-Module-|Loading: state => state.loading,
get|-Module-|Pagination: state => state.pagination,
get|-Module-|Selected: state => state.selected,
};

@ -0,0 +1,10 @@
export default {
get|-Module-|s: state => state.|-module-|_list,
get|-Module-|: state => product => state.product_list.find(item => item.id == |-module-|),
get|-Module-|Loading: state => state.loading,
get|-Module-|Pagination: state => state.pagination,
getRowsPerPageItems: state => state.rowsPerPageItems,
get|-Module-|Selected: state => state.selected,
isFiltered|-Module-|: state => state.is_filtered,
};

@ -1,5 +1,4 @@
import Vue from 'vue';
//import { |-module-|Paginate } from "@|-BaseModule-|/services/localStorage/|-module-|.storage"
export default {
SET_|-MODULE-|(state, |-module-|) {
@ -14,7 +13,6 @@ export default {
SET_|-MODULE-|_PAGINATION(state, pagination) {
Vue.set(state, "pagination", pagination);
//|-module-|Paginate.save(pagination);
},
REMOVE_|-MODULE-|(state, id) {
@ -43,6 +41,6 @@ export default {
},
SET_LOADING(state, value) {
state.loading = value;
Vue.set(state, 'loading', value);
}
};

@ -1,14 +0,0 @@
//import { |-module-|Paginate } from "@|-BaseModule-|/services/localStorage/|-module-|.storage";
export default {
module_info:{
name: '|-module-|',
module: '|-baseModule-|',
},
|-module-|: [],
|-module-|_selected: [],
//pagination: newsPaginate.getWithDefault(),
loading: false,
filters:{},
};

@ -0,0 +1,16 @@
//import { |-Module-|Paginate } from "@|-BaseModule-|/services/localStorage/|-module-|.storage";
export default {
module_info:{
name: '|-module-|',
module: '|-baseModule-|',
},
|-module-|_list: [],
|-module-|_selected: [],
filtered_|-module-|: [],
//pagination: |-Module-|Paginate.getWithDefault(),
loading: false,
filters:{},
is_filtered: false,
};

@ -129,14 +129,14 @@ export default {
};
},
computed: {
...mapGetters("rolePermission", ["getAllModules", "getModules"])
...mapGetters("rolePermission", ["getHomeModules", "getModules"])
},
methods: {
...mapActions("rolePermission", ["loadAllModules", "loadModules"]),
...mapActions("rolePermission", ["loadHomeModules", "loadModules"]),
async loadPage() {
await this.loadAllModules({ home_page: true });
await this.loadHomeModules({ home_page: true });
await this.loadModules({ home_page: true });
for (const allModule of this.getAllModules) {
for (const allModule of this.getHomeModules) {
let module = this.getModules.find(x => x.id == allModule.id);
if (module) {
allModule['has_module'] = 'yes';
@ -145,7 +145,7 @@ export default {
allModule['has_module'] = 'no';
}
}
this.allModules = this.getAllModules;
this.allModules = this.getHomeModules;
}
},
beforeMount() {

@ -1,36 +0,0 @@
@keyframes fadein {
to { opacity: 1; }
}
.fade-in {
opacity: 0;
animation: fadein 1s forwards;
}
.fade-in.fast {
animation-duration: 0.5s;
}
.fade-in.very-fast {
animation-duration: 0.2s;
}
$delays: ('01': 0.1s, '02': 0.2s, '03': 0.3s, '04': 0.4s, '05': 0.5s, '06': 0.6s, '07': 0.7s , '08': 0.8s , '09': 0.9s , '1': 1s , '11': 1.1s );
@each $delay,
$Value in $delays {
.delay-#{$delay} {
animation-delay: $Value;
}
}
//--------------------------------------------
// States handler and animations
//--------------------------------------------
.hide-by-height {
max-height: 0px;
overflow: hidden;
opacity: 0;
transition: opacity 0.4s, max-height 0.4s cubic-bezier(1,0,.2,1);
}
.hide-by-height.active {
max-height: 5000px;
opacity: 1;
}

@ -1,86 +0,0 @@
/* --------------------------------------------------------
Colors :: Begin
-------------------------------------------------------- */
@each $Color,
$Value in $colors {
.color-#{$Color},
.link-#{$Color}:hover,
.link-#{$Color}:hover .v-icon,
.link-#{$Color}.WM-Selected,
.link-#{$Color}.WM-Active {
color: $Value;
}
.border-#{$Color},
.hover-#{$Color}:hover {
border-color: $Value;
}
.border-right-#{$Color} {
border-right-color: $Value;
}
}
/* --------------------------------------------------------
Steps : Colors
-------------------------------------------------------- */
@each $color,
$value in $colors {
//-------------------Active State-----------------------------
.v-stepper.we-stepper .v-stepper__step.theme-#{$color}.active .v-stepper__label {
color: #fff;
}
.v-stepper.we-stepper .v-stepper__step.theme-#{$color}.active .v-stepper__step__step {
color: #fff;
}
.v-stepper.we-stepper .v-stepper__step.theme-#{$color}.active {
background-color: $value;
}
//-------------------Passed State-----------------------------
.v-stepper.we-stepper .v-stepper__step.theme-#{$color}.passed .v-stepper__label {
color: $value;
}
.v-stepper.we-stepper .v-stepper__step.theme-#{$color}.passed .v-stepper__step__step {
color: $value
}
//-------------------Current Step-----------------------------
.order-status .current-status.theme-#{$color} {
border: 2px solid $value;
}
.order-status .current-status.theme-#{$color} .symbol .v-icon {
color: $value
}
}
@each $backgroundColor,
$value in $backgrounds {
.v-stepper.we-stepper .v-stepper__step.theme-#{$backgroundColor}.passed {
background-color: $value;
}
.bg-#{$backgroundColor} {
background-color: $value;
}
}
.text-gradient.orange-purple {
background: -webkit-linear-gradient(300deg, #ffbb82 .31%, #6a2150 1.91%, #f9755a 99.36%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.text-gradient.cyan-black {
background: -webkit-linear-gradient(300deg, #3c3c3c 0.31%, #312b2f 1.91%, #1d919c 99.36%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.text-gradient.black-black {
background: -webkit-linear-gradient(300deg, #3c3c3c 0.31%, #312b2f 1.91%, #656565 99.36%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

@ -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,542 +0,0 @@
.WMi-ok:before { content: '\e800'; } /* '' */
.WMi-picture:before { content: '\e801'; } /* '' */
.WMi-search:before { content: '\e802'; } /* '' */
.WMi-music:before { content: '\e803'; } /* '' */
.WMi-star-half:before { content: '\e804'; } /* '' */
.WMi-star-empty:before { content: '\e805'; } /* '' */
.WMi-star:before { content: '\e806'; } /* '' */
.WMi-heart-empty:before { content: '\e807'; } /* '' */
.WMi-heart:before { content: '\e808'; } /* '' */
.WMi-mail:before { content: '\e809'; } /* '' */
.WMi-cancel:before { content: '\e80a'; } /* '' */
.WMi-lock:before { content: '\e80b'; } /* '' */
.WMi-lock-open:before { content: '\e80c'; } /* '' */
.WMi-attach:before { content: '\e80d'; } /* '' */
.WMi-link:before { content: '\e80e'; } /* '' */
.WMi-bookmark:before { content: '\e80f'; } /* '' */
.WMi-upload:before { content: '\e810'; } /* '' */
.WMi-download:before { content: '\e811'; } /* '' */
.WMi-tag:before { content: '\e812'; } /* '' */
.WMi-trash-empty:before { content: '\e813'; } /* '' */
.WMi-cog:before { content: '\e814'; } /* '' */
.WMi-off-1:before { content: '\e815'; } /* '' */
.WMi-resize-vertical:before { content: '\e816'; } /* '' */
.WMi-down-open:before { content: '\e817'; } /* '' */
.WMi-left-open:before { content: '\e818'; } /* '' */
.WMi-right-open:before { content: '\e819'; } /* '' */
.WMi-up-open:before { content: '\e81a'; } /* '' */
.WMi-user-md:before { content: '\e81b'; } /* '' */
.WMi-chat:before { content: '\e81c'; } /* '' */
.WMi-location-arrow:before { content: '\e81d'; } /* '' */
.WMi-indent-left:before { content: '\e81e'; } /* '' */
.WMi-indent-right:before { content: '\e81f'; } /* '' */
.WMi-align-justify-1:before { content: '\e820'; } /* '' */
.WMi-check:before { content: '\e821'; } /* '' */
.WMi-credit-card:before { content: '\e822'; } /* '' */
.WMi-briefcase:before { content: '\e823'; } /* '' */
.WMi-off:before { content: '\e824'; } /* '' */
.WMi-arrows-cw:before { content: '\e825'; } /* '' */
.WMi-shuffle:before { content: '\e826'; } /* '' */
.WMi-globe:before { content: '\e827'; } /* '' */
.WMi-cloud:before { content: '\e828'; } /* '' */
.WMi-zoom-in:before { content: '\e829'; } /* '' */
.WMi-zoom-out:before { content: '\e82a'; } /* '' */
.WMi-attach-1:before { content: '\e82b'; } /* '' */
.WMi-check-1:before { content: '\e82c'; } /* '' */
.WMi-cancel-1:before { content: '\e82d'; } /* '' */
.WMi-comment:before { content: '\e82e'; } /* '' */
.WMi-layers:before { content: '\e82f'; } /* '' */
.WMi-signal:before { content: '\e830'; } /* '' */
.WMi-equalizer:before { content: '\e831'; } /* '' */
.WMi-macstore:before { content: '\e832'; } /* '' */
.WMi-emo-happy:before { content: '\e833'; } /* '' */
.WMi-emo-wink:before { content: '\e834'; } /* '' */
.WMi-emo-wink2:before { content: '\e835'; } /* '' */
.WMi-emo-unhappy:before { content: '\e836'; } /* '' */
.WMi-emo-sleep:before { content: '\e837'; } /* '' */
.WMi-emo-coffee:before { content: '\e838'; } /* '' */
.WMi-emo-sunglasses:before { content: '\e839'; } /* '' */
.WMi-emo-angry:before { content: '\e83a'; } /* '' */
.WMi-emo-squint:before { content: '\e83b'; } /* '' */
.WMi-emo-laugh:before { content: '\e83c'; } /* '' */
.WMi-camera:before { content: '\e83d'; } /* '' */
.WMi-emo-displeased:before { content: '\e83e'; } /* '' */
.WMi-emo-surprised:before { content: '\e83f'; } /* '' */
.WMi-th:before { content: '\e840'; } /* '' */
.WMi-asterisk:before { content: '\e841'; } /* '' */
.WMi-gift:before { content: '\e842'; } /* '' */
.WMi-basket:before { content: '\e843'; } /* '' */
.WMi-Beauty-1:before { content: '\e844'; } /* '' */
.WMi-rss-1:before { content: '\e845'; } /* '' */
.WMi-shop:before { content: '\e846'; } /* '' */
.WMi-shop-1:before { content: '\e847'; } /* '' */
.WMi-basket-1:before { content: '\e848'; } /* '' */
.WMi-plus:before { content: '\e849'; } /* '' */
.WMi-minus:before { content: '\e84a'; } /* '' */
.WMi-Real-Estate:before { content: '\e84b'; } /* '' */
.WMi-retweet:before { content: '\e84c'; } /* '' */
.WMi-edit:before { content: '\e84d'; } /* '' */
.WMi-tags:before { content: '\e84e'; } /* '' */
.WMi-map-1:before { content: '\e84f'; } /* '' */
.WMi-doc-landscape:before { content: '\e850'; } /* '' */
.WMi-logout:before { content: '\e851'; } /* '' */
.WMi-login:before { content: '\e852'; } /* '' */
.WMi-logout-1:before { content: '\e853'; } /* '' */
.WMi-back-in-time:before { content: '\e854'; } /* '' */
.WMi-chat-alt-1:before { content: '\e855'; } /* '' */
.WMi-art-gallery:before { content: '\e856'; } /* '' */
.WMi-gift-1:before { content: '\e857'; } /* '' */
.WMi-switch:before { content: '\e858'; } /* '' */
.WMi-level-down:before { content: '\e859'; } /* '' */
.WMi-help:before { content: '\e85a'; } /* '' */
.WMi-location:before { content: '\e85b'; } /* '' */
.WMi-phone:before { content: '\e85c'; } /* '' */
.WMi-phone-1:before { content: '\e85d'; } /* '' */
.WMi-share:before { content: '\e85e'; } /* '' */
.WMi-Repairing:before { content: '\e85f'; } /* '' */
.WMi-shuffle-1:before { content: '\e860'; } /* '' */
.WMi-loop:before { content: '\e861'; } /* '' */
.WMi-glyph:before { content: '\e862'; } /* '' */
.WMi-glyph-1:before { content: '\e863'; } /* '' */
.WMi-glyph-2:before { content: '\e864'; } /* '' */
.WMi-warning-empty:before { content: '\e865'; } /* '' */
.WMi-shop-bag:before { content: '\e866'; } /* '' */
.WMi-Clothes:before { content: '\e867'; } /* '' */
.WMi-Agriculture:before { content: '\e868'; } /* '' */
.WMi-Medical:before { content: '\e869'; } /* '' */
.WMi-Sports-and-Entertainment:before { content: '\e86a'; } /* '' */
.WMi-wrench-1:before { content: '\e86b'; } /* '' */
.WMi-pencil:before { content: '\e86c'; } /* '' */
.WMi-map-2:before { content: '\e86d'; } /* '' */
.WMi-map-o-1:before { content: '\e86e'; } /* '' */
.WMi-marquee:before { content: '\e86f'; } /* '' */
.WMi-doc-text-inv:before { content: '\e870'; } /* '' */
.WMi-calendar:before { content: '\e871'; } /* '' */
.WMi-calendar-1:before { content: '\e872'; } /* '' */
.WMi-Art-And-Culture:before { content: '\e873'; } /* '' */
.WMi-graduation-cap:before { content: '\e874'; } /* '' */
.WMi-Advertising-1:before { content: '\e875'; } /* '' */
.WMi-filter:before { content: '\e876'; } /* '' */
.WMi-Tourism-And-Transportation:before { content: '\e877'; } /* '' */
.WMi-Makeup-And-Hygienic:before { content: '\e878'; } /* '' */
.WMi-clock:before { content: '\e879'; } /* '' */
.WMi-user:before { content: '\e87a'; } /* '' */
.WMi-users:before { content: '\e87b'; } /* '' */
.WMi-Official:before { content: '\e87c'; } /* '' */
.WMi-crown:before { content: '\e87d'; } /* '' */
.WMi-gift-2:before { content: '\e87e'; } /* '' */
.WMi-Decoration-And-Building-Industry:before { content: '\e87f'; } /* '' */
.WMi-Flowers-And-Plants:before { content: '\e880'; } /* '' */
.WMi-Advertising:before { content: '\e881'; } /* '' */
.WMi-shop-2:before { content: '\e882'; } /* '' */
.WMi-glyph-3:before { content: '\e883'; } /* '' */
.WMi-glyph-4:before { content: '\e884'; } /* '' */
.WMi-glyph-5:before { content: '\e885'; } /* '' */
.WMi-glyph-6:before { content: '\e886'; } /* '' */
.WMi-glyph-7:before { content: '\e887'; } /* '' */
.WMi-glyph-8:before { content: '\e888'; } /* '' */
.WMi-glyph-9:before { content: '\e889'; } /* '' */
.WMi-glyph-10:before { content: '\e88a'; } /* '' */
.WMi-pos:before { content: '\e88b'; } /* '' */
.WMi-glyph-12:before { content: '\e88c'; } /* '' */
.WMi-glyph-13:before { content: '\e88d'; } /* '' */
.WMi-glyph-14:before { content: '\e88e'; } /* '' */
.WMi-glyph-15:before { content: '\e88f'; } /* '' */
.WMi-glyph-16:before { content: '\e890'; } /* '' */
.WMi-glyph-17:before { content: '\e891'; } /* '' */
.WMi-glyph-18:before { content: '\e892'; } /* '' */
.WMi-glyph-19:before { content: '\e893'; } /* '' */
.WMi-glyph-20:before { content: '\e894'; } /* '' */
.WMi-glyph-21:before { content: '\e895'; } /* '' */
.WMi-glyph-22:before { content: '\e896'; } /* '' */
.WMi-glyph-23:before { content: '\e897'; } /* '' */
.WMi-glyph-24:before { content: '\e898'; } /* '' */
.WMi-business-affiliate-network:before { content: '\e899'; } /* '' */
.WMi-camera-1:before { content: '\e89a'; } /* '' */
.WMi-Photography:before { content: '\e89b'; } /* '' */
.WMi-SocialMedia:before { content: '\e89c'; } /* '' */
.WMi-WebAndApp:before { content: '\e89d'; } /* '' */
.WMi-Graphic:before { content: '\e89e'; } /* '' */
.WMi-bell:before { content: '\e89f'; } /* '' */
.WMi-RegisterBusiness:before { content: '\e8a0'; } /* '' */
.WMi-code-1:before { content: '\e8a1'; } /* '' */
.WMi-aparat:before { content: '\e8a2'; } /* '' */
.WMi-truck:before { content: '\e8a3'; } /* '' */
.WMi-eye:before { content: '\e8a4'; } /* '' */
.WMi-eye-off:before { content: '\e8a5'; } /* '' */
.WMi-flight:before { content: '\e8a6'; } /* '' */
.WMi-cloud-1:before { content: '\e8a7'; } /* '' */
.WMi-animation:before { content: '\e8a8'; } /* '' */
.WMi-instagram-2:before { content: '\e8a9'; } /* '' */
.WMi-videocam:before { content: '\e8aa'; } /* '' */
.WMi-video:before { content: '\e8ab'; } /* '' */
.WMi-info-1:before { content: '\e8ac'; } /* '' */
.WMi-play-1:before { content: '\e8ad'; } /* '' */
.WMi-pause-1:before { content: '\e8ae'; } /* '' */
.WMi-to-end-1:before { content: '\e8af'; } /* '' */
.WMi-to-end-alt:before { content: '\e8b0'; } /* '' */
.WMi-to-start-1:before { content: '\e8b1'; } /* '' */
.WMi-to-start-alt:before { content: '\e8b2'; } /* '' */
.WMi-fast-fw:before { content: '\e8b3'; } /* '' */
.WMi-fast-bw:before { content: '\e8b4'; } /* '' */
.WMi-stop-1:before { content: '\e8b5'; } /* '' */
.WMi-eject:before { content: '\e8b6'; } /* '' */
.WMi-comments-alt:before { content: '\e8b7'; } /* '' */
.WMi-comment-1:before { content: '\e8b8'; } /* '' */
.WMi-comments:before { content: '\e8b9'; } /* '' */
.WMi-trash-alt-1:before { content: '\e8ba'; } /* '' */
.WMi-hourglass:before { content: '\e8bb'; } /* '' */
.WMi-person:before { content: '\e8bc'; } /* '' */
.WMi-temperatire:before { content: '\e8bd'; } /* '' */
.WMi-temperature-fahrenheit:before { content: '\e8be'; } /* '' */
.WMi-undo:before { content: '\e8bf'; } /* '' */
.WMi-transgender-1:before { content: '\e8c0'; } /* '' */
.WMi-back:before { content: '\e8c1'; } /* '' */
.WMi-brightness-2:before { content: '\e8c2'; } /* '' */
.WMi-brightness-3:before { content: '\e8c3'; } /* '' */
.WMi-gender-female:before { content: '\e8c4'; } /* '' */
.WMi-carrot:before { content: '\e8c5'; } /* '' */
.WMi-map-signs-1:before { content: '\e8c6'; } /* '' */
.WMi-wifi-1:before { content: '\e8c7'; } /* '' */
.WMi-chart-bar-1:before { content: '\e8c8'; } /* '' */
.WMi-emo-displeased-1:before { content: '\e8c9'; } /* '' */
.WMi-emo-surprised-1:before { content: '\e8ca'; } /* '' */
.WMi-basket-2:before { content: '\e8cb'; } /* '' */
.WMi-donut:before { content: '\e8cc'; } /* '' */
.WMi-signal-1:before { content: '\e8cd'; } /* '' */
.WMi-infinity:before { content: '\e8ce'; } /* '' */
.WMi-th-large-1:before { content: '\e8cf'; } /* '' */
.WMi-th-1:before { content: '\e8d0'; } /* '' */
.WMi-eq:before { content: '\e8d1'; } /* '' */
.WMi-quote-right-alt:before { content: '\e8d2'; } /* '' */
.WMi-quote-left-alt:before { content: '\e8d3'; } /* '' */
.WMi-pinterest-1:before { content: '\e8d4'; } /* '' */
.WMi-youtube:before { content: '\e8d5'; } /* '' */
.WMi-wordpress:before { content: '\e8d6'; } /* '' */
.WMi-th-large-2:before { content: '\e8d7'; } /* '' */
.WMi-braille:before { content: '\e8d8'; } /* '' */
.WMi-number:before { content: '\e8d9'; } /* '' */
.WMi-doc-text:before { content: '\e8da'; } /* '' */
.WMi-internet-explorer:before { content: '\e8db'; } /* '' */
.WMi-barcode:before { content: '\e8dc'; } /* '' */
.WMi-hdd-1:before { content: '\e8dd'; } /* '' */
.WMi-signature:before { content: '\e8de'; } /* '' */
.WMi-headphones:before { content: '\e8df'; } /* '' */
.WMi-account-multiple-plus:before { content: '\e8e0'; } /* '' */
.WMi-account-key:before { content: '\e8e1'; } /* '' */
.WMi-emo-saint:before { content: '\e8e2'; } /* '' */
.WMi-emo-grin:before { content: '\e8e3'; } /* '' */
.WMi-emo-tongue:before { content: '\e8e4'; } /* '' */
.WMi-theme:before { content: '\e8e5'; } /* '' */
.WMi-th-list:before { content: '\f00b'; } /* '' */
.WMi-pause:before { content: '\f00e'; } /* '' */
.WMi-play:before { content: '\f00f'; } /* '' */
.WMi-to-end:before { content: '\f010'; } /* '' */
.WMi-to-start:before { content: '\f011'; } /* '' */
.WMi-account-off:before { content: '\f012'; } /* '' */
.WMi-account-plus:before { content: '\f014'; } /* '' */
.WMi-account-remove:before { content: '\f015'; } /* '' */
.WMi-clock-1:before { content: '\f017'; } /* '' */
.WMi-account-switch:before { content: '\f019'; } /* '' */
.WMi-alarm-plus:before { content: '\f024'; } /* '' */
.WMi-hash:before { content: '\f029'; } /* '' */
.WMi-alert-outline:before { content: '\f02a'; } /* '' */
.WMi-book:before { content: '\f02d'; } /* '' */
.WMi-Food:before { content: '\f02f'; } /* '' */
.WMi-Digital:before { content: '\f034'; } /* '' */
.WMi-apple:before { content: '\f035'; } /* '' */
.WMi-align-left:before { content: '\f036'; } /* '' */
.WMi-align-center:before { content: '\f037'; } /* '' */
.WMi-align-right:before { content: '\f038'; } /* '' */
.WMi-list:before { content: '\f03a'; } /* '' */
.WMi-archive:before { content: '\f03c'; } /* '' */
.WMi-linkedin-1:before { content: '\f05c'; } /* '' */
.WMi-backspace:before { content: '\f06e'; } /* '' */
.WMi-backup-restore:before { content: '\f06f'; } /* '' */
.WMi-calendar-alt:before { content: '\f073'; } /* '' */
.WMi-comment-2:before { content: '\f075'; } /* '' */
.WMi-shopping-cart:before { content: '\f07a'; } /* '' */
.WMi-folder:before { content: '\f07b'; } /* '' */
.WMi-stop:before { content: '\f080'; } /* '' */
.WMi-cogs:before { content: '\f085'; } /* '' */
.WMi-info-circled-alt:before { content: '\f086'; } /* '' */
.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-wrench:before { content: '\f0ad'; } /* '' */
.WMi-resize-full-alt:before { content: '\f0b2'; } /* '' */
.WMi-users-1:before { content: '\f0c0'; } /* '' */
.WMi-beaker:before { content: '\f0c3'; } /* '' */
.WMi-menu:before { content: '\f0c9'; } /* '' */
.WMi-list-ul:before { content: '\f0ca'; } /* '' */
.WMi-list-ol:before { content: '\f0cb'; } /* '' */
.WMi-magic:before { content: '\f0d0'; } /* '' */
.WMi-gplus:before { content: '\f0d5'; } /* '' */
.WMi-WM-Logo:before { content: '\f0da'; } /* '' */
.WMi-open:before { content: '\f0db'; } /* '' */
.WMi-sort:before { content: '\f0dc'; } /* '' */
.WMi-chronometer:before { content: '\f0dd'; } /* '' */
.WMi-Clothes-And-Personal-Belongings:before { content: '\f0de'; } /* '' */
.WMi-mail-alt:before { content: '\f0e0'; } /* '' */
.WMi-Cleaning:before { content: '\f0e2'; } /* '' */
.WMi-sea-ship-with-containers:before { content: '\f0e3'; } /* '' */
.WMi-freight-truck:before { content: '\f0e4'; } /* '' */
.WMi-wa-fit:before { content: '\f0e7'; } /* '' */
.WMi-sitemap:before { content: '\f0e8'; } /* '' */
.WMi-exchange:before { content: '\f0ec'; } /* '' */
.WMi-Medical-Services:before { content: '\f0f0'; } /* '' */
.WMi-Drug-And-Medical-Equipment:before { content: '\f0f1'; } /* '' */
.WMi-bell-alt:before { content: '\f0f3'; } /* '' */
.WMi-HomeAppliances:before { content: '\f0f4'; } /* '' */
.WMi-Edible-And-Groceries: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-quote-left:before { content: '\f10d'; } /* '' */
.WMi-quote-right:before { content: '\f10e'; } /* '' */
.WMi-circle:before { content: '\f111'; } /* '' */
.WMi-cash:before { content: '\f114'; } /* '' */
.WMi-Information-Technology:before { content: '\f120'; } /* '' */
.WMi-code:before { content: '\f121'; } /* '' */
.WMi-star-half-alt:before { content: '\f123'; } /* '' */
.WMi-direction:before { content: '\f124'; } /* '' */
.WMi-crop:before { content: '\f125'; } /* '' */
.WMi-unlink:before { content: '\f127'; } /* '' */
.WMi-info:before { content: '\f129'; } /* '' */
.WMi-attention-alt:before { content: '\f12a'; } /* '' */
.WMi-calendar-2:before { content: '\f133'; } /* '' */
.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-1:before { content: '\f15c'; } /* '' */
.WMi-sort-alpha-down:before { content: '\f15d'; } /* '' */
.WMi-sort-alt-up:before { content: '\f160'; } /* '' */
.WMi-sort-alt-down:before { content: '\f161'; } /* '' */
.WMi-sort-numeric-down:before { content: '\f162'; } /* '' */
.WMi-sort-numeric-up:before { content: '\f163'; } /* '' */
.WMi-youtube-play:before { content: '\f16a'; } /* '' */
.WMi-dropbox:before { content: '\f16b'; } /* '' */
.WMi-instagram:before { content: '\f16d'; } /* '' */
.WMi-windows:before { content: '\f17a'; } /* '' */
.WMi-comment-processing:before { content: '\f184'; } /* '' */
.WMi-content-cut:before { content: '\f190'; } /* '' */
.WMi-wheelchair:before { content: '\f193'; } /* '' */
.WMi-plus-squared-alt:before { content: '\f196'; } /* '' */
.WMi-bank:before { content: '\f19c'; } /* '' */
.WMi-Educational:before { content: '\f19d'; } /* '' */
.WMi-crop-1:before { content: '\f19e'; } /* '' */
.WMi-google:before { content: '\f1a0'; } /* '' */
.WMi-crown-1:before { content: '\f1a5'; } /* '' */
.WMi-paw:before { content: '\f1b0'; } /* '' */
.WMi-cube:before { content: '\f1b2'; } /* '' */
.WMi-cubes:before { content: '\f1b3'; } /* '' */
.WMi-Vehicle:before { content: '\f1b9'; } /* '' */
.WMi-taxi:before { content: '\f1ba'; } /* '' */
.WMi-database:before { content: '\f1c0'; } /* '' */
.WMi-codeopen:before { content: '\f1cb'; } /* '' */
.WMi-paper-plane:before { content: '\f1d8'; } /* '' */
.WMi-telegram:before { content: '\f1d9'; } /* '' */
.WMi-sliders:before { content: '\f1de'; } /* '' */
.WMi-Sport:before { content: '\f1e3'; } /* '' */
.WMi-plug:before { content: '\f1e6'; } /* '' */
.WMi-wifi:before { content: '\f1eb'; } /* '' */
.WMi-trash:before { content: '\f1f8'; } /* '' */
.WMi-Engineering:before { content: '\f1fa'; } /* '' */
.WMi-eyedropper:before { content: '\f1fb'; } /* '' */
.WMi-brush: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-factory:before { content: '\f20f'; } /* '' */
.WMi-diamond:before { content: '\f219'; } /* '' */
.WMi-motorcycle:before { content: '\f21c'; } /* '' */
.WMi-heartbeat:before { content: '\f21e'; } /* '' */
.WMi-transgender:before { content: '\f224'; } /* '' */
.WMi-pinterest:before { content: '\f231'; } /* '' */
.WMi-user-plus:before { content: '\f234'; } /* '' */
.WMi-user-times:before { content: '\f235'; } /* '' */
.WMi-bed:before { content: '\f236'; } /* '' */
.WMi-flip-to-back: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:before { content: '\f277'; } /* '' */
.WMi-map-o:before { content: '\f278'; } /* '' */
.WMi-map:before { content: '\f279'; } /* '' */
.WMi-comment-alt:before { content: '\f27a'; } /* '' */
.WMi-edge:before { content: '\f282'; } /* '' */
.WMi-credit-card-alt:before { content: '\f283'; } /* '' */
.WMi-shopping-bag:before { content: '\f290'; } /* '' */
.WMi-gas-station:before { content: '\f298'; } /* '' */
.WMi-question-circle-o:before { content: '\f29c'; } /* '' */
.WMi-gender-male:before { content: '\f29d'; } /* '' */
.WMi-envelope-open:before { content: '\f2b6'; } /* '' */
.WMi-envelope-open-o:before { content: '\f2b7'; } /* '' */
.WMi-telegram-1:before { content: '\f2c6'; } /* '' */
.WMi-hanger:before { content: '\f2c8'; } /* '' */
.WMi-snowflake-o:before { content: '\f2dc'; } /* '' */
.WMi-trash-alt:before { content: '\f2ed'; } /* '' */
.WMi-image-filter-none:before { content: '\f2f6'; } /* '' */
.WMi-facebook:before { content: '\f300'; } /* '' */
.WMi-twitter:before { content: '\f302'; } /* '' */
.WMi-linkedin-squared:before { content: '\f30c'; } /* '' */
.WMi-linkedin:before { content: '\f318'; } /* '' */
.WMi-linkedin-2:before { content: '\f31a'; } /* '' */
.WMi-javascript:before { content: '\f31e'; } /* '' */
.WMi-php:before { content: '\f31f'; } /* '' */
.WMi-python:before { content: '\f321'; } /* '' */
.WMi-win8:before { content: '\f325'; } /* '' */
.WMi-instagram-1:before { content: '\f32d'; } /* '' */
.WMi-library-books:before { content: '\f332'; } /* '' */
.WMi-message-reply-text:before { content: '\f368'; } /* '' */
.WMi-message-text-outline:before { content: '\f36a'; } /* '' */
.WMi-cloud-download-alt:before { content: '\f381'; } /* '' */
.WMi-cloud-upload-alt:before { content: '\f382'; } /* '' */
.WMi-navigation:before { content: '\f390'; } /* '' */
.WMi-lock-open-1:before { content: '\f3c1'; } /* '' */
.WMi-percent:before { content: '\f3f0'; } /* '' */
.WMi-Flowers-and-Plants:before { content: '\f405'; } /* '' */
.WMi-table-tennis:before { content: '\f45d'; } /* '' */
.WMi-Scientific:before { content: '\f463'; } /* '' */
.WMi-school:before { content: '\f474'; } /* '' */
.WMi-selection:before { content: '\f489'; } /* '' */
.WMi-warehouse:before { content: '\f494'; } /* '' */
.WMi-shopping:before { content: '\f49a'; } /* '' */
.WMi-Home-And-Office:before { content: '\f4b9'; } /* '' */
.WMi-sort-alphabetical:before { content: '\f4bb'; } /* '' */
.WMi-sort-numeric:before { content: '\f4be'; } /* '' */
.WMi-user-check:before { content: '\f4fc'; } /* '' */
.WMi-user-clock:before { content: '\f4fd'; } /* '' */
.WMi-user-cog:before { content: '\f4fe'; } /* '' */
.WMi-user-friends:before { content: '\f500'; } /* '' */
.WMi-user-graduate:before { content: '\f501'; } /* '' */
.WMi-user-lock:before { content: '\f502'; } /* '' */
.WMi-user-minus:before { content: '\f503'; } /* '' */
.WMi-temperature-celsius:before { content: '\f504'; } /* '' */
.WMi-user-shield:before { content: '\f505'; } /* '' */
.WMi-user-slash:before { content: '\f506'; } /* '' */
.WMi-user-tag:before { content: '\f507'; } /* '' */
.WMi-user-tie:before { content: '\f508'; } /* '' */
.WMi-users-cog:before { content: '\f509'; } /* '' */
.WMi-broadcast-tower:before { content: '\f519'; } /* '' */
.WMi-chart-bar:before { content: '\f526'; } /* '' */
.WMi-equals:before { content: '\f52c'; } /* '' */
.WMi-greater-than-equal:before { content: '\f532'; } /* '' */
.WMi-helicopter:before { content: '\f533'; } /* '' */
.WMi-less-than-equal:before { content: '\f537'; } /* '' */
.WMi-money-check-alt:before { content: '\f53d'; } /* '' */
.WMi-not-equal:before { content: '\f53e'; } /* '' */
.WMi-percentage:before { content: '\f541'; } /* '' */
.WMi-ruler-combined:before { content: '\f546'; } /* '' */
.WMi-ruler-horizontal:before { content: '\f547'; } /* '' */
.WMi-drafting-compass:before { content: '\f568'; } /* '' */
.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-fingerprint:before { content: '\f577'; } /* '' */
.WMi-fish:before { content: '\f578'; } /* '' */
.WMi-glass-martini-alt:before { content: '\f57b'; } /* '' */
.WMi-map-marked:before { content: '\f59f'; } /* '' */
.WMi-weight-kilogram:before { content: '\f5a2'; } /* '' */
.WMi-plane-arrival:before { content: '\f5af'; } /* '' */
.WMi-plane-departure:before { content: '\f5b0'; } /* '' */
.WMi-shuttle-van:before { content: '\f5b6'; } /* '' */
.WMi-wrench-2:before { content: '\f5b7'; } /* '' */
.WMi-tooth:before { content: '\f5c9'; } /* '' */
.WMi-apple-alt:before { content: '\f5d1'; } /* '' */
.WMi-account-multiple-minus:before { content: '\f5d3'; } /* '' */
.WMi-scale:before { content: '\f5d4'; } /* '' */
.WMi-cylinder-1:before { content: '\f5d6'; } /* '' */
.WMi-cylinder-2:before { content: '\f5d8'; } /* '' */
.WMi-shield:before { content: '\f5d9'; } /* '' */
.WMi-cart:before { content: '\f5da'; } /* '' */
.WMi-supermarket:before { content: '\f5db'; } /* '' */
.WMi-communications:before { content: '\f5dc'; } /* '' */
.WMi-heart-1:before { content: '\f5dd'; } /* '' */
.WMi-bike:before { content: '\f5de'; } /* '' */
.WMi-delivery:before { content: '\f5df'; } /* '' */
.WMi-map-3:before { content: '\f5e0'; } /* '' */
.WMi-car-crash:before { content: '\f5e1'; } /* '' */
.WMi-align-justify:before { content: '\f5e2'; } /* '' */
.WMi-equal-alt:before { content: '\f5e3'; } /* '' */
.WMi-car-side:before { content: '\f5e4'; } /* '' */
.WMi-pos-terminal:before { content: '\f5e5'; } /* '' */
.WMi-tag-1:before { content: '\f5e7'; } /* '' */
.WMi-electronic:before { content: '\f5e9'; } /* '' */
.WMi-ladder:before { content: '\f5ea'; } /* '' */
.WMi-list-1:before { content: '\f5ec'; } /* '' */
.WMi-telegram-2:before { content: '\f5ed'; } /* '' */
.WMi-willa-engine:before { content: '\f5ee'; } /* '' */
.WMi-en-letters:before { content: '\f5f0'; } /* '' */
.WMi-fa-letters:before { content: '\f5f1'; } /* '' */
.WMi-ar-letters:before { content: '\f5f2'; } /* '' */
.WMi-min:before { content: '\f5f3'; } /* '' */
.WMi-max:before { content: '\f5f5'; } /* '' */
.WMi-text:before { content: '\f5f6'; } /* '' */
.WMi-advertisement: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-oil-can:before { content: '\f613'; } /* '' */
.WMi-account-settings-variant:before { content: '\f631'; } /* '' */
.WMi-truck-monster:before { content: '\f63b'; } /* '' */
.WMi-envelope-open-text:before { content: '\f658'; } /* '' */
.WMi-shape-rectangle-plus:before { content: '\f65f'; } /* '' */
.WMi-Beauty:before { content: '\f665'; } /* '' */
.WMi-kaaba:before { content: '\f66b'; } /* '' */
.WMi-landmark:before { content: '\f66f'; } /* '' */
.WMi-mosque:before { content: '\f678'; } /* '' */
.WMi-star-and-crescent:before { content: '\f699'; } /* '' */
.WMi-star-of-david:before { content: '\f69a'; } /* '' */
.WMi-lamp:before { content: '\f6b4'; } /* '' */
.WMi-account-edit:before { content: '\f6bb'; } /* '' */
.WMi-infinity-1:before { content: '\f6e3'; } /* '' */
.WMi-skull-crossbones:before { content: '\f714'; } /* '' */
.WMi-spider:before { content: '\f717'; } /* '' */
.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-horse-head:before { content: '\f7ab'; } /* '' */
.WMi-mug-hot:before { content: '\f7b6'; } /* '' */
.WMi-radiation:before { content: '\f7b9'; } /* '' */
.WMi-restroom:before { content: '\f7bd'; } /* '' */
.WMi-sd-card:before { content: '\f7c2'; } /* '' */
.WMi-sim-card:before { content: '\f7c4'; } /* '' */
.WMi-fire-alt:before { content: '\f7e4'; } /* '' */
.WMi-cheese:before { content: '\f7ef'; } /* '' */
.WMi-hamburger:before { content: '\f805'; } /* '' */
.WMi-ice-cream:before { content: '\f810'; } /* '' */
.WMi-pepper-hot:before { content: '\f816'; } /* '' */
.WMi-pizza-slice:before { content: '\f818'; } /* '' */
.WMi-user-nurse:before { content: '\f82f'; } /* '' */
.WMi-biking:before { content: '\f84a'; } /* '' */
.WMi-icons:before { content: '\f86d'; } /* '' */
.WMi-sort-alpha-up-alt:before { content: '\f882'; } /* '' */
.WMi-sort-amount-down-alt:before { content: '\f884'; } /* '' */
.WMi-sort-amount-up-alt:before { content: '\f885'; } /* '' */
.WMi-mouse:before { content: '\f8cc'; } /* '' */

File diff suppressed because one or more lines are too long

@ -1,542 +0,0 @@
.WMi-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.WMi-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.WMi-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
.WMi-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.WMi-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
.WMi-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
.WMi-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.WMi-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.WMi-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); }
.WMi-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
.WMi-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.WMi-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.WMi-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.WMi-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.WMi-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.WMi-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.WMi-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.WMi-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
.WMi-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
.WMi-trash-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); }
.WMi-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); }
.WMi-off-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); }
.WMi-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe816;&nbsp;'); }
.WMi-down-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); }
.WMi-left-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe818;&nbsp;'); }
.WMi-right-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe819;&nbsp;'); }
.WMi-up-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); }
.WMi-user-md { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); }
.WMi-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81c;&nbsp;'); }
.WMi-location-arrow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81d;&nbsp;'); }
.WMi-indent-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); }
.WMi-indent-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); }
.WMi-align-justify-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); }
.WMi-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); }
.WMi-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); }
.WMi-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); }
.WMi-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); }
.WMi-arrows-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); }
.WMi-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); }
.WMi-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); }
.WMi-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); }
.WMi-zoom-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); }
.WMi-zoom-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); }
.WMi-attach-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); }
.WMi-check-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }
.WMi-cancel-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); }
.WMi-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); }
.WMi-layers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); }
.WMi-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); }
.WMi-equalizer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); }
.WMi-macstore { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe832;&nbsp;'); }
.WMi-emo-happy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe833;&nbsp;'); }
.WMi-emo-wink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe834;&nbsp;'); }
.WMi-emo-wink2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe835;&nbsp;'); }
.WMi-emo-unhappy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); }
.WMi-emo-sleep { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); }
.WMi-emo-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); }
.WMi-emo-sunglasses { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); }
.WMi-emo-angry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); }
.WMi-emo-squint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); }
.WMi-emo-laugh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); }
.WMi-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); }
.WMi-emo-displeased { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); }
.WMi-emo-surprised { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); }
.WMi-th { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); }
.WMi-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); }
.WMi-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); }
.WMi-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
.WMi-Beauty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
.WMi-rss-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
.WMi-shop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.WMi-shop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
.WMi-basket-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
.WMi-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
.WMi-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84a;&nbsp;'); }
.WMi-Real-Estate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84b;&nbsp;'); }
.WMi-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); }
.WMi-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); }
.WMi-tags { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); }
.WMi-map-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); }
.WMi-doc-landscape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); }
.WMi-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); }
.WMi-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); }
.WMi-logout-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe853;&nbsp;'); }
.WMi-back-in-time { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); }
.WMi-chat-alt-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); }
.WMi-art-gallery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); }
.WMi-gift-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); }
.WMi-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); }
.WMi-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); }
.WMi-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); }
.WMi-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); }
.WMi-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); }
.WMi-phone-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); }
.WMi-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); }
.WMi-Repairing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); }
.WMi-shuffle-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); }
.WMi-loop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); }
.WMi-glyph { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); }
.WMi-glyph-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); }
.WMi-glyph-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); }
.WMi-warning-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe865;&nbsp;'); }
.WMi-shop-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
.WMi-Clothes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
.WMi-Agriculture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
.WMi-Medical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.WMi-Sports-and-Entertainment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
.WMi-wrench-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
.WMi-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
.WMi-map-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); }
.WMi-map-o-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); }
.WMi-marquee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86f;&nbsp;'); }
.WMi-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); }
.WMi-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe871;&nbsp;'); }
.WMi-calendar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); }
.WMi-Art-And-Culture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); }
.WMi-graduation-cap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); }
.WMi-Advertising-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe875;&nbsp;'); }
.WMi-filter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe876;&nbsp;'); }
.WMi-Tourism-And-Transportation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe877;&nbsp;'); }
.WMi-Makeup-And-Hygienic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe878;&nbsp;'); }
.WMi-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe879;&nbsp;'); }
.WMi-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87a;&nbsp;'); }
.WMi-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87b;&nbsp;'); }
.WMi-Official { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87c;&nbsp;'); }
.WMi-crown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
.WMi-gift-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
.WMi-Decoration-And-Building-Industry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
.WMi-Flowers-And-Plants { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.WMi-Advertising { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.WMi-shop-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
.WMi-glyph-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
.WMi-glyph-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
.WMi-glyph-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); }
.WMi-glyph-6 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); }
.WMi-glyph-7 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); }
.WMi-glyph-8 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); }
.WMi-glyph-9 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); }
.WMi-glyph-10 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); }
.WMi-pos { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); }
.WMi-glyph-12 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); }
.WMi-glyph-13 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); }
.WMi-glyph-14 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); }
.WMi-glyph-15 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); }
.WMi-glyph-16 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); }
.WMi-glyph-17 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
.WMi-glyph-18 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
.WMi-glyph-19 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
.WMi-glyph-20 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); }
.WMi-glyph-21 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.WMi-glyph-22 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.WMi-glyph-23 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
.WMi-glyph-24 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.WMi-business-affiliate-network { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
.WMi-camera-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
.WMi-Photography { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
.WMi-SocialMedia { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); }
.WMi-WebAndApp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89d;&nbsp;'); }
.WMi-Graphic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
.WMi-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
.WMi-RegisterBusiness { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
.WMi-code-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
.WMi-aparat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); }
.WMi-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a3;&nbsp;'); }
.WMi-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); }
.WMi-eye-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); }
.WMi-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); }
.WMi-cloud-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); }
.WMi-animation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
.WMi-instagram-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); }
.WMi-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8aa;&nbsp;'); }
.WMi-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); }
.WMi-info-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ac;&nbsp;'); }
.WMi-play-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ad;&nbsp;'); }
.WMi-pause-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ae;&nbsp;'); }
.WMi-to-end-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8af;&nbsp;'); }
.WMi-to-end-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); }
.WMi-to-start-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); }
.WMi-to-start-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); }
.WMi-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
.WMi-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b4;&nbsp;'); }
.WMi-stop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b5;&nbsp;'); }
.WMi-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b6;&nbsp;'); }
.WMi-comments-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b7;&nbsp;'); }
.WMi-comment-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b8;&nbsp;'); }
.WMi-comments { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b9;&nbsp;'); }
.WMi-trash-alt-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ba;&nbsp;'); }
.WMi-hourglass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bb;&nbsp;'); }
.WMi-person { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); }
.WMi-temperatire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); }
.WMi-temperature-fahrenheit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
.WMi-undo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); }
.WMi-transgender-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c0;&nbsp;'); }
.WMi-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); }
.WMi-brightness-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c2;&nbsp;'); }
.WMi-brightness-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c3;&nbsp;'); }
.WMi-gender-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c4;&nbsp;'); }
.WMi-carrot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c5;&nbsp;'); }
.WMi-map-signs-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c6;&nbsp;'); }
.WMi-wifi-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c7;&nbsp;'); }
.WMi-chart-bar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c8;&nbsp;'); }
.WMi-emo-displeased-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c9;&nbsp;'); }
.WMi-emo-surprised-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ca;&nbsp;'); }
.WMi-basket-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cb;&nbsp;'); }
.WMi-donut { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); }
.WMi-signal-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cd;&nbsp;'); }
.WMi-infinity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ce;&nbsp;'); }
.WMi-th-large-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); }
.WMi-th-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d0;&nbsp;'); }
.WMi-eq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); }
.WMi-quote-right-alt { *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-pinterest-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
.WMi-youtube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); }
.WMi-wordpress { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); }
.WMi-th-large-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d7;&nbsp;'); }
.WMi-braille { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); }
.WMi-number { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d9;&nbsp;'); }
.WMi-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8da;&nbsp;'); }
.WMi-internet-explorer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8db;&nbsp;'); }
.WMi-barcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dc;&nbsp;'); }
.WMi-hdd-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dd;&nbsp;'); }
.WMi-signature { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8de;&nbsp;'); }
.WMi-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8df;&nbsp;'); }
.WMi-account-multiple-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e0;&nbsp;'); }
.WMi-account-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e1;&nbsp;'); }
.WMi-emo-saint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e2;&nbsp;'); }
.WMi-emo-grin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e3;&nbsp;'); }
.WMi-emo-tongue { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e4;&nbsp;'); }
.WMi-theme { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e5;&nbsp;'); }
.WMi-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00b;&nbsp;'); }
.WMi-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00e;&nbsp;'); }
.WMi-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00f;&nbsp;'); }
.WMi-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf010;&nbsp;'); }
.WMi-to-start { *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-clock-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf017;&nbsp;'); }
.WMi-account-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf019;&nbsp;'); }
.WMi-alarm-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf024;&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-Digital { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf034;&nbsp;'); }
.WMi-apple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf035;&nbsp;'); }
.WMi-align-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf036;&nbsp;'); }
.WMi-align-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf037;&nbsp;'); }
.WMi-align-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf038;&nbsp;'); }
.WMi-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03a;&nbsp;'); }
.WMi-archive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03c;&nbsp;'); }
.WMi-linkedin-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05c;&nbsp;'); }
.WMi-backspace { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06e;&nbsp;'); }
.WMi-backup-restore { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06f;&nbsp;'); }
.WMi-calendar-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf073;&nbsp;'); }
.WMi-comment-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf075;&nbsp;'); }
.WMi-shopping-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07a;&nbsp;'); }
.WMi-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07b;&nbsp;'); }
.WMi-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf080;&nbsp;'); }
.WMi-cogs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf085;&nbsp;'); }
.WMi-info-circled-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf086;&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-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ad;&nbsp;'); }
.WMi-resize-full-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b2;&nbsp;'); }
.WMi-users-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c0;&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-list-ul { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ca;&nbsp;'); }
.WMi-list-ol { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cb;&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-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0db;&nbsp;'); }
.WMi-sort { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dc;&nbsp;'); }
.WMi-chronometer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dd;&nbsp;'); }
.WMi-Clothes-And-Personal-Belongings { *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 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e3;&nbsp;'); }
.WMi-freight-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e4;&nbsp;'); }
.WMi-wa-fit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e7;&nbsp;'); }
.WMi-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e8;&nbsp;'); }
.WMi-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ec;&nbsp;'); }
.WMi-Medical-Services { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f0;&nbsp;'); }
.WMi-Drug-And-Medical-Equipment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f1;&nbsp;'); }
.WMi-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f3;&nbsp;'); }
.WMi-HomeAppliances { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f4;&nbsp;'); }
.WMi-Edible-And-Groceries { *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-quote-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10d;&nbsp;'); }
.WMi-quote-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10e;&nbsp;'); }
.WMi-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf111;&nbsp;'); }
.WMi-cash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf114;&nbsp;'); }
.WMi-Information-Technology { *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 { *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-calendar-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf133;&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-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15c;&nbsp;'); }
.WMi-sort-alpha-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15d;&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-sort-numeric-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf162;&nbsp;'); }
.WMi-sort-numeric-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf163;&nbsp;'); }
.WMi-youtube-play { *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-comment-processing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf184;&nbsp;'); }
.WMi-content-cut { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf190;&nbsp;'); }
.WMi-wheelchair { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf193;&nbsp;'); }
.WMi-plus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf196;&nbsp;'); }
.WMi-bank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19c;&nbsp;'); }
.WMi-Educational { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19d;&nbsp;'); }
.WMi-crop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19e;&nbsp;'); }
.WMi-google { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1a0;&nbsp;'); }
.WMi-crown-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1a5;&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-taxi { *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 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1d9;&nbsp;'); }
.WMi-sliders { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1de;&nbsp;'); }
.WMi-Sport { *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-Engineering { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fa;&nbsp;'); }
.WMi-eyedropper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fb;&nbsp;'); }
.WMi-brush { *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-factory { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf20f;&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-transgender { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf224;&nbsp;'); }
.WMi-pinterest { *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-bed { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf236;&nbsp;'); }
.WMi-flip-to-back { *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 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf277;&nbsp;'); }
.WMi-map-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf278;&nbsp;'); }
.WMi-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf279;&nbsp;'); }
.WMi-comment-alt { *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-gas-station { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf298;&nbsp;'); }
.WMi-question-circle-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf29c;&nbsp;'); }
.WMi-gender-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf29d;&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-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c6;&nbsp;'); }
.WMi-hanger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c8;&nbsp;'); }
.WMi-snowflake-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2dc;&nbsp;'); }
.WMi-trash-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2ed;&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-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf318;&nbsp;'); }
.WMi-linkedin-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf31a;&nbsp;'); }
.WMi-javascript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf31e;&nbsp;'); }
.WMi-php { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf31f;&nbsp;'); }
.WMi-python { *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-library-books { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf332;&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-download-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf381;&nbsp;'); }
.WMi-cloud-upload-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf382;&nbsp;'); }
.WMi-navigation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf390;&nbsp;'); }
.WMi-lock-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf3c1;&nbsp;'); }
.WMi-percent { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf3f0;&nbsp;'); }
.WMi-Flowers-and-Plants { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf405;&nbsp;'); }
.WMi-table-tennis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf45d;&nbsp;'); }
.WMi-Scientific { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf463;&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-warehouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf494;&nbsp;'); }
.WMi-shopping { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf49a;&nbsp;'); }
.WMi-Home-And-Office { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4b9;&nbsp;'); }
.WMi-sort-alphabetical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4bb;&nbsp;'); }
.WMi-sort-numeric { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4be;&nbsp;'); }
.WMi-user-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4fc;&nbsp;'); }
.WMi-user-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4fd;&nbsp;'); }
.WMi-user-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4fe;&nbsp;'); }
.WMi-user-friends { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf500;&nbsp;'); }
.WMi-user-graduate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf501;&nbsp;'); }
.WMi-user-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf502;&nbsp;'); }
.WMi-user-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf503;&nbsp;'); }
.WMi-temperature-celsius { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf504;&nbsp;'); }
.WMi-user-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf505;&nbsp;'); }
.WMi-user-slash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf506;&nbsp;'); }
.WMi-user-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf507;&nbsp;'); }
.WMi-user-tie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf508;&nbsp;'); }
.WMi-users-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf509;&nbsp;'); }
.WMi-broadcast-tower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf519;&nbsp;'); }
.WMi-chart-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf526;&nbsp;'); }
.WMi-equals { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf52c;&nbsp;'); }
.WMi-greater-than-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf532;&nbsp;'); }
.WMi-helicopter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf533;&nbsp;'); }
.WMi-less-than-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf537;&nbsp;'); }
.WMi-money-check-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf53d;&nbsp;'); }
.WMi-not-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf53e;&nbsp;'); }
.WMi-percentage { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf541;&nbsp;'); }
.WMi-ruler-combined { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf546;&nbsp;'); }
.WMi-ruler-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf547;&nbsp;'); }
.WMi-drafting-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf568;&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-fingerprint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf577;&nbsp;'); }
.WMi-fish { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf578;&nbsp;'); }
.WMi-glass-martini-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf57b;&nbsp;'); }
.WMi-map-marked { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf59f;&nbsp;'); }
.WMi-weight-kilogram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5a2;&nbsp;'); }
.WMi-plane-arrival { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5af;&nbsp;'); }
.WMi-plane-departure { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b0;&nbsp;'); }
.WMi-shuttle-van { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b6;&nbsp;'); }
.WMi-wrench-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b7;&nbsp;'); }
.WMi-tooth { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5c9;&nbsp;'); }
.WMi-apple-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5d1;&nbsp;'); }
.WMi-account-multiple-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5d3;&nbsp;'); }
.WMi-scale { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5d4;&nbsp;'); }
.WMi-cylinder-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5d6;&nbsp;'); }
.WMi-cylinder-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5d8;&nbsp;'); }
.WMi-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5d9;&nbsp;'); }
.WMi-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5da;&nbsp;'); }
.WMi-supermarket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5db;&nbsp;'); }
.WMi-communications { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5dc;&nbsp;'); }
.WMi-heart-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5dd;&nbsp;'); }
.WMi-bike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5de;&nbsp;'); }
.WMi-delivery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5df;&nbsp;'); }
.WMi-map-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e0;&nbsp;'); }
.WMi-car-crash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e1;&nbsp;'); }
.WMi-align-justify { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e2;&nbsp;'); }
.WMi-equal-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e3;&nbsp;'); }
.WMi-car-side { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e4;&nbsp;'); }
.WMi-pos-terminal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e5;&nbsp;'); }
.WMi-tag-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e7;&nbsp;'); }
.WMi-electronic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e9;&nbsp;'); }
.WMi-ladder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ea;&nbsp;'); }
.WMi-list-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ec;&nbsp;'); }
.WMi-telegram-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ed;&nbsp;'); }
.WMi-willa-engine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ee;&nbsp;'); }
.WMi-en-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f0;&nbsp;'); }
.WMi-fa-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f1;&nbsp;'); }
.WMi-ar-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f2;&nbsp;'); }
.WMi-min { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f3;&nbsp;'); }
.WMi-max { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f5;&nbsp;'); }
.WMi-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f6;&nbsp;'); }
.WMi-advertisement { *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-oil-can { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf613;&nbsp;'); }
.WMi-account-settings-variant { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf631;&nbsp;'); }
.WMi-truck-monster { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf63b;&nbsp;'); }
.WMi-envelope-open-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf658;&nbsp;'); }
.WMi-shape-rectangle-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf65f;&nbsp;'); }
.WMi-Beauty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf665;&nbsp;'); }
.WMi-kaaba { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf66b;&nbsp;'); }
.WMi-landmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf66f;&nbsp;'); }
.WMi-mosque { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf678;&nbsp;'); }
.WMi-star-and-crescent { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf699;&nbsp;'); }
.WMi-star-of-david { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf69a;&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-infinity-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf6e3;&nbsp;'); }
.WMi-skull-crossbones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf714;&nbsp;'); }
.WMi-spider { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf717;&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-horse-head { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7ab;&nbsp;'); }
.WMi-mug-hot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7b6;&nbsp;'); }
.WMi-radiation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7b9;&nbsp;'); }
.WMi-restroom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7bd;&nbsp;'); }
.WMi-sd-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7c2;&nbsp;'); }
.WMi-sim-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7c4;&nbsp;'); }
.WMi-fire-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7e4;&nbsp;'); }
.WMi-cheese { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7ef;&nbsp;'); }
.WMi-hamburger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf805;&nbsp;'); }
.WMi-ice-cream { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf810;&nbsp;'); }
.WMi-pepper-hot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf816;&nbsp;'); }
.WMi-pizza-slice { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf818;&nbsp;'); }
.WMi-user-nurse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf82f;&nbsp;'); }
.WMi-biking { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf84a;&nbsp;'); }
.WMi-icons { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf86d;&nbsp;'); }
.WMi-sort-alpha-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf882;&nbsp;'); }
.WMi-sort-amount-down-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf884;&nbsp;'); }
.WMi-sort-amount-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf885;&nbsp;'); }
.WMi-mouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf8cc;&nbsp;'); }

@ -1,553 +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-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.WMi-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.WMi-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
.WMi-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.WMi-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
.WMi-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
.WMi-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.WMi-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.WMi-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); }
.WMi-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
.WMi-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.WMi-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.WMi-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.WMi-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.WMi-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.WMi-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.WMi-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.WMi-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
.WMi-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
.WMi-trash-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); }
.WMi-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); }
.WMi-off-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); }
.WMi-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe816;&nbsp;'); }
.WMi-down-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); }
.WMi-left-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe818;&nbsp;'); }
.WMi-right-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe819;&nbsp;'); }
.WMi-up-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); }
.WMi-user-md { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); }
.WMi-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81c;&nbsp;'); }
.WMi-location-arrow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81d;&nbsp;'); }
.WMi-indent-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); }
.WMi-indent-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); }
.WMi-align-justify-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); }
.WMi-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); }
.WMi-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); }
.WMi-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); }
.WMi-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); }
.WMi-arrows-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); }
.WMi-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); }
.WMi-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); }
.WMi-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); }
.WMi-zoom-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); }
.WMi-zoom-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); }
.WMi-attach-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); }
.WMi-check-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }
.WMi-cancel-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); }
.WMi-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); }
.WMi-layers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); }
.WMi-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); }
.WMi-equalizer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); }
.WMi-macstore { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe832;&nbsp;'); }
.WMi-emo-happy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe833;&nbsp;'); }
.WMi-emo-wink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe834;&nbsp;'); }
.WMi-emo-wink2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe835;&nbsp;'); }
.WMi-emo-unhappy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); }
.WMi-emo-sleep { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); }
.WMi-emo-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); }
.WMi-emo-sunglasses { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); }
.WMi-emo-angry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); }
.WMi-emo-squint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); }
.WMi-emo-laugh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); }
.WMi-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); }
.WMi-emo-displeased { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); }
.WMi-emo-surprised { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); }
.WMi-th { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); }
.WMi-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); }
.WMi-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); }
.WMi-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
.WMi-Beauty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
.WMi-rss-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
.WMi-shop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.WMi-shop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
.WMi-basket-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
.WMi-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
.WMi-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84a;&nbsp;'); }
.WMi-Real-Estate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84b;&nbsp;'); }
.WMi-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); }
.WMi-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); }
.WMi-tags { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); }
.WMi-map-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); }
.WMi-doc-landscape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); }
.WMi-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); }
.WMi-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); }
.WMi-logout-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe853;&nbsp;'); }
.WMi-back-in-time { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); }
.WMi-chat-alt-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); }
.WMi-art-gallery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); }
.WMi-gift-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); }
.WMi-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); }
.WMi-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); }
.WMi-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); }
.WMi-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); }
.WMi-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); }
.WMi-phone-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); }
.WMi-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); }
.WMi-Repairing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); }
.WMi-shuffle-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); }
.WMi-loop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); }
.WMi-glyph { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); }
.WMi-glyph-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); }
.WMi-glyph-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); }
.WMi-warning-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe865;&nbsp;'); }
.WMi-shop-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
.WMi-Clothes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
.WMi-Agriculture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
.WMi-Medical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.WMi-Sports-and-Entertainment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
.WMi-wrench-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
.WMi-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
.WMi-map-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); }
.WMi-map-o-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); }
.WMi-marquee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86f;&nbsp;'); }
.WMi-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); }
.WMi-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe871;&nbsp;'); }
.WMi-calendar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); }
.WMi-Art-And-Culture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); }
.WMi-graduation-cap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); }
.WMi-Advertising-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe875;&nbsp;'); }
.WMi-filter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe876;&nbsp;'); }
.WMi-Tourism-And-Transportation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe877;&nbsp;'); }
.WMi-Makeup-And-Hygienic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe878;&nbsp;'); }
.WMi-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe879;&nbsp;'); }
.WMi-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87a;&nbsp;'); }
.WMi-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87b;&nbsp;'); }
.WMi-Official { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87c;&nbsp;'); }
.WMi-crown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
.WMi-gift-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
.WMi-Decoration-And-Building-Industry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
.WMi-Flowers-And-Plants { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.WMi-Advertising { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.WMi-shop-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
.WMi-glyph-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
.WMi-glyph-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
.WMi-glyph-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); }
.WMi-glyph-6 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); }
.WMi-glyph-7 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); }
.WMi-glyph-8 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); }
.WMi-glyph-9 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); }
.WMi-glyph-10 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); }
.WMi-pos { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); }
.WMi-glyph-12 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); }
.WMi-glyph-13 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); }
.WMi-glyph-14 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); }
.WMi-glyph-15 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); }
.WMi-glyph-16 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); }
.WMi-glyph-17 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
.WMi-glyph-18 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
.WMi-glyph-19 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
.WMi-glyph-20 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); }
.WMi-glyph-21 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.WMi-glyph-22 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.WMi-glyph-23 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
.WMi-glyph-24 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.WMi-business-affiliate-network { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
.WMi-camera-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
.WMi-Photography { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
.WMi-SocialMedia { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); }
.WMi-WebAndApp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89d;&nbsp;'); }
.WMi-Graphic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
.WMi-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
.WMi-RegisterBusiness { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
.WMi-code-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
.WMi-aparat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); }
.WMi-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a3;&nbsp;'); }
.WMi-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); }
.WMi-eye-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); }
.WMi-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); }
.WMi-cloud-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); }
.WMi-animation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
.WMi-instagram-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); }
.WMi-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8aa;&nbsp;'); }
.WMi-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); }
.WMi-info-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ac;&nbsp;'); }
.WMi-play-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ad;&nbsp;'); }
.WMi-pause-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ae;&nbsp;'); }
.WMi-to-end-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8af;&nbsp;'); }
.WMi-to-end-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); }
.WMi-to-start-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); }
.WMi-to-start-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); }
.WMi-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
.WMi-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b4;&nbsp;'); }
.WMi-stop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b5;&nbsp;'); }
.WMi-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b6;&nbsp;'); }
.WMi-comments-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b7;&nbsp;'); }
.WMi-comment-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b8;&nbsp;'); }
.WMi-comments { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b9;&nbsp;'); }
.WMi-trash-alt-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ba;&nbsp;'); }
.WMi-hourglass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bb;&nbsp;'); }
.WMi-person { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); }
.WMi-temperatire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); }
.WMi-temperature-fahrenheit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
.WMi-undo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); }
.WMi-transgender-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c0;&nbsp;'); }
.WMi-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); }
.WMi-brightness-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c2;&nbsp;'); }
.WMi-brightness-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c3;&nbsp;'); }
.WMi-gender-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c4;&nbsp;'); }
.WMi-carrot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c5;&nbsp;'); }
.WMi-map-signs-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c6;&nbsp;'); }
.WMi-wifi-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c7;&nbsp;'); }
.WMi-chart-bar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c8;&nbsp;'); }
.WMi-emo-displeased-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c9;&nbsp;'); }
.WMi-emo-surprised-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ca;&nbsp;'); }
.WMi-basket-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cb;&nbsp;'); }
.WMi-donut { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); }
.WMi-signal-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cd;&nbsp;'); }
.WMi-infinity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ce;&nbsp;'); }
.WMi-th-large-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); }
.WMi-th-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d0;&nbsp;'); }
.WMi-eq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); }
.WMi-quote-right-alt { *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-pinterest-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
.WMi-youtube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); }
.WMi-wordpress { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); }
.WMi-th-large-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d7;&nbsp;'); }
.WMi-braille { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); }
.WMi-number { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d9;&nbsp;'); }
.WMi-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8da;&nbsp;'); }
.WMi-internet-explorer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8db;&nbsp;'); }
.WMi-barcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dc;&nbsp;'); }
.WMi-hdd-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dd;&nbsp;'); }
.WMi-signature { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8de;&nbsp;'); }
.WMi-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8df;&nbsp;'); }
.WMi-account-multiple-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e0;&nbsp;'); }
.WMi-account-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e1;&nbsp;'); }
.WMi-emo-saint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e2;&nbsp;'); }
.WMi-emo-grin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e3;&nbsp;'); }
.WMi-emo-tongue { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e4;&nbsp;'); }
.WMi-theme { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e5;&nbsp;'); }
.WMi-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00b;&nbsp;'); }
.WMi-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00e;&nbsp;'); }
.WMi-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00f;&nbsp;'); }
.WMi-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf010;&nbsp;'); }
.WMi-to-start { *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-clock-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf017;&nbsp;'); }
.WMi-account-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf019;&nbsp;'); }
.WMi-alarm-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf024;&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-Digital { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf034;&nbsp;'); }
.WMi-apple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf035;&nbsp;'); }
.WMi-align-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf036;&nbsp;'); }
.WMi-align-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf037;&nbsp;'); }
.WMi-align-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf038;&nbsp;'); }
.WMi-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03a;&nbsp;'); }
.WMi-archive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03c;&nbsp;'); }
.WMi-linkedin-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05c;&nbsp;'); }
.WMi-backspace { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06e;&nbsp;'); }
.WMi-backup-restore { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06f;&nbsp;'); }
.WMi-calendar-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf073;&nbsp;'); }
.WMi-comment-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf075;&nbsp;'); }
.WMi-shopping-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07a;&nbsp;'); }
.WMi-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07b;&nbsp;'); }
.WMi-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf080;&nbsp;'); }
.WMi-cogs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf085;&nbsp;'); }
.WMi-info-circled-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf086;&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-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ad;&nbsp;'); }
.WMi-resize-full-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b2;&nbsp;'); }
.WMi-users-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c0;&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-list-ul { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ca;&nbsp;'); }
.WMi-list-ol { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cb;&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-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0db;&nbsp;'); }
.WMi-sort { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dc;&nbsp;'); }
.WMi-chronometer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dd;&nbsp;'); }
.WMi-Clothes-And-Personal-Belongings { *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 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e3;&nbsp;'); }
.WMi-freight-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e4;&nbsp;'); }
.WMi-wa-fit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e7;&nbsp;'); }
.WMi-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e8;&nbsp;'); }
.WMi-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ec;&nbsp;'); }
.WMi-Medical-Services { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f0;&nbsp;'); }
.WMi-Drug-And-Medical-Equipment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f1;&nbsp;'); }
.WMi-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f3;&nbsp;'); }
.WMi-HomeAppliances { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f4;&nbsp;'); }
.WMi-Edible-And-Groceries { *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-quote-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10d;&nbsp;'); }
.WMi-quote-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10e;&nbsp;'); }
.WMi-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf111;&nbsp;'); }
.WMi-cash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf114;&nbsp;'); }
.WMi-Information-Technology { *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 { *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-calendar-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf133;&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-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15c;&nbsp;'); }
.WMi-sort-alpha-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15d;&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-sort-numeric-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf162;&nbsp;'); }
.WMi-sort-numeric-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf163;&nbsp;'); }
.WMi-youtube-play { *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-comment-processing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf184;&nbsp;'); }
.WMi-content-cut { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf190;&nbsp;'); }
.WMi-wheelchair { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf193;&nbsp;'); }
.WMi-plus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf196;&nbsp;'); }
.WMi-bank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19c;&nbsp;'); }
.WMi-Educational { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19d;&nbsp;'); }
.WMi-crop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19e;&nbsp;'); }
.WMi-google { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1a0;&nbsp;'); }
.WMi-crown-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1a5;&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-taxi { *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 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1d9;&nbsp;'); }
.WMi-sliders { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1de;&nbsp;'); }
.WMi-Sport { *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-Engineering { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fa;&nbsp;'); }
.WMi-eyedropper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fb;&nbsp;'); }
.WMi-brush { *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-factory { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf20f;&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-transgender { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf224;&nbsp;'); }
.WMi-pinterest { *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-bed { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf236;&nbsp;'); }
.WMi-flip-to-back { *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 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf277;&nbsp;'); }
.WMi-map-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf278;&nbsp;'); }
.WMi-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf279;&nbsp;'); }
.WMi-comment-alt { *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-gas-station { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf298;&nbsp;'); }
.WMi-question-circle-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf29c;&nbsp;'); }
.WMi-gender-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf29d;&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-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c6;&nbsp;'); }
.WMi-hanger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c8;&nbsp;'); }
.WMi-snowflake-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2dc;&nbsp;'); }
.WMi-trash-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2ed;&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-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf318;&nbsp;'); }
.WMi-linkedin-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf31a;&nbsp;'); }
.WMi-javascript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf31e;&nbsp;'); }
.WMi-php { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf31f;&nbsp;'); }
.WMi-python { *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-library-books { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf332;&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-download-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf381;&nbsp;'); }
.WMi-cloud-upload-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf382;&nbsp;'); }
.WMi-navigation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf390;&nbsp;'); }
.WMi-lock-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf3c1;&nbsp;'); }
.WMi-percent { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf3f0;&nbsp;'); }
.WMi-Flowers-and-Plants { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf405;&nbsp;'); }
.WMi-table-tennis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf45d;&nbsp;'); }
.WMi-Scientific { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf463;&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-warehouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf494;&nbsp;'); }
.WMi-shopping { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf49a;&nbsp;'); }
.WMi-Home-And-Office { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4b9;&nbsp;'); }
.WMi-sort-alphabetical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4bb;&nbsp;'); }
.WMi-sort-numeric { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4be;&nbsp;'); }
.WMi-user-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4fc;&nbsp;'); }
.WMi-user-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4fd;&nbsp;'); }
.WMi-user-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4fe;&nbsp;'); }
.WMi-user-friends { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf500;&nbsp;'); }
.WMi-user-graduate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf501;&nbsp;'); }
.WMi-user-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf502;&nbsp;'); }
.WMi-user-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf503;&nbsp;'); }
.WMi-temperature-celsius { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf504;&nbsp;'); }
.WMi-user-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf505;&nbsp;'); }
.WMi-user-slash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf506;&nbsp;'); }
.WMi-user-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf507;&nbsp;'); }
.WMi-user-tie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf508;&nbsp;'); }
.WMi-users-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf509;&nbsp;'); }
.WMi-broadcast-tower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf519;&nbsp;'); }
.WMi-chart-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf526;&nbsp;'); }
.WMi-equals { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf52c;&nbsp;'); }
.WMi-greater-than-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf532;&nbsp;'); }
.WMi-helicopter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf533;&nbsp;'); }
.WMi-less-than-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf537;&nbsp;'); }
.WMi-money-check-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf53d;&nbsp;'); }
.WMi-not-equal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf53e;&nbsp;'); }
.WMi-percentage { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf541;&nbsp;'); }
.WMi-ruler-combined { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf546;&nbsp;'); }
.WMi-ruler-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf547;&nbsp;'); }
.WMi-drafting-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf568;&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-fingerprint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf577;&nbsp;'); }
.WMi-fish { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf578;&nbsp;'); }
.WMi-glass-martini-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf57b;&nbsp;'); }
.WMi-map-marked { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf59f;&nbsp;'); }
.WMi-weight-kilogram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5a2;&nbsp;'); }
.WMi-plane-arrival { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5af;&nbsp;'); }
.WMi-plane-departure { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b0;&nbsp;'); }
.WMi-shuttle-van { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b6;&nbsp;'); }
.WMi-wrench-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b7;&nbsp;'); }
.WMi-tooth { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5c9;&nbsp;'); }
.WMi-apple-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5d1;&nbsp;'); }
.WMi-account-multiple-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5d3;&nbsp;'); }
.WMi-scale { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5d4;&nbsp;'); }
.WMi-cylinder-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5d6;&nbsp;'); }
.WMi-cylinder-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5d8;&nbsp;'); }
.WMi-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5d9;&nbsp;'); }
.WMi-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5da;&nbsp;'); }
.WMi-supermarket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5db;&nbsp;'); }
.WMi-communications { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5dc;&nbsp;'); }
.WMi-heart-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5dd;&nbsp;'); }
.WMi-bike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5de;&nbsp;'); }
.WMi-delivery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5df;&nbsp;'); }
.WMi-map-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e0;&nbsp;'); }
.WMi-car-crash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e1;&nbsp;'); }
.WMi-align-justify { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e2;&nbsp;'); }
.WMi-equal-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e3;&nbsp;'); }
.WMi-car-side { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e4;&nbsp;'); }
.WMi-pos-terminal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e5;&nbsp;'); }
.WMi-tag-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e7;&nbsp;'); }
.WMi-electronic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5e9;&nbsp;'); }
.WMi-ladder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ea;&nbsp;'); }
.WMi-list-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ec;&nbsp;'); }
.WMi-telegram-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ed;&nbsp;'); }
.WMi-willa-engine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ee;&nbsp;'); }
.WMi-en-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f0;&nbsp;'); }
.WMi-fa-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f1;&nbsp;'); }
.WMi-ar-letters { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f2;&nbsp;'); }
.WMi-min { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f3;&nbsp;'); }
.WMi-max { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f5;&nbsp;'); }
.WMi-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f6;&nbsp;'); }
.WMi-advertisement { *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-oil-can { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf613;&nbsp;'); }
.WMi-account-settings-variant { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf631;&nbsp;'); }
.WMi-truck-monster { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf63b;&nbsp;'); }
.WMi-envelope-open-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf658;&nbsp;'); }
.WMi-shape-rectangle-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf65f;&nbsp;'); }
.WMi-Beauty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf665;&nbsp;'); }
.WMi-kaaba { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf66b;&nbsp;'); }
.WMi-landmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf66f;&nbsp;'); }
.WMi-mosque { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf678;&nbsp;'); }
.WMi-star-and-crescent { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf699;&nbsp;'); }
.WMi-star-of-david { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf69a;&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-infinity-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf6e3;&nbsp;'); }
.WMi-skull-crossbones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf714;&nbsp;'); }
.WMi-spider { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf717;&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-horse-head { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7ab;&nbsp;'); }
.WMi-mug-hot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7b6;&nbsp;'); }
.WMi-radiation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7b9;&nbsp;'); }
.WMi-restroom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7bd;&nbsp;'); }
.WMi-sd-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7c2;&nbsp;'); }
.WMi-sim-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7c4;&nbsp;'); }
.WMi-fire-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7e4;&nbsp;'); }
.WMi-cheese { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7ef;&nbsp;'); }
.WMi-hamburger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf805;&nbsp;'); }
.WMi-ice-cream { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf810;&nbsp;'); }
.WMi-pepper-hot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf816;&nbsp;'); }
.WMi-pizza-slice { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf818;&nbsp;'); }
.WMi-user-nurse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf82f;&nbsp;'); }
.WMi-biking { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf84a;&nbsp;'); }
.WMi-icons { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf86d;&nbsp;'); }
.WMi-sort-alpha-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf882;&nbsp;'); }
.WMi-sort-amount-down-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf884;&nbsp;'); }
.WMi-sort-amount-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf885;&nbsp;'); }
.WMi-mouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf8cc;&nbsp;'); }

@ -1,598 +0,0 @@
@font-face {
font-family: 'fontello';
src: url('../font/fontello.eot?94401016');
src: url('../font/fontello.eot?94401016#iefix') format('embedded-opentype'),
url('../font/fontello.woff2?94401016') format('woff2'),
url('../font/fontello.woff?94401016') format('woff'),
url('../font/fontello.ttf?94401016') format('truetype'),
url('../font/fontello.svg?94401016#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?94401016#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-ok:before { content: '\e800'; } /* '' */
.WMi-picture:before { content: '\e801'; } /* '' */
.WMi-search:before { content: '\e802'; } /* '' */
.WMi-music:before { content: '\e803'; } /* '' */
.WMi-star-half:before { content: '\e804'; } /* '' */
.WMi-star-empty:before { content: '\e805'; } /* '' */
.WMi-star:before { content: '\e806'; } /* '' */
.WMi-heart-empty:before { content: '\e807'; } /* '' */
.WMi-heart:before { content: '\e808'; } /* '' */
.WMi-mail:before { content: '\e809'; } /* '' */
.WMi-cancel:before { content: '\e80a'; } /* '' */
.WMi-lock:before { content: '\e80b'; } /* '' */
.WMi-lock-open:before { content: '\e80c'; } /* '' */
.WMi-attach:before { content: '\e80d'; } /* '' */
.WMi-link:before { content: '\e80e'; } /* '' */
.WMi-bookmark:before { content: '\e80f'; } /* '' */
.WMi-upload:before { content: '\e810'; } /* '' */
.WMi-download:before { content: '\e811'; } /* '' */
.WMi-tag:before { content: '\e812'; } /* '' */
.WMi-trash-empty:before { content: '\e813'; } /* '' */
.WMi-cog:before { content: '\e814'; } /* '' */
.WMi-off-1:before { content: '\e815'; } /* '' */
.WMi-resize-vertical:before { content: '\e816'; } /* '' */
.WMi-down-open:before { content: '\e817'; } /* '' */
.WMi-left-open:before { content: '\e818'; } /* '' */
.WMi-right-open:before { content: '\e819'; } /* '' */
.WMi-up-open:before { content: '\e81a'; } /* '' */
.WMi-user-md:before { content: '\e81b'; } /* '' */
.WMi-chat:before { content: '\e81c'; } /* '' */
.WMi-location-arrow:before { content: '\e81d'; } /* '' */
.WMi-indent-left:before { content: '\e81e'; } /* '' */
.WMi-indent-right:before { content: '\e81f'; } /* '' */
.WMi-align-justify-1:before { content: '\e820'; } /* '' */
.WMi-check:before { content: '\e821'; } /* '' */
.WMi-credit-card:before { content: '\e822'; } /* '' */
.WMi-briefcase:before { content: '\e823'; } /* '' */
.WMi-off:before { content: '\e824'; } /* '' */
.WMi-arrows-cw:before { content: '\e825'; } /* '' */
.WMi-shuffle:before { content: '\e826'; } /* '' */
.WMi-globe:before { content: '\e827'; } /* '' */
.WMi-cloud:before { content: '\e828'; } /* '' */
.WMi-zoom-in:before { content: '\e829'; } /* '' */
.WMi-zoom-out:before { content: '\e82a'; } /* '' */
.WMi-attach-1:before { content: '\e82b'; } /* '' */
.WMi-check-1:before { content: '\e82c'; } /* '' */
.WMi-cancel-1:before { content: '\e82d'; } /* '' */
.WMi-comment:before { content: '\e82e'; } /* '' */
.WMi-layers:before { content: '\e82f'; } /* '' */
.WMi-signal:before { content: '\e830'; } /* '' */
.WMi-equalizer:before { content: '\e831'; } /* '' */
.WMi-macstore:before { content: '\e832'; } /* '' */
.WMi-emo-happy:before { content: '\e833'; } /* '' */
.WMi-emo-wink:before { content: '\e834'; } /* '' */
.WMi-emo-wink2:before { content: '\e835'; } /* '' */
.WMi-emo-unhappy:before { content: '\e836'; } /* '' */
.WMi-emo-sleep:before { content: '\e837'; } /* '' */
.WMi-emo-coffee:before { content: '\e838'; } /* '' */
.WMi-emo-sunglasses:before { content: '\e839'; } /* '' */
.WMi-emo-angry:before { content: '\e83a'; } /* '' */
.WMi-emo-squint:before { content: '\e83b'; } /* '' */
.WMi-emo-laugh:before { content: '\e83c'; } /* '' */
.WMi-camera:before { content: '\e83d'; } /* '' */
.WMi-emo-displeased:before { content: '\e83e'; } /* '' */
.WMi-emo-surprised:before { content: '\e83f'; } /* '' */
.WMi-th:before { content: '\e840'; } /* '' */
.WMi-asterisk:before { content: '\e841'; } /* '' */
.WMi-gift:before { content: '\e842'; } /* '' */
.WMi-basket:before { content: '\e843'; } /* '' */
.WMi-Beauty-1:before { content: '\e844'; } /* '' */
.WMi-rss-1:before { content: '\e845'; } /* '' */
.WMi-shop:before { content: '\e846'; } /* '' */
.WMi-shop-1:before { content: '\e847'; } /* '' */
.WMi-basket-1:before { content: '\e848'; } /* '' */
.WMi-plus:before { content: '\e849'; } /* '' */
.WMi-minus:before { content: '\e84a'; } /* '' */
.WMi-Real-Estate:before { content: '\e84b'; } /* '' */
.WMi-retweet:before { content: '\e84c'; } /* '' */
.WMi-edit:before { content: '\e84d'; } /* '' */
.WMi-tags:before { content: '\e84e'; } /* '' */
.WMi-map-1:before { content: '\e84f'; } /* '' */
.WMi-doc-landscape:before { content: '\e850'; } /* '' */
.WMi-logout:before { content: '\e851'; } /* '' */
.WMi-login:before { content: '\e852'; } /* '' */
.WMi-logout-1:before { content: '\e853'; } /* '' */
.WMi-back-in-time:before { content: '\e854'; } /* '' */
.WMi-chat-alt-1:before { content: '\e855'; } /* '' */
.WMi-art-gallery:before { content: '\e856'; } /* '' */
.WMi-gift-1:before { content: '\e857'; } /* '' */
.WMi-switch:before { content: '\e858'; } /* '' */
.WMi-level-down:before { content: '\e859'; } /* '' */
.WMi-help:before { content: '\e85a'; } /* '' */
.WMi-location:before { content: '\e85b'; } /* '' */
.WMi-phone:before { content: '\e85c'; } /* '' */
.WMi-phone-1:before { content: '\e85d'; } /* '' */
.WMi-share:before { content: '\e85e'; } /* '' */
.WMi-Repairing:before { content: '\e85f'; } /* '' */
.WMi-shuffle-1:before { content: '\e860'; } /* '' */
.WMi-loop:before { content: '\e861'; } /* '' */
.WMi-glyph:before { content: '\e862'; } /* '' */
.WMi-glyph-1:before { content: '\e863'; } /* '' */
.WMi-glyph-2:before { content: '\e864'; } /* '' */
.WMi-warning-empty:before { content: '\e865'; } /* '' */
.WMi-shop-bag:before { content: '\e866'; } /* '' */
.WMi-Clothes:before { content: '\e867'; } /* '' */
.WMi-Agriculture:before { content: '\e868'; } /* '' */
.WMi-Medical:before { content: '\e869'; } /* '' */
.WMi-Sports-and-Entertainment:before { content: '\e86a'; } /* '' */
.WMi-wrench-1:before { content: '\e86b'; } /* '' */
.WMi-pencil:before { content: '\e86c'; } /* '' */
.WMi-map-2:before { content: '\e86d'; } /* '' */
.WMi-map-o-1:before { content: '\e86e'; } /* '' */
.WMi-marquee:before { content: '\e86f'; } /* '' */
.WMi-doc-text-inv:before { content: '\e870'; } /* '' */
.WMi-calendar:before { content: '\e871'; } /* '' */
.WMi-calendar-1:before { content: '\e872'; } /* '' */
.WMi-Art-And-Culture:before { content: '\e873'; } /* '' */
.WMi-graduation-cap:before { content: '\e874'; } /* '' */
.WMi-Advertising-1:before { content: '\e875'; } /* '' */
.WMi-filter:before { content: '\e876'; } /* '' */
.WMi-Tourism-And-Transportation:before { content: '\e877'; } /* '' */
.WMi-Makeup-And-Hygienic:before { content: '\e878'; } /* '' */
.WMi-clock:before { content: '\e879'; } /* '' */
.WMi-user:before { content: '\e87a'; } /* '' */
.WMi-users:before { content: '\e87b'; } /* '' */
.WMi-Official:before { content: '\e87c'; } /* '' */
.WMi-crown:before { content: '\e87d'; } /* '' */
.WMi-gift-2:before { content: '\e87e'; } /* '' */
.WMi-Decoration-And-Building-Industry:before { content: '\e87f'; } /* '' */
.WMi-Flowers-And-Plants:before { content: '\e880'; } /* '' */
.WMi-Advertising:before { content: '\e881'; } /* '' */
.WMi-shop-2:before { content: '\e882'; } /* '' */
.WMi-glyph-3:before { content: '\e883'; } /* '' */
.WMi-glyph-4:before { content: '\e884'; } /* '' */
.WMi-glyph-5:before { content: '\e885'; } /* '' */
.WMi-glyph-6:before { content: '\e886'; } /* '' */
.WMi-glyph-7:before { content: '\e887'; } /* '' */
.WMi-glyph-8:before { content: '\e888'; } /* '' */
.WMi-glyph-9:before { content: '\e889'; } /* '' */
.WMi-glyph-10:before { content: '\e88a'; } /* '' */
.WMi-pos:before { content: '\e88b'; } /* '' */
.WMi-glyph-12:before { content: '\e88c'; } /* '' */
.WMi-glyph-13:before { content: '\e88d'; } /* '' */
.WMi-glyph-14:before { content: '\e88e'; } /* '' */
.WMi-glyph-15:before { content: '\e88f'; } /* '' */
.WMi-glyph-16:before { content: '\e890'; } /* '' */
.WMi-glyph-17:before { content: '\e891'; } /* '' */
.WMi-glyph-18:before { content: '\e892'; } /* '' */
.WMi-glyph-19:before { content: '\e893'; } /* '' */
.WMi-glyph-20:before { content: '\e894'; } /* '' */
.WMi-glyph-21:before { content: '\e895'; } /* '' */
.WMi-glyph-22:before { content: '\e896'; } /* '' */
.WMi-glyph-23:before { content: '\e897'; } /* '' */
.WMi-glyph-24:before { content: '\e898'; } /* '' */
.WMi-business-affiliate-network:before { content: '\e899'; } /* '' */
.WMi-camera-1:before { content: '\e89a'; } /* '' */
.WMi-Photography:before { content: '\e89b'; } /* '' */
.WMi-SocialMedia:before { content: '\e89c'; } /* '' */
.WMi-WebAndApp:before { content: '\e89d'; } /* '' */
.WMi-Graphic:before { content: '\e89e'; } /* '' */
.WMi-bell:before { content: '\e89f'; } /* '' */
.WMi-RegisterBusiness:before { content: '\e8a0'; } /* '' */
.WMi-code-1:before { content: '\e8a1'; } /* '' */
.WMi-aparat:before { content: '\e8a2'; } /* '' */
.WMi-truck:before { content: '\e8a3'; } /* '' */
.WMi-eye:before { content: '\e8a4'; } /* '' */
.WMi-eye-off:before { content: '\e8a5'; } /* '' */
.WMi-flight:before { content: '\e8a6'; } /* '' */
.WMi-cloud-1:before { content: '\e8a7'; } /* '' */
.WMi-animation:before { content: '\e8a8'; } /* '' */
.WMi-instagram-2:before { content: '\e8a9'; } /* '' */
.WMi-videocam:before { content: '\e8aa'; } /* '' */
.WMi-video:before { content: '\e8ab'; } /* '' */
.WMi-info-1:before { content: '\e8ac'; } /* '' */
.WMi-play-1:before { content: '\e8ad'; } /* '' */
.WMi-pause-1:before { content: '\e8ae'; } /* '' */
.WMi-to-end-1:before { content: '\e8af'; } /* '' */
.WMi-to-end-alt:before { content: '\e8b0'; } /* '' */
.WMi-to-start-1:before { content: '\e8b1'; } /* '' */
.WMi-to-start-alt:before { content: '\e8b2'; } /* '' */
.WMi-fast-fw:before { content: '\e8b3'; } /* '' */
.WMi-fast-bw:before { content: '\e8b4'; } /* '' */
.WMi-stop-1:before { content: '\e8b5'; } /* '' */
.WMi-eject:before { content: '\e8b6'; } /* '' */
.WMi-comments-alt:before { content: '\e8b7'; } /* '' */
.WMi-comment-1:before { content: '\e8b8'; } /* '' */
.WMi-comments:before { content: '\e8b9'; } /* '' */
.WMi-trash-alt-1:before { content: '\e8ba'; } /* '' */
.WMi-hourglass:before { content: '\e8bb'; } /* '' */
.WMi-person:before { content: '\e8bc'; } /* '' */
.WMi-temperatire:before { content: '\e8bd'; } /* '' */
.WMi-temperature-fahrenheit:before { content: '\e8be'; } /* '' */
.WMi-undo:before { content: '\e8bf'; } /* '' */
.WMi-transgender-1:before { content: '\e8c0'; } /* '' */
.WMi-back:before { content: '\e8c1'; } /* '' */
.WMi-brightness-2:before { content: '\e8c2'; } /* '' */
.WMi-brightness-3:before { content: '\e8c3'; } /* '' */
.WMi-gender-female:before { content: '\e8c4'; } /* '' */
.WMi-carrot:before { content: '\e8c5'; } /* '' */
.WMi-map-signs-1:before { content: '\e8c6'; } /* '' */
.WMi-wifi-1:before { content: '\e8c7'; } /* '' */
.WMi-chart-bar-1:before { content: '\e8c8'; } /* '' */
.WMi-emo-displeased-1:before { content: '\e8c9'; } /* '' */
.WMi-emo-surprised-1:before { content: '\e8ca'; } /* '' */
.WMi-basket-2:before { content: '\e8cb'; } /* '' */
.WMi-donut:before { content: '\e8cc'; } /* '' */
.WMi-signal-1:before { content: '\e8cd'; } /* '' */
.WMi-infinity:before { content: '\e8ce'; } /* '' */
.WMi-th-large-1:before { content: '\e8cf'; } /* '' */
.WMi-th-1:before { content: '\e8d0'; } /* '' */
.WMi-eq:before { content: '\e8d1'; } /* '' */
.WMi-quote-right-alt:before { content: '\e8d2'; } /* '' */
.WMi-quote-left-alt:before { content: '\e8d3'; } /* '' */
.WMi-pinterest-1:before { content: '\e8d4'; } /* '' */
.WMi-youtube:before { content: '\e8d5'; } /* '' */
.WMi-wordpress:before { content: '\e8d6'; } /* '' */
.WMi-th-large-2:before { content: '\e8d7'; } /* '' */
.WMi-braille:before { content: '\e8d8'; } /* '' */
.WMi-number:before { content: '\e8d9'; } /* '' */
.WMi-doc-text:before { content: '\e8da'; } /* '' */
.WMi-internet-explorer:before { content: '\e8db'; } /* '' */
.WMi-barcode:before { content: '\e8dc'; } /* '' */
.WMi-hdd-1:before { content: '\e8dd'; } /* '' */
.WMi-signature:before { content: '\e8de'; } /* '' */
.WMi-headphones:before { content: '\e8df'; } /* '' */
.WMi-account-multiple-plus:before { content: '\e8e0'; } /* '' */
.WMi-account-key:before { content: '\e8e1'; } /* '' */
.WMi-emo-saint:before { content: '\e8e2'; } /* '' */
.WMi-emo-grin:before { content: '\e8e3'; } /* '' */
.WMi-emo-tongue:before { content: '\e8e4'; } /* '' */
.WMi-theme:before { content: '\e8e5'; } /* '' */
.WMi-th-list:before { content: '\f00b'; } /* '' */
.WMi-pause:before { content: '\f00e'; } /* '' */
.WMi-play:before { content: '\f00f'; } /* '' */
.WMi-to-end:before { content: '\f010'; } /* '' */
.WMi-to-start:before { content: '\f011'; } /* '' */
.WMi-account-off:before { content: '\f012'; } /* '' */
.WMi-account-plus:before { content: '\f014'; } /* '' */
.WMi-account-remove:before { content: '\f015'; } /* '' */
.WMi-clock-1:before { content: '\f017'; } /* '' */
.WMi-account-switch:before { content: '\f019'; } /* '' */
.WMi-alarm-plus:before { content: '\f024'; } /* '' */
.WMi-hash:before { content: '\f029'; } /* '' */
.WMi-alert-outline:before { content: '\f02a'; } /* '' */
.WMi-book:before { content: '\f02d'; } /* '' */
.WMi-Food:before { content: '\f02f'; } /* '' */
.WMi-Digital:before { content: '\f034'; } /* '' */
.WMi-apple:before { content: '\f035'; } /* '' */
.WMi-align-left:before { content: '\f036'; } /* '' */
.WMi-align-center:before { content: '\f037'; } /* '' */
.WMi-align-right:before { content: '\f038'; } /* '' */
.WMi-list:before { content: '\f03a'; } /* '' */
.WMi-archive:before { content: '\f03c'; } /* '' */
.WMi-linkedin-1:before { content: '\f05c'; } /* '' */
.WMi-backspace:before { content: '\f06e'; } /* '' */
.WMi-backup-restore:before { content: '\f06f'; } /* '' */
.WMi-calendar-alt:before { content: '\f073'; } /* '' */
.WMi-comment-2:before { content: '\f075'; } /* '' */
.WMi-shopping-cart:before { content: '\f07a'; } /* '' */
.WMi-folder:before { content: '\f07b'; } /* '' */
.WMi-stop:before { content: '\f080'; } /* '' */
.WMi-cogs:before { content: '\f085'; } /* '' */
.WMi-info-circled-alt:before { content: '\f086'; } /* '' */
.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-wrench:before { content: '\f0ad'; } /* '' */
.WMi-resize-full-alt:before { content: '\f0b2'; } /* '' */
.WMi-users-1:before { content: '\f0c0'; } /* '' */
.WMi-beaker:before { content: '\f0c3'; } /* '' */
.WMi-menu:before { content: '\f0c9'; } /* '' */
.WMi-list-ul:before { content: '\f0ca'; } /* '' */
.WMi-list-ol:before { content: '\f0cb'; } /* '' */
.WMi-magic:before { content: '\f0d0'; } /* '' */
.WMi-gplus:before { content: '\f0d5'; } /* '' */
.WMi-WM-Logo:before { content: '\f0da'; } /* '' */
.WMi-open:before { content: '\f0db'; } /* '' */
.WMi-sort:before { content: '\f0dc'; } /* '' */
.WMi-chronometer:before { content: '\f0dd'; } /* '' */
.WMi-Clothes-And-Personal-Belongings:before { content: '\f0de'; } /* '' */
.WMi-mail-alt:before { content: '\f0e0'; } /* '' */
.WMi-Cleaning:before { content: '\f0e2'; } /* '' */
.WMi-sea-ship-with-containers:before { content: '\f0e3'; } /* '' */
.WMi-freight-truck:before { content: '\f0e4'; } /* '' */
.WMi-wa-fit:before { content: '\f0e7'; } /* '' */
.WMi-sitemap:before { content: '\f0e8'; } /* '' */
.WMi-exchange:before { content: '\f0ec'; } /* '' */
.WMi-Medical-Services:before { content: '\f0f0'; } /* '' */
.WMi-Drug-And-Medical-Equipment:before { content: '\f0f1'; } /* '' */
.WMi-bell-alt:before { content: '\f0f3'; } /* '' */
.WMi-HomeAppliances:before { content: '\f0f4'; } /* '' */
.WMi-Edible-And-Groceries: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-quote-left:before { content: '\f10d'; } /* '' */
.WMi-quote-right:before { content: '\f10e'; } /* '' */
.WMi-circle:before { content: '\f111'; } /* '' */
.WMi-cash:before { content: '\f114'; } /* '' */
.WMi-Information-Technology:before { content: '\f120'; } /* '' */
.WMi-code:before { content: '\f121'; } /* '' */
.WMi-star-half-alt:before { content: '\f123'; } /* '' */
.WMi-direction:before { content: '\f124'; } /* '' */
.WMi-crop:before { content: '\f125'; } /* '' */
.WMi-unlink:before { content: '\f127'; } /* '' */
.WMi-info:before { content: '\f129'; } /* '' */
.WMi-attention-alt:before { content: '\f12a'; } /* '' */
.WMi-calendar-2:before { content: '\f133'; } /* '' */
.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-1:before { content: '\f15c'; } /* '' */
.WMi-sort-alpha-down:before { content: '\f15d'; } /* '' */
.WMi-sort-alt-up:before { content: '\f160'; } /* '' */
.WMi-sort-alt-down:before { content: '\f161'; } /* '' */
.WMi-sort-numeric-down:before { content: '\f162'; } /* '' */
.WMi-sort-numeric-up:before { content: '\f163'; } /* '' */
.WMi-youtube-play:before { content: '\f16a'; } /* '' */
.WMi-dropbox:before { content: '\f16b'; } /* '' */
.WMi-instagram:before { content: '\f16d'; } /* '' */
.WMi-windows:before { content: '\f17a'; } /* '' */
.WMi-comment-processing:before { content: '\f184'; } /* '' */
.WMi-content-cut:before { content: '\f190'; } /* '' */
.WMi-wheelchair:before { content: '\f193'; } /* '' */
.WMi-plus-squared-alt:before { content: '\f196'; } /* '' */
.WMi-bank:before { content: '\f19c'; } /* '' */
.WMi-Educational:before { content: '\f19d'; } /* '' */
.WMi-crop-1:before { content: '\f19e'; } /* '' */
.WMi-google:before { content: '\f1a0'; } /* '' */
.WMi-crown-1:before { content: '\f1a5'; } /* '' */
.WMi-paw:before { content: '\f1b0'; } /* '' */
.WMi-cube:before { content: '\f1b2'; } /* '' */
.WMi-cubes:before { content: '\f1b3'; } /* '' */
.WMi-Vehicle:before { content: '\f1b9'; } /* '' */
.WMi-taxi:before { content: '\f1ba'; } /* '' */
.WMi-database:before { content: '\f1c0'; } /* '' */
.WMi-codeopen:before { content: '\f1cb'; } /* '' */
.WMi-paper-plane:before { content: '\f1d8'; } /* '' */
.WMi-telegram:before { content: '\f1d9'; } /* '' */
.WMi-sliders:before { content: '\f1de'; } /* '' */
.WMi-Sport:before { content: '\f1e3'; } /* '' */
.WMi-plug:before { content: '\f1e6'; } /* '' */
.WMi-wifi:before { content: '\f1eb'; } /* '' */
.WMi-trash:before { content: '\f1f8'; } /* '' */
.WMi-Engineering:before { content: '\f1fa'; } /* '' */
.WMi-eyedropper:before { content: '\f1fb'; } /* '' */
.WMi-brush: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-factory:before { content: '\f20f'; } /* '' */
.WMi-diamond:before { content: '\f219'; } /* '' */
.WMi-motorcycle:before { content: '\f21c'; } /* '' */
.WMi-heartbeat:before { content: '\f21e'; } /* '' */
.WMi-transgender:before { content: '\f224'; } /* '' */
.WMi-pinterest:before { content: '\f231'; } /* '' */
.WMi-user-plus:before { content: '\f234'; } /* '' */
.WMi-user-times:before { content: '\f235'; } /* '' */
.WMi-bed:before { content: '\f236'; } /* '' */
.WMi-flip-to-back: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:before { content: '\f277'; } /* '' */
.WMi-map-o:before { content: '\f278'; } /* '' */
.WMi-map:before { content: '\f279'; } /* '' */
.WMi-comment-alt:before { content: '\f27a'; } /* '' */
.WMi-edge:before { content: '\f282'; } /* '' */
.WMi-credit-card-alt:before { content: '\f283'; } /* '' */
.WMi-shopping-bag:before { content: '\f290'; } /* '' */
.WMi-gas-station:before { content: '\f298'; } /* '' */
.WMi-question-circle-o:before { content: '\f29c'; } /* '' */
.WMi-gender-male:before { content: '\f29d'; } /* '' */
.WMi-envelope-open:before { content: '\f2b6'; } /* '' */
.WMi-envelope-open-o:before { content: '\f2b7'; } /* '' */
.WMi-telegram-1:before { content: '\f2c6'; } /* '' */
.WMi-hanger:before { content: '\f2c8'; } /* '' */
.WMi-snowflake-o:before { content: '\f2dc'; } /* '' */
.WMi-trash-alt:before { content: '\f2ed'; } /* '' */
.WMi-image-filter-none:before { content: '\f2f6'; } /* '' */
.WMi-facebook:before { content: '\f300'; } /* '' */
.WMi-twitter:before { content: '\f302'; } /* '' */
.WMi-linkedin-squared:before { content: '\f30c'; } /* '' */
.WMi-linkedin:before { content: '\f318'; } /* '' */
.WMi-linkedin-2:before { content: '\f31a'; } /* '' */
.WMi-javascript:before { content: '\f31e'; } /* '' */
.WMi-php:before { content: '\f31f'; } /* '' */
.WMi-python:before { content: '\f321'; } /* '' */
.WMi-win8:before { content: '\f325'; } /* '' */
.WMi-instagram-1:before { content: '\f32d'; } /* '' */
.WMi-library-books:before { content: '\f332'; } /* '' */
.WMi-message-reply-text:before { content: '\f368'; } /* '' */
.WMi-message-text-outline:before { content: '\f36a'; } /* '' */
.WMi-cloud-download-alt:before { content: '\f381'; } /* '' */
.WMi-cloud-upload-alt:before { content: '\f382'; } /* '' */
.WMi-navigation:before { content: '\f390'; } /* '' */
.WMi-lock-open-1:before { content: '\f3c1'; } /* '' */
.WMi-percent:before { content: '\f3f0'; } /* '' */
.WMi-Flowers-and-Plants:before { content: '\f405'; } /* '' */
.WMi-table-tennis:before { content: '\f45d'; } /* '' */
.WMi-Scientific:before { content: '\f463'; } /* '' */
.WMi-school:before { content: '\f474'; } /* '' */
.WMi-selection:before { content: '\f489'; } /* '' */
.WMi-warehouse:before { content: '\f494'; } /* '' */
.WMi-shopping:before { content: '\f49a'; } /* '' */
.WMi-Home-And-Office:before { content: '\f4b9'; } /* '' */
.WMi-sort-alphabetical:before { content: '\f4bb'; } /* '' */
.WMi-sort-numeric:before { content: '\f4be'; } /* '' */
.WMi-user-check:before { content: '\f4fc'; } /* '' */
.WMi-user-clock:before { content: '\f4fd'; } /* '' */
.WMi-user-cog:before { content: '\f4fe'; } /* '' */
.WMi-user-friends:before { content: '\f500'; } /* '' */
.WMi-user-graduate:before { content: '\f501'; } /* '' */
.WMi-user-lock:before { content: '\f502'; } /* '' */
.WMi-user-minus:before { content: '\f503'; } /* '' */
.WMi-temperature-celsius:before { content: '\f504'; } /* '' */
.WMi-user-shield:before { content: '\f505'; } /* '' */
.WMi-user-slash:before { content: '\f506'; } /* '' */
.WMi-user-tag:before { content: '\f507'; } /* '' */
.WMi-user-tie:before { content: '\f508'; } /* '' */
.WMi-users-cog:before { content: '\f509'; } /* '' */
.WMi-broadcast-tower:before { content: '\f519'; } /* '' */
.WMi-chart-bar:before { content: '\f526'; } /* '' */
.WMi-equals:before { content: '\f52c'; } /* '' */
.WMi-greater-than-equal:before { content: '\f532'; } /* '' */
.WMi-helicopter:before { content: '\f533'; } /* '' */
.WMi-less-than-equal:before { content: '\f537'; } /* '' */
.WMi-money-check-alt:before { content: '\f53d'; } /* '' */
.WMi-not-equal:before { content: '\f53e'; } /* '' */
.WMi-percentage:before { content: '\f541'; } /* '' */
.WMi-ruler-combined:before { content: '\f546'; } /* '' */
.WMi-ruler-horizontal:before { content: '\f547'; } /* '' */
.WMi-drafting-compass:before { content: '\f568'; } /* '' */
.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-fingerprint:before { content: '\f577'; } /* '' */
.WMi-fish:before { content: '\f578'; } /* '' */
.WMi-glass-martini-alt:before { content: '\f57b'; } /* '' */
.WMi-map-marked:before { content: '\f59f'; } /* '' */
.WMi-weight-kilogram:before { content: '\f5a2'; } /* '' */
.WMi-plane-arrival:before { content: '\f5af'; } /* '' */
.WMi-plane-departure:before { content: '\f5b0'; } /* '' */
.WMi-shuttle-van:before { content: '\f5b6'; } /* '' */
.WMi-wrench-2:before { content: '\f5b7'; } /* '' */
.WMi-tooth:before { content: '\f5c9'; } /* '' */
.WMi-apple-alt:before { content: '\f5d1'; } /* '' */
.WMi-account-multiple-minus:before { content: '\f5d3'; } /* '' */
.WMi-scale:before { content: '\f5d4'; } /* '' */
.WMi-cylinder-1:before { content: '\f5d6'; } /* '' */
.WMi-cylinder-2:before { content: '\f5d8'; } /* '' */
.WMi-shield:before { content: '\f5d9'; } /* '' */
.WMi-cart:before { content: '\f5da'; } /* '' */
.WMi-supermarket:before { content: '\f5db'; } /* '' */
.WMi-communications:before { content: '\f5dc'; } /* '' */
.WMi-heart-1:before { content: '\f5dd'; } /* '' */
.WMi-bike:before { content: '\f5de'; } /* '' */
.WMi-delivery:before { content: '\f5df'; } /* '' */
.WMi-map-3:before { content: '\f5e0'; } /* '' */
.WMi-car-crash:before { content: '\f5e1'; } /* '' */
.WMi-align-justify:before { content: '\f5e2'; } /* '' */
.WMi-equal-alt:before { content: '\f5e3'; } /* '' */
.WMi-car-side:before { content: '\f5e4'; } /* '' */
.WMi-pos-terminal:before { content: '\f5e5'; } /* '' */
.WMi-tag-1:before { content: '\f5e7'; } /* '' */
.WMi-electronic:before { content: '\f5e9'; } /* '' */
.WMi-ladder:before { content: '\f5ea'; } /* '' */
.WMi-list-1:before { content: '\f5ec'; } /* '' */
.WMi-telegram-2:before { content: '\f5ed'; } /* '' */
.WMi-willa-engine:before { content: '\f5ee'; } /* '' */
.WMi-en-letters:before { content: '\f5f0'; } /* '' */
.WMi-fa-letters:before { content: '\f5f1'; } /* '' */
.WMi-ar-letters:before { content: '\f5f2'; } /* '' */
.WMi-min:before { content: '\f5f3'; } /* '' */
.WMi-max:before { content: '\f5f5'; } /* '' */
.WMi-text:before { content: '\f5f6'; } /* '' */
.WMi-advertisement: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-oil-can:before { content: '\f613'; } /* '' */
.WMi-account-settings-variant:before { content: '\f631'; } /* '' */
.WMi-truck-monster:before { content: '\f63b'; } /* '' */
.WMi-envelope-open-text:before { content: '\f658'; } /* '' */
.WMi-shape-rectangle-plus:before { content: '\f65f'; } /* '' */
.WMi-Beauty:before { content: '\f665'; } /* '' */
.WMi-kaaba:before { content: '\f66b'; } /* '' */
.WMi-landmark:before { content: '\f66f'; } /* '' */
.WMi-mosque:before { content: '\f678'; } /* '' */
.WMi-star-and-crescent:before { content: '\f699'; } /* '' */
.WMi-star-of-david:before { content: '\f69a'; } /* '' */
.WMi-lamp:before { content: '\f6b4'; } /* '' */
.WMi-account-edit:before { content: '\f6bb'; } /* '' */
.WMi-infinity-1:before { content: '\f6e3'; } /* '' */
.WMi-skull-crossbones:before { content: '\f714'; } /* '' */
.WMi-spider:before { content: '\f717'; } /* '' */
.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-horse-head:before { content: '\f7ab'; } /* '' */
.WMi-mug-hot:before { content: '\f7b6'; } /* '' */
.WMi-radiation:before { content: '\f7b9'; } /* '' */
.WMi-restroom:before { content: '\f7bd'; } /* '' */
.WMi-sd-card:before { content: '\f7c2'; } /* '' */
.WMi-sim-card:before { content: '\f7c4'; } /* '' */
.WMi-fire-alt:before { content: '\f7e4'; } /* '' */
.WMi-cheese:before { content: '\f7ef'; } /* '' */
.WMi-hamburger:before { content: '\f805'; } /* '' */
.WMi-ice-cream:before { content: '\f810'; } /* '' */
.WMi-pepper-hot:before { content: '\f816'; } /* '' */
.WMi-pizza-slice:before { content: '\f818'; } /* '' */
.WMi-user-nurse:before { content: '\f82f'; } /* '' */
.WMi-biking:before { content: '\f84a'; } /* '' */
.WMi-icons:before { content: '\f86d'; } /* '' */
.WMi-sort-alpha-up-alt:before { content: '\f882'; } /* '' */
.WMi-sort-amount-down-alt:before { content: '\f884'; } /* '' */
.WMi-sort-amount-up-alt:before { content: '\f885'; } /* '' */
.WMi-mouse:before { content: '\f8cc'; } /* '' */

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 243 KiB

@ -1,125 +0,0 @@
/* --------------------------------------------------------
Inputs :: Begin
-------------------------------------------------------- */
/* --------------------------------------------------------
Buttons :: Begin
-------------------------------------------------------- */
.WM-Btn {
outline: none !important;
border: none;
background: transparent;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
justify-content: center;
align-items: center;
padding: 0 20px;
min-width: 160px;
height: 50px;
border-radius: 25px;
font-size: 16px;
color: #fff;
line-height: 1.2;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
-moz-transition: all 0.4s;
transition: all 0.4s;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: none;
}
/* --------------------------------------------------------
Links :: Begin
-------------------------------------------------------- */
.WM-Link {
display: inline-block;
color: #000;
direction: rtl;
text-decoration: none;
transition: width .3s cubic-bezier(1, 0, 0, 1);
}
.WM-Link::after {
content: '';
display: block;
width: 0;
height: 2px;
background: #000;
transition: width .3s cubic-bezier(1, 0, 0, 1);
// transition: width .3s;
margin-top: 2px;
}
.WM-Link:hover::after,
.WM-Link.WM-Selected::after,
.WM-Link.WM-Active::after {
width: 100%;
}
// -----------------------Modify--------------------------
.v-btn--floating {
height: 50px;
width: 50px;
}
.v-btn--floating .v-icon {
font-size: 18px;
}
.v-btn.WithText {
width: auto;
padding: 10px 30px;
}
.v-btn.Square {
border-radius: 10px;
}
.v-btn.WithText .v-btn__content {
font-size: 18px;
}
.v-btn.WithText .v-icon {
margin-left: 5px;
}
//------------------------------Tree Select------------------------------
.vue-treeselect__control {
background-color: transparent;
}
//------------------------------Fix V-Select Icon------------------------------
.v-list-item .v-simple-checkbox .v-icon:before {
font-family: "fontello";
content: '\F096';
font-style: normal;
font-weight: normal;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
font-variant: normal;
text-transform: none;
line-height: 1em;
margin-left: .2em;
-webkit-font-smoothing: antialiased;
}
.v-list-item.v-list-item--active .v-simple-checkbox .v-icon:before {
content: '\F14A';
}

@ -1,729 +0,0 @@
@import '_vars.scss';
.we-item {
text-align: center;
border: 1px solid #eeeeee;
transition: 0.4s;
border-radius: 5px;
margin-bottom: 10px;
position: relative;
}
.opacity-03 {
opacity: 0.3;
}
.opacity-05 {
opacity: 0.5;
}
.opacity-07 {
opacity: 0.7;
}
.z-index-9 {
z-index: 99;
}
.z-index-99 {
z-index: 99;
}
/* --------------------------------------------------------
Borders :: Begin
-------------------------------------------------------- */
.border {
border: 1px solid;
}
.border-bottom {
border-bottom: 1px solid;
}
.border-top {
border-top: 1px solid;
}
.border-right {
border-right: 1px solid;
}
.border-left {
border-left: 1px solid;
}
[class^="border-"] {
transition: 0.2s;
}
[class^="border-"].x2 {
border-width: 2px;
}
@each $Color,
$Value in $colors {
.border-#{$Color} {
border-color: $Value;
}
}
/* --------------------------------------------------------
Labels :: Begin
-------------------------------------------------------- */
.WM-SubText {
display: inline-block;
padding: 10px 25px 5px 25px;
color: #fff;
border-radius: 5px;
margin: 3px 0px 10px 0px;
}
.Context {
font-family: BYekan-Edited, Montserrat-Regular !important;
}
.WM-SubText.SmallPad {
padding: 3px 15px 0px 15px;
}
.WM-Notification {
display: inline-block;
text-align: center;
line-height: 24px;
width: 26px;
height: 26px;
color: #fff;
border-radius: 13px;
}
/* --------------------------------------------------------
Price :: Begin
-------------------------------------------------------- */
.Price {
text-align: left;
direction: ltr;
font-size: 24px;
}
.Price .Unit {
font-size: 12px;
}
.Price .Old {
font-size: 14px;
margin-left: 20px;
text-decoration: line-through;
text-decoration-color: #ee3552;
color: #ee3552;
margin-top: -5px;
}
/* --------------------------------------------------------
Others :: Begin
-------------------------------------------------------- */
.zIndex99 {
z-index: 99;
}
.has-blur {
-webkit-filter: blur(5px);
transition: 0.5s -webkit-filter linear;
cursor: not-allowed;
}
.has-blur * {
pointer-events: none;
}
.flex-justified-center {
display: flex;
justify-content: center;
align-items: center;
}
.flex-justified-right {
display: flex;
justify-content: start;
align-items: center;
}
.flex-justified-left {
display: flex;
justify-content: flex-end;
align-items: center;
}
.flex-justified-space-between {
display: flex;
justify-content: space-between;
align-items: center;
}
.flex-ltr {
flex-direction: row-reverse;
}
/* --------------------------------------------------------
Navigation :: Begin
-------------------------------------------------------- */
.WM-NavWrapper {
z-index: 1000;
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
background: #fff;
width: calc(100% - 2em);
margin: 0 1em;
position: fixed;
top: 1em;
.WM-Nav {
padding: 0.8em 1em;
list-style: none;
margin-bottom: 0;
}
}
.WM-PageNav {
border-left: 1px solid #c7c8c9;
padding: 3px 25px;
}
.modal-mask {
position: fixed;
z-index: 9998;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, .5);
display: table;
transition: opacity .3s ease;
}
.modal-wrapper {
display: table-cell;
vertical-align: middle;
}
/* --------------------------------------------------------
Tabs :: Begin
-------------------------------------------------------- */
//@media screen and (min-width: 600px) {
// .v-tab {
// min-width: 300px;
// }
//}
.v-tab .Fa {
font-size: 18px;
letter-spacing: 0px;
}
.v-tab .En {
font-size: 12px;
margin-right: -5px;
letter-spacing: 5px;
text-transform: uppercase;
}
/* --------------------------------------------------------
Blocks :: Begin
-------------------------------------------------------- */
// ----------------------info Block----------------------
.WM-Info .v-icon {
margin-left: 5px;
line-height: 22px;
font-size: 14px;
color: $Gray;
}
.WM-Section {
padding: 10px 10px;
margin: 10px 0px;
border: 1px solid #eeeeee;
border-right: 2px solid #000;
margin-bottom: 30px;
}
.WM-Section .Step {
font-size: 50px;
opacity: 0.2;
float: right;
line-height: 60px;
}
.WM-Section .Title {
float: right;
margin-right: -30px;
margin-top: 8px;
}
.WM-Section .Title .FA {
font-size: 20px;
line-height: 1.2;
}
.WM-Section .Title .EN {
font-size: 12px;
letter-spacing: 5px;
text-transform: uppercase;
font-family: 'Montserrat-Regular', sans-serif;
}
.Duplicate {
border: 1px solid #ddd;
position: relative;
}
.hasConfig .v-autocomplete, .hasConfig .vue-treeselect, .hasConfig .v-input {
width: calc(100% - 45px);
float: right;
}
.hasConfig.x2 .v-autocomplete, .hasConfig.x2 .vue-treeselect, .hasConfig.x2 .v-input {
width: calc(100% - 75px);
float: right;
}
.hasConfig .v-btn {
float: right;
margin-top: 20px;
margin-right: 5px;
}
.hasConfig .v-btn:nth-of-type(2) {
margin-right: 2px;
}
.hasConfig .v-card__text {
width: calc(100% - 50px);
float: right;
}
.has-config {
display: flex;
justify-content: space-between;
align-items: center;
}
.WM-Pointer {
cursor: pointer;
}
.we-pointer {
cursor: pointer;
}
.WM-ToDuplicate-Block {
padding: 5px 10px 2px 10px;
border: 1px solid #eeeeee;
border-right: 2px solid #000;
margin: 5px;
;
}
.WM-ToDuplicate-Block .Header {
text-align: right;
font-size: 22px;
margin: 5px 0px;
}
/* --------------------------------------------------------
Float Buttons :: Begin
-------------------------------------------------------- */
.float-buttons-placeholder {
position: fixed;
left: 3%;
bottom: 3%;
z-index: 999;
}
.float-buttons-placeholder .v-btn.XS {
margin-left: -15px;
margin-bottom: -25px;
}
/* --------------------------------------------------------
Float Buttons :: End
-------------------------------------------------------- */
.color-square {
width: 16px;
height: 16px;
border-radius: 8px;
margin-left: 8px;
}
.image-square {
width: 32px;
margin-left: 5px;
}
.image-square.height-24 {
width: 24px;
}
/* --------------------------------------------------------
Cropper :: Begin
-------------------------------------------------------- */
.upload-example-cropper {
border: 1px solid #afafaf;
height: 300px;
width: 100%;
border-radius: 5px;
}
.button-wrapper {
display: flex;
justify-content: center;
margin-top: 17px;
}
.button {
color: white;
font-size: 16px;
padding: 10px 20px;
background: #3fb37f;
cursor: pointer;
transition: background 0.5s;
}
.button:hover {
background: #38d890;
}
.button input {
display: none;
}
/* --------------------------------------------------------
Cropper :: End
-------------------------------------------------------- */
/* --------------------------------------------------------
masonry :: End
-------------------------------------------------------- */
.masonry { /* Masonry container */
column-gap: 1em;
}
.masonry-item { /* Masonry bricks or child elements */
display: inline-block;
width: 100%;
}
.masonry-item img {
width: 100%;
}
/* Masonry on large screens */
@media only screen and (min-width: 1024px) {
.masonry {
column-count: 4;
}
}
/* Masonry on medium-sized screens */
@media only screen and (max-width: 1023px) and (min-width: 768px) {
.masonry {
column-count: 3;
}
}
/* Masonry on small screens */
@media only screen and (max-width: 767px) and (min-width: 540px) {
.masonry {
column-count: 2;
}
}
/*---------------------------------------------------------------*/
/* Qunatity :: Begin*/
/*---------------------------------------------------------------*/
.we-quantity {
transition: 0.2s;
border: 1px solid transparent;
border-radius: 5px;
padding: 5px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.we-quantity .number {
font-size: 60px;
line-height: 45px;
}
.we-quantity .icon .v-icon {
font-size: 40px;
margin-left: -5px;
line-height: 45px;
}
.we-quantity .label {
font-size: 14px;
opacity: 0.7;
text-align: right;
line-height: 16px;
margin-right: 3px;
}
.we-quantity.sm .number {
font-size: 50px;
line-height: 40px;
}
.we-quantity.sm .label {
font-size: 12px;
opacity: 0.7;
text-align: right;
line-height: 14px;
margin-right: 3px;
}
.we-quantity.xl .number {
font-size: 70px;
line-height: 60px;
}
.we-quantity.xl .label {
font-size: 15px;
opacity: 0.7;
text-align: right;
line-height: 18px;
margin-right: 3px;
margin-top: 4px;
}
.we-quantity.variation {
padding: 5px 10px;
background-color: #eeeeee;
border-radius: 3px;
color: var(--color-store-order);
}
@each $color,
$value in $colors {
.we-quantity.theme-#{$color} .v-icon {
color: $value;
}
.we-quantity.theme-#{$color} .value {
color: $value;
}
}
/*---------------------------------------------------------------*/
/* Qunatity :: End*/
/*---------------------------------------------------------------*/
.we-color {
width: 16px;
height: 16px;
border-radius: 8px;
display: block;
float: right;
margin: 3px 5px 0px 5px;
}
/*---------------------------------------------------------------*/
/* Modals :: Begin
/*---------------------------------------------------------------*/
.v-dialog>.v-card>.v-card__title, .v-card__title {
padding-top: 30px;
}
.v-card__actions {
padding: 0px 20px;
}
/*---------------------------------------------------------------*/
/* Duplicate :: Begin
/*---------------------------------------------------------------*/
.duplicate-container {
position: relative;
border: 1px solid #eeeeee;
border-radius: 5px 0px 0px 5px;
margin: 0px 15px 10px 15px;
padding: 10px 10px 55px 10px;
width: 100%;
}
.duplicate-row {
position: relative;
border: 1px solid #eeeeee;
border-radius: 5px 0px 0px 5px;
margin: 5px 0px;
}
.duplicate-container .duplicate-row .remove-button {
position: absolute;
top: -22px;
left: 0px;
}
.duplicate-container .add-button {
position: absolute;
bottom: -4px;
left: 10px;
}
.exception-row {
padding: 10px;
border: 1px solid #eeeeee;
border-radius: 5px;
}
@each $color,
$value in $colors {
.duplicate-container.theme-#{$color}, .duplicate-row.theme-#{$color} {
border-right: 2px solid $value;
}
}
/*---------------------------------------------------------------*/
/* Modals :: End
/*---------------------------------------------------------------*/
.we-relative {
position: relative;
}
.we-iterator {
position: absolute;
right: 10px;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
font-size: 50px;
color: #6d6d6d;
opacity: 0.3;
}
.we-buttons {
display: flex;
justify-content: flex-end;
align-items: center;
height: 100%;
}
.filters {
border-bottom-left-radius: 5px;
border-top-left-radius: 5px;
padding: 10px;
border: 1px solid var(--color-light-gray);
margin: 10px 0px;
}
.v-chip.bubble-chip {
border-top-right-radius: 0px;
}
.v-chip.v-size--x-small .v-chip__content {
font-size: 11px;
}
/*---------------------------------------------------------------*/
/* End & Full Row :: Begin
/*---------------------------------------------------------------*/
.end-row {
margin-left: -18px;
margin-right: -18px;
padding: 2px 10px;
}
@each $color,
$value in $colors {
.end-row.theme-#{$color} {
border: 2px solid $value;
}
}
@each $backgroundColor,
$value in $backgrounds {
.end-row.theme-#{$backgroundColor} {
background-color: $value;
}
}
.full-row {
margin: 0px -20px;
padding: 5px 20px;
background-color: #f9f9f9;
margin-bottom: 20px;
}
.full-row.mr-ml--30 {
margin: 0px -30px;
}
.full-row.bordered {
border: 1px solid #d0d0d0;
}
/*---------------------------------------------------------------*/
/* Sections :: Begin
/*---------------------------------------------------------------*/
.section-bordered {
border: 1px solid #eeeeee;
border-radius: 5px 0px 0px 5px;
}
@each $color,
$value in $colors {
.section-bordered.theme-#{$color} {
border-right: 2px solid $value;
}
}
/*---------------------------------------------------------------*/
/* we form size :: Begin
/*---------------------------------------------------------------*/
.row.we-form-size {
margin: 0px;
}
.row.we-form-size .col {
padding: 0px 6px 0px 10px;
}
.row.we-form-size.md .col {
padding: 5px 6px 5px 10px;
}
.v-btn--fab.v-size--x-small .v-icon, .v-btn--icon.v-size--x-small .v-icon {
font-size: 16px;
}
/*---------------------------------------------------------------*/
/* active states :: Begin
/*---------------------------------------------------------------*/
@each $background,
$value in $backgrounds {
.theme-#{$background}.active-bg {
background-color: $value;
}
}
@each $color,
$value in $colors {
.theme-#{$color}.active-border {
border-color: $value !important;
}
}
/*---------------------------------------------------------------*/
/* hidden states :: Begin
/*---------------------------------------------------------------*/
.hidden-by-height {
max-height: 0px;
opacity: 0;
overflow: hidden;
transition: opacity 0.3s, max-height 0.3s cubic-bezier(1,0,.2,1);
}
.hidden-by-height.active {
max-height: 1000px;
opacity: 1;
}
/*---------------------------------------------------------------*/
/* home Tiles :: Begin
/*---------------------------------------------------------------*/
.has-back-button {
padding-right: 110px;
position: relative;
}

@ -1,651 +0,0 @@
#app {
padding: 0em 0;
}
.v-application {
font-family: "iranyekan-regular", "Montserrat-Regular" !important;
font-weight: 100;
}
.v-application--is-rtl .v-list-item__action:first-child, .v-application--is-rtl .v-list-item__icon:first-child {
margin-left: 2px;
}
.container {
width: 100%;
max-width: 100%;
padding: 5px 0px 0px 0px;
}
.we-dark .Header .Time, .we-dark .Header .Name, .we-dark .Header .v-icon, {
color: #000;
}
.we-dark .Tile.Shadowed {
background-color: #fff;
box-shadow: none;
border: 1px solid #d6d6d6;
}
.Tile {
margin: 0px 0px 10px 0px;
}
.row.reverse {
flex-direction: row-reverse;
}
a:-webkit-any-link {
text-decoration: none;
}
hr {
margin: 10px 0px;
border: 1px solid #eeeeee;
}
.v-application .headline, .v-application .title {
font-family: inherit !important;
}
// a {
// color:#000 !important;
// }
// a:hover {
// color:inherit !important;
// }
/* --------------------------------------------------------
Navigation :: Bootstrap Tabs
-------------------------------------------------------- */
.nav-tabs {
justify-content: center;
}
.nav-item {
text-align: center;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
border: 1px solid transparent;
border-bottom: 1px solid #ee3552;
color: #ee3552;
}
.nav-tabs .nav-link {
color: #000;
}
.nav-tabs .nav-link .v-chip {
margin: 12px 10px;
transition: 0.2s;
}
.v-chip {
margin-bottom: 2px;
}
.nav-tabs .nav-link:not(.active) .v-chip {
background-color: #000 !important;
border-color: #000 !important;
}
@each $Color,
$Value in $Colors {
.nav-tabs .nav-link.WM-#{$Color}.active,
.nav-tabs .nav-link.WM-#{$Color}:hover,
.nav-tabs .nav-link.WM-#{$Color}:focus {
border-bottom: 1px solid $Value;
color: $Value;
}
.nav-tabs .nav-link.WM-#{$Color}.active .WM-Notification,
.nav-tabs .nav-link.WM-#{$Color}:hover .WM-Notification,
.nav-tabs .nav-link.WM-#{$Color}:focus .WM-Notification {
background-color: $Value;
}
}
/* --------------------------------------------------------
Vuetify :: Data Iterator
-------------------------------------------------------- */
.v-data-iterator .v-data-footer {
width: 100%;
}
/* --------------------------------------------------------
Vuetify :: Dialog
-------------------------------------------------------- */
.v-dialog.XS {
width: 30%;
}
.v-dialog.v-dialog--active {
overflow-x: hidden;
}
.v-card__title--primary {
padding-top: 10px;
}
.theme--light.v-text-field>.v-input__control>.v-input__slot:before {
border-color: rgba(0, 0, 0, .22);
}
.theme--light.v-icon,
.theme--dark.v-icon {
font-size: 16px;
}
.v-input__prepend-outer {
margin-left: 9px;
}
.v-input.en-suffix .v-text-field__suffix {
font-family: 'Montserrat-ExtraBold', sans-serif;
}
.v-input.suffix-padd-10 .v-text-field__suffix {
padding: 10px 10px;
}
.v-input.icon-wide .v-input__icon.v-input__icon--prepend {
margin-right: 10px;
}
.v-input.LTR .v-messages__message, .v-input.LTR .v-counter {
font-family: 'Montserrat-Regular', sans-serif;
text-align: left;
}
.v-select--chips.v-autocomplete .v-label {
margin-top: 8px;
}
.v-select--chips.v-autocomplete .v-input__prepend-outer {
margin-top: 10px;
}
.v-select--chips.v-autocomplete .v-input__append-inner {
margin-top: 10px;
}
.v-select--chips.v-autocomplete .v-label.v-label--active {
margin-top: 0px;
}
table.v-table thead th {
font-size: 18px;
text-align: right;
}
table.v-table tbody td,
table.v-table tbody th {
height: 80px;
}
table.v-table tbody td {
font-weight: 400;
font-size: 16px;
}
.v-datatable thead th.column.sortable .v-icon {
line-height: 1.1;
}
.v-datatable__actions {
font-size: 15px;
}
// ------------------------------------------------------------------
// .v-chip :: BEGIN
// ------------------------------------------------------------------
.v-chip .v-chip__content {
padding: 0 10px;
font-size: 14px;
}
.v-application--is-rtl .v-chip--pill .v-avatar--left {
margin-right: -24px;
font-family: 'Montserrat-ExtraBold', sans-serif;
}
.v-chip {
height: 32px;
}
// ------------------------------------------------------------------
// .inputs :: BEGIN
// ------------------------------------------------------------------
.v-label {
font-size: 14px;
}
.v-list-item__title {
font-size: 0.8rem;
}
.v-application--is-rtl .v-input.LTR .v-input__prepend-outer {
margin: 5px 3px 0px 0px;
}
.v-input.LTR input {
direction: ltr;
font-family: "Montserrat-Regular";
}
.v-input.LTR .v-label {
font-size: 14px;
top: 8px;
}
.v-input.LTR .v-text-field__suffix {
border-top-left-radius: 0px;
border-top-right-radius: 10px;
}
.v-input.LTR input {
padding-bottom: 5px;
}
.v-input--selection-controls.v-input .Fa .v-label {
top: 3px;
}
.label-bottom .v-label {
left: calc(50% - 80px) !important;
right: auto;
position: absolute !important;
top: 25px !important;
}
.v-list .v-list-item {
font-size: 14px;
}
// ------------------------------------------------------------------
// .inputs :: END
// ------------------------------------------------------------------
.router-link-active.WM-Link-Cyan.disabled {
color: #32c5d2;
border-bottom: 2px solid #32c5d2;
}
.v-data-footer {
padding-left: 150px;
}
.orange.darken-2 {
background-color: #ff6b57 !important;
border-color: #ff6b57 !important;
}
.v-btn+.v-btn {
margin-right: 5px;
}
.v-card__text.WM-JustSide {
padding: 0px 16px;
}
.v-badge__badge span {
font-size: 16px;
line-height: 16px;
font-family: 'Montserrat-ExtraBold', sans-serif;
}
.v-chip .v-avatar {
font-size: 22px;
}
.Buttons {
text-align: center;
display: contents;
}
.v-btn {
margin: 6px 2px;
transition: 0.4s
}
.v-btn--fab.v-btn--small .v-icon {
font-size: 16px;
}
.v-btn.XS {
width: 32px;
height: 32px;
}
.v-btn.XS .v-icon {
font-size: 14px;
}
.v-btn.S {
width: 40px;
height: 40px;
}
.v-btn.S .v-icon {
font-size: 20px;
}
.v-btn.M {
width: 50px;
height: 50px;
}
.v-btn.M .v-icon {
font-size: 25px;
}
.v-btn.icon-20 .v-icon {
font-size: 20px !important;
}
.theme--dark.v-btn.v-btn--disabled:not(.v-btn--flat):not(.v-btn--text):not(.v-btn--outlined) {
background-color: rgba(0, 0, 0, 0.12) !important;
cursor: not-allowed;
}
.theme--dark.v-btn.v-btn--disabled,
.theme--dark.v-btn.v-btn--disabled .v-btn__loading,
.theme--dark.v-btn.v-btn--disabled .v-icon {
color: rgba(0, 0, 0, 0.26) !important;
}
.v-tooltip .v-btn--outline:hover .v-icon,
.v-tooltip .v-btn--outline:focus .v-icon {
color: #fff;
}
.v-tooltip span {
font-size: 14px;
}
.v-input.LTR label {
left: 0px !important;
right: auto !important;
}
.v-input .v-text-field__suffix {
background-color: #eee;
padding: 5px 10px;
border-top-left-radius: 10px;
border: 1px solid rgb(199, 199, 199);
border-bottom: 0px;
font-size: 12px;
}
.v-input--switch.RTL .v-label {
text-align: right;
direction: rtl;
}
.v-card__text {
padding: 6px 16px;
}
.v-timeline--dense.RTL:before {
right: 18px;
left: inherit;
}
.v-timeline--dense.RTL .v-timeline-item__dot--small {
right: 7px;
left: inherit;
}
@each $Color,
$Value in $colors {
.v-application .#{$Color} {
background-color: $Value !important;
border-color: $Value !important;
}
.v-application .#{$Color}--text {
color: $Value !important;
caret-color: $Value !important;
}
}
@each $Shadow,
$Value in $Shadows {
.v-application .v-btn.v-btn--fab.#{$Shadow} {
box-shadow: 0 10px 30px 0px $Value;
-moz-box-shadow: 0 10px 30px 0px $Value;
-webkit-box-shadow: 0 10px 30px 0px $Value;
-o-box-shadow: 0 10px 30px 0px $Value;
-ms-box-shadow: 0 10px 30px 0px $Value;
}
}
.v-application .v-btn--fab:not(.v-btn--outlined).v-btn--active,
.v-application .v-btn--fab:not(.v-btn--outlined).v-btn:focus,
.v-application .v-btn--fab:not(.v-btn--outlined).v-btn:hover {
background-color: #000 !important;
color: #fff !important;
box-shadow: 0 10px 30px 0px $BlackShadow;
-moz-box-shadow: 0 10px 30px 0px $BlackShadow;
-webkit-box-shadow: 0 10px 30px 0px $BlackShadow;
-o-box-shadow: 0 10px 30px 0px $BlackShadow;
-ms-box-shadow: 0 10px 30px 0px $BlackShadow;
}
.v-btn--fab.v-size--small .v-icon {
font-size: 16px;
}
.v-list {
text-align: right;
}
.v-application .primary--text {
color: #525252 !important;
}
.v-btn {
letter-spacing: 0;
}
.v-application a {
color: #000;
}
.theme--light.v-card>.v-card__text {
color: rgba(0, 0, 0, .7);
}
.v-snack {
font-size: 16px;
}
// ------------------------------------------------------------------
// Badge :: Begin
// ------------------------------------------------------------------
.v-application--is-rtl .v-badge__badge {
right: auto;
left: -48px;
}
.v-badge__badge {
padding: 0 6px;
}
// ------------------------------------------------------------------
// Badge :: End
// ------------------------------------------------------------------
// ------------------------------------------------------------------
// vue-dropzone :: begin
// ------------------------------------------------------------------
.vue-dropzone {
font-family: "iranyekan-regular", "Montserrat-Regular" !important;
}
.v-application--wrap .dropzone {
border: 1px solid #bdbdbd;
background: #eeeeee;
}
// ------------------------------------------------------------------
// vue-dropzone :: end
// ------------------------------------------------------------------
// ------------------------------------------------------------------
// vue-advanced-cropper :: begin
// ------------------------------------------------------------------
.vue-advanced-cropper {
background-image: url('/images/Global/Backgrounds/Cropper-BG.png');
background-size: cover;
background-position: center;
}
// ------------------------------------------------------------------
// vue-advanced-cropper :: end
// ------------------------------------------------------------------
// ------------------------------------------------------------------
// Expansion-Panel :: Begin
// ------------------------------------------------------------------
.v-expansion-panel:before {
box-shadow: none;
}
.v-expansion-panel-header {
padding: 0px;
}
.v-expansion-panels.flat .v-expansion-panel.v-expansion-panel--active.v-item--active {
border: none;
}
.theme--light.v-expansion-panels .v-expansion-panel {
background-color: transparent;
}
// ------------------------------------------------------------------
// Expansion-Panel :: End
// ------------------------------------------------------------------
// ------------------------------------------------------------------
// tree select :: Begin
// ------------------------------------------------------------------
.vue-treeselect__control {
border: none;
border-bottom: 1px solid #c7c7c7;
border-radius: 0px;
}
.vue-treeselect__multi-value-item {
background: #eeeeee;
color: #484848;
}
.vue-treeselect__value-remove {
color: #484848;
}
// ------------------------------------------------------------------
// tree select :: End
// ------------------------------------------------------------------
// ------------------------------------------------------------------
// validation-error:: Begin
// ------------------------------------------------------------------
.theme--light.v-text-field.error--text > .v-input__control > .v-input__slot:before {
border-color: rgba(235, 15, 15, 0.76);
border-top-color: rgba(235, 15, 15, 0.76);
border-right-color: rgba(235, 15, 15, 0.76);
border-bottom-color: rgba(235, 15, 15, 0.76);
border-left-color: rgba(235, 15, 15, 0.76);
}
.theme--light.v-messages.error--text {
color: rgba(216, 17, 17, 0.8);
}
// ------------------------------------------------------------------
// validation-error:: End
// ------------------------------------------------------------------
.v-stepper.we-stepper {
box-shadow: none;
}
.v-stepper.we-stepper .v-stepper__step:first-child {
padding-right: 0px;
}
.v-stepper.we-stepper .v-stepper__header {
height: 83px;
background-color: #eeeeee;
}
.v-stepper.we-stepper .v-stepper__step {
flex: 1;
padding: 0px;
justify-content: center;
}
.v-stepper.we-stepper .v-stepper__step .v-stepper__label {
color: #32c5d2;
text-align: right;
}
.v-stepper.we-stepper .v-stepper__step .v-stepper__step__step {
color: #32c5d2;
border-radius: 0px;
height: auto;
min-width: auto;
width: auto;
border-right: 2px solid;
padding-right: 10px;
}
.v-stepper.we-stepper .v-stepper__step__step {
font-size: 50px;
line-height: 50px;
margin-left: 10px;
font-family: "Montserrat-ExtraBold";
background: transparent !important;
color: rgba(0,0,0,.38);
}
.v-stepper.we-stepper .v-stepper__label .Fa {
font-size: 18px;
}
.v-stepper.we-stepper .v-stepper__label .En {
font-size: 12px;
margin-top: 5px;
text-transform: uppercase;
letter-spacing: 3px;
}
//------------------------------------------------------
// Theme Gray
//------------------------------------------------------
.v-stepper.we-stepper .v-stepper__step.v-stepper__step--inactive {
//border-right: 2px solid #00000061;
background-color: transparent;
}
.v-stepper.we-stepper .v-stepper__step.v-stepper__step--inactive .v-stepper__label {
color: #00000061;
}
.v-stepper.we-stepper .v-stepper__step.v-stepper__step--inactive .v-stepper__step__step {
color: #00000061;
}
//------------------------------------------------------
// Small v-switch
//------------------------------------------------------
.v-input--switch.small {
margin-top: 0px;
}
.v-input--switch.small .v-input__slot {
margin-bottom: 0px;
}
.v-input--switch.small .v-messages {
min-height: 0px;
}

@ -1,15 +0,0 @@
/* --------------------------------------------------------
Borders :: Begin
-------------------------------------------------------- */
@media screen and (max-width: 600px) and (min-width: 50px) {
.Tile {
padding: 20px 4%;
}
}
/* --------------------------------------------------------
Labels :: Begin
-------------------------------------------------------- */

@ -1,107 +0,0 @@
.WM-Height-90 {
height: 90px;
}
.WM-Height-110 {
height: 110px;
}
.WM-Width-220 {
width: 220px;
}
.WM-Width-100 {
width: 100%;
}
.WM-Absolute {
position: absolute;
}
.WM-Relative {
position: relative;
}
.WM-Block {
display: block;
}
.WM-InlineBlock {
display: inline-block;
}
.WM-Flex {
display: flex !important;
}
.WM-Inline-Flex {
display: inline-flex !important;
}
.WM-Flex>*,
.WM-Inline-Flex>* {
-webkit-box-flex: 1 !important;
}
.WM-Float-L {
float: left;
}
.WM-Float-R {
float: right;
}
.WM-Align-R {
text-align: right;
}
.WM-Align-L {
text-align: left;
}
.WM-Align-C {
text-align: center;
}
.width-full {
width: 100%;
}
//
//
/* --------------------------------------------------------
Paddings :: Begin
-------------------------------------------------------- */
.WM-Padding-10 {
padding: 10px;
}
/* --------------------------------------------------------
Fonts :: Begin
-------------------------------------------------------- */
$FontSizes: [
12,
14,
16,
18,
20,
22,
24,
30,
32,
36,
48,
52,
60];
@each $Size in $FontSizes {
.text--#{$Size},
.theme--light.v-icon.text--#{$Size},
.theme--dark.v-icon.text--#{$Size} {
font-size: #{$Size}px;
line-height: #{$Size}px;
}
}

@ -1,20 +0,0 @@
/*---------------------------------------------------------------*/
/* Tiles :: Begin
/*---------------------------------------------------------------*/
@import '_vars.scss';
@each $color,
$value in $colors {
.we-icon-tile.theme-#{$color} .v-icon {
color: $value;
}
.we-icon-tile.theme-#{$color} .info .Fa {
color: $value;
}
.we-icon-tile.theme-#{$color} .info .En {
color: $value;
}
.we-icon-tile.theme-#{$color} .quantity {
color: $value;
}
}

@ -1,174 +0,0 @@
//--------------------------------------------Red
$Red: #ee3552;
$RedShadow: rgba(255, 75, 90, 0.5);
$RedBackground: #fff8f9;
//--------------------------------------------Orange
$Orange: #FF6B57;
$OrangeShadow:rgba(255, 130, 46, 0.5);
$OrangeBackground: #fff9f8;
//--------------------------------------------Yellow
$Yellow: #ffc107;
$YellowShadow:rgba(234, 223, 131, 0.5);
$YellowBackground: #fff3de;
//--------------------------------------------Gold
$Gold: #ddcfbb;
$GoldShadow:rgba(234, 223, 131, 0.5);
$GoldBackground: #fffaf4;
//--------------------------------------------Purple
$Purple:#ac3773;
$PurpleShadow:rgba(172, 55, 115, 0.5);
$PurpleBackground: #fff5fa;
//--------------------------------------------Blue
$Blue: #3498DB;
$BlueShadow:rgba(51, 152, 219, 1);
$BlueBackground: #ecf7ff;
//--------------------------------------------DarkBlue
$DarkBlue: #04314B;
$DarkBlueShadow: rgba(4, 49, 75, 0.6);
$DarkBlueBackground: #ecf7ff;
//--------------------------------------------Green
$Green: #0d7e00;
$GreenShadow:rgba(13, 126, 0, 0.35);
$GreenBackground: #fbfffa;
//--------------------------------------------Pink
$Pink: #e94c8f;
$PinkShadow: rgba(233, 76, 143, 0.14);
$PinkBackground: #fbfffa;
//--------------------------------------------Cyan
$Cyan: #32c5d2;
$CyanShadow:rgba(50, 197, 210, 0.32);
$CyanBackground: #faffff;
//--------------------------------------------LightGray
$LightGray: #eeeeee;
$LightGrayShadow:rgba(107, 107, 107, 0.5);
$LightGrayBackground: #eeeeee;
//--------------------------------------------Gray
$Gray: #797979;
$GrayShadow:rgba(54, 54, 54, 0.5);
$GrayBackground: #ffe5e9;
//--------------------------------------------Brown
$Brown: #8b4513;
$BrownShadow:rgba(145, 81, 23, 0.5);
$BrownBackground: #fff4ed;
//--------------------------------------------Creme
$Creme: #f8f4e8;
$CremeShadow:rgba(145, 81, 23, 0.5);
$CremeBackground: #fff4ed;
//--------------------------------------------Black
$Black: #2f353b;
$BlackShadow:rgba(0, 0, 0, 0.5);
$BlackBackground: #e8e8e87a;
//--------------------------------------------White
$White: #fff;
$WhiteShadow:rgba(255, 255, 255, 0.2);
$WhiteBackground: #ffe5e9;
//--------------------------------------------Teal
$Teal: #00897b;
$TealShadow:rgba(0, 137, 123, 0.2);
$TealBackground: #ffe5e9;
$Colors: (Red: $Red, Orange: $Orange, Yellow: $Yellow, Gold: $Gold, Purple: $Purple, Blue: $Blue, Green: $Green, Cyan: $Cyan, LightGray: $LightGray, Gray: $Gray, Brown: $Brown, Black: $Black, White: $White);
$colors: (red: $Red, orange: $Orange, yellow: $Yellow, gold: $Gold, purple: $Purple, blue: $Blue, dark-blue: $DarkBlue, green: $Green, cyan: $Cyan, light-gray: $LightGray, gray: $Gray, brown: $Brown, black: $Black, white: $White, tael: $Teal);
$Shadows: (red: $RedShadow, orange: $OrangeShadow, yellow: $YellowShadow, gold: $GoldShadow, purple: $PurpleShadow, blue: $BlueShadow, dark-blue: $DarkBlueShadow, green: $GreenShadow, cyan: $CyanShadow, gray: $GrayShadow, 'grey.lighten-3': $LightGrayShadow, brown: $BrownShadow, black: $BlackShadow, white: $WhiteShadow, teal: $TealShadow);
$backgrounds: (red: $RedBackground, orange: $OrangeBackground, yellow: $YellowBackground, gold: $GoldBackground, purple: $PurpleBackground, blue: $BlueBackground, dark-blue: $DarkBlueBackground, green: $GreenBackground, cyan: $CyanBackground, gray: $GrayBackground, 'grey.lighten-3': $LightGrayBackground, brown: $BrownBackground, black: $BlackBackground, white: $WhiteBackground, teal: $TealBackground);
:root {
//-------------------------------------------Main Colors
--color-red: #ee3552;
--color-orange: #ff6b57;
--color-yellow: #ffc107;
--color-gold: #ddcfbb;
--color-purple: #ac3773;
--color-pink: #e94c8f;
--color-cyan: #32c5d2;
--color-blue: #1875BB;
--color-dark-blue: #04314B;
--color-green: #0d7e00;
--color-white: #fff;
--color-gray: #828282;
--color-brown: #915117;
--color-black: #000;
--color-dark: #000;
--color-light-gray: #e6e6e6;
--color-light-blue: #C9D3EC;
--color-link-hover: #181b31;
//-------------------------------------------Main Background Colors
--color-bg-red: #fff8f9;
--color-bg-orange: #fff9f8;
--color-bg-yellow: #fff3de;
--color-bg-gold: #fffaf4;
--color-bg-purple: #fff5fa;
--color-bg-blue: #ecf7ff;
--color-bg-dark-blue: #ecf7ff;
--color-bg-green: #fbfffa;
--color-bg-pink: #fbfffa;
--color-bg-cyan: #faffff;
--color-bg-white: #fff;
--color-bg-gray: #ffe5e9;
--color-bg-brown: #ffe5e9;
--color-bg-black: #e8e8e87a;
//-------------------------------------------Module Colors
//-------------------------misc
--color-task: #ac3773;
--color-gallery: #000;
--color-sms: #ff6b57;
--color-authorize: #0d7e00;
//-------------------------portfolio
--color-portfolio: #915117;
//-------------------------CRM
--color-client: #32c5d2;
//-------------------------blog
--color-blog-news: #ff6b57;
--color-blog-article: #000;
//-------------------------product
--color-product: #32c5d2;
--color-translation: #1875BB;
--color-brand: #ac3773;
--color-pricing-method: #ac3773;
--color-product-variation: #ffc107;
--color-product-option: #ddcfbb;
//-------------------------service
--color-service: #ee3552;
//-------------------------wms
--color-wms-incoming: #32c5d2;
--color-wms-outgoing: #ee3552;
--color-wms: #000;
//-------------------------store
--color-store-product: #ee3552;
--color-store-service: #ff6b57;
--color-store-order: #32c5d2;
--color-store: #000;
//-------------------------Order
--color-order: #32c5d2;
--color-shipping-fee: #ff6b57;
}

@ -1,7 +0,0 @@
.mce-container,.mce-container *,.mce-widget,.mce-widget *,.mce-reset {
font-family:"iranyekan", "Montserrat", "tinymce"!important;
}
.mce-monospace {
font-family:"iranyekan", "Montserrat", "tinymce"!important;
}

@ -1,241 +0,0 @@
@import '_vars.scss';
@font-face {
font-family: 'iranyekan-extrabold';
font-style: normal;
font-weight: bold;
src: url('../assets/Fonts/IranYekan/Normal/eot/iranyekanwebextraboldfanum.eot');
src: url('../assets/Fonts/IranYekan/Normal/woff/iranyekanwebextraboldfanum.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
url('../assets/Fonts/IranYekan/Normal/ttf/iranyekanwebextraboldfanum.ttf') format('truetype');
}
@font-face {
font-family: 'iranyekan-bold';
font-style: normal;
font-weight: bold;
src: url('../assets/Fonts/IranYekan/Normal/eot/iranyekanwebboldfanum.eot');
src: url('../assets/Fonts/IranYekan/Normal/woff/iranyekanwebboldfanum.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
url('../assets/Fonts/IranYekan/Normal/ttf/iranyekanwebboldfanum.ttf') format('truetype');
}
@font-face {
font-family: 'iranyekan-light';
font-style: normal;
font-weight: 300;
src: url('../assets/Fonts/IranYekan/Normal/eot/iranyekanweblightfanum.eot');
src: url('../assets/Fonts/IranYekan/Normal/woff/iranyekanweblightfanum.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
url('../assets/Fonts/IranYekan/Normal/ttf/iranyekanweblightfanum.ttf') format('truetype');
}
@font-face {
font-family: 'iranyekan-regular';
font-style: normal;
font-weight: normal;
src: url('../assets/Fonts/IranYekan/Normal/eot/iranyekanwebregularfanum.eot');
src: url('../assets/Fonts/IranYekan/Normal/woff/iranyekanwebregularfanum.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
url('../assets/Fonts/IranYekan/Normal/ttf/iranyekanwebregularfanum.ttf') format('truetype');
}
@font-face {
font-family: 'iranyekan-regular-en-num';
font-style: normal;
font-weight: normal;
src: url('../assets/Fonts/IranYekan/Normal/eot/iranyekanwebregular.eot');
src: url('../assets/Fonts/IranYekan/Normal/woff/iranyekanwebregular.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
url('../assets/Fonts/IranYekan/Normal/ttf/iranyekanwebregular.ttf') format('truetype');
}
@font-face {
font-family: 'Montserrat-Thin';
font-style: normal;
font-weight: 200;
src: url('../assets/Fonts/Montserrat/Montserrat-Thin.ttf') format('truetype');
}
@font-face {
font-family: 'Montserrat-Regular';
src: url('../assets/Fonts/Montserrat/Montserrat-Regular.woff2') format('woff2'), url('../assets/Fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Montserrat-ExtraBold';
src: url('../assets/Fonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
}
/* --------------------------------------------------------------------
Montserrat :: End
--------------------------------------------------------------------*/
body {
color: #5c6873;
font-family: "iranyekan-regular", 'Montserrat-Regular' !important;
padding: 0px !important;
margin: 0px !important;
font-weight: 100;
font-size: 17px;
}
a {
transition: 0.2s;
}
a:hover {
text-decoration: none !important;
}
/* --------------------------------------------------------
General :: Begin
-------------------------------------------------------- */
.En {
font-family: 'Montserrat-Regular', sans-serif;
}
.En.Thin {
font-family: 'Montserrat-Thin', sans-serif;
}
.En.Bold {
font-family: 'Montserrat-ExtraBold', sans-serif;
}
.title.En.Bold {
font-family: 'Montserrat-ExtraBold', sans-serif !important;
}
.Fa {
font-family: 'iranyekan-regular', sans-serif;
}
.Fa.Thin, Fa.Light {
font-family: 'iranyekan-light', sans-serif;
}
.Fa.Bold {
font-family: 'iranyekan-bold', sans-serif;
}
.Fa.ExtraBold {
font-family: 'iranyekan-extrabold', sans-serif;
}
.Fa.FaNum {
font-family: 'iranyekan-regular';
}
.Fa.EnNum {
font-family: 'iranyekan-regular-en-num';
}
.Context {
font-family: "BYekan-Edited", 'Montserrat-Regular' !important;
}
.RTL {
direction: rtl;
}
.LTR {
direction: ltr;
}
.RotateX {
transform: rotate(180deg);
webkit-transform: rotate(180deg);
}
.Material-Shoadow-SM {
box-shadow: 0 8px 10px rgba(0, 0, 0, 0.30), 0 4px 3px rgba(0, 0, 0, 0.22);
}
.CoverBG {
background-size: cover !important;
}
.CubeTransition {
transition-property: all;
transition-duration: .5s;
transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.WhiteTheme .WM-SubText {
background-color: #fff !important;
color: #000;
}
.WhiteTheme .Notification {
background-color: transparent !important;
}
[class^='WM-Hover'],
[class*='WM-Hover'] {
transition: 0.2s;
cursor: pointer;
}
.Tile {
margin: 0px 1%;
padding: 20px 50px;
// width: 100%;
}
.Tile.sm-pad {
padding: 20px 30px;
}
.Tile.Padd-XS {
padding: 5px 50px;
}
.Tile.Padd-0 {
padding: 0px 50px;
}
.Tile.Shadowed {
background-color: #fff;
box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .5);
border-radius: 5px;
}
.PreFormatted {
white-space: pre;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
// border: 1px solid green;
// -webkit-text-fill-color: green;
// -webkit-box-shadow: 0 0 0px 1000px #000 inset;
// transition: background-color 5000s ease-in-out 0s;
}
.v-text-field input:-internal-autofill-selected {
background-color: #fff !important;
}
input:-internal-autofill-selected {
background-color: #fff !important;
}
.red-orange .btn-gradient-bg {
background: linear-gradient(to right, var(--color-red) 0%, var(--color-orange) 100%);
}
@import 'Icons/css/fontello.css';
@import 'Misc.scss';
@import 'Inputs.scss';
@import 'SizeAndPositioning.scss';
@import 'Colors.scss';
@import 'Animations.scss';
@import 'Responsive.scss';
@import 'Modify.scss';
@import 'Tile.scss';
Loading…
Cancel
Save