pull/87/head
Farid Saravi 4 years ago
commit 64e15b95d7

BIN
.rnd

Binary file not shown.

@ -2,8 +2,10 @@
namespace App\Exceptions;
use Exception;
use Throwable;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use WM\Core\Exceptions\ValidationErrorException;
use WM\Core\Services\Responser;
class Handler extends ExceptionHandler
{
@ -29,10 +31,10 @@ class Handler extends ExceptionHandler
/**
* Report or log an exception.
*
* @param \Exception $exception
* @param \Throwable $exception
* @return void
*/
public function report(Exception $exception)
public function report(Throwable $exception)
{
parent::report($exception);
}
@ -41,11 +43,14 @@ class Handler extends ExceptionHandler
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
* @param \Throwable $exception
* @return \Illuminate\Http\Response
*/
public function render($request, Exception $exception)
public function render($request, Throwable $exception)
{
if ($exception instanceof ValidationErrorException) {
return response()->json(Responser::error($exception->getMessageBody(), $exception->getMessageInfo()), 422);
}
return parent::render($request, $exception);
}
}

@ -3,6 +3,7 @@
namespace App\Providers;
use App\Services\MorphModelFinder;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
@ -15,6 +16,7 @@ class AppServiceProvider extends ServiceProvider
public function boot()
{
app(MorphModelFinder::class)->map();
Schema::defaultStringLength(191);
}
/**

@ -8,15 +8,15 @@
],
"license": "MIT",
"require": {
"php": "^7.2",
"php": "^7.4",
"coraxster/flysystem-aws-s3-v3-minio": "^1.0",
"fideloper/proxy": "^4.0",
"kalnoy/nestedset": "^5.0",
"laravel/framework": "^6.2",
"laravel/passport": "^7.3",
"laravel/tinker": "^1.0",
"laravel/framework": "^8.0",
"laravel/passport": "^10",
"laravel/tinker": "^2.0",
"maatwebsite/excel": "^3.1",
"spatie/laravel-medialibrary": "^7.0.0",
"nestedset/willaarts": "^5.0.7",
"spatie/laravel-medialibrary": "^8.0.0",
"wm/blog": "dev-master",
"wm/common": "dev-master",
"wm/core": "dev-master",
@ -24,16 +24,18 @@
"wm/portfolio": "dev-master",
"wm/product": "dev-master",
"wm/service": "dev-master",
"wm/store": "dev-master",
"wm/warehouse": "dev-master",
"wm/store": "dev-dev",
"zircote/swagger-php": "^3.0"
},
"provide": {
"ext-imagick": "*"
},
"require-dev": {
"facade/ignition": "^1.4",
"facade/ignition": "^2.3.6",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^3.0",
"phpunit/phpunit": "^8.0"
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.0"
},
"config": {
"optimize-autoloader": true,
@ -106,10 +108,6 @@
{
"type": "path",
"url": "./modules/wm-store"
},
{
"type": "path",
"url": "./modules/wm-warehouse"
}
]
}

4883
composer.lock generated

File diff suppressed because it is too large Load Diff

@ -38,9 +38,7 @@ return [
| application. If disabled, a simple generic error page is shown.
|
*/
'debug' => env('APP_DEBUG', false),
'debug' => (bool) env('APP_DEBUG', false),
/*
|--------------------------------------------------------------------------
| Application URL

@ -0,0 +1,34 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Cross-Origin Resource Sharing (CORS) Configuration
|--------------------------------------------------------------------------
|
| Here you may configure your settings for cross-origin resource sharing
| or "CORS". This determines what cross-origin operations may execute
| in web browsers. You are free to adjust these settings as needed.
|
| To learn more: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
|
*/
'paths' => ['api/*'],
'allowed_methods' => ['*'],
'allowed_origins' => ['*'],
'allowed_origins_patterns' => [],
'allowed_headers' => ['*'],
'exposed_headers' => [],
'max_age' => 0,
'supports_credentials' => false,
];

@ -1,5 +1,7 @@
<?php
use Illuminate\Support\Str;
return [
/*
@ -35,6 +37,7 @@ return [
'sqlite' => [
'driver' => 'sqlite',
'url' => env('DATABASE_URL'),
'database' => env('DB_DATABASE', database_path('database.sqlite')),
'prefix' => '',
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
@ -42,6 +45,7 @@ return [
'mysql' => [
'driver' => 'mysql',
'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'forge'),
@ -52,12 +56,16 @@ return [
'collation' => 'utf8mb4_unicode_ci',
'prefix' => '',
'prefix_indexes' => true,
'strict' => false,
'strict' => true,
'engine' => null,
'options' => extension_loaded('pdo_mysql') ? array_filter([
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
]) : [],
],
'pgsql' => [
'driver' => 'pgsql',
'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '5432'),
'database' => env('DB_DATABASE', 'forge'),
@ -72,6 +80,7 @@ return [
'sqlsrv' => [
'driver' => 'sqlsrv',
'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', '1433'),
'database' => env('DB_DATABASE', 'forge'),
@ -110,20 +119,27 @@ return [
'redis' => [
'client' => 'predis',
'client' => env('REDIS_CLIENT', 'phpredis'),
'options' => [
'cluster' => env('REDIS_CLUSTER', 'redis'),
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
],
'default' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => env('REDIS_DB', 0),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_DB', '0'),
],
'cache' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => env('REDIS_CACHE_DB', 1),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_CACHE_DB', '1'),
],
],

@ -13,7 +13,7 @@ return [
|
*/
'default' => env('FILESYSTEM_DRIVER', 'local'),
'default' => env('FILESYSTEM_DRIVER', 'public'),
/*
|--------------------------------------------------------------------------
@ -51,7 +51,7 @@ return [
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'url' => env('APP_URL').'/',
'visibility' => 'public',
],
@ -62,11 +62,14 @@ return [
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
'endpoint' => env('AWS_ENDPOINT'),
],
'media_dev' => [
'driver' => 'local',
'root' => public_path(),
'url' => '',
'visibility' => 'public'
],
'media' => [
@ -80,4 +83,18 @@ return [
],
/*
|--------------------------------------------------------------------------
| Symbolic Links
|--------------------------------------------------------------------------
|
| Here you may configure the symbolic links that will be created when the
| `storage:link` Artisan command is executed. The array keys should be
| the locations of the links and the values should be their targets.
|
*/
'links' => [
public_path('/storage') => storage_path('app/public'),
],
];

@ -1,5 +1,6 @@
<?php
use Monolog\Handler\NullHandler;
use Monolog\Handler\StreamHandler;
use Monolog\Handler\SyslogUdpHandler;
@ -36,19 +37,20 @@ return [
'channels' => [
'stack' => [
'driver' => 'stack',
'channels' => ['daily'],
'channels' => ['single'],
'ignore_exceptions' => false,
],
'single' => [
'driver' => 'single',
'path' => storage_path('logs/laravel.log'),
'level' => 'debug',
'level' => env('LOG_LEVEL', 'debug'),
],
'daily' => [
'driver' => 'daily',
'path' => storage_path('logs/laravel.log'),
'level' => 'debug',
'level' => env('LOG_LEVEL', 'debug'),
'days' => 14,
],
@ -57,12 +59,12 @@ return [
'url' => env('LOG_SLACK_WEBHOOK_URL'),
'username' => 'Laravel Log',
'emoji' => ':boom:',
'level' => 'critical',
'level' => env('LOG_LEVEL', 'critical'),
],
'papertrail' => [
'driver' => 'monolog',
'level' => 'debug',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => SyslogUdpHandler::class,
'handler_with' => [
'host' => env('PAPERTRAIL_URL'),
@ -81,12 +83,21 @@ return [
'syslog' => [
'driver' => 'syslog',
'level' => 'debug',
'level' => env('LOG_LEVEL', 'debug'),
],
'errorlog' => [
'driver' => 'errorlog',
'level' => 'debug',
'level' => env('LOG_LEVEL', 'debug'),
],
'null' => [
'driver' => 'monolog',
'handler' => NullHandler::class,
],
'emergency' => [
'path' => storage_path('logs/laravel.log'),
],
],

@ -4,45 +4,73 @@ return [
/*
|--------------------------------------------------------------------------
| Mail Driver
| Default Mailer
|--------------------------------------------------------------------------
|
| Laravel supports both SMTP and PHP's "mail" function as drivers for the
| sending of e-mail. You may specify which one you're using throughout
| your application here. By default, Laravel is setup for SMTP mail.
|
| Supported: "smtp", "sendmail", "mailgun", "mandrill", "ses",
| "sparkpost", "log", "array"
| This option controls the default mailer that is used to send any email
| messages sent by your application. Alternative mailers may be setup
| and used as needed; however, this mailer will be used by default.
|
*/
'driver' => env('MAIL_DRIVER', 'smtp'),
'default' => env('MAIL_MAILER', 'smtp'),
/*
|--------------------------------------------------------------------------
| SMTP Host Address
| Mailer Configurations
|--------------------------------------------------------------------------
|
| Here you may provide the host address of the SMTP server used by your
| applications. A default option is provided that is compatible with
| the Mailgun mail service which will provide reliable deliveries.
| Here you may configure all of the mailers used by your application plus
| their respective settings. Several examples have been configured for
| you and you are free to add your own as your application requires.
|
*/
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
/*
|--------------------------------------------------------------------------
| SMTP Host Port
|--------------------------------------------------------------------------
| Laravel supports a variety of mail "transport" drivers to be used while
| sending an e-mail. You will specify which one you are using for your
| mailers below. You are free to add additional mailers as required.
|
| This is the SMTP port used by your application to deliver e-mails to
| users of the application. Like the host we have set this value to
| stay compatible with the Mailgun e-mail application by default.
| Supported: "smtp", "sendmail", "mailgun", "ses",
| "postmark", "log", "array"
|
*/
'port' => env('MAIL_PORT', 587),
'mailers' => [
'smtp' => [
'transport' => 'smtp',
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
'port' => env('MAIL_PORT', 587),
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'timeout' => null,
'auth_mode' => null,
],
'ses' => [
'transport' => 'ses',
],
'mailgun' => [
'transport' => 'mailgun',
],
'postmark' => [
'transport' => 'postmark',
],
'sendmail' => [
'transport' => 'sendmail',
'path' => '/usr/sbin/sendmail -bs',
],
'log' => [
'transport' => 'log',
'channel' => env('MAIL_LOG_CHANNEL'),
],
'array' => [
'transport' => 'array',
],
],
/*
|--------------------------------------------------------------------------
@ -60,47 +88,6 @@ return [
'name' => env('MAIL_FROM_NAME', 'Example'),
],
/*
|--------------------------------------------------------------------------
| E-Mail Encryption Protocol
|--------------------------------------------------------------------------
|
| Here you may specify the encryption protocol that should be used when
| the application send e-mail messages. A sensible default using the
| transport layer security protocol should provide great security.
|
*/
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
/*
|--------------------------------------------------------------------------
| SMTP Server Username
|--------------------------------------------------------------------------
|
| If your SMTP server requires a username for authentication, you should
| set it here. This will get used to authenticate with your server on
| connection. You may also set the "password" value below this one.
|
*/
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
/*
|--------------------------------------------------------------------------
| Sendmail System Path
|--------------------------------------------------------------------------
|
| When using the "sendmail" driver to send e-mails, we will need to know
| the path to where Sendmail lives on this server. A default path has
| been provided here, which will work well on most of your systems.
|
*/
'sendmail' => '/usr/sbin/sendmail -bs',
/*
|--------------------------------------------------------------------------
| Markdown Mail Settings
@ -120,17 +107,4 @@ return [
],
],
/*
|--------------------------------------------------------------------------
| Log Channel
|--------------------------------------------------------------------------
|
| If you are using the "log" driver, you may specify the logging channel
| if you prefer to keep mail messages separate from other log entries
| for simpler reading. Otherwise, the default channel will be used.
|
*/
'log_channel' => env('MAIL_LOG_CHANNEL'),
];

@ -20,17 +20,16 @@ return [
*/
'queue_name' => '',
/*
* By default all conversions will be performed on a queue.
*/
'queue_conversions_by_default' => env('QUEUE_CONVERSIONS_BY_DEFAULT', true),
/*
* The fully qualified class name of the media model.
*/
'media_model' => WM\Common\Services\Media\Media::class,
's3' => [
/*
* The domain that should be prepended when generating urls.
*/
'domain' => 'https://cdn.willaspace.com/' . env('MINIO_BUCKET') ,
],
'remote' => [
/*
@ -71,11 +70,28 @@ return [
],
/*
* When urls to files get generated, this class will be called. Leave empty
* if your files are stored locally above the site root or on s3.
* When converting Media instances to response the media library will add
* a `loading` attribute to the `img` tag. Here you can set the default
* value of that attribute.
*
* Possible values: 'lazy', 'eager', 'auto' or null if you don't want to set any loading instruction.
*
* More info: https://css-tricks.com/native-lazy-loading/
*/
'url_generator' => env('MEDIA_DISK', 'media') != 'media' ? null : 'WM\Common\Services\Media\UrlGenerator\S3UrlGenerator',
'default_loading_attribute_value' => null,
/*
* This is the class that is responsible for naming conversion files. By default,
* it will use the filename of the original and concatenate the conversion name to it.
*/
'conversion_file_namer' => Spatie\MediaLibrary\Conversions\DefaultConversionFileNamer::class,
/*
* When urls to files get generated, this class will be called. Use the default
* if your files are stored locally above the site root or on s3.
*/
'url_generator' => Spatie\MediaLibrary\Support\UrlGenerator\DefaultUrlGenerator::class ,
/*
* Whether to activate versioning when urls to files get generated.
* When activated, this attaches a ?v=xx query string to the URL.
@ -85,7 +101,7 @@ return [
/*
* The class that contains the strategy for determining a media file's path.
*/
'path_generator' => 'WM\Common\Services\Media\PathGenerator',
'path_generator' => WM\Common\Services\Media\PathGenerator::class,
/*
* Medialibrary will try to optimize all converted images by removing
@ -118,18 +134,18 @@ return [
* These generators will be used to create an image of media files.
*/
'image_generators' => [
Spatie\MediaLibrary\ImageGenerators\FileTypes\Image::class,
Spatie\MediaLibrary\ImageGenerators\FileTypes\Webp::class,
Spatie\MediaLibrary\ImageGenerators\FileTypes\Pdf::class,
Spatie\MediaLibrary\ImageGenerators\FileTypes\Svg::class,
Spatie\MediaLibrary\ImageGenerators\FileTypes\Video::class,
Spatie\MediaLibrary\Conversions\ImageGenerators\Image::class,
Spatie\MediaLibrary\Conversions\ImageGenerators\Webp::class,
Spatie\MediaLibrary\Conversions\ImageGenerators\Pdf::class,
Spatie\MediaLibrary\Conversions\ImageGenerators\Svg::class,
Spatie\MediaLibrary\Conversions\ImageGenerators\Video::class
],
/*
* The engine that should perform the image conversions.
* Should be either `gd` or `imagick`.
*/
'image_driver' => env( 'IMAGE_DRIVER','imagick'),
'image_driver' => env( 'IMAGE_DRIVER','gd'),
/*
* FFMPEG & FFProbe binaries paths, only used if you try to generate video
@ -150,8 +166,8 @@ return [
* your custom jobs extend the ones provided by the package.
*/
'jobs' => [
'perform_conversions' => Spatie\MediaLibrary\Jobs\PerformConversions::class,
'generate_responsive_images' => Spatie\MediaLibrary\Jobs\GenerateResponsiveImages::class,
'perform_conversions' => Spatie\MediaLibrary\Conversions\Jobs\PerformConversionsJob::class,
'generate_responsive_images' => Spatie\MediaLibrary\ResponsiveImages\Jobs\GenerateResponsiveImagesJob::class,
],
'wm-cdn' => 'https://cdn.willaspace.com',

@ -46,6 +46,7 @@ return [
'host' => 'localhost',
'queue' => 'default',
'retry_after' => 90,
'block_for' => 0,
],
'sqs' => [
@ -79,6 +80,7 @@ return [
*/
'failed' => [
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
'database' => env('DB_CONNECTION', 'mysql'),
'table' => 'failed_jobs',
],

@ -188,12 +188,12 @@ return [
|
| This option determines how your cookies behave when cross-site requests
| take place, and can be used to mitigate CSRF attacks. By default, we
| do not enable this as other CSRF protection services are in place.
| will set this value to "lax" since this is a secure default value.
|
| Supported: "lax", "strict"
| Supported: "lax", "strict", "none", null
|
*/
'same_site' => null,
'same_site' => 'lax',
];

@ -1,34 +0,0 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class TempBussinessAddIsVirtualColumn extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('businesses', function (Blueprint $table) {
$table->enum('is_virtual', ['yes', 'no'])->default('yes');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
if (Schema::hasColumn('businesses', 'is_virtual')) {
Schema::table('businesses', function (Blueprint $table) {
$table->dropColumn('is_virtual');
});
}
}
}

@ -1,34 +0,0 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class TempAppendRoleNameEnColumn extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('tbl_roles', function (Blueprint $table) {
$table->string('name_en');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
if (Schema::hasColumn('tbl_roles', 'name_en')) {
Schema::table('tbl_roles', function (Blueprint $table) {
$table->dropColumn('name_en');
});
}
}
}

@ -1,36 +0,0 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class TempAppendPermissionNameEnModuleIdColumn extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('tbl_permissions', function (Blueprint $table) {
$table->string('name_en');
$table->unsignedInteger('module_id')->nullable();
$table->index('module_id');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
if (Schema::hasColumn('tbl_permissions', 'name_en')) {
Schema::table('tbl_roles', function (Blueprint $table) {
$table->dropColumn('name_en');
});
}
}
}

@ -1,37 +0,0 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class TempModuleBusinessColumnExpiresAt extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$dbName = config('core.db_name');
Schema::table($dbName . '.module_business', function (Blueprint $table) {
$table->timestamp('expires_at')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
$dbName = config('core.db_name');
if (Schema::hasColumn($dbName . '.module_business', 'expires_at')) {
Schema::table($dbName . '.module_business', function (Blueprint $table) {
$table->dropColumn('expires_at');
});
}
}
}

@ -1,50 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class TempUpdateColumns extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$dbName = config('crm.db_name');
Schema::table("$dbName.clients", function (Blueprint $table) {
$table->string('father_name', 255)->nullable();
$table->string('telegram', 255)->nullable();
$table->string('website', 255)->nullable();
$table->text('description')->nullable();
$table->unsignedInteger('client_title_id')->nullable();
$table->foreign('client_title_id')->references('id')->on('client_titles');
$table->dropColumn('client_category_id');
});
Schema::table("$dbName.client_statuses", function (Blueprint $table) {
$table->string('color', 255)->nullable();
$table->string('icon', 255)->nullable();
});
$dbName = config('common.db_name');
Schema::table("$dbName.task_statuses", function (Blueprint $table) {
$table->string('color', 255)->nullable();
$table->string('icon', 255)->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
}
}

@ -1,38 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddFirstNameLastNameColumn extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table("users", function (Blueprint $table) {
$table->string('first_name', 255)->nullable()->after('name');
$table->string('last_name', 255)->nullable()->after('first_name');
});
$dbName = config("crm.db_name");
Schema::table($dbName . ".clients", function (Blueprint $table) {
$table->string('first_name', 255)->nullable()->after('name');
$table->string('last_name', 255)->nullable()->after('first_name');
$table->string('file_code', 255)->nullable()->after('last_name');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}

@ -1,45 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class UpdateTableUsers extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->string('file_code')->nullable();
$table->enum('user_type', ['natural','juridical'])->default('natural');
$table->string('responsibility')->default('client');
$table->string('father_name')->nullable();
$table->string('website')->nullable();
$table->text('description')->nullable();
$table->unsignedInteger('user_status_id')->nullable();
$table->unsignedInteger('user_title_id')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('file_code');
$table->dropColumn('user_type');
$table->dropColumn('father_name');
$table->dropColumn('website');
$table->dropColumn('description');
$table->dropColumn('user_status_id');
$table->dropColumn('user_title_id');
});
}
}

@ -1,42 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class NewUpdateTableUsers extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->date('marriage_date')->nullable();
$table->string('company_type', 50)->nullable();
$table->enum('sex', ['male','female'])->nullable();
$table->string('registration_number',50)->nullable();
$table->string('economic_code', 50)->nullable();
$table->timestamp('modified_at')->nullable()->default(\DB::raw('CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP'));
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('marriage_date');
$table->dropColumn('company_type');
$table->dropColumn('sex');
$table->dropColumn('registration_number');
$table->dropColumn('economic_code');
$table->dropColumn('modified_at');
});
}
}

@ -1,10 +1,10 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddLoadInHomeColumn extends Migration
class CreateCacheTable extends Migration
{
/**
* Run the migrations.
@ -13,9 +13,10 @@ class AddLoadInHomeColumn extends Migration
*/
public function up()
{
$dbName = config('core.db_name');
Schema::table($dbName . '.modules', function (Blueprint $table) {
$table->enum('load_in_home', ['yes', 'no'])->default('yes');
Schema::create('cache', function (Blueprint $table) {
$table->string('key')->unique();
$table->mediumText('value');
$table->integer('expiration');
});
}
@ -26,6 +27,6 @@ class AddLoadInHomeColumn extends Migration
*/
public function down()
{
Schema::dropIfExists('cache');
}
}

@ -1,18 +0,0 @@
<?php
use Illuminate\Database\Seeder;
class CrmCategoriesSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
factory(WM\CRM\Models\Category::class, 50)->create()->each(function ($category) {
});
}
}

@ -11,7 +11,15 @@ class DatabaseSeeder extends Seeder
*/
public function run()
{
// $this->call(ModuleSeeder::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);
}
}

6989
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -34,6 +34,7 @@
"izitoast": "^1.4.0",
"jalali-moment": "^3.3.3",
"loadash": "^1.0.0",
"moment": "^2.29.1",
"object-to-formdata": "^2.1.2",
"postcss-loader": "^3.0.0",
"prismjs": "^1.21.0",
@ -67,7 +68,7 @@
"deepmerge": "^4.0.0",
"fibers": "^4.0.1",
"jquery": "^3.5.1",
"laravel-mix": "^4.0.15",
"laravel-mix": "^5.0.9",
"material-design-icons-iconfont": "^4.0.3",
"node-sass": "^4.14.1",
"popper.js": "^2.0.0-next.4",
@ -76,6 +77,8 @@
"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",

@ -1,60 +1,55 @@
<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
*/
use Illuminate\Contracts\Http\Kernel;
use Illuminate\Http\Request;
define('LARAVEL_START', microtime(true));
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
| Check If Application Is Under Maintenance
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| our application. We just need to utilize it! We'll simply require it
| into the script here so that we don't have to worry about manual
| loading any of our classes later on. It feels great to relax.
| If the application is maintenance / demo mode via the "down" command we
| will require this file so that any prerendered template can be shown
| instead of starting the framework, which could cause an exception.
|
*/
require __DIR__.'/../vendor/autoload.php';
if (file_exists(__DIR__.'/../storage/framework/maintenance.php')) {
require __DIR__.'/../storage/framework/maintenance.php';
}
/*
|--------------------------------------------------------------------------
| Turn On The Lights
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| We need to illuminate PHP development, so let us turn on the lights.
| This bootstraps the framework and gets it ready for use, then it
| will load up this application so that we can run it and send
| the responses back to the browser and delight our users.
| Composer provides a convenient, automatically generated class loader for
| this application. We just need to utilize it! We'll simply require it
| into the script here so we don't need to manually load our classes.
|
*/
$app = require_once __DIR__.'/../bootstrap/app.php';
require __DIR__.'/../vendor/autoload.php';
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$app = require_once __DIR__.'/../bootstrap/app.php';
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$kernel = $app->make(Kernel::class);
$response->send();
$response = tap($kernel->handle(
$request = Request::capture()
))->send();
$kernel->terminate($request, $response);

@ -145,5 +145,37 @@ export default {
padding-left: 10px;
}
/*----------------------------------------------------*/
/* Colors */
/*----------------------------------------------------*/
@import "resources/js/Global/scss/_vars.scss";
@each $color,
$value in $colors {
.we-price.theme-#{$color} .discount .percent {
background-color: $value;
}
.we-price.theme-#{$color} .number-original {
color: $value;
}
.we-price.theme-#{$color}-full .number, .we-price.theme-#{$color}-full .label, .we-price.theme-#{$color}-full .prepend-icon, .we-price.theme-#{$color}-full .append-icon {
color: $value;
}
.we-price.border-#{$color} {
border: 1px solid $value;
}
.we-price.border-left-#{$color} {
border-left: 3px solid $value;
border-radius: 0px 5px 5px 0px;
}
}
@each $backgroundColor,
$value in $backgrounds {
.we-price.bg-#{$backgroundColor} {
background-color: $value;
}
}
</style>

@ -53,10 +53,17 @@
margin-right: -10px;
margin-left: -10px;
font-size: 18px;
margin-top: -5px;
}
.we-price.icon-mr-5 .prepend-icon {
margin-right: 5px;
}
.we-price.icon-size-30 .prepend-icon {
font-size: 30px;
}
.we-price.icon-size-30 .number {
margin-bottom: -5px;
}
.we-price .discount {
display: flex;

@ -1,223 +1,297 @@
<template>
<v-layout wrap>
<v-container class="Header">
<v-icon class="Menu" @click.stop="drawer = !drawer" dark>WMi-menu</v-icon>
<a :href="mainHref">
<v-icon class="Home" dark>WMi-Real-Estate</v-icon>
</a>
<v-layout wrap>
<v-container class="Header">
<v-icon class="Menu" @click.stop="drawer = !drawer" dark>WMi-menu</v-icon>
<a :href="mainHref">
<v-icon class="Home" dark>WMi-Real-Estate</v-icon>
</a>
<div class="Name caption"> {{ getAuthUser.name }} </div>
<div class="Time">
<div class="En Bold">{{ getCurrentTime }}</div>
<div class="Fa Thin">{{ new Date() | moment("dddd jDD jMMMM jYYYY") }}</div>
</div>
<!-- <div class="Notification" dark>
<div class="Time">
<div class="En Bold">{{ getCurrentTime }}</div>
<div class="Fa Thin">{{ new Date() | moment("dddd jDD jMMMM jYYYY") }}</div>
</div>
<!-- <div class="Notification" dark>
<wm-notifications></wm-notifications>
</div>-->
</v-container>
</div>-->
</v-container>
<v-navigation-drawer v-model="drawer" app temporary right width="320">
<v-list class="pa-1">
<v-navigation-drawer v-model="drawer" app temporary right width="420">
<v-list class="pa-1">
<div class="row user-info">
<v-flex lg9 class="pa-3">
<img class="Avatar" :src="$_getPath()+'images/Global/Misc/Avatar.png'" />
<img class="Avatar" :src="$_getPath()+'images/Global/Misc/Avatar.png'" />
<div class="Title">
<div class="Name Fa">{{ getAuthUser.name }}</div>
<div class="Role Fa">مدیریت</div>
</div>
</v-flex>
<v-flex lg3>
<a class="LogOut">
<v-tooltip bottom color="black" transition="slide-x-transition">
<a class="LogOut">
<v-tooltip bottom color="black" transition="slide-x-transition">
<template v-slot:activator="{ on }">
<v-btn class="mt-4" small @click.native.stop="logout" slot="activator" outlined fab color="black" dark v-on="on">
<v-icon dark>WMi-off-1</v-icon>
</v-btn>
</template>
<span>خروج از حساب کاربری</span>
</v-tooltip>
</a>
<span>خروج از حساب کاربری</span>
</v-tooltip>
</a>
</v-flex>
</div>
</v-list>
</v-list>
<v-list class="pt-0" dense>
<v-divider class="Divider"/>
<a :href="item.href" v-for="(item, key) in Items" :key="key">
<template v-if="(!item.permissionClass || $_can(item.permissionClass, false, item.module)) && (!item.moduleName || getModules.find(x => x.slug === item.moduleName))">
<wm-list-tile :TitleFa="item.titleFa" :TitleEn="item.titleEn" :icon="item.icon" :tileClass="item.tileClass"/>
</template>
</a>
</v-list>
</v-navigation-drawer>
</v-layout>
<v-list class="pt-0" dense>
<v-divider class="Divider"/>
<a :href="item.href" v-for="(item, key) in Items" :key="key">
<template v-if="(!item.permissionClass || $_can(item.permissionClass, false, item.module)) && ($_hasModule(item.moduleName, true))">
<wm-list-tile :TitleFa="item.titleFa" :TitleEn="item.titleEn" :icon="item.icon" :tileClass="item.tileClass"/>
</template>
</a>
</v-list>
<div class="footer">
<div class="flex-justified-space-between links">
<div class="flex-justified-right texts">
<a href="https://www.willaarts.ir/ContactUs" class="WM-Link"> تماس با ما </a>
<a href="https://www.willaarts.ir/AboutUs" class="WM-Link"> درباره ی ما </a>
<a href="https://www.willaarts.ir/FAQ" class="WM-Link"> سوالات متداول </a>
</div>
<div class="social-media flex-justified-left">
<a href="https://www.aparat.com/WillaArts" class="WM-Link"> <v-icon>WMi-aparat</v-icon> </a>
<a href="https://www.instagram.com/willaarts.ir/" class="WM-Link"> <v-icon>WMi-instagram-2</v-icon> </a>
<a href="https://www.linkedin.com/in/willaartsgroup/" class="WM-Link"> <v-icon>WMi-linkedin-1</v-icon> </a>
</div>
</div>
<a href="https://www.willaarts.ir/ContactUs" class="WM-Link">
<div class="flex-justified-center water-mark">
<v-icon class="text--32">WMi-willa-engine</v-icon>
<div class="text-right">
<div class="Fa"> قدرت گرفته از سیستم ویـــــلااِنجین </div>
<div class="En"> Powered By WillaEngine IMS </div>
</div>
</div>
</a>
</div>
</v-navigation-drawer>
</v-layout>
</template>
<script>
import Tile from "@Global/components/Drawer/Tile";
import Notifications from "@Global/components/Drawer/Notifications";
import Routes from "@Global/utils/common/routes";
import { mapActions, mapGetters } from "vuex";
export default {
data() {
return {
fav: true,
menu: true,
message: false,
hints: true,
drawer: false,
Items: [
{ titleEn: 'My Profile', titleFa: ' حساب کاربری من ', icon: 'user', permissionClass: null, href: '/user/profile' },
{
titleEn: " My Users ",
titleFa: " کاربران مجموعه ی من ",
icon: "users",
permissionClass: "User::index",
module: "core",
href: Routes.user(),
tileClass: 'red-theme',
},
{
titleEn: " Product Management ",
titleFa: " مدیریت محصولات ",
icon: "dropbox",
permissionClass: "Product::index",
module: "core",
href: '/product/home',
tileClass: 'cyan-theme',
},
{
titleEn: " Blog Management ",
titleFa: " مدیریت خبرنامه ",
moduleName: "blog",
icon: "rss",
href: '/blog',
tileClass: 'orange-theme',
},
{
titleEn: " Portfolio Management ",
titleFa: " مدیریت نمونه کارها ",
moduleName: "portfolio",
icon: "art-gallery",
href: '/portfolio',
},
// {
// titleEn: " SMS Management ",
// titleFa: " مدیریت پیام های کوتاه ",
// icon: "comment-alt",
// permissionClass: "SMS::manage",
// href: '/sms/manage',
// }
],
user: { name: "" },
mainHref: Routes.main(),
};
},
components: {
"wm-list-tile": Tile,
"wm-notifications": Notifications
},
methods: {
...mapActions("auth", ["logout"]),
},
computed: {
...mapGetters("auth", ["getAuthUser"]),
...mapGetters("common", ["getCurrentTime"]),
...mapGetters("rolePermission", ["getModules"]),
import Tile from "@Global/components/Drawer/Tile";
import Notifications from "@Global/components/Drawer/Notifications";
import Routes from "@Global/utils/common/routes";
import { mapActions, mapGetters } from "vuex";
export default {
data() {
return {
fav: true,
menu: true,
message: false,
hints: true,
drawer: false,
Items: [
{ titleEn: 'My Profile', titleFa: ' حساب کاربری من ', icon: 'user', permissionClass: null, href: '/user/dashboard' },
{
titleEn: " My Users ",
titleFa: " کاربران مجموعه ی من ",
icon: "users",
permissionClass: "User::index",
module: "core",
href: '/user/home',
tileClass: 'red-theme',
},
{
titleEn: " Product Management ",
titleFa: " مدیریت محصولات ",
icon: "dropbox",
href: '/product/home',
tileClass: 'cyan-theme',
},
{
titleEn: " Blog Management ",
titleFa: " مدیریت خبرنامه ",
moduleName: "blog",
icon: "rss",
href: '/blog',
tileClass: 'orange-theme',
},
{
titleEn: " Portfolio Management ",
titleFa: " مدیریت نمونه کارها ",
moduleName: "portfolio",
icon: "art-gallery",
href: '/portfolio',
},
// {
// titleEn: " SMS Management ",
// titleFa: " مدیریت پیام های کوتاه ",
// icon: "comment-alt",
// permissionClass: "SMS::manage",
// href: '/sms/manage',
// }
],
user: { name: "" },
mainHref: Routes.main(),
};
},
components: {
"wm-list-tile": Tile,
"wm-notifications": Notifications
},
methods: {
...mapActions("auth", ["logout"]),
},
computed: {
...mapGetters("auth", ["getAuthUser"]),
...mapGetters("common", ["getCurrentTime"]),
...mapGetters("rolePermission", ["getModules"]),
}
};
}
};
</script>
<style lang="scss" scoped>
.user-info .Title {
float: right;
}
.user-info .Avatar {
float: right;
width: 48px;
margin: 0px 10px;
}
.user-info .Title .Name {
font-size: 14px;
}
.user-info .Title {
float: right;
}
.user-info .Avatar {
float: right;
width: 48px;
margin: 0px 10px;
}
.user-info .Title .Name {
font-size: 14px;
}
.Header .Menu {
position: absolute;
right: 20px;
top: 20px;
}
.Header .Home {
position: absolute;
right: 50px;
top: 20px;
}
.Header .Name {
position: absolute;
right: 80px;
top: 20px;
color: #fff;
line-height: 18px;
}
.Notification {
position: absolute;
left: 20px;
top: 20px;
}
.Divider {
margin: 0px;
}
.Name {
font-size: 16px;
}
.Role {
font-size: 14px;
color: #aaaaaa;
}
.Time {
text-align: center;
color: #fff;
}
.Time .En {
font-size: 22px;
}
.Time .Fa {
font-size: 14px;
margin-top: -5px;
}
.Header {
padding-bottom: 0px;
}
.LogOut {
position: absolute;
left: 10px;
}
.drawer-trigger {
position: fixed;
top: 0px;
padding: 40px;
background-color: white;
left: 400px;
}
.drawer-trigger.active {
color: red;
}
.Header .Menu {
position: absolute;
right: 20px;
top: 20px;
}
.Header .Home {
position: absolute;
right: 50px;
top: 20px;
}
.Header .Name {
position: absolute;
right: 80px;
top: 20px;
color: #fff;
line-height: 18px;
}
.drawer {
position: fixed;
top: 0px;
left: -600px;
bottom: 0px;
background-color: white;
width: 600px;
.Notification {
position: absolute;
left: 20px;
top: 20px;
}
.Divider {
margin: 0px;
}
.Name {
font-size: 16px;
}
.Role {
font-size: 14px;
color: #aaaaaa;
}
.Time {
text-align: center;
color: #fff;
}
.Time .En {
font-size: 22px;
}
.Time .Fa {
font-size: 14px;
margin-top: -5px;
}
.Header {
padding-bottom: 0px;
}
.LogOut {
position: absolute;
left: 10px;
}
.drawer-trigger {
position: fixed;
top: 0px;
padding: 40px;
background-color: white;
left: 400px;
}
}
.drawer-trigger.active {
color: red;
}
.drawer.open {
left: 0px;
}
.v-application .caption {
font-family: iranyekan-regular!important;
}
.drawer {
position: fixed;
top: 0px;
left: -600px;
bottom: 0px;
background-color: white;
width: 600px;
}
.footer {
position: absolute;
bottom: 0px;
width: 420px;
padding-bottom: 10px;
text-align: center;
padding-left: 20px;
}
.footer .water-mark {
}
.footer .links {
width: 420px;
border-bottom: 1px solid #eeeeee;
padding-bottom: 10px;
margin: auto;
}
.footer .links .texts a {
font-size: 14px;
color: #9e9e9e;
margin-right: 20px;
transition: 0.2s;
.drawer.open {
left: 0px;
}
.v-application .caption {
font-family: iranyekan-regular!important;
}
}
.footer .links .social-media {
padding-left: 10px;
}
.footer .links .social-media a {
margin-right: 5px;
transition: 0.2s;
}
.footer .links .social-media a .v-icon {
color: #9e9e9e;
font-size: 16px;
}
.footer .links a:hover, .footer .links .social-media a:hover .v-icon {
color: #000;
}
.footer .water-mark .v-icon {
font-size: 50px;
color: #000;
}
.footer .water-mark .Fa {
font-size: 16px;
}
.footer .water-mark .En {
font-size: 8px;
text-transform: uppercase;
letter-spacing: 4px;
margin-right: -4px;
}
</style>

@ -1,116 +1,125 @@
<template>
<div class="Tile" :class="tileClass">
<i v-if="icon" class="pre-icon" :class="'WMi-'+icon"/>
<div class="Title">
<div class="TitleFa Fa">{{ TitleFa }}</div>
<div class="TitleEn En">{{ TitleEn }}</div>
<div class="flex-justified-right">
<i v-if="icon" class="pre-icon" :class="'WMi-'+icon"/>
<div class="Title">
<div class="TitleFa Fa">{{ TitleFa }}</div>
<div class="TitleEn En">{{ TitleEn }}</div>
</div>
</div>
<v-icon v-if="hasDetail" class="post-icon">WMi-left-open </v-icon>
<!-- <i v-if="hasDetail" class="WMi-left-open post-icon"></i> -->
</div>
</template>
<script>
export default {
props: {
TitleFa : {default: ' عنوان بخش '},
TitleEn : {default: ' Section Title '},
icon : {default: null},
hasDetail: {default: true},
tileClass: {default: ''}
}
}
export default {
props: {
TitleFa : {default: ' عنوان بخش '},
TitleEn : {default: ' Section Title '},
icon : {default: null},
hasDetail: {default: true},
tileClass: {default: ''}
}
}
</script>
<style scoped>
.Tile {
padding: 1em;
padding-right: 20px;
cursor: pointer;
display: -webkit-inline-flex;
width: 100%;
-webkit-transform: translateZ(0);
transform: translateZ(0);
-webkit-transition: color 1000ms;
transition: color 1000ms;
color: #383838;
text-align: right;
}
.Tile:before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--color-black);
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition: 300ms cubic-bezier(1, 0, 0, 1);
transition: 300ms cubic-bezier(1, 0, 0, 1);
}
.Tile.orange-theme:before {
background: var(--color-orange);
}
.Tile.red-theme:before {
background: var(--color-red);
}
.Tile.cyan-theme:before {
background: var(--color-cyan);
}
.Tile {
padding: 0.4em;
padding-right: 20px;
cursor: pointer;
display: -webkit-inline-flex;
width: 100%;
-webkit-transform: translateZ(0);
transform: translateZ(0);
-webkit-transition: color 1000ms;
transition: color 1000ms;
color: #383838;
text-align: right;
}
.Tile:before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--color-black);
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition: 300ms cubic-bezier(1, 0, 0, 1);
transition: 300ms cubic-bezier(1, 0, 0, 1);
}
.Tile.orange-theme:before {
background: var(--color-orange);
}
.Tile.red-theme:before {
background: var(--color-red);
}
.Tile.cyan-theme:before {
background: var(--color-cyan);
}
.Tile.orange-theme .pre-icon {
color: var(--color-orange);
}
.Tile.red-theme .pre-icon {
color: var(--color-red);
}
.Tile.cyan-theme .pre-icon {
color: var(--color-cyan);
}
.Tile.orange-theme .pre-icon {
color: var(--color-orange);
}
.Tile.red-theme .pre-icon {
color: var(--color-red);
}
.Tile.cyan-theme .pre-icon {
color: var(--color-cyan);
}
.Tile:hover:before {
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
.Tile:hover, .Tile:hover .post-icon, .Tile:hover .pre-icon, .Tile:hover .TitleEn {
color: #fff;
}
.Tile .pre-icon {
padding-left: 5px;
font-size: 35px;
opacity: 0.2;
}
.Tile .Title {
padding-left: 10px;
margin-right:-30px;
}
.Tile:hover:before {
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
.Tile .TitleFa {
font-size: 16px;
line-height: 22px;
}
.Tile .TitleEn {
letter-spacing: 3px;
line-height: 20px;
font-size: 10px;
color: #a29da9;
.Tile .pre-icon {
padding-left: 5px;
margin-top: 5px;
font-size: 35px;
opacity: 1;
transition: 300ms cubic-bezier(1, 0, 0, 1);
}
.Tile .Title {
padding-left: 10px;
margin-right: 0px;
transition: 300ms cubic-bezier(1, 0, 0, 1);
}
}
.Tile .post-icon::before {
margin-top: 0px;
}
.Tile .TitleFa {
font-size: 18px;
line-height: 22px;
color: #000;
transition: 300ms cubic-bezier(1, 0, 0, 1);
}
.Tile .TitleEn {
letter-spacing: 3px;
line-height: 20px;
font-size: 10px;
color: #a0a0a0;
text-transform: uppercase;
transition: 300ms cubic-bezier(1, 0, 0, 1);
}
.Tile:hover, .Tile:hover .post-icon, .Tile:hover .pre-icon, .Tile:hover .TitleEn, .Tile:hover .TitleFa {
color: #fff;
}
.Tile .post-icon::before {
margin-top: 0px;
}
.post-icon {
font-size: 24px !important;
margin-right: auto;
color: #888;
}
.Tile:hover .post-icon {
transform: translateX(-4px);
}
.post-icon {
font-size: 24px !important;
margin-right: auto;
color: #888;
}
.Tile:hover .post-icon {
transform: translateX(-4px);
}
</style>

@ -0,0 +1,75 @@
<template>
<v-row :class="`ma-0 mt-2 checklist`">
<v-col xl="12" class="pt-4 pb-0 pr-0"> <section-title theme="sm" title-fa="چک لیست" title-en="check list" /></v-col>
<v-col xl="12" class="task-item row ma-0 mt-1 pt-1 pb-1 section-bordered flex-justified-space-between" :class="(task_status) ? 'done' : ''">
<div class="flex-justified-right">
<div class="En Bold text--24 counter">1</div>
<v-switch :color="$_color('task')" inset class="mr-2" v-model="task_status" />
<div class="Fa pr-2 text"> چک کردن سئو وبسایت وردک </div>
</div>
<div class="flex-justified-left">
<v-btn fab x-small :color="$_color('task')" dark>
<v-icon dark>WMi-pencil</v-icon>
</v-btn>
<v-btn fab x-small color="red" dark>
<v-icon dark>WMi-minus</v-icon>
</v-btn>
</div>
</v-col>
<v-col xl="12" class="row ma-0 mt-1 pt-1 pb-1 section-bordered flex-justified-right">
<v-text-field
v-validate="'min:4'"
label=" متن آیتم را وارد کنید "
color="cyan"
prepend-icon="WMi-text"
></v-text-field>
<v-btn
fab
small
color="cyan"
dark
class="mr-3"
>
<v-icon dark>WMi-plus</v-icon>
</v-btn>
</v-col>
<!-- <div class="add-button-row flex-justified-center">-->
<!-- <v-icon>WMi-plus</v-icon>-->
<!-- </div>-->
</v-row>
</template>
<script>
export default {
props: {
},
data: function () {
return {
task_status: false,
};
},
};
</script>
<style lang="scss" scoped>
.checklist .counter {
width: 30px;
border-left: 1px solid #eeeeec;
}
.checklist .task-item {
transition: 0.2s;
border-radius: 5px;
}
.task-item.done {
border: 1px solid var(--color-purple);
background-color: var(--color-bg-purple);
}
.task-item .text {
transition: 2.0s;
}
.task-item.done .text {
text-decoration: line-through;
text-decoration-color: var(--color-purple);
}
</style>

@ -1,6 +1,6 @@
<template>
<v-row :class="`radio-group ${theme}`">
<v-col v-for="(item, index) in items" :key="index" :xl="item[itemSize]" class="pt-0" @click="changeSelected($event, item || {})">
<v-col v-for="(item, index) in items" :key="index" :xl="item[itemSize]" :lg="item[itemSize]" class="pt-0" @click="changeSelected($event, item || {})">
<div :class="{'active': isActive(item), [item[itemTheme]]: true, ['theme-' + item[itemColor] ]: true, ['bubble']: true}">
<div class="body">
<div v-if="item[itemIcon]" :class="`icon ${(item[itemIconClass]) ? item[itemIconClass] : ''}`">
@ -95,11 +95,14 @@
border-radius: 20px;
text-align: center;
padding: 12px;
opacity: 0.3;
opacity: 0.4;
transition: ease all 0.3s;
cursor: pointer;
margin: 0px;
}
.fill-on-active .bubble {
opacity: 0.6;
}
.bubble .body {
display: flex;
justify-content: center;
@ -109,9 +112,7 @@
.bubble.text-left .body {
padding-left: 30px;
}
.bubble:hover, .bubble.active {
opacity: 1;
}
.bubble .v-icon {
font-size: 45px !important;
line-height: 45px;
@ -138,7 +139,7 @@
}
//------------------------Theme Colors
@import '../../scss/_vars.scss';
@import "resources/js/Global/scss/_vars.scss";
@each $Color,
$Value in $colors {
.bubble.theme-#{$Color} {
@ -149,6 +150,13 @@
.bubble.theme-#{$Color} .v-icon {
color: $Value;
}
.fill-on-active .bubble.theme-#{$Color}:hover, .fill-on-active .bubble.theme-#{$Color}.active {
background-color: $Value;
color: #fff;
}
.fill-on-active .bubble.theme-#{$Color}:hover .v-icon, .fill-on-active .bubble.theme-#{$Color}.active .v-icon {
color: #fff;
}
}
@each $Color,
$Value in $backgrounds {
@ -157,6 +165,10 @@
}
}
.bubble:hover, .bubble.active {
opacity: 1;
}
.bubble .En {
letter-spacing: 5px;
font-size: 10px;
@ -189,6 +201,10 @@
line-height: 20px;
margin-left: 5px;
}
.bubble.fa-only.icon-large .v-icon {
font-size: 25px !important;
line-height: 20px;
}
.bubble.fa-only .Fa {
font-size: 14px !important;
}

@ -1,6 +1,6 @@
<template>
<v-dialog v-model="modal" :width="width" :transition="transition">
<component v-if="modal" :is="name" />
<v-dialog v-model="modal" :max-width="maxWidth" :width="width" :transition="transition">
<slot :modal="modal" :data="data" v-if="modal"></slot>
</v-dialog>
</template>
@ -10,21 +10,21 @@
export default {
props: {
width:{default: '60%'},
name:{default: ''},
transition:{default: 'slide-x-transition'},
width: {default: null},
maxWidth: {default: null},
name: {default: null},
transition: {default: 'slide-x-transition'},
},
data:() => ({
data: () => ({
isOpenModal: false,
}),
components:{
'modal_task_list': () => '@Common/components/Task/Timeline/Modal-Layout.vue',
'modal_task_add': () => '@Common/components/Task/AddEdit/Modal-Add.vue'
},
computed: {
...mapGetters("modal", ["isModal"]),
...mapGetters("modal", ["isModal", "getModal"]),
modal: {
get() {
return this.isModal(this.name);
const isOpen = this.isModal(this.modalName);
this.emitModal(isOpen);
return isOpen;
},
set(value) {
if (!value) {
@ -32,7 +32,27 @@
}
}
},
modalName() {
return this.name ? this.name : this.$parent.$options.name;
},
data() {
return this.getModal(this.modalName);
}
},
methods: {
emitModal(isOpen) {
if (this.isOpenModal && !isOpen) {
this.isOpenModal = false;
this.$emit('close');
} else if (!this.isOpenModal && isOpen) {
this.isOpenModal = true;
this.$emit('open', this.data);
this.$parent.modalData = this.data;
}
}
},
beforeDestroy() {
this.emitModal(false);
}
}
</script>

@ -1,5 +1,5 @@
<template>
<v-dialog v-model="modal" width="40%" transition="slide-x-transition">
<basic-modal width="40%" transition="slide-x-transition">
<v-card class="RTL">
<v-card-title class="red lighten-5" primary-title>
<WM-PartTitle
@ -38,11 +38,11 @@
</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</basic-modal>
</template>
<script>
import { mapActions, mapGetters } from "vuex";
import { mapGetters } from "vuex";
export default {
name: "modal_modal_dialog",
data: () => ({
@ -77,17 +77,7 @@ export default {
}
},
computed: {
...mapGetters("modal", ["isModal", "getModal", "getDialogType", "getDialogProperties"]),
modal: {
get() {
return this.isModal(this.$options.name);
},
set(value) {
if (!value) {
this.$_closeModal();
}
}
},
...mapGetters("modal", ["getDialogType", "getDialogProperties"]),
},
methods: {
async confirm() {

@ -1,5 +1,5 @@
<template>
<v-dialog v-model="modal" :width="properties.properties && properties.properties.width ? properties.properties.width : '60%'" transition="slide-x-transition">
<basic-modal :width="properties.properties && properties.properties.width ? properties.properties.width : '60%'" transition="slide-x-transition">
<v-card class="RTL">
<v-card-title :class="[properties.properties && properties.properties.color ? properties.properties.color : 'blue', 'lighten-5']" primary-title>
<WM-PartTitle
@ -28,12 +28,11 @@
</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</basic-modal>
</template>
<script>
import { mapActions, mapGetters } from "vuex";
import axios from 'axios';
import { mapGetters } from "vuex";
import { url } from '@Common/mixins/urls';
export default {
name: "modal_modal_helper",
@ -41,26 +40,14 @@ export default {
properties: {}
}),
computed: {
...mapGetters("modal", ["isModal", "getModal"]),
modal: {
get() {
return this.isModal(this.$options.name);
},
set(value) {
if (!value) {
this.$_closeModal();
}
}
},
...mapGetters("modal", ["getModal"]),
},
methods: {
async getDate() {
if (this.modal) {
let response = await axios.get(url('help', {help: this.getModal(this.$options.name).slug}));
if (response && response.status == 200) {
this.properties = response.data.data;
this.properties.properties = (response.data.data.properties) ? JSON.parse(response.data.data.properties) : null;
}
let response = await this.$axios.get(url('help', {help: this.getModal(this.$options.name).slug}));
if (response && response.status === 200) {
this.properties = response.data.data;
this.properties.properties = (response.data.data.properties) ? JSON.parse(response.data.data.properties) : null;
}
}
},

@ -8,7 +8,10 @@ var CommingSoonArray = [
"portfolio-statistics",
"blog-statistics",
"blog-post",
"client_export"
"blog-setting",
"client_export",
"blog-videos",
"roll-staff",
];
const commingSoon = {
methods: {

@ -1,5 +1,5 @@
import { mapActions } from "vuex";
import $_can from "@Global/policy/can";
import $_can, {$_hasModule} from "@Global/policy/can";
import $_name from "@Global/utils/category-name/name";
import $_color from "@Global/utils/module-color";
const global = {
@ -21,15 +21,22 @@ const global = {
...mapActions("modal", [
"$_dialog",
"$_helper",
"$_openModal",
"__openModal",
"$_closeModal"
]),
$_openModal(name, data = {}) {
if (typeof name == 'object') {
this.__openModal(name)
} else {
this.__openModal({...data, ...{name}})
}
},
$_can,
$_hasModule,
$_name,
$_color,
}
};

@ -24,6 +24,9 @@ Vue.component("section-title", SectionTitle);
import SectionTitleVertical from "@Global/components/Dividers/SectionTitle-Vertical.vue";
Vue.component("section-title-vertical", SectionTitleVertical);
import BasicModal from "@Global/components/Modals/BasicModal";
Vue.component("basic-modal", BasicModal);
import Breadcrumbs from "@Global/components/Misc/Breadcrumbs";
import Dialog from "@Global/components/Modals/Dialog.vue";
import Helper from "@Global/components/Modals/Helper.vue";

@ -0,0 +1,89 @@
/**
* Vue Router
*
* @library
*
* https://router.vuejs.org/en/
*/
// Lib imports
import Vue from 'vue'
import Router from 'vue-router'
import Meta from 'vue-meta'
Vue.use(Router);
Vue.use(Meta);
import { TokenService } from "@Global/services/storage.services";
import commonRoute from "@Global/utils/common/routes";
export default class {
constructor(paths, callbackDynamicImport, redirect) {
this.create(paths, callbackDynamicImport, redirect);
this.beforeLoad();
return this.router;
}
route(options, callbackDynamicImport) {
let path = options.path;
let view = options.view;
let name = options.name;
let meta = (options.meta) ? options.meta : '';
return {
name: name || view,
path,
meta,
component: callbackDynamicImport(view)
}
}
create(paths, callbackDynamicImport, redirect) {
const self = this;
redirect = redirect ? redirect : paths[0].path;
this.router = new Router({
mode: 'history',
routes: paths.map(path => self.route(path, callbackDynamicImport)).concat([
{ path: '*', redirect: redirect }
]),
scrollBehavior(to, from, savedPosition) {
if (savedPosition) {
return savedPosition
}
if (to.hash) {
return { selector: to.hash }
}
return { x: 0, y: 0 }
}
});
}
beforeLoad() {
this.router.beforeEach((to, from, next) => {
const isPublic = to.matched.some(record => record.meta.public);
const onlyWhenLoggedOut = to.matched.some(
record => record.meta.onlyWhenLoggedOut
);
const roles = to.meta && to.meta.roles ? to.meta.roles : null;
const loggedIn = !!TokenService.getToken();
if (!isPublic && !loggedIn) {
return window.location.href = commonRoute.login() + '?redirect=' + to.fullPath;
}
// Do not allow user to visit login page or register page if they are logged in
if (loggedIn && onlyWhenLoggedOut && policy) {
return window.location.href = commonRoute.main();
}
next();
});
}
}

@ -1,8 +1,8 @@
import policyClasses from '@Global/policy';
import { UserService } from "@Global/services/storage.services";
import globalStore from "@Global/store";
import authStore from "@Core/store";
import Routes from "@Global/utils/common/routes"
import Vue from "vue";
export default (model, object, module = null) => {
//Access To All Place For Site Manager
@ -18,10 +18,17 @@ export default (model, object, module = null) => {
let permissions = rootPermissions[module] ? Object.values(rootPermissions[module]) : [] ;
//instance policty class
let policy = new policyClasses[policyClass];
let policy = new Vue.prototype.$policiesClasses[policyClass];
if (typeof policy == 'object' && typeof policy[policymethod] == 'function' ) {
return policy[policymethod]({module, rootPermissions, permissions}, object);
} else {
return false;
}
};
export const $_hasModule = (moduleName, defaultParam) => {
if (defaultParam && typeof moduleName === 'undefined') {
return true;
}
return authStore.getters['rolePermission/getModules'].find(x => x.slug === moduleName)
};

@ -1,17 +0,0 @@
import CRMPolicy from '@CRM/policy';
import BlogPolicy from '@Blog/policy';
import PortfolioPolicy from '@Portfolio/policy';
import ProductPolicy from '@Product/policy';
import ServicePolicy from '@Service/policy';
import CorePolicy from '@Core/policy';
import CommonPolicy from '@Common/policy';
export default {
...PortfolioPolicy,
...BlogPolicy,
...CRMPolicy,
...ProductPolicy,
...ServicePolicy,
...CorePolicy,
...CommonPolicy,
}

@ -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,544 @@
.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-camera-timer:before { content: '\e8e6'; } /* '' */
.WMi-stopwatch:before { content: '\e8e8'; } /* '' */
.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,544 @@
.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-camera-timer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e6;&nbsp;'); }
.WMi-stopwatch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e8;&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,555 @@
[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-camera-timer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e6;&nbsp;'); }
.WMi-stopwatch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e8;&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,600 @@
@font-face {
font-family: 'fontello';
src: url('../font/fontello.eot?69142571');
src: url('../font/fontello.eot?69142571#iefix') format('embedded-opentype'),
url('../font/fontello.woff2?69142571') format('woff2'),
url('../font/fontello.woff?69142571') format('woff'),
url('../font/fontello.ttf?69142571') format('truetype'),
url('../font/fontello.svg?69142571#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?69142571#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-camera-timer:before { content: '\e8e6'; } /* '' */
.WMi-stopwatch:before { content: '\e8e8'; } /* '' */
.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: 244 KiB

@ -216,6 +216,12 @@ $Value in $colors {
letter-spacing: 5px;
text-transform: uppercase;
}
.v-tabs.en-small .v-tab .En {
font-size: 10px;
margin-right: 0px;
letter-spacing: 2px;
text-transform: uppercase;
}
/* --------------------------------------------------------
Blocks :: Begin
@ -408,6 +414,9 @@ $Value in $colors {
.mt--8 {
margin-top: -8px;
}
.mt--18 {
margin-top: -18px;
}
.mr--3 {
margin-right: -3px;
}

@ -6,6 +6,10 @@
font-family: "iranyekan-regular", "Montserrat-Regular" !important;
font-weight: 100;
}
.v-application .body-1, .v-application .caption {
font-weight: 100;
font-family: "iranyekan-regular", "Montserrat-Regular" !important;
}
.v-application--is-rtl .v-list-item__action:first-child, .v-application--is-rtl .v-list-item__icon:first-child {
margin-left: 2px;
}
@ -84,6 +88,10 @@ hr {
.v-chip {
margin-bottom: 2px;
}
.v-chip.v-chip--label.sm-padd {
padding-right: 0px;
padding-left: 0px;
}
.nav-tabs .nav-link:not(.active) .v-chip {
background-color: #000 !important;
@ -633,3 +641,14 @@ $Value in $Shadows {
font-size: 14px;
color: rgba(0,0,0,.6);
}
//------------------------------------------------------
// Calendar
//------------------------------------------------------
.v-event.v-event-start div {
padding-right: 4px;
}
.v-badge__badge span {
line-height: 20px;
}

@ -11,7 +11,7 @@ $OrangeBackground: #fff9f8;
//--------------------------------------------Yellow
$Yellow: #ffc107;
$YellowShadow:rgba(234, 223, 131, 0.5);
$YellowBackground: #fff3de;
$YellowBackground: #fffcf7;
//--------------------------------------------Gold
$Gold: #d4ba96;
@ -33,10 +33,6 @@ $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;
@ -78,14 +74,20 @@ $White: #fff;
$WhiteShadow:rgba(255, 255, 255, 0.2);
$WhiteBackground: #ffe5e9;
//--------------------------------------------Green
$Green: #0d7e00;
$GreenShadow:rgba(13, 126, 0, 0.35);
$GreenBackground: #fbfffa;
//--------------------------------------------Teal
$Teal: #00897b;
$Teal: #008080;
$TealShadow:rgba(0, 137, 123, 0.2);
$TealBackground: #ffe5e9;
$TealBackground: #edfffd;
$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);
$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, teal: $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 {

@ -2,62 +2,72 @@ import $_can from "@Global/policy/can";
export default {
$_openModal({ state, rootState }, data) { // data: {name, rel, model, form_data, data, modal_pop_data, type}
__openModal({ state, rootState }, data) { // data: {name, rel, model, form_data, data, modal_pop_data, type}
let can = true;
if (data.can) {
can = $_can(data.can);
}
if (can) {
data.name = 'modal_' + data.name;
if (state.modals.findIndex(x => x.name == data.name) == -1) {
if (state.modals.findIndex(x => x.name === data.name) === -1) {
state.modals.push(data);
let module = data.name.split("_");
if (data.rel) {
rootState[module[1]].relation = data.rel;
state.rel.push(data.rel);
if (module.length > 2) {
if (data.rel) {
rootState[module[1]].relation = data.rel;
state.rel.push(data.rel);
}
if (data.model) {
rootState[module[1]].current_model = data.model;
state.model.push(data.model);
}
rootState[module[1]].page_type = data.page_type ? data.page_type : 'modal';
}
if (data.model) {
rootState[module[1]].current_model = data.model;
state.model.push(data.model);
}
rootState[module[1]].page_type = data.page_type ? data.page_type : 'modal';
}
}
},
$_closeModal({ state, rootState }) {
if (state.modals.length) {
let last_data = [...state.modals].pop();
let module = last_data.name.split("_")[1];
if (state.modals.length > 1) {
state.modals[state.modals.length - 2]['last_modal_data'] = last_data;
} else {
rootState[module].page_type = '';
}
if(last_data.rel) {
state.rel.pop();
if (state.rel.length) {
rootState[module].relation = state.rel[state.rel.length - 1];
} else {
rootState[module].relation = {};
if (last_data.name.split("_").length > 2) {
let module = last_data.name.split("_")[1];
if(state.modals.length <= 1) {
rootState[module].page_type = '';
}
}
if(last_data.model) {
state.model.pop();
if (state.model.length) {
rootState[module].current_model = state.model[state.model.length - 1];
} else {
rootState[module].current_model = {};
if(last_data.rel) {
state.rel.pop();
if (state.rel.length) {
rootState[module].relation = state.rel[state.rel.length - 1];
} else {
rootState[module].relation = {};
}
}
if(last_data.model) {
state.model.pop();
if (state.model.length) {
rootState[module].current_model = state.model[state.model.length - 1];
} else {
rootState[module].current_model = {};
}
}
}
state.modals.pop();
}
},
$_dialog:({commit, dispatch}, properties) => {
properties['name'] = 'modal_dialog';
dispatch('$_openModal', properties);
dispatch('__openModal', properties);
commit('SET_DIALOG_TYPE', properties.type);
commit('SET_DIALOG_PROPERTIES', properties);
@ -67,6 +77,6 @@ export default {
let data = {};
data['name'] = 'modal_helper';
data['slug'] = slug;
dispatch('$_openModal', data);
dispatch('__openModal', data);
},
};

@ -1,12 +1,4 @@
export default {
isModal: (state, getters, rootState) => modal => {
let modalArray = modal.split("/");
if (modalArray.length == 2) {
return rootState[modalArray[0]]["modal"][modalArray[1]];
} else {
return rootState.modal[modalArray[0]];
}
},
getDialogProperties:(state) => state.dialogProperties,
getDialogType:(state) => state.dialogType,

@ -0,0 +1,37 @@
import createFilterObject from "@Global/utils/common/CreateFilterObject";
export const SetQueries = ({filters, sorts, pagination}) => {
let Query = {};
if (typeof filters === 'object') {
filters = createFilterObject(filters);
Query = {...Query, ...filters};
}
if (sorts) {
sorts = sorts ? { 'sorts[]': sorts } : {};
Query = {...Query, ...sorts};
}
if (typeof pagination === 'object') {
pagination = {
per_page: pagination.itemsPerPage,
page: pagination.page
};
Query = {...Query, ...pagination};
}
return Query;
};
export const SetPagination = (paginate) => {
return {
page : paginate.current_page,
pageStop : paginate.to,
pageStart : paginate.from,
pageCount : paginate.last_page,
itemsLength : paginate.total,
itemsPerPage : paginate.per_page,
}
};

@ -0,0 +1,220 @@
export default {
name: 'عمومی',
name_en: 'basic',
icons: [
{
"name": 'تایید',
"css": "ok"
},
{
"name": 'کنسل',
"css": "cancel"
},
{
"name": 'مثبت - افزودن',
"css": "plus"
},
{
"name": 'منفی - کسر کردن - کم کردن',
"css": "minus"
},
{
"name": 'جستجو',
"css": "search"
},
{
"name": 'خانه',
"css": "Real-Estate"
},
{
"name": 'خانه',
"css": "heart-1"
},
{
"name": 'ستاره - نیمه پر',
"css": "star-half-alt"
},
{
"name": 'ستاره - خالی',
"css": "star-empty"
},
{
"name": 'ستاره',
"css": "star"
},
{
"name": 'قلب - خالی',
"css": "heart-empty"
},
{
"name": 'قلب',
"css": "heart"
},
{
"name": 'قلب شکسته',
"css": "heart-broken"
},
{
"name": 'پست الکترونیکی - ایمیل',
"css": "mail-alt"
},
{
"name": 'پاکت نامه ی باز',
"css": "envelope-open"
},
{
"name": 'پاکت نامه ی باز',
"css": "envelope-open-text"
},
{
"name": 'قفل',
"css": "lock"
},
{
"name": 'قبل باز',
"css": "lock-open"
},
{
"name": 'نشان کردن',
"css": "bookmark"
},
{
"name": 'عدم نشان',
"css": "bookmark-empty"
},
{
"name": 'تگ - برچسب',
"css": "tag"
},
{
"name": 'سطل آشغال',
"css": "trash"
},
{
"name": 'تنظیمات',
"css": "sliders"
},
{
"name": 'خاموش',
"css": "off"
},
{
"name": 'کره ی زمین - جهان',
"css": "globe"
},
{
"name": 'لایه ها - طبقه ها',
"css": "layers"
},
{
"name": ' منو - 9 تایی',
"css": "th"
},
{
"name": 'منو - خطی',
"css": "menu"
},
{
"name": 'دانه ی برف',
"css": "asterisk"
},
{
"name": 'دابره',
"css": "circle"
},
{
"name": 'برگشت در زمان',
"css": "back-in-time"
},
{
"name": 'راهنما',
"css": "help"
},
{
"name": 'توجه',
"css": "attention-alt"
},
{
"name": 'تلفن',
"css": "phone"
},
{
"name": 'پیام',
"css": "chat-1"
},
{
"name": 'پیام',
"css": "chat-alt"
},
{
"name": 'ارسال پیام - توخالی',
"css": "message-text-outline"
},
{
"name": 'ارسال پیام',
"css": "message-reply-text"
},
{
"name": 'ارسال پیام',
"css": "send-message"
},
{
"name": 'تقویم',
"css": "calendar-1"
},
{
"name": 'تقویم',
"css": "calendar-alt"
},
{
"name": 'ساعت',
"css": "clock"
},
{
"name": 'ساعت',
"css": "clock-1"
},
{
"name": 'فیلتر',
"css": "filter"
},
{
"name": 'کامنت - نظرات',
"css": "comments-alt"
},
{
"name": 'کامنت - نظرات',
"css": "comment-1"
},
{
"name": 'کامنت - نظرات',
"css": "comments"
},
{
"name": 'نقل قول - سمت راست',
"css": "quote-right-alt"
},
{
"name": 'نقل قول - سمت چپ',
"css": "quote-left-alt"
},
{
"name": 'شارپ - هَش',
"css": "hash"
},
{
"name": 'اثر انگشت',
"css": "fingerprint"
},
{
"name": 'کیلوگرم',
"css": "weight-kilogram"
},
{
"name": 'امن - سپر',
"css": "shield"
},
]
}

@ -0,0 +1,232 @@
export default {
name: 'کسب و کار',
name_en: 'Business',
icons: [
{
"name": 'تنظیمات - چرخ دنده',
"css": "cog"
},
{
"name": 'جعبه - بسته بندی - پکیج',
"css": "cubes"
},
{
"name": 'کیف دستی',
"css": "briefcase"
},
{
"name": 'تبادل - تبدیل',
"css": "exchange"
},
{
"name": 'کلیپس کاغذ',
"css": "attach-1"
},
{
"name": 'سبد خرید',
"css": "basket"
},
{
"name": 'سبد خرید',
"css": "basket-2"
},
{
"name": 'سبد خرید',
"css": "communications"
},
{
"name": 'پاکت خرید',
"css": "shop"
},
{
"name": ' کشاروزی - برگ',
"css": "Agriculture"
},
{
"name": ' کشاروزی - درخت',
"css": "Flowers-and-Plants"
},
{
"name": ' کشاروزی - گل',
"css": "Flowers-And-Plants"
},
{
"name": ' کشاروزی - هویج - میوه',
"css": "carrot"
},
{
"name": ' کشاروزی - سیب - میوه',
"css": "apple-alt"
},
{
"name": 'پزشکی',
"css": "Medical"
},
{
"name": 'قاشق و چنگال',
"css": "Edible-And-Groceries"
},
{
"name": 'صنعتی',
"css": "Industry"
},
{
"name": 'صنعتی - موتور',
"css": "Engineering"
},
{
"name": 'صنعتی - آچار',
"css": "Repairing"
},
{
"name": 'صنعتی - آچار',
"css": "wrench-1"
},
{
"name": 'صنعت - چرخ دنده',
"css": "cogs"
},
{
"name": 'ورزشی - کاپ',
"css": "Sports-and-Entertainment"
},
{
"name": 'ورزش - توپ',
"css": "Sport"
},
{
"name": 'لباس - پوشاک',
"css": "Clothes-And-Personal-Belongings"
},
{
"name": 'چوب لباسی - پوشاک',
"css": "hanger"
},
{
"name": 'خدمات - نظافت',
"css": "Cleaning"
},
{
"name": 'لوازم خانه - مبل',
"css": "Home-And-Office"
},
{
"name": 'آموزشی',
"css": "graduation-cap"
},
{
"name": 'تبلیغات',
"css": "Advertising"
},
{
"name": 'تبلیغات',
"css": "advertisement"
},
{
"name": 'بانک',
"css": "Decoration-And-Building-Industry"
},
{
"name": 'سند',
"css": "doc-text-inv"
},
{
"name": 'زیبایی',
"css": "Beauty"
},
{
"name": 'قیچی',
"css": "content-cut"
},
{
"name": 'قضاوت - وکالت',
"css": "balance-scale"
},
{
"name": 'آزمایش - شیمی',
"css": "beaker"
},
{
"name": 'کیک تولد',
"css": "birthday"
},
{
"name": 'دونات - شیرینی',
"css": "donut"
},
{
"name": 'حیوان - پنجه',
"css": "paw"
},
{
"name": 'بارکد',
"css": "barcode"
},
{
"name": 'کتاب',
"css": "book"
},
{
"name": 'غذا',
"css": "Food"
},
{
"name": 'باز است',
"css": "open"
},
{
"name": 'کتاب ها - اسناد',
"css": "library-books"
},
{
"name": 'انبار',
"css": "warehouse"
},
{
"name": 'پاکت خرید',
"css": "shopping"
},
{
"name": 'ماهی',
"css": "fish"
},
{
"name": 'جام',
"css": "glass-martini-alt"
},
{
"name": 'دندان - دندانپزشکی',
"css": "tooth"
},
{
"name": 'لامپ',
"css": "lamp"
},
{
"name": 'فنجان قهوه داغ',
"css": "mug-hot"
},
{
"name": 'پنیر',
"css": "cheese"
},
{
"name": 'پیتزا',
"css": "pizza-slice"
},
{
"name": 'فلفل تند',
"css": "pepper-hot"
},
{
"name": 'بستنی',
"css": "ice-cream"
},
{
"name": 'همبرگر',
"css": "hamburger"
},
]
}

@ -0,0 +1,58 @@
export default {
name: 'فرم',
name_en: 'Form',
icons: [
{
"name": 'مرتب سازی از چپ',
"css": "indent-left"
},
{
"name": 'مرتب سازی از راست',
"css": "indent-right"
},
{
"name": 'یکسان سازی',
"css": "align-justify-1"
},
{
"name": 'مرتب سازی از بالا به پایین',
"css": "sort-alt-down"
},
{
"name": 'مرتب سازی از پایین به بالا',
"css": "sort-alt-up"
},
{
"name": 'حالت غیر فعال',
"css": "toggle-off"
},
{
"name": 'حالت فعال',
"css": "toggle-on"
},
{
"name": 'خروج',
"css": "logout-1"
},
{
"name": 'ویرایش - مداد',
"css": "pencil"
},
{
"name": 'مرتب سازی از چپ',
"css": "align-left"
},
{
"name": 'مرتب سازی از وسط',
"css": "align-center"
},
{
"name": 'مرتب سازی از راست',
"css": "align-right"
},
{
"name": 'لیست',
"css": "list"
},
]
}

@ -0,0 +1,92 @@
export default {
name: 'چند رسانه',
name_en: 'Multimedia',
icons: [
{
"name": 'تصویر',
"css": "picture"
},
{
"name": 'موسیقی',
"css": "music"
},
{
"name": 'پخش نامنظم',
"css": "shuffle"
},
{
"name": 'افزایش زوم',
"css": "zoom-in"
},
{
"name": 'کاهش زوم',
"css": "zoom-out"
},
{
"name": 'تنظیم کننده صدا',
"css": "equalizer"
},
{
"name": 'قلم نقاشی',
"css": "brush"
},
{
"name": 'بوم نقاشی',
"css": "art-gallery"
},
{
"name": 'انیمیشن',
"css": "animation"
},
{
"name": 'دوربین فیلم برداری',
"css": "videocam"
},
{
"name": 'ویدیو',
"css": "video"
},
{
"name": 'بخش',
"css": "play-1"
},
{
"name": 'متوقف کردن',
"css": "pause-1"
},
{
"name": 'رفتن به بعدی',
"css": "to-end-1"
},
{
"name": 'رفتن به انتها',
"css": "to-end-alt"
},
{
"name": 'بازگشت به قبلی',
"css": "to-start-1"
},
{
"name": 'بازگشت به اول',
"css": "to-start-alt"
},
{
"name": 'بخش سریع به جلو',
"css": "fast-fw"
},
{
"name": 'پخش سریع به عقب',
"css": "fast-bw"
},
{
"name": 'متوقف کردن',
"css": "stop-1"
},
{
"name": 'چندرسانه',
"css": "icons"
},
]
}

@ -0,0 +1,143 @@
export default {
name: 'سایرین',
name_en: 'Others',
icons: [
{
"name": 'هدیه',
"css": "gift"
},
{
"name": 'چوب جادو',
"css": "magic"
},
{
"name": 'ضربان قلب',
"css": "heartbeat"
},
{
"name": 'الماس',
"css": "diamond"
},
{
"name": 'ظروف آشپزی - فنجان',
"css": "HomeAppliances"
},
{
"name": 'درجه حرارت - دما سنج',
"css": "temperatire"
},
{
"name": 'امضا',
"css": "signature"
},
{
"name": 'کورنومتر',
"css": "stopwatch"
},
{
"name": 'زنگ - آلارم',
"css": "alarm-plus"
},
{
"name": 'تاج',
"css": "crown-1"
},
{
"name": 'تخت خواب',
"css": "bed"
},
{
"name": 'برف',
"css": "snowflake-o"
},
{
"name": 'خط کش',
"css": "ruler-combined"
},
{
"name": 'خط کش افقی',
"css": "ruler-horizontal"
},
{
"name": 'پرگار',
"css": "drafting-compass"
},
{
"name": 'نمایش اسلایدی',
"css": "view-carousel"
},
{
"name": 'نمایش بی نظم',
"css": "view-dashboard"
},
{
"name": 'نمایش موازی',
"css": "view-parallel"
},
{
"name": 'نمایش اسلاید - عمودی',
"css": "view-day"
},
{
"name": 'نمایش گرید - جدولی',
"css": "view-quilt"
},
{
"name": 'حروف انگلیسی',
"css": "en-letters"
},
{
"name": 'حروف فارسی',
"css": "fa-letters"
},
{
"name": 'حروف عربی',
"css": "ar-letters"
},
{
"name": 'حداقل',
"css": "min"
},
{
"name": 'متن',
"css": "text"
},
{
"name": 'حداکثر',
"css": "max"
},
{
"name": 'کعبه',
"css": "kaaba"
},
{
"name": 'مسجد',
"css": "mosque"
},
{
"name": 'ماه و ستاره',
"css": "star-and-crescent"
},
{
"name": 'خطر مرگ',
"css": "skull-crossbones"
},
{
"name": 'عنکبوت',
"css": "spider"
},
{
"name": 'رخ شطرنج - اسب',
"css": "horse-head"
},
{
"name": 'تشعشعات',
"css": "radiation"
},
{
"name": 'خطر اشتعال',
"css": "fire-alt"
},
]
}

@ -0,0 +1,111 @@
export default {
name: 'اشخاص',
name_en: 'Persons',
icons: [
{
"name": 'خوشحال',
"css": "emo-happy"
},
{
"name": 'چشمک',
"css": "emo-wink"
},
{
"name": 'چشمک',
"css": "emo-wink2"
},
{
"name": 'ناراحت',
"css": "emo-unhappy"
},
{
"name": 'خواب - ناراحت',
"css": "emo-sleep"
},
{
"name": 'خوردن قهوه',
"css": "emo-coffee"
},
{
"name": 'شاخ - عینک آفتابی',
"css": "emo-sunglasses"
},
{
"name": 'عصبانی',
"css": "emo-angry"
},
{
"name": 'راضی',
"css": "emo-squint"
},
{
"name": 'خندان',
"css": "emo-laugh"
},
{
"name": 'عدم رضایت - ناراضی',
"css": "emo-displeased"
},
{
"name": 'متعجب',
"css": "emo-surprised"
},
{
"name": 'راضی - خوشحال',
"css": "emo-grin"
},
{
"name": 'بسیار خوشحال',
"css": "emo-saint"
},
{
"name": 'زبان دراز',
"css": "emo-tongue"
},
{
"name": 'افزایش مخاطب | کاربر',
"css": "user-plus"
},
{
"name": 'پزشک',
"css": "Medical-Services"
},
{
"name": 'کاربر',
"css": "user"
},
{
"name": 'حذف کاربر',
"css": "user-times"
},
{
"name": 'کاربران',
"css": "users"
},
{
"name": 'غیر فعال کردن کاربر',
"css": "account-off"
},
{
"name": 'افزودن کاربر',
"css": "account-plus"
},
{
"name": 'حذف کاربر',
"css": "account-remove"
},
{
"name": 'ویرایش حساب',
"css": "account-edit"
},
{
"name": 'سرویس بهداشتی - زن و مرد',
"css": "restroom"
},
{
"name": 'پرستار',
"css": "user-nurse"
},
]
}

@ -0,0 +1,80 @@
export default {
name: 'شبکه های اجتماعی',
name_en: 'Social Media',
icons: [
{
"name": 'توییتر',
"css": "twitter"
},
{
"name": 'توییتر',
"css": "twitter-1"
},
{
"name": 'فیس بوک',
"css": "facebook"
},
{
"name": 'پوشش خبری',
"css": "rss"
},
{
"name": 'اینستاگرام',
"css": "instagram"
},
{
"name": 'اینستاگرام',
"css": "instagram-1"
},
{
"name": 'اینستاگرام',
"css": "instagram-2"
},
{
"name": 'تلگرام',
"css": "telegram-1"
},
{
"name": 'تلگرام',
"css": "telegram"
},
{
"name": 'تلگرام',
"css": "telegram-2"
},
{
"name": 'به اشتراک گذاشتن',
"css": "share"
},
{
"name": 'پینترست',
"css": "pinterest"
},
{
"name": 'لینکداین',
"css": "linkedin-squared"
},
{
"name": 'گوگل پلاس',
"css": "gplus"
},
{
"name": 'دراپ باکس',
"css": "dropbox"
},
{
"name": 'آپارات',
"css": "aparat"
},
{
"name": 'یوتیوب',
"css": "youtube"
},
{
"name": 'ویکی پدیا',
"css": "wikipedia"
},
]
}

@ -0,0 +1,72 @@
export default {
name: 'مالی و آمار',
name_en: 'Numeral',
icons: [
{
"name": 'نمودار دایره ای - پای چارت',
"css": "chart-pie"
},
{
"name": 'کارت اعتباری',
"css": "credit-card"
},
{
"name": 'کارت اعتباری',
"css": "credit-card-alt"
},
{
"name": 'درصد',
"css": "percent"
},
{
"name": 'درصد',
"css": "percentage"
},
{
"name": 'نمودار میله ای',
"css": "chart-bar-1"
},
{
"name": 'دانلود',
"css": "chart-bar"
},
{
"name": 'بی نهایت',
"css": "infinity"
},
{
"name": 'مساوی',
"css": "eq"
},
{
"name": 'مساوی',
"css": "equals"
},
{
"name": 'بزرگتر مساوی',
"css": "greater-than-equal"
},
{
"name": 'کوچکتر مساوی',
"css": "less-than-equal"
},
{
"name": 'نا مساوی',
"css": "not-equal"
},
{
"name": 'اعداد',
"css": "number"
},
{
"name": 'چک بانکی',
"css": "money-check-alt"
},
{
"name": 'بانک',
"css": "landmark"
},
]
}

@ -0,0 +1,142 @@
export default {
name: 'تکنولوژی',
name_en: 'Technology',
icons: [
{
"name": 'دانلود',
"css": "download"
},
{
"name": 'فضای ابری',
"css": "cloud"
},
{
"name": 'هارد دیسک - فضای ذخیره سازی',
"css": "hdd-1"
},
{
"name": 'بانک اطلاعات',
"css": "database"
},
{
"name": 'ویندوز',
"css": "windows"
},
{
"name": 'تازه سازی',
"css": "arrows-cw"
},
{
"name": 'وای فای',
"css": "wifi"
},
{
"name": 'سیگنال - آنتن',
"css": "signal"
},
{
"name": 'لینک خراب',
"css": "unlink"
},
{
"name": 'لینک',
"css": "link"
},
{
"name": 'گوگل',
"css": "google"
},
{
"name": 'گوشی تلفن همراه',
"css": "Digital"
},
{
"name": 'موبایل - آیفون',
"css": "mobile"
},
{
"name": 'کامپیوتر - آیمک',
"css": "imac"
},
{
"name": 'لپ تاپ',
"css": "laptop"
},
{
"name": 'تبلت - آیپد',
"css": "tablet"
},
{
"name": 'سیم برق',
"css": "plug"
},
{
"name": 'کد - برنامه نویسی',
"css": "code-1"
},
{
"name": 'وردپرس',
"css": "wordpress"
},
{
"name": 'هدفون - هدست',
"css": "headphones"
},
{
"name": 'اپل',
"css": "apple"
},
{
"name": 'اچ تی ام ال 5',
"css": "html5"
},
{
"name": 'سی اس اس 3',
"css": "css3"
},
{
"name": 'جاوا اسکریپت',
"css": "javascript"
},
{
"name": 'پی اچ پی',
"css": "php"
},
{
"name": 'پایتون',
"css": "python"
},
{
"name": 'موشک',
"css": "Scientific"
},
{
"name": 'آنتن مخابراتی',
"css": "broadcast-tower"
},
{
"name": 'کیبرد',
"css": "electronic"
},
{
"name": 'موس',
"css": "mouse"
},
{
"name": 'کارت حاظفه',
"css": "sd-card"
},
{
"name": 'سیم کارت',
"css": "sim-card"
},
{
"name": 'دانلود از فضای ابری',
"css": "cloud-download-alt"
},
{
"name": 'آپلود در فضای ابری',
"css": "cloud-upload-alt"
},
]
}

@ -0,0 +1,817 @@
<div class="container" id="icons">
<div class="row">
<div class="the-icons span3" title="Code: 0xe800"><i class="demo-icon WMi-ok"></i> <span class="i-name">WMi-ok</span><span class="i-code">0xe800</span></div>
<div class="the-icons span3" title="Code: 0xe801"><i class="demo-icon WMi-picture"></i> <span class="i-name">WMi-picture</span><span class="i-code">0xe801</span></div>
<div class="the-icons span3" title="Code: 0xe802"><i class="demo-icon WMi-search"></i> <span class="i-name">WMi-search</span><span class="i-code">0xe802</span></div>
<div class="the-icons span3" title="Code: 0xe803"><i class="demo-icon WMi-music"></i> <span class="i-name">WMi-music</span><span class="i-code">0xe803</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe804"><i class="demo-icon WMi-star-half"></i> <span class="i-name">WMi-star-half</span><span class="i-code">0xe804</span></div>
<div class="the-icons span3" title="Code: 0xe805"><i class="demo-icon WMi-star-empty"></i> <span class="i-name">WMi-star-empty</span><span class="i-code">0xe805</span></div>
<div class="the-icons span3" title="Code: 0xe806"><i class="demo-icon WMi-star"></i> <span class="i-name">WMi-star</span><span class="i-code">0xe806</span></div>
<div class="the-icons span3" title="Code: 0xe807"><i class="demo-icon WMi-heart-empty"></i> <span class="i-name">WMi-heart-empty</span><span class="i-code">0xe807</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe808"><i class="demo-icon WMi-heart"></i> <span class="i-name">WMi-heart</span><span class="i-code">0xe808</span></div>
<div class="the-icons span3" title="Code: 0xe809"><i class="demo-icon WMi-mail"></i> <span class="i-name">WMi-mail</span><span class="i-code">0xe809</span></div>
<div class="the-icons span3" title="Code: 0xe80a"><i class="demo-icon WMi-cancel"></i> <span class="i-name">WMi-cancel</span><span class="i-code">0xe80a</span></div>
<div class="the-icons span3" title="Code: 0xe80b"><i class="demo-icon WMi-lock"></i> <span class="i-name">WMi-lock</span><span class="i-code">0xe80b</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe80c"><i class="demo-icon WMi-lock-open"></i> <span class="i-name">WMi-lock-open</span><span class="i-code">0xe80c</span></div>
<div class="the-icons span3" title="Code: 0xe80d"><i class="demo-icon WMi-attach"></i> <span class="i-name">WMi-attach</span><span class="i-code">0xe80d</span></div>
<div class="the-icons span3" title="Code: 0xe80e"><i class="demo-icon WMi-link"></i> <span class="i-name">WMi-link</span><span class="i-code">0xe80e</span></div>
<div class="the-icons span3" title="Code: 0xe80f"><i class="demo-icon WMi-bookmark"></i> <span class="i-name">WMi-bookmark</span><span class="i-code">0xe80f</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe810"><i class="demo-icon WMi-upload"></i> <span class="i-name">WMi-upload</span><span class="i-code">0xe810</span></div>
<div class="the-icons span3" title="Code: 0xe811"><i class="demo-icon WMi-download"></i> <span class="i-name">WMi-download</span><span class="i-code">0xe811</span></div>
<div class="the-icons span3" title="Code: 0xe812"><i class="demo-icon WMi-tag"></i> <span class="i-name">WMi-tag</span><span class="i-code">0xe812</span></div>
<div class="the-icons span3" title="Code: 0xe813"><i class="demo-icon WMi-trash-empty"></i> <span class="i-name">WMi-trash-empty</span><span class="i-code">0xe813</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe814"><i class="demo-icon WMi-cog"></i> <span class="i-name">WMi-cog</span><span class="i-code">0xe814</span></div>
<div class="the-icons span3" title="Code: 0xe815"><i class="demo-icon WMi-off-1"></i> <span class="i-name">WMi-off-1</span><span class="i-code">0xe815</span></div>
<div class="the-icons span3" title="Code: 0xe816"><i class="demo-icon WMi-resize-vertical"></i> <span class="i-name">WMi-resize-vertical</span><span class="i-code">0xe816</span></div>
<div class="the-icons span3" title="Code: 0xe817"><i class="demo-icon WMi-down-open"></i> <span class="i-name">WMi-down-open</span><span class="i-code">0xe817</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe818"><i class="demo-icon WMi-left-open"></i> <span class="i-name">WMi-left-open</span><span class="i-code">0xe818</span></div>
<div class="the-icons span3" title="Code: 0xe819"><i class="demo-icon WMi-right-open"></i> <span class="i-name">WMi-right-open</span><span class="i-code">0xe819</span></div>
<div class="the-icons span3" title="Code: 0xe81a"><i class="demo-icon WMi-up-open"></i> <span class="i-name">WMi-up-open</span><span class="i-code">0xe81a</span></div>
<div class="the-icons span3" title="Code: 0xe81b"><i class="demo-icon WMi-user-md"></i> <span class="i-name">WMi-user-md</span><span class="i-code">0xe81b</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe81c"><i class="demo-icon WMi-chat"></i> <span class="i-name">WMi-chat</span><span class="i-code">0xe81c</span></div>
<div class="the-icons span3" title="Code: 0xe81d"><i class="demo-icon WMi-location-arrow"></i> <span class="i-name">WMi-location-arrow</span><span class="i-code">0xe81d</span></div>
<div class="the-icons span3" title="Code: 0xe81e"><i class="demo-icon WMi-indent-left"></i> <span class="i-name">WMi-indent-left</span><span class="i-code">0xe81e</span></div>
<div class="the-icons span3" title="Code: 0xe81f"><i class="demo-icon WMi-indent-right"></i> <span class="i-name">WMi-indent-right</span><span class="i-code">0xe81f</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe820"><i class="demo-icon WMi-align-justify-1"></i> <span class="i-name">WMi-align-justify-1</span><span class="i-code">0xe820</span></div>
<div class="the-icons span3" title="Code: 0xe821"><i class="demo-icon WMi-check"></i> <span class="i-name">WMi-check</span><span class="i-code">0xe821</span></div>
<div class="the-icons span3" title="Code: 0xe822"><i class="demo-icon WMi-credit-card"></i> <span class="i-name">WMi-credit-card</span><span class="i-code">0xe822</span></div>
<div class="the-icons span3" title="Code: 0xe823"><i class="demo-icon WMi-briefcase"></i> <span class="i-name">WMi-briefcase</span><span class="i-code">0xe823</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe824"><i class="demo-icon WMi-off"></i> <span class="i-name">WMi-off</span><span class="i-code">0xe824</span></div>
<div class="the-icons span3" title="Code: 0xe825"><i class="demo-icon WMi-arrows-cw"></i> <span class="i-name">WMi-arrows-cw</span><span class="i-code">0xe825</span></div>
<div class="the-icons span3" title="Code: 0xe826"><i class="demo-icon WMi-shuffle"></i> <span class="i-name">WMi-shuffle</span><span class="i-code">0xe826</span></div>
<div class="the-icons span3" title="Code: 0xe827"><i class="demo-icon WMi-globe"></i> <span class="i-name">WMi-globe</span><span class="i-code">0xe827</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe828"><i class="demo-icon WMi-cloud"></i> <span class="i-name">WMi-cloud</span><span class="i-code">0xe828</span></div>
<div class="the-icons span3" title="Code: 0xe829"><i class="demo-icon WMi-zoom-in"></i> <span class="i-name">WMi-zoom-in</span><span class="i-code">0xe829</span></div>
<div class="the-icons span3" title="Code: 0xe82a"><i class="demo-icon WMi-zoom-out"></i> <span class="i-name">WMi-zoom-out</span><span class="i-code">0xe82a</span></div>
<div class="the-icons span3" title="Code: 0xe82b"><i class="demo-icon WMi-attach-1"></i> <span class="i-name">WMi-attach-1</span><span class="i-code">0xe82b</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe82c"><i class="demo-icon WMi-check-1"></i> <span class="i-name">WMi-check-1</span><span class="i-code">0xe82c</span></div>
<div class="the-icons span3" title="Code: 0xe82d"><i class="demo-icon WMi-cancel-1"></i> <span class="i-name">WMi-cancel-1</span><span class="i-code">0xe82d</span></div>
<div class="the-icons span3" title="Code: 0xe82e"><i class="demo-icon WMi-comment"></i> <span class="i-name">WMi-comment</span><span class="i-code">0xe82e</span></div>
<div class="the-icons span3" title="Code: 0xe82f"><i class="demo-icon WMi-layers"></i> <span class="i-name">WMi-layers</span><span class="i-code">0xe82f</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe830"><i class="demo-icon WMi-signal"></i> <span class="i-name">WMi-signal</span><span class="i-code">0xe830</span></div>
<div class="the-icons span3" title="Code: 0xe831"><i class="demo-icon WMi-equalizer"></i> <span class="i-name">WMi-equalizer</span><span class="i-code">0xe831</span></div>
<div class="the-icons span3" title="Code: 0xe832"><i class="demo-icon WMi-macstore"></i> <span class="i-name">WMi-macstore</span><span class="i-code">0xe832</span></div>
<div class="the-icons span3" title="Code: 0xe833"><i class="demo-icon WMi-emo-happy"></i> <span class="i-name">WMi-emo-happy</span><span class="i-code">0xe833</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe834"><i class="demo-icon WMi-emo-wink"></i> <span class="i-name">WMi-emo-wink</span><span class="i-code">0xe834</span></div>
<div class="the-icons span3" title="Code: 0xe835"><i class="demo-icon WMi-emo-wink2"></i> <span class="i-name">WMi-emo-wink2</span><span class="i-code">0xe835</span></div>
<div class="the-icons span3" title="Code: 0xe836"><i class="demo-icon WMi-emo-unhappy"></i> <span class="i-name">WMi-emo-unhappy</span><span class="i-code">0xe836</span></div>
<div class="the-icons span3" title="Code: 0xe837"><i class="demo-icon WMi-emo-sleep"></i> <span class="i-name">WMi-emo-sleep</span><span class="i-code">0xe837</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe838"><i class="demo-icon WMi-emo-coffee"></i> <span class="i-name">WMi-emo-coffee</span><span class="i-code">0xe838</span></div>
<div class="the-icons span3" title="Code: 0xe839"><i class="demo-icon WMi-emo-sunglasses"></i> <span class="i-name">WMi-emo-sunglasses</span><span class="i-code">0xe839</span></div>
<div class="the-icons span3" title="Code: 0xe83a"><i class="demo-icon WMi-emo-angry"></i> <span class="i-name">WMi-emo-angry</span><span class="i-code">0xe83a</span></div>
<div class="the-icons span3" title="Code: 0xe83b"><i class="demo-icon WMi-emo-squint"></i> <span class="i-name">WMi-emo-squint</span><span class="i-code">0xe83b</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe83c"><i class="demo-icon WMi-emo-laugh"></i> <span class="i-name">WMi-emo-laugh</span><span class="i-code">0xe83c</span></div>
<div class="the-icons span3" title="Code: 0xe83d"><i class="demo-icon WMi-camera"></i> <span class="i-name">WMi-camera</span><span class="i-code">0xe83d</span></div>
<div class="the-icons span3" title="Code: 0xe83e"><i class="demo-icon WMi-emo-displeased"></i> <span class="i-name">WMi-emo-displeased</span><span class="i-code">0xe83e</span></div>
<div class="the-icons span3" title="Code: 0xe83f"><i class="demo-icon WMi-emo-surprised"></i> <span class="i-name">WMi-emo-surprised</span><span class="i-code">0xe83f</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe840"><i class="demo-icon WMi-th"></i> <span class="i-name">WMi-th</span><span class="i-code">0xe840</span></div>
<div class="the-icons span3" title="Code: 0xe841"><i class="demo-icon WMi-asterisk"></i> <span class="i-name">WMi-asterisk</span><span class="i-code">0xe841</span></div>
<div class="the-icons span3" title="Code: 0xe842"><i class="demo-icon WMi-gift"></i> <span class="i-name">WMi-gift</span><span class="i-code">0xe842</span></div>
<div class="the-icons span3" title="Code: 0xe843"><i class="demo-icon WMi-basket"></i> <span class="i-name">WMi-basket</span><span class="i-code">0xe843</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe844"><i class="demo-icon WMi-Beauty-1"></i> <span class="i-name">WMi-Beauty-1</span><span class="i-code">0xe844</span></div>
<div class="the-icons span3" title="Code: 0xe845"><i class="demo-icon WMi-rss-1"></i> <span class="i-name">WMi-rss-1</span><span class="i-code">0xe845</span></div>
<div class="the-icons span3" title="Code: 0xe846"><i class="demo-icon WMi-shop"></i> <span class="i-name">WMi-shop</span><span class="i-code">0xe846</span></div>
<div class="the-icons span3" title="Code: 0xe847"><i class="demo-icon WMi-shop-1"></i> <span class="i-name">WMi-shop-1</span><span class="i-code">0xe847</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe848"><i class="demo-icon WMi-basket-1"></i> <span class="i-name">WMi-basket-1</span><span class="i-code">0xe848</span></div>
<div class="the-icons span3" title="Code: 0xe849"><i class="demo-icon WMi-plus"></i> <span class="i-name">WMi-plus</span><span class="i-code">0xe849</span></div>
<div class="the-icons span3" title="Code: 0xe84a"><i class="demo-icon WMi-minus"></i> <span class="i-name">WMi-minus</span><span class="i-code">0xe84a</span></div>
<div class="the-icons span3" title="Code: 0xe84b"><i class="demo-icon WMi-Real-Estate"></i> <span class="i-name">WMi-Real-Estate</span><span class="i-code">0xe84b</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe84c"><i class="demo-icon WMi-retweet"></i> <span class="i-name">WMi-retweet</span><span class="i-code">0xe84c</span></div>
<div class="the-icons span3" title="Code: 0xe84d"><i class="demo-icon WMi-edit"></i> <span class="i-name">WMi-edit</span><span class="i-code">0xe84d</span></div>
<div class="the-icons span3" title="Code: 0xe84e"><i class="demo-icon WMi-tags"></i> <span class="i-name">WMi-tags</span><span class="i-code">0xe84e</span></div>
<div class="the-icons span3" title="Code: 0xe84f"><i class="demo-icon WMi-map-1"></i> <span class="i-name">WMi-map-1</span><span class="i-code">0xe84f</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe850"><i class="demo-icon WMi-doc-landscape"></i> <span class="i-name">WMi-doc-landscape</span><span class="i-code">0xe850</span></div>
<div class="the-icons span3" title="Code: 0xe851"><i class="demo-icon WMi-logout"></i> <span class="i-name">WMi-logout</span><span class="i-code">0xe851</span></div>
<div class="the-icons span3" title="Code: 0xe852"><i class="demo-icon WMi-login"></i> <span class="i-name">WMi-login</span><span class="i-code">0xe852</span></div>
<div class="the-icons span3" title="Code: 0xe853"><i class="demo-icon WMi-logout-1"></i> <span class="i-name">WMi-logout-1</span><span class="i-code">0xe853</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe854"><i class="demo-icon WMi-back-in-time"></i> <span class="i-name">WMi-back-in-time</span><span class="i-code">0xe854</span></div>
<div class="the-icons span3" title="Code: 0xe855"><i class="demo-icon WMi-chat-alt-1"></i> <span class="i-name">WMi-chat-alt-1</span><span class="i-code">0xe855</span></div>
<div class="the-icons span3" title="Code: 0xe856"><i class="demo-icon WMi-art-gallery"></i> <span class="i-name">WMi-art-gallery</span><span class="i-code">0xe856</span></div>
<div class="the-icons span3" title="Code: 0xe857"><i class="demo-icon WMi-gift-1"></i> <span class="i-name">WMi-gift-1</span><span class="i-code">0xe857</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe858"><i class="demo-icon WMi-switch"></i> <span class="i-name">WMi-switch</span><span class="i-code">0xe858</span></div>
<div class="the-icons span3" title="Code: 0xe859"><i class="demo-icon WMi-level-down"></i> <span class="i-name">WMi-level-down</span><span class="i-code">0xe859</span></div>
<div class="the-icons span3" title="Code: 0xe85a"><i class="demo-icon WMi-help"></i> <span class="i-name">WMi-help</span><span class="i-code">0xe85a</span></div>
<div class="the-icons span3" title="Code: 0xe85b"><i class="demo-icon WMi-location"></i> <span class="i-name">WMi-location</span><span class="i-code">0xe85b</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe85c"><i class="demo-icon WMi-phone"></i> <span class="i-name">WMi-phone</span><span class="i-code">0xe85c</span></div>
<div class="the-icons span3" title="Code: 0xe85d"><i class="demo-icon WMi-phone-1"></i> <span class="i-name">WMi-phone-1</span><span class="i-code">0xe85d</span></div>
<div class="the-icons span3" title="Code: 0xe85e"><i class="demo-icon WMi-share"></i> <span class="i-name">WMi-share</span><span class="i-code">0xe85e</span></div>
<div class="the-icons span3" title="Code: 0xe85f"><i class="demo-icon WMi-Repairing"></i> <span class="i-name">WMi-Repairing</span><span class="i-code">0xe85f</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe860"><i class="demo-icon WMi-shuffle-1"></i> <span class="i-name">WMi-shuffle-1</span><span class="i-code">0xe860</span></div>
<div class="the-icons span3" title="Code: 0xe861"><i class="demo-icon WMi-loop"></i> <span class="i-name">WMi-loop</span><span class="i-code">0xe861</span></div>
<div class="the-icons span3" title="Code: 0xe862"><i class="demo-icon WMi-glyph"></i> <span class="i-name">WMi-glyph</span><span class="i-code">0xe862</span></div>
<div class="the-icons span3" title="Code: 0xe863"><i class="demo-icon WMi-glyph-1"></i> <span class="i-name">WMi-glyph-1</span><span class="i-code">0xe863</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe864"><i class="demo-icon WMi-glyph-2"></i> <span class="i-name">WMi-glyph-2</span><span class="i-code">0xe864</span></div>
<div class="the-icons span3" title="Code: 0xe865"><i class="demo-icon WMi-warning-empty"></i> <span class="i-name">WMi-warning-empty</span><span class="i-code">0xe865</span></div>
<div class="the-icons span3" title="Code: 0xe866"><i class="demo-icon WMi-shop-bag"></i> <span class="i-name">WMi-shop-bag</span><span class="i-code">0xe866</span></div>
<div class="the-icons span3" title="Code: 0xe867"><i class="demo-icon WMi-Clothes"></i> <span class="i-name">WMi-Clothes</span><span class="i-code">0xe867</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe868"><i class="demo-icon WMi-Agriculture"></i> <span class="i-name">WMi-Agriculture</span><span class="i-code">0xe868</span></div>
<div class="the-icons span3" title="Code: 0xe869"><i class="demo-icon WMi-Medical"></i> <span class="i-name">WMi-Medical</span><span class="i-code">0xe869</span></div>
<div class="the-icons span3" title="Code: 0xe86a"><i class="demo-icon WMi-Sports-and-Entertainment"></i> <span class="i-name">WMi-Sports-and-Entertainment</span><span class="i-code">0xe86a</span></div>
<div class="the-icons span3" title="Code: 0xe86b"><i class="demo-icon WMi-wrench-1"></i> <span class="i-name">WMi-wrench-1</span><span class="i-code">0xe86b</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe86c"><i class="demo-icon WMi-pencil"></i> <span class="i-name">WMi-pencil</span><span class="i-code">0xe86c</span></div>
<div class="the-icons span3" title="Code: 0xe86d"><i class="demo-icon WMi-map-2"></i> <span class="i-name">WMi-map-2</span><span class="i-code">0xe86d</span></div>
<div class="the-icons span3" title="Code: 0xe86e"><i class="demo-icon WMi-map-o-1"></i> <span class="i-name">WMi-map-o-1</span><span class="i-code">0xe86e</span></div>
<div class="the-icons span3" title="Code: 0xe86f"><i class="demo-icon WMi-marquee"></i> <span class="i-name">WMi-marquee</span><span class="i-code">0xe86f</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe870"><i class="demo-icon WMi-doc-text-inv"></i> <span class="i-name">WMi-doc-text-inv</span><span class="i-code">0xe870</span></div>
<div class="the-icons span3" title="Code: 0xe871"><i class="demo-icon WMi-calendar"></i> <span class="i-name">WMi-calendar</span><span class="i-code">0xe871</span></div>
<div class="the-icons span3" title="Code: 0xe872"><i class="demo-icon WMi-calendar-1"></i> <span class="i-name">WMi-calendar-1</span><span class="i-code">0xe872</span></div>
<div class="the-icons span3" title="Code: 0xe873"><i class="demo-icon WMi-Art-And-Culture"></i> <span class="i-name">WMi-Art-And-Culture</span><span class="i-code">0xe873</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe874"><i class="demo-icon WMi-graduation-cap"></i> <span class="i-name">WMi-graduation-cap</span><span class="i-code">0xe874</span></div>
<div class="the-icons span3" title="Code: 0xe875"><i class="demo-icon WMi-Advertising-1"></i> <span class="i-name">WMi-Advertising-1</span><span class="i-code">0xe875</span></div>
<div class="the-icons span3" title="Code: 0xe876"><i class="demo-icon WMi-filter"></i> <span class="i-name">WMi-filter</span><span class="i-code">0xe876</span></div>
<div class="the-icons span3" title="Code: 0xe877"><i class="demo-icon WMi-Tourism-And-Transportation"></i> <span class="i-name">WMi-Tourism-And-Transportation</span><span class="i-code">0xe877</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe878"><i class="demo-icon WMi-Makeup-And-Hygienic"></i> <span class="i-name">WMi-Makeup-And-Hygienic</span><span class="i-code">0xe878</span></div>
<div class="the-icons span3" title="Code: 0xe879"><i class="demo-icon WMi-clock"></i> <span class="i-name">WMi-clock</span><span class="i-code">0xe879</span></div>
<div class="the-icons span3" title="Code: 0xe87a"><i class="demo-icon WMi-user"></i> <span class="i-name">WMi-user</span><span class="i-code">0xe87a</span></div>
<div class="the-icons span3" title="Code: 0xe87b"><i class="demo-icon WMi-users"></i> <span class="i-name">WMi-users</span><span class="i-code">0xe87b</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe87c"><i class="demo-icon WMi-Official"></i> <span class="i-name">WMi-Official</span><span class="i-code">0xe87c</span></div>
<div class="the-icons span3" title="Code: 0xe87d"><i class="demo-icon WMi-crown"></i> <span class="i-name">WMi-crown</span><span class="i-code">0xe87d</span></div>
<div class="the-icons span3" title="Code: 0xe87e"><i class="demo-icon WMi-gift-2"></i> <span class="i-name">WMi-gift-2</span><span class="i-code">0xe87e</span></div>
<div class="the-icons span3" title="Code: 0xe87f"><i class="demo-icon WMi-Decoration-And-Building-Industry"></i> <span class="i-name">WMi-Decoration-And-Building-Industry</span><span class="i-code">0xe87f</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe880"><i class="demo-icon WMi-Flowers-And-Plants"></i> <span class="i-name">WMi-Flowers-And-Plants</span><span class="i-code">0xe880</span></div>
<div class="the-icons span3" title="Code: 0xe881"><i class="demo-icon WMi-Advertising"></i> <span class="i-name">WMi-Advertising</span><span class="i-code">0xe881</span></div>
<div class="the-icons span3" title="Code: 0xe882"><i class="demo-icon WMi-shop-2"></i> <span class="i-name">WMi-shop-2</span><span class="i-code">0xe882</span></div>
<div class="the-icons span3" title="Code: 0xe883"><i class="demo-icon WMi-glyph-3"></i> <span class="i-name">WMi-glyph-3</span><span class="i-code">0xe883</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe884"><i class="demo-icon WMi-glyph-4"></i> <span class="i-name">WMi-glyph-4</span><span class="i-code">0xe884</span></div>
<div class="the-icons span3" title="Code: 0xe885"><i class="demo-icon WMi-glyph-5"></i> <span class="i-name">WMi-glyph-5</span><span class="i-code">0xe885</span></div>
<div class="the-icons span3" title="Code: 0xe886"><i class="demo-icon WMi-glyph-6"></i> <span class="i-name">WMi-glyph-6</span><span class="i-code">0xe886</span></div>
<div class="the-icons span3" title="Code: 0xe887"><i class="demo-icon WMi-glyph-7"></i> <span class="i-name">WMi-glyph-7</span><span class="i-code">0xe887</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe888"><i class="demo-icon WMi-glyph-8"></i> <span class="i-name">WMi-glyph-8</span><span class="i-code">0xe888</span></div>
<div class="the-icons span3" title="Code: 0xe889"><i class="demo-icon WMi-glyph-9"></i> <span class="i-name">WMi-glyph-9</span><span class="i-code">0xe889</span></div>
<div class="the-icons span3" title="Code: 0xe88a"><i class="demo-icon WMi-glyph-10"></i> <span class="i-name">WMi-glyph-10</span><span class="i-code">0xe88a</span></div>
<div class="the-icons span3" title="Code: 0xe88b"><i class="demo-icon WMi-pos"></i> <span class="i-name">WMi-pos</span><span class="i-code">0xe88b</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe88c"><i class="demo-icon WMi-glyph-12"></i> <span class="i-name">WMi-glyph-12</span><span class="i-code">0xe88c</span></div>
<div class="the-icons span3" title="Code: 0xe88d"><i class="demo-icon WMi-glyph-13"></i> <span class="i-name">WMi-glyph-13</span><span class="i-code">0xe88d</span></div>
<div class="the-icons span3" title="Code: 0xe88e"><i class="demo-icon WMi-glyph-14"></i> <span class="i-name">WMi-glyph-14</span><span class="i-code">0xe88e</span></div>
<div class="the-icons span3" title="Code: 0xe88f"><i class="demo-icon WMi-glyph-15"></i> <span class="i-name">WMi-glyph-15</span><span class="i-code">0xe88f</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe890"><i class="demo-icon WMi-glyph-16"></i> <span class="i-name">WMi-glyph-16</span><span class="i-code">0xe890</span></div>
<div class="the-icons span3" title="Code: 0xe891"><i class="demo-icon WMi-glyph-17"></i> <span class="i-name">WMi-glyph-17</span><span class="i-code">0xe891</span></div>
<div class="the-icons span3" title="Code: 0xe892"><i class="demo-icon WMi-glyph-18"></i> <span class="i-name">WMi-glyph-18</span><span class="i-code">0xe892</span></div>
<div class="the-icons span3" title="Code: 0xe893"><i class="demo-icon WMi-glyph-19"></i> <span class="i-name">WMi-glyph-19</span><span class="i-code">0xe893</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe894"><i class="demo-icon WMi-glyph-20"></i> <span class="i-name">WMi-glyph-20</span><span class="i-code">0xe894</span></div>
<div class="the-icons span3" title="Code: 0xe895"><i class="demo-icon WMi-glyph-21"></i> <span class="i-name">WMi-glyph-21</span><span class="i-code">0xe895</span></div>
<div class="the-icons span3" title="Code: 0xe896"><i class="demo-icon WMi-glyph-22"></i> <span class="i-name">WMi-glyph-22</span><span class="i-code">0xe896</span></div>
<div class="the-icons span3" title="Code: 0xe897"><i class="demo-icon WMi-glyph-23"></i> <span class="i-name">WMi-glyph-23</span><span class="i-code">0xe897</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe898"><i class="demo-icon WMi-glyph-24"></i> <span class="i-name">WMi-glyph-24</span><span class="i-code">0xe898</span></div>
<div class="the-icons span3" title="Code: 0xe899"><i class="demo-icon WMi-business-affiliate-network"></i> <span class="i-name">WMi-business-affiliate-network</span><span class="i-code">0xe899</span></div>
<div class="the-icons span3" title="Code: 0xe89a"><i class="demo-icon WMi-camera-1"></i> <span class="i-name">WMi-camera-1</span><span class="i-code">0xe89a</span></div>
<div class="the-icons span3" title="Code: 0xe89b"><i class="demo-icon WMi-Photography"></i> <span class="i-name">WMi-Photography</span><span class="i-code">0xe89b</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe89c"><i class="demo-icon WMi-SocialMedia"></i> <span class="i-name">WMi-SocialMedia</span><span class="i-code">0xe89c</span></div>
<div class="the-icons span3" title="Code: 0xe89d"><i class="demo-icon WMi-WebAndApp"></i> <span class="i-name">WMi-WebAndApp</span><span class="i-code">0xe89d</span></div>
<div class="the-icons span3" title="Code: 0xe89e"><i class="demo-icon WMi-Graphic"></i> <span class="i-name">WMi-Graphic</span><span class="i-code">0xe89e</span></div>
<div class="the-icons span3" title="Code: 0xe89f"><i class="demo-icon WMi-bell"></i> <span class="i-name">WMi-bell</span><span class="i-code">0xe89f</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8a0"><i class="demo-icon WMi-RegisterBusiness"></i> <span class="i-name">WMi-RegisterBusiness</span><span class="i-code">0xe8a0</span></div>
<div class="the-icons span3" title="Code: 0xe8a1"><i class="demo-icon WMi-code-1"></i> <span class="i-name">WMi-code-1</span><span class="i-code">0xe8a1</span></div>
<div class="the-icons span3" title="Code: 0xe8a2"><i class="demo-icon WMi-aparat"></i> <span class="i-name">WMi-aparat</span><span class="i-code">0xe8a2</span></div>
<div class="the-icons span3" title="Code: 0xe8a3"><i class="demo-icon WMi-truck"></i> <span class="i-name">WMi-truck</span><span class="i-code">0xe8a3</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8a4"><i class="demo-icon WMi-eye"></i> <span class="i-name">WMi-eye</span><span class="i-code">0xe8a4</span></div>
<div class="the-icons span3" title="Code: 0xe8a5"><i class="demo-icon WMi-eye-off"></i> <span class="i-name">WMi-eye-off</span><span class="i-code">0xe8a5</span></div>
<div class="the-icons span3" title="Code: 0xe8a6"><i class="demo-icon WMi-flight"></i> <span class="i-name">WMi-flight</span><span class="i-code">0xe8a6</span></div>
<div class="the-icons span3" title="Code: 0xe8a7"><i class="demo-icon WMi-cloud-1"></i> <span class="i-name">WMi-cloud-1</span><span class="i-code">0xe8a7</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8a8"><i class="demo-icon WMi-animation"></i> <span class="i-name">WMi-animation</span><span class="i-code">0xe8a8</span></div>
<div class="the-icons span3" title="Code: 0xe8a9"><i class="demo-icon WMi-instagram-2"></i> <span class="i-name">WMi-instagram-2</span><span class="i-code">0xe8a9</span></div>
<div class="the-icons span3" title="Code: 0xe8aa"><i class="demo-icon WMi-videocam"></i> <span class="i-name">WMi-videocam</span><span class="i-code">0xe8aa</span></div>
<div class="the-icons span3" title="Code: 0xe8ab"><i class="demo-icon WMi-video"></i> <span class="i-name">WMi-video</span><span class="i-code">0xe8ab</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8ac"><i class="demo-icon WMi-info-1"></i> <span class="i-name">WMi-info-1</span><span class="i-code">0xe8ac</span></div>
<div class="the-icons span3" title="Code: 0xe8ad"><i class="demo-icon WMi-play-1"></i> <span class="i-name">WMi-play-1</span><span class="i-code">0xe8ad</span></div>
<div class="the-icons span3" title="Code: 0xe8ae"><i class="demo-icon WMi-pause-1"></i> <span class="i-name">WMi-pause-1</span><span class="i-code">0xe8ae</span></div>
<div class="the-icons span3" title="Code: 0xe8af"><i class="demo-icon WMi-to-end-1"></i> <span class="i-name">WMi-to-end-1</span><span class="i-code">0xe8af</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8b0"><i class="demo-icon WMi-to-end-alt"></i> <span class="i-name">WMi-to-end-alt</span><span class="i-code">0xe8b0</span></div>
<div class="the-icons span3" title="Code: 0xe8b1"><i class="demo-icon WMi-to-start-1"></i> <span class="i-name">WMi-to-start-1</span><span class="i-code">0xe8b1</span></div>
<div class="the-icons span3" title="Code: 0xe8b2"><i class="demo-icon WMi-to-start-alt"></i> <span class="i-name">WMi-to-start-alt</span><span class="i-code">0xe8b2</span></div>
<div class="the-icons span3" title="Code: 0xe8b3"><i class="demo-icon WMi-fast-fw"></i> <span class="i-name">WMi-fast-fw</span><span class="i-code">0xe8b3</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8b4"><i class="demo-icon WMi-fast-bw"></i> <span class="i-name">WMi-fast-bw</span><span class="i-code">0xe8b4</span></div>
<div class="the-icons span3" title="Code: 0xe8b5"><i class="demo-icon WMi-stop-1"></i> <span class="i-name">WMi-stop-1</span><span class="i-code">0xe8b5</span></div>
<div class="the-icons span3" title="Code: 0xe8b6"><i class="demo-icon WMi-eject"></i> <span class="i-name">WMi-eject</span><span class="i-code">0xe8b6</span></div>
<div class="the-icons span3" title="Code: 0xe8b7"><i class="demo-icon WMi-comments-alt"></i> <span class="i-name">WMi-comments-alt</span><span class="i-code">0xe8b7</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8b8"><i class="demo-icon WMi-comment-1"></i> <span class="i-name">WMi-comment-1</span><span class="i-code">0xe8b8</span></div>
<div class="the-icons span3" title="Code: 0xe8b9"><i class="demo-icon WMi-comments"></i> <span class="i-name">WMi-comments</span><span class="i-code">0xe8b9</span></div>
<div class="the-icons span3" title="Code: 0xe8ba"><i class="demo-icon WMi-trash-alt-1"></i> <span class="i-name">WMi-trash-alt-1</span><span class="i-code">0xe8ba</span></div>
<div class="the-icons span3" title="Code: 0xe8bb"><i class="demo-icon WMi-hourglass"></i> <span class="i-name">WMi-hourglass</span><span class="i-code">0xe8bb</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8bc"><i class="demo-icon WMi-person"></i> <span class="i-name">WMi-person</span><span class="i-code">0xe8bc</span></div>
<div class="the-icons span3" title="Code: 0xe8bd"><i class="demo-icon WMi-temperatire"></i> <span class="i-name">WMi-temperatire</span><span class="i-code">0xe8bd</span></div>
<div class="the-icons span3" title="Code: 0xe8be"><i class="demo-icon WMi-temperature-fahrenheit"></i> <span class="i-name">WMi-temperature-fahrenheit</span><span class="i-code">0xe8be</span></div>
<div class="the-icons span3" title="Code: 0xe8bf"><i class="demo-icon WMi-undo"></i> <span class="i-name">WMi-undo</span><span class="i-code">0xe8bf</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8c0"><i class="demo-icon WMi-transgender-1"></i> <span class="i-name">WMi-transgender-1</span><span class="i-code">0xe8c0</span></div>
<div class="the-icons span3" title="Code: 0xe8c1"><i class="demo-icon WMi-back"></i> <span class="i-name">WMi-back</span><span class="i-code">0xe8c1</span></div>
<div class="the-icons span3" title="Code: 0xe8c2"><i class="demo-icon WMi-brightness-2"></i> <span class="i-name">WMi-brightness-2</span><span class="i-code">0xe8c2</span></div>
<div class="the-icons span3" title="Code: 0xe8c3"><i class="demo-icon WMi-brightness-3"></i> <span class="i-name">WMi-brightness-3</span><span class="i-code">0xe8c3</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8c4"><i class="demo-icon WMi-gender-female"></i> <span class="i-name">WMi-gender-female</span><span class="i-code">0xe8c4</span></div>
<div class="the-icons span3" title="Code: 0xe8c5"><i class="demo-icon WMi-carrot"></i> <span class="i-name">WMi-carrot</span><span class="i-code">0xe8c5</span></div>
<div class="the-icons span3" title="Code: 0xe8c6"><i class="demo-icon WMi-map-signs-1"></i> <span class="i-name">WMi-map-signs-1</span><span class="i-code">0xe8c6</span></div>
<div class="the-icons span3" title="Code: 0xe8c7"><i class="demo-icon WMi-wifi-1"></i> <span class="i-name">WMi-wifi-1</span><span class="i-code">0xe8c7</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8c8"><i class="demo-icon WMi-chart-bar-1"></i> <span class="i-name">WMi-chart-bar-1</span><span class="i-code">0xe8c8</span></div>
<div class="the-icons span3" title="Code: 0xe8c9"><i class="demo-icon WMi-emo-displeased-1"></i> <span class="i-name">WMi-emo-displeased-1</span><span class="i-code">0xe8c9</span></div>
<div class="the-icons span3" title="Code: 0xe8ca"><i class="demo-icon WMi-emo-surprised-1"></i> <span class="i-name">WMi-emo-surprised-1</span><span class="i-code">0xe8ca</span></div>
<div class="the-icons span3" title="Code: 0xe8cb"><i class="demo-icon WMi-basket-2"></i> <span class="i-name">WMi-basket-2</span><span class="i-code">0xe8cb</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8cc"><i class="demo-icon WMi-donut"></i> <span class="i-name">WMi-donut</span><span class="i-code">0xe8cc</span></div>
<div class="the-icons span3" title="Code: 0xe8cd"><i class="demo-icon WMi-signal-1"></i> <span class="i-name">WMi-signal-1</span><span class="i-code">0xe8cd</span></div>
<div class="the-icons span3" title="Code: 0xe8ce"><i class="demo-icon WMi-infinity"></i> <span class="i-name">WMi-infinity</span><span class="i-code">0xe8ce</span></div>
<div class="the-icons span3" title="Code: 0xe8cf"><i class="demo-icon WMi-th-large-1"></i> <span class="i-name">WMi-th-large-1</span><span class="i-code">0xe8cf</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8d0"><i class="demo-icon WMi-th-1"></i> <span class="i-name">WMi-th-1</span><span class="i-code">0xe8d0</span></div>
<div class="the-icons span3" title="Code: 0xe8d1"><i class="demo-icon WMi-eq"></i> <span class="i-name">WMi-eq</span><span class="i-code">0xe8d1</span></div>
<div class="the-icons span3" title="Code: 0xe8d2"><i class="demo-icon WMi-quote-right-alt"></i> <span class="i-name">WMi-quote-right-alt</span><span class="i-code">0xe8d2</span></div>
<div class="the-icons span3" title="Code: 0xe8d3"><i class="demo-icon WMi-quote-left-alt"></i> <span class="i-name">WMi-quote-left-alt</span><span class="i-code">0xe8d3</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8d4"><i class="demo-icon WMi-pinterest-1"></i> <span class="i-name">WMi-pinterest-1</span><span class="i-code">0xe8d4</span></div>
<div class="the-icons span3" title="Code: 0xe8d5"><i class="demo-icon WMi-youtube"></i> <span class="i-name">WMi-youtube</span><span class="i-code">0xe8d5</span></div>
<div class="the-icons span3" title="Code: 0xe8d6"><i class="demo-icon WMi-wordpress"></i> <span class="i-name">WMi-wordpress</span><span class="i-code">0xe8d6</span></div>
<div class="the-icons span3" title="Code: 0xe8d7"><i class="demo-icon WMi-th-large-2"></i> <span class="i-name">WMi-th-large-2</span><span class="i-code">0xe8d7</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8d8"><i class="demo-icon WMi-braille"></i> <span class="i-name">WMi-braille</span><span class="i-code">0xe8d8</span></div>
<div class="the-icons span3" title="Code: 0xe8d9"><i class="demo-icon WMi-number"></i> <span class="i-name">WMi-number</span><span class="i-code">0xe8d9</span></div>
<div class="the-icons span3" title="Code: 0xe8da"><i class="demo-icon WMi-doc-text"></i> <span class="i-name">WMi-doc-text</span><span class="i-code">0xe8da</span></div>
<div class="the-icons span3" title="Code: 0xe8db"><i class="demo-icon WMi-internet-explorer"></i> <span class="i-name">WMi-internet-explorer</span><span class="i-code">0xe8db</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8dc"><i class="demo-icon WMi-barcode"></i> <span class="i-name">WMi-barcode</span><span class="i-code">0xe8dc</span></div>
<div class="the-icons span3" title="Code: 0xe8dd"><i class="demo-icon WMi-hdd-1"></i> <span class="i-name">WMi-hdd-1</span><span class="i-code">0xe8dd</span></div>
<div class="the-icons span3" title="Code: 0xe8de"><i class="demo-icon WMi-signature"></i> <span class="i-name">WMi-signature</span><span class="i-code">0xe8de</span></div>
<div class="the-icons span3" title="Code: 0xe8df"><i class="demo-icon WMi-headphones"></i> <span class="i-name">WMi-headphones</span><span class="i-code">0xe8df</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8e0"><i class="demo-icon WMi-account-multiple-plus"></i> <span class="i-name">WMi-account-multiple-plus</span><span class="i-code">0xe8e0</span></div>
<div class="the-icons span3" title="Code: 0xe8e1"><i class="demo-icon WMi-account-key"></i> <span class="i-name">WMi-account-key</span><span class="i-code">0xe8e1</span></div>
<div class="the-icons span3" title="Code: 0xe8e2"><i class="demo-icon WMi-emo-saint"></i> <span class="i-name">WMi-emo-saint</span><span class="i-code">0xe8e2</span></div>
<div class="the-icons span3" title="Code: 0xe8e3"><i class="demo-icon WMi-emo-grin"></i> <span class="i-name">WMi-emo-grin</span><span class="i-code">0xe8e3</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xe8e4"><i class="demo-icon WMi-emo-tongue"></i> <span class="i-name">WMi-emo-tongue</span><span class="i-code">0xe8e4</span></div>
<div class="the-icons span3" title="Code: 0xe8e5"><i class="demo-icon WMi-theme"></i> <span class="i-name">WMi-theme</span><span class="i-code">0xe8e5</span></div>
<div class="the-icons span3" title="Code: 0xe8e6"><i class="demo-icon WMi-camera-timer"></i> <span class="i-name">WMi-camera-timer</span><span class="i-code">0xe8e6</span></div>
<div class="the-icons span3" title="Code: 0xe8e8"><i class="demo-icon WMi-stopwatch"></i> <span class="i-name">WMi-stopwatch</span><span class="i-code">0xe8e8</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf00b"><i class="demo-icon WMi-th-list"></i> <span class="i-name">WMi-th-list</span><span class="i-code">0xf00b</span></div>
<div class="the-icons span3" title="Code: 0xf00e"><i class="demo-icon WMi-pause"></i> <span class="i-name">WMi-pause</span><span class="i-code">0xf00e</span></div>
<div class="the-icons span3" title="Code: 0xf00f"><i class="demo-icon WMi-play"></i> <span class="i-name">WMi-play</span><span class="i-code">0xf00f</span></div>
<div class="the-icons span3" title="Code: 0xf010"><i class="demo-icon WMi-to-end"></i> <span class="i-name">WMi-to-end</span><span class="i-code">0xf010</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf011"><i class="demo-icon WMi-to-start"></i> <span class="i-name">WMi-to-start</span><span class="i-code">0xf011</span></div>
<div class="the-icons span3" title="Code: 0xf012"><i class="demo-icon WMi-account-off"></i> <span class="i-name">WMi-account-off</span><span class="i-code">0xf012</span></div>
<div class="the-icons span3" title="Code: 0xf014"><i class="demo-icon WMi-account-plus"></i> <span class="i-name">WMi-account-plus</span><span class="i-code">0xf014</span></div>
<div class="the-icons span3" title="Code: 0xf015"><i class="demo-icon WMi-account-remove"></i> <span class="i-name">WMi-account-remove</span><span class="i-code">0xf015</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf017"><i class="demo-icon WMi-clock-1"></i> <span class="i-name">WMi-clock-1</span><span class="i-code">0xf017</span></div>
<div class="the-icons span3" title="Code: 0xf019"><i class="demo-icon WMi-account-switch"></i> <span class="i-name">WMi-account-switch</span><span class="i-code">0xf019</span></div>
<div class="the-icons span3" title="Code: 0xf024"><i class="demo-icon WMi-alarm-plus"></i> <span class="i-name">WMi-alarm-plus</span><span class="i-code">0xf024</span></div>
<div class="the-icons span3" title="Code: 0xf029"><i class="demo-icon WMi-hash"></i> <span class="i-name">WMi-hash</span><span class="i-code">0xf029</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf02a"><i class="demo-icon WMi-alert-outline"></i> <span class="i-name">WMi-alert-outline</span><span class="i-code">0xf02a</span></div>
<div class="the-icons span3" title="Code: 0xf02d"><i class="demo-icon WMi-book"></i> <span class="i-name">WMi-book</span><span class="i-code">0xf02d</span></div>
<div class="the-icons span3" title="Code: 0xf02f"><i class="demo-icon WMi-Food"></i> <span class="i-name">WMi-Food</span><span class="i-code">0xf02f</span></div>
<div class="the-icons span3" title="Code: 0xf034"><i class="demo-icon WMi-Digital"></i> <span class="i-name">WMi-Digital</span><span class="i-code">0xf034</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf035"><i class="demo-icon WMi-apple"></i> <span class="i-name">WMi-apple</span><span class="i-code">0xf035</span></div>
<div class="the-icons span3" title="Code: 0xf036"><i class="demo-icon WMi-align-left"></i> <span class="i-name">WMi-align-left</span><span class="i-code">0xf036</span></div>
<div class="the-icons span3" title="Code: 0xf037"><i class="demo-icon WMi-align-center"></i> <span class="i-name">WMi-align-center</span><span class="i-code">0xf037</span></div>
<div class="the-icons span3" title="Code: 0xf038"><i class="demo-icon WMi-align-right"></i> <span class="i-name">WMi-align-right</span><span class="i-code">0xf038</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf03a"><i class="demo-icon WMi-list"></i> <span class="i-name">WMi-list</span><span class="i-code">0xf03a</span></div>
<div class="the-icons span3" title="Code: 0xf03c"><i class="demo-icon WMi-archive"></i> <span class="i-name">WMi-archive</span><span class="i-code">0xf03c</span></div>
<div class="the-icons span3" title="Code: 0xf05c"><i class="demo-icon WMi-linkedin-1"></i> <span class="i-name">WMi-linkedin-1</span><span class="i-code">0xf05c</span></div>
<div class="the-icons span3" title="Code: 0xf06e"><i class="demo-icon WMi-backspace"></i> <span class="i-name">WMi-backspace</span><span class="i-code">0xf06e</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf06f"><i class="demo-icon WMi-backup-restore"></i> <span class="i-name">WMi-backup-restore</span><span class="i-code">0xf06f</span></div>
<div class="the-icons span3" title="Code: 0xf073"><i class="demo-icon WMi-calendar-alt"></i> <span class="i-name">WMi-calendar-alt</span><span class="i-code">0xf073</span></div>
<div class="the-icons span3" title="Code: 0xf075"><i class="demo-icon WMi-comment-2"></i> <span class="i-name">WMi-comment-2</span><span class="i-code">0xf075</span></div>
<div class="the-icons span3" title="Code: 0xf07a"><i class="demo-icon WMi-shopping-cart"></i> <span class="i-name">WMi-shopping-cart</span><span class="i-code">0xf07a</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf07b"><i class="demo-icon WMi-folder"></i> <span class="i-name">WMi-folder</span><span class="i-code">0xf07b</span></div>
<div class="the-icons span3" title="Code: 0xf080"><i class="demo-icon WMi-stop"></i> <span class="i-name">WMi-stop</span><span class="i-code">0xf080</span></div>
<div class="the-icons span3" title="Code: 0xf085"><i class="demo-icon WMi-cogs"></i> <span class="i-name">WMi-cogs</span><span class="i-code">0xf085</span></div>
<div class="the-icons span3" title="Code: 0xf086"><i class="demo-icon WMi-info-circled-alt"></i> <span class="i-name">WMi-info-circled-alt</span><span class="i-code">0xf086</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf08e"><i class="demo-icon WMi-link-ext"></i> <span class="i-name">WMi-link-ext</span><span class="i-code">0xf08e</span></div>
<div class="the-icons span3" title="Code: 0xf096"><i class="demo-icon WMi-check-empty"></i> <span class="i-name">WMi-check-empty</span><span class="i-code">0xf096</span></div>
<div class="the-icons span3" title="Code: 0xf097"><i class="demo-icon WMi-bookmark-empty"></i> <span class="i-name">WMi-bookmark-empty</span><span class="i-code">0xf097</span></div>
<div class="the-icons span3" title="Code: 0xf099"><i class="demo-icon WMi-twitter-1"></i> <span class="i-name">WMi-twitter-1</span><span class="i-code">0xf099</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf09e"><i class="demo-icon WMi-rss"></i> <span class="i-name">WMi-rss</span><span class="i-code">0xf09e</span></div>
<div class="the-icons span3" title="Code: 0xf0a0"><i class="demo-icon WMi-hdd"></i> <span class="i-name">WMi-hdd</span><span class="i-code">0xf0a0</span></div>
<div class="the-icons span3" title="Code: 0xf0ad"><i class="demo-icon WMi-wrench"></i> <span class="i-name">WMi-wrench</span><span class="i-code">0xf0ad</span></div>
<div class="the-icons span3" title="Code: 0xf0b2"><i class="demo-icon WMi-resize-full-alt"></i> <span class="i-name">WMi-resize-full-alt</span><span class="i-code">0xf0b2</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf0c0"><i class="demo-icon WMi-users-1"></i> <span class="i-name">WMi-users-1</span><span class="i-code">0xf0c0</span></div>
<div class="the-icons span3" title="Code: 0xf0c3"><i class="demo-icon WMi-beaker"></i> <span class="i-name">WMi-beaker</span><span class="i-code">0xf0c3</span></div>
<div class="the-icons span3" title="Code: 0xf0c9"><i class="demo-icon WMi-menu"></i> <span class="i-name">WMi-menu</span><span class="i-code">0xf0c9</span></div>
<div class="the-icons span3" title="Code: 0xf0ca"><i class="demo-icon WMi-list-ul"></i> <span class="i-name">WMi-list-ul</span><span class="i-code">0xf0ca</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf0cb"><i class="demo-icon WMi-list-ol"></i> <span class="i-name">WMi-list-ol</span><span class="i-code">0xf0cb</span></div>
<div class="the-icons span3" title="Code: 0xf0d0"><i class="demo-icon WMi-magic"></i> <span class="i-name">WMi-magic</span><span class="i-code">0xf0d0</span></div>
<div class="the-icons span3" title="Code: 0xf0d5"><i class="demo-icon WMi-gplus"></i> <span class="i-name">WMi-gplus</span><span class="i-code">0xf0d5</span></div>
<div class="the-icons span3" title="Code: 0xf0da"><i class="demo-icon WMi-WM-Logo"></i> <span class="i-name">WMi-WM-Logo</span><span class="i-code">0xf0da</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf0db"><i class="demo-icon WMi-open"></i> <span class="i-name">WMi-open</span><span class="i-code">0xf0db</span></div>
<div class="the-icons span3" title="Code: 0xf0dc"><i class="demo-icon WMi-sort"></i> <span class="i-name">WMi-sort</span><span class="i-code">0xf0dc</span></div>
<div class="the-icons span3" title="Code: 0xf0dd"><i class="demo-icon WMi-chronometer"></i> <span class="i-name">WMi-chronometer</span><span class="i-code">0xf0dd</span></div>
<div class="the-icons span3" title="Code: 0xf0de"><i class="demo-icon WMi-Clothes-And-Personal-Belongings"></i> <span class="i-name">WMi-Clothes-And-Personal-Belongings</span><span class="i-code">0xf0de</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf0e0"><i class="demo-icon WMi-mail-alt"></i> <span class="i-name">WMi-mail-alt</span><span class="i-code">0xf0e0</span></div>
<div class="the-icons span3" title="Code: 0xf0e2"><i class="demo-icon WMi-Cleaning"></i> <span class="i-name">WMi-Cleaning</span><span class="i-code">0xf0e2</span></div>
<div class="the-icons span3" title="Code: 0xf0e3"><i class="demo-icon WMi-sea-ship-with-containers"></i> <span class="i-name">WMi-sea-ship-with-containers</span><span class="i-code">0xf0e3</span></div>
<div class="the-icons span3" title="Code: 0xf0e4"><i class="demo-icon WMi-freight-truck"></i> <span class="i-name">WMi-freight-truck</span><span class="i-code">0xf0e4</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf0e7"><i class="demo-icon WMi-wa-fit"></i> <span class="i-name">WMi-wa-fit</span><span class="i-code">0xf0e7</span></div>
<div class="the-icons span3" title="Code: 0xf0e8"><i class="demo-icon WMi-sitemap"></i> <span class="i-name">WMi-sitemap</span><span class="i-code">0xf0e8</span></div>
<div class="the-icons span3" title="Code: 0xf0ec"><i class="demo-icon WMi-exchange"></i> <span class="i-name">WMi-exchange</span><span class="i-code">0xf0ec</span></div>
<div class="the-icons span3" title="Code: 0xf0f0"><i class="demo-icon WMi-Medical-Services"></i> <span class="i-name">WMi-Medical-Services</span><span class="i-code">0xf0f0</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf0f1"><i class="demo-icon WMi-Drug-And-Medical-Equipment"></i> <span class="i-name">WMi-Drug-And-Medical-Equipment</span><span class="i-code">0xf0f1</span></div>
<div class="the-icons span3" title="Code: 0xf0f3"><i class="demo-icon WMi-bell-alt"></i> <span class="i-name">WMi-bell-alt</span><span class="i-code">0xf0f3</span></div>
<div class="the-icons span3" title="Code: 0xf0f4"><i class="demo-icon WMi-HomeAppliances"></i> <span class="i-name">WMi-HomeAppliances</span><span class="i-code">0xf0f4</span></div>
<div class="the-icons span3" title="Code: 0xf0f5"><i class="demo-icon WMi-Edible-And-Groceries"></i> <span class="i-name">WMi-Edible-And-Groceries</span><span class="i-code">0xf0f5</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf0fe"><i class="demo-icon WMi-plus-squared"></i> <span class="i-name">WMi-plus-squared</span><span class="i-code">0xf0fe</span></div>
<div class="the-icons span3" title="Code: 0xf100"><i class="demo-icon WMi-angle-double-left"></i> <span class="i-name">WMi-angle-double-left</span><span class="i-code">0xf100</span></div>
<div class="the-icons span3" title="Code: 0xf101"><i class="demo-icon WMi-angle-double-right"></i> <span class="i-name">WMi-angle-double-right</span><span class="i-code">0xf101</span></div>
<div class="the-icons span3" title="Code: 0xf102"><i class="demo-icon WMi-angle-double-up"></i> <span class="i-name">WMi-angle-double-up</span><span class="i-code">0xf102</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf103"><i class="demo-icon WMi-angle-double-down"></i> <span class="i-name">WMi-angle-double-down</span><span class="i-code">0xf103</span></div>
<div class="the-icons span3" title="Code: 0xf104"><i class="demo-icon WMi-angle-left"></i> <span class="i-name">WMi-angle-left</span><span class="i-code">0xf104</span></div>
<div class="the-icons span3" title="Code: 0xf105"><i class="demo-icon WMi-angle-right"></i> <span class="i-name">WMi-angle-right</span><span class="i-code">0xf105</span></div>
<div class="the-icons span3" title="Code: 0xf106"><i class="demo-icon WMi-angle-up"></i> <span class="i-name">WMi-angle-up</span><span class="i-code">0xf106</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf107"><i class="demo-icon WMi-angle-down"></i> <span class="i-name">WMi-angle-down</span><span class="i-code">0xf107</span></div>
<div class="the-icons span3" title="Code: 0xf108"><i class="demo-icon WMi-imac"></i> <span class="i-name">WMi-imac</span><span class="i-code">0xf108</span></div>
<div class="the-icons span3" title="Code: 0xf109"><i class="demo-icon WMi-laptop"></i> <span class="i-name">WMi-laptop</span><span class="i-code">0xf109</span></div>
<div class="the-icons span3" title="Code: 0xf10a"><i class="demo-icon WMi-tablet"></i> <span class="i-name">WMi-tablet</span><span class="i-code">0xf10a</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf10b"><i class="demo-icon WMi-mobile"></i> <span class="i-name">WMi-mobile</span><span class="i-code">0xf10b</span></div>
<div class="the-icons span3" title="Code: 0xf10d"><i class="demo-icon WMi-quote-left"></i> <span class="i-name">WMi-quote-left</span><span class="i-code">0xf10d</span></div>
<div class="the-icons span3" title="Code: 0xf10e"><i class="demo-icon WMi-quote-right"></i> <span class="i-name">WMi-quote-right</span><span class="i-code">0xf10e</span></div>
<div class="the-icons span3" title="Code: 0xf111"><i class="demo-icon WMi-circle"></i> <span class="i-name">WMi-circle</span><span class="i-code">0xf111</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf114"><i class="demo-icon WMi-cash"></i> <span class="i-name">WMi-cash</span><span class="i-code">0xf114</span></div>
<div class="the-icons span3" title="Code: 0xf120"><i class="demo-icon WMi-Information-Technology"></i> <span class="i-name">WMi-Information-Technology</span><span class="i-code">0xf120</span></div>
<div class="the-icons span3" title="Code: 0xf121"><i class="demo-icon WMi-code"></i> <span class="i-name">WMi-code</span><span class="i-code">0xf121</span></div>
<div class="the-icons span3" title="Code: 0xf123"><i class="demo-icon WMi-star-half-alt"></i> <span class="i-name">WMi-star-half-alt</span><span class="i-code">0xf123</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf124"><i class="demo-icon WMi-direction"></i> <span class="i-name">WMi-direction</span><span class="i-code">0xf124</span></div>
<div class="the-icons span3" title="Code: 0xf125"><i class="demo-icon WMi-crop"></i> <span class="i-name">WMi-crop</span><span class="i-code">0xf125</span></div>
<div class="the-icons span3" title="Code: 0xf127"><i class="demo-icon WMi-unlink"></i> <span class="i-name">WMi-unlink</span><span class="i-code">0xf127</span></div>
<div class="the-icons span3" title="Code: 0xf129"><i class="demo-icon WMi-info"></i> <span class="i-name">WMi-info</span><span class="i-code">0xf129</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf12a"><i class="demo-icon WMi-attention-alt"></i> <span class="i-name">WMi-attention-alt</span><span class="i-code">0xf12a</span></div>
<div class="the-icons span3" title="Code: 0xf133"><i class="demo-icon WMi-calendar-2"></i> <span class="i-name">WMi-calendar-2</span><span class="i-code">0xf133</span></div>
<div class="the-icons span3" title="Code: 0xf13b"><i class="demo-icon WMi-html5"></i> <span class="i-name">WMi-html5</span><span class="i-code">0xf13b</span></div>
<div class="the-icons span3" title="Code: 0xf13c"><i class="demo-icon WMi-css3"></i> <span class="i-name">WMi-css3</span><span class="i-code">0xf13c</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf141"><i class="demo-icon WMi-ellipsis"></i> <span class="i-name">WMi-ellipsis</span><span class="i-code">0xf141</span></div>
<div class="the-icons span3" title="Code: 0xf142"><i class="demo-icon WMi-ellipsis-vert"></i> <span class="i-name">WMi-ellipsis-vert</span><span class="i-code">0xf142</span></div>
<div class="the-icons span3" title="Code: 0xf14a"><i class="demo-icon WMi-ok-squared"></i> <span class="i-name">WMi-ok-squared</span><span class="i-code">0xf14a</span></div>
<div class="the-icons span3" title="Code: 0xf14e"><i class="demo-icon WMi-compass"></i> <span class="i-name">WMi-compass</span><span class="i-code">0xf14e</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf15b"><i class="demo-icon WMi-doc-inv"></i> <span class="i-name">WMi-doc-inv</span><span class="i-code">0xf15b</span></div>
<div class="the-icons span3" title="Code: 0xf15c"><i class="demo-icon WMi-doc-text-inv-1"></i> <span class="i-name">WMi-doc-text-inv-1</span><span class="i-code">0xf15c</span></div>
<div class="the-icons span3" title="Code: 0xf15d"><i class="demo-icon WMi-sort-alpha-down"></i> <span class="i-name">WMi-sort-alpha-down</span><span class="i-code">0xf15d</span></div>
<div class="the-icons span3" title="Code: 0xf160"><i class="demo-icon WMi-sort-alt-up"></i> <span class="i-name">WMi-sort-alt-up</span><span class="i-code">0xf160</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf161"><i class="demo-icon WMi-sort-alt-down"></i> <span class="i-name">WMi-sort-alt-down</span><span class="i-code">0xf161</span></div>
<div class="the-icons span3" title="Code: 0xf162"><i class="demo-icon WMi-sort-numeric-down"></i> <span class="i-name">WMi-sort-numeric-down</span><span class="i-code">0xf162</span></div>
<div class="the-icons span3" title="Code: 0xf163"><i class="demo-icon WMi-sort-numeric-up"></i> <span class="i-name">WMi-sort-numeric-up</span><span class="i-code">0xf163</span></div>
<div class="the-icons span3" title="Code: 0xf16a"><i class="demo-icon WMi-youtube-play"></i> <span class="i-name">WMi-youtube-play</span><span class="i-code">0xf16a</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf16b"><i class="demo-icon WMi-dropbox"></i> <span class="i-name">WMi-dropbox</span><span class="i-code">0xf16b</span></div>
<div class="the-icons span3" title="Code: 0xf16d"><i class="demo-icon WMi-instagram"></i> <span class="i-name">WMi-instagram</span><span class="i-code">0xf16d</span></div>
<div class="the-icons span3" title="Code: 0xf17a"><i class="demo-icon WMi-windows"></i> <span class="i-name">WMi-windows</span><span class="i-code">0xf17a</span></div>
<div class="the-icons span3" title="Code: 0xf184"><i class="demo-icon WMi-comment-processing"></i> <span class="i-name">WMi-comment-processing</span><span class="i-code">0xf184</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf190"><i class="demo-icon WMi-content-cut"></i> <span class="i-name">WMi-content-cut</span><span class="i-code">0xf190</span></div>
<div class="the-icons span3" title="Code: 0xf193"><i class="demo-icon WMi-wheelchair"></i> <span class="i-name">WMi-wheelchair</span><span class="i-code">0xf193</span></div>
<div class="the-icons span3" title="Code: 0xf196"><i class="demo-icon WMi-plus-squared-alt"></i> <span class="i-name">WMi-plus-squared-alt</span><span class="i-code">0xf196</span></div>
<div class="the-icons span3" title="Code: 0xf19c"><i class="demo-icon WMi-bank"></i> <span class="i-name">WMi-bank</span><span class="i-code">0xf19c</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf19d"><i class="demo-icon WMi-Educational"></i> <span class="i-name">WMi-Educational</span><span class="i-code">0xf19d</span></div>
<div class="the-icons span3" title="Code: 0xf19e"><i class="demo-icon WMi-crop-1"></i> <span class="i-name">WMi-crop-1</span><span class="i-code">0xf19e</span></div>
<div class="the-icons span3" title="Code: 0xf1a0"><i class="demo-icon WMi-google"></i> <span class="i-name">WMi-google</span><span class="i-code">0xf1a0</span></div>
<div class="the-icons span3" title="Code: 0xf1a5"><i class="demo-icon WMi-crown-1"></i> <span class="i-name">WMi-crown-1</span><span class="i-code">0xf1a5</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf1b0"><i class="demo-icon WMi-paw"></i> <span class="i-name">WMi-paw</span><span class="i-code">0xf1b0</span></div>
<div class="the-icons span3" title="Code: 0xf1b2"><i class="demo-icon WMi-cube"></i> <span class="i-name">WMi-cube</span><span class="i-code">0xf1b2</span></div>
<div class="the-icons span3" title="Code: 0xf1b3"><i class="demo-icon WMi-cubes"></i> <span class="i-name">WMi-cubes</span><span class="i-code">0xf1b3</span></div>
<div class="the-icons span3" title="Code: 0xf1b9"><i class="demo-icon WMi-Vehicle"></i> <span class="i-name">WMi-Vehicle</span><span class="i-code">0xf1b9</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf1ba"><i class="demo-icon WMi-taxi"></i> <span class="i-name">WMi-taxi</span><span class="i-code">0xf1ba</span></div>
<div class="the-icons span3" title="Code: 0xf1c0"><i class="demo-icon WMi-database"></i> <span class="i-name">WMi-database</span><span class="i-code">0xf1c0</span></div>
<div class="the-icons span3" title="Code: 0xf1cb"><i class="demo-icon WMi-codeopen"></i> <span class="i-name">WMi-codeopen</span><span class="i-code">0xf1cb</span></div>
<div class="the-icons span3" title="Code: 0xf1d8"><i class="demo-icon WMi-paper-plane"></i> <span class="i-name">WMi-paper-plane</span><span class="i-code">0xf1d8</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf1d9"><i class="demo-icon WMi-telegram"></i> <span class="i-name">WMi-telegram</span><span class="i-code">0xf1d9</span></div>
<div class="the-icons span3" title="Code: 0xf1de"><i class="demo-icon WMi-sliders"></i> <span class="i-name">WMi-sliders</span><span class="i-code">0xf1de</span></div>
<div class="the-icons span3" title="Code: 0xf1e3"><i class="demo-icon WMi-Sport"></i> <span class="i-name">WMi-Sport</span><span class="i-code">0xf1e3</span></div>
<div class="the-icons span3" title="Code: 0xf1e6"><i class="demo-icon WMi-plug"></i> <span class="i-name">WMi-plug</span><span class="i-code">0xf1e6</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf1eb"><i class="demo-icon WMi-wifi"></i> <span class="i-name">WMi-wifi</span><span class="i-code">0xf1eb</span></div>
<div class="the-icons span3" title="Code: 0xf1f8"><i class="demo-icon WMi-trash"></i> <span class="i-name">WMi-trash</span><span class="i-code">0xf1f8</span></div>
<div class="the-icons span3" title="Code: 0xf1fa"><i class="demo-icon WMi-Engineering"></i> <span class="i-name">WMi-Engineering</span><span class="i-code">0xf1fa</span></div>
<div class="the-icons span3" title="Code: 0xf1fb"><i class="demo-icon WMi-eyedropper"></i> <span class="i-name">WMi-eyedropper</span><span class="i-code">0xf1fb</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf1fc"><i class="demo-icon WMi-brush"></i> <span class="i-name">WMi-brush</span><span class="i-code">0xf1fc</span></div>
<div class="the-icons span3" title="Code: 0xf1fd"><i class="demo-icon WMi-birthday"></i> <span class="i-name">WMi-birthday</span><span class="i-code">0xf1fd</span></div>
<div class="the-icons span3" title="Code: 0xf200"><i class="demo-icon WMi-chart-pie"></i> <span class="i-name">WMi-chart-pie</span><span class="i-code">0xf200</span></div>
<div class="the-icons span3" title="Code: 0xf201"><i class="demo-icon WMi-chart-line"></i> <span class="i-name">WMi-chart-line</span><span class="i-code">0xf201</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf204"><i class="demo-icon WMi-toggle-off"></i> <span class="i-name">WMi-toggle-off</span><span class="i-code">0xf204</span></div>
<div class="the-icons span3" title="Code: 0xf205"><i class="demo-icon WMi-toggle-on"></i> <span class="i-name">WMi-toggle-on</span><span class="i-code">0xf205</span></div>
<div class="the-icons span3" title="Code: 0xf20f"><i class="demo-icon WMi-factory"></i> <span class="i-name">WMi-factory</span><span class="i-code">0xf20f</span></div>
<div class="the-icons span3" title="Code: 0xf219"><i class="demo-icon WMi-diamond"></i> <span class="i-name">WMi-diamond</span><span class="i-code">0xf219</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf21c"><i class="demo-icon WMi-motorcycle"></i> <span class="i-name">WMi-motorcycle</span><span class="i-code">0xf21c</span></div>
<div class="the-icons span3" title="Code: 0xf21e"><i class="demo-icon WMi-heartbeat"></i> <span class="i-name">WMi-heartbeat</span><span class="i-code">0xf21e</span></div>
<div class="the-icons span3" title="Code: 0xf224"><i class="demo-icon WMi-transgender"></i> <span class="i-name">WMi-transgender</span><span class="i-code">0xf224</span></div>
<div class="the-icons span3" title="Code: 0xf231"><i class="demo-icon WMi-pinterest"></i> <span class="i-name">WMi-pinterest</span><span class="i-code">0xf231</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf234"><i class="demo-icon WMi-user-plus"></i> <span class="i-name">WMi-user-plus</span><span class="i-code">0xf234</span></div>
<div class="the-icons span3" title="Code: 0xf235"><i class="demo-icon WMi-user-times"></i> <span class="i-name">WMi-user-times</span><span class="i-code">0xf235</span></div>
<div class="the-icons span3" title="Code: 0xf236"><i class="demo-icon WMi-bed"></i> <span class="i-name">WMi-bed</span><span class="i-code">0xf236</span></div>
<div class="the-icons span3" title="Code: 0xf247"><i class="demo-icon WMi-flip-to-back"></i> <span class="i-name">WMi-flip-to-back</span><span class="i-code">0xf247</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf24d"><i class="demo-icon WMi-clone"></i> <span class="i-name">WMi-clone</span><span class="i-code">0xf24d</span></div>
<div class="the-icons span3" title="Code: 0xf24e"><i class="demo-icon WMi-balance-scale"></i> <span class="i-name">WMi-balance-scale</span><span class="i-code">0xf24e</span></div>
<div class="the-icons span3" title="Code: 0xf266"><i class="demo-icon WMi-wikipedia"></i> <span class="i-name">WMi-wikipedia</span><span class="i-code">0xf266</span></div>
<div class="the-icons span3" title="Code: 0xf26c"><i class="demo-icon WMi-television"></i> <span class="i-name">WMi-television</span><span class="i-code">0xf26c</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf275"><i class="demo-icon WMi-Industry"></i> <span class="i-name">WMi-Industry</span><span class="i-code">0xf275</span></div>
<div class="the-icons span3" title="Code: 0xf277"><i class="demo-icon WMi-map-signs"></i> <span class="i-name">WMi-map-signs</span><span class="i-code">0xf277</span></div>
<div class="the-icons span3" title="Code: 0xf278"><i class="demo-icon WMi-map-o"></i> <span class="i-name">WMi-map-o</span><span class="i-code">0xf278</span></div>
<div class="the-icons span3" title="Code: 0xf279"><i class="demo-icon WMi-map"></i> <span class="i-name">WMi-map</span><span class="i-code">0xf279</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf27a"><i class="demo-icon WMi-comment-alt"></i> <span class="i-name">WMi-comment-alt</span><span class="i-code">0xf27a</span></div>
<div class="the-icons span3" title="Code: 0xf282"><i class="demo-icon WMi-edge"></i> <span class="i-name">WMi-edge</span><span class="i-code">0xf282</span></div>
<div class="the-icons span3" title="Code: 0xf283"><i class="demo-icon WMi-credit-card-alt"></i> <span class="i-name">WMi-credit-card-alt</span><span class="i-code">0xf283</span></div>
<div class="the-icons span3" title="Code: 0xf290"><i class="demo-icon WMi-shopping-bag"></i> <span class="i-name">WMi-shopping-bag</span><span class="i-code">0xf290</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf298"><i class="demo-icon WMi-gas-station"></i> <span class="i-name">WMi-gas-station</span><span class="i-code">0xf298</span></div>
<div class="the-icons span3" title="Code: 0xf29c"><i class="demo-icon WMi-question-circle-o"></i> <span class="i-name">WMi-question-circle-o</span><span class="i-code">0xf29c</span></div>
<div class="the-icons span3" title="Code: 0xf29d"><i class="demo-icon WMi-gender-male"></i> <span class="i-name">WMi-gender-male</span><span class="i-code">0xf29d</span></div>
<div class="the-icons span3" title="Code: 0xf2b6"><i class="demo-icon WMi-envelope-open"></i> <span class="i-name">WMi-envelope-open</span><span class="i-code">0xf2b6</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf2b7"><i class="demo-icon WMi-envelope-open-o"></i> <span class="i-name">WMi-envelope-open-o</span><span class="i-code">0xf2b7</span></div>
<div class="the-icons span3" title="Code: 0xf2c6"><i class="demo-icon WMi-telegram-1"></i> <span class="i-name">WMi-telegram-1</span><span class="i-code">0xf2c6</span></div>
<div class="the-icons span3" title="Code: 0xf2c8"><i class="demo-icon WMi-hanger"></i> <span class="i-name">WMi-hanger</span><span class="i-code">0xf2c8</span></div>
<div class="the-icons span3" title="Code: 0xf2dc"><i class="demo-icon WMi-snowflake-o"></i> <span class="i-name">WMi-snowflake-o</span><span class="i-code">0xf2dc</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf2ed"><i class="demo-icon WMi-trash-alt"></i> <span class="i-name">WMi-trash-alt</span><span class="i-code">0xf2ed</span></div>
<div class="the-icons span3" title="Code: 0xf2f6"><i class="demo-icon WMi-image-filter-none"></i> <span class="i-name">WMi-image-filter-none</span><span class="i-code">0xf2f6</span></div>
<div class="the-icons span3" title="Code: 0xf300"><i class="demo-icon WMi-facebook"></i> <span class="i-name">WMi-facebook</span><span class="i-code">0xf300</span></div>
<div class="the-icons span3" title="Code: 0xf302"><i class="demo-icon WMi-twitter"></i> <span class="i-name">WMi-twitter</span><span class="i-code">0xf302</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf30c"><i class="demo-icon WMi-linkedin-squared"></i> <span class="i-name">WMi-linkedin-squared</span><span class="i-code">0xf30c</span></div>
<div class="the-icons span3" title="Code: 0xf318"><i class="demo-icon WMi-linkedin"></i> <span class="i-name">WMi-linkedin</span><span class="i-code">0xf318</span></div>
<div class="the-icons span3" title="Code: 0xf31a"><i class="demo-icon WMi-linkedin-2"></i> <span class="i-name">WMi-linkedin-2</span><span class="i-code">0xf31a</span></div>
<div class="the-icons span3" title="Code: 0xf31e"><i class="demo-icon WMi-javascript"></i> <span class="i-name">WMi-javascript</span><span class="i-code">0xf31e</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf31f"><i class="demo-icon WMi-php"></i> <span class="i-name">WMi-php</span><span class="i-code">0xf31f</span></div>
<div class="the-icons span3" title="Code: 0xf321"><i class="demo-icon WMi-python"></i> <span class="i-name">WMi-python</span><span class="i-code">0xf321</span></div>
<div class="the-icons span3" title="Code: 0xf325"><i class="demo-icon WMi-win8"></i> <span class="i-name">WMi-win8</span><span class="i-code">0xf325</span></div>
<div class="the-icons span3" title="Code: 0xf32d"><i class="demo-icon WMi-instagram-1"></i> <span class="i-name">WMi-instagram-1</span><span class="i-code">0xf32d</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf332"><i class="demo-icon WMi-library-books"></i> <span class="i-name">WMi-library-books</span><span class="i-code">0xf332</span></div>
<div class="the-icons span3" title="Code: 0xf368"><i class="demo-icon WMi-message-reply-text"></i> <span class="i-name">WMi-message-reply-text</span><span class="i-code">0xf368</span></div>
<div class="the-icons span3" title="Code: 0xf36a"><i class="demo-icon WMi-message-text-outline"></i> <span class="i-name">WMi-message-text-outline</span><span class="i-code">0xf36a</span></div>
<div class="the-icons span3" title="Code: 0xf381"><i class="demo-icon WMi-cloud-download-alt"></i> <span class="i-name">WMi-cloud-download-alt</span><span class="i-code">0xf381</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf382"><i class="demo-icon WMi-cloud-upload-alt"></i> <span class="i-name">WMi-cloud-upload-alt</span><span class="i-code">0xf382</span></div>
<div class="the-icons span3" title="Code: 0xf390"><i class="demo-icon WMi-navigation"></i> <span class="i-name">WMi-navigation</span><span class="i-code">0xf390</span></div>
<div class="the-icons span3" title="Code: 0xf3c1"><i class="demo-icon WMi-lock-open-1"></i> <span class="i-name">WMi-lock-open-1</span><span class="i-code">0xf3c1</span></div>
<div class="the-icons span3" title="Code: 0xf3f0"><i class="demo-icon WMi-percent"></i> <span class="i-name">WMi-percent</span><span class="i-code">0xf3f0</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf405"><i class="demo-icon WMi-Flowers-and-Plants"></i> <span class="i-name">WMi-Flowers-and-Plants</span><span class="i-code">0xf405</span></div>
<div class="the-icons span3" title="Code: 0xf45d"><i class="demo-icon WMi-table-tennis"></i> <span class="i-name">WMi-table-tennis</span><span class="i-code">0xf45d</span></div>
<div class="the-icons span3" title="Code: 0xf463"><i class="demo-icon WMi-Scientific"></i> <span class="i-name">WMi-Scientific</span><span class="i-code">0xf463</span></div>
<div class="the-icons span3" title="Code: 0xf474"><i class="demo-icon WMi-school"></i> <span class="i-name">WMi-school</span><span class="i-code">0xf474</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf489"><i class="demo-icon WMi-selection"></i> <span class="i-name">WMi-selection</span><span class="i-code">0xf489</span></div>
<div class="the-icons span3" title="Code: 0xf494"><i class="demo-icon WMi-warehouse"></i> <span class="i-name">WMi-warehouse</span><span class="i-code">0xf494</span></div>
<div class="the-icons span3" title="Code: 0xf49a"><i class="demo-icon WMi-shopping"></i> <span class="i-name">WMi-shopping</span><span class="i-code">0xf49a</span></div>
<div class="the-icons span3" title="Code: 0xf4b9"><i class="demo-icon WMi-Home-And-Office"></i> <span class="i-name">WMi-Home-And-Office</span><span class="i-code">0xf4b9</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf4bb"><i class="demo-icon WMi-sort-alphabetical"></i> <span class="i-name">WMi-sort-alphabetical</span><span class="i-code">0xf4bb</span></div>
<div class="the-icons span3" title="Code: 0xf4be"><i class="demo-icon WMi-sort-numeric"></i> <span class="i-name">WMi-sort-numeric</span><span class="i-code">0xf4be</span></div>
<div class="the-icons span3" title="Code: 0xf4fc"><i class="demo-icon WMi-user-check"></i> <span class="i-name">WMi-user-check</span><span class="i-code">0xf4fc</span></div>
<div class="the-icons span3" title="Code: 0xf4fd"><i class="demo-icon WMi-user-clock"></i> <span class="i-name">WMi-user-clock</span><span class="i-code">0xf4fd</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf4fe"><i class="demo-icon WMi-user-cog"></i> <span class="i-name">WMi-user-cog</span><span class="i-code">0xf4fe</span></div>
<div class="the-icons span3" title="Code: 0xf500"><i class="demo-icon WMi-user-friends"></i> <span class="i-name">WMi-user-friends</span><span class="i-code">0xf500</span></div>
<div class="the-icons span3" title="Code: 0xf501"><i class="demo-icon WMi-user-graduate"></i> <span class="i-name">WMi-user-graduate</span><span class="i-code">0xf501</span></div>
<div class="the-icons span3" title="Code: 0xf502"><i class="demo-icon WMi-user-lock"></i> <span class="i-name">WMi-user-lock</span><span class="i-code">0xf502</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf503"><i class="demo-icon WMi-user-minus"></i> <span class="i-name">WMi-user-minus</span><span class="i-code">0xf503</span></div>
<div class="the-icons span3" title="Code: 0xf504"><i class="demo-icon WMi-temperature-celsius"></i> <span class="i-name">WMi-temperature-celsius</span><span class="i-code">0xf504</span></div>
<div class="the-icons span3" title="Code: 0xf505"><i class="demo-icon WMi-user-shield"></i> <span class="i-name">WMi-user-shield</span><span class="i-code">0xf505</span></div>
<div class="the-icons span3" title="Code: 0xf506"><i class="demo-icon WMi-user-slash"></i> <span class="i-name">WMi-user-slash</span><span class="i-code">0xf506</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf507"><i class="demo-icon WMi-user-tag"></i> <span class="i-name">WMi-user-tag</span><span class="i-code">0xf507</span></div>
<div class="the-icons span3" title="Code: 0xf508"><i class="demo-icon WMi-user-tie"></i> <span class="i-name">WMi-user-tie</span><span class="i-code">0xf508</span></div>
<div class="the-icons span3" title="Code: 0xf509"><i class="demo-icon WMi-users-cog"></i> <span class="i-name">WMi-users-cog</span><span class="i-code">0xf509</span></div>
<div class="the-icons span3" title="Code: 0xf519"><i class="demo-icon WMi-broadcast-tower"></i> <span class="i-name">WMi-broadcast-tower</span><span class="i-code">0xf519</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf526"><i class="demo-icon WMi-chart-bar"></i> <span class="i-name">WMi-chart-bar</span><span class="i-code">0xf526</span></div>
<div class="the-icons span3" title="Code: 0xf52c"><i class="demo-icon WMi-equals"></i> <span class="i-name">WMi-equals</span><span class="i-code">0xf52c</span></div>
<div class="the-icons span3" title="Code: 0xf532"><i class="demo-icon WMi-greater-than-equal"></i> <span class="i-name">WMi-greater-than-equal</span><span class="i-code">0xf532</span></div>
<div class="the-icons span3" title="Code: 0xf533"><i class="demo-icon WMi-helicopter"></i> <span class="i-name">WMi-helicopter</span><span class="i-code">0xf533</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf537"><i class="demo-icon WMi-less-than-equal"></i> <span class="i-name">WMi-less-than-equal</span><span class="i-code">0xf537</span></div>
<div class="the-icons span3" title="Code: 0xf53d"><i class="demo-icon WMi-money-check-alt"></i> <span class="i-name">WMi-money-check-alt</span><span class="i-code">0xf53d</span></div>
<div class="the-icons span3" title="Code: 0xf53e"><i class="demo-icon WMi-not-equal"></i> <span class="i-name">WMi-not-equal</span><span class="i-code">0xf53e</span></div>
<div class="the-icons span3" title="Code: 0xf541"><i class="demo-icon WMi-percentage"></i> <span class="i-name">WMi-percentage</span><span class="i-code">0xf541</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf546"><i class="demo-icon WMi-ruler-combined"></i> <span class="i-name">WMi-ruler-combined</span><span class="i-code">0xf546</span></div>
<div class="the-icons span3" title="Code: 0xf547"><i class="demo-icon WMi-ruler-horizontal"></i> <span class="i-name">WMi-ruler-horizontal</span><span class="i-code">0xf547</span></div>
<div class="the-icons span3" title="Code: 0xf568"><i class="demo-icon WMi-drafting-compass"></i> <span class="i-name">WMi-drafting-compass</span><span class="i-code">0xf568</span></div>
<div class="the-icons span3" title="Code: 0xf56c"><i class="demo-icon WMi-view-carousel"></i> <span class="i-name">WMi-view-carousel</span><span class="i-code">0xf56c</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf56e"><i class="demo-icon WMi-view-dashboard"></i> <span class="i-name">WMi-view-dashboard</span><span class="i-code">0xf56e</span></div>
<div class="the-icons span3" title="Code: 0xf56f"><i class="demo-icon WMi-view-day"></i> <span class="i-name">WMi-view-day</span><span class="i-code">0xf56f</span></div>
<div class="the-icons span3" title="Code: 0xf574"><i class="demo-icon WMi-view-quilt"></i> <span class="i-name">WMi-view-quilt</span><span class="i-code">0xf574</span></div>
<div class="the-icons span3" title="Code: 0xf577"><i class="demo-icon WMi-fingerprint"></i> <span class="i-name">WMi-fingerprint</span><span class="i-code">0xf577</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf578"><i class="demo-icon WMi-fish"></i> <span class="i-name">WMi-fish</span><span class="i-code">0xf578</span></div>
<div class="the-icons span3" title="Code: 0xf57b"><i class="demo-icon WMi-glass-martini-alt"></i> <span class="i-name">WMi-glass-martini-alt</span><span class="i-code">0xf57b</span></div>
<div class="the-icons span3" title="Code: 0xf59f"><i class="demo-icon WMi-map-marked"></i> <span class="i-name">WMi-map-marked</span><span class="i-code">0xf59f</span></div>
<div class="the-icons span3" title="Code: 0xf5a2"><i class="demo-icon WMi-weight-kilogram"></i> <span class="i-name">WMi-weight-kilogram</span><span class="i-code">0xf5a2</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf5af"><i class="demo-icon WMi-plane-arrival"></i> <span class="i-name">WMi-plane-arrival</span><span class="i-code">0xf5af</span></div>
<div class="the-icons span3" title="Code: 0xf5b0"><i class="demo-icon WMi-plane-departure"></i> <span class="i-name">WMi-plane-departure</span><span class="i-code">0xf5b0</span></div>
<div class="the-icons span3" title="Code: 0xf5b6"><i class="demo-icon WMi-shuttle-van"></i> <span class="i-name">WMi-shuttle-van</span><span class="i-code">0xf5b6</span></div>
<div class="the-icons span3" title="Code: 0xf5b7"><i class="demo-icon WMi-wrench-2"></i> <span class="i-name">WMi-wrench-2</span><span class="i-code">0xf5b7</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf5c9"><i class="demo-icon WMi-tooth"></i> <span class="i-name">WMi-tooth</span><span class="i-code">0xf5c9</span></div>
<div class="the-icons span3" title="Code: 0xf5d1"><i class="demo-icon WMi-apple-alt"></i> <span class="i-name">WMi-apple-alt</span><span class="i-code">0xf5d1</span></div>
<div class="the-icons span3" title="Code: 0xf5d3"><i class="demo-icon WMi-account-multiple-minus"></i> <span class="i-name">WMi-account-multiple-minus</span><span class="i-code">0xf5d3</span></div>
<div class="the-icons span3" title="Code: 0xf5d4"><i class="demo-icon WMi-scale"></i> <span class="i-name">WMi-scale</span><span class="i-code">0xf5d4</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf5d6"><i class="demo-icon WMi-cylinder-1"></i> <span class="i-name">WMi-cylinder-1</span><span class="i-code">0xf5d6</span></div>
<div class="the-icons span3" title="Code: 0xf5d8"><i class="demo-icon WMi-cylinder-2"></i> <span class="i-name">WMi-cylinder-2</span><span class="i-code">0xf5d8</span></div>
<div class="the-icons span3" title="Code: 0xf5d9"><i class="demo-icon WMi-shield"></i> <span class="i-name">WMi-shield</span><span class="i-code">0xf5d9</span></div>
<div class="the-icons span3" title="Code: 0xf5da"><i class="demo-icon WMi-cart"></i> <span class="i-name">WMi-cart</span><span class="i-code">0xf5da</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf5db"><i class="demo-icon WMi-supermarket"></i> <span class="i-name">WMi-supermarket</span><span class="i-code">0xf5db</span></div>
<div class="the-icons span3" title="Code: 0xf5dc"><i class="demo-icon WMi-communications"></i> <span class="i-name">WMi-communications</span><span class="i-code">0xf5dc</span></div>
<div class="the-icons span3" title="Code: 0xf5dd"><i class="demo-icon WMi-heart-1"></i> <span class="i-name">WMi-heart-1</span><span class="i-code">0xf5dd</span></div>
<div class="the-icons span3" title="Code: 0xf5de"><i class="demo-icon WMi-bike"></i> <span class="i-name">WMi-bike</span><span class="i-code">0xf5de</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf5df"><i class="demo-icon WMi-delivery"></i> <span class="i-name">WMi-delivery</span><span class="i-code">0xf5df</span></div>
<div class="the-icons span3" title="Code: 0xf5e0"><i class="demo-icon WMi-map-3"></i> <span class="i-name">WMi-map-3</span><span class="i-code">0xf5e0</span></div>
<div class="the-icons span3" title="Code: 0xf5e1"><i class="demo-icon WMi-car-crash"></i> <span class="i-name">WMi-car-crash</span><span class="i-code">0xf5e1</span></div>
<div class="the-icons span3" title="Code: 0xf5e2"><i class="demo-icon WMi-align-justify"></i> <span class="i-name">WMi-align-justify</span><span class="i-code">0xf5e2</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf5e3"><i class="demo-icon WMi-equal-alt"></i> <span class="i-name">WMi-equal-alt</span><span class="i-code">0xf5e3</span></div>
<div class="the-icons span3" title="Code: 0xf5e4"><i class="demo-icon WMi-car-side"></i> <span class="i-name">WMi-car-side</span><span class="i-code">0xf5e4</span></div>
<div class="the-icons span3" title="Code: 0xf5e5"><i class="demo-icon WMi-pos-terminal"></i> <span class="i-name">WMi-pos-terminal</span><span class="i-code">0xf5e5</span></div>
<div class="the-icons span3" title="Code: 0xf5e7"><i class="demo-icon WMi-tag-1"></i> <span class="i-name">WMi-tag-1</span><span class="i-code">0xf5e7</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf5e9"><i class="demo-icon WMi-electronic"></i> <span class="i-name">WMi-electronic</span><span class="i-code">0xf5e9</span></div>
<div class="the-icons span3" title="Code: 0xf5ea"><i class="demo-icon WMi-ladder"></i> <span class="i-name">WMi-ladder</span><span class="i-code">0xf5ea</span></div>
<div class="the-icons span3" title="Code: 0xf5ec"><i class="demo-icon WMi-list-1"></i> <span class="i-name">WMi-list-1</span><span class="i-code">0xf5ec</span></div>
<div class="the-icons span3" title="Code: 0xf5ed"><i class="demo-icon WMi-telegram-2"></i> <span class="i-name">WMi-telegram-2</span><span class="i-code">0xf5ed</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf5ee"><i class="demo-icon WMi-willa-engine"></i> <span class="i-name">WMi-willa-engine</span><span class="i-code">0xf5ee</span></div>
<div class="the-icons span3" title="Code: 0xf5f0"><i class="demo-icon WMi-en-letters"></i> <span class="i-name">WMi-en-letters</span><span class="i-code">0xf5f0</span></div>
<div class="the-icons span3" title="Code: 0xf5f1"><i class="demo-icon WMi-fa-letters"></i> <span class="i-name">WMi-fa-letters</span><span class="i-code">0xf5f1</span></div>
<div class="the-icons span3" title="Code: 0xf5f2"><i class="demo-icon WMi-ar-letters"></i> <span class="i-name">WMi-ar-letters</span><span class="i-code">0xf5f2</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf5f3"><i class="demo-icon WMi-min"></i> <span class="i-name">WMi-min</span><span class="i-code">0xf5f3</span></div>
<div class="the-icons span3" title="Code: 0xf5f5"><i class="demo-icon WMi-max"></i> <span class="i-name">WMi-max</span><span class="i-code">0xf5f5</span></div>
<div class="the-icons span3" title="Code: 0xf5f6"><i class="demo-icon WMi-text"></i> <span class="i-name">WMi-text</span><span class="i-code">0xf5f6</span></div>
<div class="the-icons span3" title="Code: 0xf5f7"><i class="demo-icon WMi-advertisement"></i> <span class="i-name">WMi-advertisement</span><span class="i-code">0xf5f7</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf5f8"><i class="demo-icon WMi-advertisement-1"></i> <span class="i-name">WMi-advertisement-1</span><span class="i-code">0xf5f8</span></div>
<div class="the-icons span3" title="Code: 0xf5fa"><i class="demo-icon WMi-chat-1"></i> <span class="i-name">WMi-chat-1</span><span class="i-code">0xf5fa</span></div>
<div class="the-icons span3" title="Code: 0xf5fb"><i class="demo-icon WMi-chat-alt"></i> <span class="i-name">WMi-chat-alt</span><span class="i-code">0xf5fb</span></div>
<div class="the-icons span3" title="Code: 0xf5fc"><i class="demo-icon WMi-send-message"></i> <span class="i-name">WMi-send-message</span><span class="i-code">0xf5fc</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf613"><i class="demo-icon WMi-oil-can"></i> <span class="i-name">WMi-oil-can</span><span class="i-code">0xf613</span></div>
<div class="the-icons span3" title="Code: 0xf631"><i class="demo-icon WMi-account-settings-variant"></i> <span class="i-name">WMi-account-settings-variant</span><span class="i-code">0xf631</span></div>
<div class="the-icons span3" title="Code: 0xf63b"><i class="demo-icon WMi-truck-monster"></i> <span class="i-name">WMi-truck-monster</span><span class="i-code">0xf63b</span></div>
<div class="the-icons span3" title="Code: 0xf658"><i class="demo-icon WMi-envelope-open-text"></i> <span class="i-name">WMi-envelope-open-text</span><span class="i-code">0xf658</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf65f"><i class="demo-icon WMi-shape-rectangle-plus"></i> <span class="i-name">WMi-shape-rectangle-plus</span><span class="i-code">0xf65f</span></div>
<div class="the-icons span3" title="Code: 0xf665"><i class="demo-icon WMi-Beauty"></i> <span class="i-name">WMi-Beauty</span><span class="i-code">0xf665</span></div>
<div class="the-icons span3" title="Code: 0xf66b"><i class="demo-icon WMi-kaaba"></i> <span class="i-name">WMi-kaaba</span><span class="i-code">0xf66b</span></div>
<div class="the-icons span3" title="Code: 0xf66f"><i class="demo-icon WMi-landmark"></i> <span class="i-name">WMi-landmark</span><span class="i-code">0xf66f</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf678"><i class="demo-icon WMi-mosque"></i> <span class="i-name">WMi-mosque</span><span class="i-code">0xf678</span></div>
<div class="the-icons span3" title="Code: 0xf699"><i class="demo-icon WMi-star-and-crescent"></i> <span class="i-name">WMi-star-and-crescent</span><span class="i-code">0xf699</span></div>
<div class="the-icons span3" title="Code: 0xf69a"><i class="demo-icon WMi-star-of-david"></i> <span class="i-name">WMi-star-of-david</span><span class="i-code">0xf69a</span></div>
<div class="the-icons span3" title="Code: 0xf6b4"><i class="demo-icon WMi-lamp"></i> <span class="i-name">WMi-lamp</span><span class="i-code">0xf6b4</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf6bb"><i class="demo-icon WMi-account-edit"></i> <span class="i-name">WMi-account-edit</span><span class="i-code">0xf6bb</span></div>
<div class="the-icons span3" title="Code: 0xf6e3"><i class="demo-icon WMi-infinity-1"></i> <span class="i-name">WMi-infinity-1</span><span class="i-code">0xf6e3</span></div>
<div class="the-icons span3" title="Code: 0xf714"><i class="demo-icon WMi-skull-crossbones"></i> <span class="i-name">WMi-skull-crossbones</span><span class="i-code">0xf714</span></div>
<div class="the-icons span3" title="Code: 0xf717"><i class="demo-icon WMi-spider"></i> <span class="i-name">WMi-spider</span><span class="i-code">0xf717</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf727"><i class="demo-icon WMi-view-parallel"></i> <span class="i-name">WMi-view-parallel</span><span class="i-code">0xf727</span></div>
<div class="the-icons span3" title="Code: 0xf739"><i class="demo-icon WMi-cancel-2"></i> <span class="i-name">WMi-cancel-2</span><span class="i-code">0xf739</span></div>
<div class="the-icons span3" title="Code: 0xf787"><i class="demo-icon WMi-truck-fast"></i> <span class="i-name">WMi-truck-fast</span><span class="i-code">0xf787</span></div>
<div class="the-icons span3" title="Code: 0xf7a9"><i class="demo-icon WMi-heart-broken"></i> <span class="i-name">WMi-heart-broken</span><span class="i-code">0xf7a9</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf7ab"><i class="demo-icon WMi-horse-head"></i> <span class="i-name">WMi-horse-head</span><span class="i-code">0xf7ab</span></div>
<div class="the-icons span3" title="Code: 0xf7b6"><i class="demo-icon WMi-mug-hot"></i> <span class="i-name">WMi-mug-hot</span><span class="i-code">0xf7b6</span></div>
<div class="the-icons span3" title="Code: 0xf7b9"><i class="demo-icon WMi-radiation"></i> <span class="i-name">WMi-radiation</span><span class="i-code">0xf7b9</span></div>
<div class="the-icons span3" title="Code: 0xf7bd"><i class="demo-icon WMi-restroom"></i> <span class="i-name">WMi-restroom</span><span class="i-code">0xf7bd</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf7c2"><i class="demo-icon WMi-sd-card"></i> <span class="i-name">WMi-sd-card</span><span class="i-code">0xf7c2</span></div>
<div class="the-icons span3" title="Code: 0xf7c4"><i class="demo-icon WMi-sim-card"></i> <span class="i-name">WMi-sim-card</span><span class="i-code">0xf7c4</span></div>
<div class="the-icons span3" title="Code: 0xf7e4"><i class="demo-icon WMi-fire-alt"></i> <span class="i-name">WMi-fire-alt</span><span class="i-code">0xf7e4</span></div>
<div class="the-icons span3" title="Code: 0xf7ef"><i class="demo-icon WMi-cheese"></i> <span class="i-name">WMi-cheese</span><span class="i-code">0xf7ef</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf805"><i class="demo-icon WMi-hamburger"></i> <span class="i-name">WMi-hamburger</span><span class="i-code">0xf805</span></div>
<div class="the-icons span3" title="Code: 0xf810"><i class="demo-icon WMi-ice-cream"></i> <span class="i-name">WMi-ice-cream</span><span class="i-code">0xf810</span></div>
<div class="the-icons span3" title="Code: 0xf816"><i class="demo-icon WMi-pepper-hot"></i> <span class="i-name">WMi-pepper-hot</span><span class="i-code">0xf816</span></div>
<div class="the-icons span3" title="Code: 0xf818"><i class="demo-icon WMi-pizza-slice"></i> <span class="i-name">WMi-pizza-slice</span><span class="i-code">0xf818</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf82f"><i class="demo-icon WMi-user-nurse"></i> <span class="i-name">WMi-user-nurse</span><span class="i-code">0xf82f</span></div>
<div class="the-icons span3" title="Code: 0xf84a"><i class="demo-icon WMi-biking"></i> <span class="i-name">WMi-biking</span><span class="i-code">0xf84a</span></div>
<div class="the-icons span3" title="Code: 0xf86d"><i class="demo-icon WMi-icons"></i> <span class="i-name">WMi-icons</span><span class="i-code">0xf86d</span></div>
<div class="the-icons span3" title="Code: 0xf882"><i class="demo-icon WMi-sort-alpha-up-alt"></i> <span class="i-name">WMi-sort-alpha-up-alt</span><span class="i-code">0xf882</span></div>
</div>
<div class="row">
<div class="the-icons span3" title="Code: 0xf884"><i class="demo-icon WMi-sort-amount-down-alt"></i> <span class="i-name">WMi-sort-amount-down-alt</span><span class="i-code">0xf884</span></div>
<div class="the-icons span3" title="Code: 0xf885"><i class="demo-icon WMi-sort-amount-up-alt"></i> <span class="i-name">WMi-sort-amount-up-alt</span><span class="i-code">0xf885</span></div>
<div class="the-icons span3" title="Code: 0xf8cc"><i class="demo-icon WMi-mouse"></i> <span class="i-name">WMi-mouse</span><span class="i-code">0xf8cc</span></div>
</div>
</div>

@ -0,0 +1,167 @@
export default {
name: 'مسیریابی',
name_en: 'Navigation',
icons: [
{
"name": 'جهت یابی',
"css": "direction"
},
{
"name": 'همه ی جهات',
"css": "resize-full-alt"
},
{
"name": 'همه ی جهات',
"css": "resize-full-alt"
},
{
"name": 'بالا و پایین',
"css": "resize-vertical"
},
{
"name": 'جهت پایین',
"css": "down-open"
},
{
"name": 'جهت چپ',
"css": "left-open"
},
{
"name": 'جهت راست',
"css": "right-open"
},
{
"name": 'جهت بالا',
"css": "up-open"
},
{
"name": 'جهت پایین - دوتایی',
"css": "angle-double-down"
},
{
"name": 'جهت چپ - دوتایی',
"css": "angle-double-left"
},
{
"name": 'جهت راست - دوتایی',
"css": "angle-double-right"
},
{
"name": 'جهت بالا - دوتایی',
"css": "angle-double-up"
},
{
"name": 'نقشه',
"css": "map"
},
{
"name": 'موشک کاغذی',
"css": "paper-plane"
},
{
"name": 'بالا - پایین',
"css": "sort"
},
{
"name": 'تابلو راهنما',
"css": "map-signs"
},
{
"name": 'اینتر - ورود',
"css": "level-down"
},
{
"name": 'موقعیت',
"css": "location"
},
{
"name": 'حلقه',
"css": "loop"
},
{
"name": 'بازگشت',
"css": "back"
},
{
"name": 'قطب نما',
"css": "compass"
},
{
"name": 'خودرو',
"css": "Vehicle"
},
{
"name": 'هواپیما - پرواز',
"css": "Tourism-And-Transportation"
},
{
"name": 'کامیون - حمل بار',
"css": "truck"
},
{
"name": 'پرواز - هواپیما',
"css": "flight"
},
{
"name": 'کشتی باربری',
"css": "sea-ship-with-containers"
},
{
"name": 'ترانزیت - تریلی',
"css": "freight-truck"
},
{
"name": 'جهت یابی',
"css": "direction"
},
{
"name": 'جهت یابی',
"css": "navigation"
},
{
"name": 'موقعیت روی نقشه',
"css": "map-marked"
},
{
"name": 'موقعیت روی نقشه',
"css": "map-3"
},
{
"name": 'ون',
"css": "shuttle-van"
},
{
"name": 'فرود هواپیما',
"css": "plane-arrival"
},
{
"name": 'پرواز هواپیما',
"css": "plane-departure"
},
{
"name": 'موتور',
"css": "bike"
},
{
"name": 'پیک موتوری',
"css": "delivery"
},
{
"name": 'تصادف',
"css": "car-crash"
},
{
"name": 'خودرو آف رود',
"css": "truck-monster"
},
{
"name": 'کامیون سریع',
"css": "truck-fast"
},
{
"name": 'دوچرخه سواری',
"css": "biking"
},
]
}

File diff suppressed because it is too large Load Diff

@ -90,6 +90,12 @@ export default {
// Finance
// --------------------------
expense : 'red',
refund : 'orange',
income : 'cyan',
account : 'black',
salary : 'orange',

@ -3,14 +3,14 @@
<div id="app" class="we-dark">
<wm-background C1="fff" C2="f1f1f1" C3="fff"/>
<app-menu/>
<v-content>
<v-main>
<v-container fluid class="Login">
<div class="Tile">
<router-view/>
<!-- <wm-tiles-layout></wm-tiles-layout> -->
</div>
</v-container>
</v-content>
</v-main>
</div>
</v-app>
</template>

@ -38,7 +38,7 @@
</v-dialog>
</template>
<script>
import { mapGetters, mapActions, mapMutations } from "vuex";
import { mapGetters, mapMutations } from "vuex";
export default {
name: "modal_rolePermission_paymentConfirm",
data() {
@ -60,20 +60,9 @@ export default {
}
},
computed: {
...mapGetters("modal", ["isModal", "getModal"]),
...mapGetters([
'getModuleState'
]),
modal: {
get() {
return this.isModal(this.$options.name);
},
set(value) {
if (!value) {
this.$_closeModal();
}
}
},
},
methods: {
...mapMutations([

@ -57,9 +57,9 @@ export default {
},
methods: {
async register() {
if (this.modal && this.getModal(this.$options.name).model) {
if (this.getModal(this.$options.name) && this.getModal(this.$options.name).model) {
let response = await this.actviveTrial(this.getModal(this.$options.name).model.id);
if (response.status == 200) {
if (response.status === 200) {
this.$_closeModal();
}
}
@ -67,17 +67,7 @@ export default {
...mapActions("rolePermission", ["actviveTrial"])
},
computed: {
...mapGetters("modal", ["isModal", "getModal"]),
modal: {
get() {
return this.isModal(this.$options.name);
},
set(value) {
if (!value) {
this.$_closeModal();
}
}
},
...mapGetters("modal", ["getModal"]),
expiredDate() {
var today = new Date();
return new Date(today.setDate(today.getDate() + 15));

@ -0,0 +1,9 @@
import Vue from "vue";
import {CorePolicies} from "@Core/policy";
import CommonPolicy from "@Common/policy";
Vue.prototype.$policiesClasses = {
...CorePolicies,
...CommonPolicy
};

@ -1,19 +0,0 @@
<?php
namespace Tests\Unit;
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$this->assertTrue(true);
}
}

@ -0,0 +1,32 @@
//{
// "compilerOptions": {
// "module": "commonjs",
// "target": "es5",
// "noImplicitAny": false,
// "sourceMap": false
// }
//}
{
"compilerOptions": {
"lib": ["dom", "es5", "es2015"],
"target": "es5",
"module": "commonjs",
"noImplicitAny": false,
"moduleResolution": "node",
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"paths": {
"@JS/*": ["./resources/js/*"],
"@Global/*": ["./resources/js/Global/*"],
"@Home/*": ["./resources/js/Home/*"],
"@CRM/*": ["./modules/wm-crm/resources/js/*"],
"@Common/*": ["./modules/wm-common/resources/js/*"],
"@Core/*": ["./modules/wm-core/resources/js/*"],
"@User/*": ["./modules/wm-core/resources/js/Modules/User/*"],
"@Auth/*": ["./modules/wm-core/resources/js/Modules/Authentication/*"],
"@Service/*": ["./modules/wm-service/resources/js/*"],
"@Product/*": ["./modules/wm-product/resources/js/*"],
"@Blog/*": ["./modules/wm-blog/resources/js/*"]
}
}
}

13
webpack.mix.js vendored

@ -11,7 +11,7 @@ const mix = require('laravel-mix');
*/
mix.webpackConfig({
resolve: {
// extensions: ['.js', '.vue', '.json'],
extensions: ["*", ".js", ".jsx", ".vue", ".ts", ".tsx", '.json', '.d.ts'],
alias: {
'@JS': path.resolve(__dirname, 'resources/js'),
'@Global': path.resolve(__dirname, 'resources/js/Global'),
@ -21,9 +21,18 @@ mix.webpackConfig({
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');

Loading…
Cancel
Save