Compare commits

..

No commits in common. 'dev' and 'BE.vuex-module' have entirely different histories.

@ -2,4 +2,3 @@
vendor
node_modules
modules
composer.lock

@ -1,53 +0,0 @@
kind: pipeline
type: exec
name: default
steps:
- name: build to production
commands:
- docker build -t registry.willaspace.com/willaspace/willaengine-test:latest --build-arg COMPOSER_FILE_NAME=composer-prod .
when:
branch:
- master
- name: deploy to production
commands:
- cd /apps/willaengine/ ; docker-compose up -d
- docker exec willaengine-test bash -c "COMPOSER=composer-prod.json composer update"
- docker exec willaengine-test php artisan config:cache
- docker exec willaengine-test php artisan route:cache
# - docker exec willaengine_worker bash -c "COMPOSER=composer-prod.json composer update"
# - docker exec willaengine_worker service supervisor start
# - docker network connect nginx_default willaengine
when:
branch:
- master
- name: build to staging
commands:
- docker build -t registry.willaspace.com/willaspace/willaengine-staging:latest --build-arg COMPOSER_FILE_NAME=composer-staging -f Dockerfile.staging .
- docker build -t registry.willaspace.com/willaspace/willaengine-staging-nginx:latest -f Dockerfile.nginx .
when:
branch:
- dev
- name: deploy to staging
commands:
- cd /apps/willaengine-staging/ ; docker-compose up -d
- docker exec willaengine-staging_php bash -c "COMPOSER=composer-staging.json composer update"
- docker exec willaengine-staging_php bash -c "php artisan route:cache"
- docker exec willaengine-staging_php bash -c "php artisan config:cache"
- docker exec willaengine-staging_worker bash -c "COMPOSER=composer-staging.json composer update"
- docker exec willaengine-staging_worker service supervisor start
- docker exec willaengine-staging_php php artisan migrate --path=vendor/wm/finance/database/migrations --force
- docker exec willaengine-staging_php php artisan migrate --path=vendor/wm/store/database/migrations --force
when:
branch:
- dev
trigger:
branch:
- master
- dev

1
.gitattributes vendored

@ -3,4 +3,3 @@
*.scss linguist-vendored
*.js linguist-vendored
CHANGELOG.md export-ignore

4
.gitignore vendored

@ -2,9 +2,7 @@
/development/
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,laravel,vuejs,phpstorm
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,laravel,vuejs, phpstorm
resources/views/sites
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,laravel,vuejs,phpstorm
### Laravel ###
/vendor/

@ -1,38 +0,0 @@
#!/bin/bash
# rsync script
git pull origin master
cd modules
for f in *
do
cd $f && git pull origin master && cd ..
done
cd ..
npm install
rm -r /home/administrator/apps/willaengine/public/js/vue
npm run prod
rm -r /home/administrator/apps/nginx/www/willaengine/public/js/vue
rm -r /home/administrator/apps/nginx/www/willamall/public/js/vue
rm -r /home/administrator/apps/nginx/www/willaarts/public/js/vue
cp -r /home/administrator/apps/willaengine/public/js/vue /home/administrator/apps/nginx/www/willaengine/public/js/
cp -r /home/administrator/apps/willaengine/public/js/vue /home/administrator/apps/nginx/www/willamall/public/js/
cp -r /home/administrator/apps/willaengine/public/js/vue /home/administrator/apps/nginx/www/willaarts/public/js/
cp /home/administrator/apps/willaengine/public/mix-manifest.json /home/administrator/apps/nginx/www/willaengine/public/
cp /home/administrator/apps/willaengine/public/mix-manifest.json /home/administrator/apps/nginx/www/willaarts/public/
sudo chown -R www-data:www-data /home/administrator/apps/nginx/www/willaarts/public
sudo chown -R www-data:www-data /home/administrator/apps/nginx/www/willamall/public
sudo chown -R www-data:www-data /home/administrator/apps/nginx/www/willaengine

@ -1,28 +1,23 @@
FROM willaengine/standard-laravel:7.4
FROM dfs1368/laravel-php-fpm:7.4
ARG COMPOSER_FILE_NAME=composer
WORKDIR /var/www
WORKDIR /var/www/html
RUN apt install -y sendmail libpng-dev
RUN docker-php-ext-install gd
RUN echo 'memory_limit = -1' >> /usr/local/etc/php/conf.d/docker-php-memlimit.ini;
#####################################
# Composer:
#####################################
COPY database /var/www/database
COPY composer.* /var/www/
COPY database /var/www/html/database
RUN composer clearcache && composer update --no-scripts
COPY $COMPOSER_FILE_NAME.* /var/www/html/
RUN COMPOSER=$COMPOSER_FILE_NAME.json composer install --no-scripts
COPY . /var/www/html
COPY . /var/www
RUN chown -R www-data:www-data \
/var/www/html/public \
/var/www/html/storage \
/var/www/html/bootstrap/cache \
/var/www/.ssh \
/var/www/html/storage/letsencrypt && \
chmod 755 /var/www/html/storage/letsencrypt/Bash/auth-hook.sh
/var/www/public \
/var/www/storage \
/var/www/bootstrap/cache
RUN mv .env.prod .env
RUN php artisan morphmap:cache
RUN php artisan optimize

@ -1,3 +0,0 @@
FROM nginx:1.21.1
COPY public /var/www/html/public

@ -1,6 +0,0 @@
FROM fsaravi/standard-laravel:7.4
WORKDIR /var/www/html
RUN php artisan morphmap:cache

42
Jenkinsfile vendored

@ -1,42 +0,0 @@
pipeline {
agent {
node {
label 'willa'
}
}
stages {
stage('build') {
when {
branch 'master'
}
steps {
sh 'cd /home/administrator/apps/${IMAGE_NAME}/;docker build -t registry.willaspace.com/willaspace/${IMAGE_NAME}:latest .'
sh 'cd /home/administrator/apps/${IMAGE_NAME}/;sudo ./BuildDocker'
}
}
stage('deploy to production') {
when {
branch 'master'
}
steps {
sh 'cd /home/administrator/apps/${IMAGE_NAME}/ ; docker-compose up -d'
sh 'docker exec willaengine bash -c "COMPOSER=composer-prod.json composer update"'
sh 'docker exec willaengine service cron start'
sh 'docker exec willaengine php artisan config:cache'
sh 'docker exec willaengine php artisan route:cache'
}
}
stage('deploy to staging') {
when {
branch 'dev'
}
steps {
sh 'echo ${IMAGE_NAME}-staging comming soon ...'
}
}
}
environment {
IMAGE_NAME = 'willaengine'
}
}

@ -1,85 +0,0 @@
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use WM\Core\Models\Business;
use WM\Core\Models\User;
class UserChangeInformation extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'transport:user';
/**
* The console command description.
*
* @var string
*/
protected $description = 'transport users';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
private function firstNameLengthUpdate(User $user)
{
$fistName = $user->first_name;
$fistNameLength = strlen(utf8_decode($fistName));
$user->update([
'first_name_length' => $fistNameLength
]);
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$users = User::all();
foreach ($users as $user) {
$business = Business::find($user->business_id);
if (!is_null($business)) {
if ($business->user_id == $user->id) {
$this->firstNameLengthUpdate($user);
$business->user()->attach($user->id, [
'responsibility' => $user->responsibility,
'is_owner' => 1
]);
$this->info("add and update user : $user->id");
} else {
$this->firstNameLengthUpdate($user);
$business->user()->attach($user->id, [
'responsibility' => $user->responsibility
]);
$this->info("add and update user : $user->id");
}
}
}
}
}

@ -102,10 +102,9 @@ class Vuex
}
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::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('|-MODULE-|', Str::upper(static::$storeModule), $data);
$data = str_replace('|-BaseModule-|', Str::title(static::$module), $data);
return str_replace('|-baseModule-|', Str::camel(static::$module), $data);
}

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

@ -2,12 +2,10 @@
namespace App\Exceptions;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Throwable;
use WM\Core\Exceptions\HasRelationException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use WM\Core\Exceptions\ValidationErrorException;
use WM\Core\Services\Responser;
use WM\WebBuilder\Exceptions\SiteBannedException;
class Handler extends ExceptionHandler
{
@ -38,10 +36,6 @@ class Handler extends ExceptionHandler
*/
public function report(Throwable $exception)
{
if (app()->bound('sentry') && $this->shouldReport($exception)) {
app('sentry')->captureException($exception);
}
parent::report($exception);
}
@ -56,16 +50,7 @@ class Handler extends ExceptionHandler
{
if ($exception instanceof ValidationErrorException) {
return response()->json(Responser::error($exception->getMessageBody(), $exception->getMessageInfo()), 422);
} elseif ($exception instanceof SiteBannedException) {
return response()->view('webBuilder::errors.template_disabled', ['error' => 'business banned']);
} elseif ($exception instanceof HasRelationException) {
return response()->json(Responser::error([$exception->getMessage()]), 422);
} elseif ($this->isHttpException($exception)) {
if ($exception->getStatusCode() == 404 and in_array("web",$request->route()->middleware())) {
return response()->view('webBuilder::errors.404', [], 404);
}
}
return parent::render($request, $exception);
}
}

@ -19,6 +19,6 @@ class VerifyCsrfToken extends Middleware
* @var array
*/
protected $except = [
'/verify-payment'
//
];
}

@ -6,8 +6,8 @@ use Illuminate\Support\Facades\Event;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use WM\Notification\Services\Sms\Events\SmsSent;
use WM\Notification\Services\Sms\Listeners\StoreSmsInDatabase;
use WM\Common\Services\Sms\Events\SmsSent;
use WM\Common\Services\Sms\Listeners\StoreSmsInDatabase;
class EventServiceProvider extends ServiceProvider
{

@ -1,168 +0,0 @@
{
"name": "willaengine/laravel",
"type": "project",
"description": "The WillaEngine Applications.",
"keywords": [
"framework",
"laravel",
"WillaEngine"
],
"license": "MIT",
"require": {
"php": "^7.4",
"coraxster/flysystem-aws-s3-v3-minio": "^1.0",
"fideloper/proxy": "^4.0",
"io-developer/php-whois": "^4.0",
"kalnoy/nestedset": "^6.0",
"laravel/framework": "^8.0",
"laravel/passport": "^10",
"laravel/tinker": "^2.0",
"maatwebsite/excel": "^3.1",
"owen-it/laravel-auditing": "^13.5",
"sentry/sentry-laravel": "^2.3",
"silber/bouncer": "v1.0.0-rc.10",
"spatie/laravel-medialibrary": "^8.0.0",
"wm/admin": "dev-master",
"wm/app-management": "dev-master",
"wm/blog": "dev-master",
"wm/common": "dev-master",
"wm/contact-us": "dev-master",
"wm/core": "dev-master",
"wm/crm": "dev-master",
"wm/finance": "dev-master",
"wm/lms": "dev-master",
"wm/notification": "dev-master",
"wm/portfolio": "dev-master",
"wm/product": "dev-master",
"wm/roll-call": "dev-master",
"wm/service": "dev-master",
"wm/service-store": "dev-master",
"wm/store": "dev-master",
"wm/web-builder": "dev-master",
"zircote/swagger-php": "^3.0"
},
"provide": {
"ext-imagick": "*"
},
"require-dev": {
"facade/ignition": "^2.3.6",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Modules\\": "Modules/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan morphmap:cache"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"repositories": [
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/crm.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/common.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/core.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/blog.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/portfolio.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/product.git"
},
{
c "type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/service.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/store.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/notification.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/roll-call.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/app-management.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/web-builder.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/finance.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/service-store.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/admin.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/lms.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/contact-us.git"
}
]
}

@ -1,166 +0,0 @@
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^7.4",
"coraxster/flysystem-aws-s3-v3-minio": "^1.0",
"fideloper/proxy": "^4.0",
"laravel/framework": "^8.0",
"laravel/passport": "^10",
"laravel/tinker": "^2.0",
"maatwebsite/excel": "^3.1",
"matthiasmullie/minify": "^1.3",
"kalnoy/nestedset": "^6.0",
"sentry/sentry-laravel": "^2.3",
"spatie/laravel-medialibrary": "^8.0.0",
"io-developer/php-whois": "^4.0",
"silber/bouncer": "v1.0.0-rc.10",
"wm/blog": "dev-dev",
"wm/common": "dev-dev",
"wm/core": "dev-dev",
"wm/crm": "dev-dev",
"wm/portfolio": "dev-dev",
"wm/product": "dev-dev",
"wm/service": "dev-dev",
"wm/store": "dev-dev",
"wm/finance": "dev-dev",
"wm/admin": "dev-dev",
"wm/web-builder": "dev-dev",
"wm/app-management": "dev-dev",
"wm/notification": "dev-dev",
"wm/roll-call": "dev-dev",
"wm/lms": "dev-dev",
"wm/service-store": "dev-dev",
"predis/predis": "^1.1",
"wm/contact-us": "dev-dev",
"zircote/swagger-php": "^3.0"
},
"provide": {
"ext-imagick": "*"
},
"require-dev": {
"facade/ignition": "^2.3.6",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Modules\\": "Modules/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan morphmap:cache"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"repositories": [
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/crm.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/common.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/core.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/blog.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/portfolio.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/product.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/service.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/store.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/notification.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/roll-call.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/app-management.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/web-builder.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/finance.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/service-store.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/admin.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/lms.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/contact-us.git"
}
]
}

@ -11,31 +11,20 @@
"php": "^7.4",
"coraxster/flysystem-aws-s3-v3-minio": "^1.0",
"fideloper/proxy": "^4.0",
"io-developer/php-whois": "^4.0",
"kalnoy/nestedset": "^6.0",
"laravel/framework": "^8.0",
"laravel/passport": "^10",
"laravel/tinker": "^2.0",
"maatwebsite/excel": "^3.1",
"matthiasmullie/minify": "^1.3",
"owen-it/laravel-auditing": "^13.0",
"predis/predis": "^1.1",
"sentry/sentry-laravel": "^2.3",
"silber/bouncer": "v1.0.0-rc.10",
"nestedset/willaarts": "^5.0.7",
"spatie/laravel-medialibrary": "^8.0.0",
"wm/admin": "dev-master",
"wm/blog": "dev-master",
"wm/common": "dev-master",
"wm/core": "dev-master",
"wm/crm": "dev-master",
"wm/finance": "dev-master",
"wm/notification": "dev-master",
"wm/portfolio": "dev-master",
"wm/product": "dev-master",
"wm/roll-call": "dev-master",
"wm/service": "dev-master",
"wm/store": "dev-master",
"wm/web-builder": "dev-master",
"zircote/swagger-php": "^3.0"
},
"provide": {
@ -78,8 +67,7 @@
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan morphmap:cache"
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
@ -91,56 +79,36 @@
"repositories": [
{
"type": "path",
"url": "./modules/wm-crm"
"type": "vcs",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/crm.git"
},
{
"type": "path",
"url": "./modules/wm-common"
"type": "vcs",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/common.git"
},
{
"type": "path",
"url": "./modules/wm-core"
"type": "vcs",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/core.git"
},
{
"type": "path",
"url": "./modules/wm-blog"
"type": "vcs",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/blog.git"
},
{
"type": "path",
"url": "./modules/wm-portfolio"
"type": "vcs",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/portfolio.git"
},
{
"type": "path",
"url": "./modules/wm-product"
"type": "vcs",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/product.git"
},
{
"type": "path",
"url": "./modules/wm-service"
"type": "vcs",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/service.git"
},
{
"type": "path",
"url": "./modules/wm-store"
},
{
"type": "path",
"url": "./modules/wm-notification"
},
{
"type": "path",
"url": "./modules/wm-roll-call"
},
{
"type": "path",
"url": "./modules/wm-web-builder"
},
{
"type": "path",
"url": "./modules/wm-finance"
},
{
"type": "path",
"url": "./modules/wm-admin"
"type": "vcs",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/store.git"
}
]
}

12272
composer.lock generated

File diff suppressed because it is too large Load Diff

@ -1,52 +0,0 @@
<?php
return [
/*
* If set to false, no activities will be saved to the database.
*/
'enabled' => env('ACTIVITY_LOGGER_ENABLED', true),
/*
* When the clean-command is executed, all recording activities older than
* the number of days specified here will be deleted.
*/
'delete_records_older_than_days' => 365,
/*
* If no log name is passed to the activity() helper
* we use this default log name.
*/
'default_log_name' => 'default',
/*
* You can specify an auth driver here that gets user models.
* If this is null we'll use the default Laravel auth driver.
*/
'default_auth_driver' => null,
/*
* If set to true, the subject returns soft deleted models.
*/
'subject_returns_soft_deleted_models' => false,
/*
* This model will be used to log activity.
* It should be implements the Spatie\Activitylog\Contracts\Activity interface
* and extend Illuminate\Database\Eloquent\Model.
*/
'activity_model' => \Spatie\Activitylog\Models\Activity::class,
/*
* This is the name of the table that will be created by the migration and
* used by the Activity model shipped with this package.
*/
'table_name' => 'activity_log',
/*
* This is the database connection that will be used by the migration and
* the Activity model shipped with this package. In case it's not set
* Laravel database.default will be used instead.
*/
'database_connection' => env('ACTIVITY_LOGGER_DB_CONNECTION'),
];

@ -1,171 +0,0 @@
<?php
return [
'enabled' => env('AUDITING_ENABLED', true),
/*
|--------------------------------------------------------------------------
| Audit Implementation
|--------------------------------------------------------------------------
|
| Define which Audit model implementation should be used.
|
*/
'implementation' => OwenIt\Auditing\Models\Audit::class,
/*
|--------------------------------------------------------------------------
| User Morph prefix & Guards
|--------------------------------------------------------------------------
|
| Define the morph prefix and authentication guards for the User resolver.
|
*/
'user' => [
'morph_prefix' => 'user',
'guards' => [
'web',
'api',
'apicore'
],
'resolver' => OwenIt\Auditing\Resolvers\UserResolver::class
],
/*
|--------------------------------------------------------------------------
| Audit Resolvers
|--------------------------------------------------------------------------
|
| Define the User, IP Address, User Agent and URL resolver implementations.
|
*/
'resolvers' => [
'ip_address' => OwenIt\Auditing\Resolvers\IpAddressResolver::class,
'user_agent' => OwenIt\Auditing\Resolvers\UserAgentResolver::class,
'url' => OwenIt\Auditing\Resolvers\UrlResolver::class,
'business_id'=> WM\Common\Services\Audit\BusinessResolver::class,
],
/*
|--------------------------------------------------------------------------
| Audit Events
|--------------------------------------------------------------------------
|
| The Eloquent events that trigger an Audit.
|
*/
'events' => [
'created',
'updated',
'deleted',
'restored'
],
/*
|--------------------------------------------------------------------------
| Strict Mode
|--------------------------------------------------------------------------
|
| Enable the strict mode when auditing?
|
*/
'strict' => false,
/*
|--------------------------------------------------------------------------
| Global exclude
|--------------------------------------------------------------------------
|
| Have something you always want to exclude by default? - add it here.
| Note that this is overwritten (not merged) with local exclude
|
*/
'exclude' => [],
/*
|--------------------------------------------------------------------------
| Empty Values
|--------------------------------------------------------------------------
|
| Should Audit records be stored when the recorded old_values & new_values
| are both empty?
|
| Some events may be empty on purpose. Use allowed_empty_values to exclude
| those from the empty values check. For example when auditing
| model retrieved events which will never have new and old values.
|
|
*/
'empty_values' => true,
'allowed_empty_values' => [
'retrieved'
],
/*
|--------------------------------------------------------------------------
| Audit Timestamps
|--------------------------------------------------------------------------
|
| Should the created_at, updated_at and deleted_at timestamps be audited?
|
*/
'timestamps' => false,
/*
|--------------------------------------------------------------------------
| Audit Threshold
|--------------------------------------------------------------------------
|
| Specify a threshold for the amount of Audit records a model can have.
| Zero means no limit.
|
*/
'threshold' => 0,
/*
|--------------------------------------------------------------------------
| Audit Driver
|--------------------------------------------------------------------------
|
| The default audit driver used to keep track of changes.
|
*/
'driver' => 'database',
/*
|--------------------------------------------------------------------------
| Audit Driver Configurations
|--------------------------------------------------------------------------
|
| Available audit drivers and respective configurations.
|
*/
'drivers' => [
'database' => [
'table' => 'audits',
'connection' => null,
],
],
/*
|--------------------------------------------------------------------------
| Audit Console
|--------------------------------------------------------------------------
|
| Whether console events should be audited (eg. php artisan db:seed).
|
*/
'console' => true,
];

@ -91,14 +91,6 @@ return [
'prefix_indexes' => true,
],
'site' => [
'driver' => 'sqlite',
'url' => env('DATABASE_URL'),
'database' => env('DB_DATABASE', database_path('database.sqlite')),
'prefix' => '',
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
],
],
/*
@ -127,7 +119,7 @@ return [
'redis' => [
'client' => env('REDIS_CLIENT', 'predis'),
'client' => env('REDIS_CLIENT', 'phpredis'),
'options' => [
'cluster' => env('REDIS_CLUSTER', 'redis'),

@ -68,14 +68,7 @@ return [
'media_dev' => [
'driver' => 'local',
'root' => public_path(),
'url' => env('APP_URL').'/',
'visibility' => 'public'
],
'site' => [
'driver' => 'local',
'root' => resource_path('views'),
'url' => env('APP_URL').'/',
'url' => '',
'visibility' => 'public'
],

@ -99,11 +99,6 @@ return [
'emergency' => [
'path' => storage_path('logs/laravel.log'),
],
'sentry' => [
'driver' => 'sentry',
'level' => 'debug',
'bubble' => true,
],
],
];

@ -170,5 +170,5 @@ return [
'generate_responsive_images' => Spatie\MediaLibrary\ResponsiveImages\Jobs\GenerateResponsiveImagesJob::class,
],
'wm-cdn' => 'https://cdn.willaspace.com/static.willaengine',
'wm-cdn' => 'https://cdn.willaspace.com',
];

@ -1,37 +0,0 @@
<?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'),
];

@ -12,12 +12,15 @@ class DatabaseSeeder extends Seeder
*/
public function run()
{
$this->call(CoreSeeder::class);
$this->call(CommonSeeder::class);
$this->call(CRMSeeder::class);
$this->call(ProductSeeder::class);
$this->call(StoreSeeder::class);
$this->call(ServiceSeeder::class);
$this->call(FinanceSeeder::class);
$this->call(UserSeeder::class);
$this->call(BusinessSeeder::class);
$this->call(CategorySeeder::class);
$this->call(CitySeeder::class);
$this->call(DistrictSeeder::class);
$this->call(DomainSeeder::class);
$this->call(HelpSeeder::class);
$this->call(ModuleSeeder::class);
$this->call(PermissionCategorySeeder::class);
$this->call(RoleSeeder::class);
}
}

11624
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -2,69 +2,89 @@
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"staging": "npm run production -- --mix-config=webpack.mix.staging",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production -- --mix-config=webpack.mix.production",
"production": "mix --production"
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=webpack.config.js"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^12.4.0",
"@ckeditor/ckeditor5-build-decoupled-document": "^16.0.0",
"@ckeditor/ckeditor5-font": "^16.0.0",
"@ckeditor/ckeditor5-vue": "^1.0.1",
"@fortawesome/fontawesome-free": "^5.5.0",
"@riophae/vue-treeselect": "^0.4.0",
"@tinymce/tinymce-vue": "^3.0.1",
"apexcharts": "^3.27.1",
"axios": "^0.21.1",
"ajv": "^6.10.0",
"apexcharts": "^3.8.3",
"apollo-boost": "^0.4.3",
"apollo-cache-inmemory": "^1.6.2",
"apollo-link-context": "^1.0.18",
"axios": "^0.18.1",
"babel-polyfill": "^6.26.0",
"codemirror": "^5.60.0",
"dedent": "^0.7.0",
"fslightbox-vue": "^1.2.0",
"bootstrap": "^4.3.1",
"bootstrap-select": "^1.13.3",
"bootstrap-v4-rtl": "^4.1.1-0",
"bootstrap-vue": "^2.0.0-rc.19",
"chart.js": "^2.7.3",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"izitoast": "^1.4.0",
"jalali-moment": "^3.3.3",
"loadash": "^1.0.0",
"moment": "^2.29.1",
"moment-jalaali": "^0.9.2",
"object-to-formdata": "^2.1.2",
"postcss-loader": "^3.0.0",
"prismjs": "^1.21.0",
"quill": "^1.3.7",
"vee-validate": "^3.4.10",
"raw-loader": "^0.5.1",
"v-mask": "^2.2.3",
"vee-validate": "^2.2.15",
"vue-advanced-cropper": "^0.14.1",
"vue-apexcharts": "^1.6.1",
"vue-apexcharts": "^1.4.0",
"vue-apollo": "^3.0.0-alpha.3",
"vue-chartjs": "^3.4.0",
"vue-codemirror": "^4.0.6",
"vue-color": "^2.8.1",
"vue-dialog-drag": "^0.1.29",
"vue-directive-tooltip": "^1.6.3",
"vue-ckeditor5": "^0.4.1",
"vue-cropperjs": "^4.0.1",
"vue-gallery": "^2.0.1",
"vue-jalali-moment": "^1.0.0",
"vue-js-toggle-button": "^1.3.3",
"vue-masonry-wall": "^0.3.2",
"vue-moment": "^4.1.0",
"vue-persian-datetime-picker": "^2.6.1",
"vue-persian-datetime-picker": "^2.4.1",
"vue-prism-editor": "^1.2.2",
"vue-quill-editor": "^3.0.6",
"vue-range-component": "^1.0.3",
"vue-router": "^3.0.2",
"vue-select": "^3.11.2",
"vue-scroll-reveal": "^1.0.11",
"vue-the-mask": "^0.11.1",
"vue-tinymce-editor": "^1.6.2",
"vue2-dropzone": "^3.6.0",
"vuetify": "^2.5.4",
"willatoast": "^1.1.1"
"vuetify": "^2.3.17"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.14.5",
"cross-env": "^5.2.1",
"laravel-mix": "^6.0.24",
"minimist": "^1.2.5",
"node-sass": "^6.0.0",
"@babel/preset-env": "^7.6.2",
"@ckeditor/ckeditor5-alignment": "^16.0.0",
"@mdi/font": "^3.9.97",
"cross-env": "^5.1",
"deepmerge": "^4.0.0",
"fibers": "^4.0.1",
"jquery": "^3.5.1",
"laravel-mix": "^5.0.9",
"material-design-icons-iconfont": "^4.0.3",
"node-sass": "^4.14.1",
"popper.js": "^2.0.0-next.4",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"vue": "^2.6.14",
"vue-loader": "^15.9.7",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"pug-plain-loader": "^1.0.0",
"sass": "^1.22.12",
"sass-loader": "^7.3.1",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2",
"vue": "^2.6.10",
"vue-masonry-css": "^1.0.3",
"vue-meta": "^1.5.2",
"vue-template-compiler": "^2.6.14",
"vue-resource": "^1.5.1",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
}

@ -66,6 +66,6 @@ or generate your own password by https://bcrypt-generator.com/
## Composer Section:
1. please install and restart vscode
2. add to environment in path in windows
1. add to environment in path in windows
good luck

@ -1,8 +1,8 @@
import {setData, getJson, getArray} from '@|-BaseModule-|/abstraction/resources/|-module-|/|-module-|Resource'
import {setData, getJson, getArray} from '@|-BaseModule-|/abstraction/resources/productCategory/|-module-|CategoryResource'
import axios from "axios";
import url from "@|-BaseModule-|/router/urls";
import url from "@|-Module-|/router/urls";
export default class |-module-|Repository {
export default class |-module-|CategoryRepository {
async index() {
@ -32,7 +32,7 @@ export default class |-module-|Repository {
const params = setData(data, true);
let response = await axios.post(url('url', {|-module-|: data.id}), params);
let response = await axios.post(url('url', {|-module-|Category: data.id}), params);
if (response && response.status === 200) {
@ -42,7 +42,7 @@ export default class |-module-|Repository {
}
async destroy(dataId) {
let response = await axios.delete(url('url', {|-module-|: dataId}));
let response = await axios.delete(url('url', {|-module-|Category: dataId}));
if (response && response.status === 200) {

@ -1,4 +1,4 @@
import {setQuery, setData, getJson, getArray} from "@|-BaseModule-|/abstraction/resources/|-module-|/|-module-|Resource";
import {setQuery, setData, getJson, getArray} from "@|-BaseModule-|/abstraction/repositories/|-module-|Recource";
import axios from "axios";
import url from "@|-BaseModule-|/router/urls";

@ -1,7 +1,7 @@
import { Paginate, Sort } from '@Global/services/storage.|-module-|';
const |-MODULE-| = '|-module-|';
const |-module-|Paginate = {
const |-Module-|Paginate = {
get() {
return Paginate.get(|-MODULE-|);
},
@ -39,4 +39,4 @@ const SortPaginate = {
}
export { |-module-|Paginate, SortPaginate }
export { |-Module-|Paginate, SortPaginate }

@ -1,9 +1,12 @@
import |-Module-|Repository from "@|-BaseModule-|/abstraction/repositories/|-module-|/|-module-|Repository";
import |-Module-|Repository from "@|-BaseModule-|/abstraction/repositories/|-module-|Repository";
let repository = new |-Module-|Repository();
export default {
async load|-Module-|({ commit, state }) {
if () {
}
try {
commit("SET_LOADING", true);
const |-module-| = await repository.index();

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

@ -3,24 +3,26 @@ import {addIndexTreeToList} from '@Global/utils/common/ProcessTreeArray';
export default {
SET_|-MODULE-|(state, |-module-|) {
Vue.set(state, '|-snake_module-|', addIndexTreeToList(|-module-|));
Vue.set(state, '|-module-|', addIndexTreeToList(|-module-|));
},
UPDATE_|-MODULE-|(state, |-module-|) {
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-|));
const index = state.|-module-|.findIndex(x => x.id === |-module-|.id);
Vue.set(state.|-module-|, index, |-module-|);
Vue.set(state, '|-module-|', addIndexTreeToList(state.|-module-|));
},
REMOVE_|-MODULE-|(state, id) {
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-|));
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, '|-module-|', addIndexTreeToList(state.|-module-|));
},
ADD_|-MODULE-|(state, |-module-|) {
Vue.set(state.|-snake_module-|, state.|-snake_module-|.length, |-module-|);
Vue.set(state, '|-snake_module-|', addIndexTreeToList(state.|-snake_module-|))
Vue.set(state.|-module-|, state.|-module-|.length, |-module-|);
Vue.set(state, '|-module-|', addIndexTreeToList(state.|-module-|))
},
ADD_|-MODULE-|_SELECTED(state, |-module-|Id) {
@ -29,13 +31,13 @@ export default {
},
SET_FILTER_|-MODULE-|(state, value) {
Vue.set(state, 'filtered_|-snake_module-|', value);
Vue.set(state, 'filtered_|-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);
Vue.set(state, 'filtered_|-module-|', [value]);
Vue.set(state, 'has_filter', false);
},
SET_LOADING(state, value) {
state.loading = value;

@ -4,10 +4,10 @@ export default {
module: '|-baseModule-|',
},
filter: [],
is_filtered: false,
|-snake_module-|: [],
filtered_|-snake_module-|: [],
|-snake_module-|_selected: [],
has_filter: false,
|-module-|: [],
filtered_|-module-|: [],
|-module-|_selected: [],
loading: false,
default_category: {
id: null,

@ -1,9 +1,7 @@
export default {
get|-Module-|s: state => state.|-module-|_list,
get|-Module-|: state => state.|-module-|,
get|-Module-|Loading: state => state.loading,
get|-Module-|Pagination: state => state.pagination,
getRowsPerPageItems: state => state.rowsPerPageItems,
get|-Module-|Selected: state => state.|-module-|_selected,
isFiltered|-Module-|: state => state.is_filtered,
get|-Module-|Selected: state => state.selected,
};

@ -1,4 +1,5 @@
import Vue from 'vue';
//import { |-module-|Paginate } from "@|-BaseModule-|/services/localStorage/|-module-|.storage"
export default {
SET_|-MODULE-|(state, |-module-|) {
@ -6,35 +7,34 @@ export default {
},
UPDATE_|-MODULE-|(state, |-module-|) {
const index = state.|-module-|_list.findIndex(x => x.id === |-module-|.id);
|-module-| = {...state.|-module-|_list[index], ...|-module-|};
Vue.set(state.|-module-|_list, index, |-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", {...state.pagination, ...pagination});
Vue.set(state, "pagination", pagination);
//|-module-|Paginate.save(pagination);
},
REMOVE_|-MODULE-|(state, id) {
const Index = state.|-module-|_list.findIndex(x => x.id === id);
const Index = state.|-module-|.findIndex(x => x.id === id);
const selectedIndex = state.|-module-|_selected.findIndex(x => x.id === id);
Vue.delete(state.|-module-|_list, Index);
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);
},
ADD_|-MODULE-|(state, |-module-|) {
state.|-module-|_list.unshift(|-module-|);
Vue.set(state, '|-module-|_list', state.|-module-|_list);
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);
},
ADD_|-MODULE-|_SELECTED(state, |-module-|Id) {
const |-module-| = state.|-module-|_list.find(x => x.id === |-module-|Id);
const |-module-| = state.|-module-|.find(x => x.id === |-module-|Id);
Vue.set(state.|-module-|_selected, state.|-module-|_selected.length, |-module-|);
},
@ -43,6 +43,6 @@ export default {
},
SET_LOADING(state, value) {
Vue.set(state, 'loading', value);
state.loading = value;
}
};

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

@ -7,6 +7,7 @@
<v-container fluid class="Login">
<div class="Tile">
<router-view/>
<!-- <wm-tiles-layout></wm-tiles-layout> -->
</div>
</v-container>
</v-main>
@ -16,11 +17,11 @@
<script>
import Background from "@Global/components/Body/Backgrounds/Gradient-CSS";
import Menu from "@Global/components/Drawer/SideBar";
import {mapMutations} from "vuex";
import Background from "@Global/components/Body/Backgrounds/Gradient-CSS";
import Menu from "@Global/components/Drawer/SideBar";
import { mapMutations } from "vuex";
export default {
export default {
components: {
"wm-background": Background,
appMenu: Menu
@ -29,21 +30,20 @@
...mapMutations("common", ["SET_CURRENT_MODULE"])
},
created() {
this.SET_CURRENT_MODULE("product");
this.SET_CURRENT_MODULE("");
}
};
};
</script>
<style lang="scss">
#app {
#app {
background-color: transparent;
// -webkit-font-smoothing: antialiased;
// -moz-osx-font-smoothing: grayscale;
}
.WM-Container-Fluid {
}
.WM-Container-Fluid {
width: 100%;
height: 100%;
}
}
</style>

@ -6,12 +6,6 @@ import store from './store'
//vuetify
import vuetify from '@Global/plugins/vuetify'
//Policy
import './policy'
//veeValidate => 0.3MB
import "@Global/plugins/veeValidate";
//components
import '@Global/plugins/globalComponent.js'
@ -21,6 +15,11 @@ import '@Global/plugins/globalComponent.js'
import HintText from "@Global/components/Texts/Hint.vue";
Vue.component('wm-hint-text', HintText)
//vue
window.Vue = Vue;
//mixin
import { global } from "@Global/mixins/global";
import { commingSoon } from "@Global/mixins/commingSoon";

@ -12,7 +12,7 @@
imageAddress="MacRed.jpg"
></page-title>
<!-- <module-items :modules="modules" />-->
<module-items :modules="modules" />
<!-- <div :class="'ModuleItem '+module.color_class+'Border'">-->
<!-- <div :class="'itrator En '+module.color_class+'&#45;&#45;text'">{{index+1}}</div>-->
<!-- <v-layout row wrap class="WM-Margin-0">-->
@ -101,11 +101,11 @@
<script>
//import ModuleItems from "@Admin/components/Client/Module/Items.vue";
import ModuleItems from "@Admin/components/Client/Module/Items.vue";
import { mapGetters, mapActions, mapMutations } from "vuex";
export default {
components: {
// ModuleItems,
ModuleItems,
},
data() {
return {
@ -132,14 +132,14 @@ export default {
};
},
computed: {
...mapGetters("rolePermission", ["getHomeModules", "getModules"])
...mapGetters("rolePermission", ["getAllModules", "getModules"])
},
methods: {
...mapActions("rolePermission", ["loadHomeModules", "loadModules"]),
...mapActions("rolePermission", ["loadAllModules", "loadModules"]),
async loadPage() {
await this.loadHomeModules({ home_page: true });
await this.loadAllModules({ home_page: true });
await this.loadModules({ home_page: true });
for (const allModule of this.getHomeModules) {
for (const allModule of this.getAllModules) {
let module = this.getModules.find(x => x.id == allModule.id);
if (module) {
allModule['has_module'] = 'yes';
@ -148,7 +148,7 @@ export default {
allModule['has_module'] = 'no';
}
}
this.allModules = this.getHomeModules;
this.allModules = this.getAllModules;
}
},
beforeMount() {

@ -1,24 +1,28 @@
<template>
<v-container class="not-fluid">
<v-container>
<v-row class="reverse">
<v-col xl="8" lg="8" offset-xl="2" offset-lg="2" class="fade-in fast delay-01">
<big-section-title title_fa="سیستم مدیریت یک پارچه" title_en="Integrated Management System" desc="هر آنچه مربوط به مدیریت مجموعه ی شما می باشد."/>
<big-section-title title_fa="سیستم مدیریت یک پارچه" title_en="Integrated Management System" desc="هر آنچه مربوط به مدیریت مجموعه ی شما می باشد." />
</v-col>
</v-row>
<v-row>
<a
:href="module.hasModule ? module.href : 'javascript:void(0)'"
:class="`module col col-xl-2 col-md-2 col-sm-4 col-xs-6 pa-0 fade-in fast flex-justified-center ${module.main_class}`"
v-for="( module ,key ) in modules"
:href="module.href"
:class="'flex fade-in fast ' + module.main_class"
v-for="( module ,key ) in getModules"
:key="key"
:style="`animation-delay: ${key * 0.1}s;`"
>
<icon-tile
:theme="module.title_class"
:class="module.hasModule ? '' : 'has-blur'"
:theme="module.title_class +' Shadowed'"
:TitleEn="module.title_en"
:TitleFa="module.title_fa"
:GradientBegin="module.gradient_begin"
:GradientEnd="module.gradient_end"
:icon="module.img_url"
:height="module.img_height"
:Desc="module.description"
/>
</a>
</v-row>
@ -31,48 +35,39 @@
</template>
<script>
import IconTile from '@Global/components/Tiles/Icon-Tile';
import {mapGetters, mapActions} from "vuex";
import routes from '@Global/utils/common/routes';
import BigSectionTitle from '@Global/components/Dividers/Section-Title-Big';
import Tile from "@Global/components/Tiles/Tile";
import IconTile from '@Global/components/Tiles/Icon-Tile';
import { mapGetters, mapActions } from "vuex";
import routes from '@Global/utils/common/routes';
import BigSectionTitle from '@Global/components/Dividers/Section-Title-Big';
export default {
export default {
data: () => ({
hostname: window.location.hostname,
originHostName: routes.originHostName()
hostname : window.location.hostname,
originHostName : routes.originHostName()
}),
components: {
IconTile,
BigSectionTitle
},
computed: {
...mapGetters("rolePermission", ["getModules", "getAllModules"]),
...mapGetters("rolePermission", ["getModules"]),
...mapGetters("auth", ["getAuthUser"]),
modules() {
let modules = this.getAllModules.filter(x => x.load_in_home === "yes");
return modules.map(x => {
if (this.getModules.map(y => y.id).includes(x.id)) {
x.hasModule = true;
} else {
x.hasModule = false;
}
return x;
});
}
},
methods: {
...mapActions("rolePermission", ["loadModules", "loadAllModules"]),
...mapActions("rolePermission", ["loadModules"]),
},
created() {
this.loadModules();
this.loadAllModules();
this.loadModules({ home_page: true });
}
};
};
</script>
<style scoped lang="scss">
.module.border-left {
border-left: 1px solid #d4d4d4;
.container {
max-width: 1785px;
}
</style>

@ -27,7 +27,6 @@ return [
"string" => ":attribute باید بین :min و :max کاراکتر باشد.",
"array" => ":attribute باید بین :min و :max آیتم باشد.",
],
"after_or_equal" => ":attribute باید بزرگتر یا مساوی :date باشد.",
"boolean" => "The :attribute field must be true or false",
"confirmed" => ":attribute با تاییدیه مطابقت ندارد.",
"date" => ":attribute یک تاریخ معتبر نیست.",
@ -36,7 +35,7 @@ return [
"digits" => ":attribute باید :digits رقم باشد.",
"digits_between" => ":attribute باید بین :min و :max رقم باشد.",
"email" => "فرمت :attribute معتبر نیست.",
"exists" => "این :attribute معتبر نمی باشد.",
"exists" => "این :attribute وجود دارد.",
"image" => ":attribute باید تصویر باشد.",
"in" => ":attribute انتخاب شده، معتبر نیست.",
"integer" => ":attribute باید نوع داده ای عددی باشد.",
@ -110,7 +109,6 @@ return [
*/
'attributes' => [
'today' => 'امروز',
'blog_category_id' => 'دسته بندی',
'slug' => 'نام انگلیسی',
'email' => 'آدرس پست الکترونیکی',

@ -0,0 +1,36 @@
@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;
}

@ -0,0 +1,86 @@
/* --------------------------------------------------------
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;
}

@ -0,0 +1,85 @@
/*
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);
}
}

@ -0,0 +1,542 @@
.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

@ -0,0 +1,542 @@
.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;'); }

@ -0,0 +1,553 @@
[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;'); }

@ -0,0 +1,598 @@
@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

After

Width:  |  Height:  |  Size: 243 KiB

@ -0,0 +1,125 @@
/* --------------------------------------------------------
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';
}

@ -0,0 +1,729 @@
@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;
}

@ -0,0 +1,651 @@
#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;
}

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

@ -0,0 +1,107 @@
.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;
}
}

@ -0,0 +1,20 @@
/*---------------------------------------------------------------*/
/* 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;
}
}

@ -0,0 +1,174 @@
//--------------------------------------------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;
}

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

@ -0,0 +1,241 @@
@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';

@ -12,5 +12,5 @@
*/
Route::view('main/{any?}', 'Home');
Route::view('WebsiteManagement/{any?}', 'WebsiteManagement');
Route::redirect('{any?}/{any1?}/{any3?}', '/main/home');

@ -3,17 +3,8 @@
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
use Illuminate\Support\Facades\Http;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
/**
* @return \WM\Core\Services\HttpTestProvider Http request provider for test enviroment
*/
public function makeHttpReqeust($url)
{
return \WM\Core\Services\HttpTestProvider::init($url);
}
}

16
webpack.mix.js vendored

@ -1,5 +1,4 @@
const mix = require('laravel-mix');
const path = require('path');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
@ -33,26 +32,19 @@ mix.webpackConfig({
}
});
mix.js('resources/js/Home/app.js', 'public/js/vue/Home').vue({version: 2});
mix.js('resources/js/Home/app.js', 'public/js/vue/Home');
require('./modules/wm-core/webpack.mix');
require('./modules/wm-common/webpack.mix');
require('./modules/wm-crm/webpack.mix');
require('./modules/wm-blog/webpack.mix');
require('./modules/wm-portfolio/webpack.mix');
require('./modules/wm-finance/webpack.mix');
require('./modules/wm-product/webpack.mix');
require('./modules/wm-service/webpack.mix');
require('./modules/wm-store/webpack.mix');
require('./modules/wm-admin/webpack.mix');
require('./modules/wm-notification/webpack.mix');
require('./modules/wm-roll-call/webpack.mix');
require('./modules/wm-finance/webpack.mix');
require('./modules/wm-app-management/webpack.mix');
require('./modules/wm-web-builder/webpack.mix');
require('./modules/wm-lms/webpack.mix');
require('./modules/wm-service-store/webpack.mix');
// require('./modules/wm-warehouse/webpack.mix');
require('./modules/wm-warehouse/webpack.mix');
// require('./modules/wm-web-builder/webpack.mix');
// require('./modules/wm-reservation/webpack.mix');
require('./modules/wm-contact-us/webpack.mix');
mix.version();

@ -1,58 +0,0 @@
const mix = require('laravel-mix');
const path = require('path');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel application. By default, we are compiling the Sass
| file for the application as well as bundling up all the JS files.
|
*/
mix.webpackConfig({
resolve: {
extensions: ["*", ".js", ".jsx", ".vue", ".ts", ".tsx", '.json', '.d.ts'],
alias: {
'@JS': path.resolve(__dirname, 'resources/js'),
'@Home': path.resolve(__dirname, 'resources/js/Home'),
},
},
output: {
chunkFilename: 'js/vue/chunks/[name].[chunkhash].js',
},
module: {
rules: [
{
test: /\.ts$/,
loader: "ts-loader",
options: { appendTsSuffixTo: [/\.vue$/] },
exclude: /node_modules/
}
]
}
});
mix.js('resources/js/Home/app.js', 'public/js/vue/Home').vue({version: 2});
require('./modules/wm-core/webpack.mix');
require('./modules/wm-common/webpack.mix');
require('./modules/wm-crm/webpack.mix');
require('./modules/wm-blog/webpack.mix');
require('./modules/wm-portfolio/webpack.mix');
require('./modules/wm-product/webpack.mix');
require('./modules/wm-service/webpack.mix');
require('./modules/wm-store/webpack.mix');
require('./modules/wm-admin/webpack.mix');
require('./modules/wm-notification/webpack.mix');
require('./modules/wm-roll-call/webpack.mix');
require('./modules/wm-finance/webpack.mix');
require('./modules/wm-app-management/webpack.mix');
require('./modules/wm-web-builder/webpack.mix');
require('./modules/wm-lms/webpack.mix');
require('./modules/wm-service-store/webpack.mix');
require('./modules/wm-contact-us/webpack.mix');
// require('./modules/wm-warehouse/webpack.mix');
// require('./modules/wm-reservation/webpack.mix');
mix.version();

@ -1,59 +0,0 @@
const mix = require('laravel-mix');
const path = require('path');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel application. By default, we are compiling the Sass
| file for the application as well as bundling up all the JS files.
|
*/
mix.webpackConfig({
resolve: {
extensions: ["*", ".js", ".jsx", ".vue", ".ts", ".tsx", '.json', '.d.ts'],
alias: {
'@JS': path.resolve(__dirname, 'resources/js'),
'@Home': path.resolve(__dirname, 'resources/js/Home'),
},
},
output: {
chunkFilename: 'js/vue/chunks/[name].[chunkhash].js',
},
module: {
rules: [
{
test: /\.ts$/,
loader: "ts-loader",
options: { appendTsSuffixTo: [/\.vue$/] },
exclude: /node_modules/
}
]
}
});
mix.js('resources/js/Home/app.js', 'public/js/vue/Home').vue({version: 2});
require('./vendeor/wm/core/webpack.mix');
require('./vendeor/wm/common/webpack.mix');
require('./vendeor/wm/crm/webpack.mix');
require('./vendeor/wm/blog/webpack.mix');
require('./vendeor/wm/portfolio/webpack.mix');
require('./vendeor/wm/product/webpack.mix');
require('./vendeor/wm/service/webpack.mix');
require('./vendeor/wm/store/webpack.mix');
require('./vendeor/wm/admin/webpack.mix');
require('./vendeor/wm/notification/webpack.mix');
require('./vendeor/wm/roll-call/webpack.mix');
require('./vendeor/wm/finance/webpack.mix');
require('./vendeor/wm/app-management/webpack.mix');
require('./vendeor/wm/web-builder/webpack.mix');
require('./vendeor/wm/service-store/webpack.mix');
require('./vendeor/wm/lms/webpack.mix');
require('./vendeor/wm/service-store/webpack.mix');
require('./vendeor/wm/contact-us/webpack.mix');
// require('./vendeor/wm/warehouse/webpack.mix');
// require('./vendeor/wm/reservation/webpack.mix');
mix.version();

@ -1,55 +0,0 @@
[supervisord]
nodaemon=true
user = root
[supervisorctl]
[inet_http_server]
port = 127.0.0.1:9001
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
[program:scheduler]
process_name=%(program_name)s_%(process_num)02d
command=/bin/sh -c "while [ true ]; do (php /var/www/html/artisan schedule:run --verbose --no-interaction &); sleep 60; done"
autostart=true
autorestart=true
numprocs=1
user=www-data
redirect_stderr=true
stdout_logfile=/var/log/supervisor/scheduler.log
[program:change-store-order-status]
process_name=%(program_name)s_%(process_num)02d
command=php /var/www/html/artisan queue:work redis --queue=change_to_successful_store_order --sleep=3 --tries=3 --max-time=3600
autostart=true
autorestart=true
stopasgroup=true
killasgroup=true
user=www-data
numprocs=3
redirect_stderr=true
stopwaitsecs=3600
stdout_logfile=/var/log/supervisor/change-store-order-status.log
[program:create-store-product]
process_name=%(program_name)s_%(process_num)02d
command=php /var/www/html/artisan queue:work redis --queue=create_store_product --sleep=3 --tries=3 --max-time=3600
autostart=true
autorestart=true
stopasgroup=true
killasgroup=true
user=www-data
numprocs=3
redirect_stderr=true
stopwaitsecs=3600
stdout_logfile=/var/log/supervisor/create-store-product.log
# [program:check-sms-status]
# command=php /var/www/html/artisan queue:work redis --queue=check-sms-status --tries=3
# process_name=%(program_name)s_%(process_num)02d
# autostart=true
# autorestart=true
# user=www-data
# numprocs=3
# redirect_stderr=true
# stdout_logfile=/var/log/supervisor/sms-status.log

14934
yarn.lock

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save