Initial Commit

This commit is contained in:
Zi Xing 2022-01-27 12:13:15 -05:00
commit fa7aea7f93
433 changed files with 266663 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build/

1
.ppm_package Normal file
View File

@ -0,0 +1 @@
assets_src/

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
clean:
rm -rf build
build:
mkdir build
ppm --no-intro --compile="assets_src" --directory="build"
update:
ppm --generate-package="assets_src"
install:
ppm --no-intro --no-prompt --fix-conflict --install="build/net.intellivoid.dore_template.ppm"
install_fast:
ppm --no-intro --no-prompt --fix-conflict --skip-dependencies --install="build/net.intellivoid.dore_template.ppm"

File diff suppressed because it is too large Load Diff

1
assets_src/css/dore.dark.bluenavy.min.css vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

1
assets_src/css/dore.dark.blueyale.min.css vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

1
assets_src/css/dore.dark.greenlime.min.css vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

1
assets_src/css/dore.dark.greenmoss.min.css vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

1
assets_src/css/dore.dark.greysteel.min.css vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

1
assets_src/css/dore.dark.redruby.min.css vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

1
assets_src/css/dore.light.bluenavy.min.css vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

1
assets_src/css/dore.light.blueyale.min.css vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

1
assets_src/css/dore.light.greenlime.min.css vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

1
assets_src/css/dore.light.greenmoss.min.css vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

1
assets_src/css/dore.light.greysteel.min.css vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

1
assets_src/css/dore.light.redruby.min.css vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

47
assets_src/css/main.css Executable file
View File

@ -0,0 +1,47 @@
html {
width: 100%;
}
body {
overflow-x: hidden !important;
}
body.show-spinner>main {
overflow: hidden !important;
}
/* Hide everything under body tag */
body.show-spinner>* {
opacity: 0;
}
/* Spinner */
body.show-spinner::after {
content: " ";
display: inline-block;
width: 30px;
height: 30px;
border: 2px solid rgba(0, 0, 0, 0.2);
border-radius: 50%;
border-top-color: rgba(0, 0, 0, 0.3);
animation: spin 1s ease-in-out infinite;
-webkit-animation: spin 1s ease-in-out infinite;
left: calc(50% - 15px);
top: calc(50% - 15px);
position: fixed;
z-index: 1;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
to {
-webkit-transform: rotate(360deg);
}
}

10736
assets_src/css/sass/_dore.style.scss Executable file

File diff suppressed because it is too large Load Diff

116
assets_src/css/sass/_mixins.scss Executable file
View File

@ -0,0 +1,116 @@
// Mixin to prefix several properties at once
// @author Hugo Giraudel
// @param {Map} $declarations - Declarations to prefix
// @param {List} $prefixes (()) - List of prefixes to print
@mixin prefix($declarations, $prefixes: ()) {
@each $property, $value in $declarations {
@each $prefix in $prefixes {
#{'-' + $prefix + '-' + $property}: $value;
}
#{$property}: $value;
}
}
// Gives a card depth effect.
// @param {Number} $depth - depth level (between 1 and 5)
// @link http://www.google.com/design/spec/layout/layout-principles.html#layout-principles-dimensionality Google Design
// @requires {function} top-shadow
// @requires {function} bottom-shadow
@mixin depth($depth) {
@if $depth < 1 {
box-shadow: none;
} @else if $depth > 5 {
@warn "Invalid $depth `#{$depth}` for mixin `card`.";
} @else {
box-shadow: bottom-shadow($depth), top-shadow($depth);
}
}
// Computes a top-shadow for a card effect.
// @param {Number} $depth - depth level
// @return {List}
@function top-shadow($depth) {
$primary-offset: nth($shadow-offsets-top , $depth) * 1px;
$blur: nth($shadow-blurs-top, $depth) * 4px;
$color: rgba(black, nth($shadow-opacities-top, $depth));
@return 0 $primary-offset $blur $color;
}
// Computes a bottom-shadow for a card effect.
// @param {Number} $depth - depth level
// @return {List}
@function bottom-shadow($depth) {
$primary-offset: nth($shadow-offsets-bottom, $depth) * 1px;
$blur: nth($shadow-blurs-bottom, $depth) * 5px;
$color: rgba(black, nth($shadow-opacities-bottom, $depth));
@return 0 $primary-offset $blur $color;
}
@mixin clearfix() {
&::after {
display: block;
content: "";
clear: both;
}
}
//Responsive Breakpoints
$breakpoints: (
xxs: 420px,
xs: 576px,
sm: 768px,
md: 992px,
lg: 1200px,
xl: 1440px
);
@mixin respond-below($breakpoint) {
// If the breakpoint exists in the map.
@if map-has-key($breakpoints, $breakpoint) {
// Get the breakpoint value.
$breakpoint-value: map-get(
$breakpoints,
$breakpoint
); // Write the media query.
@media (max-width: ($breakpoint-value - 1)) {
@content;
}
// If the breakpoint doesn't exist in the map.
} @else {
// Log a warning.
@warn "Invalid breakpoint: #{$breakpoint}.";
}
}
@mixin respond-above($breakpoint) {
// If the breakpoint exists in the map.
@if map-has-key($breakpoints, $breakpoint) {
// Get the breakpoint value.
$breakpoint-value: map-get(
$breakpoints,
$breakpoint
); // Write the media query.
@media (min-width: ($breakpoint-value - 1)) {
@content;
}
// If the breakpoint doesn't exist in the map.
} @else {
// Log a warning.
@warn "Invalid breakpoint: #{$breakpoint}.";
}
}
@function encodecolor($string) {
@if type-of($string) == 'color' {
$hex: str-slice(ie-hex-str($string), 4);
$string:unquote("#{$hex}");
}
$string: '%23' + $string;
@return $string;
}

View File

@ -0,0 +1,46 @@
$separator-color-light: #313131;
$separator-color: #424242;
$background-color: #18191b;
$foreground-color: #1e2022;
$input-background: #232223;
$dark-btn-background: #8d8d8d;
$light-btn-background: #e4e4e4;
$button-text-color: #d0d0d0;
$theme-color-1: #236591;
$theme-color-2: #1d477a;
$theme-color-3: #637383;
$theme-color-4: #385068;
$theme-color-5: #2e5585;
$theme-color-6: #4d5f72;
$primary-color: #8f8f8f;
$secondary-color: #707070;
$muted-color: #696969;
$gradient-color-1 : #256b99;
$gradient-color-2 : #18557e;
$gradient-color-3 : #216491;
$lp-bg-color-1 : #001425;
$lp-bg-color-2 : #001f33;
$lp-bg-color-3 : #00273b;
$lp-bg-color-4 : #003f5f;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 2 6 10 14 19;
$shadow-opacities-top: 0.1 0.3 0.6 0.7 0.8;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.1 0.3 0.6 0.7 0.8;
$logo-path: "../logos/white.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/white-full.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #313131;
$separator-color: #424242;
$background-color: #18191b;
$foreground-color: #1e2022;
$input-background: #232223;
$dark-btn-background: #8d8d8d;
$light-btn-background: #e4e4e4;
$button-text-color: #d0d0d0;
$theme-color-1: #3e83a1;
$theme-color-2: #304d72;
$theme-color-3: #637383;
$theme-color-4: #405264;
$theme-color-5: #426188;
$theme-color-6: #4d5f72;
$primary-color: #8f8f8f;
$secondary-color: #707070;
$muted-color: #696969;
$gradient-color-1 : #509ab9;
$gradient-color-2 : #3a7a96;
$gradient-color-3 : #4386a3;
$lp-bg-color-1 : #004b6b;
$lp-bg-color-2 : #006996;
$lp-bg-color-3 : #2a85ac;
$lp-bg-color-4 : #3e98be;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 2 6 10 14 19;
$shadow-opacities-top: 0.1 0.3 0.6 0.7 0.8;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.1 0.3 0.6 0.7 0.8;
$logo-path: "../logos/white.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/white-full.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #313131;
$separator-color: #424242;
$background-color: #18191b;
$foreground-color: #1e2022;
$input-background: #232223;
$dark-btn-background: #8d8d8d;
$light-btn-background: #e4e4e4;
$button-text-color: #d0d0d0;
$theme-color-1: #38688b;
$theme-color-2: #3e8ab9;
$theme-color-3: #6a7980;
$theme-color-4: #365573;
$theme-color-5: #47799a;
$theme-color-6: #8e9599;
$primary-color: #8f8f8f;
$secondary-color: #707070;
$muted-color: #696969;
$gradient-color-1 : #46789b;
$gradient-color-2 : #38688b;
$gradient-color-3 : #427599;
$lp-bg-color-1 : #06243f;
$lp-bg-color-2 : #072c4b;
$lp-bg-color-3 : #094475;
$lp-bg-color-4 : #0c5088;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 2 6 10 14 19;
$shadow-opacities-top: 0.1 0.3 0.6 0.7 0.8;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.1 0.3 0.6 0.7 0.8;
$logo-path: "../logos/white.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/white-full.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #313131;
$separator-color: #424242;
$background-color: #1a1b18;
$foreground-color: #212220;
$input-background: #232223;
$dark-btn-background: #8d8d8d;
$light-btn-background: #e4e4e4;
$button-text-color: #d0d0d0;
$theme-color-1: #63883b;
$theme-color-2: #4d7058;
$theme-color-3: #9ca397;
$theme-color-4: #808d6e;
$theme-color-5: #5d946f;
$theme-color-6: #7e9172;
$primary-color: #8f8f8f;
$secondary-color: #707070;
$muted-color: #696969;
$gradient-color-1 : #6b8f45;
$gradient-color-2 : #567535;
$gradient-color-3 : #5f803c;
$lp-bg-color-1 : #2a460c;
$lp-bg-color-2 : #355513;
$lp-bg-color-3 : #4d7521;
$lp-bg-color-4 : #588f1d;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 2 6 10 14 19;
$shadow-opacities-top: 0.1 0.3 0.6 0.7 0.8;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.1 0.3 0.6 0.7 0.8;
$logo-path: "../logos/white.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/white-full.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #313131;
$separator-color: #424242;
$background-color: #1a1b18;
$foreground-color: #212220;
$input-background: #232223;
$dark-btn-background: #8d8d8d;
$light-btn-background: #e4e4e4;
$button-text-color: #d0d0d0;
$theme-color-1: #627745;
$theme-color-2: #8f7b39;
$theme-color-3: #849b65;
$theme-color-4: #494d43;
$theme-color-5: #d1c19a;
$theme-color-6: #7c8174;
$primary-color: #8f8f8f;
$secondary-color: #707070;
$muted-color: #696969;
$gradient-color-1 : #738855;
$gradient-color-2 : #576a3d;
$gradient-color-3 : #607445;
$lp-bg-color-1 : #1d2b0a;
$lp-bg-color-2 : #2b3d0f;
$lp-bg-color-3 : #3b501d;
$lp-bg-color-4 : #475f26;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 2 6 10 14 19;
$shadow-opacities-top: 0.1 0.3 0.6 0.7 0.8;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.1 0.3 0.6 0.7 0.8;
$logo-path: "../logos/white.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/white-full.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #313131;
$separator-color: #424242;
$background-color: #1d1d1d;
$foreground-color: #242424;
$input-background: #232223;
$dark-btn-background: #8d8d8d;
$light-btn-background: #e4e4e4;
$button-text-color: #d0d0d0;
$theme-color-1: #767e8d;
$theme-color-2: #4d5a5f;
$theme-color-3: #444341;
$theme-color-4: #60646b;
$theme-color-5: #52595f;
$theme-color-6: #5a5953;
$primary-color: #8f8f8f;
$secondary-color: #707070;
$muted-color: #696969;
$gradient-color-1 : #787c85;
$gradient-color-2 : #666b75;
$gradient-color-3 : #6d727a;
$lp-bg-color-1 : #1c1d1d;
$lp-bg-color-2 : #1e1f1f;
$lp-bg-color-3 : #2c2d2e;
$lp-bg-color-4 : #303030;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 2 6 10 14 19;
$shadow-opacities-top: 0.1 0.3 0.6 0.7 0.8;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.1 0.3 0.6 0.7 0.8;
$logo-path: "../logos/white.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/white-full.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #313131;
$separator-color: #424242;
$background-color: #1b1a19;
$foreground-color: #242322;
$input-background: #232223;
$dark-btn-background: #8d8d8d;
$light-btn-background: #e4e4e4;
$button-text-color: #d0d0d0;
$theme-color-1: #ad7140;
$theme-color-2: #aa4f43;
$theme-color-3: #c4a688;
$theme-color-4: #916948;
$theme-color-5: #856f5a;
$theme-color-6: #6e5e59;
$primary-color: #8f8f8f;
$secondary-color: #707070;
$muted-color: #696969;
$gradient-color-1 : #c27d45;
$gradient-color-2 : #ad6e3a;
$gradient-color-3 : #af7240;
$lp-bg-color-1 : #5a2602;
$lp-bg-color-2 : #853c08;
$lp-bg-color-3 : #af5210;
$lp-bg-color-4 : #cf6f29;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 2 6 10 14 19;
$shadow-opacities-top: 0.1 0.3 0.6 0.7 0.8;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.1 0.3 0.6 0.7 0.8;
$logo-path: "../logos/white.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/white-full.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #313131;
$separator-color: #424242;
$background-color: #1d1a1d;
$foreground-color: #242224;
$input-background: #232223;
$dark-btn-background: #8d8d8d;
$light-btn-background: #e4e4e4;
$button-text-color: #d0d0d0;
$theme-color-1: #7e4877;
$theme-color-2: #3c4b9a;
$theme-color-3: #af67a4;
$theme-color-4: #743c6e;
$theme-color-5: #4b5480;
$theme-color-6: #795d75;
$primary-color: #8f8f8f;
$secondary-color: #707070;
$muted-color: #696969;
$gradient-color-1 : #8a5381;
$gradient-color-2 : #7e4877;
$gradient-color-3 : #804a77;
$lp-bg-color-1 : #240429;
$lp-bg-color-2 : #29072b;
$lp-bg-color-3 : #420e40;
$lp-bg-color-4 : #52124c;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 2 6 10 14 19;
$shadow-opacities-top: 0.1 0.3 0.6 0.7 0.8;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.1 0.3 0.6 0.7 0.8;
$logo-path: "../logos/white.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/white-full.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,47 @@
$separator-color-light: #313131;
$separator-color: #424242;
$background-color: #1b1919;
$foreground-color: #222020;
$input-background: #232223;
$dark-btn-background: #8d8d8d;
$light-btn-background: #e4e4e4;
$button-text-color: #d0d0d0;
$theme-color-1: #913a47;
$theme-color-2: #aa5e6c;
$theme-color-3: #a5456d;
$theme-color-4: #843a47;
$theme-color-5: #9e777e;
$theme-color-6: #c07a6c;
$primary-color: #8f8f8f;
$secondary-color: #707070;
$muted-color: #696969;
$gradient-color-1 : #9e4653;
$gradient-color-2 : #913a47;
$gradient-color-3 : #913e4a;
$lp-bg-color-1 : #270303;
$lp-bg-color-2 : #3a0807;
$lp-bg-color-3 : #5a1312;
$lp-bg-color-4 : #580c0a;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 2 6 10 14 19;
$shadow-opacities-top: 0.1 0.3 0.6 0.7 0.8;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.1 0.3 0.6 0.7 0.8;
$logo-path: "../logos/white.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/white-full.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #313131;
$separator-color: #424242;
$background-color: #1f1e1c;
$foreground-color: #242321;
$input-background: #232223;
$dark-btn-background: #8d8d8d;
$light-btn-background: #e4e4e4;
$button-text-color: #d0d0d0;
$theme-color-1: #8a722c;
$theme-color-2: #a88048;
$theme-color-3: #ac9c57;
$theme-color-4: #665218;
$theme-color-5: #7c715f;
$theme-color-6: #8d7a24;
$primary-color: #8f8f8f;
$secondary-color: #707070;
$muted-color: #696969;
$gradient-color-1 : #a08a47;
$gradient-color-2 : #7a6525;
$gradient-color-3 : #8b773a;
$lp-bg-color-1 : #2b2411;
$lp-bg-color-2 : #52451e;
$lp-bg-color-3 : #685828;
$lp-bg-color-4 : #7a672d;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 2 6 10 14 19;
$shadow-opacities-top: 0.1 0.3 0.6 0.7 0.8;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.1 0.3 0.6 0.7 0.8;
$logo-path: "../logos/white.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/white-full.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,47 @@
$separator-color-light: #f3f3f3;
$separator-color: #d7d7d7;
$background-color: #f8f8f8;
$foreground-color : white;
$input-background: white;
$dark-btn-background: #131113;
$light-btn-background: #ececec;
$button-text-color: #fff;
$theme-color-1: #00365a;
$theme-color-2: #184f90;
$theme-color-3: #8a9fb4;
$theme-color-4: #2c4d6e;
$theme-color-5: #245794;
$theme-color-6: #6a7b8d;
$primary-color: #3a3a3a;
$secondary-color: #8f8f8f;
$muted-color: #909090;
$gradient-color-1 : #015994;
$gradient-color-2 : #00365a;
$gradient-color-3 : #00538a;
$lp-bg-color-1 : #001627;
$lp-bg-color-2 : #01253d;
$lp-bg-color-3 : #014366;
$lp-bg-color-4 : #006da3;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 1.5 5 10 14 19;
$shadow-opacities-top: 0.04 0.1 0.19 0.25 0.3;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.04 0.1 0.2 0.22 0.22;
$logo-path: "../logos/black.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/black.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,47 @@
$separator-color-light: #f3f3f3;
$separator-color: #d7d7d7;
$background-color: #f8f8f8;
$foreground-color : white;
$input-background: white;
$dark-btn-background: #131113;
$light-btn-background: #ececec;
$button-text-color: #fff;
$theme-color-1: #008ecc;
$theme-color-2: #73c2fb;
$theme-color-3: #95c8d9;
$theme-color-4: #2780a7;
$theme-color-5: #6fa4cb;
$theme-color-6: #8aaab4;
$primary-color: #3a3a3a;
$secondary-color: #8f8f8f;
$muted-color: #909090;
$gradient-color-1 : #39addf;
$gradient-color-2 : #008ecc;
$gradient-color-3 : #2e98c5;
$lp-bg-color-1 : #006894;
$lp-bg-color-2 : #007fb6;
$lp-bg-color-3 : #37b9f1;
$lp-bg-color-4 : #56c4f3;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 1.5 5 10 14 19;
$shadow-opacities-top: 0.04 0.1 0.19 0.25 0.3;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.04 0.1 0.2 0.22 0.22;
$logo-path: "../logos/black.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/black.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,47 @@
$separator-color-light: #f3f3f3;
$separator-color: #d7d7d7;
$background-color: #f8f8f8;
$foreground-color : white;
$input-background: white;
$dark-btn-background: #131113;
$light-btn-background: #ececec;
$button-text-color: #fff;
$theme-color-1: #145388;
$theme-color-2: #2a93d5;
$theme-color-3: #6c90a1;
$theme-color-4: #365573;
$theme-color-5: #47799a;
$theme-color-6: #8e9599;
$primary-color: #3a3a3a;
$secondary-color: #8f8f8f;
$muted-color: #909090;
$gradient-color-1 : #1f5c8d;
$gradient-color-2 : #145388;
$gradient-color-3 : #285172;
$lp-bg-color-1 : #073458;
$lp-bg-color-2 : #0a4372;
$lp-bg-color-3 : #0b60a7;
$lp-bg-color-4 : #1370bd;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 1.5 5 10 14 19;
$shadow-opacities-top: 0.04 0.1 0.19 0.25 0.3;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.04 0.1 0.2 0.22 0.22;
$logo-path: "../logos/black.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/black.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #f3f3f3;
$separator-color: #d7d7d7;
$background-color: #f8f8f8;
$foreground-color : white;
$input-background: white;
$dark-btn-background: #131113;
$light-btn-background: #ececec;
$button-text-color: #fff;
$theme-color-1: #6fb327;
$theme-color-2: #51c878;
$theme-color-3: #aaba9f;
$theme-color-4: #849b65;
$theme-color-5: #3db264;
$theme-color-6: #9ecd7e;
$primary-color: #3a3a3a;
$secondary-color: #8f8f8f;
$muted-color: #909090;
$gradient-color-1 : #8ebb4e;
$gradient-color-2 : #6c9e37;
$gradient-color-3 : #76a543;
$lp-bg-color-1 : #426d14;
$lp-bg-color-2 : #51831d;
$lp-bg-color-3 : #70ad2e;
$lp-bg-color-4 : #8de231;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 1.5 5 10 14 19;
$shadow-opacities-top: 0.04 0.1 0.19 0.25 0.3;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.04 0.1 0.2 0.22 0.22;
$logo-path: "../logos/black.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/black.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #f3f3f3;
$separator-color: #d7d7d7;
$background-color: #f8f8f8;
$foreground-color : white;
$input-background: white;
$dark-btn-background: #131113;
$light-btn-background: #ececec;
$button-text-color: #fff;
$theme-color-1: #576a3d;
$theme-color-2: #dd9c02;
$theme-color-3: #849b65;
$theme-color-4: #494d43;
$theme-color-5: #d1c19a;
$theme-color-6: #7c8174;
$primary-color: #3a3a3a;
$secondary-color: #8f8f8f;
$muted-color: #909090;
$gradient-color-1 : #7baa39;
$gradient-color-2 : #576a3d;
$gradient-color-3 : #73904c;
$lp-bg-color-1 : #314712;
$lp-bg-color-2 : #436119;
$lp-bg-color-3 : #5a7a2e;
$lp-bg-color-4 : #779e41;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 1.5 5 10 14 19;
$shadow-opacities-top: 0.04 0.1 0.19 0.25 0.3;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.04 0.1 0.2 0.22 0.22;
$logo-path: "../logos/black.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/black.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #f3f3f3;
$separator-color: #d7d7d7;
$background-color: #f8f8f8;
$foreground-color : white;
$input-background: white;
$dark-btn-background: #131113;
$light-btn-background: #ececec;
$button-text-color: #fff;
$theme-color-1: #48494b;
$theme-color-2: #999da0;
$theme-color-3: #bebdb8;
$theme-color-4: #60646b;
$theme-color-5: #8996a0;
$theme-color-6: #aaa89c;
$primary-color: #3a3a3a;
$secondary-color: #8f8f8f;
$muted-color: #909090;
$gradient-color-1 : #646568;
$gradient-color-2 : #48494b;
$gradient-color-3 : #4d4d4d;
$lp-bg-color-1 : #242525;
$lp-bg-color-2 : #393a3b;
$lp-bg-color-3 : #57585c;
$lp-bg-color-4 : #6c6e72;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 1.5 5 10 14 19;
$shadow-opacities-top: 0.04 0.1 0.19 0.25 0.3;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.04 0.1 0.2 0.22 0.22;
$logo-path: "../logos/black.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/black.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #f3f3f3;
$separator-color: #d7d7d7;
$background-color: #f8f8f8;
$foreground-color : white;
$input-background: white;
$dark-btn-background: #131113;
$light-btn-background: #ececec;
$button-text-color: #fff;
$theme-color-1: #ed7117;
$theme-color-2: #e7523e;
$theme-color-3: #d6a779;
$theme-color-4: #dba070;
$theme-color-5: #f6c797;
$theme-color-6: #d6cdca;
$primary-color: #3a3a3a;
$secondary-color: #8f8f8f;
$muted-color: #909090;
$gradient-color-1 : #f0701a;
$gradient-color-2 : #ce6520;
$gradient-color-3 : #da6b22;
$lp-bg-color-1 : #af4b03;
$lp-bg-color-2 : #bb5308;
$lp-bg-color-3 : #ed7117;
$lp-bg-color-4 : #ff8935;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 1.5 5 10 14 19;
$shadow-opacities-top: 0.04 0.1 0.19 0.25 0.3;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.04 0.1 0.2 0.22 0.22;
$logo-path: "../logos/black.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/black.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #f3f3f3;
$separator-color: #d7d7d7;
$background-color: #f8f8f8;
$foreground-color : white;
$input-background: white;
$dark-btn-background: #575057;
$light-btn-background: #d4d4d4;
$button-text-color: #fff;
$theme-color-1: #922c88;
$theme-color-2: #4556ac;
$theme-color-3: #af67a4;
$theme-color-4: #743c6e;
$theme-color-5: #4b5480;
$theme-color-6: #795d75;
$primary-color: #3a3a3a;
$secondary-color: #8f8f8f;
$muted-color: #909090;
$gradient-color-1 : #a9449f;
$gradient-color-2 : #832579;
$gradient-color-3 : #922c88;
$lp-bg-color-1 : #52125a;
$lp-bg-color-2 : #511452;
$lp-bg-color-3 : #b02ba6;
$lp-bg-color-4 : #cb33bd;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 1.5 5 10 14 19;
$shadow-opacities-top: 0.04 0.1 0.19 0.25 0.3;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.04 0.1 0.2 0.22 0.22;
$logo-path: "../logos/black.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/black.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #f3f3f3;
$separator-color: #d7d7d7;
$background-color: #f8f8f8;
$foreground-color : white;
$input-background: white;
$dark-btn-background: #131113;
$light-btn-background: #ececec;
$button-text-color: #fff;
$theme-color-1: #900604;
$theme-color-2: #e7284a;
$theme-color-3: #c06b62;
$theme-color-4: #843a47;
$theme-color-5: #d8667a;
$theme-color-6: #f69682;
$primary-color: #3a3a3a;
$secondary-color: #8f8f8f;
$muted-color: #909090;
$gradient-color-1 : #992235;
$gradient-color-2 : #790503;
$gradient-color-3 : #900604;
$lp-bg-color-1 : #3b0201;
$lp-bg-color-2 : #5c0605;
$lp-bg-color-3 : #8b0e0b;
$lp-bg-color-4 : #a51310;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 1.5 5 10 14 19;
$shadow-opacities-top: 0.04 0.1 0.19 0.25 0.3;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.04 0.1 0.2 0.22 0.22;
$logo-path: "../logos/black.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/black.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

View File

@ -0,0 +1,46 @@
$separator-color-light: #f3f3f3;
$separator-color: #d7d7d7;
$background-color: #f8f8f8;
$foreground-color : white;
$input-background: white;
$dark-btn-background: #131113;
$light-btn-background: #ececec;
$button-text-color: #fff;
$theme-color-1: #c0a145;
$theme-color-2: #e3b778;
$theme-color-3: #e6cd61;
$theme-color-4: #ae8c27;
$theme-color-5: #c9b69a;
$theme-color-6: #e2c33c;
$primary-color: #3a3a3a;
$secondary-color: #8f8f8f;
$muted-color: #909090;
$gradient-color-1 : #e0bf5c;
$gradient-color-2 : #c7a951;
$gradient-color-3 : #d3b455;
$lp-bg-color-1 : #74622d;
$lp-bg-color-2 : #9c8339;
$lp-bg-color-3 : #dab74f;
$lp-bg-color-4 : #e6c154;
$shadow-offsets-top : 1 3 10 14 19;
$shadow-blurs-top: 1.5 5 10 14 19;
$shadow-opacities-top: 0.04 0.1 0.19 0.25 0.3;
$shadow-offsets-bottom : 1 3 6 10 15;
$shadow-blurs-bottom: 3 6 6 5 6;
$shadow-opacities-bottom: 0.04 0.1 0.2 0.22 0.22;
$logo-path: "../logos/black.svg";
$logo-path-mobile: "../logos/mobile.svg";
$lp-logo-path-pinned: "../logos/black.svg";
$lp-logo-path: "../logos/white-full.svg";
@import "../_mixins.scss";
@import "../_dore.style.scss";

6
assets_src/css/vendor/baguetteBox.min.css vendored Executable file
View File

@ -0,0 +1,6 @@
/*!
* baguetteBox.js
* @author feimosi
* @version 1.11.0
* @url https://github.com/feimosi/baguetteBox.js
*/#baguetteBox-overlay{display:none;opacity:0;position:fixed;overflow:hidden;top:0;left:0;width:100%;height:100%;z-index:1000000;background-color:#222;background-color:rgba(0,0,0,.8);-webkit-transition:opacity .5s ease;transition:opacity .5s ease}#baguetteBox-overlay.visible{opacity:1}#baguetteBox-overlay .full-image{display:inline-block;position:relative;width:100%;height:100%;text-align:center}#baguetteBox-overlay .full-image figure{display:inline;margin:0;height:100%}#baguetteBox-overlay .full-image img{display:inline-block;width:auto;height:auto;max-height:100%;max-width:100%;vertical-align:middle;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);-moz-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6)}#baguetteBox-overlay .full-image figcaption{display:block;position:absolute;bottom:0;width:100%;text-align:center;line-height:1.8;white-space:normal;color:#ccc;background-color:#000;background-color:rgba(0,0,0,.6);font-family:sans-serif}#baguetteBox-overlay .full-image:before{content:"";display:inline-block;height:50%;width:1px;margin-right:-1px}#baguetteBox-slider{position:absolute;left:0;top:0;height:100%;width:100%;white-space:nowrap;-webkit-transition:left .4s ease,-webkit-transform .4s ease;transition:left .4s ease,-webkit-transform .4s ease;transition:left .4s ease,transform .4s ease;transition:left .4s ease,transform .4s ease,-webkit-transform .4s ease,-moz-transform .4s ease}#baguetteBox-slider.bounce-from-right{-webkit-animation:bounceFromRight .4s ease-out;animation:bounceFromRight .4s ease-out}#baguetteBox-slider.bounce-from-left{-webkit-animation:bounceFromLeft .4s ease-out;animation:bounceFromLeft .4s ease-out}@-webkit-keyframes bounceFromRight{0%,100%{margin-left:0}50%{margin-left:-30px}}@keyframes bounceFromRight{0%,100%{margin-left:0}50%{margin-left:-30px}}@-webkit-keyframes bounceFromLeft{0%,100%{margin-left:0}50%{margin-left:30px}}@keyframes bounceFromLeft{0%,100%{margin-left:0}50%{margin-left:30px}}.baguetteBox-button#next-button,.baguetteBox-button#previous-button{top:50%;top:calc(50% - 30px);width:44px;height:60px}.baguetteBox-button{position:absolute;cursor:pointer;outline:0;padding:0;margin:0;border:0;-moz-border-radius:15%;border-radius:15%;background-color:#323232;background-color:rgba(50,50,50,.5);color:#ddd;font:1.6em sans-serif;-webkit-transition:background-color .4s ease;transition:background-color .4s ease}.baguetteBox-button:focus,.baguetteBox-button:hover{background-color:rgba(50,50,50,.9)}.baguetteBox-button#next-button{right:2%}.baguetteBox-button#previous-button{left:2%}.baguetteBox-button#close-button{top:20px;right:2%;right:calc(2% + 6px);width:30px;height:30px}.baguetteBox-button svg{position:absolute;left:0;top:0}.baguetteBox-spinner{width:40px;height:40px;display:inline-block;position:absolute;top:50%;left:50%;margin-top:-20px;margin-left:-20px}.baguetteBox-double-bounce1,.baguetteBox-double-bounce2{width:100%;height:100%;-moz-border-radius:50%;border-radius:50%;background-color:#fff;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:bounce 2s infinite ease-in-out;animation:bounce 2s infinite ease-in-out}.baguetteBox-double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}@-webkit-keyframes bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounce{0%,100%{-webkit-transform:scale(0);-moz-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);-moz-transform:scale(1);transform:scale(1)}}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,210 @@
.has-float-label {
display: block;
position: relative;
}
.has-float-label label,
.has-float-label > span:last-of-type {
position: absolute;
cursor: text;
font-size: 90%;
opacity: 1;
top: -0.4em;
left: 0.75rem;
z-index: 3;
line-height: 1;
padding: 0 1px;
}
.has-float-label label::after,
.has-float-label > span::after {
content: " ";
display: block;
position: absolute;
height: 5px;
top: 3px;
left: -0.2em;
right: -0.2em;
z-index: -1;
}
.has-float-label .form-control::-webkit-input-placeholder {
opacity: 1;
}
.has-float-label .form-control::-moz-placeholder {
opacity: 1;
}
.has-float-label .form-control:-ms-input-placeholder {
opacity: 1;
}
.has-float-label .form-control::placeholder {
opacity: 1;
}
.has-float-label
.form-control:placeholder-shown:not(:focus)::-webkit-input-placeholder {
opacity: 0;
}
.has-float-label .form-control:placeholder-shown:not(:focus)::-moz-placeholder {
opacity: 0;
}
.has-float-label
.form-control:placeholder-shown:not(:focus):-ms-input-placeholder {
opacity: 0;
}
.has-float-label .form-control:placeholder-shown:not(:focus)::placeholder {
opacity: 0;
}
.has-float-label .form-control:placeholder-shown:not(:focus) + * {
}
.input-group .has-float-label {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
margin-bottom: 0;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.input-group .has-float-label .form-control {
width: 100%;
}
.input-group .has-float-label:not(:last-child),
.input-group .has-float-label:not(:last-child) .form-control {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
border-right: 0;
}
.input-group .has-float-label:not(:first-child),
.input-group .has-float-label:not(:first-child) .form-control {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.form-group.has-top-label .form-control, .form-group.has-top-label .bootstrap-tagsinput {
padding: 1.7rem 0.75rem 0.5rem 0.75rem;
}
.has-top-label {
display: block;
position: relative;
}
.has-top-label label,
.has-top-label > span:last-of-type {
position: absolute;
cursor: text;
font-size: 76%;
opacity: 1;
top: 0.7rem;
left: 0.75rem;
z-index: 3;
line-height: 1;
padding: 0 1px;
font-weight: 600;
}
.has-top-label label::after,
.has-top-label > span::after {
content: " ";
display: block;
position: absolute;
height: 2px;
top: 50%;
left: -0.2em;
right: -0.2em;
z-index: -1;
}
.has-top-label .form-control::-webkit-input-placeholder {
opacity: 1;
}
.has-top-label .form-control::-moz-placeholder {
opacity: 1;
}
.has-top-label .form-control:-ms-input-placeholder {
opacity: 1;
}
.has-top-label .form-control::placeholder {
opacity: 1;
}
.has-top-label
.form-control:placeholder-shown:not(:focus)::-webkit-input-placeholder {
opacity: 0;
}
.has-top-label .form-control:placeholder-shown:not(:focus)::-moz-placeholder {
opacity: 0;
}
.has-top-label
.form-control:placeholder-shown:not(:focus):-ms-input-placeholder {
opacity: 0;
}
.has-top-label .form-control:placeholder-shown:not(:focus)::placeholder {
opacity: 0;
}
.input-group .has-top-label {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
margin-bottom: 0;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.input-group .has-top-label .form-control {
width: 100%;
}
.input-group .has-top-label:not(:last-child),
.input-group .has-top-label:not(:last-child) .form-control {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
border-right: 0;
}
.input-group .has-top-label:not(:first-child),
.input-group .has-top-label:not(:first-child) .form-control {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.form-group.has-top-label .form-control, .form-group.has-top-label .bootstrap-tagsinput {
height: calc(3.3rem + 2px);
}
.form-group.has-top-label textarea.form-control {
min-height: calc(3.3rem + 2px);
height: initial;
}
.form-group.has-top-label select.form-control:not([size]):not([multiple]) {
height: calc(3.3rem + 2px);
padding: 1.7rem 0.75rem 0.5rem 0.5rem;
}

36
assets_src/css/vendor/bootstrap-stars.css vendored Executable file
View File

@ -0,0 +1,36 @@
.br-wrapper {
display: inline-block;
vertical-align: top;
}
.br-theme-bootstrap-stars .br-widget {
height: 28px;
white-space: nowrap;
}
.br-theme-bootstrap-stars .br-widget a {
font-family: "simple-line-icons";
font-size: 16px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
text-decoration: none;
margin-right: 2px;
}
.br-theme-bootstrap-stars .br-widget a:after {
content: "\e09b";
color: #d2d2d2;
}
.br-theme-bootstrap-stars .br-widget .br-current-rating {
display: none;
}
.br-theme-bootstrap-stars .br-readonly a {
cursor: default;
}

55
assets_src/css/vendor/bootstrap-tagsinput.css vendored Executable file
View File

@ -0,0 +1,55 @@
.bootstrap-tagsinput {
background-color: #fff;
border: 1px solid #ccc;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
display: inline-block;
padding: 4px 6px;
color: #555;
vertical-align: middle;
border-radius: 4px;
max-width: 100%;
line-height: 22px;
cursor: text;
}
.bootstrap-tagsinput input {
border: none;
box-shadow: none;
outline: none;
background-color: transparent;
padding: 0 6px;
margin: 0;
width: auto;
max-width: inherit;
}
.bootstrap-tagsinput.form-control input::-moz-placeholder {
color: #777;
opacity: 1;
}
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
color: #777;
}
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
color: #777;
}
.bootstrap-tagsinput input:focus {
border: none;
box-shadow: none;
}
.bootstrap-tagsinput .tag {
margin-right: 2px;
color: white;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
margin-left: 8px;
cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
content: "x";
padding: 0px 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

7
assets_src/css/vendor/bootstrap.min.css vendored Executable file

File diff suppressed because one or more lines are too long

1428
assets_src/css/vendor/bootstrap.rtl.only.min.css vendored Executable file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,156 @@
.custom-switch .custom-switch-input {
display: none;
}
.custom-switch .custom-switch-input,
.custom-switch .custom-switch-input *,
.custom-switch .custom-switch-input :after,
.custom-switch .custom-switch-input :before,
.custom-switch .custom-switch-input + .custom-switch-btn,
.custom-switch .custom-switch-input:after,
.custom-switch .custom-switch-input:before {
box-sizing: border-box;
}
.custom-switch .custom-switch-input :after:selection,
.custom-switch .custom-switch-input :before:selection,
.custom-switch .custom-switch-input :selection,
.custom-switch .custom-switch-input + .custom-switch-btn:selection,
.custom-switch .custom-switch-input:after:selection,
.custom-switch .custom-switch-input:before:selection,
.custom-switch .custom-switch-input:selection {
background: 0 0;
}
.custom-switch .custom-switch-input + .custom-switch-btn {
outline: 0;
display: inline-block;
position: relative;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
width: 58px;
height: 28px;
margin: 0;
padding: 4px;
background: #ced4da;
border-radius: 76px;
transition: all 0.3s ease;
border: 1px solid #ced4da;
}
.custom-switch .custom-switch-input + .custom-switch-btn:after,
.custom-switch .custom-switch-input + .custom-switch-btn:before {
position: relative;
display: block;
content: "";
width: 18px;
height: 18px;
}
.custom-switch .custom-switch-input + .custom-switch-btn:after {
left: 2px;
border-radius: 50%;
background: #fff;
transition: all 0.3s ease;
}
.custom-switch .custom-switch-input + .custom-switch-btn:before {
display: none;
}
.custom-switch .custom-switch-input:checked + .custom-switch-btn:after {
left: 30px;
}
.custom-switch
.custom-switch-input:checked
+ .custom-switch-btn
~ .custom-switch-content-checked {
opacity: 1;
height: auto;
}
.custom-switch
.custom-switch-input:checked
+ .custom-switch-btn
~ .custom-switch-content-unchecked {
display: none;
opacity: 0;
height: 0;
}
.custom-switch
.custom-switch-input:not(:checked)
+ .custom-switch-btn
~ .custom-switch-content-checked {
display: none;
opacity: 0;
height: 0;
}
.custom-switch
.custom-switch-input:not(:checked)
+ .custom-switch-btn
~ .custom-switch-content-unchecked {
opacity: 1;
height: auto;
}
.custom-switch.custom-switch-label-io
.custom-switch-input
+ .custom-switch-btn {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='42.5' y='16.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol' fill='%23fff'%3EO%3C/text%3E%3C/svg%3E");
}
.custom-switch.custom-switch-label-io
.custom-switch-input:checked
+ .custom-switch-btn {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='18.13333' y='16.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol' fill='%23fff'%3EI%3C/text%3E%3C/svg%3E");
}
.custom-switch.custom-switch-label-onoff
.custom-switch-input
+ .custom-switch-btn {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='38.85714' y='16.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol' fill='%23fff'%3EOff%3C/text%3E%3C/svg%3E");
}
.custom-switch.custom-switch-label-onoff
.custom-switch-input:checked
+ .custom-switch-btn {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='9.71429' y='16.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol' fill='%23fff'%3EOn%3C/text%3E%3C/svg%3E");
}
.custom-switch.custom-switch-label-yesno
.custom-switch-input
+ .custom-switch-btn {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='32.85714' y='16.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol' fill='%23fff'%3ENo%3C/text%3E%3C/svg%3E");
}
.custom-switch.custom-switch-label-yesno
.custom-switch-input:checked
+ .custom-switch-btn {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='9.71429' y='16.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol' fill='%23fff'%3EYes%3C/text%3E%3C/svg%3E");
}
.custom-switch.custom-switch-label-status
.custom-switch-input
+ .custom-switch-btn {
width: 88px;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='38'%3E%3Ctext x='38.85714' y='16.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol' fill='%23fff'%3EDisabled%3C/text%3E%3C/svg%3E");
}
.custom-switch.custom-switch-label-status
.custom-switch-input:checked
+ .custom-switch-btn {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='38'%3E%3Ctext x='9.71429' y='16.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol' fill='%23fff'%3EEnabled%3C/text%3E%3C/svg%3E");
}
.custom-switch.custom-switch-label-status
.custom-switch-input:checked
+ .custom-switch-btn:after {
left: 50px;
}
.custom-switch-small {
height: 23px;
}
.custom-switch-small .custom-switch-input + .custom-switch-btn {
width: 42px;
height: 23px;
}
.custom-switch-small .custom-switch-input + .custom-switch-btn:after, .custom-switch-small .custom-switch-input + .custom-switch-btn:before {
width: 14px;
height: 14px;
left: 0;
top: -1px;
}
.custom-switch-small .custom-switch-input:checked + .custom-switch-btn:after {
left: 18px;
}

9
assets_src/css/vendor/cropper.min.css vendored Executable file
View File

@ -0,0 +1,9 @@
/*!
* Cropper.js v1.4.0
* https://fengyuanchen.github.io/cropperjs
*
* Copyright 2015-present Chen Fengyuan
* Released under the MIT license
*
* Date: 2018-06-01T15:18:09.891Z
*/.cropper-container{direction:ltr;font-size:0;line-height:0;position:relative;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cropper-container img{display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline-color:rgba(51,153,255,.75);outline:1px solid #39f;overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty{cursor:default !important}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty:before{display:none !important}table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child,table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child{position:relative;padding-left:30px;cursor:pointer}table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before{top:12px;left:4px;height:14px;width:14px;display:block;position:absolute;color:white;border:2px solid white;border-radius:14px;box-shadow:0 0 3px #444;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:'Courier New', Courier, monospace;line-height:14px;content:'+';background-color:#0275d8}table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before{content:'-';background-color:#d33333}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child{padding-left:27px}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child:before,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child:before{top:5px;left:4px;height:14px;width:14px;border-radius:14px;line-height:14px;text-indent:3px}table.dataTable.dtr-column>tbody>tr>td.control,table.dataTable.dtr-column>tbody>tr>th.control{position:relative;cursor:pointer}table.dataTable.dtr-column>tbody>tr>td.control:before,table.dataTable.dtr-column>tbody>tr>th.control:before{top:50%;left:50%;height:16px;width:16px;margin-top:-10px;margin-left:-10px;display:block;position:absolute;color:white;border:2px solid white;border-radius:14px;box-shadow:0 0 3px #444;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:'Courier New', Courier, monospace;line-height:14px;content:'+';background-color:#0275d8}table.dataTable.dtr-column>tbody>tr.parent td.control:before,table.dataTable.dtr-column>tbody>tr.parent th.control:before{content:'-';background-color:#d33333}table.dataTable>tbody>tr.child{padding:0.5em 1em}table.dataTable>tbody>tr.child:hover{background:transparent !important}table.dataTable>tbody>tr.child ul.dtr-details{display:inline-block;list-style-type:none;margin:0;padding:0}table.dataTable>tbody>tr.child ul.dtr-details>li{border-bottom:1px solid #efefef;padding:0.5em 0}table.dataTable>tbody>tr.child ul.dtr-details>li:first-child{padding-top:0}table.dataTable>tbody>tr.child ul.dtr-details>li:last-child{border-bottom:none}table.dataTable>tbody>tr.child span.dtr-title{display:inline-block;min-width:75px;font-weight:bold}div.dtr-modal{position:fixed;box-sizing:border-box;top:0;left:0;height:100%;width:100%;z-index:100;padding:10em 1em}div.dtr-modal div.dtr-modal-display{position:absolute;top:0;left:0;bottom:0;right:0;width:50%;height:50%;overflow:auto;margin:auto;z-index:102;overflow:auto;background-color:#f5f5f7;border:1px solid black;border-radius:0.5em;box-shadow:0 12px 30px rgba(0,0,0,0.6)}div.dtr-modal div.dtr-modal-content{position:relative;padding:1em}div.dtr-modal div.dtr-modal-close{position:absolute;top:6px;right:6px;width:22px;height:22px;border:1px solid #eaeaea;background-color:#f9f9f9;text-align:center;border-radius:3px;cursor:pointer;z-index:12}div.dtr-modal div.dtr-modal-close:hover{background-color:#eaeaea}div.dtr-modal div.dtr-modal-background{position:fixed;top:0;left:0;right:0;bottom:0;z-index:101;background:rgba(0,0,0,0.6)}@media screen and (max-width: 767px){div.dtr-modal div.dtr-modal-display{width:95%}}div.dtr-bs-modal table.table tr:first-child td{border-top:none}

1
assets_src/css/vendor/dropzone.min.css vendored Executable file

File diff suppressed because one or more lines are too long

5
assets_src/css/vendor/fullcalendar.min.css vendored Executable file

File diff suppressed because one or more lines are too long

3
assets_src/css/vendor/glide.core.min.css vendored Executable file
View File

@ -0,0 +1,3 @@
.glide{position:relative;width:100%;box-sizing:border-box}.glide *{box-sizing:inherit}.glide__track{overflow:hidden}.glide__slides{position:relative;width:100%;list-style:none;backface-visibility:hidden;transform-style:preserve-3d;touch-action:pan-Y;overflow:hidden;padding:0;white-space:nowrap;display:flex;flex-wrap:nowrap;will-change:transform}.glide__slides--dragging{user-select:none}.glide__slide{width:100%;height:100%;flex-shrink:0;white-space:normal;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent}.glide__slide a{user-select:none;-webkit-user-drag:none;-moz-user-select:none;-ms-user-select:none}.glide__arrows{-webkit-touch-callout:none;user-select:none}.glide__bullets{-webkit-touch-callout:none;user-select:none}.glide--rtl{direction:rtl}
.glide__arrow{position:absolute;display:block;top:50%;z-index:2;color:white;text-transform:uppercase;padding:9px 12px;background-color:transparent;border:2px solid rgba(255,255,255,0.5);border-radius:4px;box-shadow:0 0.25em 0.5em 0 rgba(0,0,0,0.1);text-shadow:0 0.25em 0.5em rgba(0,0,0,0.1);opacity:1;cursor:pointer;transition:opacity 150ms ease, border 300ms ease-in-out;transform:translateY(-50%);line-height:1}.glide__arrow:focus{outline:none}.glide__arrow:hover{border-color:white}.glide__arrow--left{left:2em}.glide__arrow--right{right:2em}.glide__arrow--disabled{opacity:0.33}.glide__bullets{position:absolute;z-index:2;bottom:2em;left:50%;display:inline-flex;list-style:none;transform:translateX(-50%)}.glide__bullet{background-color:rgba(255,255,255,0.5);width:9px;height:9px;padding:0;border-radius:50%;border:2px solid transparent;transition:all 300ms ease-in-out;cursor:pointer;line-height:0;box-shadow:0 0.25em 0.5em 0 rgba(0,0,0,0.1);margin:0 0.25em}.glide__bullet:focus{outline:none}.glide__bullet:hover,.glide__bullet:focus{border:2px solid white;background-color:rgba(255,255,255,0.5)}.glide__bullet--active{background-color:white}.glide--swipeable{cursor:grab;cursor:-moz-grab;cursor:-webkit-grab}.glide--dragging{cursor:grabbing;cursor:-moz-grabbing;cursor:-webkit-grabbing}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1
assets_src/css/vendor/nouislider.min.css vendored Executable file
View File

@ -0,0 +1 @@
/*! nouislider - 11.1.0 - 2018-04-02 11:18:13 */.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative;direction:ltr}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;left:0;height:100%;width:100%;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;transform-origin:0 0}html:not([dir=rtl]) .noUi-horizontal .noUi-origin{left:auto;right:0}.noUi-vertical .noUi-origin{width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{position:absolute}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform .3s;transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;left:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;left:-6px;top:-17px}html:not([dir=rtl]) .noUi-horizontal .noUi-handle{right:-17px;left:auto}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connects{border-radius:3px}.noUi-connect{background:#3FB8AF}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-large,.noUi-marker-sub{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0,-50%);transform:translate(0,-50%,0);padding-left:25px}.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0,50%);transform:translate(0,50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}

6
assets_src/css/vendor/owl.carousel.min.css vendored Executable file
View File

@ -0,0 +1,6 @@
/**
* Owl Carousel v2.3.4
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}

116
assets_src/css/vendor/perfect-scrollbar.css vendored Executable file
View File

@ -0,0 +1,116 @@
/*
* Container style
*/
.ps {
overflow: hidden !important;
overflow-anchor: none;
-ms-overflow-style: none;
touch-action: auto;
-ms-touch-action: auto;
}
/*
* Scrollbar rail styles
*/
.ps__rail-x {
display: none;
opacity: 0;
transition: background-color .2s linear, opacity .2s linear;
-webkit-transition: background-color .2s linear, opacity .2s linear;
height: 15px;
/* there must be 'bottom' or 'top' for ps__rail-x */
bottom: 0px;
/* please don't change 'position' */
position: absolute;
}
.ps__rail-y {
display: none;
opacity: 0;
transition: background-color .2s linear, opacity .2s linear;
-webkit-transition: background-color .2s linear, opacity .2s linear;
width: 15px;
/* there must be 'right' or 'left' for ps__rail-y */
right: 0;
/* please don't change 'position' */
position: absolute;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
display: block;
background-color: transparent;
}
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
opacity: 0.6;
}
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
/* background-color: #eee; */
opacity: 0.9;
}
/*
* Scrollbar thumb styles
*/
.ps__thumb-x {
background-color: #aaa;
border-radius: 6px;
transition: background-color .2s linear, height .2s ease-in-out;
-webkit-transition: background-color .2s linear, height .2s ease-in-out;
height: 6px;
/* there must be 'bottom' for ps__thumb-x */
bottom: 2px;
/* please don't change 'position' */
position: absolute;
}
.ps__thumb-y {
background-color: #aaa;
border-radius: 10px;
transition: background-color .2s linear, width .2s ease-in-out;
-webkit-transition: background-color .2s linear, width .2s ease-in-out;
width: 5px;
/* there must be 'right' for ps__thumb-y */
right: 2px;
/* please don't change 'position' */
position: absolute;
}
.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
background-color: #999;
height: 11px;
}
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
/* background-color: #999; */
/* width: 11px; */
}
/* MS supports */
@supports (-ms-overflow-style: none) {
.ps {
overflow: auto !important;
}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.ps {
overflow: auto !important;
}
}

952
assets_src/css/vendor/quill.bubble.css vendored Executable file
View File

@ -0,0 +1,952 @@
/*!
* Quill Editor v1.3.6
* https://quilljs.com/
* Copyright (c) 2014, Jason Chen
* Copyright (c) 2013, salesforce.com
*/
.ql-container {
box-sizing: border-box;
font-family: Helvetica, Arial, sans-serif;
font-size: 13px;
height: 100%;
margin: 0px;
position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
pointer-events: none;
}
.ql-clipboard {
left: -100000px;
height: 1px;
overflow-y: hidden;
position: absolute;
top: 50%;
}
.ql-clipboard p {
margin: 0;
padding: 0;
}
.ql-editor {
box-sizing: border-box;
line-height: 1.42;
height: 100%;
outline: none;
overflow-y: auto;
padding: 12px 15px;
tab-size: 4;
-moz-tab-size: 4;
text-align: left;
white-space: pre-wrap;
word-wrap: break-word;
}
.ql-editor > * {
cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
margin: 0;
padding: 0;
counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
list-style-type: none;
}
.ql-editor ul > li::before {
content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
color: #777;
cursor: pointer;
pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
content: '\2610';
}
.ql-editor li::before {
display: inline-block;
white-space: nowrap;
width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
margin-left: -1.5em;
margin-right: 0.3em;
text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
margin-left: 0.3em;
margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
padding-right: 1.5em;
}
.ql-editor ol li {
counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
counter-increment: list-0;
}
.ql-editor ol li:before {
content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
padding-right: 28.5em;
}
.ql-editor .ql-video {
display: block;
max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
background-color: #000;
}
.ql-editor .ql-bg-red {
background-color: #e60000;
}
.ql-editor .ql-bg-orange {
background-color: #f90;
}
.ql-editor .ql-bg-yellow {
background-color: #ff0;
}
.ql-editor .ql-bg-green {
background-color: #008a00;
}
.ql-editor .ql-bg-blue {
background-color: #06c;
}
.ql-editor .ql-bg-purple {
background-color: #93f;
}
.ql-editor .ql-color-white {
color: #fff;
}
.ql-editor .ql-color-red {
color: #e60000;
}
.ql-editor .ql-color-orange {
color: #f90;
}
.ql-editor .ql-color-yellow {
color: #ff0;
}
.ql-editor .ql-color-green {
color: #008a00;
}
.ql-editor .ql-color-blue {
color: #06c;
}
.ql-editor .ql-color-purple {
color: #93f;
}
.ql-editor .ql-font-serif {
font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
font-size: 0.75em;
}
.ql-editor .ql-size-large {
font-size: 1.5em;
}
.ql-editor .ql-size-huge {
font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
direction: rtl;
text-align: inherit;
}
.ql-editor .ql-align-center {
text-align: center;
}
.ql-editor .ql-align-justify {
text-align: justify;
}
.ql-editor .ql-align-right {
text-align: right;
}
.ql-editor.ql-blank::before {
color: rgba(0,0,0,0.6);
content: attr(data-placeholder);
font-style: italic;
left: 15px;
pointer-events: none;
position: absolute;
right: 15px;
}
.ql-bubble.ql-toolbar:after,
.ql-bubble .ql-toolbar:after {
clear: both;
content: '';
display: table;
}
.ql-bubble.ql-toolbar button,
.ql-bubble .ql-toolbar button {
background: none;
border: none;
cursor: pointer;
display: inline-block;
float: left;
height: 24px;
padding: 3px 5px;
width: 28px;
}
.ql-bubble.ql-toolbar button svg,
.ql-bubble .ql-toolbar button svg {
float: left;
height: 100%;
}
.ql-bubble.ql-toolbar button:active:hover,
.ql-bubble .ql-toolbar button:active:hover {
outline: none;
}
.ql-bubble.ql-toolbar input.ql-image[type=file],
.ql-bubble .ql-toolbar input.ql-image[type=file] {
display: none;
}
.ql-bubble.ql-toolbar button:hover,
.ql-bubble .ql-toolbar button:hover,
.ql-bubble.ql-toolbar button:focus,
.ql-bubble .ql-toolbar button:focus,
.ql-bubble.ql-toolbar button.ql-active,
.ql-bubble .ql-toolbar button.ql-active,
.ql-bubble.ql-toolbar .ql-picker-label:hover,
.ql-bubble .ql-toolbar .ql-picker-label:hover,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active,
.ql-bubble.ql-toolbar .ql-picker-item:hover,
.ql-bubble .ql-toolbar .ql-picker-item:hover,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected {
color: #fff;
}
.ql-bubble.ql-toolbar button:hover .ql-fill,
.ql-bubble .ql-toolbar button:hover .ql-fill,
.ql-bubble.ql-toolbar button:focus .ql-fill,
.ql-bubble .ql-toolbar button:focus .ql-fill,
.ql-bubble.ql-toolbar button.ql-active .ql-fill,
.ql-bubble .ql-toolbar button.ql-active .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-bubble.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
fill: #fff;
}
.ql-bubble.ql-toolbar button:hover .ql-stroke,
.ql-bubble .ql-toolbar button:hover .ql-stroke,
.ql-bubble.ql-toolbar button:focus .ql-stroke,
.ql-bubble .ql-toolbar button:focus .ql-stroke,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-bubble.ql-toolbar button:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar button:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar button:focus .ql-stroke-miter,
.ql-bubble .ql-toolbar button:focus .ql-stroke-miter,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
stroke: #fff;
}
@media (pointer: coarse) {
.ql-bubble.ql-toolbar button:hover:not(.ql-active),
.ql-bubble .ql-toolbar button:hover:not(.ql-active) {
color: #ccc;
}
.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-fill,
.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-fill,
.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
fill: #ccc;
}
.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
stroke: #ccc;
}
}
.ql-bubble {
box-sizing: border-box;
}
.ql-bubble * {
box-sizing: border-box;
}
.ql-bubble .ql-hidden {
display: none;
}
.ql-bubble .ql-out-bottom,
.ql-bubble .ql-out-top {
visibility: hidden;
}
.ql-bubble .ql-tooltip {
position: absolute;
transform: translateY(10px);
}
.ql-bubble .ql-tooltip a {
cursor: pointer;
text-decoration: none;
}
.ql-bubble .ql-tooltip.ql-flip {
transform: translateY(-10px);
}
.ql-bubble .ql-formats {
display: inline-block;
vertical-align: middle;
}
.ql-bubble .ql-formats:after {
clear: both;
content: '';
display: table;
}
.ql-bubble .ql-stroke {
fill: none;
stroke: #ccc;
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 2;
}
.ql-bubble .ql-stroke-miter {
fill: none;
stroke: #ccc;
stroke-miterlimit: 10;
stroke-width: 2;
}
.ql-bubble .ql-fill,
.ql-bubble .ql-stroke.ql-fill {
fill: #ccc;
}
.ql-bubble .ql-empty {
fill: none;
}
.ql-bubble .ql-even {
fill-rule: evenodd;
}
.ql-bubble .ql-thin,
.ql-bubble .ql-stroke.ql-thin {
stroke-width: 1;
}
.ql-bubble .ql-transparent {
opacity: 0.4;
}
.ql-bubble .ql-direction svg:last-child {
display: none;
}
.ql-bubble .ql-direction.ql-active svg:last-child {
display: inline;
}
.ql-bubble .ql-direction.ql-active svg:first-child {
display: none;
}
.ql-bubble .ql-editor h1 {
font-size: 2em;
}
.ql-bubble .ql-editor h2 {
font-size: 1.5em;
}
.ql-bubble .ql-editor h3 {
font-size: 1.17em;
}
.ql-bubble .ql-editor h4 {
font-size: 1em;
}
.ql-bubble .ql-editor h5 {
font-size: 0.83em;
}
.ql-bubble .ql-editor h6 {
font-size: 0.67em;
}
.ql-bubble .ql-editor a {
text-decoration: underline;
}
.ql-bubble .ql-editor blockquote {
border-left: 4px solid #ccc;
margin-bottom: 5px;
margin-top: 5px;
padding-left: 16px;
}
.ql-bubble .ql-editor code,
.ql-bubble .ql-editor pre {
background-color: #f0f0f0;
border-radius: 3px;
}
.ql-bubble .ql-editor pre {
white-space: pre-wrap;
margin-bottom: 5px;
margin-top: 5px;
padding: 5px 10px;
}
.ql-bubble .ql-editor code {
font-size: 85%;
padding: 2px 4px;
}
.ql-bubble .ql-editor pre.ql-syntax {
background-color: #23241f;
color: #f8f8f2;
overflow: visible;
}
.ql-bubble .ql-editor img {
max-width: 100%;
}
.ql-bubble .ql-picker {
color: #ccc;
display: inline-block;
float: left;
font-size: 14px;
font-weight: 500;
height: 24px;
position: relative;
vertical-align: middle;
}
.ql-bubble .ql-picker-label {
cursor: pointer;
display: inline-block;
height: 100%;
padding-left: 8px;
padding-right: 2px;
position: relative;
width: 100%;
}
.ql-bubble .ql-picker-label::before {
display: inline-block;
line-height: 22px;
}
.ql-bubble .ql-picker-options {
background-color: #444;
display: none;
min-width: 100%;
padding: 4px 8px;
position: absolute;
white-space: nowrap;
}
.ql-bubble .ql-picker-options .ql-picker-item {
cursor: pointer;
display: block;
padding-bottom: 5px;
padding-top: 5px;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label {
color: #777;
z-index: 2;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-fill {
fill: #777;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
stroke: #777;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-options {
display: block;
margin-top: -1px;
top: 100%;
z-index: 1;
}
.ql-bubble .ql-color-picker,
.ql-bubble .ql-icon-picker {
width: 28px;
}
.ql-bubble .ql-color-picker .ql-picker-label,
.ql-bubble .ql-icon-picker .ql-picker-label {
padding: 2px 4px;
}
.ql-bubble .ql-color-picker .ql-picker-label svg,
.ql-bubble .ql-icon-picker .ql-picker-label svg {
right: 4px;
}
.ql-bubble .ql-icon-picker .ql-picker-options {
padding: 4px 0px;
}
.ql-bubble .ql-icon-picker .ql-picker-item {
height: 24px;
width: 24px;
padding: 2px 4px;
}
.ql-bubble .ql-color-picker .ql-picker-options {
padding: 3px 5px;
width: 152px;
}
.ql-bubble .ql-color-picker .ql-picker-item {
border: 1px solid transparent;
float: left;
height: 16px;
margin: 2px;
padding: 0px;
width: 16px;
}
.ql-bubble .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
position: absolute;
margin-top: -9px;
right: 0;
top: 50%;
width: 18px;
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
content: attr(data-label);
}
.ql-bubble .ql-picker.ql-header {
width: 98px;
}
.ql-bubble .ql-picker.ql-header .ql-picker-label::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item::before {
content: 'Normal';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
content: 'Heading 1';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
content: 'Heading 2';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
content: 'Heading 3';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
content: 'Heading 4';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
content: 'Heading 5';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
content: 'Heading 6';
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
font-size: 2em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
font-size: 1.5em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
font-size: 1.17em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
font-size: 1em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
font-size: 0.83em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
font-size: 0.67em;
}
.ql-bubble .ql-picker.ql-font {
width: 108px;
}
.ql-bubble .ql-picker.ql-font .ql-picker-label::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item::before {
content: 'Sans Serif';
}
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
content: 'Serif';
}
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
content: 'Monospace';
}
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
font-family: Georgia, Times New Roman, serif;
}
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
font-family: Monaco, Courier New, monospace;
}
.ql-bubble .ql-picker.ql-size {
width: 98px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-label::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item::before {
content: 'Normal';
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
content: 'Small';
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
content: 'Large';
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
content: 'Huge';
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
font-size: 10px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
font-size: 18px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
font-size: 32px;
}
.ql-bubble .ql-color-picker.ql-background .ql-picker-item {
background-color: #fff;
}
.ql-bubble .ql-color-picker.ql-color .ql-picker-item {
background-color: #000;
}
.ql-bubble .ql-toolbar .ql-formats {
margin: 8px 12px 8px 0px;
}
.ql-bubble .ql-toolbar .ql-formats:first-child {
margin-left: 12px;
}
.ql-bubble .ql-color-picker svg {
margin: 1px;
}
.ql-bubble .ql-color-picker .ql-picker-item.ql-selected,
.ql-bubble .ql-color-picker .ql-picker-item:hover {
border-color: #fff;
}
.ql-bubble .ql-tooltip {
background-color: #444;
border-radius: 25px;
color: #fff;
}
.ql-bubble .ql-tooltip-arrow {
border-left: 6px solid transparent;
border-right: 6px solid transparent;
content: " ";
display: block;
left: 50%;
margin-left: -6px;
position: absolute;
}
.ql-bubble .ql-tooltip:not(.ql-flip) .ql-tooltip-arrow {
border-bottom: 6px solid #444;
top: -6px;
}
.ql-bubble .ql-tooltip.ql-flip .ql-tooltip-arrow {
border-top: 6px solid #444;
bottom: -6px;
}
.ql-bubble .ql-tooltip.ql-editing .ql-tooltip-editor {
display: block;
}
.ql-bubble .ql-tooltip.ql-editing .ql-formats {
visibility: hidden;
}
.ql-bubble .ql-tooltip-editor {
display: none;
}
.ql-bubble .ql-tooltip-editor input[type=text] {
background: transparent;
border: none;
color: #fff;
font-size: 13px;
height: 100%;
outline: none;
padding: 10px 20px;
position: absolute;
width: 100%;
}
.ql-bubble .ql-tooltip-editor a {
top: 10px;
position: absolute;
right: 20px;
}
.ql-bubble .ql-tooltip-editor a:before {
color: #ccc;
content: "\D7";
font-size: 16px;
font-weight: bold;
}
.ql-container.ql-bubble:not(.ql-disabled) a {
position: relative;
white-space: nowrap;
}
.ql-container.ql-bubble:not(.ql-disabled) a::before {
background-color: #444;
border-radius: 15px;
top: -5px;
font-size: 12px;
color: #fff;
content: attr(href);
font-weight: normal;
overflow: hidden;
padding: 5px 15px;
text-decoration: none;
z-index: 1;
}
.ql-container.ql-bubble:not(.ql-disabled) a::after {
border-top: 6px solid #444;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
top: 0;
content: " ";
height: 0;
width: 0;
}
.ql-container.ql-bubble:not(.ql-disabled) a::before,
.ql-container.ql-bubble:not(.ql-disabled) a::after {
left: 0;
margin-left: 50%;
position: absolute;
transform: translate(-50%, -100%);
transition: visibility 0s ease 200ms;
visibility: hidden;
}
.ql-container.ql-bubble:not(.ql-disabled) a:hover::before,
.ql-container.ql-bubble:not(.ql-disabled) a:hover::after {
visibility: visible;
}

883
assets_src/css/vendor/quill.snow.css vendored Executable file
View File

@ -0,0 +1,883 @@
/*!
* Quill Editor v1.0.0
* https://quilljs.com/
* Copyright (c) 2014, Jason Chen
* Copyright (c) 2013, salesforce.com
*/
.ql-container {
box-sizing: border-box;
font-family: Helvetica, Arial, sans-serif;
font-size: 13px;
height: 100%;
margin: 0px;
position: relative;
}
.ql-clipboard {
left: -100000px;
height: 1px;
overflow-y: hidden;
position: absolute;
top: 50%;
}
.ql-clipboard p {
margin: 0;
padding: 0;
}
.ql-editor {
box-sizing: border-box;
cursor: text;
line-height: 1.42;
height: 100%;
outline: none;
overflow-y: auto;
padding: 12px 15px;
tab-size: 4;
-moz-tab-size: 4;
text-align: left;
white-space: pre-wrap;
word-wrap: break-word;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
margin: 0;
padding: 0;
counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
list-style-type: none;
}
.ql-editor ul > li::before {
content: '\25CF';
}
.ql-editor li::before {
display: inline-block;
margin-right: 0.3em;
text-align: right;
white-space: nowrap;
width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
margin-left: -1.5em;
}
.ql-editor ol li,
.ql-editor ul li {
padding-left: 1.5em;
}
.ql-editor ol li {
counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
counter-increment: list-num;
}
.ql-editor ol li:before {
content: counter(list-num, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
padding-right: 28.5em;
}
.ql-editor .ql-video {
display: block;
max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
background-color: #000;
}
.ql-editor .ql-bg-red {
background-color: #e60000;
}
.ql-editor .ql-bg-orange {
background-color: #f90;
}
.ql-editor .ql-bg-yellow {
background-color: #ff0;
}
.ql-editor .ql-bg-green {
background-color: #008a00;
}
.ql-editor .ql-bg-blue {
background-color: #06c;
}
.ql-editor .ql-bg-purple {
background-color: #93f;
}
.ql-editor .ql-color-white {
color: #fff;
}
.ql-editor .ql-color-red {
color: #e60000;
}
.ql-editor .ql-color-orange {
color: #f90;
}
.ql-editor .ql-color-yellow {
color: #ff0;
}
.ql-editor .ql-color-green {
color: #008a00;
}
.ql-editor .ql-color-blue {
color: #06c;
}
.ql-editor .ql-color-purple {
color: #93f;
}
.ql-editor .ql-font-serif {
font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
font-size: 0.75em;
}
.ql-editor .ql-size-large {
font-size: 1.5em;
}
.ql-editor .ql-size-huge {
font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
direction: rtl;
text-align: inherit;
}
.ql-editor .ql-align-center {
text-align: center;
}
.ql-editor .ql-align-justify {
text-align: justify;
}
.ql-editor .ql-align-right {
text-align: right;
}
.ql-editor.ql-blank::before {
color: rgba(0,0,0,0.6);
content: attr(data-placeholder);
font-style: italic;
pointer-events: none;
position: absolute;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
clear: both;
content: '';
display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
background: none;
border: none;
cursor: pointer;
display: inline-block;
float: left;
height: 24px;
outline: none;
padding: 3px 5px;
width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
float: left;
height: 100%;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-mitter,
.ql-snow .ql-toolbar button:hover .ql-stroke-mitter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-mitter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-mitter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-mitter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-mitter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-mitter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-mitter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-mitter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-mitter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-mitter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-mitter {
stroke: #06c;
}
.ql-snow {
box-sizing: border-box;
}
.ql-snow * {
box-sizing: border-box;
}
.ql-snow .ql-hidden {
display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
visibility: hidden;
}
.ql-snow .ql-tooltip {
position: absolute;
}
.ql-snow .ql-tooltip a {
cursor: pointer;
text-decoration: none;
}
.ql-snow .ql-formats {
display: inline-block;
vertical-align: middle;
}
.ql-snow .ql-formats:after {
clear: both;
content: '';
display: table;
}
.ql-snow .ql-toolbar.snow,
.ql-snow .ql-stroke {
fill: none;
stroke: #444;
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 2;
}
.ql-snow .ql-stroke-mitter {
fill: none;
stroke: #444;
stroke-mitterlimit: 10;
stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
fill: #444;
}
.ql-snow .ql-empty {
fill: none;
}
.ql-snow .ql-even {
fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
stroke-width: 1;
}
.ql-snow .ql-transparent {
opacity: 0.4;
}
.ql-snow .ql-direction svg:last-child {
display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
display: none;
}
.ql-snow .ql-editor h1 {
font-size: 2em;
}
.ql-snow .ql-editor h2 {
font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
font-size: 1em;
}
.ql-snow .ql-editor h5 {
font-size: 0.83em;
}
.ql-snow .ql-editor h6 {
font-size: 0.67em;
}
.ql-snow .ql-editor a {
text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
border-left: 4px solid #ccc;
margin-bottom: 5px;
margin-top: 5px;
padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor pre {
background-color: #f0f0f0;
border-radius: 3px;
}
.ql-snow .ql-editor pre {
white-space: pre-wrap;
margin-bottom: 5px;
margin-top: 5px;
padding: 5px 10px;
}
.ql-snow .ql-editor code {
font-size: 85%;
padding-bottom: 2px;
padding-top: 2px;
}
.ql-snow .ql-editor code:before,
.ql-snow .ql-editor code:after {
content: "\A0";
letter-spacing: -2px;
}
.ql-snow .ql-editor pre.ql-syntax {
background-color: #23241f;
color: #f8f8f2;
overflow: visible;
}
.ql-snow .ql-editor img {
max-width: 100%;
}
.ql-snow .ql-picker {
color: #444;
display: inline-block;
float: left;
font-size: 14px;
font-weight: 500;
height: 24px;
position: relative;
vertical-align: middle;
}
.ql-snow .ql-picker-label {
cursor: pointer;
display: inline-block;
height: 100%;
padding-left: 8px;
padding-right: 2px;
position: relative;
width: 100%;
}
.ql-snow .ql-picker-label::before {
display: inline-block;
line-height: 22px;
}
.ql-snow .ql-picker-options {
background-color: #fff;
display: none;
min-width: 100%;
padding: 4px 8px;
position: absolute;
white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
cursor: pointer;
display: block;
padding-bottom: 5px;
padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
color: #ccc;
z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
display: block;
margin-top: -1px;
top: 100%;
z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
padding: 4px 0px;
}
.ql-snow .ql-icon-picker .ql-picker-item {
height: 24px;
width: 24px;
padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
padding: 3px 5px;
width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
border: 1px solid transparent;
float: left;
height: 16px;
margin: 2px;
padding: 0px;
width: 16px;
}
.ql-snow .ql-color-picker .ql-picker-item.ql-primary-color {
margin-bottom: toolbarPadding;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
position: absolute;
margin-top: -9px;
right: 0;
top: 50%;
width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
content: 'Normal';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
content: 'Heading 1';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
content: 'Heading 2';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
content: 'Heading 3';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
content: 'Heading 4';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
content: 'Heading 5';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
content: 'Heading 6';
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
font-size: 0.83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
font-size: 0.67em;
}
.ql-snow .ql-picker.ql-font {
width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
content: 'Sans Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
content: 'Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
content: 'Monospace';
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
font-family: Georgia, Times New Roman, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
font-family: Monaco, Courier New, monospace;
}
.ql-snow .ql-picker.ql-size {
width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
content: 'Normal';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
content: 'Small';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
content: 'Large';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
content: 'Huge';
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
background-color: #000;
}
.ql-toolbar.ql-snow {
border: 1px solid #ccc;
box-sizing: border-box;
font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
border: 1px solid transparent;
box-shadow: rgba(0,0,0,0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
border-top: 0px;
}
.ql-snow .ql-tooltip {
background-color: #fff;
border: 1px solid #ccc;
box-shadow: 0px 0px 5px #ddd;
color: #444;
margin-top: 10px;
padding: 5px 12px;
white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
content: "Visit URL:";
line-height: 26px;
margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
display: none;
border: 1px solid #ccc;
font-size: 13px;
height: 26px;
margin: 0px;
padding: 3px 5px;
width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
display: inline-block;
max-width: 200px;
overflow-x: hidden;
text-overflow: ellipsis;
vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
border-right: 1px solid #ccc;
content: 'Edit';
margin-left: 16px;
padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
content: 'Remove';
margin-left: 8px;
}
.ql-snow .ql-tooltip a {
line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
border-right: 0px;
content: 'Save';
padding-right: 0px;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
content: "Enter video:";
}
.ql-snow a {
color: #06c;
}
.ql-container.ql-snow {
border: 1px solid #ccc;
}

File diff suppressed because one or more lines are too long

1
assets_src/css/vendor/select2.min.css vendored Executable file

File diff suppressed because one or more lines are too long

119
assets_src/css/vendor/slick.css vendored Executable file
View File

@ -0,0 +1,119 @@
/* Slider */
.slick-slider
{
position: relative;
display: block;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list
{
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.slick-list:focus
{
outline: none;
}
.slick-list.dragging
{
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list
{
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track
{
position: relative;
top: 0;
left: 0;
display: block;
margin-left: auto;
margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
display: table;
content: '';
}
.slick-track:after
{
clear: both;
}
.slick-loading .slick-track
{
visibility: hidden;
}
.slick-slide
{
display: none;
float: left;
height: 100%;
min-height: 1px;
}
[dir='rtl'] .slick-slide
{
float: right;
}
.slick-slide img
{
display: block;
}
.slick-slide.slick-loading img
{
display: none;
}
.slick-slide.dragging img
{
pointer-events: none;
}
.slick-initialized .slick-slide
{
display: block;
}
.slick-loading .slick-slide
{
visibility: hidden;
}
.slick-vertical .slick-slide
{
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}

14
assets_src/css/vendor/smart_wizard.min.css vendored Executable file
View File

@ -0,0 +1,14 @@
/*!
* SmartWizard v4.3.x
* jQuery Wizard Plugin
* http://www.techlaboratory.net/smartwizard
*
* Created by Dipu Raj
* http://dipuraj.me
*
* Licensed under the terms of MIT License
* https://github.com/techlab/SmartWizard/blob/master/LICENSE
*/
.sw-main{position:relative;display:block;margin:0;padding:0;border-radius:.25rem!important}.sw-main .sw-container{display:block;margin:0;padding:0;position:relative}.sw-main .step-content{display:none;position:relative;margin:0}.sw-main .sw-toolbar{margin-left:0}.sw-theme-default{-webkit-box-shadow:0 1px 3px rgba(0,0,0,.3);box-shadow:0 1px 3px rgba(0,0,0,.3)}.sw-theme-default .sw-container{min-height:250px}.sw-theme-default .step-content{padding:10px;border:0 solid #d4d4d4;background-color:#fff;text-align:left}.sw-theme-default .sw-toolbar{background:#f9f9f9;border-radius:0!important;padding-left:10px;padding-right:10px;padding:10px;margin-bottom:0!important}.sw-theme-default .sw-toolbar-top{border-bottom-color:#ddd!important}.sw-theme-default .sw-toolbar-bottom{border-top-color:#ddd!important}.sw-theme-default>ul.step-anchor>li{position:relative;margin-right:2px}.sw-theme-default>ul.step-anchor>li>a,.sw-theme-default>ul.step-anchor>li>a:hover{border:none!important;color:#bbb;text-decoration:none;outline-style:none;background:0 0!important;border:none!important;cursor:not-allowed}.sw-theme-default>ul.step-anchor>li.clickable>a:hover{color:#4285f4!important;background:0 0!important;cursor:pointer}.sw-theme-default>ul.step-anchor>li>a::after{content:"";background:#4285f4;height:2px;position:absolute;width:100%;left:0;bottom:0;-webkit-transition:all 250ms ease 0s;transition:all 250ms ease 0s;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}.sw-theme-default>ul.step-anchor>li.active>a{border:none!important;color:#4285f4!important;background:0 0!important;cursor:pointer}.sw-theme-default>ul.step-anchor>li.active>a::after{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.sw-theme-default>ul.step-anchor>li.done>a{border:none!important;color:#000!important;background:0 0!important;cursor:pointer}.sw-theme-default>ul.step-anchor>li.done>a::after{background:#5cb85c;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.sw-theme-default>ul.step-anchor>li.danger>a{border:none!important;color:#d9534f!important;cursor:pointer}.sw-theme-default>ul.step-anchor>li.danger>a::after{background:#d9534f;border-left-color:#f8d7da;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.sw-theme-default>ul.step-anchor>li.disabled>a,.sw-theme-default>ul.step-anchor>li.disabled>a:hover{color:#eee!important;cursor:not-allowed}@media screen and (max-width:768px){.sw-theme-default>.nav-tabs>li{float:none!important}}.sw-loading::after{position:absolute;display:block;opacity:1;content:"";top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.7);-webkit-transition:all .2s ease;transition:all .2s ease;z-index:2}.sw-loading::before{content:'';display:inline-block;position:absolute;top:50%;left:50%;z-index:10;border:10px solid #f3f3f3;border-radius:50%;border-top:10px solid #3498db;width:80px;height:80px;margin-top:-40px;margin-left:-40px;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0)}100%{-webkit-transform:rotate(360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}
.sw-theme-dots .sw-container{min-height:300px}.sw-theme-dots .step-content{padding:10px 0;border:none;background-color:#fff;text-align:left}.sw-theme-dots .sw-toolbar{background:#fff;border-radius:0!important;padding-left:10px;padding-right:10px;margin-bottom:0!important}.sw-theme-dots .sw-toolbar-top{border-bottom-color:#ddd!important}.sw-theme-dots .sw-toolbar-bottom{border-top-color:#ddd!important;border-bottom-color:#ddd!important}.sw-theme-dots>ul.step-anchor{position:relative;background:#fff;border:0 solid #ccc!important;list-style:none}.sw-theme-dots>ul.step-anchor:before{content:" ";position:absolute;top:70px;bottom:0;width:100%;height:5px;background-color:#f5f5f5;border-radius:3px;z-index:95}.sw-theme-dots>ul.step-anchor>li{border:none}.sw-theme-dots>ul.step-anchor>li>a{position:relative;text-align:center;font-weight:700;background:0 0;border:none;color:#ccc;text-decoration:none;outline-style:none;z-index:96;display:block}.sw-theme-dots>ul.step-anchor>li>a:before{content:' ';position:absolute;bottom:2px;left:40%;margin-top:10px;display:block;border-radius:50%;color:#428bca;background:#f5f5f5;border:none;width:30px;height:30px;text-decoration:none;z-index:98}.sw-theme-dots>ul.step-anchor>li>a:after{content:' ';position:relative;left:43%;bottom:2px;margin-top:10px;display:block;width:15px;height:15px;background:#f5f5f5;border-radius:50%;z-index:99}.sw-theme-dots>ul.step-anchor>li>a:hover{color:#ccc;background:0 0}.sw-theme-dots>ul.step-anchor>li>a:focus{color:#ccc;border:none}.sw-theme-dots>ul.step-anchor>li.clickable>a:hover{color:#999}.sw-theme-dots>ul.step-anchor>li.active>a{color:#5bc0de}.sw-theme-dots>ul.step-anchor>li.active>a:hover{border:none}.sw-theme-dots>ul.step-anchor>li.active>a:after{background:#5bc0de}.sw-theme-dots>ul.step-anchor>li.done>a{color:#5cb85c}.sw-theme-dots>ul.step-anchor>li.done>a:after{background:#5cb85c}.sw-theme-dots>ul.step-anchor>li.danger>a{color:#d9534f}.sw-theme-dots>ul.step-anchor>li.danger>a:after{background:#d9534f}.sw-theme-dots>ul.step-anchor>li.disabled>a,.sw-theme-dots>ul.step-anchor>li.disabled>a:hover{color:#eee!important}.sw-theme-dots>ul.step-anchor>li.disabled>a:after{background:#eee}@media screen and (max-width:768px){.sw-theme-dots>ul.step-anchor:before{top:0;bottom:0;left:10px;width:5px;height:100%;background-color:#f5f5f5;display:block;margin-right:10px}.sw-theme-dots>ul.step-anchor>li{margin-left:20px;display:block;clear:both}.sw-theme-dots>ul.step-anchor>li>a{text-align:left;margin-left:0;display:block}.sw-theme-dots>ul.step-anchor>li>a:before{top:5px;left:-23px;margin-right:10px;display:block}.sw-theme-dots>ul.step-anchor>li>a:after{top:-38px;left:-31px;margin-right:10px;display:block}}
.sw-theme-check .sw-container{min-height:300px}.sw-theme-check .step-content{padding:10px 0;border:none;background-color:#fff;text-align:left}.sw-theme-check .sw-toolbar{background:#fff;border-radius:0!important;padding-left:10px;padding-right:10px;margin-bottom:0!important}.sw-theme-check .sw-toolbar-top{border-bottom-color:#ddd!important}.sw-theme-check .sw-toolbar-bottom{border-top-color:#ddd!important;border-bottom-color:#ddd!important}.sw-theme-check>ul.step-anchor{position:relative;background:#fff;border:0 solid #ccc!important;list-style:none}.sw-theme-check>ul.step-anchor:before{content:" ";position:absolute;top:70px;bottom:0;width:100%;height:5px;background-color:#f5f5f5;border-radius:3px;z-index:95}.sw-theme-check>ul.step-anchor>li{border:none}.sw-theme-check>ul.step-anchor>li>a{position:relative;text-align:center;font-weight:700;background:0 0;border:none;color:#ccc;text-decoration:none;outline-style:none;z-index:96;display:block}.sw-theme-check>ul.step-anchor>li>a:before{content:' ';position:absolute;bottom:2px;left:40%;margin-top:10px;display:block;border-radius:50%;color:#428bca;background:#f5f5f5;border:none;width:30px;height:30px;text-decoration:none;z-index:98}.sw-theme-check>ul.step-anchor>li>a:after{content:' ';position:relative;left:43%;bottom:2px;margin-top:10px;display:block;width:15px;height:15px;background:#f5f5f5;border-radius:50%;z-index:99}.sw-theme-check>ul.step-anchor>li>a:hover{color:#ccc;background:0 0}.sw-theme-check>ul.step-anchor>li>a:focus{color:#ccc;border:none}.sw-theme-check>ul.step-anchor>li.clickable>a:hover{color:#999}.sw-theme-check>ul.step-anchor>li.active>a{color:#5bc0de}.sw-theme-check>ul.step-anchor>li.active>a:hover{border:none}.sw-theme-check>ul.step-anchor>li.active>a:after{background:#5bc0de}.sw-theme-check>ul.step-anchor>li.done>a{color:#5cb85c}.sw-theme-check>ul.step-anchor>li.done>a:after{background:#5cb85c}.sw-theme-check>ul.step-anchor>li.danger>a{color:#d9534f}.sw-theme-check>ul.step-anchor>li.danger>a:after{background:#d9534f}.sw-theme-check>ul.step-anchor>li.disabled>a,.sw-theme-check>ul.step-anchor>li.disabled>a:hover{color:#eee!important}.sw-theme-check>ul.step-anchor>li.disabled>a:after{background:#eee}@media screen and (max-width:768px){.sw-theme-check>ul.step-anchor:before{top:0;bottom:0;left:10px;width:5px;height:100%;background-color:#f5f5f5;display:block;margin-right:10px}.sw-theme-check>ul.step-anchor>li{margin-left:20px;display:block;clear:both}.sw-theme-check>ul.step-anchor>li>a{text-align:left;margin-left:0;display:block}.sw-theme-check>ul.step-anchor>li>a:before{top:5px;left:-23px;margin-right:10px;display:block}.sw-theme-check>ul.step-anchor>li>a:after{top:-38px;left:-31px;margin-right:10px;display:block}}

1279
assets_src/css/vendor/video-js.css vendored Executable file

File diff suppressed because one or more lines are too long

View File

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

File diff suppressed because one or more lines are too long

View File

@ -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);
}
}

View File

@ -0,0 +1,925 @@
.iconsminds-add-space-after-paragraph:before { content: '\e800'; } /* '' */
.iconsminds-add-space-before-paragraph:before { content: '\e801'; } /* '' */
.iconsminds-align-center:before { content: '\e802'; } /* '' */
.iconsminds-align-justify-all:before { content: '\e803'; } /* '' */
.iconsminds-align-justify-center:before { content: '\e804'; } /* '' */
.iconsminds-align-justify-left:before { content: '\e805'; } /* '' */
.iconsminds-align-justify-right:before { content: '\e806'; } /* '' */
.iconsminds-align-left:before { content: '\e807'; } /* '' */
.iconsminds-align-right:before { content: '\e808'; } /* '' */
.iconsminds-decrase-inedit:before { content: '\e809'; } /* '' */
.iconsminds-increase-inedit:before { content: '\e80a'; } /* '' */
.iconsminds-indent-first-line:before { content: '\e80b'; } /* '' */
.iconsminds-indent-left-margin:before { content: '\e80c'; } /* '' */
.iconsminds-indent-right-margin:before { content: '\e80d'; } /* '' */
.iconsminds-line-spacing:before { content: '\e80e'; } /* '' */
.iconsminds-arrow-fork:before { content: '\e80f'; } /* '' */
.iconsminds-arrow-from:before { content: '\e810'; } /* '' */
.iconsminds-arrow-inside-45:before { content: '\e811'; } /* '' */
.iconsminds-arrow-inside-gap-45:before { content: '\e812'; } /* '' */
.iconsminds-arrow-inside-gap:before { content: '\e813'; } /* '' */
.iconsminds-arrow-inside:before { content: '\e814'; } /* '' */
.iconsminds-arrow-into:before { content: '\e815'; } /* '' */
.iconsminds-arrow-junction:before { content: '\e817'; } /* '' */
.iconsminds-arrow-loop:before { content: '\e818'; } /* '' */
.iconsminds-arrow-merge:before { content: '\e819'; } /* '' */
.iconsminds-arrow-mix:before { content: '\e81a'; } /* '' */
.iconsminds-arrow-out-left:before { content: '\e81b'; } /* '' */
.iconsminds-arrow-out-right:before { content: '\e81c'; } /* '' */
.iconsminds-arrow-outside-45:before { content: '\e81d'; } /* '' */
.iconsminds-arrow-outside-gap-45:before { content: '\e81e'; } /* '' */
.iconsminds-arrow-outside-gap:before { content: '\e81f'; } /* '' */
.iconsminds-arrow-outside:before { content: '\e820'; } /* '' */
.iconsminds-arrow-over:before { content: '\e821'; } /* '' */
.iconsminds-arrow-shuffle:before { content: '\e822'; } /* '' */
.iconsminds-arrow-squiggly:before { content: '\e823'; } /* '' */
.iconsminds-arrow-through:before { content: '\e824'; } /* '' */
.iconsminds-arrow-to:before { content: '\e825'; } /* '' */
.iconsminds-double-circle:before { content: '\e826'; } /* '' */
.iconsminds-full-view-2:before { content: '\e827'; } /* '' */
.iconsminds-full-view:before { content: '\e828'; } /* '' */
.iconsminds-maximize:before { content: '\e829'; } /* '' */
.iconsminds-minimize:before { content: '\e82a'; } /* '' */
.iconsminds-resize:before { content: '\e82b'; } /* '' */
.iconsminds-three-arrow-fork:before { content: '\e82c'; } /* '' */
.iconsminds-view-height:before { content: '\e82d'; } /* '' */
.iconsminds-view-width:before { content: '\e82e'; } /* '' */
.iconsminds-arrow-around:before { content: '\e82f'; } /* '' */
.iconsminds-arrow-barrier:before { content: '\e830'; } /* '' */
.iconsminds-arrow-circle:before { content: '\e831'; } /* '' */
.iconsminds-arrow-cross:before { content: '\e832'; } /* '' */
.iconsminds-arrow-back-2:before { content: '\e833'; } /* '' */
.iconsminds-arrow-back-3:before { content: '\e834'; } /* '' */
.iconsminds-arrow-back:before { content: '\e835'; } /* '' */
.iconsminds-arrow-down-2:before { content: '\e836'; } /* '' */
.iconsminds-arrow-down-3:before { content: '\e837'; } /* '' */
.iconsminds-arrow-down-in-circle:before { content: '\e838'; } /* '' */
.iconsminds-arrow-down:before { content: '\e839'; } /* '' */
.iconsminds-arrow-forward-2:before { content: '\e83a'; } /* '' */
.iconsminds-arrow-forward:before { content: '\e83b'; } /* '' */
.iconsminds-arrow-left-2:before { content: '\e83c'; } /* '' */
.iconsminds-arrow-left-in-circle:before { content: '\e83d'; } /* '' */
.iconsminds-arrow-left:before { content: '\e83e'; } /* '' */
.iconsminds-arrow-next:before { content: '\e83f'; } /* '' */
.iconsminds-arrow-refresh-2:before { content: '\e840'; } /* '' */
.iconsminds-arrow-refresh:before { content: '\e841'; } /* '' */
.iconsminds-arrow-right-2:before { content: '\e842'; } /* '' */
.iconsminds-arrow-right-in-circle:before { content: '\e843'; } /* '' */
.iconsminds-arrow-right:before { content: '\e844'; } /* '' */
.iconsminds-arrow-turn-left:before { content: '\e845'; } /* '' */
.iconsminds-arrow-turn-right:before { content: '\e846'; } /* '' */
.iconsminds-arrow-up-2:before { content: '\e847'; } /* '' */
.iconsminds-arrow-up-3:before { content: '\e848'; } /* '' */
.iconsminds-arrow-up-in-circle:before { content: '\e849'; } /* '' */
.iconsminds-arrow-up:before { content: '\e84a'; } /* '' */
.iconsminds-arrow-x-left:before { content: '\e84b'; } /* '' */
.iconsminds-arrow-x-right:before { content: '\e84c'; } /* '' */
.iconsminds-bottom-to-top:before { content: '\e84d'; } /* '' */
.iconsminds-down:before { content: '\e84e'; } /* '' */
.iconsminds-down-2:before { content: '\e84f'; } /* '' */
.iconsminds-down-3:before { content: '\e850'; } /* '' */
.iconsminds-download:before { content: '\e851'; } /* '' */
.iconsminds-end:before { content: '\e852'; } /* '' */
.iconsminds-fit-to-2:before { content: '\e853'; } /* '' */
.iconsminds-fit-to:before { content: '\e854'; } /* '' */
.iconsminds-full-screen-2:before { content: '\e855'; } /* '' */
.iconsminds-full-screen:before { content: '\e856'; } /* '' */
.iconsminds-go-bottom:before { content: '\e857'; } /* '' */
.iconsminds-go-top:before { content: '\e858'; } /* '' */
.iconsminds-left---right-3:before { content: '\e859'; } /* '' */
.iconsminds-left---right:before { content: '\e85a'; } /* '' */
.iconsminds-left:before { content: '\e85b'; } /* '' */
.iconsminds-left-2:before { content: '\e85c'; } /* '' */
.iconsminds-left-3:before { content: '\e85d'; } /* '' */
.iconsminds-left-to-right:before { content: '\e85e'; } /* '' */
.iconsminds-loop:before { content: '\e85f'; } /* '' */
.iconsminds-navigate-end:before { content: '\e860'; } /* '' */
.iconsminds-navigat-start:before { content: '\e861'; } /* '' */
.iconsminds-reload:before { content: '\e862'; } /* '' */
.iconsminds-reload-2:before { content: '\e863'; } /* '' */
.iconsminds-repeat:before { content: '\e864'; } /* '' */
.iconsminds-repeat-2:before { content: '\e865'; } /* '' */
.iconsminds-repeat-3:before { content: '\e866'; } /* '' */
.iconsminds-repeat-4:before { content: '\e867'; } /* '' */
.iconsminds-right:before { content: '\e868'; } /* '' */
.iconsminds-right-2:before { content: '\e869'; } /* '' */
.iconsminds-right-3:before { content: '\e86a'; } /* '' */
.iconsminds-right-to-left:before { content: '\e86b'; } /* '' */
.iconsminds-shuffle:before { content: '\e86c'; } /* '' */
.iconsminds-shuffle-2:before { content: '\e86d'; } /* '' */
.iconsminds-start:before { content: '\e86e'; } /* '' */
.iconsminds-sync:before { content: '\e86f'; } /* '' */
.iconsminds-to-bottom-2:before { content: '\e870'; } /* '' */
.iconsminds-to-bottom:before { content: '\e871'; } /* '' */
.iconsminds-to-left:before { content: '\e872'; } /* '' */
.iconsminds-top-to-bottom:before { content: '\e873'; } /* '' */
.iconsminds-to-right:before { content: '\e874'; } /* '' */
.iconsminds-to-top-2:before { content: '\e875'; } /* '' */
.iconsminds-to-top:before { content: '\e876'; } /* '' */
.iconsminds-triangle-arrow-down:before { content: '\e877'; } /* '' */
.iconsminds-triangle-arrow-left:before { content: '\e878'; } /* '' */
.iconsminds-triangle-arrow-right:before { content: '\e879'; } /* '' */
.iconsminds-triangle-arrow-up:before { content: '\e87a'; } /* '' */
.iconsminds-turn-down-2:before { content: '\e87b'; } /* '' */
.iconsminds-turn-down-from-left:before { content: '\e87c'; } /* '' */
.iconsminds-turn-down-from-right:before { content: '\e87d'; } /* '' */
.iconsminds-turn-down:before { content: '\e87e'; } /* '' */
.iconsminds-turn-left-3:before { content: '\e87f'; } /* '' */
.iconsminds-turn-left:before { content: '\e880'; } /* '' */
.iconsminds-turn-right-3:before { content: '\e881'; } /* '' */
.iconsminds-turn-right:before { content: '\e882'; } /* '' */
.iconsminds-turn-up-2:before { content: '\e883'; } /* '' */
.iconsminds-turn-up:before { content: '\e884'; } /* '' */
.iconsminds-up---down-3:before { content: '\e885'; } /* '' */
.iconsminds-up---down:before { content: '\e886'; } /* '' */
.iconsminds-up:before { content: '\e887'; } /* '' */
.iconsminds-up-2:before { content: '\e888'; } /* '' */
.iconsminds-up-3:before { content: '\e889'; } /* '' */
.iconsminds-upload:before { content: '\e88a'; } /* '' */
.iconsminds-billing:before { content: '\e88b'; } /* '' */
.iconsminds-binocular:before { content: '\e88c'; } /* '' */
.iconsminds-bone:before { content: '\e88d'; } /* '' */
.iconsminds-box-close:before { content: '\e88e'; } /* '' */
.iconsminds-box-with-folders:before { content: '\e88f'; } /* '' */
.iconsminds-brush:before { content: '\e890'; } /* '' */
.iconsminds-bucket:before { content: '\e891'; } /* '' */
.iconsminds-camera-3:before { content: '\e892'; } /* '' */
.iconsminds-camera-4:before { content: '\e893'; } /* '' */
.iconsminds-candle:before { content: '\e894'; } /* '' */
.iconsminds-candy:before { content: '\e895'; } /* '' */
.iconsminds-chair:before { content: '\e896'; } /* '' */
.iconsminds-control:before { content: '\e897'; } /* '' */
.iconsminds-control-2:before { content: '\e898'; } /* '' */
.iconsminds-crop-2:before { content: '\e899'; } /* '' */
.iconsminds-crown-2:before { content: '\e89a'; } /* '' */
.iconsminds-dashboard:before { content: '\e89b'; } /* '' */
.iconsminds-data-center:before { content: '\e89c'; } /* '' */
.iconsminds-data-cloud:before { content: '\e89d'; } /* '' */
.iconsminds-data-download:before { content: '\e89e'; } /* '' */
.iconsminds-data-storage:before { content: '\e89f'; } /* '' */
.iconsminds-delete-file:before { content: '\e8a0'; } /* '' */
.iconsminds-dice:before { content: '\e8a1'; } /* '' */
.iconsminds-drill:before { content: '\e8a2'; } /* '' */
.iconsminds-duplicate-layer:before { content: '\e8a3'; } /* '' */
.iconsminds-electricity:before { content: '\e8a4'; } /* '' */
.iconsminds-factory:before { content: '\e8a5'; } /* '' */
.iconsminds-feather:before { content: '\e8a6'; } /* '' */
.iconsminds-file:before { content: '\e8a7'; } /* '' */
.iconsminds-file-clipboard-file-+-text:before { content: '\e8a8'; } /* '' */
.iconsminds-file-clipboard:before { content: '\e8a9'; } /* '' */
.iconsminds-file-copy:before { content: '\e8aa'; } /* '' */
.iconsminds-file-edit:before { content: '\e8ab'; } /* '' */
.iconsminds-file-horizontal:before { content: '\e8ac'; } /* '' */
.iconsminds-files:before { content: '\e8ad'; } /* '' */
.iconsminds-file-zip:before { content: '\e8ae'; } /* '' */
.iconsminds-filter-2:before { content: '\e8af'; } /* '' */
.iconsminds-flash-2:before { content: '\e8b0'; } /* '' */
.iconsminds-folder:before { content: '\e8b1'; } /* '' */
.iconsminds-folder-add-+:before { content: '\e8b2'; } /* '' */
.iconsminds-folder-block:before { content: '\e8b3'; } /* '' */
.iconsminds-folder-close:before { content: '\e8b4'; } /* '' */
.iconsminds-folder-cloud:before { content: '\e8b5'; } /* '' */
.iconsminds-folder-delete:before { content: '\e8b6'; } /* '' */
.iconsminds-folder-edit:before { content: '\e8b7'; } /* '' */
.iconsminds-folder-open:before { content: '\e8b8'; } /* '' */
.iconsminds-folders:before { content: '\e8b9'; } /* '' */
.iconsminds-folder-zip:before { content: '\e8ba'; } /* '' */
.iconsminds-funny-bicycle:before { content: '\e8bb'; } /* '' */
.iconsminds-gas-pump:before { content: '\e8bc'; } /* '' */
.iconsminds-gear:before { content: '\e8bd'; } /* '' */
.iconsminds-gear-2:before { content: '\e8be'; } /* '' */
.iconsminds-gears:before { content: '\e8bf'; } /* '' */
.iconsminds-gift-box:before { content: '\e8c1'; } /* '' */
.iconsminds-grave:before { content: '\e8c2'; } /* '' */
.iconsminds-headphone:before { content: '\e8c3'; } /* '' */
.iconsminds-headset:before { content: '\e8c4'; } /* '' */
.iconsminds-hipster-men:before { content: '\e8c5'; } /* '' */
.iconsminds-hub:before { content: '\e8c6'; } /* '' */
.iconsminds-idea:before { content: '\e8c7'; } /* '' */
.iconsminds-information:before { content: '\e8c8'; } /* '' */
.iconsminds-key:before { content: '\e8c9'; } /* '' */
.iconsminds-knife:before { content: '\e8ca'; } /* '' */
.iconsminds-lantern:before { content: '\e8cb'; } /* '' */
.iconsminds-layer-backward:before { content: '\e8cc'; } /* '' */
.iconsminds-layer-forward:before { content: '\e8cd'; } /* '' */
.iconsminds-library:before { content: '\e8ce'; } /* '' */
.iconsminds-light-bulb-2:before { content: '\e8d0'; } /* '' */
.iconsminds-loading:before { content: '\e8d1'; } /* '' */
.iconsminds-loading-2:before { content: '\e8d2'; } /* '' */
.iconsminds-loading-3:before { content: '\e8d3'; } /* '' */
.iconsminds-magic-wand:before { content: '\e8d4'; } /* '' */
.iconsminds-magnifi-glass--:before { content: '\e8d5'; } /* '' */
.iconsminds-magnifi-glass-+:before { content: '\e8d6'; } /* '' */
.iconsminds-magnifi-glass:before { content: '\e8d7'; } /* '' */
.iconsminds-memory-card-2:before { content: '\e8d8'; } /* '' */
.iconsminds-mine:before { content: '\e8d9'; } /* '' */
.iconsminds-mustache-2:before { content: '\e8da'; } /* '' */
.iconsminds-office-lamp:before { content: '\e8db'; } /* '' */
.iconsminds-old-sticky-2:before { content: '\e8dc'; } /* '' */
.iconsminds-on-off:before { content: '\e8dd'; } /* '' */
.iconsminds-on-off-2:before { content: '\e8de'; } /* '' */
.iconsminds-on-off-3:before { content: '\e8df'; } /* '' */
.iconsminds-palette:before { content: '\e8e0'; } /* '' */
.iconsminds-paper:before { content: '\e8e1'; } /* '' */
.iconsminds-pen:before { content: '\e8e2'; } /* '' */
.iconsminds-photo:before { content: '\e8e3'; } /* '' */
.iconsminds-photo-album-2:before { content: '\e8e4'; } /* '' */
.iconsminds-power-station:before { content: '\e8e5'; } /* '' */
.iconsminds-preview:before { content: '\e8e6'; } /* '' */
.iconsminds-pricing:before { content: '\e8e7'; } /* '' */
.iconsminds-profile:before { content: '\e8e8'; } /* '' */
.iconsminds-project:before { content: '\e8e9'; } /* '' */
.iconsminds-puzzle:before { content: '\e8ea'; } /* '' */
.iconsminds-refinery:before { content: '\e8eb'; } /* '' */
.iconsminds-remove-file:before { content: '\e8ec'; } /* '' */
.iconsminds-rename:before { content: '\e8ed'; } /* '' */
.iconsminds-repair:before { content: '\e8ee'; } /* '' */
.iconsminds-ruler:before { content: '\e8ef'; } /* '' */
.iconsminds-save:before { content: '\e8f0'; } /* '' */
.iconsminds-scissor:before { content: '\e8f2'; } /* '' */
.iconsminds-scroller:before { content: '\e8f3'; } /* '' */
.iconsminds-scroller-2:before { content: '\e8f4'; } /* '' */
.iconsminds-share:before { content: '\e8f5'; } /* '' */
.iconsminds-smoking-pipe:before { content: '\e8f6'; } /* '' */
.iconsminds-solar:before { content: '\e8f7'; } /* '' */
.iconsminds-statistic:before { content: '\e8f8'; } /* '' */
.iconsminds-suitcase:before { content: '\e8f9'; } /* '' */
.iconsminds-support:before { content: '\e8fa'; } /* '' */
.iconsminds-switch:before { content: '\e8fb'; } /* '' */
.iconsminds-tripod-with-camera:before { content: '\e8fc'; } /* '' */
.iconsminds-upgrade:before { content: '\e8fd'; } /* '' */
.iconsminds-user:before { content: '\e8fe'; } /* '' */
.iconsminds-windmill:before { content: '\e8ff'; } /* '' */
.iconsminds-witch-hat:before { content: '\e900'; } /* '' */
.iconsminds-wrench:before { content: '\e901'; } /* '' */
.iconsminds-add-file:before { content: '\e902'; } /* '' */
.iconsminds-affiliate:before { content: '\e903'; } /* '' */
.iconsminds-anchor:before { content: '\e904'; } /* '' */
.iconsminds-balloon:before { content: '\e905'; } /* '' */
.iconsminds-beard-3:before { content: '\e906'; } /* '' */
.iconsminds-bicycle:before { content: '\e907'; } /* '' */
.iconsminds-big-data:before { content: '\e908'; } /* '' */
.iconsminds-eifel-tower:before { content: '\e909'; } /* '' */
.iconsminds-el-castillo:before { content: '\e90a'; } /* '' */
.iconsminds-embassy:before { content: '\e90b'; } /* '' */
.iconsminds-empire-state-building:before { content: '\e90c'; } /* '' */
.iconsminds-factory-1:before { content: '\e90d'; } /* '' */
.iconsminds-fire-staion:before { content: '\e90e'; } /* '' */
.iconsminds-home:before { content: '\e90f'; } /* '' */
.iconsminds-home-3:before { content: '\e910'; } /* '' */
.iconsminds-home-4:before { content: '\e911'; } /* '' */
.iconsminds-hotel:before { content: '\e912'; } /* '' */
.iconsminds-japanese-gate:before { content: '\e913'; } /* '' */
.iconsminds-leaning-tower:before { content: '\e914'; } /* '' */
.iconsminds-lighthouse:before { content: '\e915'; } /* '' */
.iconsminds-museum:before { content: '\e916'; } /* '' */
.iconsminds-office:before { content: '\e917'; } /* '' */
.iconsminds-opera-house:before { content: '\e918'; } /* '' */
.iconsminds-piramids:before { content: '\e91b'; } /* '' */
.iconsminds-police-station:before { content: '\e91c'; } /* '' */
.iconsminds-post-office:before { content: '\e91d'; } /* '' */
.iconsminds-prater:before { content: '\e91e'; } /* '' */
.iconsminds-roof:before { content: '\e91f'; } /* '' */
.iconsminds-space-needle:before { content: '\e920'; } /* '' */
.iconsminds-the-white-house:before { content: '\e922'; } /* '' */
.iconsminds-tower:before { content: '\e923'; } /* '' */
.iconsminds-bank:before { content: '\e924'; } /* '' */
.iconsminds-berlin-tower:before { content: '\e925'; } /* '' */
.iconsminds-big-bang:before { content: '\e926'; } /* '' */
.iconsminds-building:before { content: '\e927'; } /* '' */
.iconsminds-castle:before { content: '\e928'; } /* '' */
.iconsminds-chinese-temple:before { content: '\e929'; } /* '' */
.iconsminds-chrysler-building:before { content: '\e92a'; } /* '' */
.iconsminds-city-hall:before { content: '\e92b'; } /* '' */
.iconsminds-clothing-store:before { content: '\e92c'; } /* '' */
.iconsminds-colosseum:before { content: '\e92d'; } /* '' */
.iconsminds-column:before { content: '\e92e'; } /* '' */
.iconsminds-coins:before { content: '\e92f'; } /* '' */
.iconsminds-coins-2:before { content: '\e930'; } /* '' */
.iconsminds-diamond:before { content: '\e933'; } /* '' */
.iconsminds-dollar:before { content: '\e934'; } /* '' */
.iconsminds-dollar-sign-2:before { content: '\e935'; } /* '' */
.iconsminds-euro:before { content: '\e936'; } /* '' */
.iconsminds-euro-sign-2:before { content: '\e937'; } /* '' */
.iconsminds-financial:before { content: '\e938'; } /* '' */
.iconsminds-handshake:before { content: '\e939'; } /* '' */
.iconsminds-pie-chart-3:before { content: '\e93c'; } /* '' */
.iconsminds-pie-chart:before { content: '\e93d'; } /* '' */
.iconsminds-pound:before { content: '\e93e'; } /* '' */
.iconsminds-pound-sign-2:before { content: '\e93f'; } /* '' */
.iconsminds-safe-box:before { content: '\e940'; } /* '' */
.iconsminds-wallet:before { content: '\e941'; } /* '' */
.iconsminds-bar-chart-4:before { content: '\e942'; } /* '' */
.iconsminds-jeans:before { content: '\e946'; } /* '' */
.iconsminds-sunglasses-w-3:before { content: '\e947'; } /* '' */
.iconsminds-tie:before { content: '\e948'; } /* '' */
.iconsminds-t-shirt:before { content: '\e949'; } /* '' */
.iconsminds-baby-clothes:before { content: '\e94a'; } /* '' */
.iconsminds-belt:before { content: '\e94b'; } /* '' */
.iconsminds-bikini:before { content: '\e94c'; } /* '' */
.iconsminds-blouse:before { content: '\e94d'; } /* '' */
.iconsminds-boot:before { content: '\e94e'; } /* '' */
.iconsminds-bow-3:before { content: '\e94f'; } /* '' */
.iconsminds-bra:before { content: '\e950'; } /* '' */
.iconsminds-cap:before { content: '\e951'; } /* '' */
.iconsminds-coat:before { content: '\e952'; } /* '' */
.iconsminds-dress:before { content: '\e953'; } /* '' */
.iconsminds-glasses-3:before { content: '\e954'; } /* '' */
.iconsminds-gloves:before { content: '\e955'; } /* '' */
.iconsminds-hanger:before { content: '\e956'; } /* '' */
.iconsminds-heels-2:before { content: '\e957'; } /* '' */
.iconsminds-jacket:before { content: '\e958'; } /* '' */
.iconsminds-walkie-talkie:before { content: '\e959'; } /* '' */
.iconsminds-wifi:before { content: '\e95a'; } /* '' */
.iconsminds-address-book-2:before { content: '\e95b'; } /* '' */
.iconsminds-bell:before { content: '\e95c'; } /* '' */
.iconsminds-bird-delivering-letter:before { content: '\e95d'; } /* '' */
.iconsminds-communication-tower-2:before { content: '\e95e'; } /* '' */
.iconsminds-fax:before { content: '\e95f'; } /* '' */
.iconsminds-megaphone:before { content: '\e960'; } /* '' */
.iconsminds-newspaper:before { content: '\e961'; } /* '' */
.iconsminds-old-telephone:before { content: '\e962'; } /* '' */
.iconsminds-router:before { content: '\e963'; } /* '' */
.iconsminds-telephone-2:before { content: '\e964'; } /* '' */
.iconsminds-smartphone-4:before { content: '\e965'; } /* '' */
.iconsminds-tablet-3:before { content: '\e966'; } /* '' */
.iconsminds-computer:before { content: '\e967'; } /* '' */
.iconsminds-laptop-+-phone:before { content: '\e968'; } /* '' */
.iconsminds-laptop-+-tablet:before { content: '\e969'; } /* '' */
.iconsminds-laptop-3:before { content: '\e96a'; } /* '' */
.iconsminds-monitor:before { content: '\e96b'; } /* '' */
.iconsminds-monitor-+-laptop:before { content: '\e96c'; } /* '' */
.iconsminds-monitor-+-phone:before { content: '\e96d'; } /* '' */
.iconsminds-monitor-+-tablet:before { content: '\e96e'; } /* '' */
.iconsminds-monitor-3:before { content: '\e96f'; } /* '' */
.iconsminds-monitor-vertical:before { content: '\e970'; } /* '' */
.iconsminds-orientation:before { content: '\e971'; } /* '' */
.iconsminds-phone-3:before { content: '\e972'; } /* '' */
.iconsminds-smartphone-3:before { content: '\e973'; } /* '' */
.iconsminds-quill-3:before { content: '\e974'; } /* '' */
.iconsminds-student-hat:before { content: '\e975'; } /* '' */
.iconsminds-blackboard:before { content: '\e976'; } /* '' */
.iconsminds-book:before { content: '\e977'; } /* '' */
.iconsminds-bookmark:before { content: '\e978'; } /* '' */
.iconsminds-books:before { content: '\e979'; } /* '' */
.iconsminds-compass-2:before { content: '\e97a'; } /* '' */
.iconsminds-diploma-2:before { content: '\e97b'; } /* '' */
.iconsminds-eraser-2:before { content: '\e97c'; } /* '' */
.iconsminds-formula:before { content: '\e97d'; } /* '' */
.iconsminds-notepad:before { content: '\e97e'; } /* '' */
.iconsminds-open-book:before { content: '\e97f'; } /* '' */
.iconsminds-pen-2:before { content: '\e980'; } /* '' */
.iconsminds-pi:before { content: '\e981'; } /* '' */
.iconsminds-pipette:before { content: '\e982'; } /* '' */
.iconsminds-mail-block:before { content: '\e983'; } /* '' */
.iconsminds-mailbox-empty:before { content: '\e984'; } /* '' */
.iconsminds-mailbox-full:before { content: '\e985'; } /* '' */
.iconsminds-mail-delete:before { content: '\e986'; } /* '' */
.iconsminds-mail-favorite:before { content: '\e987'; } /* '' */
.iconsminds-mail-forward:before { content: '\e988'; } /* '' */
.iconsminds-mail-gallery:before { content: '\e989'; } /* '' */
.iconsminds-mail-inbox:before { content: '\e98a'; } /* '' */
.iconsminds-mail-link:before { content: '\e98b'; } /* '' */
.iconsminds-mail-lock:before { content: '\e98c'; } /* '' */
.iconsminds-mail-love:before { content: '\e98d'; } /* '' */
.iconsminds-mail-money:before { content: '\e98e'; } /* '' */
.iconsminds-mail-open:before { content: '\e98f'; } /* '' */
.iconsminds-mail-outbox:before { content: '\e990'; } /* '' */
.iconsminds-mail-password:before { content: '\e991'; } /* '' */
.iconsminds-mail-photo:before { content: '\e992'; } /* '' */
.iconsminds-mail-read:before { content: '\e993'; } /* '' */
.iconsminds-mail-remove-x:before { content: '\e994'; } /* '' */
.iconsminds-mail-reply-all:before { content: '\e995'; } /* '' */
.iconsminds-mail-reply:before { content: '\e996'; } /* '' */
.iconsminds-mail-search:before { content: '\e997'; } /* '' */
.iconsminds-mail-send:before { content: '\e998'; } /* '' */
.iconsminds-mail-settings:before { content: '\e999'; } /* '' */
.iconsminds-mail-unread:before { content: '\e99a'; } /* '' */
.iconsminds-mail-video:before { content: '\e99b'; } /* '' */
.iconsminds-mail-with-at-sign:before { content: '\e99c'; } /* '' */
.iconsminds-mail-with-cursors:before { content: '\e99d'; } /* '' */
.iconsminds-new-mail:before { content: '\e99e'; } /* '' */
.iconsminds-post-mail-2:before { content: '\e99f'; } /* '' */
.iconsminds-post-mail:before { content: '\e9a0'; } /* '' */
.iconsminds-spam-mail:before { content: '\e9a1'; } /* '' */
.iconsminds-stamp:before { content: '\e9a2'; } /* '' */
.iconsminds-stamp-2:before { content: '\e9a3'; } /* '' */
.iconsminds-voicemail:before { content: '\e9a4'; } /* '' */
.iconsminds-at-sign:before { content: '\e9a5'; } /* '' */
.iconsminds-box-full:before { content: '\e9a6'; } /* '' */
.iconsminds-empty-box:before { content: '\e9a7'; } /* '' */
.iconsminds-envelope:before { content: '\e9a8'; } /* '' */
.iconsminds-envelope-2:before { content: '\e9a9'; } /* '' */
.iconsminds-inbox:before { content: '\e9aa'; } /* '' */
.iconsminds-inbox-empty:before { content: '\e9ab'; } /* '' */
.iconsminds-inbox-forward:before { content: '\e9ac'; } /* '' */
.iconsminds-inbox-full:before { content: '\e9ad'; } /* '' */
.iconsminds-inbox-into:before { content: '\e9ae'; } /* '' */
.iconsminds-inbox-out:before { content: '\e9af'; } /* '' */
.iconsminds-inbox-reply:before { content: '\e9b0'; } /* '' */
.iconsminds-letter-close:before { content: '\e9b1'; } /* '' */
.iconsminds-letter-open:before { content: '\e9b2'; } /* '' */
.iconsminds-letter-sent:before { content: '\e9b3'; } /* '' */
.iconsminds-mail:before { content: '\e9b4'; } /* '' */
.iconsminds-mail-2:before { content: '\e9b5'; } /* '' */
.iconsminds-mail-3:before { content: '\e9b6'; } /* '' */
.iconsminds-mail-add-+:before { content: '\e9b7'; } /* '' */
.iconsminds-mail-attachement:before { content: '\e9b8'; } /* '' */
.iconsminds-ice-cream:before { content: '\e9b9'; } /* '' */
.iconsminds-lollipop:before { content: '\e9ba'; } /* '' */
.iconsminds-open-banana:before { content: '\e9bb'; } /* '' */
.iconsminds-pepper:before { content: '\e9bc'; } /* '' */
.iconsminds-tee-mug:before { content: '\e9bd'; } /* '' */
.iconsminds-tomato:before { content: '\e9be'; } /* '' */
.iconsminds-apple:before { content: '\e9bf'; } /* '' */
.iconsminds-apple-bite:before { content: '\e9c0'; } /* '' */
.iconsminds-beer-glass:before { content: '\e9c1'; } /* '' */
.iconsminds-birthday-cake:before { content: '\e9c2'; } /* '' */
.iconsminds-bread:before { content: '\e9c3'; } /* '' */
.iconsminds-cake:before { content: '\e9c4'; } /* '' */
.iconsminds-can:before { content: '\e9c5'; } /* '' */
.iconsminds-can-2:before { content: '\e9c6'; } /* '' */
.iconsminds-cheese:before { content: '\e9c7'; } /* '' */
.iconsminds-chef-hat:before { content: '\e9c8'; } /* '' */
.iconsminds-chopsticks:before { content: '\e9c9'; } /* '' */
.iconsminds-cocktail:before { content: '\e9ca'; } /* '' */
.iconsminds-coffee:before { content: '\e9cb'; } /* '' */
.iconsminds-coffee-bean:before { content: '\e9cc'; } /* '' */
.iconsminds-coffee-to-go:before { content: '\e9cd'; } /* '' */
.iconsminds-cookies:before { content: '\e9ce'; } /* '' */
.iconsminds-croissant:before { content: '\e9cf'; } /* '' */
.iconsminds-cupcake:before { content: '\e9d0'; } /* '' */
.iconsminds-doughnut:before { content: '\e9d1'; } /* '' */
.iconsminds-fish:before { content: '\e9d2'; } /* '' */
.iconsminds-glass-water:before { content: '\e9d3'; } /* '' */
.iconsminds-hamburger:before { content: '\e9d4'; } /* '' */
.iconsminds-hot-dog:before { content: '\e9d5'; } /* '' */
.iconsminds-webcam:before { content: '\e9d7'; } /* '' */
.iconsminds-battery-0%:before { content: '\e9d8'; } /* '' */
.iconsminds-battery-100%:before { content: '\e9d9'; } /* '' */
.iconsminds-battery-charge:before { content: '\e9da'; } /* '' */
.iconsminds-charger:before { content: '\e9db'; } /* '' */
.iconsminds-cpu:before { content: '\e9dc'; } /* '' */
.iconsminds-disk:before { content: '\e9dd'; } /* '' */
.iconsminds-dvd:before { content: '\e9de'; } /* '' */
.iconsminds-fan:before { content: '\e9df'; } /* '' */
.iconsminds-gamepad-2:before { content: '\e9e0'; } /* '' */
.iconsminds-hdd:before { content: '\e9e1'; } /* '' */
.iconsminds-keyboard:before { content: '\e9e2'; } /* '' */
.iconsminds-mouse:before { content: '\e9e3'; } /* '' */
.iconsminds-mouse-3:before { content: '\e9e4'; } /* '' */
.iconsminds-plug-in:before { content: '\e9e5'; } /* '' */
.iconsminds-power:before { content: '\e9e6'; } /* '' */
.iconsminds-power-cable:before { content: '\e9e7'; } /* '' */
.iconsminds-remote-controll-2:before { content: '\e9e8'; } /* '' */
.iconsminds-server-2:before { content: '\e9e9'; } /* '' */
.iconsminds-speaker:before { content: '\e9ea'; } /* '' */
.iconsminds-start-ways:before { content: '\e9eb'; } /* '' */
.iconsminds-synchronize:before { content: '\e9ec'; } /* '' */
.iconsminds-synchronize-2:before { content: '\e9ed'; } /* '' */
.iconsminds-undo:before { content: '\e9ee'; } /* '' */
.iconsminds-up-1:before { content: '\e9ef'; } /* '' */
.iconsminds-upload-1:before { content: '\e9f0'; } /* '' */
.iconsminds-upward:before { content: '\e9f1'; } /* '' */
.iconsminds-yes:before { content: '\e9f2'; } /* '' */
.iconsminds-add:before { content: '\e9f3'; } /* '' */
.iconsminds-back:before { content: '\e9f4'; } /* '' */
.iconsminds-broken-link:before { content: '\e9f5'; } /* '' */
.iconsminds-check:before { content: '\e9f6'; } /* '' */
.iconsminds-close:before { content: '\e9f8'; } /* '' */
.iconsminds-cursor:before { content: '\e9f9'; } /* '' */
.iconsminds-cursor-click-2:before { content: '\e9fa'; } /* '' */
.iconsminds-cursor-click:before { content: '\e9fb'; } /* '' */
.iconsminds-cursor-move-2:before { content: '\e9fc'; } /* '' */
.iconsminds-cursor-select:before { content: '\e9fd'; } /* '' */
.iconsminds-down-1:before { content: '\e9fe'; } /* '' */
.iconsminds-download-1:before { content: '\e9ff'; } /* '' */
.iconsminds-downward:before { content: '\ea00'; } /* '' */
.iconsminds-endways:before { content: '\ea01'; } /* '' */
.iconsminds-forward:before { content: '\ea02'; } /* '' */
.iconsminds-left-1:before { content: '\ea03'; } /* '' */
.iconsminds-link:before { content: '\ea04'; } /* '' */
.iconsminds-next:before { content: '\ea05'; } /* '' */
.iconsminds-orientation-1:before { content: '\ea06'; } /* '' */
.iconsminds-pointer:before { content: '\ea07'; } /* '' */
.iconsminds-previous:before { content: '\ea08'; } /* '' */
.iconsminds-redo:before { content: '\ea09'; } /* '' */
.iconsminds-refresh:before { content: '\ea0a'; } /* '' */
.iconsminds-reload-1:before { content: '\ea0b'; } /* '' */
.iconsminds-remove:before { content: '\ea0c'; } /* '' */
.iconsminds-repeat-1:before { content: '\ea0d'; } /* '' */
.iconsminds-reset:before { content: '\ea0e'; } /* '' */
.iconsminds-rewind:before { content: '\ea0f'; } /* '' */
.iconsminds-right-1:before { content: '\ea10'; } /* '' */
.iconsminds-rotation:before { content: '\ea11'; } /* '' */
.iconsminds-rotation-390:before { content: '\ea12'; } /* '' */
.iconsminds-spot:before { content: '\ea13'; } /* '' */
.iconsminds-satelite-2:before { content: '\ea15'; } /* '' */
.iconsminds-compass-1:before { content: '\ea16'; } /* '' */
.iconsminds-direction-east:before { content: '\ea17'; } /* '' */
.iconsminds-edit-map:before { content: '\ea18'; } /* '' */
.iconsminds-geo2:before { content: '\ea19'; } /* '' */
.iconsminds-geo2--:before { content: '\ea1a'; } /* '' */
.iconsminds-geo2-+:before { content: '\ea1b'; } /* '' */
.iconsminds-globe-2:before { content: '\ea1c'; } /* '' */
.iconsminds-location-2:before { content: '\ea1d'; } /* '' */
.iconsminds-map2:before { content: '\ea1e'; } /* '' */
.iconsminds-map-marker-2:before { content: '\ea1f'; } /* '' */
.iconsminds-map-marker:before { content: '\ea20'; } /* '' */
.iconsminds-stop:before { content: '\ea21'; } /* '' */
.iconsminds-stop-2:before { content: '\ea22'; } /* '' */
.iconsminds-back-1:before { content: '\ea23'; } /* '' */
.iconsminds-back-2:before { content: '\ea24'; } /* '' */
.iconsminds-eject:before { content: '\ea25'; } /* '' */
.iconsminds-eject-2:before { content: '\ea26'; } /* '' */
.iconsminds-end-1:before { content: '\ea27'; } /* '' */
.iconsminds-end-2:before { content: '\ea28'; } /* '' */
.iconsminds-next-1:before { content: '\ea29'; } /* '' */
.iconsminds-next-2:before { content: '\ea2a'; } /* '' */
.iconsminds-pause:before { content: '\ea2b'; } /* '' */
.iconsminds-pause-2:before { content: '\ea2c'; } /* '' */
.iconsminds-power-2:before { content: '\ea2d'; } /* '' */
.iconsminds-power-3:before { content: '\ea2e'; } /* '' */
.iconsminds-record:before { content: '\ea2f'; } /* '' */
.iconsminds-record-2:before { content: '\ea30'; } /* '' */
.iconsminds-repeat-5:before { content: '\ea31'; } /* '' */
.iconsminds-repeat-6:before { content: '\ea32'; } /* '' */
.iconsminds-shuffle-1:before { content: '\ea33'; } /* '' */
.iconsminds-shuffle-3:before { content: '\ea34'; } /* '' */
.iconsminds-start-1:before { content: '\ea35'; } /* '' */
.iconsminds-start-2:before { content: '\ea36'; } /* '' */
.iconsminds-volume-down:before { content: '\ea37'; } /* '' */
.iconsminds-volume-up:before { content: '\ea38'; } /* '' */
.iconsminds-back-music:before { content: '\ea39'; } /* '' */
.iconsminds-cd-2:before { content: '\ea3a'; } /* '' */
.iconsminds-clef:before { content: '\ea3b'; } /* '' */
.iconsminds-earphones-2:before { content: '\ea3c'; } /* '' */
.iconsminds-equalizer:before { content: '\ea3e'; } /* '' */
.iconsminds-first:before { content: '\ea3f'; } /* '' */
.iconsminds-headphones:before { content: '\ea41'; } /* '' */
.iconsminds-last:before { content: '\ea42'; } /* '' */
.iconsminds-loudspeaker:before { content: '\ea43'; } /* '' */
.iconsminds-mic:before { content: '\ea44'; } /* '' */
.iconsminds-microphone-4:before { content: '\ea45'; } /* '' */
.iconsminds-next-music:before { content: '\ea46'; } /* '' */
.iconsminds-old-radio:before { content: '\ea47'; } /* '' */
.iconsminds-play-music:before { content: '\ea48'; } /* '' */
.iconsminds-radio:before { content: '\ea49'; } /* '' */
.iconsminds-record-1:before { content: '\ea4a'; } /* '' */
.iconsminds-record-music:before { content: '\ea4b'; } /* '' */
.iconsminds-sound:before { content: '\ea4c'; } /* '' */
.iconsminds-speaker-1:before { content: '\ea4d'; } /* '' */
.iconsminds-stop-music:before { content: '\ea4e'; } /* '' */
.iconsminds-trumpet:before { content: '\ea4f'; } /* '' */
.iconsminds-voice:before { content: '\ea50'; } /* '' */
.iconsminds-tree-3:before { content: '\ea51'; } /* '' */
.iconsminds-eci-icon:before { content: '\ea52'; } /* '' */
.iconsminds-environmental:before { content: '\ea53'; } /* '' */
.iconsminds-environmental-3:before { content: '\ea54'; } /* '' */
.iconsminds-fire-flame-2:before { content: '\ea55'; } /* '' */
.iconsminds-green-energy:before { content: '\ea58'; } /* '' */
.iconsminds-green-house:before { content: '\ea59'; } /* '' */
.iconsminds-leafs:before { content: '\ea5b'; } /* '' */
.iconsminds-light-bulb-leaf:before { content: '\ea5c'; } /* '' */
.iconsminds-palm-tree:before { content: '\ea5d'; } /* '' */
.iconsminds-plant:before { content: '\ea5e'; } /* '' */
.iconsminds-recycling-2:before { content: '\ea5f'; } /* '' */
.iconsminds-seed:before { content: '\ea60'; } /* '' */
.iconsminds-trash-with-men:before { content: '\ea61'; } /* '' */
.iconsminds-id-card:before { content: '\ea62'; } /* '' */
.iconsminds-king-2:before { content: '\ea63'; } /* '' */
.iconsminds-male:before { content: '\ea64'; } /* '' */
.iconsminds-male+female:before { content: '\ea65'; } /* '' */
.iconsminds-male-2:before { content: '\ea66'; } /* '' */
.iconsminds-man-sign:before { content: '\ea67'; } /* '' */
.iconsminds-mens:before { content: '\ea68'; } /* '' */
.iconsminds-network:before { content: '\ea69'; } /* '' */
.iconsminds-student-female:before { content: '\ea6a'; } /* '' */
.iconsminds-student-male:before { content: '\ea6b'; } /* '' */
.iconsminds-student-male+female:before { content: '\ea6c'; } /* '' */
.iconsminds-students:before { content: '\ea6d'; } /* '' */
.iconsminds-woman+man:before { content: '\ea6e'; } /* '' */
.iconsminds-add-user:before { content: '\ea6f'; } /* '' */
.iconsminds-administrator:before { content: '\ea70'; } /* '' */
.iconsminds-assistant:before { content: '\ea71'; } /* '' */
.iconsminds-business-man:before { content: '\ea72'; } /* '' */
.iconsminds-business-man+woman:before { content: '\ea73'; } /* '' */
.iconsminds-business-mens:before { content: '\ea74'; } /* '' */
.iconsminds-business-woman:before { content: '\ea75'; } /* '' */
.iconsminds-conference:before { content: '\ea76'; } /* '' */
.iconsminds-doctor:before { content: '\ea77'; } /* '' */
.iconsminds-engineering:before { content: '\ea78'; } /* '' */
.iconsminds-female:before { content: '\ea79'; } /* '' */
.iconsminds-female-2:before { content: '\ea7a'; } /* '' */
.iconsminds-temperature:before { content: '\ea7b'; } /* '' */
.iconsminds-test-tube:before { content: '\ea7c'; } /* '' */
.iconsminds-ambulance:before { content: '\ea7d'; } /* '' */
.iconsminds-atom:before { content: '\ea7e'; } /* '' */
.iconsminds-band-aid:before { content: '\ea7f'; } /* '' */
.iconsminds-bio-hazard:before { content: '\ea80'; } /* '' */
.iconsminds-biotech:before { content: '\ea81'; } /* '' */
.iconsminds-brain:before { content: '\ea82'; } /* '' */
.iconsminds-chemical:before { content: '\ea83'; } /* '' */
.iconsminds-clinic:before { content: '\ea84'; } /* '' */
.iconsminds-danger:before { content: '\ea85'; } /* '' */
.iconsminds-dna:before { content: '\ea86'; } /* '' */
.iconsminds-dna-2:before { content: '\ea87'; } /* '' */
.iconsminds-first-aid:before { content: '\ea88'; } /* '' */
.iconsminds-flask:before { content: '\ea89'; } /* '' */
.iconsminds-medical-sign:before { content: '\ea8a'; } /* '' */
.iconsminds-medicine-3:before { content: '\ea8b'; } /* '' */
.iconsminds-microscope:before { content: '\ea8c'; } /* '' */
.iconsminds-physics:before { content: '\ea8d'; } /* '' */
.iconsminds-plasmid:before { content: '\ea8e'; } /* '' */
.iconsminds-plaster:before { content: '\ea8f'; } /* '' */
.iconsminds-pulse:before { content: '\ea90'; } /* '' */
.iconsminds-radioactive:before { content: '\ea91'; } /* '' */
.iconsminds-stethoscope:before { content: '\ea92'; } /* '' */
.iconsminds-security-settings:before { content: '\ea93'; } /* '' */
.iconsminds-securiy-remove:before { content: '\ea94'; } /* '' */
.iconsminds-shield:before { content: '\ea95'; } /* '' */
.iconsminds-ssl:before { content: '\ea96'; } /* '' */
.iconsminds-type-pass:before { content: '\ea97'; } /* '' */
.iconsminds-unlock-2:before { content: '\ea98'; } /* '' */
.iconsminds-finger-print:before { content: '\ea99'; } /* '' */
.iconsminds-firewall:before { content: '\ea9a'; } /* '' */
.iconsminds-key-lock:before { content: '\ea9b'; } /* '' */
.iconsminds-laptop-secure:before { content: '\ea9c'; } /* '' */
.iconsminds-lock-2:before { content: '\ea9d'; } /* '' */
.iconsminds-password:before { content: '\ea9e'; } /* '' */
.iconsminds-password-field:before { content: '\ea9f'; } /* '' */
.iconsminds-police:before { content: '\eaa0'; } /* '' */
.iconsminds-security-block:before { content: '\eaa2'; } /* '' */
.iconsminds-security-bug:before { content: '\eaa3'; } /* '' */
.iconsminds-security-camera:before { content: '\eaa4'; } /* '' */
.iconsminds-security-check:before { content: '\eaa5'; } /* '' */
.iconsminds-testimonal:before { content: '\eaa6'; } /* '' */
.iconsminds-broke-link-2:before { content: '\eaa7'; } /* '' */
.iconsminds-coding:before { content: '\eaa8'; } /* '' */
.iconsminds-consulting:before { content: '\eaa9'; } /* '' */
.iconsminds-copyright:before { content: '\eaaa'; } /* '' */
.iconsminds-idea-2:before { content: '\eaab'; } /* '' */
.iconsminds-link-2:before { content: '\eaac'; } /* '' */
.iconsminds-management:before { content: '\eaad'; } /* '' */
.iconsminds-monitor-analytics:before { content: '\eaae'; } /* '' */
.iconsminds-monitoring:before { content: '\eaaf'; } /* '' */
.iconsminds-optimization:before { content: '\eab0'; } /* '' */
.iconsminds-tag:before { content: '\eab1'; } /* '' */
.iconsminds-target:before { content: '\eab2'; } /* '' */
.iconsminds-target-market:before { content: '\eab3'; } /* '' */
.iconsminds-shopping-bag:before { content: '\eab5'; } /* '' */
.iconsminds-shopping-basket:before { content: '\eab6'; } /* '' */
.iconsminds-shopping-cart:before { content: '\eab7'; } /* '' */
.iconsminds-tag-3:before { content: '\eab8'; } /* '' */
.iconsminds-add-bag:before { content: '\eab9'; } /* '' */
.iconsminds-add-basket:before { content: '\eaba'; } /* '' */
.iconsminds-add-cart:before { content: '\eabb'; } /* '' */
.iconsminds-bag-items:before { content: '\eabc'; } /* '' */
.iconsminds-bag-quantity:before { content: '\eabd'; } /* '' */
.iconsminds-basket-coins:before { content: '\eabf'; } /* '' */
.iconsminds-basket-items:before { content: '\eac0'; } /* '' */
.iconsminds-basket-quantity:before { content: '\eac1'; } /* '' */
.iconsminds-car-items:before { content: '\eac2'; } /* '' */
.iconsminds-cart-quantity:before { content: '\eac3'; } /* '' */
.iconsminds-cash-register-2:before { content: '\eac4'; } /* '' */
.iconsminds-checkout:before { content: '\eac5'; } /* '' */
.iconsminds-checkout-bag:before { content: '\eac6'; } /* '' */
.iconsminds-checkout-basket:before { content: '\eac7'; } /* '' */
.iconsminds-home-1:before { content: '\eac8'; } /* '' */
.iconsminds-qr-code:before { content: '\eac9'; } /* '' */
.iconsminds-receipt-4:before { content: '\eaca'; } /* '' */
.iconsminds-remove-bag:before { content: '\eacb'; } /* '' */
.iconsminds-remove-basket:before { content: '\eacc'; } /* '' */
.iconsminds-remove-cart:before { content: '\eacd'; } /* '' */
.iconsminds-shop:before { content: '\eace'; } /* '' */
.iconsminds-shop-2:before { content: '\eacf'; } /* '' */
.iconsminds-shop-3:before { content: '\ead0'; } /* '' */
.iconsminds-ying-yang:before { content: '\ead1'; } /* '' */
.iconsminds-bisexual:before { content: '\ead2'; } /* '' */
.iconsminds-cancer:before { content: '\ead3'; } /* '' */
.iconsminds-couple-sign:before { content: '\ead4'; } /* '' */
.iconsminds-family-sign:before { content: '\ead5'; } /* '' */
.iconsminds-female-1:before { content: '\ead6'; } /* '' */
.iconsminds-gey:before { content: '\ead7'; } /* '' */
.iconsminds-heart:before { content: '\ead8'; } /* '' */
.iconsminds-homosexual:before { content: '\ead9'; } /* '' */
.iconsminds-inifity:before { content: '\eada'; } /* '' */
.iconsminds-lesbian:before { content: '\eadb'; } /* '' */
.iconsminds-lesbians:before { content: '\eadc'; } /* '' */
.iconsminds-love:before { content: '\eadd'; } /* '' */
.iconsminds-male-1:before { content: '\eade'; } /* '' */
.iconsminds-men:before { content: '\eadf'; } /* '' */
.iconsminds-no-smoking:before { content: '\eae0'; } /* '' */
.iconsminds-paw:before { content: '\eae1'; } /* '' */
.iconsminds-quotes:before { content: '\eae2'; } /* '' */
.iconsminds-redirect:before { content: '\eae3'; } /* '' */
.iconsminds-ribbon:before { content: '\eae4'; } /* '' */
.iconsminds-venn-diagram:before { content: '\eae5'; } /* '' */
.iconsminds-wheelchair:before { content: '\eae6'; } /* '' */
.iconsminds-women:before { content: '\eae7'; } /* '' */
.iconsminds-instagram:before { content: '\eae8'; } /* '' */
.iconsminds-last-fm:before { content: '\eae9'; } /* '' */
.iconsminds-like:before { content: '\eaea'; } /* '' */
.iconsminds-linkedin-2:before { content: '\eaeb'; } /* '' */
.iconsminds-livejournal:before { content: '\eaec'; } /* '' */
.iconsminds-newsvine:before { content: '\eaed'; } /* '' */
.iconsminds-picasa:before { content: '\eaee'; } /* '' */
.iconsminds-pinterest:before { content: '\eaef'; } /* '' */
.iconsminds-plaxo:before { content: '\eaf0'; } /* '' */
.iconsminds-plurk:before { content: '\eaf1'; } /* '' */
.iconsminds-posterous:before { content: '\eaf2'; } /* '' */
.iconsminds-qik:before { content: '\eaf3'; } /* '' */
.iconsminds-reddit:before { content: '\eaf4'; } /* '' */
.iconsminds-reverbnation:before { content: '\eaf5'; } /* '' */
.iconsminds-rss:before { content: '\eaf6'; } /* '' */
.iconsminds-sharethis:before { content: '\eaf7'; } /* '' */
.iconsminds-skype:before { content: '\eaf8'; } /* '' */
.iconsminds-soundcloud:before { content: '\eaf9'; } /* '' */
.iconsminds-stumbleupon:before { content: '\eafa'; } /* '' */
.iconsminds-technorati:before { content: '\eafb'; } /* '' */
.iconsminds-tumblr:before { content: '\eafc'; } /* '' */
.iconsminds-twitter:before { content: '\eafd'; } /* '' */
.iconsminds-unlike:before { content: '\eafe'; } /* '' */
.iconsminds-ustream:before { content: '\eaff'; } /* '' */
.iconsminds-viddler:before { content: '\eb00'; } /* '' */
.iconsminds-vimeo:before { content: '\eb01'; } /* '' */
.iconsminds-wordpress:before { content: '\eb02'; } /* '' */
.iconsminds-xanga:before { content: '\eb03'; } /* '' */
.iconsminds-yahoo:before { content: '\eb04'; } /* '' */
.iconsminds-yelp:before { content: '\eb05'; } /* '' */
.iconsminds-youtube:before { content: '\eb06'; } /* '' */
.iconsminds-ask:before { content: '\eb07'; } /* '' */
.iconsminds-behance:before { content: '\eb08'; } /* '' */
.iconsminds-bing:before { content: '\eb09'; } /* '' */
.iconsminds-blinklist:before { content: '\eb0a'; } /* '' */
.iconsminds-blogger:before { content: '\eb0b'; } /* '' */
.iconsminds-delicious:before { content: '\eb0c'; } /* '' */
.iconsminds-deviantart:before { content: '\eb0d'; } /* '' */
.iconsminds-digg:before { content: '\eb0e'; } /* '' */
.iconsminds-diigo:before { content: '\eb0f'; } /* '' */
.iconsminds-dribble:before { content: '\eb11'; } /* '' */
.iconsminds-email:before { content: '\eb12'; } /* '' */
.iconsminds-evernote:before { content: '\eb13'; } /* '' */
.iconsminds-facebook:before { content: '\eb14'; } /* '' */
.iconsminds-feedburner:before { content: '\eb15'; } /* '' */
.iconsminds-flickr:before { content: '\eb16'; } /* '' */
.iconsminds-formspring:before { content: '\eb17'; } /* '' */
.iconsminds-forsquare:before { content: '\eb18'; } /* '' */
.iconsminds-friendster:before { content: '\eb19'; } /* '' */
.iconsminds-google:before { content: '\eb1a'; } /* '' */
.iconsminds-gowalla:before { content: '\eb1b'; } /* '' */
.iconsminds-icq:before { content: '\eb1c'; } /* '' */
.iconsminds-imdb:before { content: '\eb1d'; } /* '' */
.iconsminds-speach-bubble:before { content: '\eb1e'; } /* '' */
.iconsminds-speach-bubbles:before { content: '\eb1f'; } /* '' */
.iconsminds-speach-bubble-2:before { content: '\eb20'; } /* '' */
.iconsminds-speach-bubble-3:before { content: '\eb21'; } /* '' */
.iconsminds-speach-bubble-4:before { content: '\eb22'; } /* '' */
.iconsminds-speach-bubble-5:before { content: '\eb23'; } /* '' */
.iconsminds-speach-bubble-6:before { content: '\eb24'; } /* '' */
.iconsminds-speach-bubble-7:before { content: '\eb25'; } /* '' */
.iconsminds-speach-bubble-8:before { content: '\eb26'; } /* '' */
.iconsminds-speach-bubble-9:before { content: '\eb27'; } /* '' */
.iconsminds-speach-bubble-10:before { content: '\eb28'; } /* '' */
.iconsminds-speach-bubble-11:before { content: '\eb29'; } /* '' */
.iconsminds-speach-bubble-12:before { content: '\eb2a'; } /* '' */
.iconsminds-speach-bubble-13:before { content: '\eb2b'; } /* '' */
.iconsminds-speach-bubble-asking:before { content: '\eb2c'; } /* '' */
.iconsminds-speach-bubble-comic-2:before { content: '\eb2d'; } /* '' */
.iconsminds-speach-bubble-comic-3:before { content: '\eb2e'; } /* '' */
.iconsminds-speach-bubble-comic-4:before { content: '\eb2f'; } /* '' */
.iconsminds-speach-bubble-comic:before { content: '\eb30'; } /* '' */
.iconsminds-speach-bubble-dialog:before { content: '\eb31'; } /* '' */
.iconsminds-trekking:before { content: '\eb32'; } /* '' */
.iconsminds-trophy:before { content: '\eb33'; } /* '' */
.iconsminds-weight-lift:before { content: '\eb35'; } /* '' */
.iconsminds-aerobics:before { content: '\eb36'; } /* '' */
.iconsminds-archery:before { content: '\eb37'; } /* '' */
.iconsminds-ballet-shoes:before { content: '\eb38'; } /* '' */
.iconsminds-baseball:before { content: '\eb39'; } /* '' */
.iconsminds-basket-ball:before { content: '\eb3a'; } /* '' */
.iconsminds-bowling:before { content: '\eb3b'; } /* '' */
.iconsminds-box:before { content: '\eb3c'; } /* '' */
.iconsminds-chess:before { content: '\eb3d'; } /* '' */
.iconsminds-cricket:before { content: '\eb3e'; } /* '' */
.iconsminds-dumbbell:before { content: '\eb3f'; } /* '' */
.iconsminds-football:before { content: '\eb40'; } /* '' */
.iconsminds-football-2:before { content: '\eb41'; } /* '' */
.iconsminds-footprint:before { content: '\eb42'; } /* '' */
.iconsminds-footprint-2:before { content: '\eb43'; } /* '' */
.iconsminds-golf:before { content: '\eb44'; } /* '' */
.iconsminds-gymnastics:before { content: '\eb45'; } /* '' */
.iconsminds-hokey:before { content: '\eb46'; } /* '' */
.iconsminds-jump-rope:before { content: '\eb47'; } /* '' */
.iconsminds-life-jacket:before { content: '\eb48'; } /* '' */
.iconsminds-medal:before { content: '\eb49'; } /* '' */
.iconsminds-pilates-2:before { content: '\eb4a'; } /* '' */
.iconsminds-rafting:before { content: '\eb4b'; } /* '' */
.iconsminds-running-shoes:before { content: '\eb4c'; } /* '' */
.iconsminds-skydiving:before { content: '\eb4d'; } /* '' */
.iconsminds-snorkel:before { content: '\eb4e'; } /* '' */
.iconsminds-soccer-ball:before { content: '\eb4f'; } /* '' */
.iconsminds-swimming:before { content: '\eb50'; } /* '' */
.iconsminds-tennis:before { content: '\eb51'; } /* '' */
.iconsminds-tennis-ball:before { content: '\eb52'; } /* '' */
.iconsminds-over-time-2:before { content: '\eb53'; } /* '' */
.iconsminds-sand-watch-2:before { content: '\eb54'; } /* '' */
.iconsminds-stopwatch:before { content: '\eb55'; } /* '' */
.iconsminds-time-backup:before { content: '\eb56'; } /* '' */
.iconsminds-timer:before { content: '\eb57'; } /* '' */
.iconsminds-watch:before { content: '\eb58'; } /* '' */
.iconsminds-24-hour:before { content: '\eb59'; } /* '' */
.iconsminds-alarm-clock-2:before { content: '\eb5a'; } /* '' */
.iconsminds-alarm-clock:before { content: '\eb5b'; } /* '' */
.iconsminds-clock:before { content: '\eb5c'; } /* '' */
.iconsminds-clock-2:before { content: '\eb5d'; } /* '' */
.iconsminds-clock-back:before { content: '\eb5e'; } /* '' */
.iconsminds-clock-forward:before { content: '\eb5f'; } /* '' */
.iconsminds-old-clock:before { content: '\eb60'; } /* '' */
.iconsminds-scooter:before { content: '\eb61'; } /* '' */
.iconsminds-ship:before { content: '\eb62'; } /* '' */
.iconsminds-skateboard:before { content: '\eb63'; } /* '' */
.iconsminds-taxi-sign:before { content: '\eb64'; } /* '' */
.iconsminds-traffic-light:before { content: '\eb66'; } /* '' */
.iconsminds-train:before { content: '\eb67'; } /* '' */
.iconsminds-yacht:before { content: '\eb68'; } /* '' */
.iconsminds-bicycle-1:before { content: '\eb6a'; } /* '' */
.iconsminds-bus-2:before { content: '\eb6b'; } /* '' */
.iconsminds-car:before { content: '\eb6c'; } /* '' */
.iconsminds-gaugage:before { content: '\eb6e'; } /* '' */
.iconsminds-gaugage-2:before { content: '\eb6f'; } /* '' */
.iconsminds-helicopter:before { content: '\eb70'; } /* '' */
.iconsminds-jeep:before { content: '\eb71'; } /* '' */
.iconsminds-jet:before { content: '\eb72'; } /* '' */
.iconsminds-motorcycle:before { content: '\eb73'; } /* '' */
.iconsminds-plane:before { content: '\eb74'; } /* '' */
.iconsminds-road-2:before { content: '\eb75'; } /* '' */
.iconsminds-sailing-ship:before { content: '\eb76'; } /* '' */
.iconsminds-video-tripod:before { content: '\eb77'; } /* '' */
.iconsminds-3d-eyeglasses:before { content: '\eb78'; } /* '' */
.iconsminds-cinema:before { content: '\eb79'; } /* '' */
.iconsminds-director:before { content: '\eb7a'; } /* '' */
.iconsminds-film:before { content: '\eb7b'; } /* '' */
.iconsminds-film-video:before { content: '\eb7c'; } /* '' */
.iconsminds-old-tv:before { content: '\eb7d'; } /* '' */
.iconsminds-tv:before { content: '\eb7e'; } /* '' */
.iconsminds-video:before { content: '\eb7f'; } /* '' */
.iconsminds-video-5:before { content: '\eb80'; } /* '' */
.iconsminds-video-6:before { content: '\eb81'; } /* '' */
.iconsminds-video-len:before { content: '\eb82'; } /* '' */
.iconsminds-sunrise:before { content: '\eb83'; } /* '' */
.iconsminds-sunset:before { content: '\eb84'; } /* '' */
.iconsminds-temperature-2:before { content: '\eb85'; } /* '' */
.iconsminds-thunder:before { content: '\eb86'; } /* '' */
.iconsminds-umbrella-2:before { content: '\eb87'; } /* '' */
.iconsminds-wave:before { content: '\eb88'; } /* '' */
.iconsminds-wind-turbine:before { content: '\eb89'; } /* '' */
.iconsminds-windy:before { content: '\eb8a'; } /* '' */
.iconsminds-cloud-hail:before { content: '\eb8b'; } /* '' */
.iconsminds-cloud-moon:before { content: '\eb8c'; } /* '' */
.iconsminds-cloud-rain:before { content: '\eb8d'; } /* '' */
.iconsminds-cloud-snow:before { content: '\eb8e'; } /* '' */
.iconsminds-cloud-sun:before { content: '\eb8f'; } /* '' */
.iconsminds-cloud-weather:before { content: '\eb90'; } /* '' */
.iconsminds-drop:before { content: '\eb91'; } /* '' */
.iconsminds-dry:before { content: '\eb92'; } /* '' */
.iconsminds-fog-day:before { content: '\eb93'; } /* '' */
.iconsminds-fog-night:before { content: '\eb94'; } /* '' */
.iconsminds-half-moon:before { content: '\eb95'; } /* '' */
.iconsminds-rain-drop:before { content: '\eb96'; } /* '' */
.iconsminds-snow:before { content: '\eb97'; } /* '' */
.iconsminds-snowflake-3:before { content: '\eb98'; } /* '' */
.iconsminds-snow-storm:before { content: '\eb99'; } /* '' */
.iconsminds-spring:before { content: '\eb9a'; } /* '' */
.iconsminds-storm:before { content: '\eb9b'; } /* '' */
.iconsminds-summer:before { content: '\eb9c'; } /* '' */
.iconsminds-sun:before { content: '\eb9d'; } /* '' */
.iconsminds-sun-cloudy-rain:before { content: '\eb9e'; } /* '' */
.iconsminds-electric-guitar:before { content: '\eb9f'; } /* '' */
.iconsminds-guitar:before { content: '\eba0'; } /* '' */
.iconsminds-air-balloon-1:before { content: '\eba1'; } /* '' */
.iconsminds-tractor:before { content: '\eba2'; } /* '' */
.iconsminds-calendar-1:before { content: '\eba3'; } /* '' */
.iconsminds-calendar-4:before { content: '\eba4'; } /* '' */
.iconsminds-trophy-2:before { content: '\eba5'; } /* '' */
.iconsminds-life-safer:before { content: '\eba6'; } /* '' */
.iconsminds-calculator:before { content: '\eba7'; } /* '' */
.iconsminds-taj-mahal:before { content: '\eba8'; } /* '' */
.iconsminds-scale:before { content: '\eba9'; } /* '' */
.iconsminds-usb:before { content: '\ebaa'; } /* '' */
.iconsminds-flowerpot:before { content: '\ebab'; } /* '' */
.iconsminds-shop-4:before { content: '\ebac'; } /* '' */
.iconsminds-line-chart-1:before { content: '\ebad'; } /* '' */
.iconsminds-line-chart-3:before { content: '\ebae'; } /* '' */
.iconsminds-forest-1:before { content: '\ebaf'; } /* '' */
.iconsminds-pantone:before { content: '\ebb0'; } /* '' */
.iconsminds-digital-drawing:before { content: '\ebb1'; } /* '' */
.iconsminds-credit-card:before { content: '\ebb2'; } /* '' */
.iconsminds-credit-card-3:before { content: '\ebb3'; } /* '' */
.iconsminds-money-bag:before { content: '\ebb4'; } /* '' */
.iconsminds-printer:before { content: '\ebb5'; } /* '' */
.iconsminds-sheep:before { content: '\ebb8'; } /* '' */
.iconsminds-cow:before { content: '\ebb9'; } /* '' */
.iconsminds-dog:before { content: '\ebba'; } /* '' */
.iconsminds-deer:before { content: '\ebbb'; } /* '' */

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,925 @@
.iconsminds-add-space-after-paragraph { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.iconsminds-add-space-before-paragraph { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.iconsminds-align-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
.iconsminds-align-justify-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.iconsminds-align-justify-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
.iconsminds-align-justify-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
.iconsminds-align-justify-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.iconsminds-align-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.iconsminds-align-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); }
.iconsminds-decrase-inedit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
.iconsminds-increase-inedit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.iconsminds-indent-first-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.iconsminds-indent-left-margin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.iconsminds-indent-right-margin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.iconsminds-line-spacing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.iconsminds-arrow-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.iconsminds-arrow-from { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.iconsminds-arrow-inside-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
.iconsminds-arrow-inside-gap-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
.iconsminds-arrow-inside-gap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); }
.iconsminds-arrow-inside { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); }
.iconsminds-arrow-into { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); }
.iconsminds-arrow-junction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); }
.iconsminds-arrow-loop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe818;&nbsp;'); }
.iconsminds-arrow-merge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe819;&nbsp;'); }
.iconsminds-arrow-mix { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); }
.iconsminds-arrow-out-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); }
.iconsminds-arrow-out-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81c;&nbsp;'); }
.iconsminds-arrow-outside-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81d;&nbsp;'); }
.iconsminds-arrow-outside-gap-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); }
.iconsminds-arrow-outside-gap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); }
.iconsminds-arrow-outside { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); }
.iconsminds-arrow-over { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); }
.iconsminds-arrow-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); }
.iconsminds-arrow-squiggly { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); }
.iconsminds-arrow-through { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); }
.iconsminds-arrow-to { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); }
.iconsminds-double-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); }
.iconsminds-full-view-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); }
.iconsminds-full-view { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); }
.iconsminds-maximize { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); }
.iconsminds-minimize { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); }
.iconsminds-resize { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); }
.iconsminds-three-arrow-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }
.iconsminds-view-height { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); }
.iconsminds-view-width { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); }
.iconsminds-arrow-around { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); }
.iconsminds-arrow-barrier { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); }
.iconsminds-arrow-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); }
.iconsminds-arrow-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe832;&nbsp;'); }
.iconsminds-arrow-back-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe833;&nbsp;'); }
.iconsminds-arrow-back-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe834;&nbsp;'); }
.iconsminds-arrow-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe835;&nbsp;'); }
.iconsminds-arrow-down-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); }
.iconsminds-arrow-down-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); }
.iconsminds-arrow-down-in-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); }
.iconsminds-arrow-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); }
.iconsminds-arrow-forward-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); }
.iconsminds-arrow-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); }
.iconsminds-arrow-left-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); }
.iconsminds-arrow-left-in-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); }
.iconsminds-arrow-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); }
.iconsminds-arrow-next { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); }
.iconsminds-arrow-refresh-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); }
.iconsminds-arrow-refresh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); }
.iconsminds-arrow-right-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); }
.iconsminds-arrow-right-in-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
.iconsminds-arrow-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
.iconsminds-arrow-turn-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
.iconsminds-arrow-turn-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.iconsminds-arrow-up-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
.iconsminds-arrow-up-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
.iconsminds-arrow-up-in-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
.iconsminds-arrow-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84a;&nbsp;'); }
.iconsminds-arrow-x-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84b;&nbsp;'); }
.iconsminds-arrow-x-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); }
.iconsminds-bottom-to-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); }
.iconsminds-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); }
.iconsminds-down-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); }
.iconsminds-down-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); }
.iconsminds-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); }
.iconsminds-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); }
.iconsminds-fit-to-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe853;&nbsp;'); }
.iconsminds-fit-to { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); }
.iconsminds-full-screen-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); }
.iconsminds-full-screen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); }
.iconsminds-go-bottom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); }
.iconsminds-go-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); }
.iconsminds-left---right-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); }
.iconsminds-left---right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); }
.iconsminds-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); }
.iconsminds-left-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); }
.iconsminds-left-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); }
.iconsminds-left-to-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); }
.iconsminds-loop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); }
.iconsminds-navigate-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); }
.iconsminds-navigat-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); }
.iconsminds-reload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); }
.iconsminds-reload-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); }
.iconsminds-repeat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); }
.iconsminds-repeat-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe865;&nbsp;'); }
.iconsminds-repeat-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
.iconsminds-repeat-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
.iconsminds-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
.iconsminds-right-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.iconsminds-right-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
.iconsminds-right-to-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
.iconsminds-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
.iconsminds-shuffle-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); }
.iconsminds-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); }
.iconsminds-sync { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86f;&nbsp;'); }
.iconsminds-to-bottom-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); }
.iconsminds-to-bottom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe871;&nbsp;'); }
.iconsminds-to-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); }
.iconsminds-top-to-bottom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); }
.iconsminds-to-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); }
.iconsminds-to-top-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe875;&nbsp;'); }
.iconsminds-to-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe876;&nbsp;'); }
.iconsminds-triangle-arrow-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe877;&nbsp;'); }
.iconsminds-triangle-arrow-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe878;&nbsp;'); }
.iconsminds-triangle-arrow-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe879;&nbsp;'); }
.iconsminds-triangle-arrow-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87a;&nbsp;'); }
.iconsminds-turn-down-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87b;&nbsp;'); }
.iconsminds-turn-down-from-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87c;&nbsp;'); }
.iconsminds-turn-down-from-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
.iconsminds-turn-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
.iconsminds-turn-left-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
.iconsminds-turn-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.iconsminds-turn-right-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.iconsminds-turn-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
.iconsminds-turn-up-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
.iconsminds-turn-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
.iconsminds-up---down-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); }
.iconsminds-up---down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); }
.iconsminds-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); }
.iconsminds-up-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); }
.iconsminds-up-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); }
.iconsminds-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); }
.iconsminds-billing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); }
.iconsminds-binocular { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); }
.iconsminds-bone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); }
.iconsminds-box-close { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); }
.iconsminds-box-with-folders { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); }
.iconsminds-brush { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); }
.iconsminds-bucket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
.iconsminds-camera-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
.iconsminds-camera-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
.iconsminds-candle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); }
.iconsminds-candy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.iconsminds-chair { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.iconsminds-control { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
.iconsminds-control-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.iconsminds-crop-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
.iconsminds-crown-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
.iconsminds-dashboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
.iconsminds-data-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); }
.iconsminds-data-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89d;&nbsp;'); }
.iconsminds-data-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
.iconsminds-data-storage { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
.iconsminds-delete-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
.iconsminds-dice { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
.iconsminds-drill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); }
.iconsminds-duplicate-layer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a3;&nbsp;'); }
.iconsminds-electricity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); }
.iconsminds-factory { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); }
.iconsminds-feather { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); }
.iconsminds-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); }
.iconsminds-file-clipboard-file-+-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
.iconsminds-file-clipboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); }
.iconsminds-file-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8aa;&nbsp;'); }
.iconsminds-file-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); }
.iconsminds-file-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ac;&nbsp;'); }
.iconsminds-files { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ad;&nbsp;'); }
.iconsminds-file-zip { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ae;&nbsp;'); }
.iconsminds-filter-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8af;&nbsp;'); }
.iconsminds-flash-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); }
.iconsminds-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); }
.iconsminds-folder-add-+ { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); }
.iconsminds-folder-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
.iconsminds-folder-close { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b4;&nbsp;'); }
.iconsminds-folder-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b5;&nbsp;'); }
.iconsminds-folder-delete { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b6;&nbsp;'); }
.iconsminds-folder-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b7;&nbsp;'); }
.iconsminds-folder-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b8;&nbsp;'); }
.iconsminds-folders { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b9;&nbsp;'); }
.iconsminds-folder-zip { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ba;&nbsp;'); }
.iconsminds-funny-bicycle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bb;&nbsp;'); }
.iconsminds-gas-pump { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); }
.iconsminds-gear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); }
.iconsminds-gear-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
.iconsminds-gears { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); }
.iconsminds-gift-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); }
.iconsminds-grave { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c2;&nbsp;'); }
.iconsminds-headphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c3;&nbsp;'); }
.iconsminds-headset { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c4;&nbsp;'); }
.iconsminds-hipster-men { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c5;&nbsp;'); }
.iconsminds-hub { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c6;&nbsp;'); }
.iconsminds-idea { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c7;&nbsp;'); }
.iconsminds-information { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c8;&nbsp;'); }
.iconsminds-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c9;&nbsp;'); }
.iconsminds-knife { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ca;&nbsp;'); }
.iconsminds-lantern { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cb;&nbsp;'); }
.iconsminds-layer-backward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); }
.iconsminds-layer-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cd;&nbsp;'); }
.iconsminds-library { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ce;&nbsp;'); }
.iconsminds-light-bulb-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d0;&nbsp;'); }
.iconsminds-loading { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); }
.iconsminds-loading-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); }
.iconsminds-loading-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d3;&nbsp;'); }
.iconsminds-magic-wand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
.iconsminds-magnifi-glass-- { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); }
.iconsminds-magnifi-glass-+ { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); }
.iconsminds-magnifi-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d7;&nbsp;'); }
.iconsminds-memory-card-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); }
.iconsminds-mine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d9;&nbsp;'); }
.iconsminds-mustache-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8da;&nbsp;'); }
.iconsminds-office-lamp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8db;&nbsp;'); }
.iconsminds-old-sticky-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dc;&nbsp;'); }
.iconsminds-on-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dd;&nbsp;'); }
.iconsminds-on-off-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8de;&nbsp;'); }
.iconsminds-on-off-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8df;&nbsp;'); }
.iconsminds-palette { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e0;&nbsp;'); }
.iconsminds-paper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e1;&nbsp;'); }
.iconsminds-pen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e2;&nbsp;'); }
.iconsminds-photo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e3;&nbsp;'); }
.iconsminds-photo-album-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e4;&nbsp;'); }
.iconsminds-power-station { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e5;&nbsp;'); }
.iconsminds-preview { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e6;&nbsp;'); }
.iconsminds-pricing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e7;&nbsp;'); }
.iconsminds-profile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e8;&nbsp;'); }
.iconsminds-project { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e9;&nbsp;'); }
.iconsminds-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ea;&nbsp;'); }
.iconsminds-refinery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8eb;&nbsp;'); }
.iconsminds-remove-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ec;&nbsp;'); }
.iconsminds-rename { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ed;&nbsp;'); }
.iconsminds-repair { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ee;&nbsp;'); }
.iconsminds-ruler { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ef;&nbsp;'); }
.iconsminds-save { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f0;&nbsp;'); }
.iconsminds-scissor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f2;&nbsp;'); }
.iconsminds-scroller { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f3;&nbsp;'); }
.iconsminds-scroller-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f4;&nbsp;'); }
.iconsminds-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f5;&nbsp;'); }
.iconsminds-smoking-pipe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); }
.iconsminds-solar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f7;&nbsp;'); }
.iconsminds-statistic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f8;&nbsp;'); }
.iconsminds-suitcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f9;&nbsp;'); }
.iconsminds-support { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fa;&nbsp;'); }
.iconsminds-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fb;&nbsp;'); }
.iconsminds-tripod-with-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fc;&nbsp;'); }
.iconsminds-upgrade { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fd;&nbsp;'); }
.iconsminds-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fe;&nbsp;'); }
.iconsminds-windmill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ff;&nbsp;'); }
.iconsminds-witch-hat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe900;&nbsp;'); }
.iconsminds-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe901;&nbsp;'); }
.iconsminds-add-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe902;&nbsp;'); }
.iconsminds-affiliate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe903;&nbsp;'); }
.iconsminds-anchor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe904;&nbsp;'); }
.iconsminds-balloon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe905;&nbsp;'); }
.iconsminds-beard-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe906;&nbsp;'); }
.iconsminds-bicycle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe907;&nbsp;'); }
.iconsminds-big-data { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe908;&nbsp;'); }
.iconsminds-eifel-tower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe909;&nbsp;'); }
.iconsminds-el-castillo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90a;&nbsp;'); }
.iconsminds-embassy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90b;&nbsp;'); }
.iconsminds-empire-state-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90c;&nbsp;'); }
.iconsminds-factory-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90d;&nbsp;'); }
.iconsminds-fire-staion { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90e;&nbsp;'); }
.iconsminds-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90f;&nbsp;'); }
.iconsminds-home-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe910;&nbsp;'); }
.iconsminds-home-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe911;&nbsp;'); }
.iconsminds-hotel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe912;&nbsp;'); }
.iconsminds-japanese-gate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe913;&nbsp;'); }
.iconsminds-leaning-tower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe914;&nbsp;'); }
.iconsminds-lighthouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe915;&nbsp;'); }
.iconsminds-museum { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe916;&nbsp;'); }
.iconsminds-office { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe917;&nbsp;'); }
.iconsminds-opera-house { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe918;&nbsp;'); }
.iconsminds-piramids { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91b;&nbsp;'); }
.iconsminds-police-station { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91c;&nbsp;'); }
.iconsminds-post-office { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91d;&nbsp;'); }
.iconsminds-prater { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91e;&nbsp;'); }
.iconsminds-roof { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91f;&nbsp;'); }
.iconsminds-space-needle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe920;&nbsp;'); }
.iconsminds-the-white-house { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe922;&nbsp;'); }
.iconsminds-tower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe923;&nbsp;'); }
.iconsminds-bank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe924;&nbsp;'); }
.iconsminds-berlin-tower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe925;&nbsp;'); }
.iconsminds-big-bang { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe926;&nbsp;'); }
.iconsminds-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe927;&nbsp;'); }
.iconsminds-castle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe928;&nbsp;'); }
.iconsminds-chinese-temple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe929;&nbsp;'); }
.iconsminds-chrysler-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92a;&nbsp;'); }
.iconsminds-city-hall { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92b;&nbsp;'); }
.iconsminds-clothing-store { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92c;&nbsp;'); }
.iconsminds-colosseum { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92d;&nbsp;'); }
.iconsminds-column { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92e;&nbsp;'); }
.iconsminds-coins { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92f;&nbsp;'); }
.iconsminds-coins-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe930;&nbsp;'); }
.iconsminds-diamond { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe933;&nbsp;'); }
.iconsminds-dollar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe934;&nbsp;'); }
.iconsminds-dollar-sign-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe935;&nbsp;'); }
.iconsminds-euro { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe936;&nbsp;'); }
.iconsminds-euro-sign-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe937;&nbsp;'); }
.iconsminds-financial { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe938;&nbsp;'); }
.iconsminds-handshake { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe939;&nbsp;'); }
.iconsminds-pie-chart-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93c;&nbsp;'); }
.iconsminds-pie-chart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93d;&nbsp;'); }
.iconsminds-pound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93e;&nbsp;'); }
.iconsminds-pound-sign-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93f;&nbsp;'); }
.iconsminds-safe-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe940;&nbsp;'); }
.iconsminds-wallet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe941;&nbsp;'); }
.iconsminds-bar-chart-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe942;&nbsp;'); }
.iconsminds-jeans { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe946;&nbsp;'); }
.iconsminds-sunglasses-w-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe947;&nbsp;'); }
.iconsminds-tie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe948;&nbsp;'); }
.iconsminds-t-shirt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe949;&nbsp;'); }
.iconsminds-baby-clothes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94a;&nbsp;'); }
.iconsminds-belt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94b;&nbsp;'); }
.iconsminds-bikini { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94c;&nbsp;'); }
.iconsminds-blouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94d;&nbsp;'); }
.iconsminds-boot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94e;&nbsp;'); }
.iconsminds-bow-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94f;&nbsp;'); }
.iconsminds-bra { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe950;&nbsp;'); }
.iconsminds-cap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe951;&nbsp;'); }
.iconsminds-coat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe952;&nbsp;'); }
.iconsminds-dress { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe953;&nbsp;'); }
.iconsminds-glasses-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe954;&nbsp;'); }
.iconsminds-gloves { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe955;&nbsp;'); }
.iconsminds-hanger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe956;&nbsp;'); }
.iconsminds-heels-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe957;&nbsp;'); }
.iconsminds-jacket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe958;&nbsp;'); }
.iconsminds-walkie-talkie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe959;&nbsp;'); }
.iconsminds-wifi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95a;&nbsp;'); }
.iconsminds-address-book-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95b;&nbsp;'); }
.iconsminds-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95c;&nbsp;'); }
.iconsminds-bird-delivering-letter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95d;&nbsp;'); }
.iconsminds-communication-tower-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95e;&nbsp;'); }
.iconsminds-fax { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95f;&nbsp;'); }
.iconsminds-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe960;&nbsp;'); }
.iconsminds-newspaper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe961;&nbsp;'); }
.iconsminds-old-telephone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe962;&nbsp;'); }
.iconsminds-router { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe963;&nbsp;'); }
.iconsminds-telephone-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe964;&nbsp;'); }
.iconsminds-smartphone-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe965;&nbsp;'); }
.iconsminds-tablet-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe966;&nbsp;'); }
.iconsminds-computer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe967;&nbsp;'); }
.iconsminds-laptop-+-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe968;&nbsp;'); }
.iconsminds-laptop-+-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe969;&nbsp;'); }
.iconsminds-laptop-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96a;&nbsp;'); }
.iconsminds-monitor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96b;&nbsp;'); }
.iconsminds-monitor-+-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96c;&nbsp;'); }
.iconsminds-monitor-+-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96d;&nbsp;'); }
.iconsminds-monitor-+-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96e;&nbsp;'); }
.iconsminds-monitor-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96f;&nbsp;'); }
.iconsminds-monitor-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe970;&nbsp;'); }
.iconsminds-orientation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe971;&nbsp;'); }
.iconsminds-phone-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe972;&nbsp;'); }
.iconsminds-smartphone-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe973;&nbsp;'); }
.iconsminds-quill-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe974;&nbsp;'); }
.iconsminds-student-hat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe975;&nbsp;'); }
.iconsminds-blackboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe976;&nbsp;'); }
.iconsminds-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe977;&nbsp;'); }
.iconsminds-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe978;&nbsp;'); }
.iconsminds-books { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe979;&nbsp;'); }
.iconsminds-compass-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97a;&nbsp;'); }
.iconsminds-diploma-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97b;&nbsp;'); }
.iconsminds-eraser-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97c;&nbsp;'); }
.iconsminds-formula { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97d;&nbsp;'); }
.iconsminds-notepad { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97e;&nbsp;'); }
.iconsminds-open-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97f;&nbsp;'); }
.iconsminds-pen-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe980;&nbsp;'); }
.iconsminds-pi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe981;&nbsp;'); }
.iconsminds-pipette { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe982;&nbsp;'); }
.iconsminds-mail-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe983;&nbsp;'); }
.iconsminds-mailbox-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe984;&nbsp;'); }
.iconsminds-mailbox-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe985;&nbsp;'); }
.iconsminds-mail-delete { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe986;&nbsp;'); }
.iconsminds-mail-favorite { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe987;&nbsp;'); }
.iconsminds-mail-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe988;&nbsp;'); }
.iconsminds-mail-gallery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe989;&nbsp;'); }
.iconsminds-mail-inbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98a;&nbsp;'); }
.iconsminds-mail-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98b;&nbsp;'); }
.iconsminds-mail-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98c;&nbsp;'); }
.iconsminds-mail-love { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98d;&nbsp;'); }
.iconsminds-mail-money { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98e;&nbsp;'); }
.iconsminds-mail-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98f;&nbsp;'); }
.iconsminds-mail-outbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe990;&nbsp;'); }
.iconsminds-mail-password { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe991;&nbsp;'); }
.iconsminds-mail-photo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe992;&nbsp;'); }
.iconsminds-mail-read { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe993;&nbsp;'); }
.iconsminds-mail-remove-x { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe994;&nbsp;'); }
.iconsminds-mail-reply-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe995;&nbsp;'); }
.iconsminds-mail-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe996;&nbsp;'); }
.iconsminds-mail-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe997;&nbsp;'); }
.iconsminds-mail-send { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe998;&nbsp;'); }
.iconsminds-mail-settings { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe999;&nbsp;'); }
.iconsminds-mail-unread { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99a;&nbsp;'); }
.iconsminds-mail-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99b;&nbsp;'); }
.iconsminds-mail-with-at-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99c;&nbsp;'); }
.iconsminds-mail-with-cursors { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99d;&nbsp;'); }
.iconsminds-new-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99e;&nbsp;'); }
.iconsminds-post-mail-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99f;&nbsp;'); }
.iconsminds-post-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a0;&nbsp;'); }
.iconsminds-spam-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a1;&nbsp;'); }
.iconsminds-stamp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a2;&nbsp;'); }
.iconsminds-stamp-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a3;&nbsp;'); }
.iconsminds-voicemail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a4;&nbsp;'); }
.iconsminds-at-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a5;&nbsp;'); }
.iconsminds-box-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a6;&nbsp;'); }
.iconsminds-empty-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a7;&nbsp;'); }
.iconsminds-envelope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a8;&nbsp;'); }
.iconsminds-envelope-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a9;&nbsp;'); }
.iconsminds-inbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9aa;&nbsp;'); }
.iconsminds-inbox-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ab;&nbsp;'); }
.iconsminds-inbox-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ac;&nbsp;'); }
.iconsminds-inbox-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ad;&nbsp;'); }
.iconsminds-inbox-into { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ae;&nbsp;'); }
.iconsminds-inbox-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9af;&nbsp;'); }
.iconsminds-inbox-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b0;&nbsp;'); }
.iconsminds-letter-close { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b1;&nbsp;'); }
.iconsminds-letter-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b2;&nbsp;'); }
.iconsminds-letter-sent { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b3;&nbsp;'); }
.iconsminds-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b4;&nbsp;'); }
.iconsminds-mail-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b5;&nbsp;'); }
.iconsminds-mail-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b6;&nbsp;'); }
.iconsminds-mail-add-+ { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b7;&nbsp;'); }
.iconsminds-mail-attachement { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b8;&nbsp;'); }
.iconsminds-ice-cream { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b9;&nbsp;'); }
.iconsminds-lollipop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ba;&nbsp;'); }
.iconsminds-open-banana { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bb;&nbsp;'); }
.iconsminds-pepper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bc;&nbsp;'); }
.iconsminds-tee-mug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bd;&nbsp;'); }
.iconsminds-tomato { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9be;&nbsp;'); }
.iconsminds-apple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bf;&nbsp;'); }
.iconsminds-apple-bite { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c0;&nbsp;'); }
.iconsminds-beer-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c1;&nbsp;'); }
.iconsminds-birthday-cake { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c2;&nbsp;'); }
.iconsminds-bread { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c3;&nbsp;'); }
.iconsminds-cake { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c4;&nbsp;'); }
.iconsminds-can { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c5;&nbsp;'); }
.iconsminds-can-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c6;&nbsp;'); }
.iconsminds-cheese { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c7;&nbsp;'); }
.iconsminds-chef-hat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c8;&nbsp;'); }
.iconsminds-chopsticks { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c9;&nbsp;'); }
.iconsminds-cocktail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ca;&nbsp;'); }
.iconsminds-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cb;&nbsp;'); }
.iconsminds-coffee-bean { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cc;&nbsp;'); }
.iconsminds-coffee-to-go { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cd;&nbsp;'); }
.iconsminds-cookies { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ce;&nbsp;'); }
.iconsminds-croissant { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cf;&nbsp;'); }
.iconsminds-cupcake { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d0;&nbsp;'); }
.iconsminds-doughnut { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d1;&nbsp;'); }
.iconsminds-fish { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d2;&nbsp;'); }
.iconsminds-glass-water { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d3;&nbsp;'); }
.iconsminds-hamburger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d4;&nbsp;'); }
.iconsminds-hot-dog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d5;&nbsp;'); }
.iconsminds-webcam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d7;&nbsp;'); }
.iconsminds-battery-0% { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d8;&nbsp;'); }
.iconsminds-battery-100% { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d9;&nbsp;'); }
.iconsminds-battery-charge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9da;&nbsp;'); }
.iconsminds-charger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9db;&nbsp;'); }
.iconsminds-cpu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9dc;&nbsp;'); }
.iconsminds-disk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9dd;&nbsp;'); }
.iconsminds-dvd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9de;&nbsp;'); }
.iconsminds-fan { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9df;&nbsp;'); }
.iconsminds-gamepad-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e0;&nbsp;'); }
.iconsminds-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e1;&nbsp;'); }
.iconsminds-keyboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e2;&nbsp;'); }
.iconsminds-mouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e3;&nbsp;'); }
.iconsminds-mouse-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e4;&nbsp;'); }
.iconsminds-plug-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e5;&nbsp;'); }
.iconsminds-power { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e6;&nbsp;'); }
.iconsminds-power-cable { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e7;&nbsp;'); }
.iconsminds-remote-controll-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e8;&nbsp;'); }
.iconsminds-server-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e9;&nbsp;'); }
.iconsminds-speaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ea;&nbsp;'); }
.iconsminds-start-ways { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9eb;&nbsp;'); }
.iconsminds-synchronize { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ec;&nbsp;'); }
.iconsminds-synchronize-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ed;&nbsp;'); }
.iconsminds-undo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ee;&nbsp;'); }
.iconsminds-up-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ef;&nbsp;'); }
.iconsminds-upload-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f0;&nbsp;'); }
.iconsminds-upward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f1;&nbsp;'); }
.iconsminds-yes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f2;&nbsp;'); }
.iconsminds-add { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f3;&nbsp;'); }
.iconsminds-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f4;&nbsp;'); }
.iconsminds-broken-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f5;&nbsp;'); }
.iconsminds-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f6;&nbsp;'); }
.iconsminds-close { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f8;&nbsp;'); }
.iconsminds-cursor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f9;&nbsp;'); }
.iconsminds-cursor-click-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9fa;&nbsp;'); }
.iconsminds-cursor-click { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9fb;&nbsp;'); }
.iconsminds-cursor-move-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9fc;&nbsp;'); }
.iconsminds-cursor-select { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9fd;&nbsp;'); }
.iconsminds-down-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9fe;&nbsp;'); }
.iconsminds-download-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ff;&nbsp;'); }
.iconsminds-downward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea00;&nbsp;'); }
.iconsminds-endways { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea01;&nbsp;'); }
.iconsminds-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea02;&nbsp;'); }
.iconsminds-left-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea03;&nbsp;'); }
.iconsminds-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea04;&nbsp;'); }
.iconsminds-next { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea05;&nbsp;'); }
.iconsminds-orientation-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea06;&nbsp;'); }
.iconsminds-pointer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea07;&nbsp;'); }
.iconsminds-previous { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea08;&nbsp;'); }
.iconsminds-redo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea09;&nbsp;'); }
.iconsminds-refresh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea0a;&nbsp;'); }
.iconsminds-reload-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea0b;&nbsp;'); }
.iconsminds-remove { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea0c;&nbsp;'); }
.iconsminds-repeat-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea0d;&nbsp;'); }
.iconsminds-reset { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea0e;&nbsp;'); }
.iconsminds-rewind { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea0f;&nbsp;'); }
.iconsminds-right-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea10;&nbsp;'); }
.iconsminds-rotation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea11;&nbsp;'); }
.iconsminds-rotation-390 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea12;&nbsp;'); }
.iconsminds-spot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea13;&nbsp;'); }
.iconsminds-satelite-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea15;&nbsp;'); }
.iconsminds-compass-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea16;&nbsp;'); }
.iconsminds-direction-east { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea17;&nbsp;'); }
.iconsminds-edit-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea18;&nbsp;'); }
.iconsminds-geo2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea19;&nbsp;'); }
.iconsminds-geo2-- { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea1a;&nbsp;'); }
.iconsminds-geo2-+ { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea1b;&nbsp;'); }
.iconsminds-globe-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea1c;&nbsp;'); }
.iconsminds-location-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea1d;&nbsp;'); }
.iconsminds-map2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea1e;&nbsp;'); }
.iconsminds-map-marker-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea1f;&nbsp;'); }
.iconsminds-map-marker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea20;&nbsp;'); }
.iconsminds-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea21;&nbsp;'); }
.iconsminds-stop-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea22;&nbsp;'); }
.iconsminds-back-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea23;&nbsp;'); }
.iconsminds-back-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea24;&nbsp;'); }
.iconsminds-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea25;&nbsp;'); }
.iconsminds-eject-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea26;&nbsp;'); }
.iconsminds-end-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea27;&nbsp;'); }
.iconsminds-end-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea28;&nbsp;'); }
.iconsminds-next-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea29;&nbsp;'); }
.iconsminds-next-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea2a;&nbsp;'); }
.iconsminds-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea2b;&nbsp;'); }
.iconsminds-pause-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea2c;&nbsp;'); }
.iconsminds-power-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea2d;&nbsp;'); }
.iconsminds-power-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea2e;&nbsp;'); }
.iconsminds-record { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea2f;&nbsp;'); }
.iconsminds-record-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea30;&nbsp;'); }
.iconsminds-repeat-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea31;&nbsp;'); }
.iconsminds-repeat-6 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea32;&nbsp;'); }
.iconsminds-shuffle-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea33;&nbsp;'); }
.iconsminds-shuffle-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea34;&nbsp;'); }
.iconsminds-start-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea35;&nbsp;'); }
.iconsminds-start-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea36;&nbsp;'); }
.iconsminds-volume-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea37;&nbsp;'); }
.iconsminds-volume-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea38;&nbsp;'); }
.iconsminds-back-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea39;&nbsp;'); }
.iconsminds-cd-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea3a;&nbsp;'); }
.iconsminds-clef { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea3b;&nbsp;'); }
.iconsminds-earphones-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea3c;&nbsp;'); }
.iconsminds-equalizer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea3e;&nbsp;'); }
.iconsminds-first { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea3f;&nbsp;'); }
.iconsminds-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea41;&nbsp;'); }
.iconsminds-last { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea42;&nbsp;'); }
.iconsminds-loudspeaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea43;&nbsp;'); }
.iconsminds-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea44;&nbsp;'); }
.iconsminds-microphone-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea45;&nbsp;'); }
.iconsminds-next-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea46;&nbsp;'); }
.iconsminds-old-radio { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea47;&nbsp;'); }
.iconsminds-play-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea48;&nbsp;'); }
.iconsminds-radio { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea49;&nbsp;'); }
.iconsminds-record-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea4a;&nbsp;'); }
.iconsminds-record-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea4b;&nbsp;'); }
.iconsminds-sound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea4c;&nbsp;'); }
.iconsminds-speaker-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea4d;&nbsp;'); }
.iconsminds-stop-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea4e;&nbsp;'); }
.iconsminds-trumpet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea4f;&nbsp;'); }
.iconsminds-voice { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea50;&nbsp;'); }
.iconsminds-tree-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea51;&nbsp;'); }
.iconsminds-eci-icon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea52;&nbsp;'); }
.iconsminds-environmental { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea53;&nbsp;'); }
.iconsminds-environmental-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea54;&nbsp;'); }
.iconsminds-fire-flame-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea55;&nbsp;'); }
.iconsminds-green-energy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea58;&nbsp;'); }
.iconsminds-green-house { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea59;&nbsp;'); }
.iconsminds-leafs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea5b;&nbsp;'); }
.iconsminds-light-bulb-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea5c;&nbsp;'); }
.iconsminds-palm-tree { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea5d;&nbsp;'); }
.iconsminds-plant { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea5e;&nbsp;'); }
.iconsminds-recycling-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea5f;&nbsp;'); }
.iconsminds-seed { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea60;&nbsp;'); }
.iconsminds-trash-with-men { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea61;&nbsp;'); }
.iconsminds-id-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea62;&nbsp;'); }
.iconsminds-king-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea63;&nbsp;'); }
.iconsminds-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea64;&nbsp;'); }
.iconsminds-male+female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea65;&nbsp;'); }
.iconsminds-male-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea66;&nbsp;'); }
.iconsminds-man-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea67;&nbsp;'); }
.iconsminds-mens { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea68;&nbsp;'); }
.iconsminds-network { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea69;&nbsp;'); }
.iconsminds-student-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea6a;&nbsp;'); }
.iconsminds-student-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea6b;&nbsp;'); }
.iconsminds-student-male+female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea6c;&nbsp;'); }
.iconsminds-students { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea6d;&nbsp;'); }
.iconsminds-woman+man { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea6e;&nbsp;'); }
.iconsminds-add-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea6f;&nbsp;'); }
.iconsminds-administrator { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea70;&nbsp;'); }
.iconsminds-assistant { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea71;&nbsp;'); }
.iconsminds-business-man { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea72;&nbsp;'); }
.iconsminds-business-man+woman { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea73;&nbsp;'); }
.iconsminds-business-mens { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea74;&nbsp;'); }
.iconsminds-business-woman { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea75;&nbsp;'); }
.iconsminds-conference { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea76;&nbsp;'); }
.iconsminds-doctor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea77;&nbsp;'); }
.iconsminds-engineering { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea78;&nbsp;'); }
.iconsminds-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea79;&nbsp;'); }
.iconsminds-female-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea7a;&nbsp;'); }
.iconsminds-temperature { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea7b;&nbsp;'); }
.iconsminds-test-tube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea7c;&nbsp;'); }
.iconsminds-ambulance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea7d;&nbsp;'); }
.iconsminds-atom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea7e;&nbsp;'); }
.iconsminds-band-aid { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea7f;&nbsp;'); }
.iconsminds-bio-hazard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea80;&nbsp;'); }
.iconsminds-biotech { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea81;&nbsp;'); }
.iconsminds-brain { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea82;&nbsp;'); }
.iconsminds-chemical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea83;&nbsp;'); }
.iconsminds-clinic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea84;&nbsp;'); }
.iconsminds-danger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea85;&nbsp;'); }
.iconsminds-dna { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea86;&nbsp;'); }
.iconsminds-dna-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea87;&nbsp;'); }
.iconsminds-first-aid { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea88;&nbsp;'); }
.iconsminds-flask { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea89;&nbsp;'); }
.iconsminds-medical-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea8a;&nbsp;'); }
.iconsminds-medicine-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea8b;&nbsp;'); }
.iconsminds-microscope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea8c;&nbsp;'); }
.iconsminds-physics { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea8d;&nbsp;'); }
.iconsminds-plasmid { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea8e;&nbsp;'); }
.iconsminds-plaster { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea8f;&nbsp;'); }
.iconsminds-pulse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea90;&nbsp;'); }
.iconsminds-radioactive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea91;&nbsp;'); }
.iconsminds-stethoscope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea92;&nbsp;'); }
.iconsminds-security-settings { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea93;&nbsp;'); }
.iconsminds-securiy-remove { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea94;&nbsp;'); }
.iconsminds-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea95;&nbsp;'); }
.iconsminds-ssl { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea96;&nbsp;'); }
.iconsminds-type-pass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea97;&nbsp;'); }
.iconsminds-unlock-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea98;&nbsp;'); }
.iconsminds-finger-print { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea99;&nbsp;'); }
.iconsminds-firewall { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea9a;&nbsp;'); }
.iconsminds-key-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea9b;&nbsp;'); }
.iconsminds-laptop-secure { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea9c;&nbsp;'); }
.iconsminds-lock-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea9d;&nbsp;'); }
.iconsminds-password { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea9e;&nbsp;'); }
.iconsminds-password-field { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea9f;&nbsp;'); }
.iconsminds-police { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa0;&nbsp;'); }
.iconsminds-security-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa2;&nbsp;'); }
.iconsminds-security-bug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa3;&nbsp;'); }
.iconsminds-security-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa4;&nbsp;'); }
.iconsminds-security-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa5;&nbsp;'); }
.iconsminds-testimonal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa6;&nbsp;'); }
.iconsminds-broke-link-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa7;&nbsp;'); }
.iconsminds-coding { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa8;&nbsp;'); }
.iconsminds-consulting { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa9;&nbsp;'); }
.iconsminds-copyright { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaaa;&nbsp;'); }
.iconsminds-idea-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaab;&nbsp;'); }
.iconsminds-link-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaac;&nbsp;'); }
.iconsminds-management { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaad;&nbsp;'); }
.iconsminds-monitor-analytics { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaae;&nbsp;'); }
.iconsminds-monitoring { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaaf;&nbsp;'); }
.iconsminds-optimization { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab0;&nbsp;'); }
.iconsminds-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab1;&nbsp;'); }
.iconsminds-target { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab2;&nbsp;'); }
.iconsminds-target-market { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab3;&nbsp;'); }
.iconsminds-shopping-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab5;&nbsp;'); }
.iconsminds-shopping-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab6;&nbsp;'); }
.iconsminds-shopping-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab7;&nbsp;'); }
.iconsminds-tag-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab8;&nbsp;'); }
.iconsminds-add-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab9;&nbsp;'); }
.iconsminds-add-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaba;&nbsp;'); }
.iconsminds-add-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeabb;&nbsp;'); }
.iconsminds-bag-items { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeabc;&nbsp;'); }
.iconsminds-bag-quantity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeabd;&nbsp;'); }
.iconsminds-basket-coins { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeabf;&nbsp;'); }
.iconsminds-basket-items { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac0;&nbsp;'); }
.iconsminds-basket-quantity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac1;&nbsp;'); }
.iconsminds-car-items { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac2;&nbsp;'); }
.iconsminds-cart-quantity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac3;&nbsp;'); }
.iconsminds-cash-register-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac4;&nbsp;'); }
.iconsminds-checkout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac5;&nbsp;'); }
.iconsminds-checkout-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac6;&nbsp;'); }
.iconsminds-checkout-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac7;&nbsp;'); }
.iconsminds-home-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac8;&nbsp;'); }
.iconsminds-qr-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac9;&nbsp;'); }
.iconsminds-receipt-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaca;&nbsp;'); }
.iconsminds-remove-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeacb;&nbsp;'); }
.iconsminds-remove-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeacc;&nbsp;'); }
.iconsminds-remove-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeacd;&nbsp;'); }
.iconsminds-shop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeace;&nbsp;'); }
.iconsminds-shop-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeacf;&nbsp;'); }
.iconsminds-shop-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead0;&nbsp;'); }
.iconsminds-ying-yang { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead1;&nbsp;'); }
.iconsminds-bisexual { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead2;&nbsp;'); }
.iconsminds-cancer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead3;&nbsp;'); }
.iconsminds-couple-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead4;&nbsp;'); }
.iconsminds-family-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead5;&nbsp;'); }
.iconsminds-female-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead6;&nbsp;'); }
.iconsminds-gey { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead7;&nbsp;'); }
.iconsminds-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead8;&nbsp;'); }
.iconsminds-homosexual { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead9;&nbsp;'); }
.iconsminds-inifity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeada;&nbsp;'); }
.iconsminds-lesbian { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeadb;&nbsp;'); }
.iconsminds-lesbians { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeadc;&nbsp;'); }
.iconsminds-love { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeadd;&nbsp;'); }
.iconsminds-male-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeade;&nbsp;'); }
.iconsminds-men { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeadf;&nbsp;'); }
.iconsminds-no-smoking { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae0;&nbsp;'); }
.iconsminds-paw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae1;&nbsp;'); }
.iconsminds-quotes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae2;&nbsp;'); }
.iconsminds-redirect { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae3;&nbsp;'); }
.iconsminds-ribbon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae4;&nbsp;'); }
.iconsminds-venn-diagram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae5;&nbsp;'); }
.iconsminds-wheelchair { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae6;&nbsp;'); }
.iconsminds-women { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae7;&nbsp;'); }
.iconsminds-instagram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae8;&nbsp;'); }
.iconsminds-last-fm { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae9;&nbsp;'); }
.iconsminds-like { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaea;&nbsp;'); }
.iconsminds-linkedin-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaeb;&nbsp;'); }
.iconsminds-livejournal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaec;&nbsp;'); }
.iconsminds-newsvine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaed;&nbsp;'); }
.iconsminds-picasa { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaee;&nbsp;'); }
.iconsminds-pinterest { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaef;&nbsp;'); }
.iconsminds-plaxo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf0;&nbsp;'); }
.iconsminds-plurk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf1;&nbsp;'); }
.iconsminds-posterous { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf2;&nbsp;'); }
.iconsminds-qik { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf3;&nbsp;'); }
.iconsminds-reddit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf4;&nbsp;'); }
.iconsminds-reverbnation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf5;&nbsp;'); }
.iconsminds-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf6;&nbsp;'); }
.iconsminds-sharethis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf7;&nbsp;'); }
.iconsminds-skype { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf8;&nbsp;'); }
.iconsminds-soundcloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf9;&nbsp;'); }
.iconsminds-stumbleupon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeafa;&nbsp;'); }
.iconsminds-technorati { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeafb;&nbsp;'); }
.iconsminds-tumblr { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeafc;&nbsp;'); }
.iconsminds-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeafd;&nbsp;'); }
.iconsminds-unlike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeafe;&nbsp;'); }
.iconsminds-ustream { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaff;&nbsp;'); }
.iconsminds-viddler { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb00;&nbsp;'); }
.iconsminds-vimeo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb01;&nbsp;'); }
.iconsminds-wordpress { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb02;&nbsp;'); }
.iconsminds-xanga { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb03;&nbsp;'); }
.iconsminds-yahoo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb04;&nbsp;'); }
.iconsminds-yelp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb05;&nbsp;'); }
.iconsminds-youtube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb06;&nbsp;'); }
.iconsminds-ask { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb07;&nbsp;'); }
.iconsminds-behance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb08;&nbsp;'); }
.iconsminds-bing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb09;&nbsp;'); }
.iconsminds-blinklist { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb0a;&nbsp;'); }
.iconsminds-blogger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb0b;&nbsp;'); }
.iconsminds-delicious { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb0c;&nbsp;'); }
.iconsminds-deviantart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb0d;&nbsp;'); }
.iconsminds-digg { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb0e;&nbsp;'); }
.iconsminds-diigo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb0f;&nbsp;'); }
.iconsminds-dribble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb11;&nbsp;'); }
.iconsminds-email { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb12;&nbsp;'); }
.iconsminds-evernote { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb13;&nbsp;'); }
.iconsminds-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb14;&nbsp;'); }
.iconsminds-feedburner { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb15;&nbsp;'); }
.iconsminds-flickr { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb16;&nbsp;'); }
.iconsminds-formspring { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb17;&nbsp;'); }
.iconsminds-forsquare { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb18;&nbsp;'); }
.iconsminds-friendster { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb19;&nbsp;'); }
.iconsminds-google { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb1a;&nbsp;'); }
.iconsminds-gowalla { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb1b;&nbsp;'); }
.iconsminds-icq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb1c;&nbsp;'); }
.iconsminds-imdb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb1d;&nbsp;'); }
.iconsminds-speach-bubble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb1e;&nbsp;'); }
.iconsminds-speach-bubbles { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb1f;&nbsp;'); }
.iconsminds-speach-bubble-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb20;&nbsp;'); }
.iconsminds-speach-bubble-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb21;&nbsp;'); }
.iconsminds-speach-bubble-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb22;&nbsp;'); }
.iconsminds-speach-bubble-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb23;&nbsp;'); }
.iconsminds-speach-bubble-6 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb24;&nbsp;'); }
.iconsminds-speach-bubble-7 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb25;&nbsp;'); }
.iconsminds-speach-bubble-8 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb26;&nbsp;'); }
.iconsminds-speach-bubble-9 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb27;&nbsp;'); }
.iconsminds-speach-bubble-10 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb28;&nbsp;'); }
.iconsminds-speach-bubble-11 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb29;&nbsp;'); }
.iconsminds-speach-bubble-12 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb2a;&nbsp;'); }
.iconsminds-speach-bubble-13 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb2b;&nbsp;'); }
.iconsminds-speach-bubble-asking { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb2c;&nbsp;'); }
.iconsminds-speach-bubble-comic-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb2d;&nbsp;'); }
.iconsminds-speach-bubble-comic-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb2e;&nbsp;'); }
.iconsminds-speach-bubble-comic-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb2f;&nbsp;'); }
.iconsminds-speach-bubble-comic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb30;&nbsp;'); }
.iconsminds-speach-bubble-dialog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb31;&nbsp;'); }
.iconsminds-trekking { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb32;&nbsp;'); }
.iconsminds-trophy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb33;&nbsp;'); }
.iconsminds-weight-lift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb35;&nbsp;'); }
.iconsminds-aerobics { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb36;&nbsp;'); }
.iconsminds-archery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb37;&nbsp;'); }
.iconsminds-ballet-shoes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb38;&nbsp;'); }
.iconsminds-baseball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb39;&nbsp;'); }
.iconsminds-basket-ball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb3a;&nbsp;'); }
.iconsminds-bowling { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb3b;&nbsp;'); }
.iconsminds-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb3c;&nbsp;'); }
.iconsminds-chess { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb3d;&nbsp;'); }
.iconsminds-cricket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb3e;&nbsp;'); }
.iconsminds-dumbbell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb3f;&nbsp;'); }
.iconsminds-football { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb40;&nbsp;'); }
.iconsminds-football-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb41;&nbsp;'); }
.iconsminds-footprint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb42;&nbsp;'); }
.iconsminds-footprint-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb43;&nbsp;'); }
.iconsminds-golf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb44;&nbsp;'); }
.iconsminds-gymnastics { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb45;&nbsp;'); }
.iconsminds-hokey { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb46;&nbsp;'); }
.iconsminds-jump-rope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb47;&nbsp;'); }
.iconsminds-life-jacket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb48;&nbsp;'); }
.iconsminds-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb49;&nbsp;'); }
.iconsminds-pilates-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb4a;&nbsp;'); }
.iconsminds-rafting { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb4b;&nbsp;'); }
.iconsminds-running-shoes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb4c;&nbsp;'); }
.iconsminds-skydiving { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb4d;&nbsp;'); }
.iconsminds-snorkel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb4e;&nbsp;'); }
.iconsminds-soccer-ball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb4f;&nbsp;'); }
.iconsminds-swimming { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb50;&nbsp;'); }
.iconsminds-tennis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb51;&nbsp;'); }
.iconsminds-tennis-ball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb52;&nbsp;'); }
.iconsminds-over-time-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb53;&nbsp;'); }
.iconsminds-sand-watch-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb54;&nbsp;'); }
.iconsminds-stopwatch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb55;&nbsp;'); }
.iconsminds-time-backup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb56;&nbsp;'); }
.iconsminds-timer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb57;&nbsp;'); }
.iconsminds-watch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb58;&nbsp;'); }
.iconsminds-24-hour { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb59;&nbsp;'); }
.iconsminds-alarm-clock-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb5a;&nbsp;'); }
.iconsminds-alarm-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb5b;&nbsp;'); }
.iconsminds-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb5c;&nbsp;'); }
.iconsminds-clock-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb5d;&nbsp;'); }
.iconsminds-clock-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb5e;&nbsp;'); }
.iconsminds-clock-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb5f;&nbsp;'); }
.iconsminds-old-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb60;&nbsp;'); }
.iconsminds-scooter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb61;&nbsp;'); }
.iconsminds-ship { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb62;&nbsp;'); }
.iconsminds-skateboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb63;&nbsp;'); }
.iconsminds-taxi-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb64;&nbsp;'); }
.iconsminds-traffic-light { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb66;&nbsp;'); }
.iconsminds-train { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb67;&nbsp;'); }
.iconsminds-yacht { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb68;&nbsp;'); }
.iconsminds-bicycle-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb6a;&nbsp;'); }
.iconsminds-bus-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb6b;&nbsp;'); }
.iconsminds-car { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb6c;&nbsp;'); }
.iconsminds-gaugage { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb6e;&nbsp;'); }
.iconsminds-gaugage-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb6f;&nbsp;'); }
.iconsminds-helicopter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb70;&nbsp;'); }
.iconsminds-jeep { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb71;&nbsp;'); }
.iconsminds-jet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb72;&nbsp;'); }
.iconsminds-motorcycle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb73;&nbsp;'); }
.iconsminds-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb74;&nbsp;'); }
.iconsminds-road-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb75;&nbsp;'); }
.iconsminds-sailing-ship { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb76;&nbsp;'); }
.iconsminds-video-tripod { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb77;&nbsp;'); }
.iconsminds-3d-eyeglasses { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb78;&nbsp;'); }
.iconsminds-cinema { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb79;&nbsp;'); }
.iconsminds-director { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb7a;&nbsp;'); }
.iconsminds-film { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb7b;&nbsp;'); }
.iconsminds-film-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb7c;&nbsp;'); }
.iconsminds-old-tv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb7d;&nbsp;'); }
.iconsminds-tv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb7e;&nbsp;'); }
.iconsminds-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb7f;&nbsp;'); }
.iconsminds-video-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb80;&nbsp;'); }
.iconsminds-video-6 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb81;&nbsp;'); }
.iconsminds-video-len { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb82;&nbsp;'); }
.iconsminds-sunrise { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb83;&nbsp;'); }
.iconsminds-sunset { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb84;&nbsp;'); }
.iconsminds-temperature-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb85;&nbsp;'); }
.iconsminds-thunder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb86;&nbsp;'); }
.iconsminds-umbrella-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb87;&nbsp;'); }
.iconsminds-wave { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb88;&nbsp;'); }
.iconsminds-wind-turbine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb89;&nbsp;'); }
.iconsminds-windy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb8a;&nbsp;'); }
.iconsminds-cloud-hail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb8b;&nbsp;'); }
.iconsminds-cloud-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb8c;&nbsp;'); }
.iconsminds-cloud-rain { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb8d;&nbsp;'); }
.iconsminds-cloud-snow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb8e;&nbsp;'); }
.iconsminds-cloud-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb8f;&nbsp;'); }
.iconsminds-cloud-weather { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb90;&nbsp;'); }
.iconsminds-drop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb91;&nbsp;'); }
.iconsminds-dry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb92;&nbsp;'); }
.iconsminds-fog-day { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb93;&nbsp;'); }
.iconsminds-fog-night { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb94;&nbsp;'); }
.iconsminds-half-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb95;&nbsp;'); }
.iconsminds-rain-drop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb96;&nbsp;'); }
.iconsminds-snow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb97;&nbsp;'); }
.iconsminds-snowflake-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb98;&nbsp;'); }
.iconsminds-snow-storm { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb99;&nbsp;'); }
.iconsminds-spring { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb9a;&nbsp;'); }
.iconsminds-storm { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb9b;&nbsp;'); }
.iconsminds-summer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb9c;&nbsp;'); }
.iconsminds-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb9d;&nbsp;'); }
.iconsminds-sun-cloudy-rain { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb9e;&nbsp;'); }
.iconsminds-electric-guitar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb9f;&nbsp;'); }
.iconsminds-guitar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba0;&nbsp;'); }
.iconsminds-air-balloon-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba1;&nbsp;'); }
.iconsminds-tractor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba2;&nbsp;'); }
.iconsminds-calendar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba3;&nbsp;'); }
.iconsminds-calendar-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba4;&nbsp;'); }
.iconsminds-trophy-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba5;&nbsp;'); }
.iconsminds-life-safer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba6;&nbsp;'); }
.iconsminds-calculator { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba7;&nbsp;'); }
.iconsminds-taj-mahal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba8;&nbsp;'); }
.iconsminds-scale { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba9;&nbsp;'); }
.iconsminds-usb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebaa;&nbsp;'); }
.iconsminds-flowerpot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebab;&nbsp;'); }
.iconsminds-shop-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebac;&nbsp;'); }
.iconsminds-line-chart-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebad;&nbsp;'); }
.iconsminds-line-chart-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebae;&nbsp;'); }
.iconsminds-forest-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebaf;&nbsp;'); }
.iconsminds-pantone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb0;&nbsp;'); }
.iconsminds-digital-drawing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb1;&nbsp;'); }
.iconsminds-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb2;&nbsp;'); }
.iconsminds-credit-card-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb3;&nbsp;'); }
.iconsminds-money-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb4;&nbsp;'); }
.iconsminds-printer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb5;&nbsp;'); }
.iconsminds-sheep { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb8;&nbsp;'); }
.iconsminds-cow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb9;&nbsp;'); }
.iconsminds-dog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebba;&nbsp;'); }
.iconsminds-deer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebbb;&nbsp;'); }

View File

@ -0,0 +1,936 @@
[class^="iconsminds-"], [class*=" iconsminds-"] {
font-family: 'iconsminds';
font-style: normal;
font-weight: normal;
/* fix buttons height */
line-height: 1em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
}
.iconsminds-add-space-after-paragraph { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.iconsminds-add-space-before-paragraph { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.iconsminds-align-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
.iconsminds-align-justify-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.iconsminds-align-justify-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
.iconsminds-align-justify-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
.iconsminds-align-justify-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.iconsminds-align-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.iconsminds-align-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); }
.iconsminds-decrase-inedit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
.iconsminds-increase-inedit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.iconsminds-indent-first-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.iconsminds-indent-left-margin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.iconsminds-indent-right-margin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.iconsminds-line-spacing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.iconsminds-arrow-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.iconsminds-arrow-from { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.iconsminds-arrow-inside-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
.iconsminds-arrow-inside-gap-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
.iconsminds-arrow-inside-gap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); }
.iconsminds-arrow-inside { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); }
.iconsminds-arrow-into { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); }
.iconsminds-arrow-junction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); }
.iconsminds-arrow-loop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe818;&nbsp;'); }
.iconsminds-arrow-merge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe819;&nbsp;'); }
.iconsminds-arrow-mix { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); }
.iconsminds-arrow-out-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); }
.iconsminds-arrow-out-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81c;&nbsp;'); }
.iconsminds-arrow-outside-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81d;&nbsp;'); }
.iconsminds-arrow-outside-gap-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); }
.iconsminds-arrow-outside-gap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); }
.iconsminds-arrow-outside { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); }
.iconsminds-arrow-over { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); }
.iconsminds-arrow-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); }
.iconsminds-arrow-squiggly { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); }
.iconsminds-arrow-through { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); }
.iconsminds-arrow-to { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); }
.iconsminds-double-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); }
.iconsminds-full-view-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); }
.iconsminds-full-view { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); }
.iconsminds-maximize { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); }
.iconsminds-minimize { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); }
.iconsminds-resize { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); }
.iconsminds-three-arrow-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }
.iconsminds-view-height { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); }
.iconsminds-view-width { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); }
.iconsminds-arrow-around { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); }
.iconsminds-arrow-barrier { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); }
.iconsminds-arrow-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); }
.iconsminds-arrow-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe832;&nbsp;'); }
.iconsminds-arrow-back-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe833;&nbsp;'); }
.iconsminds-arrow-back-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe834;&nbsp;'); }
.iconsminds-arrow-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe835;&nbsp;'); }
.iconsminds-arrow-down-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); }
.iconsminds-arrow-down-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); }
.iconsminds-arrow-down-in-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); }
.iconsminds-arrow-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); }
.iconsminds-arrow-forward-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); }
.iconsminds-arrow-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); }
.iconsminds-arrow-left-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); }
.iconsminds-arrow-left-in-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); }
.iconsminds-arrow-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); }
.iconsminds-arrow-next { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); }
.iconsminds-arrow-refresh-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); }
.iconsminds-arrow-refresh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); }
.iconsminds-arrow-right-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); }
.iconsminds-arrow-right-in-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
.iconsminds-arrow-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
.iconsminds-arrow-turn-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
.iconsminds-arrow-turn-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.iconsminds-arrow-up-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
.iconsminds-arrow-up-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
.iconsminds-arrow-up-in-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
.iconsminds-arrow-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84a;&nbsp;'); }
.iconsminds-arrow-x-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84b;&nbsp;'); }
.iconsminds-arrow-x-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); }
.iconsminds-bottom-to-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); }
.iconsminds-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); }
.iconsminds-down-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); }
.iconsminds-down-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); }
.iconsminds-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); }
.iconsminds-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); }
.iconsminds-fit-to-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe853;&nbsp;'); }
.iconsminds-fit-to { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); }
.iconsminds-full-screen-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); }
.iconsminds-full-screen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); }
.iconsminds-go-bottom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); }
.iconsminds-go-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); }
.iconsminds-left---right-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); }
.iconsminds-left---right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); }
.iconsminds-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); }
.iconsminds-left-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); }
.iconsminds-left-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); }
.iconsminds-left-to-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); }
.iconsminds-loop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); }
.iconsminds-navigate-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); }
.iconsminds-navigat-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); }
.iconsminds-reload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); }
.iconsminds-reload-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); }
.iconsminds-repeat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); }
.iconsminds-repeat-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe865;&nbsp;'); }
.iconsminds-repeat-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
.iconsminds-repeat-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
.iconsminds-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
.iconsminds-right-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.iconsminds-right-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
.iconsminds-right-to-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
.iconsminds-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
.iconsminds-shuffle-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); }
.iconsminds-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); }
.iconsminds-sync { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86f;&nbsp;'); }
.iconsminds-to-bottom-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); }
.iconsminds-to-bottom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe871;&nbsp;'); }
.iconsminds-to-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); }
.iconsminds-top-to-bottom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); }
.iconsminds-to-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); }
.iconsminds-to-top-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe875;&nbsp;'); }
.iconsminds-to-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe876;&nbsp;'); }
.iconsminds-triangle-arrow-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe877;&nbsp;'); }
.iconsminds-triangle-arrow-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe878;&nbsp;'); }
.iconsminds-triangle-arrow-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe879;&nbsp;'); }
.iconsminds-triangle-arrow-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87a;&nbsp;'); }
.iconsminds-turn-down-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87b;&nbsp;'); }
.iconsminds-turn-down-from-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87c;&nbsp;'); }
.iconsminds-turn-down-from-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
.iconsminds-turn-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
.iconsminds-turn-left-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
.iconsminds-turn-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.iconsminds-turn-right-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.iconsminds-turn-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
.iconsminds-turn-up-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
.iconsminds-turn-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
.iconsminds-up---down-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); }
.iconsminds-up---down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); }
.iconsminds-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); }
.iconsminds-up-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); }
.iconsminds-up-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); }
.iconsminds-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); }
.iconsminds-billing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); }
.iconsminds-binocular { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); }
.iconsminds-bone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); }
.iconsminds-box-close { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); }
.iconsminds-box-with-folders { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); }
.iconsminds-brush { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); }
.iconsminds-bucket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
.iconsminds-camera-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
.iconsminds-camera-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
.iconsminds-candle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); }
.iconsminds-candy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.iconsminds-chair { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.iconsminds-control { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
.iconsminds-control-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.iconsminds-crop-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
.iconsminds-crown-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
.iconsminds-dashboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
.iconsminds-data-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); }
.iconsminds-data-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89d;&nbsp;'); }
.iconsminds-data-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
.iconsminds-data-storage { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
.iconsminds-delete-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
.iconsminds-dice { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
.iconsminds-drill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); }
.iconsminds-duplicate-layer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a3;&nbsp;'); }
.iconsminds-electricity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); }
.iconsminds-factory { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); }
.iconsminds-feather { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); }
.iconsminds-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); }
.iconsminds-file-clipboard-file-+-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
.iconsminds-file-clipboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); }
.iconsminds-file-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8aa;&nbsp;'); }
.iconsminds-file-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); }
.iconsminds-file-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ac;&nbsp;'); }
.iconsminds-files { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ad;&nbsp;'); }
.iconsminds-file-zip { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ae;&nbsp;'); }
.iconsminds-filter-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8af;&nbsp;'); }
.iconsminds-flash-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); }
.iconsminds-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); }
.iconsminds-folder-add-+ { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); }
.iconsminds-folder-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
.iconsminds-folder-close { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b4;&nbsp;'); }
.iconsminds-folder-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b5;&nbsp;'); }
.iconsminds-folder-delete { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b6;&nbsp;'); }
.iconsminds-folder-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b7;&nbsp;'); }
.iconsminds-folder-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b8;&nbsp;'); }
.iconsminds-folders { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b9;&nbsp;'); }
.iconsminds-folder-zip { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ba;&nbsp;'); }
.iconsminds-funny-bicycle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bb;&nbsp;'); }
.iconsminds-gas-pump { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); }
.iconsminds-gear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); }
.iconsminds-gear-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
.iconsminds-gears { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); }
.iconsminds-gift-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); }
.iconsminds-grave { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c2;&nbsp;'); }
.iconsminds-headphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c3;&nbsp;'); }
.iconsminds-headset { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c4;&nbsp;'); }
.iconsminds-hipster-men { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c5;&nbsp;'); }
.iconsminds-hub { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c6;&nbsp;'); }
.iconsminds-idea { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c7;&nbsp;'); }
.iconsminds-information { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c8;&nbsp;'); }
.iconsminds-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c9;&nbsp;'); }
.iconsminds-knife { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ca;&nbsp;'); }
.iconsminds-lantern { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cb;&nbsp;'); }
.iconsminds-layer-backward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); }
.iconsminds-layer-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cd;&nbsp;'); }
.iconsminds-library { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ce;&nbsp;'); }
.iconsminds-light-bulb-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d0;&nbsp;'); }
.iconsminds-loading { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); }
.iconsminds-loading-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); }
.iconsminds-loading-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d3;&nbsp;'); }
.iconsminds-magic-wand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
.iconsminds-magnifi-glass-- { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); }
.iconsminds-magnifi-glass-+ { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); }
.iconsminds-magnifi-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d7;&nbsp;'); }
.iconsminds-memory-card-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); }
.iconsminds-mine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d9;&nbsp;'); }
.iconsminds-mustache-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8da;&nbsp;'); }
.iconsminds-office-lamp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8db;&nbsp;'); }
.iconsminds-old-sticky-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dc;&nbsp;'); }
.iconsminds-on-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dd;&nbsp;'); }
.iconsminds-on-off-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8de;&nbsp;'); }
.iconsminds-on-off-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8df;&nbsp;'); }
.iconsminds-palette { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e0;&nbsp;'); }
.iconsminds-paper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e1;&nbsp;'); }
.iconsminds-pen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e2;&nbsp;'); }
.iconsminds-photo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e3;&nbsp;'); }
.iconsminds-photo-album-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e4;&nbsp;'); }
.iconsminds-power-station { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e5;&nbsp;'); }
.iconsminds-preview { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e6;&nbsp;'); }
.iconsminds-pricing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e7;&nbsp;'); }
.iconsminds-profile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e8;&nbsp;'); }
.iconsminds-project { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e9;&nbsp;'); }
.iconsminds-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ea;&nbsp;'); }
.iconsminds-refinery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8eb;&nbsp;'); }
.iconsminds-remove-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ec;&nbsp;'); }
.iconsminds-rename { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ed;&nbsp;'); }
.iconsminds-repair { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ee;&nbsp;'); }
.iconsminds-ruler { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ef;&nbsp;'); }
.iconsminds-save { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f0;&nbsp;'); }
.iconsminds-scissor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f2;&nbsp;'); }
.iconsminds-scroller { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f3;&nbsp;'); }
.iconsminds-scroller-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f4;&nbsp;'); }
.iconsminds-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f5;&nbsp;'); }
.iconsminds-smoking-pipe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); }
.iconsminds-solar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f7;&nbsp;'); }
.iconsminds-statistic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f8;&nbsp;'); }
.iconsminds-suitcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f9;&nbsp;'); }
.iconsminds-support { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fa;&nbsp;'); }
.iconsminds-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fb;&nbsp;'); }
.iconsminds-tripod-with-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fc;&nbsp;'); }
.iconsminds-upgrade { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fd;&nbsp;'); }
.iconsminds-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fe;&nbsp;'); }
.iconsminds-windmill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ff;&nbsp;'); }
.iconsminds-witch-hat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe900;&nbsp;'); }
.iconsminds-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe901;&nbsp;'); }
.iconsminds-add-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe902;&nbsp;'); }
.iconsminds-affiliate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe903;&nbsp;'); }
.iconsminds-anchor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe904;&nbsp;'); }
.iconsminds-balloon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe905;&nbsp;'); }
.iconsminds-beard-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe906;&nbsp;'); }
.iconsminds-bicycle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe907;&nbsp;'); }
.iconsminds-big-data { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe908;&nbsp;'); }
.iconsminds-eifel-tower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe909;&nbsp;'); }
.iconsminds-el-castillo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90a;&nbsp;'); }
.iconsminds-embassy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90b;&nbsp;'); }
.iconsminds-empire-state-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90c;&nbsp;'); }
.iconsminds-factory-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90d;&nbsp;'); }
.iconsminds-fire-staion { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90e;&nbsp;'); }
.iconsminds-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90f;&nbsp;'); }
.iconsminds-home-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe910;&nbsp;'); }
.iconsminds-home-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe911;&nbsp;'); }
.iconsminds-hotel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe912;&nbsp;'); }
.iconsminds-japanese-gate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe913;&nbsp;'); }
.iconsminds-leaning-tower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe914;&nbsp;'); }
.iconsminds-lighthouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe915;&nbsp;'); }
.iconsminds-museum { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe916;&nbsp;'); }
.iconsminds-office { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe917;&nbsp;'); }
.iconsminds-opera-house { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe918;&nbsp;'); }
.iconsminds-piramids { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91b;&nbsp;'); }
.iconsminds-police-station { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91c;&nbsp;'); }
.iconsminds-post-office { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91d;&nbsp;'); }
.iconsminds-prater { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91e;&nbsp;'); }
.iconsminds-roof { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91f;&nbsp;'); }
.iconsminds-space-needle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe920;&nbsp;'); }
.iconsminds-the-white-house { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe922;&nbsp;'); }
.iconsminds-tower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe923;&nbsp;'); }
.iconsminds-bank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe924;&nbsp;'); }
.iconsminds-berlin-tower { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe925;&nbsp;'); }
.iconsminds-big-bang { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe926;&nbsp;'); }
.iconsminds-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe927;&nbsp;'); }
.iconsminds-castle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe928;&nbsp;'); }
.iconsminds-chinese-temple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe929;&nbsp;'); }
.iconsminds-chrysler-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92a;&nbsp;'); }
.iconsminds-city-hall { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92b;&nbsp;'); }
.iconsminds-clothing-store { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92c;&nbsp;'); }
.iconsminds-colosseum { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92d;&nbsp;'); }
.iconsminds-column { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92e;&nbsp;'); }
.iconsminds-coins { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92f;&nbsp;'); }
.iconsminds-coins-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe930;&nbsp;'); }
.iconsminds-diamond { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe933;&nbsp;'); }
.iconsminds-dollar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe934;&nbsp;'); }
.iconsminds-dollar-sign-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe935;&nbsp;'); }
.iconsminds-euro { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe936;&nbsp;'); }
.iconsminds-euro-sign-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe937;&nbsp;'); }
.iconsminds-financial { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe938;&nbsp;'); }
.iconsminds-handshake { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe939;&nbsp;'); }
.iconsminds-pie-chart-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93c;&nbsp;'); }
.iconsminds-pie-chart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93d;&nbsp;'); }
.iconsminds-pound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93e;&nbsp;'); }
.iconsminds-pound-sign-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93f;&nbsp;'); }
.iconsminds-safe-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe940;&nbsp;'); }
.iconsminds-wallet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe941;&nbsp;'); }
.iconsminds-bar-chart-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe942;&nbsp;'); }
.iconsminds-jeans { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe946;&nbsp;'); }
.iconsminds-sunglasses-w-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe947;&nbsp;'); }
.iconsminds-tie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe948;&nbsp;'); }
.iconsminds-t-shirt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe949;&nbsp;'); }
.iconsminds-baby-clothes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94a;&nbsp;'); }
.iconsminds-belt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94b;&nbsp;'); }
.iconsminds-bikini { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94c;&nbsp;'); }
.iconsminds-blouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94d;&nbsp;'); }
.iconsminds-boot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94e;&nbsp;'); }
.iconsminds-bow-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94f;&nbsp;'); }
.iconsminds-bra { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe950;&nbsp;'); }
.iconsminds-cap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe951;&nbsp;'); }
.iconsminds-coat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe952;&nbsp;'); }
.iconsminds-dress { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe953;&nbsp;'); }
.iconsminds-glasses-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe954;&nbsp;'); }
.iconsminds-gloves { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe955;&nbsp;'); }
.iconsminds-hanger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe956;&nbsp;'); }
.iconsminds-heels-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe957;&nbsp;'); }
.iconsminds-jacket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe958;&nbsp;'); }
.iconsminds-walkie-talkie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe959;&nbsp;'); }
.iconsminds-wifi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95a;&nbsp;'); }
.iconsminds-address-book-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95b;&nbsp;'); }
.iconsminds-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95c;&nbsp;'); }
.iconsminds-bird-delivering-letter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95d;&nbsp;'); }
.iconsminds-communication-tower-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95e;&nbsp;'); }
.iconsminds-fax { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95f;&nbsp;'); }
.iconsminds-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe960;&nbsp;'); }
.iconsminds-newspaper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe961;&nbsp;'); }
.iconsminds-old-telephone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe962;&nbsp;'); }
.iconsminds-router { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe963;&nbsp;'); }
.iconsminds-telephone-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe964;&nbsp;'); }
.iconsminds-smartphone-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe965;&nbsp;'); }
.iconsminds-tablet-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe966;&nbsp;'); }
.iconsminds-computer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe967;&nbsp;'); }
.iconsminds-laptop-+-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe968;&nbsp;'); }
.iconsminds-laptop-+-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe969;&nbsp;'); }
.iconsminds-laptop-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96a;&nbsp;'); }
.iconsminds-monitor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96b;&nbsp;'); }
.iconsminds-monitor-+-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96c;&nbsp;'); }
.iconsminds-monitor-+-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96d;&nbsp;'); }
.iconsminds-monitor-+-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96e;&nbsp;'); }
.iconsminds-monitor-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96f;&nbsp;'); }
.iconsminds-monitor-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe970;&nbsp;'); }
.iconsminds-orientation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe971;&nbsp;'); }
.iconsminds-phone-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe972;&nbsp;'); }
.iconsminds-smartphone-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe973;&nbsp;'); }
.iconsminds-quill-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe974;&nbsp;'); }
.iconsminds-student-hat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe975;&nbsp;'); }
.iconsminds-blackboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe976;&nbsp;'); }
.iconsminds-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe977;&nbsp;'); }
.iconsminds-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe978;&nbsp;'); }
.iconsminds-books { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe979;&nbsp;'); }
.iconsminds-compass-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97a;&nbsp;'); }
.iconsminds-diploma-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97b;&nbsp;'); }
.iconsminds-eraser-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97c;&nbsp;'); }
.iconsminds-formula { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97d;&nbsp;'); }
.iconsminds-notepad { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97e;&nbsp;'); }
.iconsminds-open-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97f;&nbsp;'); }
.iconsminds-pen-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe980;&nbsp;'); }
.iconsminds-pi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe981;&nbsp;'); }
.iconsminds-pipette { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe982;&nbsp;'); }
.iconsminds-mail-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe983;&nbsp;'); }
.iconsminds-mailbox-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe984;&nbsp;'); }
.iconsminds-mailbox-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe985;&nbsp;'); }
.iconsminds-mail-delete { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe986;&nbsp;'); }
.iconsminds-mail-favorite { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe987;&nbsp;'); }
.iconsminds-mail-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe988;&nbsp;'); }
.iconsminds-mail-gallery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe989;&nbsp;'); }
.iconsminds-mail-inbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98a;&nbsp;'); }
.iconsminds-mail-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98b;&nbsp;'); }
.iconsminds-mail-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98c;&nbsp;'); }
.iconsminds-mail-love { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98d;&nbsp;'); }
.iconsminds-mail-money { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98e;&nbsp;'); }
.iconsminds-mail-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98f;&nbsp;'); }
.iconsminds-mail-outbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe990;&nbsp;'); }
.iconsminds-mail-password { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe991;&nbsp;'); }
.iconsminds-mail-photo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe992;&nbsp;'); }
.iconsminds-mail-read { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe993;&nbsp;'); }
.iconsminds-mail-remove-x { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe994;&nbsp;'); }
.iconsminds-mail-reply-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe995;&nbsp;'); }
.iconsminds-mail-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe996;&nbsp;'); }
.iconsminds-mail-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe997;&nbsp;'); }
.iconsminds-mail-send { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe998;&nbsp;'); }
.iconsminds-mail-settings { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe999;&nbsp;'); }
.iconsminds-mail-unread { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99a;&nbsp;'); }
.iconsminds-mail-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99b;&nbsp;'); }
.iconsminds-mail-with-at-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99c;&nbsp;'); }
.iconsminds-mail-with-cursors { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99d;&nbsp;'); }
.iconsminds-new-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99e;&nbsp;'); }
.iconsminds-post-mail-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99f;&nbsp;'); }
.iconsminds-post-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a0;&nbsp;'); }
.iconsminds-spam-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a1;&nbsp;'); }
.iconsminds-stamp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a2;&nbsp;'); }
.iconsminds-stamp-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a3;&nbsp;'); }
.iconsminds-voicemail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a4;&nbsp;'); }
.iconsminds-at-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a5;&nbsp;'); }
.iconsminds-box-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a6;&nbsp;'); }
.iconsminds-empty-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a7;&nbsp;'); }
.iconsminds-envelope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a8;&nbsp;'); }
.iconsminds-envelope-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a9;&nbsp;'); }
.iconsminds-inbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9aa;&nbsp;'); }
.iconsminds-inbox-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ab;&nbsp;'); }
.iconsminds-inbox-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ac;&nbsp;'); }
.iconsminds-inbox-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ad;&nbsp;'); }
.iconsminds-inbox-into { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ae;&nbsp;'); }
.iconsminds-inbox-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9af;&nbsp;'); }
.iconsminds-inbox-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b0;&nbsp;'); }
.iconsminds-letter-close { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b1;&nbsp;'); }
.iconsminds-letter-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b2;&nbsp;'); }
.iconsminds-letter-sent { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b3;&nbsp;'); }
.iconsminds-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b4;&nbsp;'); }
.iconsminds-mail-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b5;&nbsp;'); }
.iconsminds-mail-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b6;&nbsp;'); }
.iconsminds-mail-add-+ { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b7;&nbsp;'); }
.iconsminds-mail-attachement { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b8;&nbsp;'); }
.iconsminds-ice-cream { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b9;&nbsp;'); }
.iconsminds-lollipop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ba;&nbsp;'); }
.iconsminds-open-banana { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bb;&nbsp;'); }
.iconsminds-pepper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bc;&nbsp;'); }
.iconsminds-tee-mug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bd;&nbsp;'); }
.iconsminds-tomato { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9be;&nbsp;'); }
.iconsminds-apple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bf;&nbsp;'); }
.iconsminds-apple-bite { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c0;&nbsp;'); }
.iconsminds-beer-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c1;&nbsp;'); }
.iconsminds-birthday-cake { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c2;&nbsp;'); }
.iconsminds-bread { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c3;&nbsp;'); }
.iconsminds-cake { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c4;&nbsp;'); }
.iconsminds-can { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c5;&nbsp;'); }
.iconsminds-can-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c6;&nbsp;'); }
.iconsminds-cheese { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c7;&nbsp;'); }
.iconsminds-chef-hat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c8;&nbsp;'); }
.iconsminds-chopsticks { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c9;&nbsp;'); }
.iconsminds-cocktail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ca;&nbsp;'); }
.iconsminds-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cb;&nbsp;'); }
.iconsminds-coffee-bean { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cc;&nbsp;'); }
.iconsminds-coffee-to-go { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cd;&nbsp;'); }
.iconsminds-cookies { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ce;&nbsp;'); }
.iconsminds-croissant { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cf;&nbsp;'); }
.iconsminds-cupcake { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d0;&nbsp;'); }
.iconsminds-doughnut { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d1;&nbsp;'); }
.iconsminds-fish { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d2;&nbsp;'); }
.iconsminds-glass-water { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d3;&nbsp;'); }
.iconsminds-hamburger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d4;&nbsp;'); }
.iconsminds-hot-dog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d5;&nbsp;'); }
.iconsminds-webcam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d7;&nbsp;'); }
.iconsminds-battery-0% { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d8;&nbsp;'); }
.iconsminds-battery-100% { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d9;&nbsp;'); }
.iconsminds-battery-charge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9da;&nbsp;'); }
.iconsminds-charger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9db;&nbsp;'); }
.iconsminds-cpu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9dc;&nbsp;'); }
.iconsminds-disk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9dd;&nbsp;'); }
.iconsminds-dvd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9de;&nbsp;'); }
.iconsminds-fan { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9df;&nbsp;'); }
.iconsminds-gamepad-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e0;&nbsp;'); }
.iconsminds-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e1;&nbsp;'); }
.iconsminds-keyboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e2;&nbsp;'); }
.iconsminds-mouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e3;&nbsp;'); }
.iconsminds-mouse-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e4;&nbsp;'); }
.iconsminds-plug-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e5;&nbsp;'); }
.iconsminds-power { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e6;&nbsp;'); }
.iconsminds-power-cable { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e7;&nbsp;'); }
.iconsminds-remote-controll-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e8;&nbsp;'); }
.iconsminds-server-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9e9;&nbsp;'); }
.iconsminds-speaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ea;&nbsp;'); }
.iconsminds-start-ways { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9eb;&nbsp;'); }
.iconsminds-synchronize { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ec;&nbsp;'); }
.iconsminds-synchronize-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ed;&nbsp;'); }
.iconsminds-undo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ee;&nbsp;'); }
.iconsminds-up-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ef;&nbsp;'); }
.iconsminds-upload-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f0;&nbsp;'); }
.iconsminds-upward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f1;&nbsp;'); }
.iconsminds-yes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f2;&nbsp;'); }
.iconsminds-add { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f3;&nbsp;'); }
.iconsminds-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f4;&nbsp;'); }
.iconsminds-broken-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f5;&nbsp;'); }
.iconsminds-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f6;&nbsp;'); }
.iconsminds-close { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f8;&nbsp;'); }
.iconsminds-cursor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9f9;&nbsp;'); }
.iconsminds-cursor-click-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9fa;&nbsp;'); }
.iconsminds-cursor-click { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9fb;&nbsp;'); }
.iconsminds-cursor-move-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9fc;&nbsp;'); }
.iconsminds-cursor-select { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9fd;&nbsp;'); }
.iconsminds-down-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9fe;&nbsp;'); }
.iconsminds-download-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ff;&nbsp;'); }
.iconsminds-downward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea00;&nbsp;'); }
.iconsminds-endways { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea01;&nbsp;'); }
.iconsminds-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea02;&nbsp;'); }
.iconsminds-left-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea03;&nbsp;'); }
.iconsminds-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea04;&nbsp;'); }
.iconsminds-next { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea05;&nbsp;'); }
.iconsminds-orientation-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea06;&nbsp;'); }
.iconsminds-pointer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea07;&nbsp;'); }
.iconsminds-previous { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea08;&nbsp;'); }
.iconsminds-redo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea09;&nbsp;'); }
.iconsminds-refresh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea0a;&nbsp;'); }
.iconsminds-reload-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea0b;&nbsp;'); }
.iconsminds-remove { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea0c;&nbsp;'); }
.iconsminds-repeat-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea0d;&nbsp;'); }
.iconsminds-reset { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea0e;&nbsp;'); }
.iconsminds-rewind { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea0f;&nbsp;'); }
.iconsminds-right-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea10;&nbsp;'); }
.iconsminds-rotation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea11;&nbsp;'); }
.iconsminds-rotation-390 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea12;&nbsp;'); }
.iconsminds-spot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea13;&nbsp;'); }
.iconsminds-satelite-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea15;&nbsp;'); }
.iconsminds-compass-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea16;&nbsp;'); }
.iconsminds-direction-east { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea17;&nbsp;'); }
.iconsminds-edit-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea18;&nbsp;'); }
.iconsminds-geo2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea19;&nbsp;'); }
.iconsminds-geo2-- { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea1a;&nbsp;'); }
.iconsminds-geo2-+ { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea1b;&nbsp;'); }
.iconsminds-globe-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea1c;&nbsp;'); }
.iconsminds-location-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea1d;&nbsp;'); }
.iconsminds-map2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea1e;&nbsp;'); }
.iconsminds-map-marker-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea1f;&nbsp;'); }
.iconsminds-map-marker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea20;&nbsp;'); }
.iconsminds-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea21;&nbsp;'); }
.iconsminds-stop-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea22;&nbsp;'); }
.iconsminds-back-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea23;&nbsp;'); }
.iconsminds-back-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea24;&nbsp;'); }
.iconsminds-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea25;&nbsp;'); }
.iconsminds-eject-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea26;&nbsp;'); }
.iconsminds-end-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea27;&nbsp;'); }
.iconsminds-end-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea28;&nbsp;'); }
.iconsminds-next-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea29;&nbsp;'); }
.iconsminds-next-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea2a;&nbsp;'); }
.iconsminds-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea2b;&nbsp;'); }
.iconsminds-pause-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea2c;&nbsp;'); }
.iconsminds-power-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea2d;&nbsp;'); }
.iconsminds-power-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea2e;&nbsp;'); }
.iconsminds-record { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea2f;&nbsp;'); }
.iconsminds-record-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea30;&nbsp;'); }
.iconsminds-repeat-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea31;&nbsp;'); }
.iconsminds-repeat-6 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea32;&nbsp;'); }
.iconsminds-shuffle-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea33;&nbsp;'); }
.iconsminds-shuffle-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea34;&nbsp;'); }
.iconsminds-start-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea35;&nbsp;'); }
.iconsminds-start-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea36;&nbsp;'); }
.iconsminds-volume-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea37;&nbsp;'); }
.iconsminds-volume-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea38;&nbsp;'); }
.iconsminds-back-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea39;&nbsp;'); }
.iconsminds-cd-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea3a;&nbsp;'); }
.iconsminds-clef { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea3b;&nbsp;'); }
.iconsminds-earphones-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea3c;&nbsp;'); }
.iconsminds-equalizer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea3e;&nbsp;'); }
.iconsminds-first { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea3f;&nbsp;'); }
.iconsminds-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea41;&nbsp;'); }
.iconsminds-last { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea42;&nbsp;'); }
.iconsminds-loudspeaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea43;&nbsp;'); }
.iconsminds-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea44;&nbsp;'); }
.iconsminds-microphone-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea45;&nbsp;'); }
.iconsminds-next-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea46;&nbsp;'); }
.iconsminds-old-radio { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea47;&nbsp;'); }
.iconsminds-play-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea48;&nbsp;'); }
.iconsminds-radio { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea49;&nbsp;'); }
.iconsminds-record-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea4a;&nbsp;'); }
.iconsminds-record-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea4b;&nbsp;'); }
.iconsminds-sound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea4c;&nbsp;'); }
.iconsminds-speaker-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea4d;&nbsp;'); }
.iconsminds-stop-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea4e;&nbsp;'); }
.iconsminds-trumpet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea4f;&nbsp;'); }
.iconsminds-voice { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea50;&nbsp;'); }
.iconsminds-tree-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea51;&nbsp;'); }
.iconsminds-eci-icon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea52;&nbsp;'); }
.iconsminds-environmental { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea53;&nbsp;'); }
.iconsminds-environmental-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea54;&nbsp;'); }
.iconsminds-fire-flame-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea55;&nbsp;'); }
.iconsminds-green-energy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea58;&nbsp;'); }
.iconsminds-green-house { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea59;&nbsp;'); }
.iconsminds-leafs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea5b;&nbsp;'); }
.iconsminds-light-bulb-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea5c;&nbsp;'); }
.iconsminds-palm-tree { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea5d;&nbsp;'); }
.iconsminds-plant { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea5e;&nbsp;'); }
.iconsminds-recycling-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea5f;&nbsp;'); }
.iconsminds-seed { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea60;&nbsp;'); }
.iconsminds-trash-with-men { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea61;&nbsp;'); }
.iconsminds-id-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea62;&nbsp;'); }
.iconsminds-king-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea63;&nbsp;'); }
.iconsminds-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea64;&nbsp;'); }
.iconsminds-male+female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea65;&nbsp;'); }
.iconsminds-male-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea66;&nbsp;'); }
.iconsminds-man-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea67;&nbsp;'); }
.iconsminds-mens { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea68;&nbsp;'); }
.iconsminds-network { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea69;&nbsp;'); }
.iconsminds-student-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea6a;&nbsp;'); }
.iconsminds-student-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea6b;&nbsp;'); }
.iconsminds-student-male+female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea6c;&nbsp;'); }
.iconsminds-students { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea6d;&nbsp;'); }
.iconsminds-woman+man { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea6e;&nbsp;'); }
.iconsminds-add-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea6f;&nbsp;'); }
.iconsminds-administrator { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea70;&nbsp;'); }
.iconsminds-assistant { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea71;&nbsp;'); }
.iconsminds-business-man { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea72;&nbsp;'); }
.iconsminds-business-man+woman { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea73;&nbsp;'); }
.iconsminds-business-mens { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea74;&nbsp;'); }
.iconsminds-business-woman { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea75;&nbsp;'); }
.iconsminds-conference { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea76;&nbsp;'); }
.iconsminds-doctor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea77;&nbsp;'); }
.iconsminds-engineering { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea78;&nbsp;'); }
.iconsminds-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea79;&nbsp;'); }
.iconsminds-female-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea7a;&nbsp;'); }
.iconsminds-temperature { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea7b;&nbsp;'); }
.iconsminds-test-tube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea7c;&nbsp;'); }
.iconsminds-ambulance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea7d;&nbsp;'); }
.iconsminds-atom { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea7e;&nbsp;'); }
.iconsminds-band-aid { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea7f;&nbsp;'); }
.iconsminds-bio-hazard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea80;&nbsp;'); }
.iconsminds-biotech { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea81;&nbsp;'); }
.iconsminds-brain { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea82;&nbsp;'); }
.iconsminds-chemical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea83;&nbsp;'); }
.iconsminds-clinic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea84;&nbsp;'); }
.iconsminds-danger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea85;&nbsp;'); }
.iconsminds-dna { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea86;&nbsp;'); }
.iconsminds-dna-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea87;&nbsp;'); }
.iconsminds-first-aid { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea88;&nbsp;'); }
.iconsminds-flask { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea89;&nbsp;'); }
.iconsminds-medical-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea8a;&nbsp;'); }
.iconsminds-medicine-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea8b;&nbsp;'); }
.iconsminds-microscope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea8c;&nbsp;'); }
.iconsminds-physics { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea8d;&nbsp;'); }
.iconsminds-plasmid { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea8e;&nbsp;'); }
.iconsminds-plaster { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea8f;&nbsp;'); }
.iconsminds-pulse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea90;&nbsp;'); }
.iconsminds-radioactive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea91;&nbsp;'); }
.iconsminds-stethoscope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea92;&nbsp;'); }
.iconsminds-security-settings { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea93;&nbsp;'); }
.iconsminds-securiy-remove { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea94;&nbsp;'); }
.iconsminds-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea95;&nbsp;'); }
.iconsminds-ssl { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea96;&nbsp;'); }
.iconsminds-type-pass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea97;&nbsp;'); }
.iconsminds-unlock-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea98;&nbsp;'); }
.iconsminds-finger-print { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea99;&nbsp;'); }
.iconsminds-firewall { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea9a;&nbsp;'); }
.iconsminds-key-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea9b;&nbsp;'); }
.iconsminds-laptop-secure { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea9c;&nbsp;'); }
.iconsminds-lock-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea9d;&nbsp;'); }
.iconsminds-password { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea9e;&nbsp;'); }
.iconsminds-password-field { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xea9f;&nbsp;'); }
.iconsminds-police { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa0;&nbsp;'); }
.iconsminds-security-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa2;&nbsp;'); }
.iconsminds-security-bug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa3;&nbsp;'); }
.iconsminds-security-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa4;&nbsp;'); }
.iconsminds-security-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa5;&nbsp;'); }
.iconsminds-testimonal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa6;&nbsp;'); }
.iconsminds-broke-link-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa7;&nbsp;'); }
.iconsminds-coding { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa8;&nbsp;'); }
.iconsminds-consulting { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaa9;&nbsp;'); }
.iconsminds-copyright { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaaa;&nbsp;'); }
.iconsminds-idea-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaab;&nbsp;'); }
.iconsminds-link-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaac;&nbsp;'); }
.iconsminds-management { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaad;&nbsp;'); }
.iconsminds-monitor-analytics { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaae;&nbsp;'); }
.iconsminds-monitoring { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaaf;&nbsp;'); }
.iconsminds-optimization { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab0;&nbsp;'); }
.iconsminds-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab1;&nbsp;'); }
.iconsminds-target { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab2;&nbsp;'); }
.iconsminds-target-market { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab3;&nbsp;'); }
.iconsminds-shopping-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab5;&nbsp;'); }
.iconsminds-shopping-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab6;&nbsp;'); }
.iconsminds-shopping-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab7;&nbsp;'); }
.iconsminds-tag-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab8;&nbsp;'); }
.iconsminds-add-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeab9;&nbsp;'); }
.iconsminds-add-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaba;&nbsp;'); }
.iconsminds-add-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeabb;&nbsp;'); }
.iconsminds-bag-items { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeabc;&nbsp;'); }
.iconsminds-bag-quantity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeabd;&nbsp;'); }
.iconsminds-basket-coins { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeabf;&nbsp;'); }
.iconsminds-basket-items { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac0;&nbsp;'); }
.iconsminds-basket-quantity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac1;&nbsp;'); }
.iconsminds-car-items { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac2;&nbsp;'); }
.iconsminds-cart-quantity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac3;&nbsp;'); }
.iconsminds-cash-register-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac4;&nbsp;'); }
.iconsminds-checkout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac5;&nbsp;'); }
.iconsminds-checkout-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac6;&nbsp;'); }
.iconsminds-checkout-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac7;&nbsp;'); }
.iconsminds-home-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac8;&nbsp;'); }
.iconsminds-qr-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeac9;&nbsp;'); }
.iconsminds-receipt-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaca;&nbsp;'); }
.iconsminds-remove-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeacb;&nbsp;'); }
.iconsminds-remove-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeacc;&nbsp;'); }
.iconsminds-remove-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeacd;&nbsp;'); }
.iconsminds-shop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeace;&nbsp;'); }
.iconsminds-shop-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeacf;&nbsp;'); }
.iconsminds-shop-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead0;&nbsp;'); }
.iconsminds-ying-yang { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead1;&nbsp;'); }
.iconsminds-bisexual { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead2;&nbsp;'); }
.iconsminds-cancer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead3;&nbsp;'); }
.iconsminds-couple-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead4;&nbsp;'); }
.iconsminds-family-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead5;&nbsp;'); }
.iconsminds-female-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead6;&nbsp;'); }
.iconsminds-gey { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead7;&nbsp;'); }
.iconsminds-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead8;&nbsp;'); }
.iconsminds-homosexual { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xead9;&nbsp;'); }
.iconsminds-inifity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeada;&nbsp;'); }
.iconsminds-lesbian { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeadb;&nbsp;'); }
.iconsminds-lesbians { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeadc;&nbsp;'); }
.iconsminds-love { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeadd;&nbsp;'); }
.iconsminds-male-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeade;&nbsp;'); }
.iconsminds-men { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeadf;&nbsp;'); }
.iconsminds-no-smoking { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae0;&nbsp;'); }
.iconsminds-paw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae1;&nbsp;'); }
.iconsminds-quotes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae2;&nbsp;'); }
.iconsminds-redirect { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae3;&nbsp;'); }
.iconsminds-ribbon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae4;&nbsp;'); }
.iconsminds-venn-diagram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae5;&nbsp;'); }
.iconsminds-wheelchair { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae6;&nbsp;'); }
.iconsminds-women { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae7;&nbsp;'); }
.iconsminds-instagram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae8;&nbsp;'); }
.iconsminds-last-fm { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeae9;&nbsp;'); }
.iconsminds-like { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaea;&nbsp;'); }
.iconsminds-linkedin-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaeb;&nbsp;'); }
.iconsminds-livejournal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaec;&nbsp;'); }
.iconsminds-newsvine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaed;&nbsp;'); }
.iconsminds-picasa { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaee;&nbsp;'); }
.iconsminds-pinterest { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaef;&nbsp;'); }
.iconsminds-plaxo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf0;&nbsp;'); }
.iconsminds-plurk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf1;&nbsp;'); }
.iconsminds-posterous { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf2;&nbsp;'); }
.iconsminds-qik { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf3;&nbsp;'); }
.iconsminds-reddit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf4;&nbsp;'); }
.iconsminds-reverbnation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf5;&nbsp;'); }
.iconsminds-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf6;&nbsp;'); }
.iconsminds-sharethis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf7;&nbsp;'); }
.iconsminds-skype { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf8;&nbsp;'); }
.iconsminds-soundcloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaf9;&nbsp;'); }
.iconsminds-stumbleupon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeafa;&nbsp;'); }
.iconsminds-technorati { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeafb;&nbsp;'); }
.iconsminds-tumblr { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeafc;&nbsp;'); }
.iconsminds-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeafd;&nbsp;'); }
.iconsminds-unlike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeafe;&nbsp;'); }
.iconsminds-ustream { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeaff;&nbsp;'); }
.iconsminds-viddler { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb00;&nbsp;'); }
.iconsminds-vimeo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb01;&nbsp;'); }
.iconsminds-wordpress { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb02;&nbsp;'); }
.iconsminds-xanga { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb03;&nbsp;'); }
.iconsminds-yahoo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb04;&nbsp;'); }
.iconsminds-yelp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb05;&nbsp;'); }
.iconsminds-youtube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb06;&nbsp;'); }
.iconsminds-ask { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb07;&nbsp;'); }
.iconsminds-behance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb08;&nbsp;'); }
.iconsminds-bing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb09;&nbsp;'); }
.iconsminds-blinklist { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb0a;&nbsp;'); }
.iconsminds-blogger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb0b;&nbsp;'); }
.iconsminds-delicious { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb0c;&nbsp;'); }
.iconsminds-deviantart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb0d;&nbsp;'); }
.iconsminds-digg { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb0e;&nbsp;'); }
.iconsminds-diigo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb0f;&nbsp;'); }
.iconsminds-dribble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb11;&nbsp;'); }
.iconsminds-email { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb12;&nbsp;'); }
.iconsminds-evernote { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb13;&nbsp;'); }
.iconsminds-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb14;&nbsp;'); }
.iconsminds-feedburner { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb15;&nbsp;'); }
.iconsminds-flickr { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb16;&nbsp;'); }
.iconsminds-formspring { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb17;&nbsp;'); }
.iconsminds-forsquare { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb18;&nbsp;'); }
.iconsminds-friendster { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb19;&nbsp;'); }
.iconsminds-google { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb1a;&nbsp;'); }
.iconsminds-gowalla { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb1b;&nbsp;'); }
.iconsminds-icq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb1c;&nbsp;'); }
.iconsminds-imdb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb1d;&nbsp;'); }
.iconsminds-speach-bubble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb1e;&nbsp;'); }
.iconsminds-speach-bubbles { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb1f;&nbsp;'); }
.iconsminds-speach-bubble-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb20;&nbsp;'); }
.iconsminds-speach-bubble-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb21;&nbsp;'); }
.iconsminds-speach-bubble-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb22;&nbsp;'); }
.iconsminds-speach-bubble-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb23;&nbsp;'); }
.iconsminds-speach-bubble-6 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb24;&nbsp;'); }
.iconsminds-speach-bubble-7 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb25;&nbsp;'); }
.iconsminds-speach-bubble-8 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb26;&nbsp;'); }
.iconsminds-speach-bubble-9 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb27;&nbsp;'); }
.iconsminds-speach-bubble-10 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb28;&nbsp;'); }
.iconsminds-speach-bubble-11 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb29;&nbsp;'); }
.iconsminds-speach-bubble-12 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb2a;&nbsp;'); }
.iconsminds-speach-bubble-13 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb2b;&nbsp;'); }
.iconsminds-speach-bubble-asking { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb2c;&nbsp;'); }
.iconsminds-speach-bubble-comic-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb2d;&nbsp;'); }
.iconsminds-speach-bubble-comic-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb2e;&nbsp;'); }
.iconsminds-speach-bubble-comic-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb2f;&nbsp;'); }
.iconsminds-speach-bubble-comic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb30;&nbsp;'); }
.iconsminds-speach-bubble-dialog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb31;&nbsp;'); }
.iconsminds-trekking { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb32;&nbsp;'); }
.iconsminds-trophy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb33;&nbsp;'); }
.iconsminds-weight-lift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb35;&nbsp;'); }
.iconsminds-aerobics { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb36;&nbsp;'); }
.iconsminds-archery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb37;&nbsp;'); }
.iconsminds-ballet-shoes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb38;&nbsp;'); }
.iconsminds-baseball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb39;&nbsp;'); }
.iconsminds-basket-ball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb3a;&nbsp;'); }
.iconsminds-bowling { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb3b;&nbsp;'); }
.iconsminds-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb3c;&nbsp;'); }
.iconsminds-chess { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb3d;&nbsp;'); }
.iconsminds-cricket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb3e;&nbsp;'); }
.iconsminds-dumbbell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb3f;&nbsp;'); }
.iconsminds-football { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb40;&nbsp;'); }
.iconsminds-football-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb41;&nbsp;'); }
.iconsminds-footprint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb42;&nbsp;'); }
.iconsminds-footprint-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb43;&nbsp;'); }
.iconsminds-golf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb44;&nbsp;'); }
.iconsminds-gymnastics { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb45;&nbsp;'); }
.iconsminds-hokey { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb46;&nbsp;'); }
.iconsminds-jump-rope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb47;&nbsp;'); }
.iconsminds-life-jacket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb48;&nbsp;'); }
.iconsminds-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb49;&nbsp;'); }
.iconsminds-pilates-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb4a;&nbsp;'); }
.iconsminds-rafting { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb4b;&nbsp;'); }
.iconsminds-running-shoes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb4c;&nbsp;'); }
.iconsminds-skydiving { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb4d;&nbsp;'); }
.iconsminds-snorkel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb4e;&nbsp;'); }
.iconsminds-soccer-ball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb4f;&nbsp;'); }
.iconsminds-swimming { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb50;&nbsp;'); }
.iconsminds-tennis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb51;&nbsp;'); }
.iconsminds-tennis-ball { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb52;&nbsp;'); }
.iconsminds-over-time-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb53;&nbsp;'); }
.iconsminds-sand-watch-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb54;&nbsp;'); }
.iconsminds-stopwatch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb55;&nbsp;'); }
.iconsminds-time-backup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb56;&nbsp;'); }
.iconsminds-timer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb57;&nbsp;'); }
.iconsminds-watch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb58;&nbsp;'); }
.iconsminds-24-hour { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb59;&nbsp;'); }
.iconsminds-alarm-clock-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb5a;&nbsp;'); }
.iconsminds-alarm-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb5b;&nbsp;'); }
.iconsminds-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb5c;&nbsp;'); }
.iconsminds-clock-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb5d;&nbsp;'); }
.iconsminds-clock-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb5e;&nbsp;'); }
.iconsminds-clock-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb5f;&nbsp;'); }
.iconsminds-old-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb60;&nbsp;'); }
.iconsminds-scooter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb61;&nbsp;'); }
.iconsminds-ship { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb62;&nbsp;'); }
.iconsminds-skateboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb63;&nbsp;'); }
.iconsminds-taxi-sign { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb64;&nbsp;'); }
.iconsminds-traffic-light { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb66;&nbsp;'); }
.iconsminds-train { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb67;&nbsp;'); }
.iconsminds-yacht { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb68;&nbsp;'); }
.iconsminds-bicycle-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb6a;&nbsp;'); }
.iconsminds-bus-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb6b;&nbsp;'); }
.iconsminds-car { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb6c;&nbsp;'); }
.iconsminds-gaugage { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb6e;&nbsp;'); }
.iconsminds-gaugage-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb6f;&nbsp;'); }
.iconsminds-helicopter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb70;&nbsp;'); }
.iconsminds-jeep { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb71;&nbsp;'); }
.iconsminds-jet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb72;&nbsp;'); }
.iconsminds-motorcycle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb73;&nbsp;'); }
.iconsminds-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb74;&nbsp;'); }
.iconsminds-road-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb75;&nbsp;'); }
.iconsminds-sailing-ship { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb76;&nbsp;'); }
.iconsminds-video-tripod { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb77;&nbsp;'); }
.iconsminds-3d-eyeglasses { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb78;&nbsp;'); }
.iconsminds-cinema { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb79;&nbsp;'); }
.iconsminds-director { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb7a;&nbsp;'); }
.iconsminds-film { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb7b;&nbsp;'); }
.iconsminds-film-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb7c;&nbsp;'); }
.iconsminds-old-tv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb7d;&nbsp;'); }
.iconsminds-tv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb7e;&nbsp;'); }
.iconsminds-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb7f;&nbsp;'); }
.iconsminds-video-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb80;&nbsp;'); }
.iconsminds-video-6 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb81;&nbsp;'); }
.iconsminds-video-len { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb82;&nbsp;'); }
.iconsminds-sunrise { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb83;&nbsp;'); }
.iconsminds-sunset { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb84;&nbsp;'); }
.iconsminds-temperature-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb85;&nbsp;'); }
.iconsminds-thunder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb86;&nbsp;'); }
.iconsminds-umbrella-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb87;&nbsp;'); }
.iconsminds-wave { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb88;&nbsp;'); }
.iconsminds-wind-turbine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb89;&nbsp;'); }
.iconsminds-windy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb8a;&nbsp;'); }
.iconsminds-cloud-hail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb8b;&nbsp;'); }
.iconsminds-cloud-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb8c;&nbsp;'); }
.iconsminds-cloud-rain { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb8d;&nbsp;'); }
.iconsminds-cloud-snow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb8e;&nbsp;'); }
.iconsminds-cloud-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb8f;&nbsp;'); }
.iconsminds-cloud-weather { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb90;&nbsp;'); }
.iconsminds-drop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb91;&nbsp;'); }
.iconsminds-dry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb92;&nbsp;'); }
.iconsminds-fog-day { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb93;&nbsp;'); }
.iconsminds-fog-night { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb94;&nbsp;'); }
.iconsminds-half-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb95;&nbsp;'); }
.iconsminds-rain-drop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb96;&nbsp;'); }
.iconsminds-snow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb97;&nbsp;'); }
.iconsminds-snowflake-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb98;&nbsp;'); }
.iconsminds-snow-storm { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb99;&nbsp;'); }
.iconsminds-spring { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb9a;&nbsp;'); }
.iconsminds-storm { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb9b;&nbsp;'); }
.iconsminds-summer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb9c;&nbsp;'); }
.iconsminds-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb9d;&nbsp;'); }
.iconsminds-sun-cloudy-rain { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb9e;&nbsp;'); }
.iconsminds-electric-guitar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeb9f;&nbsp;'); }
.iconsminds-guitar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba0;&nbsp;'); }
.iconsminds-air-balloon-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba1;&nbsp;'); }
.iconsminds-tractor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba2;&nbsp;'); }
.iconsminds-calendar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba3;&nbsp;'); }
.iconsminds-calendar-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba4;&nbsp;'); }
.iconsminds-trophy-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba5;&nbsp;'); }
.iconsminds-life-safer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba6;&nbsp;'); }
.iconsminds-calculator { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba7;&nbsp;'); }
.iconsminds-taj-mahal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba8;&nbsp;'); }
.iconsminds-scale { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xeba9;&nbsp;'); }
.iconsminds-usb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebaa;&nbsp;'); }
.iconsminds-flowerpot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebab;&nbsp;'); }
.iconsminds-shop-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebac;&nbsp;'); }
.iconsminds-line-chart-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebad;&nbsp;'); }
.iconsminds-line-chart-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebae;&nbsp;'); }
.iconsminds-forest-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebaf;&nbsp;'); }
.iconsminds-pantone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb0;&nbsp;'); }
.iconsminds-digital-drawing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb1;&nbsp;'); }
.iconsminds-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb2;&nbsp;'); }
.iconsminds-credit-card-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb3;&nbsp;'); }
.iconsminds-money-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb4;&nbsp;'); }
.iconsminds-printer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb5;&nbsp;'); }
.iconsminds-sheep { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb8;&nbsp;'); }
.iconsminds-cow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebb9;&nbsp;'); }
.iconsminds-dog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebba;&nbsp;'); }
.iconsminds-deer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xebbb;&nbsp;'); }

View File

@ -0,0 +1,981 @@
@font-face {
font-family: 'iconsminds';
src: url('../font/iconsminds.eot?42207379');
src: url('../font/iconsminds.eot?42207379#iefix') format('embedded-opentype'),
url('../font/iconsminds.woff2?42207379') format('woff2'),
url('../font/iconsminds.woff?42207379') format('woff'),
url('../font/iconsminds.ttf?42207379') format('truetype'),
url('../font/iconsminds.svg?42207379#iconsminds') 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: 'iconsminds';
src: url('../font/iconsminds.svg?42207379#iconsminds') format('svg');
}
}
*/
[class^="iconsminds-"]:before, [class*=" iconsminds-"]:before {
font-family: "iconsminds";
font-style: normal;
font-weight: normal;
speak: none;
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); */
}
.iconsminds-add-space-after-paragraph:before { content: '\e800'; } /* '' */
.iconsminds-add-space-before-paragraph:before { content: '\e801'; } /* '' */
.iconsminds-align-center:before { content: '\e802'; } /* '' */
.iconsminds-align-justify-all:before { content: '\e803'; } /* '' */
.iconsminds-align-justify-center:before { content: '\e804'; } /* '' */
.iconsminds-align-justify-left:before { content: '\e805'; } /* '' */
.iconsminds-align-justify-right:before { content: '\e806'; } /* '' */
.iconsminds-align-left:before { content: '\e807'; } /* '' */
.iconsminds-align-right:before { content: '\e808'; } /* '' */
.iconsminds-decrase-inedit:before { content: '\e809'; } /* '' */
.iconsminds-increase-inedit:before { content: '\e80a'; } /* '' */
.iconsminds-indent-first-line:before { content: '\e80b'; } /* '' */
.iconsminds-indent-left-margin:before { content: '\e80c'; } /* '' */
.iconsminds-indent-right-margin:before { content: '\e80d'; } /* '' */
.iconsminds-line-spacing:before { content: '\e80e'; } /* '' */
.iconsminds-arrow-fork:before { content: '\e80f'; } /* '' */
.iconsminds-arrow-from:before { content: '\e810'; } /* '' */
.iconsminds-arrow-inside-45:before { content: '\e811'; } /* '' */
.iconsminds-arrow-inside-gap-45:before { content: '\e812'; } /* '' */
.iconsminds-arrow-inside-gap:before { content: '\e813'; } /* '' */
.iconsminds-arrow-inside:before { content: '\e814'; } /* '' */
.iconsminds-arrow-into:before { content: '\e815'; } /* '' */
.iconsminds-arrow-junction:before { content: '\e817'; } /* '' */
.iconsminds-arrow-loop:before { content: '\e818'; } /* '' */
.iconsminds-arrow-merge:before { content: '\e819'; } /* '' */
.iconsminds-arrow-mix:before { content: '\e81a'; } /* '' */
.iconsminds-arrow-out-left:before { content: '\e81b'; } /* '' */
.iconsminds-arrow-out-right:before { content: '\e81c'; } /* '' */
.iconsminds-arrow-outside-45:before { content: '\e81d'; } /* '' */
.iconsminds-arrow-outside-gap-45:before { content: '\e81e'; } /* '' */
.iconsminds-arrow-outside-gap:before { content: '\e81f'; } /* '' */
.iconsminds-arrow-outside:before { content: '\e820'; } /* '' */
.iconsminds-arrow-over:before { content: '\e821'; } /* '' */
.iconsminds-arrow-shuffle:before { content: '\e822'; } /* '' */
.iconsminds-arrow-squiggly:before { content: '\e823'; } /* '' */
.iconsminds-arrow-through:before { content: '\e824'; } /* '' */
.iconsminds-arrow-to:before { content: '\e825'; } /* '' */
.iconsminds-double-circle:before { content: '\e826'; } /* '' */
.iconsminds-full-view-2:before { content: '\e827'; } /* '' */
.iconsminds-full-view:before { content: '\e828'; } /* '' */
.iconsminds-maximize:before { content: '\e829'; } /* '' */
.iconsminds-minimize:before { content: '\e82a'; } /* '' */
.iconsminds-resize:before { content: '\e82b'; } /* '' */
.iconsminds-three-arrow-fork:before { content: '\e82c'; } /* '' */
.iconsminds-view-height:before { content: '\e82d'; } /* '' */
.iconsminds-view-width:before { content: '\e82e'; } /* '' */
.iconsminds-arrow-around:before { content: '\e82f'; } /* '' */
.iconsminds-arrow-barrier:before { content: '\e830'; } /* '' */
.iconsminds-arrow-circle:before { content: '\e831'; } /* '' */
.iconsminds-arrow-cross:before { content: '\e832'; } /* '' */
.iconsminds-arrow-back-2:before { content: '\e833'; } /* '' */
.iconsminds-arrow-back-3:before { content: '\e834'; } /* '' */
.iconsminds-arrow-back:before { content: '\e835'; } /* '' */
.iconsminds-arrow-down-2:before { content: '\e836'; } /* '' */
.iconsminds-arrow-down-3:before { content: '\e837'; } /* '' */
.iconsminds-arrow-down-in-circle:before { content: '\e838'; } /* '' */
.iconsminds-arrow-down:before { content: '\e839'; } /* '' */
.iconsminds-arrow-forward-2:before { content: '\e83a'; } /* '' */
.iconsminds-arrow-forward:before { content: '\e83b'; } /* '' */
.iconsminds-arrow-left-2:before { content: '\e83c'; } /* '' */
.iconsminds-arrow-left-in-circle:before { content: '\e83d'; } /* '' */
.iconsminds-arrow-left:before { content: '\e83e'; } /* '' */
.iconsminds-arrow-next:before { content: '\e83f'; } /* '' */
.iconsminds-arrow-refresh-2:before { content: '\e840'; } /* '' */
.iconsminds-arrow-refresh:before { content: '\e841'; } /* '' */
.iconsminds-arrow-right-2:before { content: '\e842'; } /* '' */
.iconsminds-arrow-right-in-circle:before { content: '\e843'; } /* '' */
.iconsminds-arrow-right:before { content: '\e844'; } /* '' */
.iconsminds-arrow-turn-left:before { content: '\e845'; } /* '' */
.iconsminds-arrow-turn-right:before { content: '\e846'; } /* '' */
.iconsminds-arrow-up-2:before { content: '\e847'; } /* '' */
.iconsminds-arrow-up-3:before { content: '\e848'; } /* '' */
.iconsminds-arrow-up-in-circle:before { content: '\e849'; } /* '' */
.iconsminds-arrow-up:before { content: '\e84a'; } /* '' */
.iconsminds-arrow-x-left:before { content: '\e84b'; } /* '' */
.iconsminds-arrow-x-right:before { content: '\e84c'; } /* '' */
.iconsminds-bottom-to-top:before { content: '\e84d'; } /* '' */
.iconsminds-down:before { content: '\e84e'; } /* '' */
.iconsminds-down-2:before { content: '\e84f'; } /* '' */
.iconsminds-down-3:before { content: '\e850'; } /* '' */
.iconsminds-download:before { content: '\e851'; } /* '' */
.iconsminds-end:before { content: '\e852'; } /* '' */
.iconsminds-fit-to-2:before { content: '\e853'; } /* '' */
.iconsminds-fit-to:before { content: '\e854'; } /* '' */
.iconsminds-full-screen-2:before { content: '\e855'; } /* '' */
.iconsminds-full-screen:before { content: '\e856'; } /* '' */
.iconsminds-go-bottom:before { content: '\e857'; } /* '' */
.iconsminds-go-top:before { content: '\e858'; } /* '' */
.iconsminds-left---right-3:before { content: '\e859'; } /* '' */
.iconsminds-left---right:before { content: '\e85a'; } /* '' */
.iconsminds-left:before { content: '\e85b'; } /* '' */
.iconsminds-left-2:before { content: '\e85c'; } /* '' */
.iconsminds-left-3:before { content: '\e85d'; } /* '' */
.iconsminds-left-to-right:before { content: '\e85e'; } /* '' */
.iconsminds-loop:before { content: '\e85f'; } /* '' */
.iconsminds-navigate-end:before { content: '\e860'; } /* '' */
.iconsminds-navigat-start:before { content: '\e861'; } /* '' */
.iconsminds-reload:before { content: '\e862'; } /* '' */
.iconsminds-reload-2:before { content: '\e863'; } /* '' */
.iconsminds-repeat:before { content: '\e864'; } /* '' */
.iconsminds-repeat-2:before { content: '\e865'; } /* '' */
.iconsminds-repeat-3:before { content: '\e866'; } /* '' */
.iconsminds-repeat-4:before { content: '\e867'; } /* '' */
.iconsminds-right:before { content: '\e868'; } /* '' */
.iconsminds-right-2:before { content: '\e869'; } /* '' */
.iconsminds-right-3:before { content: '\e86a'; } /* '' */
.iconsminds-right-to-left:before { content: '\e86b'; } /* '' */
.iconsminds-shuffle:before { content: '\e86c'; } /* '' */
.iconsminds-shuffle-2:before { content: '\e86d'; } /* '' */
.iconsminds-start:before { content: '\e86e'; } /* '' */
.iconsminds-sync:before { content: '\e86f'; } /* '' */
.iconsminds-to-bottom-2:before { content: '\e870'; } /* '' */
.iconsminds-to-bottom:before { content: '\e871'; } /* '' */
.iconsminds-to-left:before { content: '\e872'; } /* '' */
.iconsminds-top-to-bottom:before { content: '\e873'; } /* '' */
.iconsminds-to-right:before { content: '\e874'; } /* '' */
.iconsminds-to-top-2:before { content: '\e875'; } /* '' */
.iconsminds-to-top:before { content: '\e876'; } /* '' */
.iconsminds-triangle-arrow-down:before { content: '\e877'; } /* '' */
.iconsminds-triangle-arrow-left:before { content: '\e878'; } /* '' */
.iconsminds-triangle-arrow-right:before { content: '\e879'; } /* '' */
.iconsminds-triangle-arrow-up:before { content: '\e87a'; } /* '' */
.iconsminds-turn-down-2:before { content: '\e87b'; } /* '' */
.iconsminds-turn-down-from-left:before { content: '\e87c'; } /* '' */
.iconsminds-turn-down-from-right:before { content: '\e87d'; } /* '' */
.iconsminds-turn-down:before { content: '\e87e'; } /* '' */
.iconsminds-turn-left-3:before { content: '\e87f'; } /* '' */
.iconsminds-turn-left:before { content: '\e880'; } /* '' */
.iconsminds-turn-right-3:before { content: '\e881'; } /* '' */
.iconsminds-turn-right:before { content: '\e882'; } /* '' */
.iconsminds-turn-up-2:before { content: '\e883'; } /* '' */
.iconsminds-turn-up:before { content: '\e884'; } /* '' */
.iconsminds-up---down-3:before { content: '\e885'; } /* '' */
.iconsminds-up---down:before { content: '\e886'; } /* '' */
.iconsminds-up:before { content: '\e887'; } /* '' */
.iconsminds-up-2:before { content: '\e888'; } /* '' */
.iconsminds-up-3:before { content: '\e889'; } /* '' */
.iconsminds-upload:before { content: '\e88a'; } /* '' */
.iconsminds-billing:before { content: '\e88b'; } /* '' */
.iconsminds-binocular:before { content: '\e88c'; } /* '' */
.iconsminds-bone:before { content: '\e88d'; } /* '' */
.iconsminds-box-close:before { content: '\e88e'; } /* '' */
.iconsminds-box-with-folders:before { content: '\e88f'; } /* '' */
.iconsminds-brush:before { content: '\e890'; } /* '' */
.iconsminds-bucket:before { content: '\e891'; } /* '' */
.iconsminds-camera-3:before { content: '\e892'; } /* '' */
.iconsminds-camera-4:before { content: '\e893'; } /* '' */
.iconsminds-candle:before { content: '\e894'; } /* '' */
.iconsminds-candy:before { content: '\e895'; } /* '' */
.iconsminds-chair:before { content: '\e896'; } /* '' */
.iconsminds-control:before { content: '\e897'; } /* '' */
.iconsminds-control-2:before { content: '\e898'; } /* '' */
.iconsminds-crop-2:before { content: '\e899'; } /* '' */
.iconsminds-crown-2:before { content: '\e89a'; } /* '' */
.iconsminds-dashboard:before { content: '\e89b'; } /* '' */
.iconsminds-data-center:before { content: '\e89c'; } /* '' */
.iconsminds-data-cloud:before { content: '\e89d'; } /* '' */
.iconsminds-data-download:before { content: '\e89e'; } /* '' */
.iconsminds-data-storage:before { content: '\e89f'; } /* '' */
.iconsminds-delete-file:before { content: '\e8a0'; } /* '' */
.iconsminds-dice:before { content: '\e8a1'; } /* '' */
.iconsminds-drill:before { content: '\e8a2'; } /* '' */
.iconsminds-duplicate-layer:before { content: '\e8a3'; } /* '' */
.iconsminds-electricity:before { content: '\e8a4'; } /* '' */
.iconsminds-factory:before { content: '\e8a5'; } /* '' */
.iconsminds-feather:before { content: '\e8a6'; } /* '' */
.iconsminds-file:before { content: '\e8a7'; } /* '' */
.iconsminds-file-clipboard-file---text:before { content: '\e8a8'; } /* '' */
.iconsminds-file-clipboard:before { content: '\e8a9'; } /* '' */
.iconsminds-file-copy:before { content: '\e8aa'; } /* '' */
.iconsminds-file-edit:before { content: '\e8ab'; } /* '' */
.iconsminds-file-horizontal:before { content: '\e8ac'; } /* '' */
.iconsminds-files:before { content: '\e8ad'; } /* '' */
.iconsminds-file-zip:before { content: '\e8ae'; } /* '' */
.iconsminds-filter-2:before { content: '\e8af'; } /* '' */
.iconsminds-flash-2:before { content: '\e8b0'; } /* '' */
.iconsminds-folder:before { content: '\e8b1'; } /* '' */
.iconsminds-folder-add--:before { content: '\e8b2'; } /* '' */
.iconsminds-folder-block:before { content: '\e8b3'; } /* '' */
.iconsminds-folder-close:before { content: '\e8b4'; } /* '' */
.iconsminds-folder-cloud:before { content: '\e8b5'; } /* '' */
.iconsminds-folder-delete:before { content: '\e8b6'; } /* '' */
.iconsminds-folder-edit:before { content: '\e8b7'; } /* '' */
.iconsminds-folder-open:before { content: '\e8b8'; } /* '' */
.iconsminds-folders:before { content: '\e8b9'; } /* '' */
.iconsminds-folder-zip:before { content: '\e8ba'; } /* '' */
.iconsminds-funny-bicycle:before { content: '\e8bb'; } /* '' */
.iconsminds-gas-pump:before { content: '\e8bc'; } /* '' */
.iconsminds-gear:before { content: '\e8bd'; } /* '' */
.iconsminds-gear-2:before { content: '\e8be'; } /* '' */
.iconsminds-gears:before { content: '\e8bf'; } /* '' */
.iconsminds-gift-box:before { content: '\e8c1'; } /* '' */
.iconsminds-grave:before { content: '\e8c2'; } /* '' */
.iconsminds-headphone:before { content: '\e8c3'; } /* '' */
.iconsminds-headset:before { content: '\e8c4'; } /* '' */
.iconsminds-hipster-men:before { content: '\e8c5'; } /* '' */
.iconsminds-hub:before { content: '\e8c6'; } /* '' */
.iconsminds-idea:before { content: '\e8c7'; } /* '' */
.iconsminds-information:before { content: '\e8c8'; } /* '' */
.iconsminds-key:before { content: '\e8c9'; } /* '' */
.iconsminds-knife:before { content: '\e8ca'; } /* '' */
.iconsminds-lantern:before { content: '\e8cb'; } /* '' */
.iconsminds-layer-backward:before { content: '\e8cc'; } /* '' */
.iconsminds-layer-forward:before { content: '\e8cd'; } /* '' */
.iconsminds-library:before { content: '\e8ce'; } /* '' */
.iconsminds-light-bulb-2:before { content: '\e8d0'; } /* '' */
.iconsminds-loading:before { content: '\e8d1'; } /* '' */
.iconsminds-loading-2:before { content: '\e8d2'; } /* '' */
.iconsminds-loading-3:before { content: '\e8d3'; } /* '' */
.iconsminds-magic-wand:before { content: '\e8d4'; } /* '' */
.iconsminds-magnifi-glass--:before { content: '\e8d5'; } /* '' */
.iconsminds-magnifi-glass--:before { content: '\e8d6'; } /* '' */
.iconsminds-magnifi-glass:before { content: '\e8d7'; } /* '' */
.iconsminds-memory-card-2:before { content: '\e8d8'; } /* '' */
.iconsminds-mine:before { content: '\e8d9'; } /* '' */
.iconsminds-mustache-2:before { content: '\e8da'; } /* '' */
.iconsminds-office-lamp:before { content: '\e8db'; } /* '' */
.iconsminds-old-sticky-2:before { content: '\e8dc'; } /* '' */
.iconsminds-on-off:before { content: '\e8dd'; } /* '' */
.iconsminds-on-off-2:before { content: '\e8de'; } /* '' */
.iconsminds-on-off-3:before { content: '\e8df'; } /* '' */
.iconsminds-palette:before { content: '\e8e0'; } /* '' */
.iconsminds-paper:before { content: '\e8e1'; } /* '' */
.iconsminds-pen:before { content: '\e8e2'; } /* '' */
.iconsminds-photo:before { content: '\e8e3'; } /* '' */
.iconsminds-photo-album-2:before { content: '\e8e4'; } /* '' */
.iconsminds-power-station:before { content: '\e8e5'; } /* '' */
.iconsminds-preview:before { content: '\e8e6'; } /* '' */
.iconsminds-pricing:before { content: '\e8e7'; } /* '' */
.iconsminds-profile:before { content: '\e8e8'; } /* '' */
.iconsminds-project:before { content: '\e8e9'; } /* '' */
.iconsminds-puzzle:before { content: '\e8ea'; } /* '' */
.iconsminds-refinery:before { content: '\e8eb'; } /* '' */
.iconsminds-remove-file:before { content: '\e8ec'; } /* '' */
.iconsminds-rename:before { content: '\e8ed'; } /* '' */
.iconsminds-repair:before { content: '\e8ee'; } /* '' */
.iconsminds-ruler:before { content: '\e8ef'; } /* '' */
.iconsminds-save:before { content: '\e8f0'; } /* '' */
.iconsminds-scissor:before { content: '\e8f2'; } /* '' */
.iconsminds-scroller:before { content: '\e8f3'; } /* '' */
.iconsminds-scroller-2:before { content: '\e8f4'; } /* '' */
.iconsminds-share:before { content: '\e8f5'; } /* '' */
.iconsminds-smoking-pipe:before { content: '\e8f6'; } /* '' */
.iconsminds-solar:before { content: '\e8f7'; } /* '' */
.iconsminds-statistic:before { content: '\e8f8'; } /* '' */
.iconsminds-suitcase:before { content: '\e8f9'; } /* '' */
.iconsminds-support:before { content: '\e8fa'; } /* '' */
.iconsminds-switch:before { content: '\e8fb'; } /* '' */
.iconsminds-tripod-with-camera:before { content: '\e8fc'; } /* '' */
.iconsminds-upgrade:before { content: '\e8fd'; } /* '' */
.iconsminds-user:before { content: '\e8fe'; } /* '' */
.iconsminds-windmill:before { content: '\e8ff'; } /* '' */
.iconsminds-witch-hat:before { content: '\e900'; } /* '' */
.iconsminds-wrench:before { content: '\e901'; } /* '' */
.iconsminds-add-file:before { content: '\e902'; } /* '' */
.iconsminds-affiliate:before { content: '\e903'; } /* '' */
.iconsminds-anchor:before { content: '\e904'; } /* '' */
.iconsminds-balloon:before { content: '\e905'; } /* '' */
.iconsminds-beard-3:before { content: '\e906'; } /* '' */
.iconsminds-bicycle:before { content: '\e907'; } /* '' */
.iconsminds-big-data:before { content: '\e908'; } /* '' */
.iconsminds-eifel-tower:before { content: '\e909'; } /* '' */
.iconsminds-el-castillo:before { content: '\e90a'; } /* '' */
.iconsminds-embassy:before { content: '\e90b'; } /* '' */
.iconsminds-empire-state-building:before { content: '\e90c'; } /* '' */
.iconsminds-factory-1:before { content: '\e90d'; } /* '' */
.iconsminds-fire-staion:before { content: '\e90e'; } /* '' */
.iconsminds-home:before { content: '\e90f'; } /* '' */
.iconsminds-home-3:before { content: '\e910'; } /* '' */
.iconsminds-home-4:before { content: '\e911'; } /* '' */
.iconsminds-hotel:before { content: '\e912'; } /* '' */
.iconsminds-japanese-gate:before { content: '\e913'; } /* '' */
.iconsminds-leaning-tower:before { content: '\e914'; } /* '' */
.iconsminds-lighthouse:before { content: '\e915'; } /* '' */
.iconsminds-museum:before { content: '\e916'; } /* '' */
.iconsminds-office:before { content: '\e917'; } /* '' */
.iconsminds-opera-house:before { content: '\e918'; } /* '' */
.iconsminds-piramids:before { content: '\e91b'; } /* '' */
.iconsminds-police-station:before { content: '\e91c'; } /* '' */
.iconsminds-post-office:before { content: '\e91d'; } /* '' */
.iconsminds-prater:before { content: '\e91e'; } /* '' */
.iconsminds-roof:before { content: '\e91f'; } /* '' */
.iconsminds-space-needle:before { content: '\e920'; } /* '' */
.iconsminds-the-white-house:before { content: '\e922'; } /* '' */
.iconsminds-tower:before { content: '\e923'; } /* '' */
.iconsminds-bank:before { content: '\e924'; } /* '' */
.iconsminds-berlin-tower:before { content: '\e925'; } /* '' */
.iconsminds-big-bang:before { content: '\e926'; } /* '' */
.iconsminds-building:before { content: '\e927'; } /* '' */
.iconsminds-castle:before { content: '\e928'; } /* '' */
.iconsminds-chinese-temple:before { content: '\e929'; } /* '' */
.iconsminds-chrysler-building:before { content: '\e92a'; } /* '' */
.iconsminds-city-hall:before { content: '\e92b'; } /* '' */
.iconsminds-clothing-store:before { content: '\e92c'; } /* '' */
.iconsminds-colosseum:before { content: '\e92d'; } /* '' */
.iconsminds-column:before { content: '\e92e'; } /* '' */
.iconsminds-coins:before { content: '\e92f'; } /* '' */
.iconsminds-coins-2:before { content: '\e930'; } /* '' */
.iconsminds-diamond:before { content: '\e933'; } /* '' */
.iconsminds-dollar:before { content: '\e934'; } /* '' */
.iconsminds-dollar-sign-2:before { content: '\e935'; } /* '' */
.iconsminds-euro:before { content: '\e936'; } /* '' */
.iconsminds-euro-sign-2:before { content: '\e937'; } /* '' */
.iconsminds-financial:before { content: '\e938'; } /* '' */
.iconsminds-handshake:before { content: '\e939'; } /* '' */
.iconsminds-pie-chart-3:before { content: '\e93c'; } /* '' */
.iconsminds-pie-chart:before { content: '\e93d'; } /* '' */
.iconsminds-pound:before { content: '\e93e'; } /* '' */
.iconsminds-pound-sign-2:before { content: '\e93f'; } /* '' */
.iconsminds-safe-box:before { content: '\e940'; } /* '' */
.iconsminds-wallet:before { content: '\e941'; } /* '' */
.iconsminds-bar-chart-4:before { content: '\e942'; } /* '' */
.iconsminds-jeans:before { content: '\e946'; } /* '' */
.iconsminds-sunglasses-w-3:before { content: '\e947'; } /* '' */
.iconsminds-tie:before { content: '\e948'; } /* '' */
.iconsminds-t-shirt:before { content: '\e949'; } /* '' */
.iconsminds-baby-clothes:before { content: '\e94a'; } /* '' */
.iconsminds-belt:before { content: '\e94b'; } /* '' */
.iconsminds-bikini:before { content: '\e94c'; } /* '' */
.iconsminds-blouse:before { content: '\e94d'; } /* '' */
.iconsminds-boot:before { content: '\e94e'; } /* '' */
.iconsminds-bow-3:before { content: '\e94f'; } /* '' */
.iconsminds-bra:before { content: '\e950'; } /* '' */
.iconsminds-cap:before { content: '\e951'; } /* '' */
.iconsminds-coat:before { content: '\e952'; } /* '' */
.iconsminds-dress:before { content: '\e953'; } /* '' */
.iconsminds-glasses-3:before { content: '\e954'; } /* '' */
.iconsminds-gloves:before { content: '\e955'; } /* '' */
.iconsminds-hanger:before { content: '\e956'; } /* '' */
.iconsminds-heels-2:before { content: '\e957'; } /* '' */
.iconsminds-jacket:before { content: '\e958'; } /* '' */
.iconsminds-walkie-talkie:before { content: '\e959'; } /* '' */
.iconsminds-wifi:before { content: '\e95a'; } /* '' */
.iconsminds-address-book-2:before { content: '\e95b'; } /* '' */
.iconsminds-bell:before { content: '\e95c'; } /* '' */
.iconsminds-bird-delivering-letter:before { content: '\e95d'; } /* '' */
.iconsminds-communication-tower-2:before { content: '\e95e'; } /* '' */
.iconsminds-fax:before { content: '\e95f'; } /* '' */
.iconsminds-megaphone:before { content: '\e960'; } /* '' */
.iconsminds-newspaper:before { content: '\e961'; } /* '' */
.iconsminds-old-telephone:before { content: '\e962'; } /* '' */
.iconsminds-router:before { content: '\e963'; } /* '' */
.iconsminds-telephone-2:before { content: '\e964'; } /* '' */
.iconsminds-smartphone-4:before { content: '\e965'; } /* '' */
.iconsminds-tablet-3:before { content: '\e966'; } /* '' */
.iconsminds-computer:before { content: '\e967'; } /* '' */
.iconsminds-laptop---phone:before { content: '\e968'; } /* '' */
.iconsminds-laptop---tablet:before { content: '\e969'; } /* '' */
.iconsminds-laptop-3:before { content: '\e96a'; } /* '' */
.iconsminds-monitor:before { content: '\e96b'; } /* '' */
.iconsminds-monitor---laptop:before { content: '\e96c'; } /* '' */
.iconsminds-monitor---phone:before { content: '\e96d'; } /* '' */
.iconsminds-monitor---tablet:before { content: '\e96e'; } /* '' */
.iconsminds-monitor-3:before { content: '\e96f'; } /* '' */
.iconsminds-monitor-vertical:before { content: '\e970'; } /* '' */
.iconsminds-orientation:before { content: '\e971'; } /* '' */
.iconsminds-phone-3:before { content: '\e972'; } /* '' */
.iconsminds-smartphone-3:before { content: '\e973'; } /* '' */
.iconsminds-quill-3:before { content: '\e974'; } /* '' */
.iconsminds-student-hat:before { content: '\e975'; } /* '' */
.iconsminds-blackboard:before { content: '\e976'; } /* '' */
.iconsminds-book:before { content: '\e977'; } /* '' */
.iconsminds-bookmark:before { content: '\e978'; } /* '' */
.iconsminds-books:before { content: '\e979'; } /* '' */
.iconsminds-compass-2:before { content: '\e97a'; } /* '' */
.iconsminds-diploma-2:before { content: '\e97b'; } /* '' */
.iconsminds-eraser-2:before { content: '\e97c'; } /* '' */
.iconsminds-formula:before { content: '\e97d'; } /* '' */
.iconsminds-notepad:before { content: '\e97e'; } /* '' */
.iconsminds-open-book:before { content: '\e97f'; } /* '' */
.iconsminds-pen-2:before { content: '\e980'; } /* '' */
.iconsminds-pi:before { content: '\e981'; } /* '' */
.iconsminds-pipette:before { content: '\e982'; } /* '' */
.iconsminds-mail-block:before { content: '\e983'; } /* '' */
.iconsminds-mailbox-empty:before { content: '\e984'; } /* '' */
.iconsminds-mailbox-full:before { content: '\e985'; } /* '' */
.iconsminds-mail-delete:before { content: '\e986'; } /* '' */
.iconsminds-mail-favorite:before { content: '\e987'; } /* '' */
.iconsminds-mail-forward:before { content: '\e988'; } /* '' */
.iconsminds-mail-gallery:before { content: '\e989'; } /* '' */
.iconsminds-mail-inbox:before { content: '\e98a'; } /* '' */
.iconsminds-mail-link:before { content: '\e98b'; } /* '' */
.iconsminds-mail-lock:before { content: '\e98c'; } /* '' */
.iconsminds-mail-love:before { content: '\e98d'; } /* '' */
.iconsminds-mail-money:before { content: '\e98e'; } /* '' */
.iconsminds-mail-open:before { content: '\e98f'; } /* '' */
.iconsminds-mail-outbox:before { content: '\e990'; } /* '' */
.iconsminds-mail-password:before { content: '\e991'; } /* '' */
.iconsminds-mail-photo:before { content: '\e992'; } /* '' */
.iconsminds-mail-read:before { content: '\e993'; } /* '' */
.iconsminds-mail-remove-x:before { content: '\e994'; } /* '' */
.iconsminds-mail-reply-all:before { content: '\e995'; } /* '' */
.iconsminds-mail-reply:before { content: '\e996'; } /* '' */
.iconsminds-mail-search:before { content: '\e997'; } /* '' */
.iconsminds-mail-send:before { content: '\e998'; } /* '' */
.iconsminds-mail-settings:before { content: '\e999'; } /* '' */
.iconsminds-mail-unread:before { content: '\e99a'; } /* '' */
.iconsminds-mail-video:before { content: '\e99b'; } /* '' */
.iconsminds-mail-with-at-sign:before { content: '\e99c'; } /* '' */
.iconsminds-mail-with-cursors:before { content: '\e99d'; } /* '' */
.iconsminds-new-mail:before { content: '\e99e'; } /* '' */
.iconsminds-post-mail-2:before { content: '\e99f'; } /* '' */
.iconsminds-post-mail:before { content: '\e9a0'; } /* '' */
.iconsminds-spam-mail:before { content: '\e9a1'; } /* '' */
.iconsminds-stamp:before { content: '\e9a2'; } /* '' */
.iconsminds-stamp-2:before { content: '\e9a3'; } /* '' */
.iconsminds-voicemail:before { content: '\e9a4'; } /* '' */
.iconsminds-at-sign:before { content: '\e9a5'; } /* '' */
.iconsminds-box-full:before { content: '\e9a6'; } /* '' */
.iconsminds-empty-box:before { content: '\e9a7'; } /* '' */
.iconsminds-envelope:before { content: '\e9a8'; } /* '' */
.iconsminds-envelope-2:before { content: '\e9a9'; } /* '' */
.iconsminds-inbox:before { content: '\e9aa'; } /* '' */
.iconsminds-inbox-empty:before { content: '\e9ab'; } /* '' */
.iconsminds-inbox-forward:before { content: '\e9ac'; } /* '' */
.iconsminds-inbox-full:before { content: '\e9ad'; } /* '' */
.iconsminds-inbox-into:before { content: '\e9ae'; } /* '' */
.iconsminds-inbox-out:before { content: '\e9af'; } /* '' */
.iconsminds-inbox-reply:before { content: '\e9b0'; } /* '' */
.iconsminds-letter-close:before { content: '\e9b1'; } /* '' */
.iconsminds-letter-open:before { content: '\e9b2'; } /* '' */
.iconsminds-letter-sent:before { content: '\e9b3'; } /* '' */
.iconsminds-mail:before { content: '\e9b4'; } /* '' */
.iconsminds-mail-2:before { content: '\e9b5'; } /* '' */
.iconsminds-mail-3:before { content: '\e9b6'; } /* '' */
.iconsminds-mail-add--:before { content: '\e9b7'; } /* '' */
.iconsminds-mail-attachement:before { content: '\e9b8'; } /* '' */
.iconsminds-ice-cream:before { content: '\e9b9'; } /* '' */
.iconsminds-lollipop:before { content: '\e9ba'; } /* '' */
.iconsminds-open-banana:before { content: '\e9bb'; } /* '' */
.iconsminds-pepper:before { content: '\e9bc'; } /* '' */
.iconsminds-tee-mug:before { content: '\e9bd'; } /* '' */
.iconsminds-tomato:before { content: '\e9be'; } /* '' */
.iconsminds-apple:before { content: '\e9bf'; } /* '' */
.iconsminds-apple-bite:before { content: '\e9c0'; } /* '' */
.iconsminds-beer-glass:before { content: '\e9c1'; } /* '' */
.iconsminds-birthday-cake:before { content: '\e9c2'; } /* '' */
.iconsminds-bread:before { content: '\e9c3'; } /* '' */
.iconsminds-cake:before { content: '\e9c4'; } /* '' */
.iconsminds-can:before { content: '\e9c5'; } /* '' */
.iconsminds-can-2:before { content: '\e9c6'; } /* '' */
.iconsminds-cheese:before { content: '\e9c7'; } /* '' */
.iconsminds-chef-hat:before { content: '\e9c8'; } /* '' */
.iconsminds-chopsticks:before { content: '\e9c9'; } /* '' */
.iconsminds-cocktail:before { content: '\e9ca'; } /* '' */
.iconsminds-coffee:before { content: '\e9cb'; } /* '' */
.iconsminds-coffee-bean:before { content: '\e9cc'; } /* '' */
.iconsminds-coffee-to-go:before { content: '\e9cd'; } /* '' */
.iconsminds-cookies:before { content: '\e9ce'; } /* '' */
.iconsminds-croissant:before { content: '\e9cf'; } /* '' */
.iconsminds-cupcake:before { content: '\e9d0'; } /* '' */
.iconsminds-doughnut:before { content: '\e9d1'; } /* '' */
.iconsminds-fish:before { content: '\e9d2'; } /* '' */
.iconsminds-glass-water:before { content: '\e9d3'; } /* '' */
.iconsminds-hamburger:before { content: '\e9d4'; } /* '' */
.iconsminds-hot-dog:before { content: '\e9d5'; } /* '' */
.iconsminds-webcam:before { content: '\e9d7'; } /* '' */
.iconsminds-battery-0:before { content: '\e9d8'; } /* '' */
.iconsminds-battery-100:before { content: '\e9d9'; } /* '' */
.iconsminds-battery-charge:before { content: '\e9da'; } /* '' */
.iconsminds-charger:before { content: '\e9db'; } /* '' */
.iconsminds-cpu:before { content: '\e9dc'; } /* '' */
.iconsminds-disk:before { content: '\e9dd'; } /* '' */
.iconsminds-dvd:before { content: '\e9de'; } /* '' */
.iconsminds-fan:before { content: '\e9df'; } /* '' */
.iconsminds-gamepad-2:before { content: '\e9e0'; } /* '' */
.iconsminds-hdd:before { content: '\e9e1'; } /* '' */
.iconsminds-keyboard:before { content: '\e9e2'; } /* '' */
.iconsminds-mouse:before { content: '\e9e3'; } /* '' */
.iconsminds-mouse-3:before { content: '\e9e4'; } /* '' */
.iconsminds-plug-in:before { content: '\e9e5'; } /* '' */
.iconsminds-power:before { content: '\e9e6'; } /* '' */
.iconsminds-power-cable:before { content: '\e9e7'; } /* '' */
.iconsminds-remote-controll-2:before { content: '\e9e8'; } /* '' */
.iconsminds-server-2:before { content: '\e9e9'; } /* '' */
.iconsminds-speaker:before { content: '\e9ea'; } /* '' */
.iconsminds-start-ways:before { content: '\e9eb'; } /* '' */
.iconsminds-synchronize:before { content: '\e9ec'; } /* '' */
.iconsminds-synchronize-2:before { content: '\e9ed'; } /* '' */
.iconsminds-undo:before { content: '\e9ee'; } /* '' */
.iconsminds-up-1:before { content: '\e9ef'; } /* '' */
.iconsminds-upload-1:before { content: '\e9f0'; } /* '' */
.iconsminds-upward:before { content: '\e9f1'; } /* '' */
.iconsminds-yes:before { content: '\e9f2'; } /* '' */
.iconsminds-add:before { content: '\e9f3'; } /* '' */
.iconsminds-back:before { content: '\e9f4'; } /* '' */
.iconsminds-broken-link:before { content: '\e9f5'; } /* '' */
.iconsminds-check:before { content: '\e9f6'; } /* '' */
.iconsminds-close:before { content: '\e9f8'; } /* '' */
.iconsminds-cursor:before { content: '\e9f9'; } /* '' */
.iconsminds-cursor-click-2:before { content: '\e9fa'; } /* '' */
.iconsminds-cursor-click:before { content: '\e9fb'; } /* '' */
.iconsminds-cursor-move-2:before { content: '\e9fc'; } /* '' */
.iconsminds-cursor-select:before { content: '\e9fd'; } /* '' */
.iconsminds-down-1:before { content: '\e9fe'; } /* '' */
.iconsminds-download-1:before { content: '\e9ff'; } /* '' */
.iconsminds-downward:before { content: '\ea00'; } /* '' */
.iconsminds-endways:before { content: '\ea01'; } /* '' */
.iconsminds-forward:before { content: '\ea02'; } /* '' */
.iconsminds-left-1:before { content: '\ea03'; } /* '' */
.iconsminds-link:before { content: '\ea04'; } /* '' */
.iconsminds-next:before { content: '\ea05'; } /* '' */
.iconsminds-orientation-1:before { content: '\ea06'; } /* '' */
.iconsminds-pointer:before { content: '\ea07'; } /* '' */
.iconsminds-previous:before { content: '\ea08'; } /* '' */
.iconsminds-redo:before { content: '\ea09'; } /* '' */
.iconsminds-refresh:before { content: '\ea0a'; } /* '' */
.iconsminds-reload-1:before { content: '\ea0b'; } /* '' */
.iconsminds-remove:before { content: '\ea0c'; } /* '' */
.iconsminds-repeat-1:before { content: '\ea0d'; } /* '' */
.iconsminds-reset:before { content: '\ea0e'; } /* '' */
.iconsminds-rewind:before { content: '\ea0f'; } /* '' */
.iconsminds-right-1:before { content: '\ea10'; } /* '' */
.iconsminds-rotation:before { content: '\ea11'; } /* '' */
.iconsminds-rotation-390:before { content: '\ea12'; } /* '' */
.iconsminds-spot:before { content: '\ea13'; } /* '' */
.iconsminds-satelite-2:before { content: '\ea15'; } /* '' */
.iconsminds-compass-1:before { content: '\ea16'; } /* '' */
.iconsminds-direction-east:before { content: '\ea17'; } /* '' */
.iconsminds-edit-map:before { content: '\ea18'; } /* '' */
.iconsminds-geo2:before { content: '\ea19'; } /* '' */
.iconsminds-geo2--:before { content: '\ea1a'; } /* '' */
.iconsminds-geo2--:before { content: '\ea1b'; } /* '' */
.iconsminds-globe-2:before { content: '\ea1c'; } /* '' */
.iconsminds-location-2:before { content: '\ea1d'; } /* '' */
.iconsminds-map2:before { content: '\ea1e'; } /* '' */
.iconsminds-map-marker-2:before { content: '\ea1f'; } /* '' */
.iconsminds-map-marker:before { content: '\ea20'; } /* '' */
.iconsminds-stop:before { content: '\ea21'; } /* '' */
.iconsminds-stop-2:before { content: '\ea22'; } /* '' */
.iconsminds-back-1:before { content: '\ea23'; } /* '' */
.iconsminds-back-2:before { content: '\ea24'; } /* '' */
.iconsminds-eject:before { content: '\ea25'; } /* '' */
.iconsminds-eject-2:before { content: '\ea26'; } /* '' */
.iconsminds-end-1:before { content: '\ea27'; } /* '' */
.iconsminds-end-2:before { content: '\ea28'; } /* '' */
.iconsminds-next-1:before { content: '\ea29'; } /* '' */
.iconsminds-next-2:before { content: '\ea2a'; } /* '' */
.iconsminds-pause:before { content: '\ea2b'; } /* '' */
.iconsminds-pause-2:before { content: '\ea2c'; } /* '' */
.iconsminds-power-2:before { content: '\ea2d'; } /* '' */
.iconsminds-power-3:before { content: '\ea2e'; } /* '' */
.iconsminds-record:before { content: '\ea2f'; } /* '' */
.iconsminds-record-2:before { content: '\ea30'; } /* '' */
.iconsminds-repeat-5:before { content: '\ea31'; } /* '' */
.iconsminds-repeat-6:before { content: '\ea32'; } /* '' */
.iconsminds-shuffle-1:before { content: '\ea33'; } /* '' */
.iconsminds-shuffle-3:before { content: '\ea34'; } /* '' */
.iconsminds-start-1:before { content: '\ea35'; } /* '' */
.iconsminds-start-2:before { content: '\ea36'; } /* '' */
.iconsminds-volume-down:before { content: '\ea37'; } /* '' */
.iconsminds-volume-up:before { content: '\ea38'; } /* '' */
.iconsminds-back-music:before { content: '\ea39'; } /* '' */
.iconsminds-cd-2:before { content: '\ea3a'; } /* '' */
.iconsminds-clef:before { content: '\ea3b'; } /* '' */
.iconsminds-earphones-2:before { content: '\ea3c'; } /* '' */
.iconsminds-equalizer:before { content: '\ea3e'; } /* '' */
.iconsminds-first:before { content: '\ea3f'; } /* '' */
.iconsminds-headphones:before { content: '\ea41'; } /* '' */
.iconsminds-last:before { content: '\ea42'; } /* '' */
.iconsminds-loudspeaker:before { content: '\ea43'; } /* '' */
.iconsminds-mic:before { content: '\ea44'; } /* '' */
.iconsminds-microphone-4:before { content: '\ea45'; } /* '' */
.iconsminds-next-music:before { content: '\ea46'; } /* '' */
.iconsminds-old-radio:before { content: '\ea47'; } /* '' */
.iconsminds-play-music:before { content: '\ea48'; } /* '' */
.iconsminds-radio:before { content: '\ea49'; } /* '' */
.iconsminds-record-1:before { content: '\ea4a'; } /* '' */
.iconsminds-record-music:before { content: '\ea4b'; } /* '' */
.iconsminds-sound:before { content: '\ea4c'; } /* '' */
.iconsminds-speaker-1:before { content: '\ea4d'; } /* '' */
.iconsminds-stop-music:before { content: '\ea4e'; } /* '' */
.iconsminds-trumpet:before { content: '\ea4f'; } /* '' */
.iconsminds-voice:before { content: '\ea50'; } /* '' */
.iconsminds-tree-3:before { content: '\ea51'; } /* '' */
.iconsminds-eci-icon:before { content: '\ea52'; } /* '' */
.iconsminds-environmental:before { content: '\ea53'; } /* '' */
.iconsminds-environmental-3:before { content: '\ea54'; } /* '' */
.iconsminds-fire-flame-2:before { content: '\ea55'; } /* '' */
.iconsminds-green-energy:before { content: '\ea58'; } /* '' */
.iconsminds-green-house:before { content: '\ea59'; } /* '' */
.iconsminds-leafs:before { content: '\ea5b'; } /* '' */
.iconsminds-light-bulb-leaf:before { content: '\ea5c'; } /* '' */
.iconsminds-palm-tree:before { content: '\ea5d'; } /* '' */
.iconsminds-plant:before { content: '\ea5e'; } /* '' */
.iconsminds-recycling-2:before { content: '\ea5f'; } /* '' */
.iconsminds-seed:before { content: '\ea60'; } /* '' */
.iconsminds-trash-with-men:before { content: '\ea61'; } /* '' */
.iconsminds-id-card:before { content: '\ea62'; } /* '' */
.iconsminds-king-2:before { content: '\ea63'; } /* '' */
.iconsminds-male:before { content: '\ea64'; } /* '' */
.iconsminds-male-female:before { content: '\ea65'; } /* '' */
.iconsminds-male-2:before { content: '\ea66'; } /* '' */
.iconsminds-man-sign:before { content: '\ea67'; } /* '' */
.iconsminds-mens:before { content: '\ea68'; } /* '' */
.iconsminds-network:before { content: '\ea69'; } /* '' */
.iconsminds-student-female:before { content: '\ea6a'; } /* '' */
.iconsminds-student-male:before { content: '\ea6b'; } /* '' */
.iconsminds-student-male-female:before { content: '\ea6c'; } /* '' */
.iconsminds-students:before { content: '\ea6d'; } /* '' */
.iconsminds-woman-man:before { content: '\ea6e'; } /* '' */
.iconsminds-add-user:before { content: '\ea6f'; } /* '' */
.iconsminds-administrator:before { content: '\ea70'; } /* '' */
.iconsminds-assistant:before { content: '\ea71'; } /* '' */
.iconsminds-business-man:before { content: '\ea72'; } /* '' */
.iconsminds-business-man-woman:before { content: '\ea73'; } /* '' */
.iconsminds-business-mens:before { content: '\ea74'; } /* '' */
.iconsminds-business-woman:before { content: '\ea75'; } /* '' */
.iconsminds-conference:before { content: '\ea76'; } /* '' */
.iconsminds-doctor:before { content: '\ea77'; } /* '' */
.iconsminds-engineering:before { content: '\ea78'; } /* '' */
.iconsminds-female:before { content: '\ea79'; } /* '' */
.iconsminds-female-2:before { content: '\ea7a'; } /* '' */
.iconsminds-temperature:before { content: '\ea7b'; } /* '' */
.iconsminds-test-tube:before { content: '\ea7c'; } /* '' */
.iconsminds-ambulance:before { content: '\ea7d'; } /* '' */
.iconsminds-atom:before { content: '\ea7e'; } /* '' */
.iconsminds-band-aid:before { content: '\ea7f'; } /* '' */
.iconsminds-bio-hazard:before { content: '\ea80'; } /* '' */
.iconsminds-biotech:before { content: '\ea81'; } /* '' */
.iconsminds-brain:before { content: '\ea82'; } /* '' */
.iconsminds-chemical:before { content: '\ea83'; } /* '' */
.iconsminds-clinic:before { content: '\ea84'; } /* '' */
.iconsminds-danger:before { content: '\ea85'; } /* '' */
.iconsminds-dna:before { content: '\ea86'; } /* '' */
.iconsminds-dna-2:before { content: '\ea87'; } /* '' */
.iconsminds-first-aid:before { content: '\ea88'; } /* '' */
.iconsminds-flask:before { content: '\ea89'; } /* '' */
.iconsminds-medical-sign:before { content: '\ea8a'; } /* '' */
.iconsminds-medicine-3:before { content: '\ea8b'; } /* '' */
.iconsminds-microscope:before { content: '\ea8c'; } /* '' */
.iconsminds-physics:before { content: '\ea8d'; } /* '' */
.iconsminds-plasmid:before { content: '\ea8e'; } /* '' */
.iconsminds-plaster:before { content: '\ea8f'; } /* '' */
.iconsminds-pulse:before { content: '\ea90'; } /* '' */
.iconsminds-radioactive:before { content: '\ea91'; } /* '' */
.iconsminds-stethoscope:before { content: '\ea92'; } /* '' */
.iconsminds-security-settings:before { content: '\ea93'; } /* '' */
.iconsminds-securiy-remove:before { content: '\ea94'; } /* '' */
.iconsminds-shield:before { content: '\ea95'; } /* '' */
.iconsminds-ssl:before { content: '\ea96'; } /* '' */
.iconsminds-type-pass:before { content: '\ea97'; } /* '' */
.iconsminds-unlock-2:before { content: '\ea98'; } /* '' */
.iconsminds-finger-print:before { content: '\ea99'; } /* '' */
.iconsminds-firewall:before { content: '\ea9a'; } /* '' */
.iconsminds-key-lock:before { content: '\ea9b'; } /* '' */
.iconsminds-laptop-secure:before { content: '\ea9c'; } /* '' */
.iconsminds-lock-2:before { content: '\ea9d'; } /* '' */
.iconsminds-password:before { content: '\ea9e'; } /* '' */
.iconsminds-password-field:before { content: '\ea9f'; } /* '' */
.iconsminds-police:before { content: '\eaa0'; } /* '' */
.iconsminds-security-block:before { content: '\eaa2'; } /* '' */
.iconsminds-security-bug:before { content: '\eaa3'; } /* '' */
.iconsminds-security-camera:before { content: '\eaa4'; } /* '' */
.iconsminds-security-check:before { content: '\eaa5'; } /* '' */
.iconsminds-testimonal:before { content: '\eaa6'; } /* '' */
.iconsminds-broke-link-2:before { content: '\eaa7'; } /* '' */
.iconsminds-coding:before { content: '\eaa8'; } /* '' */
.iconsminds-consulting:before { content: '\eaa9'; } /* '' */
.iconsminds-copyright:before { content: '\eaaa'; } /* '' */
.iconsminds-idea-2:before { content: '\eaab'; } /* '' */
.iconsminds-link-2:before { content: '\eaac'; } /* '' */
.iconsminds-management:before { content: '\eaad'; } /* '' */
.iconsminds-monitor-analytics:before { content: '\eaae'; } /* '' */
.iconsminds-monitoring:before { content: '\eaaf'; } /* '' */
.iconsminds-optimization:before { content: '\eab0'; } /* '' */
.iconsminds-tag:before { content: '\eab1'; } /* '' */
.iconsminds-target:before { content: '\eab2'; } /* '' */
.iconsminds-target-market:before { content: '\eab3'; } /* '' */
.iconsminds-shopping-bag:before { content: '\eab5'; } /* '' */
.iconsminds-shopping-basket:before { content: '\eab6'; } /* '' */
.iconsminds-shopping-cart:before { content: '\eab7'; } /* '' */
.iconsminds-tag-3:before { content: '\eab8'; } /* '' */
.iconsminds-add-bag:before { content: '\eab9'; } /* '' */
.iconsminds-add-basket:before { content: '\eaba'; } /* '' */
.iconsminds-add-cart:before { content: '\eabb'; } /* '' */
.iconsminds-bag-items:before { content: '\eabc'; } /* '' */
.iconsminds-bag-quantity:before { content: '\eabd'; } /* '' */
.iconsminds-basket-coins:before { content: '\eabf'; } /* '' */
.iconsminds-basket-items:before { content: '\eac0'; } /* '' */
.iconsminds-basket-quantity:before { content: '\eac1'; } /* '' */
.iconsminds-car-items:before { content: '\eac2'; } /* '' */
.iconsminds-cart-quantity:before { content: '\eac3'; } /* '' */
.iconsminds-cash-register-2:before { content: '\eac4'; } /* '' */
.iconsminds-checkout:before { content: '\eac5'; } /* '' */
.iconsminds-checkout-bag:before { content: '\eac6'; } /* '' */
.iconsminds-checkout-basket:before { content: '\eac7'; } /* '' */
.iconsminds-home-1:before { content: '\eac8'; } /* '' */
.iconsminds-qr-code:before { content: '\eac9'; } /* '' */
.iconsminds-receipt-4:before { content: '\eaca'; } /* '' */
.iconsminds-remove-bag:before { content: '\eacb'; } /* '' */
.iconsminds-remove-basket:before { content: '\eacc'; } /* '' */
.iconsminds-remove-cart:before { content: '\eacd'; } /* '' */
.iconsminds-shop:before { content: '\eace'; } /* '' */
.iconsminds-shop-2:before { content: '\eacf'; } /* '' */
.iconsminds-shop-3:before { content: '\ead0'; } /* '' */
.iconsminds-ying-yang:before { content: '\ead1'; } /* '' */
.iconsminds-bisexual:before { content: '\ead2'; } /* '' */
.iconsminds-cancer:before { content: '\ead3'; } /* '' */
.iconsminds-couple-sign:before { content: '\ead4'; } /* '' */
.iconsminds-family-sign:before { content: '\ead5'; } /* '' */
.iconsminds-female-1:before { content: '\ead6'; } /* '' */
.iconsminds-gey:before { content: '\ead7'; } /* '' */
.iconsminds-heart:before { content: '\ead8'; } /* '' */
.iconsminds-homosexual:before { content: '\ead9'; } /* '' */
.iconsminds-inifity:before { content: '\eada'; } /* '' */
.iconsminds-lesbian:before { content: '\eadb'; } /* '' */
.iconsminds-lesbians:before { content: '\eadc'; } /* '' */
.iconsminds-love:before { content: '\eadd'; } /* '' */
.iconsminds-male-1:before { content: '\eade'; } /* '' */
.iconsminds-men:before { content: '\eadf'; } /* '' */
.iconsminds-no-smoking:before { content: '\eae0'; } /* '' */
.iconsminds-paw:before { content: '\eae1'; } /* '' */
.iconsminds-quotes:before { content: '\eae2'; } /* '' */
.iconsminds-redirect:before { content: '\eae3'; } /* '' */
.iconsminds-ribbon:before { content: '\eae4'; } /* '' */
.iconsminds-venn-diagram:before { content: '\eae5'; } /* '' */
.iconsminds-wheelchair:before { content: '\eae6'; } /* '' */
.iconsminds-women:before { content: '\eae7'; } /* '' */
.iconsminds-instagram:before { content: '\eae8'; } /* '' */
.iconsminds-last-fm:before { content: '\eae9'; } /* '' */
.iconsminds-like:before { content: '\eaea'; } /* '' */
.iconsminds-linkedin-2:before { content: '\eaeb'; } /* '' */
.iconsminds-livejournal:before { content: '\eaec'; } /* '' */
.iconsminds-newsvine:before { content: '\eaed'; } /* '' */
.iconsminds-picasa:before { content: '\eaee'; } /* '' */
.iconsminds-pinterest:before { content: '\eaef'; } /* '' */
.iconsminds-plaxo:before { content: '\eaf0'; } /* '' */
.iconsminds-plurk:before { content: '\eaf1'; } /* '' */
.iconsminds-posterous:before { content: '\eaf2'; } /* '' */
.iconsminds-qik:before { content: '\eaf3'; } /* '' */
.iconsminds-reddit:before { content: '\eaf4'; } /* '' */
.iconsminds-reverbnation:before { content: '\eaf5'; } /* '' */
.iconsminds-rss:before { content: '\eaf6'; } /* '' */
.iconsminds-sharethis:before { content: '\eaf7'; } /* '' */
.iconsminds-skype:before { content: '\eaf8'; } /* '' */
.iconsminds-soundcloud:before { content: '\eaf9'; } /* '' */
.iconsminds-stumbleupon:before { content: '\eafa'; } /* '' */
.iconsminds-technorati:before { content: '\eafb'; } /* '' */
.iconsminds-tumblr:before { content: '\eafc'; } /* '' */
.iconsminds-twitter:before { content: '\eafd'; } /* '' */
.iconsminds-unlike:before { content: '\eafe'; } /* '' */
.iconsminds-ustream:before { content: '\eaff'; } /* '' */
.iconsminds-viddler:before { content: '\eb00'; } /* '' */
.iconsminds-vimeo:before { content: '\eb01'; } /* '' */
.iconsminds-wordpress:before { content: '\eb02'; } /* '' */
.iconsminds-xanga:before { content: '\eb03'; } /* '' */
.iconsminds-yahoo:before { content: '\eb04'; } /* '' */
.iconsminds-yelp:before { content: '\eb05'; } /* '' */
.iconsminds-youtube:before { content: '\eb06'; } /* '' */
.iconsminds-ask:before { content: '\eb07'; } /* '' */
.iconsminds-behance:before { content: '\eb08'; } /* '' */
.iconsminds-bing:before { content: '\eb09'; } /* '' */
.iconsminds-blinklist:before { content: '\eb0a'; } /* '' */
.iconsminds-blogger:before { content: '\eb0b'; } /* '' */
.iconsminds-delicious:before { content: '\eb0c'; } /* '' */
.iconsminds-deviantart:before { content: '\eb0d'; } /* '' */
.iconsminds-digg:before { content: '\eb0e'; } /* '' */
.iconsminds-diigo:before { content: '\eb0f'; } /* '' */
.iconsminds-dribble:before { content: '\eb11'; } /* '' */
.iconsminds-email:before { content: '\eb12'; } /* '' */
.iconsminds-evernote:before { content: '\eb13'; } /* '' */
.iconsminds-facebook:before { content: '\eb14'; } /* '' */
.iconsminds-feedburner:before { content: '\eb15'; } /* '' */
.iconsminds-flickr:before { content: '\eb16'; } /* '' */
.iconsminds-formspring:before { content: '\eb17'; } /* '' */
.iconsminds-forsquare:before { content: '\eb18'; } /* '' */
.iconsminds-friendster:before { content: '\eb19'; } /* '' */
.iconsminds-google:before { content: '\eb1a'; } /* '' */
.iconsminds-gowalla:before { content: '\eb1b'; } /* '' */
.iconsminds-icq:before { content: '\eb1c'; } /* '' */
.iconsminds-imdb:before { content: '\eb1d'; } /* '' */
.iconsminds-speach-bubble:before { content: '\eb1e'; } /* '' */
.iconsminds-speach-bubbles:before { content: '\eb1f'; } /* '' */
.iconsminds-speach-bubble-2:before { content: '\eb20'; } /* '' */
.iconsminds-speach-bubble-3:before { content: '\eb21'; } /* '' */
.iconsminds-speach-bubble-4:before { content: '\eb22'; } /* '' */
.iconsminds-speach-bubble-5:before { content: '\eb23'; } /* '' */
.iconsminds-speach-bubble-6:before { content: '\eb24'; } /* '' */
.iconsminds-speach-bubble-7:before { content: '\eb25'; } /* '' */
.iconsminds-speach-bubble-8:before { content: '\eb26'; } /* '' */
.iconsminds-speach-bubble-9:before { content: '\eb27'; } /* '' */
.iconsminds-speach-bubble-10:before { content: '\eb28'; } /* '' */
.iconsminds-speach-bubble-11:before { content: '\eb29'; } /* '' */
.iconsminds-speach-bubble-12:before { content: '\eb2a'; } /* '' */
.iconsminds-speach-bubble-13:before { content: '\eb2b'; } /* '' */
.iconsminds-speach-bubble-asking:before { content: '\eb2c'; } /* '' */
.iconsminds-speach-bubble-comic-2:before { content: '\eb2d'; } /* '' */
.iconsminds-speach-bubble-comic-3:before { content: '\eb2e'; } /* '' */
.iconsminds-speach-bubble-comic-4:before { content: '\eb2f'; } /* '' */
.iconsminds-speach-bubble-comic:before { content: '\eb30'; } /* '' */
.iconsminds-speach-bubble-dialog:before { content: '\eb31'; } /* '' */
.iconsminds-trekking:before { content: '\eb32'; } /* '' */
.iconsminds-trophy:before { content: '\eb33'; } /* '' */
.iconsminds-weight-lift:before { content: '\eb35'; } /* '' */
.iconsminds-aerobics:before { content: '\eb36'; } /* '' */
.iconsminds-archery:before { content: '\eb37'; } /* '' */
.iconsminds-ballet-shoes:before { content: '\eb38'; } /* '' */
.iconsminds-baseball:before { content: '\eb39'; } /* '' */
.iconsminds-basket-ball:before { content: '\eb3a'; } /* '' */
.iconsminds-bowling:before { content: '\eb3b'; } /* '' */
.iconsminds-box:before { content: '\eb3c'; } /* '' */
.iconsminds-chess:before { content: '\eb3d'; } /* '' */
.iconsminds-cricket:before { content: '\eb3e'; } /* '' */
.iconsminds-dumbbell:before { content: '\eb3f'; } /* '' */
.iconsminds-football:before { content: '\eb40'; } /* '' */
.iconsminds-football-2:before { content: '\eb41'; } /* '' */
.iconsminds-footprint:before { content: '\eb42'; } /* '' */
.iconsminds-footprint-2:before { content: '\eb43'; } /* '' */
.iconsminds-golf:before { content: '\eb44'; } /* '' */
.iconsminds-gymnastics:before { content: '\eb45'; } /* '' */
.iconsminds-hokey:before { content: '\eb46'; } /* '' */
.iconsminds-jump-rope:before { content: '\eb47'; } /* '' */
.iconsminds-life-jacket:before { content: '\eb48'; } /* '' */
.iconsminds-medal:before { content: '\eb49'; } /* '' */
.iconsminds-pilates-2:before { content: '\eb4a'; } /* '' */
.iconsminds-rafting:before { content: '\eb4b'; } /* '' */
.iconsminds-running-shoes:before { content: '\eb4c'; } /* '' */
.iconsminds-skydiving:before { content: '\eb4d'; } /* '' */
.iconsminds-snorkel:before { content: '\eb4e'; } /* '' */
.iconsminds-soccer-ball:before { content: '\eb4f'; } /* '' */
.iconsminds-swimming:before { content: '\eb50'; } /* '' */
.iconsminds-tennis:before { content: '\eb51'; } /* '' */
.iconsminds-tennis-ball:before { content: '\eb52'; } /* '' */
.iconsminds-over-time-2:before { content: '\eb53'; } /* '' */
.iconsminds-sand-watch-2:before { content: '\eb54'; } /* '' */
.iconsminds-stopwatch:before { content: '\eb55'; } /* '' */
.iconsminds-time-backup:before { content: '\eb56'; } /* '' */
.iconsminds-timer:before { content: '\eb57'; } /* '' */
.iconsminds-watch:before { content: '\eb58'; } /* '' */
.iconsminds-24-hour:before { content: '\eb59'; } /* '' */
.iconsminds-alarm-clock-2:before { content: '\eb5a'; } /* '' */
.iconsminds-alarm-clock:before { content: '\eb5b'; } /* '' */
.iconsminds-clock:before { content: '\eb5c'; } /* '' */
.iconsminds-clock-2:before { content: '\eb5d'; } /* '' */
.iconsminds-clock-back:before { content: '\eb5e'; } /* '' */
.iconsminds-clock-forward:before { content: '\eb5f'; } /* '' */
.iconsminds-old-clock:before { content: '\eb60'; } /* '' */
.iconsminds-scooter:before { content: '\eb61'; } /* '' */
.iconsminds-ship:before { content: '\eb62'; } /* '' */
.iconsminds-skateboard:before { content: '\eb63'; } /* '' */
.iconsminds-taxi-sign:before { content: '\eb64'; } /* '' */
.iconsminds-traffic-light:before { content: '\eb66'; } /* '' */
.iconsminds-train:before { content: '\eb67'; } /* '' */
.iconsminds-yacht:before { content: '\eb68'; } /* '' */
.iconsminds-bicycle-1:before { content: '\eb6a'; } /* '' */
.iconsminds-bus-2:before { content: '\eb6b'; } /* '' */
.iconsminds-car:before { content: '\eb6c'; } /* '' */
.iconsminds-gaugage:before { content: '\eb6e'; } /* '' */
.iconsminds-gaugage-2:before { content: '\eb6f'; } /* '' */
.iconsminds-helicopter:before { content: '\eb70'; } /* '' */
.iconsminds-jeep:before { content: '\eb71'; } /* '' */
.iconsminds-jet:before { content: '\eb72'; } /* '' */
.iconsminds-motorcycle:before { content: '\eb73'; } /* '' */
.iconsminds-plane:before { content: '\eb74'; } /* '' */
.iconsminds-road-2:before { content: '\eb75'; } /* '' */
.iconsminds-sailing-ship:before { content: '\eb76'; } /* '' */
.iconsminds-video-tripod:before { content: '\eb77'; } /* '' */
.iconsminds-3d-eyeglasses:before { content: '\eb78'; } /* '' */
.iconsminds-cinema:before { content: '\eb79'; } /* '' */
.iconsminds-director:before { content: '\eb7a'; } /* '' */
.iconsminds-film:before { content: '\eb7b'; } /* '' */
.iconsminds-film-video:before { content: '\eb7c'; } /* '' */
.iconsminds-old-tv:before { content: '\eb7d'; } /* '' */
.iconsminds-tv:before { content: '\eb7e'; } /* '' */
.iconsminds-video:before { content: '\eb7f'; } /* '' */
.iconsminds-video-5:before { content: '\eb80'; } /* '' */
.iconsminds-video-6:before { content: '\eb81'; } /* '' */
.iconsminds-video-len:before { content: '\eb82'; } /* '' */
.iconsminds-sunrise:before { content: '\eb83'; } /* '' */
.iconsminds-sunset:before { content: '\eb84'; } /* '' */
.iconsminds-temperature-2:before { content: '\eb85'; } /* '' */
.iconsminds-thunder:before { content: '\eb86'; } /* '' */
.iconsminds-umbrella-2:before { content: '\eb87'; } /* '' */
.iconsminds-wave:before { content: '\eb88'; } /* '' */
.iconsminds-wind-turbine:before { content: '\eb89'; } /* '' */
.iconsminds-windy:before { content: '\eb8a'; } /* '' */
.iconsminds-cloud-hail:before { content: '\eb8b'; } /* '' */
.iconsminds-cloud-moon:before { content: '\eb8c'; } /* '' */
.iconsminds-cloud-rain:before { content: '\eb8d'; } /* '' */
.iconsminds-cloud-snow:before { content: '\eb8e'; } /* '' */
.iconsminds-cloud-sun:before { content: '\eb8f'; } /* '' */
.iconsminds-cloud-weather:before { content: '\eb90'; } /* '' */
.iconsminds-drop:before { content: '\eb91'; } /* '' */
.iconsminds-dry:before { content: '\eb92'; } /* '' */
.iconsminds-fog-day:before { content: '\eb93'; } /* '' */
.iconsminds-fog-night:before { content: '\eb94'; } /* '' */
.iconsminds-half-moon:before { content: '\eb95'; } /* '' */
.iconsminds-rain-drop:before { content: '\eb96'; } /* '' */
.iconsminds-snow:before { content: '\eb97'; } /* '' */
.iconsminds-snowflake-3:before { content: '\eb98'; } /* '' */
.iconsminds-snow-storm:before { content: '\eb99'; } /* '' */
.iconsminds-spring:before { content: '\eb9a'; } /* '' */
.iconsminds-storm:before { content: '\eb9b'; } /* '' */
.iconsminds-summer:before { content: '\eb9c'; } /* '' */
.iconsminds-sun:before { content: '\eb9d'; } /* '' */
.iconsminds-sun-cloudy-rain:before { content: '\eb9e'; } /* '' */
.iconsminds-electric-guitar:before { content: '\eb9f'; } /* '' */
.iconsminds-guitar:before { content: '\eba0'; } /* '' */
.iconsminds-air-balloon-1:before { content: '\eba1'; } /* '' */
.iconsminds-tractor:before { content: '\eba2'; } /* '' */
.iconsminds-calendar-1:before { content: '\eba3'; } /* '' */
.iconsminds-calendar-4:before { content: '\eba4'; } /* '' */
.iconsminds-trophy-2:before { content: '\eba5'; } /* '' */
.iconsminds-life-safer:before { content: '\eba6'; } /* '' */
.iconsminds-calculator:before { content: '\eba7'; } /* '' */
.iconsminds-taj-mahal:before { content: '\eba8'; } /* '' */
.iconsminds-scale:before { content: '\eba9'; } /* '' */
.iconsminds-usb:before { content: '\ebaa'; } /* '' */
.iconsminds-flowerpot:before { content: '\ebab'; } /* '' */
.iconsminds-shop-4:before { content: '\ebac'; } /* '' */
.iconsminds-line-chart-1:before { content: '\ebad'; } /* '' */
.iconsminds-line-chart-3:before { content: '\ebae'; } /* '' */
.iconsminds-forest-1:before { content: '\ebaf'; } /* '' */
.iconsminds-pantone:before { content: '\ebb0'; } /* '' */
.iconsminds-digital-drawing:before { content: '\ebb1'; } /* '' */
.iconsminds-credit-card:before { content: '\ebb2'; } /* '' */
.iconsminds-credit-card-3:before { content: '\ebb3'; } /* '' */
.iconsminds-money-bag:before { content: '\ebb4'; } /* '' */
.iconsminds-printer:before { content: '\ebb5'; } /* '' */
.iconsminds-sheep:before { content: '\ebb8'; } /* '' */
.iconsminds-cow:before { content: '\ebb9'; } /* '' */
.iconsminds-dog:before { content: '\ebba'; } /* '' */
.iconsminds-deer:before { content: '\ebbb'; } /* '' */

Some files were not shown because too many files have changed in this diff Show More