commit 47f1b938cd61b9ca26aa659ec3fdf93ab7a1a6af Author: checktheroads Date: Tue May 7 23:21:41 2019 -0700 initial diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea40d7a --- /dev/null +++ b/.gitignore @@ -0,0 +1,65 @@ +test.py +.DS_Store +*.sass-cache +hyperglass/config/*.toml +hyperglass/.flask_cache/ +# +# Github Default from https://github.com/martinohanlon/flightlight/issues/1 +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover + +# Translations +*.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ +assets/ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a656854 --- /dev/null +++ b/LICENSE @@ -0,0 +1,32 @@ +The Clear BSD License + +Copyright (c) 2019 Matthew Love +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted (subject to the limitations in the disclaimer +below) provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY +THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND +CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..0261a97 --- /dev/null +++ b/README.md @@ -0,0 +1,46 @@ + + +**Hyperglass** is a network looking glass application. A looking glass is typically implemented by network service providers as a way of providing customers, peers, and partners with a way to easily view elements of, or run tests from the provider's network. + +
+ +![GitHub issues](https://img.shields.io/github/issues/checktheroads/hyperglass.svg) +![GitHub](https://img.shields.io/github/license/checktheroads/hyperglass.svg) +![GitHub top language](https://img.shields.io/github/languages/top/checktheroads/hyperglass.svg) +[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black) + + +## Features +- BGP Route, BGP Community, BGP AS_PATH, Ping, Traceroute +- Full IPv6 support +- [Netmiko](https://github.com/ktbyers/netmiko)-based connection handling +- Customizable commands for each function by vendor +- Clean, google-esq GUI based on the [Bumla](https://bulma.io) framework +- Customizable colors, logo, web fonts, error messages, UI text +- TOML-based config file for all customizable parameters (no databases!) +- Configurable IP/Prefix "blacklist" to prevent lookup of internal/private prefixes +- Configurable rate limiting, powered by [Flask-Limiter](https://github.com/alisaifee/flask-limiter) +- Query response caching with configurable cache timeout, powered by [Flask-Caching](https://github.com/sh4nks/flask-caching) + +## Documentation + +Documentation can be found [here](https://hyperglass.readthedocs.io), or in the `docs/` directory. + +## Preview + +## Platform Support +Theoretically, any vendor supported by Netmiko can be supported by Hyperglass. However, I am currently listing platforms I have personally tested and verified full functionality with: + +### Routers +- Cisco IOS-XR: `cisco_xr` +- Cisco Classic IOS/IOS-XE: `cisco_ios` +- Juniper JunOS: `junos` + +### Proxies +- Linux: `linux_ssh` + +## Acknowledgements +- This project originally started as a fork of vraulsan's [looking-glass](https://github.com/vraulsan/looking-glass) project. The guts of the Flask components still remain from that project, but almost everything else has been rewritten. Nevertheless, the inspiration for building hyperglass came from here. + +## License +[Clear BSD License](https://github.com/checktheroads/hyperglass/master/LICENSE) diff --git a/docs/blacklist_error.png b/docs/blacklist_error.png new file mode 100644 index 0000000..08a72b0 Binary files /dev/null and b/docs/blacklist_error.png differ diff --git a/docs/caching.md b/docs/caching.md new file mode 100644 index 0000000..f961341 --- /dev/null +++ b/docs/caching.md @@ -0,0 +1,7 @@ +Hyperglass supports caching the application's responses for a configurable period of time to reduce the number of lookups passed back to routers for repetitive/common lookups. By default, all application responses (including error messages), are cached for 2 minutes in the local file system. + +Hyperglass uses [Flask-Caching](https://github.com/sh4nks/flask-caching), which is able to use a wide variety of cache storage backends (Filesystem, Redis, Memcached, etc.). By default, Hyperglass uses the Filesystem method, and stores the cached data in `hyperglass/hyperglass/.flask_cache`. + +The cache list little more than a key value store. Hyperglass uses a stringified combination of router/location name, command used, and query type as a key, and the output as a value. If a lookup matching the exact key is found, the cached value will be returned. If not, a standard lookup is performed (and that data is subsequently cached). + +# Insert Video Here diff --git a/docs/configuration.md b/docs/configuration.md new file mode 100644 index 0000000..1675dec --- /dev/null +++ b/docs/configuration.md @@ -0,0 +1,18 @@ +# Configuration + +Hyperglass configuration files are stored `hyperglass/hyperglass/config`, in [TOML](https://github.com/toml-lang/toml) format. + +Example configuration files are provided and end in `.example`. All example configuration files should be copied to their `.toml` name & extension. For example: + +```console +$ cd hyperglass/hyperglass/config +$ +$ cp blacklist.toml.example blacklist.toml +$ cp commands.toml.example commands.toml +$ cp config.toml.example config.toml +$ cp devices.toml.example devices.toml +``` + +## `requires_ipv6_cidr.toml` + +Some platforms (namely Cisco IOS) are unable to perform a BGP lookup by IPv6 host address (e.g. 2001:db8::1), but must perform the lookup by prefix (e.g. 2001:db8::/48). `requires_ipv6_cidr.toml` is a list (TOML array) of network operating systems that require this (in Netmiko format). diff --git a/docs/configuration/authentication.md b/docs/configuration/authentication.md new file mode 100644 index 0000000..663923e --- /dev/null +++ b/docs/configuration/authentication.md @@ -0,0 +1,16 @@ +Authentication parameters are stored in the `devices.toml` file, at `hyperglass/hyperglass/config/devices.toml`. The array of tables simply stores the username and password for a device. SSH Key authentication is not yet supported. + +Example: + +```toml +[credential.'default'] +username = "hyperglass" +password = "secret_password" + +[credential.'other_credential'] +username = "other_username" +password = "other_secret_password" +``` + +!!! warning "Security Warning" + These values are stored in plain text. Make sure the accounts are restricted and that the configuration file is stored in a secure location. diff --git a/docs/configuration/blacklist.md b/docs/configuration/blacklist.md new file mode 100644 index 0000000..26e1453 --- /dev/null +++ b/docs/configuration/blacklist.md @@ -0,0 +1,25 @@ +Blacklisted querys are defined in `hyperglass/hyperglass/config/blacklist.toml`. + +The blacklist is a simple TOML array (list) of host IPs or prefixes that you do not want end users to be able to query. For example, if you want to prevent users from looking up 198.18.0.0/15 or any contained host or prefix, you can add it to the blacklist: + +```toml +blacklist = [ +198.18.0.0/15 +] +``` + +If you have multiple hosts/subnets you wish to blacklist, you can do so by adding a comma `,` after each entry (except the last): + +```toml +blacklist = [ +'198.18.0.0/15', +'10.0.0.0/8', +'192.168.0.0/16', +'2001:db8::/32' +'172.16.0.0/12' +] +``` + +When users attempt to query a matching host/prefix, they will receive the following error message by default: + + diff --git a/docs/configuration/branding.md b/docs/configuration/branding.md new file mode 100644 index 0000000..d6802d2 --- /dev/null +++ b/docs/configuration/branding.md @@ -0,0 +1,306 @@ + + +From `hyperglass/hyperglass/config/config.toml`: + +### site_title + +| Type | Default Value | +| ------ | -------------- | +| String | `"hyperglass"` | + +HTML `` element that is shown in a browser's title bar. + +### title_mode + +| Type | Default Value | +| ------ | ------------- | +| String | `"none"` | + +Controls the title section on the main page. + +#### Parameters + +##### `"none"` + +Hides Title and Subtitle text, displays logo defined in [logo_path](#logo_path). + +##### `"both"` + +Displays both Title and Subtitle text defined in [title](#title) and [subtitle](#subtitle) parameters. + +##### `"hide_subtitle"` + +Displays only the Title text defined in the [title](#title) parameter. + +### title + +| Type | Default Value | +| ------ | -------------- | +| String | `"hyperglass"` | + +### subtitle + +| Type | Default Value | +| ------ | -------------------- | +| String | `"AS" + primary_asn` | + +See [primary_asn](#primary_asn) parameter. + +### enable_footer + +| Type | Default Value | +| ------- | ------------- | +| Boolean | `True` | + +Enables or disables entire footer element, which contains text defined in `hyperglass/hyperglass/templates/footer.md`. + +### enable_credit + +| Type | Default Value | +| ------- | ------------- | +| Boolean | `True` | + +Enables or disables hoverable icon on the left side of the footer, which links to the hyperglass repo. + +### color_btn_submit + +| Type | Default Value | Preview | +| ------ | ------------- | ----------------------------------------------------------------- | +| String | `"#40798c"` | <span class="bd-color" style="background-color: #40798c;"></span> | + +Sets color of the submit button. + +### color_tag_loctitle + +| Type | Default Value | Preview | +| ------ | ------------- | ----------------------------------------------------------------- | +| String | `"#330036"` | <span class="bd-color" style="background-color: #330036;"></span> | + +Sets color of the title portion of the location tag which appears at the top of the results box on the left side. + +### color_tag_cmdtitle + +| Type | Default Value | Preview | +| ------ | ------------- | ----------------------------------------------------------------- | +| String | `"#330036"` | <span class="bd-color" style="background-color: #330036;"></span> | + +Sets color of the title portion of the command tag which appears at the top of the results box on the right side. + +### color_tag_cmd + +| Type | Default Value | Preview | +| ------ | ------------- | ----------------------------------------------------------------- | +| String | `"#ff5e5b"` | <span class="bd-color" style="background-color: #ff5e5b;"></span> | + +Sets color of the command name portion of the command tag which appears at the top of the results box on the right side. + +### color_tag_loc + +| Type | Default Value | Preview | +| ------ | ------------- | ----------------------------------------------------------------- | +| String | `"#40798c"` | <span class="bd-color" style="background-color: #40798c;"></span> | + +Sets color of the location name portion of the location tag which appears at the top of the results box on the left side. + +### color_hero + +| Type | Default Value | Preview | +| ------ | ------------- | ----------------------------------------------------------------- | +| String | `"#fbfffe"` | <span class="bd-color" style="background-color: #fbfffe;"></span> | + +Sets the background color of the main page. The main page is a Bulma [fullheight hero class](https://bulma.io/documentation/layout/hero/) layout. This parameter will set the color of the entire hero `<section>` class, including navbar, head, body, and footer subclasses. + +### color_progressbar + +| Type | Default Value | Preview | +| ------ | ------------- | ----------------------------------------------------------------- | +| String | `"#40798c"` | <span class="bd-color" style="background-color: #40798c;"></span> | + +Sets color of the progress bar that displays while the back-end application processes the request. + +### logo_path + +| Type | Default Value | +| ------ | ------------------------------------- | +| String | `"static/images/hyperglass-dark.png"` | + +Sets the path to the logo file, which will be displayed if [title_mode](#title_mode) is set to `"logo_only"`. This file can be any browser-compatible format, such as JPEG, PNG, or SVG. + +### logo_width + +| Type | Default Value | +| ------ | ------------- | +| String | `"384"` | + +Sets the width of the logo defined in the [logo_path](#logo_path) parameter. This is helpful if your logo is a dimension that doesn't quite work with the default width. + +### placeholder_prefix + +| Type | Default Value | +| ------ | ------------------------------------- | +| String | `"Prefix, IP, Community, or AS_PATH"` | + +Sets the placeholder text that appears in the main search box. + +### show_peeringdb + +| Type | Default Value | +| ------- | ------------- | +| Boolean | `True` | + +Enables or disables the PeeringDB link in the upper right corner. If `True`, the [primary_asn](#primary_asn) will be automatically used to create the URL to your ASN's PeeringDB entry. + +### text_results + +| Type | Default Value | +| ------ | ------------- | +| String | `"Results"` | + +Sets the header text of the results box. + +### text_location + +| Type | Default Value | +| ------ | ------------- | +| String | `"Location"` | + +Sets the placeholder text of the location selector. + +### text_cache + +| Type | Default Value | +| ------ | ------------------------------------------------------- | +| String | `"Results will be cached for {cache_timeout} minutes."` | + +Sets the text at the bottom of the results box that states the cache timeout. `{cache_timeout}` will be formatted with the value of [cache_timeout](/configuration/general/#cache_timeout). + +### text_limiter_title + +| Type | Default Value | +| ------ | ----------------- | +| String | `"Limit Reached"` | + +Sets the title text for the site-wide rate limit page. Users are redirected to this page when they have accessed the site more than the [specified](/configuration/general/#rate_limit_site) limit. + +### text_limiter_subtitle + +| Type | Default Value | +| ------ | ------------------------------------------------------------------------------------- | +| String | `"You have accessed this site more than {rate_limit_site} times in the last minute."` | + +Sets the subtitle text for the site-wide rate limit page. Users are redirected to this page when they have accessed the site more than the [specified](/configuration/general/#rate_limit_site) limit. `{rate_limit_site}` will be formatted with the value of [rate_limit_site](/configuration/general/#rate_limit_site). + +### text_415_title + +| Type | Default Value | +| ------ | ----------------- | +| String | `"Error"` | + +Sets the title text for the full general error page. + +### text_415_subtitle + +| Type | Default Value | +| ------ | ------------------------- | +| String | `"Something went wrong."` | + +Sets the subtitle text for the full general error page. + +### text_415_button + +| Type | Default Value | +| ------ | ----------------- | +| String | `"Home"` | + +Sets the button text for the full general error page. + +### text_help_bgp_route + +| Type | Default Value | +| ------ | ------------------------- | +| String | `"Performs BGP table lookup based on IPv4/IPv6 prefix."` | + +Sets the BGP Route query help text, displayed when the **?** icon is hovered. + +### text_help_bgp_community + +| Type | Default Value | +| ------ | ------------------------- | +| String | `'Performs BGP table lookup based on <a href="https://tools.ietf.org/html/rfc4360">Extended</a> or <a href="https://tools.ietf.org/html/rfc8195">Large</a> community value.'` | + +Sets the BGP Community query help text, displayed when the **?** icon is hovered. + +!!! note + Since there are double quotes (`" "`) in the `<a>` HTML tags, single quotes (`' '`) are required for the TOML string. + +### text_help_bgp_aspath + +| Type | Default Value | +| ------ | ------------------------- | +| String | `'Performs BGP table lookup based on <code>AS_PATH</code> regular expression.<br>For commonly used BGP regular expressions, <a href="https://hyperglass.readthedocs.io/en/latest/Extras/common_as_path_regex/">click here</a>.'` | + +Sets the BGP AS Path query help text, displayed when the **?** icon is hovered. + +!!! note + Since there are double quotes (`" "`) in the `<a>` HTML tags, single quotes (`' '`) are required for the TOML string. + +### text_help_ping + +| Type | Default Value | +| ------ | ------------------------- | +| String | `"Sends 5 ICMP echo requests to the target."` | + +Sets the Ping query help text, displayed when the **?** icon is hovered. + +### text_help_traceroute + +| Type | Default Value | +| ------ | ------------------------- | +| String | `'Performs UDP Based traceroute to the target.<br>For information about how to interpret traceroute results, <a href="https://www.nanog.org/meetings/nanog45/presentations/Sunday/RAS_traceroute_N45.pdf">click here</a>.'` | + +Sets the Traceroute query help text, displayed when the **?** icon is hovered. + +!!! note + Since there are double quotes (`" "`) in the `<a>` HTML tags, single quotes (`' '`) are required for the TOML string. + +### primary_font_url + +| Type | Default Value | +| ------ | ------------------------- | +| String | `"https://fonts.googleapis.com/css?family=Nunito:400,600,700"` | + +Sets the web font URL for the primary font. This font is used for all titles, subtitles, and non-code/preformatted text. The value is passed as a Jinja2 variable to the head block in the base template. + +### primary_font_name + +| Type | Default Value | +| ------ | ------------------------- | +| String | `"Nunito"` | + +Sets the web font name for the primary font. This font is used for all titles, subtitles, and non-code/preformatted text. The value is passed as a Jinja2 variable to generate `hyperglass/hyperglass/static/sass/hyperglass.scss`, which ultimately get passed to CSS. + +### mono_font_url + +| Type | Default Value | +| ------ | ------------------------- | +| String | `"https://fonts.googleapis.com/css?family=Fira+Mono"` | + +Sets the web font URL for the monospace/code/preformatted text font. This font is used for all query output text, as well as the command title and command name tag. The value is passed as a Jinja2 variable to the head block in the base template. + +### mono_font_name + +| Type | Default Value | +| ------ | ------------------------- | +| String | `"Fira Mono"` | + +Sets the web font URL for the monospace/code/preformatted text font. This font is used for all query output text, as well as the command title and command name tag. The value is passed as a Jinja2 variable to generate `hyperglass/hyperglass/static/sass/hyperglass.scss`, which ultimately get passed to CSS. diff --git a/docs/configuration/commands.md b/docs/configuration/commands.md new file mode 100644 index 0000000..c97627a --- /dev/null +++ b/docs/configuration/commands.md @@ -0,0 +1,83 @@ +Commands are defined in `hyperglass/hyperglass/config/commands.toml`. Formatted as a nested array of tables, each table defines the commands that will be used to execute the queries on the routers. + +Each table contains three nested tables: + +##### dual + +Commands that are IP protocol agnostic: + +- `bgp_community` +- `bgp_aspath` + +##### ipv4 + +Commands that are IPv4-specific: + +- `bgp_route` +- `ping` +- `traceroute` + +##### ipv6 + +Commands that are IPv6-specific: + +- `bgp_route` +- `ping` +- `traceroute` + +#### Default Configuration + +```toml +[[cisco_ios]] +[cisco_ios.dual] +bgp_community = "show bgp all community {target}" +bgp_aspath = 'show bgp all quote-regexp "{target}"' +[cisco_ios.ipv4] +bgp_route = "show bgp ipv4 unicast {target} | exclude pathid:|Epoch" +ping = "ping {target} repeat 5 source {src_addr_ipv4}" +traceroute = "traceroute {target} timeout 1 probe 2 source {src_addr_ipv4}" +[cisco_ios.ipv6] +bgp_route = "show bgp ipv6 unicast {target} | exclude pathid:|Epoch" +ping = "ping ipv6 {target} repeat 5 source {src_addr_ipv6}" +traceroute = "traceroute ipv6 {target} timeout 1 probe 2 source {src_addr_ipv6}" + +[[cisco_xr]] +[cisco_xr.dual] +bgp_community = 'show bgp all unicast community {target} | utility egrep -v "\(BGP |Table |Non-stop\)"' +bgp_aspath = 'show bgp all unicast regexp {target} | utility egrep -v "\(BGP |Table |Non-stop\)"' +[cisco_xr.ipv4] +bgp_route = 'show bgp ipv4 unicast {target} | util egrep "\(BGP routing table entry|Path \#|aggregated by|Origin |Community:|validity| from \)"' +ping = "ping ipv4 {target} count 5 source {src_addr_ipv4}" +traceroute = "traceroute ipv4 {target} timeout 1 probe 2 source {src_addr_ipv4}" +[cisco_xr.ipv6] +bgp_route = 'show bgp ipv6 unicast {target} | util egrep "\(BGP routing table entry|Path \#|aggregated by|Origin |Community:|validity| from \)"' +ping = "ping ipv6 {target} count 5 source {src_addr_ipv6}" +traceroute = "traceroute ipv6 {target} timeout 1 probe 2 source {src_addr_ipv6}" + +[[juniper]] +[juniper.dual] +bgp_community = "show route protocol bgp community {target}" +bgp_aspath = "show route protocol bgp aspath-regex {target}" +[juniper.ipv4] +bgp_route = "show route protocol bgp table inet.0 {target} detail" +ping = "ping inet {target} count 5 source {src_addr_ipv4}" +traceroute = "traceroute inet {target} wait 1 source {src_addr_ipv4}" +[juniper.ipv6] +bgp_route = "show route protocol bgp table inet6.0 {target} detail" +ping = "ping inet6 {target} count 5 source {src_addr_ipv6}" +traceroute = "traceroute inet6 {target} wait 1 source {src_addr_ipv6}" +``` + +Every attempt has been made to filter out as much "noise" as possible from the command output. + +##### `{target}` + +Maps to search box input. + +##### `{src_addr_ipv4}` + +Maps to [src_addr_ipv4](configuration/devices.md/#src_addr_ipv4) + +##### `{src_addr_ipv6}` + +Maps to [src_addr_ipv6](configuration/devices.md/#src_addr_ipv6) diff --git a/docs/configuration/devices.md b/docs/configuration/devices.md new file mode 100644 index 0000000..be4cbc2 --- /dev/null +++ b/docs/configuration/devices.md @@ -0,0 +1,160 @@ +Devices/routers are defined in `hyperglass/hyperglass/config/devices.toml`. `devices.toml` is effectively an array of hash tables/dictionaries/key value pairs: + +```toml +[[router]] +address = "10.0.0.1" +asn = "65000" +src_addr_ipv4 = "192.0.2.1" +src_addr_ipv6 = "2001:db8::1" +credential = "default" +location = "pop1" +name = "router1.pop1" +port = "22" +type = "cisco_xr" +proxy = "jumpbox1" + +[[router]] +address = "10.0.0.2" +asn = "65000" +src_addr_ipv4 = "192.0.2.2" +src_addr_ipv6 = "2001:db8::2" +credential = "default" +location = "pop2" +name = "router1.pop2" +port = "22" +type = "cisco_ios" +proxy = "jumpbox2" + +[[router]] +address = "10.0.0.3" +asn = "65000" +src_addr_ipv4 = "192.0.2.3" +src_addr_ipv6 = "2001:db8::3" +credential = "default" +location = "pop3" +name = "router1.pop3" +port = "22" +type = "juniper" +proxy = "jumpbox3" +``` + +### Device Keys + +#### address + +IP address hyperglass will use to connect to the device. + +#### asn + +ASN this device is a member of. + +#### src_addr_ipv4 + +Source IPv4 address used for `ping` and `traceroute` queries. + +#### src_addr_ipv6 + +Source IPv6 address used for `ping` and `traceroute` queries. + +#### credential + +Name of credential (username & password) used to authenticate with the device. Credentials are defined as individual tables. See [here](/configuration/authentication.md) for more information on authentication. + +#### location + +Name of location/POP where this device resides. + +#### name + +Display name/hostname of device. + +#### port + +TCP port for SSH connection to device. + +#### type + +Device type/vendor name as recognized by [Netmiko](https://github.com/ktbyers/netmiko). See [supported device types](#supported-device-types) for a full list. + +#### proxy + +Name of SSH proxy/jumpbox, if any, used for connecting to the device. See [here](/configuration/proxy.md) for more information on proxying. + +### Supported Device Types + +Updated **2019-04-28** from [Netmiko](https://github.com/ktbyers/netmiko/blob/master/netmiko/ssh_dispatcher.py#L76). + +```console +a10 +accedian +alcatel_aos +alcatel_sros +apresia_aeos +arista_eos +aruba_os +avaya_ers +avaya_vsp +brocade_fastiron +brocade_netiron +brocade_nos +brocade_vdx +brocade_vyos +checkpoint_gaia +calix_b6 +ciena_saos +cisco_asa +cisco_ios +cisco_nxos +cisco_s300 +cisco_tp +cisco_wlc +cisco_xe +cisco_xr +coriant +dell_dnos9 +dell_force10 +dell_os6 +dell_os9 +dell_os10 +dell_powerconnect +dell_isilon +eltex +enterasys +extreme +extreme_ers +extreme_exos +extreme_netiron +extreme_nos +extreme_slx +extreme_vdx +extreme_vsp +extreme_wing +f5_ltm +f5_tmsh +f5_linux +fortinet +generic_termserver +hp_comware +hp_procurve +huawei +huawei_vrpv8 +ipinfusion_ocnos +juniper +juniper_junos +linux +mellanox +mrv_optiswitch +netapp_cdot +netscaler +oneaccess_oneos +ovs_linux +paloalto_panos +pluribus +quanta_mesh +rad_etx +ruckus_fastiron +ubiquiti_edge +ubiquiti_edgeswitch +vyatta_vyos +vyos +``` diff --git a/docs/configuration/general.md b/docs/configuration/general.md new file mode 100644 index 0000000..b0d1124 --- /dev/null +++ b/docs/configuration/general.md @@ -0,0 +1,132 @@ +From `hyperglass/hyperglass/config/config.toml`: + +### primary_asn + +| Type | Default Value | +| ------ | ------------- | +| String | `"65000"` | + +Your network's _primary_ ASN. Number only, e.g. `65000`, **not** `AS65000`. + +### debug + +| Type | Default Value | +| ------- | ------------- | +| Boolean | `False` | + +Enables Flask debugging. May be used to enable other module debugs in the future. + +### google_analytics + +| Type | Default Value | +| ------ | ------------- | +| String | None | + +Google Analytics ID number. For more information on how to set up Google Analytics, see [here](https://support.google.com/analytics/answer/1008080?hl=en). + +### message_error + +| Type | Default Value | +| ------ | --------------------- | +| String | `"{input} is invalid."` | + +Message presented to the user when invalid input is detected. `{input}` will be formatted as the input received from the main search field. For each command, input is validated via regular expression in the following patterns: + +| Command | Pattern | +| ------------- | -------------------------------------------- | +| BGP Route | Valid IPv4 or IPv6 Address | +| BGP Community | Valid new-format, 32 bit, or large community | +| BGP AS Path | Any pattern | +| Ping | Valid IPv4 or IPv6 Address | +| Traceroute | Valid IPv4 or IPv6 Address | + +!!! note + The BGP AS Path command currently allows `(.*)` to be submitted to the end device. Obviously, the device itself will return an error for garbage input, but ideally this would be "locked down" further. If you have an idea for a regex pattern to validate an `AS_PATH` regex, please submit a PR. + +### message_blacklist + +| Type | Default Value | +| ------ | ------------------------- | +| String | `"{input} is not allowed."` | + +Message presented to the user when an IPv4 or IPv6 address matches the `blacklist.toml` array. `{input}` will be formatted as the input received from the main search field. For information on how this works, please see the [blacklist documentation](/configuration/blacklist). + +### message_rate_limit_query + +| Type | Default Value | +| ------ | -------------------------------------------------------------------------------------------- | +| String | `"Query limit of {rate_limit_query} per minute reached. Please wait one minute and try again."` | + +Message presented to the user when the [query limit](#rate_limit_query) is reached. `{rate_limit_query}` will be formatted as the [`rate_limit_query`](#rate_limit_query) parameter. For information on how this works, please see the [rate limiting documentation](/ratelimiting/query). + +### enable_bgp_route + +| Type | Default Value | +| ------- | ------------- | +| Boolean | `True` | + +Enables or disables the BGP Route query type. + +### enable_bgp_community + +| Type | Default Value | +| ------- | ------------- | +| Boolean | `True` | + +Enables or disables the BGP Community query type. + +### enable_bgp_aspath + +| Type | Default Value | +| ------- | ------------- | +| Boolean | `True` | + +Enables or disables the BGP AS Path query type. + +### enable_ping + +| Type | Default Value | +| ------- | ------------- | +| Boolean | `True` | + +Enables or disables the Ping query type. + +### enable_traceroute + +| Type | Default Value | +| ------- | ------------- | +| Boolean | `True` | + +Enables or disables the Traceroute query type. + +### rate_limit_query + +| Type | Default Value | +| ------- | ------------- | +| String | `"5"` | + +Sets the number of queries **per minute** allowed by `remote_address` of the request. For information on how this works, please see the [rate limiting documentation](/ratelimiting/query). + +### rate_limit_site + +| Type | Default Value | +| ------- | ------------- | +| String | `"120"` | + +Sets the number of site loads **per minute** allowed by `remote_address` of the request. For information on how this works, please see the [rate limiting documentation](/ratelimiting/site). + +### cache_timeout + +| Type | Default Value | +| -------- | ------------- | +| Integer | `120` | + +Sets the number of **seconds** to cache the back-end response. For information on how this works, please see the [caching documentation](/caching). + +### cache_directory + +| Type | Default Value | +| -------- | ------------------------------------ | +| String | `"hyperglass/hyperglass/.flask_cache"` | + +Sets the directory where the back-end responses are cached. For information on how this works, please see the [caching documentation](/caching). diff --git a/docs/configuration/proxy.md b/docs/configuration/proxy.md new file mode 100644 index 0000000..5e8785c --- /dev/null +++ b/docs/configuration/proxy.md @@ -0,0 +1,45 @@ +Proxy servers are defined in `hyperglass/hyperglass/config/devices.toml`. Each proxy definition is a unique TOML table, for example: + +```toml +[proxy.'jumpbox1'] +address = "10.1.1.1" +username = "hyperglass" +password = "secret_password" +type = "linux_ssh" +ssh_command = "ssh -l {username} {host}" + +[proxy.'jumpbox2'] +address = "10.1.1.2" +username = "hyperglass" +password = "secret_password" +type = "linux_ssh" +ssh_command = "ssh -l {username} {host}" +``` + +When a proxy server is defined under the `[[router]]` heading in `devices.toml`, the defined proxy name is matched to a configured proxy as shown above. When the connection to the device is initiated, the hyperglass server will first initiate an SSH connection to the proxy, and then initiate a second connection to the target device (router) *from* the proxy server. This can be helpful if you want to secure access to your routers. + +#### address + +IP address hyperglass will use to connect to the device. + +#### username + +Username for SSH authentication to the proxy server/jumpbox. SSH Key authentication is not yet supported. + +#### password + +Plain text password for SSH authentication to the proxy server/jumpbox. + +!!! warning "Security Warning" + These values are stored in plain text. Make sure the accounts are restricted and that the configuration file is stored in a secure location. + +#### type + +Device type/vendor name as recognized by [Netmiko](https://github.com/ktbyers/netmiko). See [supported device types](#supported-device-types) for a full list. + +!!! info "Compatibility" + Hyperglass has only been tested with `linux_ssh` as of this writing. + +#### ssh_command + +Command used to initiate an SSH connection *from* the proxy server to the target device. `{username}` will map to the target device (router) username as defined in its associated credential mapping. `{host}` will map to the target device IP address as defined in `devices.toml`. diff --git a/docs/development/index.md b/docs/development/index.md new file mode 100644 index 0000000..14c570e --- /dev/null +++ b/docs/development/index.md @@ -0,0 +1,127 @@ +# Hyperglass Development + +Hyperglass is maintained as a [Github project](https://github.com/checktheroads/hyperglass) under the BSD 3-Clause Clear License. Hyperglass users are encouraged to submit Github issues for feature requests and bug reports. + +## License + +The intent behind the the [BSD 3-Clause Clear License](https://choosealicense.com/licenses/bsd-3-clause-clear/) is to ensure that anyone can use or modify Hyperglass in any way they wish, as long as credit and copyright notice is provied. If you have any questions about this, or wish to request any special permissions, please contact [matt@allroads.io](mailto:matt@allroads.io). + +## Structure + +Under the main `hyperglass/hyperglass/` directory, the following basic structure is in place: + +``` +hyperglass/ +├── __init__.py +├── app.py +├── cmd_construct.py +├── cmd_execute.py +├── cmd_parser.py +├── config/ +├── manage.py +├── static/ +├── templates/ +├── templates.py +└── vars.py +``` + +### Directories + +#### config + +The `config/` directory contains all TOML config files used by Hyperglass: + +``` +hyperglass/config/ +├── blacklist.toml +├── commands.toml +├── config.toml +├── devices.toml +└── requires_ipv6_cidr.toml +``` + +#### static + +The `static/` directory contains all static HTML/CSS/JS files used for serving the site: + +``` +hyperglass/static/ +├── css +│   ├── hyperglass.css +│   └── icofont +├── images +│   ├── brand.svg +│   ├── favicon +│   ├── hyperglass-dark.png +│   └── hyperglass-light.png +├── js +│   ├── hyperglass.js +│   ├── jquery-3.4.0.min.js +│   └── jquery-3.4.0.min.map +└── sass + ├── base + ├── components + ├── custom + ├── elements + ├── grid + ├── hyperglass.scss + ├── layout + └── utilities +``` + +- `css/hyperglass.css` Final CSS file compiled from Sass file `hyperglass.scss`. Sass compiles all the `.sass` files located under `sass/` and combines them into a single CSS file. +- `css/icofont/` Completely free alternative to FontAwesome - [Icofont](https://icofont.com/). +- `js/hyerpglass.js` Basic Javascript helper to perform AJAX queries necessary to pull in dynamic information and render content. + +#### templates + +The `templates/` directory contains HTML and Sass Jinja2 templates: + +``` +templates/ +├── 415.html +├── 429.html +├── base.html +├── footer.html +├── footer.md +├── hyperglass.scss +└── index.html +``` + +- `415.html` General error page template. +- `429.html` Site load rate limit page. +- `base.html` Base template inherited by all other templates. Contains HTML `head`, JavaScript, etc. +- `footer.html` Footer template containing footer text and hyperglass credit link. +- `footer.md` Text that appears in the footer, if enabled. Markdown will be rendered as HTML. +- `hyperglass.scss` Generates SCSS file for Bulma and local customizations. +- `index.html` Main page template. + +### Scripts + +#### `app.py` + +Main Flask application. Passes input to `cmd_execute.py` + +#### `cmd_execute.py` + +Matches router name to router IP, OS, and credentials. Passes data to `cmd_construct.py`, uses the results to execute the Netmiko action. Also performs error handling in the event of a [blacklist](/configuration/blacklist) match. + +#### `cmd_construct.py` + +Constructs full commands to run on routers from `hyperglass/hyperglass/config/commands.toml`. Also performs error handling in the event of input errors. + +#### `cmd_parser.py` + +Parses output before presentation to the user. For the time being, only BGP output from Cisco IOS is parsed. This is because for BGP Community and AS_PATH lookups, Cisco IOS returns results for *all* address families, including VPNv4. This script ensures that only IPv4 and IPv6 address family output is returned. + +#### `manage.py` + +Management script for perfoming one-off actions. For now, the only action implemented is a manual clearing of the Flask-cache cache. + +#### `templates.py` + +Renders HTML and Sass templates, compiles Sass to CSS. + +#### `vars.py` + +Imports configuration from TOML configuration files, defines default values, and exports each as a variable that can be called in other scripts. diff --git a/docs/extras/common_as_path_regex.md b/docs/extras/common_as_path_regex.md new file mode 100644 index 0000000..2b43131 --- /dev/null +++ b/docs/extras/common_as_path_regex.md @@ -0,0 +1,17 @@ +| Expression | Match | +| :----------------------- | ----------------------------------------------------: | +| `.\*` | Anything | +| `.+` | One Character | +| `^$` | Local Routes | +| `\_65000$` | Originated by `AS65000` | +| `^65000\_` | Received from `AS65000` | +| `_65000_` | Via `AS65000` | +| `_65000_65001_` | Via `AS65000` and `AS65001` | +| `_(65000_)+` | Multiple `AS65000` in path | +| `^[0-9]+$` | AS_PATH length of 1 | +| `^[0-9]+_[0-9]+$` | AS_PATH length of 2 | +| `^[0-9]*_[0-9]+$` | AS_PATH length of 1 or 2 | +| `^[0-9]*_[0-9]*$` | AS_PATH length of 0, 1, or 2 | +| `^[0-9]+_[0-9]+_[0-9]+$` | AS_PATH length of 3 | +| `_(65000\|65001)_` | Anything that has gone through `AS65000` or `AS65001` | +| `_65000(_.+_)65001$` | Anything from `AS65001` that passed through `AS65001` | diff --git a/docs/hyperglass-dark.png b/docs/hyperglass-dark.png new file mode 100644 index 0000000..ddf9632 Binary files /dev/null and b/docs/hyperglass-dark.png differ diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..412565b --- /dev/null +++ b/docs/index.md @@ -0,0 +1,25 @@ +<img src="/hyperglass-dark.png" width=300></img> + +# What is Hyperglass? + +**Hyperglass** is an open source looking glass application to provide customers, peers, and partners of network operators with unattended visibility into the operator's network. + +# Yet Another Looking Glass? + +Many of the more popular open source looking glass applications are written in PHP or Perl, languages infrequently used by many network engineers today. With the widespread adoption of network operations tooling such as [Netmiko](https://github.com/ktbyers/netmiko), [Netbox](https://github.com/digitalocean/netbox), and [Napalm](https://github.com/napalm-automation/napalm), Python is most often the language of choice for network operators. Hyperglass is built completely on Python 3 and utilizes user-friendly configuration files to provide a highly customizable, easy to deploy looking glass app. + +Hyperglass was created with the lofty goal of benefiting the internet community at-large, by providing an easier and more familiar way for operators to provide looking glass services to their customers, peers, and partners. + +# Application Stack + +| Function | Component | +| -------------------------- | --------- | +| Front End Framework | Bulma | +| Front End Application | Flask | +| Back End Application | Python 3 | +| Device Connection Handling | Netmiko | +| Configuration Format | TOML | + +# Get Started + +See the [installation guide](<>) to get started. diff --git a/docs/ratelimiting.md b/docs/ratelimiting.md new file mode 100644 index 0000000..a8f7b4f --- /dev/null +++ b/docs/ratelimiting.md @@ -0,0 +1,3 @@ +Hyperglass supports configurable rate limiting of both site loads and queries. By default, users are able to reach the site up to 120 times per minute, and submit up to 5 queries per minute. When the site limit is reached, users are directed to a separate error page until the timer expires. When the query limit is reached, an error message is displayed, and no further queries are allowed until the timer expires. + +Hyperglass uses [Flask-Limiter](https://github.com/alisaifee/flask-limiter) to handle application rate limiting. In Flask, the `/lg` route, which is used for actual queries, is associated with the query rate limit, while the default `/` route is associated with the site rate limit. Both of these limits are configurabale in `hyperglass/hyperglass/configs/config.toml`. See [here](/configuration/general/#rate_limit_query) for more information. diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 0000000..265640b --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1,2 @@ +pygments +pymdown-extensions diff --git a/hyperglass/.gitignore b/hyperglass/.gitignore new file mode 100644 index 0000000..408de54 --- /dev/null +++ b/hyperglass/.gitignore @@ -0,0 +1,6 @@ +.DS_Store +.sass-cache/ +.flask_cache/ +test.py +__pycache__/ +parsing/ diff --git a/hyperglass/__init__.py b/hyperglass/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/hyperglass/app.py b/hyperglass/app.py new file mode 100644 index 0000000..90f261f --- /dev/null +++ b/hyperglass/app.py @@ -0,0 +1,177 @@ +# Module Imports +import logging +from flask import Flask, request, Response, jsonify, flash +from flask_limiter import Limiter +from flask_limiter.util import get_remote_address +from flask_caching import Cache +import json +import toml + +# Local Imports +import vars +from cmd_execute import cmd_execute +import templates + +log = logging.getLogger(__name__) + +# Load TOML config file +devices = toml.load(open("./config/devices.toml")) +# Filter config file to list of routers & subsequent configurations +routers_list = devices["router"] +# Filter config file to array of operating systems that require IPv6 BGP lookups in CIDR format +ipv6_cidr_list = toml.load(open("./config/requires_ipv6_cidr.toml"))[ + "requires_ipv6_cidr" +] +# Main Flask definition +app = Flask(__name__, static_url_path="/static") + +# Flask-Limiter Config +rate_limit_query = vars.gen.rate_limit_query() + " per minute" +rate_limit_site = vars.gen.rate_limit_site() + "per minute" +limiter = Limiter(app, key_func=get_remote_address, default_limits=[rate_limit_site]) + +# Render Main Flask-Limiter Error Message +@app.errorhandler(429) +def error429(e): + """Renders full error page for too many site queries""" + html = templates.html.renderTemplate("429") + return html, 429 + + +def error415(): + """Renders full error page for generic errors""" + html = templates.html.renderTemplate("415") + return html, 415 + + +def errorQuery(): + """Renders modal error message""" + return 429 + + +def errorGeneral(id): + """Renders notification error message with an ID number""" + return "An unknown error occurred." + "\s" + id, 415 + + +# Flask-Caching Config +cache = Cache( + app, + config={ + "CACHE_TYPE": "filesystem", + "CACHE_DIR": vars.gen.cache_directory(), + "CACHE_DEFAULT_TIMEOUT": vars.gen.cache_timeout(), + }, +) + + +def clearCache(): + """Function to clear the Flask-Caching cache""" + with app.app_context(): + cache.clear() + + +# Main / Flask route where html is rendered via Jinja2 +@app.route("/", methods=["GET"]) +@limiter.limit(rate_limit_site) +def site(): + """Main front-end web application""" + html = templates.html.renderTemplate("index") + return html + + +# Test route for various tests +@app.route("/test", methods=["GET"]) +def testRoute(): + html = templates.html.renderTemplate("test") + return html + + +# Flask GET route to provides a JSON list of all networks/ASNs from the config file +@app.route("/networks", methods=["GET"]) +def get_networks(): + results = [] + results_dedup = set(results) + for r in routers_list: + if not r["asn"] in results_dedup: + results_dedup.add(r["asn"]) + results.append(dict(network=r["asn"])) + results_json = json.dumps(results, sort_keys=True) + return results_json + + +# Flask GET route provides a JSON list of all routers for the selected network/ASN +@app.route("/routers/<asn>", methods=["GET"]) +def get_routers(asn): + results = [] + # For any configured router matching the queried ASN, return only the address/hostname, location, and OS type of the matching routers + for r in routers_list: + if r["asn"] == asn: + if r["type"] in ipv6_cidr_list: + results.append( + dict( + location=r["location"], + hostname=r["name"], + type=r["type"], + requiresIP6Cidr=True, + ) + ) + else: + results.append( + dict( + location=r["location"], + hostname=r["name"], + type=r["type"], + requiresIP6Cidr=False, + ) + ) + results_json = json.dumps(results) + return results_json + + +# Flask POST route ingests data from the JS form submit, passes it to the backend looking glass application to perform the filtering/lookups +@app.route("/lg", methods=["POST"]) +# Invoke Flask-Limiter with configured rate limit +@limiter.limit(rate_limit_query) +def lg(): + """Main backend application initiator""" + lg_data = request.get_json() + # Stringify the form response containing serialized JSON for the request, use as key for k/v cache store so each command output value is unique + cache_key = str(lg_data) + # Check if cached entry exists + if cache.get(cache_key) is None: + cache_value = cmd_execute(lg_data) + log.debug(cache_value[1:]) + value_output = cache_value[0] + value_code = cache_value[1] + value_params = cache_value[2:] + log.debug("No cache match for: ", cache_key, "\nAdding cache entry...") + # If it doesn't, create a cache entry + try: + cache.set(cache_key, value_output) + log.debug("\nAdded cache entry: ", *value_params) + except: + raise RuntimeError("Unable to add output to cache.", 415, *value_params) + # If 200, return output + if value_code == 200: + return cache.get(cache_key) + # If 400 error, return error message and code + elif value_code in [405, 415]: + return Response(cache.get(cache_key), value_code) + # If it does, return the cached entry + else: + log.debug("Cache match for: ", cache_key, "\nReturning cached entry...") + try: + return cache.get(cache_key) + except: + id = 4152 + raise RuntimeError( + id + ":\s" + "Unable to return cached output.", 415, *value_params + ) + # Upon exception, render generic error + return Response(errorGeneral(id)) + + +if __name__ == "__main__": + templates.css.renderTemplate() + app.run(host="0.0.0.0", debug=vars.gen.debug(), port=5000) diff --git a/hyperglass/cmd_construct.py b/hyperglass/cmd_construct.py new file mode 100644 index 0000000..081f8ff --- /dev/null +++ b/hyperglass/cmd_construct.py @@ -0,0 +1,232 @@ +import sys +import logging +import toml +import re +from netaddr import * + +# Local imports +import vars + +log = logging.getLogger(__name__) +# Load TOML config file +devices = toml.load(open("./config/devices.toml")) + +# Load TOML commands file +commands = toml.load(open("./config/commands.toml")) + +# Filter config to router list +routers_list = devices["router"] + +# Receives JSON from Flask, constucts the command that will be passed to the router +# Also handles input validation & error handling +def cmd_construct(router, cmd, ipprefix): + inputParams = router, cmd, ipprefix + try: + # Loop through routers config file, match input router with configured routers, set variables + for r in routers_list: + try: + if router == r["address"]: + type = r["type"] + src_addr_ipv4 = r["src_addr_ipv4"] + src_addr_ipv6 = r["src_addr_ipv6"] + # Loop through commands config file, set variables for matched commands + for nos in commands: + if type == nos: + nos = commands[type] + nos_commands = nos[0] + # Dual stack commands (agnostic of IPv4/IPv6) + dual_commands = nos_commands["dual"] + # IPv4 Specific Commands + ipv4_commands = nos_commands["ipv4"] + # IPv6 Specific Commands + ipv6_commands = nos_commands["ipv6"] + if cmd == "Query Type": + msg = "You must select a query type." + code = 415 + log.error(msg, code, *inputParams) + return (msg, code, *inputParams) + # BGP Community Query + elif cmd in ["bgp_community"]: + # Extended Communities, new-format + if re.match("^([0-9]{0,5})\:([0-9]{1,5})$", ipprefix): + for a, c in dual_commands.items(): + if a == cmd: + command = c.format(target=ipprefix) + msg = "{i} matched new-format community.".format( + i=ipprefix + ) + code = 200 + log.info(msg, code, router, type, command) + return (msg, code, router, type, command) + # Extended Communities, 32 bit format + elif re.match("^[0-9]{1,10}$", ipprefix): + for a, c in dual_commands.items(): + if a == cmd: + command = c.format(target=ipprefix) + msg = "{i} matched 32 bit community.".format( + i=ipprefix + ) + code = 200 + log.info(msg, code, router, type, command) + return (msg, code, router, type, command) + # RFC 8092 Large Community Support + elif re.match( + "^([0-9]{1,10})\:([0-9]{1,10})\:[0-9]{1,10}$", + ipprefix, + ): + for a, c in dual_commands.items(): + if a == cmd: + command = c.format(target=ipprefix) + msg = "{i} matched large community.".format( + i=ipprefix + ) + code = 200 + log.info(msg, code, router, type, command) + return (msg, code, router, type, command) + else: + msg = "{i} is an invalid BGP Community Format.".format( + i=ipprefix + ) + code = 415 + log.error(msg, code, *inputParams) + return (msg, code, *inputParams) + # BGP AS_PATH Query + elif cmd in ["bgp_aspath"]: + if re.match(".*", ipprefix): + for a, c in dual_commands.items(): + if a == cmd: + command = c.format(target=ipprefix) + msg = "{i} matched AS_PATH regex.".format( + i=ipprefix + ) + code = 200 + log.info(msg, code, router, type, command) + return (msg, code, router, type, command) + else: + msg = "{i} is an invalid AS_PATH regex.".format( + i=ipprefix + ) + code = 415 + log.error(msg, code, *inputParams) + return (msg, code, *inputParams) + # BGP Route Query + elif cmd in ["bgp_route"]: + try: + # Use netaddr library to verify if input is a valid IPv4 address or prefix + if IPNetwork(ipprefix).ip.version == 4: + for a, c in ipv4_commands.items(): + if a == cmd: + command = c.format(target=ipprefix) + msg = "{i} is a valid IPv4 Adddress.".format( + i=ipprefix + ) + code = 200 + log.info( + msg, code, router, type, command + ) + return ( + msg, + code, + router, + type, + command, + ) + # Use netaddr library to verify if input is a valid IPv6 address or prefix + elif IPNetwork(ipprefix).ip.version == 6: + for a, c in ipv6_commands.items(): + if a == cmd: + command = c.format( + target=ipprefix + ) + msg = "{i} is a valid IPv6 Adddress.".format( + i=ipprefix + ) + code = 200 + log.info( + msg, + code, + router, + type, + command, + ) + return ( + msg, + code, + router, + type, + command, + ) + # Exception from netaddr library will return a user-facing error + except: + msg = "{i} is an invalid IP Address.".format( + i=ipprefix + ) + code = 415 + log.error(msg, code, *inputParams) + return (msg, code, *inputParams) + # Ping/Traceroute + elif cmd in ["ping", "traceroute"]: + try: + if IPNetwork(ipprefix).ip.version == 4: + for a, c in ipv4_commands.items(): + if a == cmd: + command = c.format( + target=ipprefix, + src_addr_ipv4=src_addr_ipv4, + ) + msg = "{i} is a valid IPv4 Adddress.".format( + i=ipprefix + ) + code = 200 + log.info( + msg, code, router, type, command + ) + return ( + msg, + code, + router, + type, + command, + ) + elif IPNetwork(ipprefix).ip.version == 6: + for a, c in ipv6_commands.items(): + if a == cmd: + command = c.format( + target=ipprefix, + src_addr_ipv6=src_addr_ipv6, + ) + msg = "{i} is a valid IPv6 Adddress.".format( + i=ipprefix + ) + code = 200 + log.info( + msg, code, router, type, command + ) + return ( + msg, + code, + router, + type, + command, + ) + except: + msg = "{i} is an invalid IP Address.".format( + i=ipprefix + ) + code = 415 + log.error(msg, code, *inputParams) + return (msg, code, *inputParams) + else: + msg = "Command {i} not found.".format(i=cmd) + code = 415 + log.error(msg, code, *inputParams) + return (msg, code, *inputParams) + except: + error_msg = log.error( + "Input router IP {router} does not match the configured router IP of {ip}".format( + router=router, ip=r["address"] + ) + ) + raise ValueError(error_msg) + except: + raise diff --git a/hyperglass/cmd_execute.py b/hyperglass/cmd_execute.py new file mode 100644 index 0000000..64794dc --- /dev/null +++ b/hyperglass/cmd_execute.py @@ -0,0 +1,173 @@ +import sys +import logging +import toml +import time +from netmiko import ConnectHandler +from netmiko import redispatch +from netaddr import * +from cmd_construct import cmd_construct +import vars +import cmd_parser as parser + +log = logging.getLogger(__name__) +# Load TOML config file +devices = toml.load(open("./config/devices.toml")) +# Filter config to router list +routers_list = devices["router"] +# Filter config to credential list +credentials_list = devices["credential"] +# Filter config to proxy servers +proxies_list = devices["proxy"] + +blacklist_config = toml.load(open("./config/blacklist.toml")) +blacklist = IPSet(blacklist_config["blacklist"]) + +general_error = "Error connecting to device." + + +def cmd_execute(lg_data): + # Check POST data from JS, if location matches a configured router's + # location, use the router's configured IP address to connect + for r in routers_list: + if r["location"] == lg_data["router"]: + lg_router_address = r["address"] + + # Check blacklist.toml array for prefixes/IPs and return an error upon a match + if lg_data["cmd"] in ["bgp_route", "ping", "traceroute"]: + try: + if IPNetwork(lg_data["ipprefix"]).ip in blacklist: + msg = "{i} is not allowed.".format(i=lg_data["ipprefix"]) + code = 405 + log.error(msg, code, lg_data) + return (msg, code, lg_data) + # If netaddr library throws an exception, return a user-facing error. + except: + msg = "{i} is not a valid IP Address.".format(i=lg_data["ipprefix"]) + code = 415 + log.error(msg, code, lg_data) + return (msg, code, lg_data) + # Send "clean" request to cmd_construct to build the command that will be sent to the router + msg, status, router, type, command = cmd_construct( + lg_router_address, lg_data["cmd"], lg_data["ipprefix"] + ) + # Loop through proxy config, match configured proxy name for each router with a configured proxy + # Return configured proxy parameters for netmiko + def matchProxy(search_proxy): + if configured_proxy in proxies_list: + proxy_address = proxies_list[search_proxy]["address"] + proxy_username = proxies_list[search_proxy]["username"] + proxy_password = proxies_list[search_proxy]["password"] + proxy_type = proxies_list[search_proxy]["type"] + proxy_ssh_command = proxies_list[search_proxy]["ssh_command"] + return ( + proxy_address, + proxy_username, + proxy_password, + proxy_type, + proxy_ssh_command, + ) + else: + msg = "Router does not have a proxy configured." + code = 415 + log.error(msg, code, lg_data) + return (msg, code, lg_data) + + # Matches router with configured credential + def findCred(router): + for r in routers_list: + if r["address"] == router: + configured_credential = r["credential"] + return configured_credential + + # Matches configured credential with real username/password + def returnCred(configured_credential): + if configured_credential in credentials_list: + matched_username = credentials_list[configured_credential]["username"] + matched_password = credentials_list[configured_credential]["password"] + return matched_username, matched_password + else: + msg = "Credential {i} does not exist".format(i=configured_credential) + code = 415 + log.error(msg, code, lg_data) + return (general_error, code, lg_data) + + # Connect to the router via netmiko library, return the command output + def getOutputDirect(): + try: + nm_connect_direct = ConnectHandler(**nm_host) + nm_output_direct = nm_connect_direct.send_command(command) + return nm_output_direct + except: + msg = "Unable to reach target {l}".format(l=lg_data["router"]) + code = 415 + log.error(msg, code, lg_data) + return (general_error, code, lg_data) + + # Connect to the proxy server via netmiko library, then log into the router + # via standard SSH + def getOutputProxy(router_proxy): + nm_proxy = { + "host": matchProxy(router_proxy)[0], + "username": matchProxy(router_proxy)[1], + "password": matchProxy(router_proxy)[2], + "device_type": matchProxy(router_proxy)[3], + } + nm_connect_proxied = ConnectHandler(**nm_proxy) + nm_ssh_command = matchProxy(router_proxy)[4].format(**nm_host) + "\n" + nm_connect_proxied.write_channel(nm_ssh_command) + time.sleep(1) + proxy_output = nm_connect_proxied.read_channel() + try: + # Accept SSH key warnings + if "Are you sure you want to continue connecting" in proxy_output: + nm_connect_proxied.write_channel("yes" + "\n") + time.sleep(1) + nm_connect_proxied.write_channel(nm_host["password"] + "\n") + # Send password on prompt + elif "assword" in proxy_output: + nm_connect_proxied.write_channel(nm_host["password"] + "\n") + time.sleep(1) + proxy_output += nm_connect_proxied.read_channel() + # Reclassify netmiko connection as configured device type + redispatch(nm_connect_proxied, nm_host["device_type"]) + + host_output = nm_connect_proxied.send_command(command) + if host_output: + return host_output + except: + msg = "Proxy server {p} unable to reach target {d}".format( + p=nm_proxy["host"], d=nm_host["host"] + ) + code = 415 + log.error(msg, code, lg_data) + return (general_error, code, lg_data) + + nm_host = { + "host": router, + "device_type": type, + "username": returnCred(findCred(router))[0], + "password": returnCred(findCred(router))[1], + } + + # Loop through router list, determine if proxy exists + for r in routers_list: + if r["address"] == router: + configured_proxy = r["proxy"] + if len(configured_proxy) == 0: + connection_proxied = False + else: + connection_proxied = True + if status == 200: + try: + if connection_proxied is True: + output_proxied = getOutputProxy(configured_proxy) + parsed_output = parser.parse(output_proxied, type, lg_data["cmd"]) + return parsed_output, status, router, type, command + elif connection_proxied is False: + output_direct = getOutputDirect() + parsed_output = parser.parse(output_direct, type, lg_data["cmd"]) + return parsed_output, status, router, type, command + except: + raise + else: + return msg, status, router, type, command diff --git a/hyperglass/cmd_parser.py b/hyperglass/cmd_parser.py new file mode 100644 index 0000000..e7a54ea --- /dev/null +++ b/hyperglass/cmd_parser.py @@ -0,0 +1,17 @@ +def parse(output, type, cmd): + """Splits Cisco IOS BGP output by AFI, returns only IPv4 & IPv6 output for protocol-agnostic commands (Community & AS_PATH Lookups)""" + try: + if cmd in ["bgp_community", "bgp_aspath"] and type in ["cisco_ios"]: + delimiter = "For address family: " + parsed_ipv4 = output.split(delimiter)[1] + parsed_ipv6 = output.split(delimiter)[2] + return delimiter + parsed_ipv4 + delimiter + parsed_ipv6 + else: + return output + if cmd in ["bgp_community", "bgp_aspath"] and type in ["cisco_xr"]: + delimiter = "Address Family: " + parsed_ipv4 = output.split(delimiter)[1] + parsed_ipv6 = output.split(delimiter)[2] + return delimiter + parsed_ipv4 + delimiter + parsed_ipv6 + except: + raise diff --git a/hyperglass/config/.gitignore b/hyperglass/config/.gitignore new file mode 100644 index 0000000..59285b7 --- /dev/null +++ b/hyperglass/config/.gitignore @@ -0,0 +1,2 @@ +.DS_Store +*.toml diff --git a/hyperglass/config/blacklist.toml.example b/hyperglass/config/blacklist.toml.example new file mode 100644 index 0000000..91bda32 --- /dev/null +++ b/hyperglass/config/blacklist.toml.example @@ -0,0 +1,8 @@ +# Define networks that you don't want users to be able to query. Any IP inside the subnet will return an error message. +blacklist = [ +'100.64.0.0/12', +'198.18.0.0/15', +'10.0.0.0/8', +'192.168.0.0/16', +'172.16.0.0/12' +] diff --git a/hyperglass/config/commands.toml.example b/hyperglass/config/commands.toml.example new file mode 100644 index 0000000..55f6c8b --- /dev/null +++ b/hyperglass/config/commands.toml.example @@ -0,0 +1,41 @@ +# Cisco IOS/IOS-XE +[[cisco_ios]] +[cisco_ios.dual] +bgp_community = "show bgp all community {target}" +bgp_aspath = 'show bgp all quote-regexp "{target}"' +[cisco_ios.ipv4] +bgp_route = "show bgp ipv4 unicast {target} | exclude pathid:|Epoch" +ping = "ping {target} repeat 5 source {src_addr_ipv4}" +traceroute = "traceroute {target} timeout 1 probe 2 source {src_addr_ipv4}" +[cisco_ios.ipv6] +bgp_route = "show bgp ipv6 unicast {target} | exclude pathid:|Epoch" +ping = "ping ipv6 {target} repeat 5 source {src_addr_ipv6}" +traceroute = "traceroute ipv6 {target} timeout 1 probe 2 source {src_addr_ipv6}" + +# Cisco IOS-XR +[[cisco_xr]] +[cisco_xr.dual] +bgp_community = 'show bgp all unicast community {target} | utility egrep -v "\(BGP |Table |Non-stop\)"' +bgp_aspath = 'show bgp all unicast regexp {target} | utility egrep -v "\(BGP |Table |Non-stop\)"' +[cisco_xr.ipv4] +bgp_route = 'show bgp ipv4 unicast {target} | util egrep "\(BGP routing table entry|Path \#|aggregated by|Origin |Community:|validity| from \)"' +ping = "ping ipv4 {target} count 5 source {src_addr_ipv4}" +traceroute = "traceroute ipv4 {target} timeout 1 probe 2 source {src_addr_ipv4}" +[cisco_xr.ipv6] +bgp_route = 'show bgp ipv6 unicast {target} | util egrep "\(BGP routing table entry|Path \#|aggregated by|Origin |Community:|validity| from \)"' +ping = "ping ipv6 {target} count 5 source {src_addr_ipv6}" +traceroute = "traceroute ipv6 {target} timeout 1 probe 2 source {src_addr_ipv6}" + +# Juniper +[[juniper]] +[juniper.dual] +bgp_community = "show route protocol bgp community {target}" +bgp_aspath = "show route protocol bgp aspath-regex {target}" +[juniper.ipv4] +bgp_route = "show route protocol bgp table inet.0 {target} detail" +ping = "ping inet {target} count 5 source {src_addr_ipv4}" +traceroute = "traceroute inet {target} wait 1 source {src_addr_ipv4}" +[juniper.ipv6] +bgp_route = "show route protocol bgp table inet6.0 {target} detail" +ping = "ping inet6 {target} count 5 source {src_addr_ipv6}" +traceroute = "traceroute inet6 {target} wait 1 source {src_addr_ipv6}" diff --git a/hyperglass/config/config.toml.example b/hyperglass/config/config.toml.example new file mode 100644 index 0000000..d780168 --- /dev/null +++ b/hyperglass/config/config.toml.example @@ -0,0 +1,55 @@ +# General site-wide parameters +[[general]] +primary_asn = "" +debug = true +google_analytics = "" +message_error = "" +message_blacklist = "" +message_rate_limit_query = "" +enable_bgp_route = true +enable_bgp_community = true +enable_bgp_aspath = true +enable_ping = true +enable_traceroute = true +rate_limit_query = "" +rate_limit_site = "" +cache_timeout = 120 +cache_directory = "" + +# Branding/Site Customization Parameters +[[branding]] +site_title = "" +title_mode = "" +title = "" +subtitle = "" +enable_footer = true +enable_credit = true +color_bg = "" +color_btn_submit = "" +color_tag_loctitle = "" +color_tag_cmdtitle = "" +color_tag_cmd = "" +color_tag_loc = "" +color_hero = "" +color_progressbar = "" +logo_path = "" +logo_width = "" +placeholder_prefix = "" +show_peeringdb = true +text_results = "" +text_location = "" +text_cache = "" +text_limiter_title = "" +text_limiter_subtitle = "" +text_415_title = "" +text_415_subtitle = "" +text_415_button = "" +text_help_bgp_route = "" +text_help_bgp_community = "" +text_help_bgp_aspath = "" +text_help_ping = "" +text_help_traceroute = "" +primary_font_url = "" +primary_font_name = "" +mono_font_url = "" +mono_font_name = "" diff --git a/hyperglass/config/devices.toml.example b/hyperglass/config/devices.toml.example new file mode 100644 index 0000000..5b4e000 --- /dev/null +++ b/hyperglass/config/devices.toml.example @@ -0,0 +1,54 @@ +# Routers +[[router]] +address = "10.0.0.1" +asn = "65000" +src_addr_ipv4 = "192.0.2.1" +src_addr_ipv6 = "2001:db8::1" +credential = "default" +location = "pop01" +name = "router01" +port = "22" +type = "cisco_xr" +proxy = "" + +[[router]] +address = "10.0.0.2" +asn = "65000" +src_addr_ipv4 = "192.0.2.2" +src_addr_ipv6 = "2001:db8::2" +credential = "default" +location = "pop02" +name = "router02" +port = "22" +type = "cisco_ios" +proxy = "server01" + +[[router]] +address = "10.0.0.3" +asn = "65000" +src_addr_ipv4 = "192.0.2.3" +src_addr_ipv6 = "2001:db8::3" +credential = "other" +location = "pop03" +name = "router03" +port = "22" +type = "juniper" +proxy = "" + + +# Router Credentials +[credential.'default'] +username = "username" +password = "password" + +[credential.'other'] +username = "otheruser" +password = "otherpass" + +# SSH Proxy Servers +[proxy.'server01'] +address = "10.0.1.1" +username = "username" +password = "password" +type = "linux_ssh" +ssh_command = "ssh -l {username} {host}" diff --git a/hyperglass/config/requires_ipv6_cidr.toml.example b/hyperglass/config/requires_ipv6_cidr.toml.example new file mode 100644 index 0000000..8d30c01 --- /dev/null +++ b/hyperglass/config/requires_ipv6_cidr.toml.example @@ -0,0 +1,4 @@ +requires_ipv6_cidr = [ +"cisco_ios", +"cisco_nxos" +] diff --git a/hyperglass/manage.py b/hyperglass/manage.py new file mode 100644 index 0000000..b3e9307 --- /dev/null +++ b/hyperglass/manage.py @@ -0,0 +1,20 @@ +import os +import sys +import app + + +def clearcache(): + try: + app.clearCache() + except: + raise + + +for arg in sys.argv: + try: + if arg == "clearcache": + clearcache() + print("Successfully cleared cache.") + except: + print("Failed to clear cache.") + raise diff --git a/hyperglass/static/.gitignore b/hyperglass/static/.gitignore new file mode 100644 index 0000000..2ff48c4 --- /dev/null +++ b/hyperglass/static/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +node_modules/ +package-lock.json + diff --git a/hyperglass/static/css/hyperglass.css b/hyperglass/static/css/hyperglass.css new file mode 100644 index 0000000..e153324 --- /dev/null +++ b/hyperglass/static/css/hyperglass.css @@ -0,0 +1,6991 @@ +/* Fonts */ +@import url("https://fonts.googleapis.com/css?family=Nunito:400,600,700"); +@import url("https://fonts.googleapis.com/css?family=Fira+Mono"); +/* Custom Colors */ +/*! bulma.io v0.7.4 | MIT License | github.com/jgthms/bulma */ +@keyframes spinAround { + from { + transform: rotate(0deg); } + to { + transform: rotate(359deg); } } + +.delete, .modal-close, .is-unselectable, .button, .file, .breadcrumb, .pagination-previous, +.pagination-next, +.pagination-link, +.pagination-ellipsis, .tabs { + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } + +.select:not(.is-multiple):not(.is-loading)::after, .navbar-link:not(.is-arrowless)::after { + border: 3px solid transparent; + border-radius: 2px; + border-right: 0; + border-top: 0; + content: " "; + display: block; + height: 0.625em; + margin-top: -0.4375em; + pointer-events: none; + position: absolute; + top: 50%; + transform: rotate(-45deg); + transform-origin: center; + width: 0.625em; } + +.box:not(:last-child), .content:not(:last-child), .notification:not(:last-child), .progress:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .title:not(:last-child), +.subtitle:not(:last-child), .block:not(:last-child), .highlight:not(:last-child), .breadcrumb:not(:last-child), .level:not(:last-child), .list:not(:last-child), .message:not(:last-child), .tabs:not(:last-child) { + margin-bottom: 1.5rem; } + +.delete, .modal-close { + -moz-appearance: none; + -webkit-appearance: none; + background-color: rgba(10, 10, 10, 0.2); + border: none; + border-radius: 290486px; + cursor: pointer; + pointer-events: auto; + display: inline-block; + flex-grow: 0; + flex-shrink: 0; + font-size: 0; + height: 20px; + max-height: 20px; + max-width: 20px; + min-height: 20px; + min-width: 20px; + outline: none; + position: relative; + vertical-align: top; + width: 20px; } + .delete::before, .modal-close::before, .delete::after, .modal-close::after { + background-color: white; + content: ""; + display: block; + left: 50%; + position: absolute; + top: 50%; + transform: translateX(-50%) translateY(-50%) rotate(45deg); + transform-origin: center center; } + .delete::before, .modal-close::before { + height: 2px; + width: 50%; } + .delete::after, .modal-close::after { + height: 50%; + width: 2px; } + .delete:hover, .modal-close:hover, .delete:focus, .modal-close:focus { + background-color: rgba(10, 10, 10, 0.3); } + .delete:active, .modal-close:active { + background-color: rgba(10, 10, 10, 0.4); } + .is-small.delete, .is-small.modal-close { + height: 16px; + max-height: 16px; + max-width: 16px; + min-height: 16px; + min-width: 16px; + width: 16px; } + .is-medium.delete, .is-medium.modal-close { + height: 24px; + max-height: 24px; + max-width: 24px; + min-height: 24px; + min-width: 24px; + width: 24px; } + .is-large.delete, .is-large.modal-close { + height: 32px; + max-height: 32px; + max-width: 32px; + min-height: 32px; + min-width: 32px; + width: 32px; } + +.button.is-loading::after, .select.is-loading::after, .control.is-loading::after, .loader { + animation: spinAround 500ms infinite linear; + border: 2px solid #dbdbdb; + border-radius: 290486px; + border-right-color: transparent; + border-top-color: transparent; + content: ""; + display: block; + height: 1em; + position: relative; + width: 1em; } + +.is-overlay, .image.is-square img, +.image.is-square .has-ratio, .image.is-1by1 img, +.image.is-1by1 .has-ratio, .image.is-5by4 img, +.image.is-5by4 .has-ratio, .image.is-4by3 img, +.image.is-4by3 .has-ratio, .image.is-3by2 img, +.image.is-3by2 .has-ratio, .image.is-5by3 img, +.image.is-5by3 .has-ratio, .image.is-16by9 img, +.image.is-16by9 .has-ratio, .image.is-2by1 img, +.image.is-2by1 .has-ratio, .image.is-3by1 img, +.image.is-3by1 .has-ratio, .image.is-4by5 img, +.image.is-4by5 .has-ratio, .image.is-3by4 img, +.image.is-3by4 .has-ratio, .image.is-2by3 img, +.image.is-2by3 .has-ratio, .image.is-3by5 img, +.image.is-3by5 .has-ratio, .image.is-9by16 img, +.image.is-9by16 .has-ratio, .image.is-1by2 img, +.image.is-1by2 .has-ratio, .image.is-1by3 img, +.image.is-1by3 .has-ratio, .modal, .modal-background, .hero-video { + bottom: 0; + left: 0; + position: absolute; + right: 0; + top: 0; } + +.button, .input, +.textarea, .select select, .file-cta, +.file-name, .pagination-previous, +.pagination-next, +.pagination-link, +.pagination-ellipsis { + -moz-appearance: none; + -webkit-appearance: none; + align-items: center; + border: 1px solid transparent; + border-radius: 4px; + box-shadow: none; + display: inline-flex; + font-size: 1rem; + height: 2.25em; + justify-content: flex-start; + line-height: 1.5; + padding-bottom: calc(0.375em - 1px); + padding-left: calc(0.625em - 1px); + padding-right: calc(0.625em - 1px); + padding-top: calc(0.375em - 1px); + position: relative; + vertical-align: top; } + .button:focus, .input:focus, + .textarea:focus, .select select:focus, .file-cta:focus, + .file-name:focus, .pagination-previous:focus, + .pagination-next:focus, + .pagination-link:focus, + .pagination-ellipsis:focus, .is-focused.button, .is-focused.input, + .is-focused.textarea, .select select.is-focused, .is-focused.file-cta, + .is-focused.file-name, .is-focused.pagination-previous, + .is-focused.pagination-next, + .is-focused.pagination-link, + .is-focused.pagination-ellipsis, .button:active, .input:active, + .textarea:active, .select select:active, .file-cta:active, + .file-name:active, .pagination-previous:active, + .pagination-next:active, + .pagination-link:active, + .pagination-ellipsis:active, .is-active.button, .is-active.input, + .is-active.textarea, .select select.is-active, .is-active.file-cta, + .is-active.file-name, .is-active.pagination-previous, + .is-active.pagination-next, + .is-active.pagination-link, + .is-active.pagination-ellipsis { + outline: none; } + .button[disabled], .input[disabled], + .textarea[disabled], .select select[disabled], .file-cta[disabled], + .file-name[disabled], .pagination-previous[disabled], + .pagination-next[disabled], + .pagination-link[disabled], + .pagination-ellipsis[disabled], + fieldset[disabled] .button, + fieldset[disabled] .input, + fieldset[disabled] .textarea, + fieldset[disabled] .select select, + .select fieldset[disabled] select, + fieldset[disabled] .file-cta, + fieldset[disabled] .file-name, + fieldset[disabled] .pagination-previous, + fieldset[disabled] .pagination-next, + fieldset[disabled] .pagination-link, + fieldset[disabled] .pagination-ellipsis { + cursor: not-allowed; } + +/*! minireset.css v0.0.4 | MIT License | github.com/jgthms/minireset.css */ +html, +body, +p, +ol, +ul, +li, +dl, +dt, +dd, +blockquote, +figure, +fieldset, +legend, +textarea, +pre, +iframe, +hr, +h1, +h2, +h3, +h4, +h5, +h6 { + margin: 0; + padding: 0; } + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: 100%; + font-weight: normal; } + +ul { + list-style: none; } + +button, +input, +select, +textarea { + margin: 0; } + +html { + box-sizing: border-box; } + +*, *::before, *::after { + box-sizing: inherit; } + +img, +embed, +iframe, +object, +video { + height: auto; + max-width: 100%; } + +audio { + max-width: 100%; } + +iframe { + border: 0; } + +table { + border-collapse: collapse; + border-spacing: 0; } + +td, +th { + padding: 0; + text-align: left; } + +html { + background-color: white; + font-size: 16px; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + min-width: 300px; + overflow-x: hidden; + overflow-y: scroll; + text-rendering: optimizeLegibility; + text-size-adjust: 100%; } + +article, +aside, +figure, +footer, +header, +hgroup, +section { + display: block; } + +body, +button, +input, +select, +textarea { + font-family: "Nunito", sans-serif; } + +code, +pre { + -moz-osx-font-smoothing: auto; + -webkit-font-smoothing: auto; + font-family: "Fira Mono", monospace; } + +body { + color: #4a4a4a; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; } + +a { + color: #3273dc; + cursor: pointer; + text-decoration: none; } + a strong { + color: currentColor; } + a:hover { + color: #363636; } + +code { + background-color: whitesmoke; + color: #ff3860; + font-size: 0.875em; + font-weight: normal; + padding: 0.25em 0.5em 0.25em; } + +hr { + background-color: whitesmoke; + border: none; + display: block; + height: 2px; + margin: 1.5rem 0; } + +img { + height: auto; + max-width: 100%; } + +input[type="checkbox"], +input[type="radio"] { + vertical-align: baseline; } + +small { + font-size: 0.875em; } + +span { + font-style: inherit; + font-weight: inherit; } + +strong { + color: #363636; + font-weight: 700; } + +fieldset { + border: none; } + +pre { + -webkit-overflow-scrolling: touch; + background-color: whitesmoke; + color: #4a4a4a; + font-size: 0.875em; + overflow-x: auto; + padding: 1.25rem 1.5rem; + white-space: pre; + word-wrap: normal; } + pre code { + background-color: transparent; + color: currentColor; + font-size: 1em; + padding: 0; } + +table td, +table th { + text-align: left; + vertical-align: top; } + +table th { + color: #363636; } + +.is-clearfix::after { + clear: both; + content: " "; + display: table; } + +.is-pulled-left { + float: left !important; } + +.is-pulled-right { + float: right !important; } + +.is-clipped { + overflow: hidden !important; } + +.is-size-1 { + font-size: 3rem !important; } + +.is-size-2 { + font-size: 2.5rem !important; } + +.is-size-3 { + font-size: 2rem !important; } + +.is-size-4 { + font-size: 1.5rem !important; } + +.is-size-5 { + font-size: 1.25rem !important; } + +.is-size-6 { + font-size: 1rem !important; } + +.is-size-7 { + font-size: 0.75rem !important; } + +@media screen and (max-width: 768px) { + .is-size-1-mobile { + font-size: 3rem !important; } + .is-size-2-mobile { + font-size: 2.5rem !important; } + .is-size-3-mobile { + font-size: 2rem !important; } + .is-size-4-mobile { + font-size: 1.5rem !important; } + .is-size-5-mobile { + font-size: 1.25rem !important; } + .is-size-6-mobile { + font-size: 1rem !important; } + .is-size-7-mobile { + font-size: 0.75rem !important; } } + +@media screen and (min-width: 769px), print { + .is-size-1-tablet { + font-size: 3rem !important; } + .is-size-2-tablet { + font-size: 2.5rem !important; } + .is-size-3-tablet { + font-size: 2rem !important; } + .is-size-4-tablet { + font-size: 1.5rem !important; } + .is-size-5-tablet { + font-size: 1.25rem !important; } + .is-size-6-tablet { + font-size: 1rem !important; } + .is-size-7-tablet { + font-size: 0.75rem !important; } } + +@media screen and (max-width: 1087px) { + .is-size-1-touch { + font-size: 3rem !important; } + .is-size-2-touch { + font-size: 2.5rem !important; } + .is-size-3-touch { + font-size: 2rem !important; } + .is-size-4-touch { + font-size: 1.5rem !important; } + .is-size-5-touch { + font-size: 1.25rem !important; } + .is-size-6-touch { + font-size: 1rem !important; } + .is-size-7-touch { + font-size: 0.75rem !important; } } + +@media screen and (min-width: 1088px) { + .is-size-1-desktop { + font-size: 3rem !important; } + .is-size-2-desktop { + font-size: 2.5rem !important; } + .is-size-3-desktop { + font-size: 2rem !important; } + .is-size-4-desktop { + font-size: 1.5rem !important; } + .is-size-5-desktop { + font-size: 1.25rem !important; } + .is-size-6-desktop { + font-size: 1rem !important; } + .is-size-7-desktop { + font-size: 0.75rem !important; } } + +@media screen and (min-width: 1280px) { + .is-size-1-widescreen { + font-size: 3rem !important; } + .is-size-2-widescreen { + font-size: 2.5rem !important; } + .is-size-3-widescreen { + font-size: 2rem !important; } + .is-size-4-widescreen { + font-size: 1.5rem !important; } + .is-size-5-widescreen { + font-size: 1.25rem !important; } + .is-size-6-widescreen { + font-size: 1rem !important; } + .is-size-7-widescreen { + font-size: 0.75rem !important; } } + +@media screen and (min-width: 1472px) { + .is-size-1-fullhd { + font-size: 3rem !important; } + .is-size-2-fullhd { + font-size: 2.5rem !important; } + .is-size-3-fullhd { + font-size: 2rem !important; } + .is-size-4-fullhd { + font-size: 1.5rem !important; } + .is-size-5-fullhd { + font-size: 1.25rem !important; } + .is-size-6-fullhd { + font-size: 1rem !important; } + .is-size-7-fullhd { + font-size: 0.75rem !important; } } + +.has-text-centered { + text-align: center !important; } + +.has-text-justified { + text-align: justify !important; } + +.has-text-left { + text-align: left !important; } + +.has-text-right { + text-align: right !important; } + +@media screen and (max-width: 768px) { + .has-text-centered-mobile { + text-align: center !important; } } + +@media screen and (min-width: 769px), print { + .has-text-centered-tablet { + text-align: center !important; } } + +@media screen and (min-width: 769px) and (max-width: 1087px) { + .has-text-centered-tablet-only { + text-align: center !important; } } + +@media screen and (max-width: 1087px) { + .has-text-centered-touch { + text-align: center !important; } } + +@media screen and (min-width: 1088px) { + .has-text-centered-desktop { + text-align: center !important; } } + +@media screen and (min-width: 1088px) and (max-width: 1279px) { + .has-text-centered-desktop-only { + text-align: center !important; } } + +@media screen and (min-width: 1280px) { + .has-text-centered-widescreen { + text-align: center !important; } } + +@media screen and (min-width: 1280px) and (max-width: 1471px) { + .has-text-centered-widescreen-only { + text-align: center !important; } } + +@media screen and (min-width: 1472px) { + .has-text-centered-fullhd { + text-align: center !important; } } + +@media screen and (max-width: 768px) { + .has-text-justified-mobile { + text-align: justify !important; } } + +@media screen and (min-width: 769px), print { + .has-text-justified-tablet { + text-align: justify !important; } } + +@media screen and (min-width: 769px) and (max-width: 1087px) { + .has-text-justified-tablet-only { + text-align: justify !important; } } + +@media screen and (max-width: 1087px) { + .has-text-justified-touch { + text-align: justify !important; } } + +@media screen and (min-width: 1088px) { + .has-text-justified-desktop { + text-align: justify !important; } } + +@media screen and (min-width: 1088px) and (max-width: 1279px) { + .has-text-justified-desktop-only { + text-align: justify !important; } } + +@media screen and (min-width: 1280px) { + .has-text-justified-widescreen { + text-align: justify !important; } } + +@media screen and (min-width: 1280px) and (max-width: 1471px) { + .has-text-justified-widescreen-only { + text-align: justify !important; } } + +@media screen and (min-width: 1472px) { + .has-text-justified-fullhd { + text-align: justify !important; } } + +@media screen and (max-width: 768px) { + .has-text-left-mobile { + text-align: left !important; } } + +@media screen and (min-width: 769px), print { + .has-text-left-tablet { + text-align: left !important; } } + +@media screen and (min-width: 769px) and (max-width: 1087px) { + .has-text-left-tablet-only { + text-align: left !important; } } + +@media screen and (max-width: 1087px) { + .has-text-left-touch { + text-align: left !important; } } + +@media screen and (min-width: 1088px) { + .has-text-left-desktop { + text-align: left !important; } } + +@media screen and (min-width: 1088px) and (max-width: 1279px) { + .has-text-left-desktop-only { + text-align: left !important; } } + +@media screen and (min-width: 1280px) { + .has-text-left-widescreen { + text-align: left !important; } } + +@media screen and (min-width: 1280px) and (max-width: 1471px) { + .has-text-left-widescreen-only { + text-align: left !important; } } + +@media screen and (min-width: 1472px) { + .has-text-left-fullhd { + text-align: left !important; } } + +@media screen and (max-width: 768px) { + .has-text-right-mobile { + text-align: right !important; } } + +@media screen and (min-width: 769px), print { + .has-text-right-tablet { + text-align: right !important; } } + +@media screen and (min-width: 769px) and (max-width: 1087px) { + .has-text-right-tablet-only { + text-align: right !important; } } + +@media screen and (max-width: 1087px) { + .has-text-right-touch { + text-align: right !important; } } + +@media screen and (min-width: 1088px) { + .has-text-right-desktop { + text-align: right !important; } } + +@media screen and (min-width: 1088px) and (max-width: 1279px) { + .has-text-right-desktop-only { + text-align: right !important; } } + +@media screen and (min-width: 1280px) { + .has-text-right-widescreen { + text-align: right !important; } } + +@media screen and (min-width: 1280px) and (max-width: 1471px) { + .has-text-right-widescreen-only { + text-align: right !important; } } + +@media screen and (min-width: 1472px) { + .has-text-right-fullhd { + text-align: right !important; } } + +.is-capitalized { + text-transform: capitalize !important; } + +.is-lowercase { + text-transform: lowercase !important; } + +.is-uppercase { + text-transform: uppercase !important; } + +.is-italic { + font-style: italic !important; } + +.has-text-white { + color: white !important; } + +a.has-text-white:hover, a.has-text-white:focus { + color: #e6e6e6 !important; } + +.has-background-white { + background-color: white !important; } + +.has-text-black { + color: #0a0a0a !important; } + +a.has-text-black:hover, a.has-text-black:focus { + color: black !important; } + +.has-background-black { + background-color: #0a0a0a !important; } + +.has-text-light { + color: whitesmoke !important; } + +a.has-text-light:hover, a.has-text-light:focus { + color: #dbdbdb !important; } + +.has-background-light { + background-color: whitesmoke !important; } + +.has-text-dark { + color: #363636 !important; } + +a.has-text-dark:hover, a.has-text-dark:focus { + color: #1c1c1c !important; } + +.has-background-dark { + background-color: #363636 !important; } + +.has-text-primary { + color: #00d1b2 !important; } + +a.has-text-primary:hover, a.has-text-primary:focus { + color: #009e86 !important; } + +.has-background-primary { + background-color: #00d1b2 !important; } + +.has-text-link { + color: #3273dc !important; } + +a.has-text-link:hover, a.has-text-link:focus { + color: #205bbc !important; } + +.has-background-link { + background-color: #3273dc !important; } + +.has-text-info { + color: #209cee !important; } + +a.has-text-info:hover, a.has-text-info:focus { + color: #0f81cc !important; } + +.has-background-info { + background-color: #209cee !important; } + +.has-text-success { + color: #23d160 !important; } + +a.has-text-success:hover, a.has-text-success:focus { + color: #1ca64c !important; } + +.has-background-success { + background-color: #23d160 !important; } + +.has-text-warning { + color: #ffdd57 !important; } + +a.has-text-warning:hover, a.has-text-warning:focus { + color: #ffd324 !important; } + +.has-background-warning { + background-color: #ffdd57 !important; } + +.has-text-danger { + color: #ff3860 !important; } + +a.has-text-danger:hover, a.has-text-danger:focus { + color: #ff0537 !important; } + +.has-background-danger { + background-color: #ff3860 !important; } + +.has-text-black-bis { + color: #121212 !important; } + +.has-background-black-bis { + background-color: #121212 !important; } + +.has-text-black-ter { + color: #242424 !important; } + +.has-background-black-ter { + background-color: #242424 !important; } + +.has-text-grey-darker { + color: #363636 !important; } + +.has-background-grey-darker { + background-color: #363636 !important; } + +.has-text-grey-dark { + color: #4a4a4a !important; } + +.has-background-grey-dark { + background-color: #4a4a4a !important; } + +.has-text-grey { + color: #7a7a7a !important; } + +.has-background-grey { + background-color: #7a7a7a !important; } + +.has-text-grey-light { + color: #b5b5b5 !important; } + +.has-background-grey-light { + background-color: #b5b5b5 !important; } + +.has-text-grey-lighter { + color: #dbdbdb !important; } + +.has-background-grey-lighter { + background-color: #dbdbdb !important; } + +.has-text-white-ter { + color: whitesmoke !important; } + +.has-background-white-ter { + background-color: whitesmoke !important; } + +.has-text-white-bis { + color: #fafafa !important; } + +.has-background-white-bis { + background-color: #fafafa !important; } + +.has-text-weight-light { + font-weight: 300 !important; } + +.has-text-weight-normal { + font-weight: 400 !important; } + +.has-text-weight-semibold { + font-weight: 600 !important; } + +.has-text-weight-bold { + font-weight: 700 !important; } + +.is-family-primary { + font-family: "Nunito", sans-serif !important; } + +.is-family-secondary { + font-family: "Nunito", sans-serif !important; } + +.is-family-sans-serif { + font-family: "Nunito", sans-serif !important; } + +.is-family-monospace { + font-family: "Fira Mono", monospace !important; } + +.is-family-code { + font-family: "Fira Mono", monospace !important; } + +.is-block { + display: block !important; } + +@media screen and (max-width: 768px) { + .is-block-mobile { + display: block !important; } } + +@media screen and (min-width: 769px), print { + .is-block-tablet { + display: block !important; } } + +@media screen and (min-width: 769px) and (max-width: 1087px) { + .is-block-tablet-only { + display: block !important; } } + +@media screen and (max-width: 1087px) { + .is-block-touch { + display: block !important; } } + +@media screen and (min-width: 1088px) { + .is-block-desktop { + display: block !important; } } + +@media screen and (min-width: 1088px) and (max-width: 1279px) { + .is-block-desktop-only { + display: block !important; } } + +@media screen and (min-width: 1280px) { + .is-block-widescreen { + display: block !important; } } + +@media screen and (min-width: 1280px) and (max-width: 1471px) { + .is-block-widescreen-only { + display: block !important; } } + +@media screen and (min-width: 1472px) { + .is-block-fullhd { + display: block !important; } } + +.is-flex { + display: flex !important; } + +@media screen and (max-width: 768px) { + .is-flex-mobile { + display: flex !important; } } + +@media screen and (min-width: 769px), print { + .is-flex-tablet { + display: flex !important; } } + +@media screen and (min-width: 769px) and (max-width: 1087px) { + .is-flex-tablet-only { + display: flex !important; } } + +@media screen and (max-width: 1087px) { + .is-flex-touch { + display: flex !important; } } + +@media screen and (min-width: 1088px) { + .is-flex-desktop { + display: flex !important; } } + +@media screen and (min-width: 1088px) and (max-width: 1279px) { + .is-flex-desktop-only { + display: flex !important; } } + +@media screen and (min-width: 1280px) { + .is-flex-widescreen { + display: flex !important; } } + +@media screen and (min-width: 1280px) and (max-width: 1471px) { + .is-flex-widescreen-only { + display: flex !important; } } + +@media screen and (min-width: 1472px) { + .is-flex-fullhd { + display: flex !important; } } + +.is-inline { + display: inline !important; } + +@media screen and (max-width: 768px) { + .is-inline-mobile { + display: inline !important; } } + +@media screen and (min-width: 769px), print { + .is-inline-tablet { + display: inline !important; } } + +@media screen and (min-width: 769px) and (max-width: 1087px) { + .is-inline-tablet-only { + display: inline !important; } } + +@media screen and (max-width: 1087px) { + .is-inline-touch { + display: inline !important; } } + +@media screen and (min-width: 1088px) { + .is-inline-desktop { + display: inline !important; } } + +@media screen and (min-width: 1088px) and (max-width: 1279px) { + .is-inline-desktop-only { + display: inline !important; } } + +@media screen and (min-width: 1280px) { + .is-inline-widescreen { + display: inline !important; } } + +@media screen and (min-width: 1280px) and (max-width: 1471px) { + .is-inline-widescreen-only { + display: inline !important; } } + +@media screen and (min-width: 1472px) { + .is-inline-fullhd { + display: inline !important; } } + +.is-inline-block { + display: inline-block !important; } + +@media screen and (max-width: 768px) { + .is-inline-block-mobile { + display: inline-block !important; } } + +@media screen and (min-width: 769px), print { + .is-inline-block-tablet { + display: inline-block !important; } } + +@media screen and (min-width: 769px) and (max-width: 1087px) { + .is-inline-block-tablet-only { + display: inline-block !important; } } + +@media screen and (max-width: 1087px) { + .is-inline-block-touch { + display: inline-block !important; } } + +@media screen and (min-width: 1088px) { + .is-inline-block-desktop { + display: inline-block !important; } } + +@media screen and (min-width: 1088px) and (max-width: 1279px) { + .is-inline-block-desktop-only { + display: inline-block !important; } } + +@media screen and (min-width: 1280px) { + .is-inline-block-widescreen { + display: inline-block !important; } } + +@media screen and (min-width: 1280px) and (max-width: 1471px) { + .is-inline-block-widescreen-only { + display: inline-block !important; } } + +@media screen and (min-width: 1472px) { + .is-inline-block-fullhd { + display: inline-block !important; } } + +.is-inline-flex { + display: inline-flex !important; } + +@media screen and (max-width: 768px) { + .is-inline-flex-mobile { + display: inline-flex !important; } } + +@media screen and (min-width: 769px), print { + .is-inline-flex-tablet { + display: inline-flex !important; } } + +@media screen and (min-width: 769px) and (max-width: 1087px) { + .is-inline-flex-tablet-only { + display: inline-flex !important; } } + +@media screen and (max-width: 1087px) { + .is-inline-flex-touch { + display: inline-flex !important; } } + +@media screen and (min-width: 1088px) { + .is-inline-flex-desktop { + display: inline-flex !important; } } + +@media screen and (min-width: 1088px) and (max-width: 1279px) { + .is-inline-flex-desktop-only { + display: inline-flex !important; } } + +@media screen and (min-width: 1280px) { + .is-inline-flex-widescreen { + display: inline-flex !important; } } + +@media screen and (min-width: 1280px) and (max-width: 1471px) { + .is-inline-flex-widescreen-only { + display: inline-flex !important; } } + +@media screen and (min-width: 1472px) { + .is-inline-flex-fullhd { + display: inline-flex !important; } } + +.is-hidden { + display: none !important; } + +.is-sr-only { + border: none !important; + clip: rect(0, 0, 0, 0) !important; + height: 0.01em !important; + overflow: hidden !important; + padding: 0 !important; + position: absolute !important; + white-space: nowrap !important; + width: 0.01em !important; } + +@media screen and (max-width: 768px) { + .is-hidden-mobile { + display: none !important; } } + +@media screen and (min-width: 769px), print { + .is-hidden-tablet { + display: none !important; } } + +@media screen and (min-width: 769px) and (max-width: 1087px) { + .is-hidden-tablet-only { + display: none !important; } } + +@media screen and (max-width: 1087px) { + .is-hidden-touch { + display: none !important; } } + +@media screen and (min-width: 1088px) { + .is-hidden-desktop { + display: none !important; } } + +@media screen and (min-width: 1088px) and (max-width: 1279px) { + .is-hidden-desktop-only { + display: none !important; } } + +@media screen and (min-width: 1280px) { + .is-hidden-widescreen { + display: none !important; } } + +@media screen and (min-width: 1280px) and (max-width: 1471px) { + .is-hidden-widescreen-only { + display: none !important; } } + +@media screen and (min-width: 1472px) { + .is-hidden-fullhd { + display: none !important; } } + +.is-invisible { + visibility: hidden !important; } + +@media screen and (max-width: 768px) { + .is-invisible-mobile { + visibility: hidden !important; } } + +@media screen and (min-width: 769px), print { + .is-invisible-tablet { + visibility: hidden !important; } } + +@media screen and (min-width: 769px) and (max-width: 1087px) { + .is-invisible-tablet-only { + visibility: hidden !important; } } + +@media screen and (max-width: 1087px) { + .is-invisible-touch { + visibility: hidden !important; } } + +@media screen and (min-width: 1088px) { + .is-invisible-desktop { + visibility: hidden !important; } } + +@media screen and (min-width: 1088px) and (max-width: 1279px) { + .is-invisible-desktop-only { + visibility: hidden !important; } } + +@media screen and (min-width: 1280px) { + .is-invisible-widescreen { + visibility: hidden !important; } } + +@media screen and (min-width: 1280px) and (max-width: 1471px) { + .is-invisible-widescreen-only { + visibility: hidden !important; } } + +@media screen and (min-width: 1472px) { + .is-invisible-fullhd { + visibility: hidden !important; } } + +.is-marginless { + margin: 0 !important; } + +.is-paddingless { + padding: 0 !important; } + +.is-radiusless { + border-radius: 0 !important; } + +.is-shadowless { + box-shadow: none !important; } + +.box { + background-color: white; + border-radius: 6px; + box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); + color: #4a4a4a; + display: block; + padding: 1.25rem; } + +a.box:hover, a.box:focus { + box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #3273dc; } + +a.box:active { + box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #3273dc; } + +.button { + background-color: white; + border-color: #dbdbdb; + border-width: 1px; + color: #363636; + cursor: pointer; + justify-content: center; + padding-bottom: calc(0.375em - 1px); + padding-left: 0.75em; + padding-right: 0.75em; + padding-top: calc(0.375em - 1px); + text-align: center; + white-space: nowrap; } + .button strong { + color: inherit; } + .button .icon, .button .icon.is-small, .button .icon.is-medium, .button .icon.is-large { + height: 1.5em; + width: 1.5em; } + .button .icon:first-child:not(:last-child) { + margin-left: calc(-0.375em - 1px); + margin-right: 0.1875em; } + .button .icon:last-child:not(:first-child) { + margin-left: 0.1875em; + margin-right: calc(-0.375em - 1px); } + .button .icon:first-child:last-child { + margin-left: calc(-0.375em - 1px); + margin-right: calc(-0.375em - 1px); } + .button:hover, .button.is-hovered { + border-color: #b5b5b5; + color: #363636; } + .button:focus, .button.is-focused { + border-color: #3273dc; + color: #363636; } + .button:focus:not(:active), .button.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25); } + .button:active, .button.is-active { + border-color: #4a4a4a; + color: #363636; } + .button.is-text { + background-color: transparent; + border-color: transparent; + color: #4a4a4a; + text-decoration: underline; } + .button.is-text:hover, .button.is-text.is-hovered, .button.is-text:focus, .button.is-text.is-focused { + background-color: whitesmoke; + color: #363636; } + .button.is-text:active, .button.is-text.is-active { + background-color: #e8e8e8; + color: #363636; } + .button.is-text[disabled], + fieldset[disabled] .button.is-text { + background-color: transparent; + border-color: transparent; + box-shadow: none; } + .button.is-white { + background-color: white; + border-color: transparent; + color: #0a0a0a; } + .button.is-white:hover, .button.is-white.is-hovered { + background-color: #f9f9f9; + border-color: transparent; + color: #0a0a0a; } + .button.is-white:focus, .button.is-white.is-focused { + border-color: transparent; + color: #0a0a0a; } + .button.is-white:focus:not(:active), .button.is-white.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); } + .button.is-white:active, .button.is-white.is-active { + background-color: #f2f2f2; + border-color: transparent; + color: #0a0a0a; } + .button.is-white[disabled], + fieldset[disabled] .button.is-white { + background-color: white; + border-color: transparent; + box-shadow: none; } + .button.is-white.is-inverted { + background-color: #0a0a0a; + color: white; } + .button.is-white.is-inverted:hover { + background-color: black; } + .button.is-white.is-inverted[disabled], + fieldset[disabled] .button.is-white.is-inverted { + background-color: #0a0a0a; + border-color: transparent; + box-shadow: none; + color: white; } + .button.is-white.is-loading::after { + border-color: transparent transparent #0a0a0a #0a0a0a !important; } + .button.is-white.is-outlined { + background-color: transparent; + border-color: white; + color: white; } + .button.is-white.is-outlined:hover, .button.is-white.is-outlined:focus { + background-color: white; + border-color: white; + color: #0a0a0a; } + .button.is-white.is-outlined.is-loading::after { + border-color: transparent transparent white white !important; } + .button.is-white.is-outlined[disabled], + fieldset[disabled] .button.is-white.is-outlined { + background-color: transparent; + border-color: white; + box-shadow: none; + color: white; } + .button.is-white.is-inverted.is-outlined { + background-color: transparent; + border-color: #0a0a0a; + color: #0a0a0a; } + .button.is-white.is-inverted.is-outlined:hover, .button.is-white.is-inverted.is-outlined:focus { + background-color: #0a0a0a; + color: white; } + .button.is-white.is-inverted.is-outlined[disabled], + fieldset[disabled] .button.is-white.is-inverted.is-outlined { + background-color: transparent; + border-color: #0a0a0a; + box-shadow: none; + color: #0a0a0a; } + .button.is-black { + background-color: #0a0a0a; + border-color: transparent; + color: white; } + .button.is-black:hover, .button.is-black.is-hovered { + background-color: #040404; + border-color: transparent; + color: white; } + .button.is-black:focus, .button.is-black.is-focused { + border-color: transparent; + color: white; } + .button.is-black:focus:not(:active), .button.is-black.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); } + .button.is-black:active, .button.is-black.is-active { + background-color: black; + border-color: transparent; + color: white; } + .button.is-black[disabled], + fieldset[disabled] .button.is-black { + background-color: #0a0a0a; + border-color: transparent; + box-shadow: none; } + .button.is-black.is-inverted { + background-color: white; + color: #0a0a0a; } + .button.is-black.is-inverted:hover { + background-color: #f2f2f2; } + .button.is-black.is-inverted[disabled], + fieldset[disabled] .button.is-black.is-inverted { + background-color: white; + border-color: transparent; + box-shadow: none; + color: #0a0a0a; } + .button.is-black.is-loading::after { + border-color: transparent transparent white white !important; } + .button.is-black.is-outlined { + background-color: transparent; + border-color: #0a0a0a; + color: #0a0a0a; } + .button.is-black.is-outlined:hover, .button.is-black.is-outlined:focus { + background-color: #0a0a0a; + border-color: #0a0a0a; + color: white; } + .button.is-black.is-outlined.is-loading::after { + border-color: transparent transparent #0a0a0a #0a0a0a !important; } + .button.is-black.is-outlined[disabled], + fieldset[disabled] .button.is-black.is-outlined { + background-color: transparent; + border-color: #0a0a0a; + box-shadow: none; + color: #0a0a0a; } + .button.is-black.is-inverted.is-outlined { + background-color: transparent; + border-color: white; + color: white; } + .button.is-black.is-inverted.is-outlined:hover, .button.is-black.is-inverted.is-outlined:focus { + background-color: white; + color: #0a0a0a; } + .button.is-black.is-inverted.is-outlined[disabled], + fieldset[disabled] .button.is-black.is-inverted.is-outlined { + background-color: transparent; + border-color: white; + box-shadow: none; + color: white; } + .button.is-light { + background-color: whitesmoke; + border-color: transparent; + color: #363636; } + .button.is-light:hover, .button.is-light.is-hovered { + background-color: #eeeeee; + border-color: transparent; + color: #363636; } + .button.is-light:focus, .button.is-light.is-focused { + border-color: transparent; + color: #363636; } + .button.is-light:focus:not(:active), .button.is-light.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); } + .button.is-light:active, .button.is-light.is-active { + background-color: #e8e8e8; + border-color: transparent; + color: #363636; } + .button.is-light[disabled], + fieldset[disabled] .button.is-light { + background-color: whitesmoke; + border-color: transparent; + box-shadow: none; } + .button.is-light.is-inverted { + background-color: #363636; + color: whitesmoke; } + .button.is-light.is-inverted:hover { + background-color: #292929; } + .button.is-light.is-inverted[disabled], + fieldset[disabled] .button.is-light.is-inverted { + background-color: #363636; + border-color: transparent; + box-shadow: none; + color: whitesmoke; } + .button.is-light.is-loading::after { + border-color: transparent transparent #363636 #363636 !important; } + .button.is-light.is-outlined { + background-color: transparent; + border-color: whitesmoke; + color: whitesmoke; } + .button.is-light.is-outlined:hover, .button.is-light.is-outlined:focus { + background-color: whitesmoke; + border-color: whitesmoke; + color: #363636; } + .button.is-light.is-outlined.is-loading::after { + border-color: transparent transparent whitesmoke whitesmoke !important; } + .button.is-light.is-outlined[disabled], + fieldset[disabled] .button.is-light.is-outlined { + background-color: transparent; + border-color: whitesmoke; + box-shadow: none; + color: whitesmoke; } + .button.is-light.is-inverted.is-outlined { + background-color: transparent; + border-color: #363636; + color: #363636; } + .button.is-light.is-inverted.is-outlined:hover, .button.is-light.is-inverted.is-outlined:focus { + background-color: #363636; + color: whitesmoke; } + .button.is-light.is-inverted.is-outlined[disabled], + fieldset[disabled] .button.is-light.is-inverted.is-outlined { + background-color: transparent; + border-color: #363636; + box-shadow: none; + color: #363636; } + .button.is-dark { + background-color: #363636; + border-color: transparent; + color: whitesmoke; } + .button.is-dark:hover, .button.is-dark.is-hovered { + background-color: #2f2f2f; + border-color: transparent; + color: whitesmoke; } + .button.is-dark:focus, .button.is-dark.is-focused { + border-color: transparent; + color: whitesmoke; } + .button.is-dark:focus:not(:active), .button.is-dark.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); } + .button.is-dark:active, .button.is-dark.is-active { + background-color: #292929; + border-color: transparent; + color: whitesmoke; } + .button.is-dark[disabled], + fieldset[disabled] .button.is-dark { + background-color: #363636; + border-color: transparent; + box-shadow: none; } + .button.is-dark.is-inverted { + background-color: whitesmoke; + color: #363636; } + .button.is-dark.is-inverted:hover { + background-color: #e8e8e8; } + .button.is-dark.is-inverted[disabled], + fieldset[disabled] .button.is-dark.is-inverted { + background-color: whitesmoke; + border-color: transparent; + box-shadow: none; + color: #363636; } + .button.is-dark.is-loading::after { + border-color: transparent transparent whitesmoke whitesmoke !important; } + .button.is-dark.is-outlined { + background-color: transparent; + border-color: #363636; + color: #363636; } + .button.is-dark.is-outlined:hover, .button.is-dark.is-outlined:focus { + background-color: #363636; + border-color: #363636; + color: whitesmoke; } + .button.is-dark.is-outlined.is-loading::after { + border-color: transparent transparent #363636 #363636 !important; } + .button.is-dark.is-outlined[disabled], + fieldset[disabled] .button.is-dark.is-outlined { + background-color: transparent; + border-color: #363636; + box-shadow: none; + color: #363636; } + .button.is-dark.is-inverted.is-outlined { + background-color: transparent; + border-color: whitesmoke; + color: whitesmoke; } + .button.is-dark.is-inverted.is-outlined:hover, .button.is-dark.is-inverted.is-outlined:focus { + background-color: whitesmoke; + color: #363636; } + .button.is-dark.is-inverted.is-outlined[disabled], + fieldset[disabled] .button.is-dark.is-inverted.is-outlined { + background-color: transparent; + border-color: whitesmoke; + box-shadow: none; + color: whitesmoke; } + .button.is-primary { + background-color: #00d1b2; + border-color: transparent; + color: #fff; } + .button.is-primary:hover, .button.is-primary.is-hovered { + background-color: #00c4a7; + border-color: transparent; + color: #fff; } + .button.is-primary:focus, .button.is-primary.is-focused { + border-color: transparent; + color: #fff; } + .button.is-primary:focus:not(:active), .button.is-primary.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25); } + .button.is-primary:active, .button.is-primary.is-active { + background-color: #00b89c; + border-color: transparent; + color: #fff; } + .button.is-primary[disabled], + fieldset[disabled] .button.is-primary { + background-color: #00d1b2; + border-color: transparent; + box-shadow: none; } + .button.is-primary.is-inverted { + background-color: #fff; + color: #00d1b2; } + .button.is-primary.is-inverted:hover { + background-color: #f2f2f2; } + .button.is-primary.is-inverted[disabled], + fieldset[disabled] .button.is-primary.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #00d1b2; } + .button.is-primary.is-loading::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-primary.is-outlined { + background-color: transparent; + border-color: #00d1b2; + color: #00d1b2; } + .button.is-primary.is-outlined:hover, .button.is-primary.is-outlined:focus { + background-color: #00d1b2; + border-color: #00d1b2; + color: #fff; } + .button.is-primary.is-outlined.is-loading::after { + border-color: transparent transparent #00d1b2 #00d1b2 !important; } + .button.is-primary.is-outlined[disabled], + fieldset[disabled] .button.is-primary.is-outlined { + background-color: transparent; + border-color: #00d1b2; + box-shadow: none; + color: #00d1b2; } + .button.is-primary.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; } + .button.is-primary.is-inverted.is-outlined:hover, .button.is-primary.is-inverted.is-outlined:focus { + background-color: #fff; + color: #00d1b2; } + .button.is-primary.is-inverted.is-outlined[disabled], + fieldset[disabled] .button.is-primary.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; } + .button.is-link { + background-color: #3273dc; + border-color: transparent; + color: #fff; } + .button.is-link:hover, .button.is-link.is-hovered { + background-color: #276cda; + border-color: transparent; + color: #fff; } + .button.is-link:focus, .button.is-link.is-focused { + border-color: transparent; + color: #fff; } + .button.is-link:focus:not(:active), .button.is-link.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25); } + .button.is-link:active, .button.is-link.is-active { + background-color: #2366d1; + border-color: transparent; + color: #fff; } + .button.is-link[disabled], + fieldset[disabled] .button.is-link { + background-color: #3273dc; + border-color: transparent; + box-shadow: none; } + .button.is-link.is-inverted { + background-color: #fff; + color: #3273dc; } + .button.is-link.is-inverted:hover { + background-color: #f2f2f2; } + .button.is-link.is-inverted[disabled], + fieldset[disabled] .button.is-link.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #3273dc; } + .button.is-link.is-loading::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-link.is-outlined { + background-color: transparent; + border-color: #3273dc; + color: #3273dc; } + .button.is-link.is-outlined:hover, .button.is-link.is-outlined:focus { + background-color: #3273dc; + border-color: #3273dc; + color: #fff; } + .button.is-link.is-outlined.is-loading::after { + border-color: transparent transparent #3273dc #3273dc !important; } + .button.is-link.is-outlined[disabled], + fieldset[disabled] .button.is-link.is-outlined { + background-color: transparent; + border-color: #3273dc; + box-shadow: none; + color: #3273dc; } + .button.is-link.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; } + .button.is-link.is-inverted.is-outlined:hover, .button.is-link.is-inverted.is-outlined:focus { + background-color: #fff; + color: #3273dc; } + .button.is-link.is-inverted.is-outlined[disabled], + fieldset[disabled] .button.is-link.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; } + .button.is-info { + background-color: #209cee; + border-color: transparent; + color: #fff; } + .button.is-info:hover, .button.is-info.is-hovered { + background-color: #1496ed; + border-color: transparent; + color: #fff; } + .button.is-info:focus, .button.is-info.is-focused { + border-color: transparent; + color: #fff; } + .button.is-info:focus:not(:active), .button.is-info.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25); } + .button.is-info:active, .button.is-info.is-active { + background-color: #118fe4; + border-color: transparent; + color: #fff; } + .button.is-info[disabled], + fieldset[disabled] .button.is-info { + background-color: #209cee; + border-color: transparent; + box-shadow: none; } + .button.is-info.is-inverted { + background-color: #fff; + color: #209cee; } + .button.is-info.is-inverted:hover { + background-color: #f2f2f2; } + .button.is-info.is-inverted[disabled], + fieldset[disabled] .button.is-info.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #209cee; } + .button.is-info.is-loading::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-info.is-outlined { + background-color: transparent; + border-color: #209cee; + color: #209cee; } + .button.is-info.is-outlined:hover, .button.is-info.is-outlined:focus { + background-color: #209cee; + border-color: #209cee; + color: #fff; } + .button.is-info.is-outlined.is-loading::after { + border-color: transparent transparent #209cee #209cee !important; } + .button.is-info.is-outlined[disabled], + fieldset[disabled] .button.is-info.is-outlined { + background-color: transparent; + border-color: #209cee; + box-shadow: none; + color: #209cee; } + .button.is-info.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; } + .button.is-info.is-inverted.is-outlined:hover, .button.is-info.is-inverted.is-outlined:focus { + background-color: #fff; + color: #209cee; } + .button.is-info.is-inverted.is-outlined[disabled], + fieldset[disabled] .button.is-info.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; } + .button.is-success { + background-color: #23d160; + border-color: transparent; + color: #fff; } + .button.is-success:hover, .button.is-success.is-hovered { + background-color: #22c65b; + border-color: transparent; + color: #fff; } + .button.is-success:focus, .button.is-success.is-focused { + border-color: transparent; + color: #fff; } + .button.is-success:focus:not(:active), .button.is-success.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25); } + .button.is-success:active, .button.is-success.is-active { + background-color: #20bc56; + border-color: transparent; + color: #fff; } + .button.is-success[disabled], + fieldset[disabled] .button.is-success { + background-color: #23d160; + border-color: transparent; + box-shadow: none; } + .button.is-success.is-inverted { + background-color: #fff; + color: #23d160; } + .button.is-success.is-inverted:hover { + background-color: #f2f2f2; } + .button.is-success.is-inverted[disabled], + fieldset[disabled] .button.is-success.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #23d160; } + .button.is-success.is-loading::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-success.is-outlined { + background-color: transparent; + border-color: #23d160; + color: #23d160; } + .button.is-success.is-outlined:hover, .button.is-success.is-outlined:focus { + background-color: #23d160; + border-color: #23d160; + color: #fff; } + .button.is-success.is-outlined.is-loading::after { + border-color: transparent transparent #23d160 #23d160 !important; } + .button.is-success.is-outlined[disabled], + fieldset[disabled] .button.is-success.is-outlined { + background-color: transparent; + border-color: #23d160; + box-shadow: none; + color: #23d160; } + .button.is-success.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; } + .button.is-success.is-inverted.is-outlined:hover, .button.is-success.is-inverted.is-outlined:focus { + background-color: #fff; + color: #23d160; } + .button.is-success.is-inverted.is-outlined[disabled], + fieldset[disabled] .button.is-success.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; } + .button.is-warning { + background-color: #ffdd57; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); } + .button.is-warning:hover, .button.is-warning.is-hovered { + background-color: #ffdb4a; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); } + .button.is-warning:focus, .button.is-warning.is-focused { + border-color: transparent; + color: rgba(0, 0, 0, 0.7); } + .button.is-warning:focus:not(:active), .button.is-warning.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); } + .button.is-warning:active, .button.is-warning.is-active { + background-color: #ffd83d; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); } + .button.is-warning[disabled], + fieldset[disabled] .button.is-warning { + background-color: #ffdd57; + border-color: transparent; + box-shadow: none; } + .button.is-warning.is-inverted { + background-color: rgba(0, 0, 0, 0.7); + color: #ffdd57; } + .button.is-warning.is-inverted:hover { + background-color: rgba(0, 0, 0, 0.7); } + .button.is-warning.is-inverted[disabled], + fieldset[disabled] .button.is-warning.is-inverted { + background-color: rgba(0, 0, 0, 0.7); + border-color: transparent; + box-shadow: none; + color: #ffdd57; } + .button.is-warning.is-loading::after { + border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; } + .button.is-warning.is-outlined { + background-color: transparent; + border-color: #ffdd57; + color: #ffdd57; } + .button.is-warning.is-outlined:hover, .button.is-warning.is-outlined:focus { + background-color: #ffdd57; + border-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } + .button.is-warning.is-outlined.is-loading::after { + border-color: transparent transparent #ffdd57 #ffdd57 !important; } + .button.is-warning.is-outlined[disabled], + fieldset[disabled] .button.is-warning.is-outlined { + background-color: transparent; + border-color: #ffdd57; + box-shadow: none; + color: #ffdd57; } + .button.is-warning.is-inverted.is-outlined { + background-color: transparent; + border-color: rgba(0, 0, 0, 0.7); + color: rgba(0, 0, 0, 0.7); } + .button.is-warning.is-inverted.is-outlined:hover, .button.is-warning.is-inverted.is-outlined:focus { + background-color: rgba(0, 0, 0, 0.7); + color: #ffdd57; } + .button.is-warning.is-inverted.is-outlined[disabled], + fieldset[disabled] .button.is-warning.is-inverted.is-outlined { + background-color: transparent; + border-color: rgba(0, 0, 0, 0.7); + box-shadow: none; + color: rgba(0, 0, 0, 0.7); } + .button.is-danger { + background-color: #ff3860; + border-color: transparent; + color: #fff; } + .button.is-danger:hover, .button.is-danger.is-hovered { + background-color: #ff2b56; + border-color: transparent; + color: #fff; } + .button.is-danger:focus, .button.is-danger.is-focused { + border-color: transparent; + color: #fff; } + .button.is-danger:focus:not(:active), .button.is-danger.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25); } + .button.is-danger:active, .button.is-danger.is-active { + background-color: #ff1f4b; + border-color: transparent; + color: #fff; } + .button.is-danger[disabled], + fieldset[disabled] .button.is-danger { + background-color: #ff3860; + border-color: transparent; + box-shadow: none; } + .button.is-danger.is-inverted { + background-color: #fff; + color: #ff3860; } + .button.is-danger.is-inverted:hover { + background-color: #f2f2f2; } + .button.is-danger.is-inverted[disabled], + fieldset[disabled] .button.is-danger.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #ff3860; } + .button.is-danger.is-loading::after { + border-color: transparent transparent #fff #fff !important; } + .button.is-danger.is-outlined { + background-color: transparent; + border-color: #ff3860; + color: #ff3860; } + .button.is-danger.is-outlined:hover, .button.is-danger.is-outlined:focus { + background-color: #ff3860; + border-color: #ff3860; + color: #fff; } + .button.is-danger.is-outlined.is-loading::after { + border-color: transparent transparent #ff3860 #ff3860 !important; } + .button.is-danger.is-outlined[disabled], + fieldset[disabled] .button.is-danger.is-outlined { + background-color: transparent; + border-color: #ff3860; + box-shadow: none; + color: #ff3860; } + .button.is-danger.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; } + .button.is-danger.is-inverted.is-outlined:hover, .button.is-danger.is-inverted.is-outlined:focus { + background-color: #fff; + color: #ff3860; } + .button.is-danger.is-inverted.is-outlined[disabled], + fieldset[disabled] .button.is-danger.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; } + .button.is-small { + border-radius: 2px; + font-size: 0.75rem; } + .button.is-normal { + font-size: 1rem; } + .button.is-medium { + font-size: 1.25rem; } + .button.is-large { + font-size: 1.5rem; } + .button[disabled], + fieldset[disabled] .button { + background-color: white; + border-color: #dbdbdb; + box-shadow: none; + opacity: 0.5; } + .button.is-fullwidth { + display: flex; + width: 100%; } + .button.is-loading { + color: transparent !important; + pointer-events: none; } + .button.is-loading::after { + position: absolute; + left: calc(50% - (1em / 2)); + top: calc(50% - (1em / 2)); + position: absolute !important; } + .button.is-static { + background-color: whitesmoke; + border-color: #dbdbdb; + color: #7a7a7a; + box-shadow: none; + pointer-events: none; } + .button.is-rounded { + border-radius: 290486px; + padding-left: 1em; + padding-right: 1em; } + +.buttons { + align-items: center; + display: flex; + flex-wrap: wrap; + justify-content: flex-start; } + .buttons .button { + margin-bottom: 0.5rem; } + .buttons .button:not(:last-child):not(.is-fullwidth) { + margin-right: 0.5rem; } + .buttons:last-child { + margin-bottom: -0.5rem; } + .buttons:not(:last-child) { + margin-bottom: 1rem; } + .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large) { + border-radius: 2px; + font-size: 0.75rem; } + .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large) { + font-size: 1.25rem; } + .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium) { + font-size: 1.5rem; } + .buttons.has-addons .button:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0; } + .buttons.has-addons .button:not(:last-child) { + border-bottom-right-radius: 0; + border-top-right-radius: 0; + margin-right: -1px; } + .buttons.has-addons .button:last-child { + margin-right: 0; } + .buttons.has-addons .button:hover, .buttons.has-addons .button.is-hovered { + z-index: 2; } + .buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected { + z-index: 3; } + .buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected:hover { + z-index: 4; } + .buttons.has-addons .button.is-expanded { + flex-grow: 1; } + .buttons.is-centered { + justify-content: center; } + .buttons.is-right { + justify-content: flex-end; } + +.container { + margin: 0 auto; + position: relative; } + @media screen and (min-width: 1088px) { + .container { + max-width: 960px; + width: 960px; } + .container.is-fluid { + margin-left: 64px; + margin-right: 64px; + max-width: none; + width: auto; } } + @media screen and (max-width: 1279px) { + .container.is-widescreen { + max-width: 1152px; + width: auto; } } + @media screen and (max-width: 1471px) { + .container.is-fullhd { + max-width: 1344px; + width: auto; } } + @media screen and (min-width: 1280px) { + .container { + max-width: 1152px; + width: 1152px; } } + @media screen and (min-width: 1472px) { + .container { + max-width: 1344px; + width: 1344px; } } + +.content li + li { + margin-top: 0.25em; } + +.content p:not(:last-child), +.content dl:not(:last-child), +.content ol:not(:last-child), +.content ul:not(:last-child), +.content blockquote:not(:last-child), +.content pre:not(:last-child), +.content table:not(:last-child) { + margin-bottom: 1em; } + +.content h1, +.content h2, +.content h3, +.content h4, +.content h5, +.content h6 { + color: #363636; + font-weight: 600; + line-height: 1.125; } + +.content h1 { + font-size: 2em; + margin-bottom: 0.5em; } + .content h1:not(:first-child) { + margin-top: 1em; } + +.content h2 { + font-size: 1.75em; + margin-bottom: 0.5714em; } + .content h2:not(:first-child) { + margin-top: 1.1428em; } + +.content h3 { + font-size: 1.5em; + margin-bottom: 0.6666em; } + .content h3:not(:first-child) { + margin-top: 1.3333em; } + +.content h4 { + font-size: 1.25em; + margin-bottom: 0.8em; } + +.content h5 { + font-size: 1.125em; + margin-bottom: 0.8888em; } + +.content h6 { + font-size: 1em; + margin-bottom: 1em; } + +.content blockquote { + background-color: whitesmoke; + border-left: 5px solid #dbdbdb; + padding: 1.25em 1.5em; } + +.content ol { + list-style-position: outside; + margin-left: 2em; + margin-top: 1em; } + .content ol:not([type]) { + list-style-type: decimal; } + .content ol:not([type]).is-lower-alpha { + list-style-type: lower-alpha; } + .content ol:not([type]).is-lower-roman { + list-style-type: lower-roman; } + .content ol:not([type]).is-upper-alpha { + list-style-type: upper-alpha; } + .content ol:not([type]).is-upper-roman { + list-style-type: upper-roman; } + +.content ul { + list-style: disc outside; + margin-left: 2em; + margin-top: 1em; } + .content ul ul { + list-style-type: circle; + margin-top: 0.5em; } + .content ul ul ul { + list-style-type: square; } + +.content dd { + margin-left: 2em; } + +.content figure { + margin-left: 2em; + margin-right: 2em; + text-align: center; } + .content figure:not(:first-child) { + margin-top: 2em; } + .content figure:not(:last-child) { + margin-bottom: 2em; } + .content figure img { + display: inline-block; } + .content figure figcaption { + font-style: italic; } + +.content pre { + -webkit-overflow-scrolling: touch; + overflow-x: auto; + padding: 1.25em 1.5em; + white-space: pre; + word-wrap: normal; } + +.content sup, +.content sub { + font-size: 75%; } + +.content table { + width: 100%; } + .content table td, + .content table th { + border: 1px solid #dbdbdb; + border-width: 0 0 1px; + padding: 0.5em 0.75em; + vertical-align: top; } + .content table th { + color: #363636; + text-align: left; } + .content table thead td, + .content table thead th { + border-width: 0 0 2px; + color: #363636; } + .content table tfoot td, + .content table tfoot th { + border-width: 2px 0 0; + color: #363636; } + .content table tbody tr:last-child td, + .content table tbody tr:last-child th { + border-bottom-width: 0; } + +.content.is-small { + font-size: 0.75rem; } + +.content.is-medium { + font-size: 1.25rem; } + +.content.is-large { + font-size: 1.5rem; } + +.input, +.textarea { + background-color: white; + border-color: #dbdbdb; + color: #363636; + box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1); + max-width: 100%; + width: 100%; } + .input::-moz-placeholder, + .textarea::-moz-placeholder { + color: rgba(54, 54, 54, 0.3); } + .input::-webkit-input-placeholder, + .textarea::-webkit-input-placeholder { + color: rgba(54, 54, 54, 0.3); } + .input:-moz-placeholder, + .textarea:-moz-placeholder { + color: rgba(54, 54, 54, 0.3); } + .input:-ms-input-placeholder, + .textarea:-ms-input-placeholder { + color: rgba(54, 54, 54, 0.3); } + .input:hover, .input.is-hovered, + .textarea:hover, + .textarea.is-hovered { + border-color: #b5b5b5; } + .input:focus, .input.is-focused, .input:active, .input.is-active, + .textarea:focus, + .textarea.is-focused, + .textarea:active, + .textarea.is-active { + border-color: #3273dc; + box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25); } + .input[disabled], + fieldset[disabled] .input, + .textarea[disabled], + fieldset[disabled] + .textarea { + background-color: whitesmoke; + border-color: whitesmoke; + box-shadow: none; + color: #7a7a7a; } + .input[disabled]::-moz-placeholder, + fieldset[disabled] .input::-moz-placeholder, + .textarea[disabled]::-moz-placeholder, + fieldset[disabled] + .textarea::-moz-placeholder { + color: rgba(122, 122, 122, 0.3); } + .input[disabled]::-webkit-input-placeholder, + fieldset[disabled] .input::-webkit-input-placeholder, + .textarea[disabled]::-webkit-input-placeholder, + fieldset[disabled] + .textarea::-webkit-input-placeholder { + color: rgba(122, 122, 122, 0.3); } + .input[disabled]:-moz-placeholder, + fieldset[disabled] .input:-moz-placeholder, + .textarea[disabled]:-moz-placeholder, + fieldset[disabled] + .textarea:-moz-placeholder { + color: rgba(122, 122, 122, 0.3); } + .input[disabled]:-ms-input-placeholder, + fieldset[disabled] .input:-ms-input-placeholder, + .textarea[disabled]:-ms-input-placeholder, + fieldset[disabled] + .textarea:-ms-input-placeholder { + color: rgba(122, 122, 122, 0.3); } + .input[readonly], + .textarea[readonly] { + box-shadow: none; } + .input.is-white, + .textarea.is-white { + border-color: white; } + .input.is-white:focus, .input.is-white.is-focused, .input.is-white:active, .input.is-white.is-active, + .textarea.is-white:focus, + .textarea.is-white.is-focused, + .textarea.is-white:active, + .textarea.is-white.is-active { + box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); } + .input.is-black, + .textarea.is-black { + border-color: #0a0a0a; } + .input.is-black:focus, .input.is-black.is-focused, .input.is-black:active, .input.is-black.is-active, + .textarea.is-black:focus, + .textarea.is-black.is-focused, + .textarea.is-black:active, + .textarea.is-black.is-active { + box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); } + .input.is-light, + .textarea.is-light { + border-color: whitesmoke; } + .input.is-light:focus, .input.is-light.is-focused, .input.is-light:active, .input.is-light.is-active, + .textarea.is-light:focus, + .textarea.is-light.is-focused, + .textarea.is-light:active, + .textarea.is-light.is-active { + box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); } + .input.is-dark, + .textarea.is-dark { + border-color: #363636; } + .input.is-dark:focus, .input.is-dark.is-focused, .input.is-dark:active, .input.is-dark.is-active, + .textarea.is-dark:focus, + .textarea.is-dark.is-focused, + .textarea.is-dark:active, + .textarea.is-dark.is-active { + box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); } + .input.is-primary, + .textarea.is-primary { + border-color: #00d1b2; } + .input.is-primary:focus, .input.is-primary.is-focused, .input.is-primary:active, .input.is-primary.is-active, + .textarea.is-primary:focus, + .textarea.is-primary.is-focused, + .textarea.is-primary:active, + .textarea.is-primary.is-active { + box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25); } + .input.is-link, + .textarea.is-link { + border-color: #3273dc; } + .input.is-link:focus, .input.is-link.is-focused, .input.is-link:active, .input.is-link.is-active, + .textarea.is-link:focus, + .textarea.is-link.is-focused, + .textarea.is-link:active, + .textarea.is-link.is-active { + box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25); } + .input.is-info, + .textarea.is-info { + border-color: #209cee; } + .input.is-info:focus, .input.is-info.is-focused, .input.is-info:active, .input.is-info.is-active, + .textarea.is-info:focus, + .textarea.is-info.is-focused, + .textarea.is-info:active, + .textarea.is-info.is-active { + box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25); } + .input.is-success, + .textarea.is-success { + border-color: #23d160; } + .input.is-success:focus, .input.is-success.is-focused, .input.is-success:active, .input.is-success.is-active, + .textarea.is-success:focus, + .textarea.is-success.is-focused, + .textarea.is-success:active, + .textarea.is-success.is-active { + box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25); } + .input.is-warning, + .textarea.is-warning { + border-color: #ffdd57; } + .input.is-warning:focus, .input.is-warning.is-focused, .input.is-warning:active, .input.is-warning.is-active, + .textarea.is-warning:focus, + .textarea.is-warning.is-focused, + .textarea.is-warning:active, + .textarea.is-warning.is-active { + box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); } + .input.is-danger, + .textarea.is-danger { + border-color: #ff3860; } + .input.is-danger:focus, .input.is-danger.is-focused, .input.is-danger:active, .input.is-danger.is-active, + .textarea.is-danger:focus, + .textarea.is-danger.is-focused, + .textarea.is-danger:active, + .textarea.is-danger.is-active { + box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25); } + .input.is-small, + .textarea.is-small { + border-radius: 2px; + font-size: 0.75rem; } + .input.is-medium, + .textarea.is-medium { + font-size: 1.25rem; } + .input.is-large, + .textarea.is-large { + font-size: 1.5rem; } + .input.is-fullwidth, + .textarea.is-fullwidth { + display: block; + width: 100%; } + .input.is-inline, + .textarea.is-inline { + display: inline; + width: auto; } + +.input.is-rounded { + border-radius: 290486px; + padding-left: 1em; + padding-right: 1em; } + +.input.is-static { + background-color: transparent; + border-color: transparent; + box-shadow: none; + padding-left: 0; + padding-right: 0; } + +.textarea { + display: block; + max-width: 100%; + min-width: 100%; + padding: 0.625em; + resize: vertical; } + .textarea:not([rows]) { + max-height: 600px; + min-height: 120px; } + .textarea[rows] { + height: initial; } + .textarea.has-fixed-size { + resize: none; } + +.checkbox, +.radio { + cursor: pointer; + display: inline-block; + line-height: 1.25; + position: relative; } + .checkbox input, + .radio input { + cursor: pointer; } + .checkbox:hover, + .radio:hover { + color: #363636; } + .checkbox[disabled], + fieldset[disabled] .checkbox, + .radio[disabled], + fieldset[disabled] + .radio { + color: #7a7a7a; + cursor: not-allowed; } + +.radio + .radio { + margin-left: 0.5em; } + +.select { + display: inline-block; + max-width: 100%; + position: relative; + vertical-align: top; } + .select:not(.is-multiple) { + height: 2.25em; } + .select:not(.is-multiple):not(.is-loading)::after { + border-color: #3273dc; + right: 1.125em; + z-index: 4; } + .select.is-rounded select { + border-radius: 290486px; + padding-left: 1em; } + .select select { + background-color: white; + border-color: #dbdbdb; + color: #363636; + cursor: pointer; + display: block; + font-size: 1em; + max-width: 100%; + outline: none; } + .select select::-moz-placeholder { + color: rgba(54, 54, 54, 0.3); } + .select select::-webkit-input-placeholder { + color: rgba(54, 54, 54, 0.3); } + .select select:-moz-placeholder { + color: rgba(54, 54, 54, 0.3); } + .select select:-ms-input-placeholder { + color: rgba(54, 54, 54, 0.3); } + .select select:hover, .select select.is-hovered { + border-color: #b5b5b5; } + .select select:focus, .select select.is-focused, .select select:active, .select select.is-active { + border-color: #3273dc; + box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25); } + .select select[disabled], + fieldset[disabled] .select select { + background-color: whitesmoke; + border-color: whitesmoke; + box-shadow: none; + color: #7a7a7a; } + .select select[disabled]::-moz-placeholder, + fieldset[disabled] .select select::-moz-placeholder { + color: rgba(122, 122, 122, 0.3); } + .select select[disabled]::-webkit-input-placeholder, + fieldset[disabled] .select select::-webkit-input-placeholder { + color: rgba(122, 122, 122, 0.3); } + .select select[disabled]:-moz-placeholder, + fieldset[disabled] .select select:-moz-placeholder { + color: rgba(122, 122, 122, 0.3); } + .select select[disabled]:-ms-input-placeholder, + fieldset[disabled] .select select:-ms-input-placeholder { + color: rgba(122, 122, 122, 0.3); } + .select select::-ms-expand { + display: none; } + .select select[disabled]:hover, + fieldset[disabled] .select select:hover { + border-color: whitesmoke; } + .select select:not([multiple]) { + padding-right: 2.5em; } + .select select[multiple] { + height: auto; + padding: 0; } + .select select[multiple] option { + padding: 0.5em 1em; } + .select:not(.is-multiple):not(.is-loading):hover::after { + border-color: #363636; } + .select.is-white:not(:hover)::after { + border-color: white; } + .select.is-white select { + border-color: white; } + .select.is-white select:hover, .select.is-white select.is-hovered { + border-color: #f2f2f2; } + .select.is-white select:focus, .select.is-white select.is-focused, .select.is-white select:active, .select.is-white select.is-active { + box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); } + .select.is-black:not(:hover)::after { + border-color: #0a0a0a; } + .select.is-black select { + border-color: #0a0a0a; } + .select.is-black select:hover, .select.is-black select.is-hovered { + border-color: black; } + .select.is-black select:focus, .select.is-black select.is-focused, .select.is-black select:active, .select.is-black select.is-active { + box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); } + .select.is-light:not(:hover)::after { + border-color: whitesmoke; } + .select.is-light select { + border-color: whitesmoke; } + .select.is-light select:hover, .select.is-light select.is-hovered { + border-color: #e8e8e8; } + .select.is-light select:focus, .select.is-light select.is-focused, .select.is-light select:active, .select.is-light select.is-active { + box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); } + .select.is-dark:not(:hover)::after { + border-color: #363636; } + .select.is-dark select { + border-color: #363636; } + .select.is-dark select:hover, .select.is-dark select.is-hovered { + border-color: #292929; } + .select.is-dark select:focus, .select.is-dark select.is-focused, .select.is-dark select:active, .select.is-dark select.is-active { + box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); } + .select.is-primary:not(:hover)::after { + border-color: #00d1b2; } + .select.is-primary select { + border-color: #00d1b2; } + .select.is-primary select:hover, .select.is-primary select.is-hovered { + border-color: #00b89c; } + .select.is-primary select:focus, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select.is-active { + box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25); } + .select.is-link:not(:hover)::after { + border-color: #3273dc; } + .select.is-link select { + border-color: #3273dc; } + .select.is-link select:hover, .select.is-link select.is-hovered { + border-color: #2366d1; } + .select.is-link select:focus, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select.is-active { + box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25); } + .select.is-info:not(:hover)::after { + border-color: #209cee; } + .select.is-info select { + border-color: #209cee; } + .select.is-info select:hover, .select.is-info select.is-hovered { + border-color: #118fe4; } + .select.is-info select:focus, .select.is-info select.is-focused, .select.is-info select:active, .select.is-info select.is-active { + box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25); } + .select.is-success:not(:hover)::after { + border-color: #23d160; } + .select.is-success select { + border-color: #23d160; } + .select.is-success select:hover, .select.is-success select.is-hovered { + border-color: #20bc56; } + .select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active { + box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25); } + .select.is-warning:not(:hover)::after { + border-color: #ffdd57; } + .select.is-warning select { + border-color: #ffdd57; } + .select.is-warning select:hover, .select.is-warning select.is-hovered { + border-color: #ffd83d; } + .select.is-warning select:focus, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select.is-active { + box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); } + .select.is-danger:not(:hover)::after { + border-color: #ff3860; } + .select.is-danger select { + border-color: #ff3860; } + .select.is-danger select:hover, .select.is-danger select.is-hovered { + border-color: #ff1f4b; } + .select.is-danger select:focus, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select.is-active { + box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25); } + .select.is-small { + border-radius: 2px; + font-size: 0.75rem; } + .select.is-medium { + font-size: 1.25rem; } + .select.is-large { + font-size: 1.5rem; } + .select.is-disabled::after { + border-color: #7a7a7a; } + .select.is-fullwidth { + width: 100%; } + .select.is-fullwidth select { + width: 100%; } + .select.is-loading::after { + margin-top: 0; + position: absolute; + right: 0.625em; + top: 0.625em; + transform: none; } + .select.is-loading.is-small:after { + font-size: 0.75rem; } + .select.is-loading.is-medium:after { + font-size: 1.25rem; } + .select.is-loading.is-large:after { + font-size: 1.5rem; } + +.file { + align-items: stretch; + display: flex; + justify-content: flex-start; + position: relative; } + .file.is-white .file-cta { + background-color: white; + border-color: transparent; + color: #0a0a0a; } + .file.is-white:hover .file-cta, .file.is-white.is-hovered .file-cta { + background-color: #f9f9f9; + border-color: transparent; + color: #0a0a0a; } + .file.is-white:focus .file-cta, .file.is-white.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25); + color: #0a0a0a; } + .file.is-white:active .file-cta, .file.is-white.is-active .file-cta { + background-color: #f2f2f2; + border-color: transparent; + color: #0a0a0a; } + .file.is-black .file-cta { + background-color: #0a0a0a; + border-color: transparent; + color: white; } + .file.is-black:hover .file-cta, .file.is-black.is-hovered .file-cta { + background-color: #040404; + border-color: transparent; + color: white; } + .file.is-black:focus .file-cta, .file.is-black.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25); + color: white; } + .file.is-black:active .file-cta, .file.is-black.is-active .file-cta { + background-color: black; + border-color: transparent; + color: white; } + .file.is-light .file-cta { + background-color: whitesmoke; + border-color: transparent; + color: #363636; } + .file.is-light:hover .file-cta, .file.is-light.is-hovered .file-cta { + background-color: #eeeeee; + border-color: transparent; + color: #363636; } + .file.is-light:focus .file-cta, .file.is-light.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25); + color: #363636; } + .file.is-light:active .file-cta, .file.is-light.is-active .file-cta { + background-color: #e8e8e8; + border-color: transparent; + color: #363636; } + .file.is-dark .file-cta { + background-color: #363636; + border-color: transparent; + color: whitesmoke; } + .file.is-dark:hover .file-cta, .file.is-dark.is-hovered .file-cta { + background-color: #2f2f2f; + border-color: transparent; + color: whitesmoke; } + .file.is-dark:focus .file-cta, .file.is-dark.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25); + color: whitesmoke; } + .file.is-dark:active .file-cta, .file.is-dark.is-active .file-cta { + background-color: #292929; + border-color: transparent; + color: whitesmoke; } + .file.is-primary .file-cta { + background-color: #00d1b2; + border-color: transparent; + color: #fff; } + .file.is-primary:hover .file-cta, .file.is-primary.is-hovered .file-cta { + background-color: #00c4a7; + border-color: transparent; + color: #fff; } + .file.is-primary:focus .file-cta, .file.is-primary.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(0, 209, 178, 0.25); + color: #fff; } + .file.is-primary:active .file-cta, .file.is-primary.is-active .file-cta { + background-color: #00b89c; + border-color: transparent; + color: #fff; } + .file.is-link .file-cta { + background-color: #3273dc; + border-color: transparent; + color: #fff; } + .file.is-link:hover .file-cta, .file.is-link.is-hovered .file-cta { + background-color: #276cda; + border-color: transparent; + color: #fff; } + .file.is-link:focus .file-cta, .file.is-link.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(50, 115, 220, 0.25); + color: #fff; } + .file.is-link:active .file-cta, .file.is-link.is-active .file-cta { + background-color: #2366d1; + border-color: transparent; + color: #fff; } + .file.is-info .file-cta { + background-color: #209cee; + border-color: transparent; + color: #fff; } + .file.is-info:hover .file-cta, .file.is-info.is-hovered .file-cta { + background-color: #1496ed; + border-color: transparent; + color: #fff; } + .file.is-info:focus .file-cta, .file.is-info.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25); + color: #fff; } + .file.is-info:active .file-cta, .file.is-info.is-active .file-cta { + background-color: #118fe4; + border-color: transparent; + color: #fff; } + .file.is-success .file-cta { + background-color: #23d160; + border-color: transparent; + color: #fff; } + .file.is-success:hover .file-cta, .file.is-success.is-hovered .file-cta { + background-color: #22c65b; + border-color: transparent; + color: #fff; } + .file.is-success:focus .file-cta, .file.is-success.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.25); + color: #fff; } + .file.is-success:active .file-cta, .file.is-success.is-active .file-cta { + background-color: #20bc56; + border-color: transparent; + color: #fff; } + .file.is-warning .file-cta { + background-color: #ffdd57; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); } + .file.is-warning:hover .file-cta, .file.is-warning.is-hovered .file-cta { + background-color: #ffdb4a; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); } + .file.is-warning:focus .file-cta, .file.is-warning.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25); + color: rgba(0, 0, 0, 0.7); } + .file.is-warning:active .file-cta, .file.is-warning.is-active .file-cta { + background-color: #ffd83d; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); } + .file.is-danger .file-cta { + background-color: #ff3860; + border-color: transparent; + color: #fff; } + .file.is-danger:hover .file-cta, .file.is-danger.is-hovered .file-cta { + background-color: #ff2b56; + border-color: transparent; + color: #fff; } + .file.is-danger:focus .file-cta, .file.is-danger.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.25); + color: #fff; } + .file.is-danger:active .file-cta, .file.is-danger.is-active .file-cta { + background-color: #ff1f4b; + border-color: transparent; + color: #fff; } + .file.is-small { + font-size: 0.75rem; } + .file.is-medium { + font-size: 1.25rem; } + .file.is-medium .file-icon .fa { + font-size: 21px; } + .file.is-large { + font-size: 1.5rem; } + .file.is-large .file-icon .fa { + font-size: 28px; } + .file.has-name .file-cta { + border-bottom-right-radius: 0; + border-top-right-radius: 0; } + .file.has-name .file-name { + border-bottom-left-radius: 0; + border-top-left-radius: 0; } + .file.has-name.is-empty .file-cta { + border-radius: 4px; } + .file.has-name.is-empty .file-name { + display: none; } + .file.is-boxed .file-label { + flex-direction: column; } + .file.is-boxed .file-cta { + flex-direction: column; + height: auto; + padding: 1em 3em; } + .file.is-boxed .file-name { + border-width: 0 1px 1px; } + .file.is-boxed .file-icon { + height: 1.5em; + width: 1.5em; } + .file.is-boxed .file-icon .fa { + font-size: 21px; } + .file.is-boxed.is-small .file-icon .fa { + font-size: 14px; } + .file.is-boxed.is-medium .file-icon .fa { + font-size: 28px; } + .file.is-boxed.is-large .file-icon .fa { + font-size: 35px; } + .file.is-boxed.has-name .file-cta { + border-radius: 4px 4px 0 0; } + .file.is-boxed.has-name .file-name { + border-radius: 0 0 4px 4px; + border-width: 0 1px 1px; } + .file.is-centered { + justify-content: center; } + .file.is-fullwidth .file-label { + width: 100%; } + .file.is-fullwidth .file-name { + flex-grow: 1; + max-width: none; } + .file.is-right { + justify-content: flex-end; } + .file.is-right .file-cta { + border-radius: 0 4px 4px 0; } + .file.is-right .file-name { + border-radius: 4px 0 0 4px; + border-width: 1px 0 1px 1px; + order: -1; } + +.file-label { + align-items: stretch; + display: flex; + cursor: pointer; + justify-content: flex-start; + overflow: hidden; + position: relative; } + .file-label:hover .file-cta { + background-color: #eeeeee; + color: #363636; } + .file-label:hover .file-name { + border-color: #d5d5d5; } + .file-label:active .file-cta { + background-color: #e8e8e8; + color: #363636; } + .file-label:active .file-name { + border-color: #cfcfcf; } + +.file-input { + height: 100%; + left: 0; + opacity: 0; + outline: none; + position: absolute; + top: 0; + width: 100%; } + +.file-cta, +.file-name { + border-color: #dbdbdb; + border-radius: 4px; + font-size: 1em; + padding-left: 1em; + padding-right: 1em; + white-space: nowrap; } + +.file-cta { + background-color: whitesmoke; + color: #4a4a4a; } + +.file-name { + border-color: #dbdbdb; + border-style: solid; + border-width: 1px 1px 1px 0; + display: block; + max-width: 16em; + overflow: hidden; + text-align: left; + text-overflow: ellipsis; } + +.file-icon { + align-items: center; + display: flex; + height: 1em; + justify-content: center; + margin-right: 0.5em; + width: 1em; } + .file-icon .fa { + font-size: 14px; } + +.label { + color: #363636; + display: block; + font-size: 1rem; + font-weight: 700; } + .label:not(:last-child) { + margin-bottom: 0.5em; } + .label.is-small { + font-size: 0.75rem; } + .label.is-medium { + font-size: 1.25rem; } + .label.is-large { + font-size: 1.5rem; } + +.help { + display: block; + font-size: 0.75rem; + margin-top: 0.25rem; } + .help.is-white { + color: white; } + .help.is-black { + color: #0a0a0a; } + .help.is-light { + color: whitesmoke; } + .help.is-dark { + color: #363636; } + .help.is-primary { + color: #00d1b2; } + .help.is-link { + color: #3273dc; } + .help.is-info { + color: #209cee; } + .help.is-success { + color: #23d160; } + .help.is-warning { + color: #ffdd57; } + .help.is-danger { + color: #ff3860; } + +.field:not(:last-child) { + margin-bottom: 0.75rem; } + +.field.has-addons { + display: flex; + justify-content: flex-start; } + .field.has-addons .control:not(:last-child) { + margin-right: -1px; } + .field.has-addons .control:not(:first-child):not(:last-child) .button, + .field.has-addons .control:not(:first-child):not(:last-child) .input, + .field.has-addons .control:not(:first-child):not(:last-child) .select select { + border-radius: 0; } + .field.has-addons .control:first-child:not(:only-child) .button, + .field.has-addons .control:first-child:not(:only-child) .input, + .field.has-addons .control:first-child:not(:only-child) .select select { + border-bottom-right-radius: 0; + border-top-right-radius: 0; } + .field.has-addons .control:last-child:not(:only-child) .button, + .field.has-addons .control:last-child:not(:only-child) .input, + .field.has-addons .control:last-child:not(:only-child) .select select { + border-bottom-left-radius: 0; + border-top-left-radius: 0; } + .field.has-addons .control .button:not([disabled]):hover, .field.has-addons .control .button:not([disabled]).is-hovered, + .field.has-addons .control .input:not([disabled]):hover, + .field.has-addons .control .input:not([disabled]).is-hovered, + .field.has-addons .control .select select:not([disabled]):hover, + .field.has-addons .control .select select:not([disabled]).is-hovered { + z-index: 2; } + .field.has-addons .control .button:not([disabled]):focus, .field.has-addons .control .button:not([disabled]).is-focused, .field.has-addons .control .button:not([disabled]):active, .field.has-addons .control .button:not([disabled]).is-active, + .field.has-addons .control .input:not([disabled]):focus, + .field.has-addons .control .input:not([disabled]).is-focused, + .field.has-addons .control .input:not([disabled]):active, + .field.has-addons .control .input:not([disabled]).is-active, + .field.has-addons .control .select select:not([disabled]):focus, + .field.has-addons .control .select select:not([disabled]).is-focused, + .field.has-addons .control .select select:not([disabled]):active, + .field.has-addons .control .select select:not([disabled]).is-active { + z-index: 3; } + .field.has-addons .control .button:not([disabled]):focus:hover, .field.has-addons .control .button:not([disabled]).is-focused:hover, .field.has-addons .control .button:not([disabled]):active:hover, .field.has-addons .control .button:not([disabled]).is-active:hover, + .field.has-addons .control .input:not([disabled]):focus:hover, + .field.has-addons .control .input:not([disabled]).is-focused:hover, + .field.has-addons .control .input:not([disabled]):active:hover, + .field.has-addons .control .input:not([disabled]).is-active:hover, + .field.has-addons .control .select select:not([disabled]):focus:hover, + .field.has-addons .control .select select:not([disabled]).is-focused:hover, + .field.has-addons .control .select select:not([disabled]):active:hover, + .field.has-addons .control .select select:not([disabled]).is-active:hover { + z-index: 4; } + .field.has-addons .control.is-expanded { + flex-grow: 1; } + .field.has-addons.has-addons-centered { + justify-content: center; } + .field.has-addons.has-addons-right { + justify-content: flex-end; } + .field.has-addons.has-addons-fullwidth .control { + flex-grow: 1; + flex-shrink: 0; } + +.field.is-grouped { + display: flex; + justify-content: flex-start; } + .field.is-grouped > .control { + flex-shrink: 0; } + .field.is-grouped > .control:not(:last-child) { + margin-bottom: 0; + margin-right: 0.75rem; } + .field.is-grouped > .control.is-expanded { + flex-grow: 1; + flex-shrink: 1; } + .field.is-grouped.is-grouped-centered { + justify-content: center; } + .field.is-grouped.is-grouped-right { + justify-content: flex-end; } + .field.is-grouped.is-grouped-multiline { + flex-wrap: wrap; } + .field.is-grouped.is-grouped-multiline > .control:last-child, .field.is-grouped.is-grouped-multiline > .control:not(:last-child) { + margin-bottom: 0.75rem; } + .field.is-grouped.is-grouped-multiline:last-child { + margin-bottom: -0.75rem; } + .field.is-grouped.is-grouped-multiline:not(:last-child) { + margin-bottom: 0; } + +@media screen and (min-width: 769px), print { + .field.is-horizontal { + display: flex; } } + +.field-label .label { + font-size: inherit; } + +@media screen and (max-width: 768px) { + .field-label { + margin-bottom: 0.5rem; } } + +@media screen and (min-width: 769px), print { + .field-label { + flex-basis: 0; + flex-grow: 1; + flex-shrink: 0; + margin-right: 1.5rem; + text-align: right; } + .field-label.is-small { + font-size: 0.75rem; + padding-top: 0.375em; } + .field-label.is-normal { + padding-top: 0.375em; } + .field-label.is-medium { + font-size: 1.25rem; + padding-top: 0.375em; } + .field-label.is-large { + font-size: 1.5rem; + padding-top: 0.375em; } } + +.field-body .field .field { + margin-bottom: 0; } + +@media screen and (min-width: 769px), print { + .field-body { + display: flex; + flex-basis: 0; + flex-grow: 5; + flex-shrink: 1; } + .field-body .field { + margin-bottom: 0; } + .field-body > .field { + flex-shrink: 1; } + .field-body > .field:not(.is-narrow) { + flex-grow: 1; } + .field-body > .field:not(:last-child) { + margin-right: 0.75rem; } } + +.control { + box-sizing: border-box; + clear: both; + font-size: 1rem; + position: relative; + text-align: left; } + .control.has-icons-left .input:focus ~ .icon, + .control.has-icons-left .select:focus ~ .icon, .control.has-icons-right .input:focus ~ .icon, + .control.has-icons-right .select:focus ~ .icon { + color: #7a7a7a; } + .control.has-icons-left .input.is-small ~ .icon, + .control.has-icons-left .select.is-small ~ .icon, .control.has-icons-right .input.is-small ~ .icon, + .control.has-icons-right .select.is-small ~ .icon { + font-size: 0.75rem; } + .control.has-icons-left .input.is-medium ~ .icon, + .control.has-icons-left .select.is-medium ~ .icon, .control.has-icons-right .input.is-medium ~ .icon, + .control.has-icons-right .select.is-medium ~ .icon { + font-size: 1.25rem; } + .control.has-icons-left .input.is-large ~ .icon, + .control.has-icons-left .select.is-large ~ .icon, .control.has-icons-right .input.is-large ~ .icon, + .control.has-icons-right .select.is-large ~ .icon { + font-size: 1.5rem; } + .control.has-icons-left .icon, .control.has-icons-right .icon { + color: #dbdbdb; + height: 2.25em; + pointer-events: none; + position: absolute; + top: 0; + width: 2.25em; + z-index: 4; } + .control.has-icons-left .input, + .control.has-icons-left .select select { + padding-left: 2.25em; } + .control.has-icons-left .icon.is-left { + left: 0; } + .control.has-icons-right .input, + .control.has-icons-right .select select { + padding-right: 2.25em; } + .control.has-icons-right .icon.is-right { + right: 0; } + .control.is-loading::after { + position: absolute !important; + right: 0.625em; + top: 0.625em; + z-index: 4; } + .control.is-loading.is-small:after { + font-size: 0.75rem; } + .control.is-loading.is-medium:after { + font-size: 1.25rem; } + .control.is-loading.is-large:after { + font-size: 1.5rem; } + +.icon { + align-items: center; + display: inline-flex; + justify-content: center; + height: 1.5rem; + width: 1.5rem; } + .icon.is-small { + height: 1rem; + width: 1rem; } + .icon.is-medium { + height: 2rem; + width: 2rem; } + .icon.is-large { + height: 3rem; + width: 3rem; } + +.image { + display: block; + position: relative; } + .image img { + display: block; + height: auto; + width: 100%; } + .image img.is-rounded { + border-radius: 290486px; } + .image.is-square img, + .image.is-square .has-ratio, .image.is-1by1 img, + .image.is-1by1 .has-ratio, .image.is-5by4 img, + .image.is-5by4 .has-ratio, .image.is-4by3 img, + .image.is-4by3 .has-ratio, .image.is-3by2 img, + .image.is-3by2 .has-ratio, .image.is-5by3 img, + .image.is-5by3 .has-ratio, .image.is-16by9 img, + .image.is-16by9 .has-ratio, .image.is-2by1 img, + .image.is-2by1 .has-ratio, .image.is-3by1 img, + .image.is-3by1 .has-ratio, .image.is-4by5 img, + .image.is-4by5 .has-ratio, .image.is-3by4 img, + .image.is-3by4 .has-ratio, .image.is-2by3 img, + .image.is-2by3 .has-ratio, .image.is-3by5 img, + .image.is-3by5 .has-ratio, .image.is-9by16 img, + .image.is-9by16 .has-ratio, .image.is-1by2 img, + .image.is-1by2 .has-ratio, .image.is-1by3 img, + .image.is-1by3 .has-ratio { + height: 100%; + width: 100%; } + .image.is-square, .image.is-1by1 { + padding-top: 100%; } + .image.is-5by4 { + padding-top: 80%; } + .image.is-4by3 { + padding-top: 75%; } + .image.is-3by2 { + padding-top: 66.6666%; } + .image.is-5by3 { + padding-top: 60%; } + .image.is-16by9 { + padding-top: 56.25%; } + .image.is-2by1 { + padding-top: 50%; } + .image.is-3by1 { + padding-top: 33.3333%; } + .image.is-4by5 { + padding-top: 125%; } + .image.is-3by4 { + padding-top: 133.3333%; } + .image.is-2by3 { + padding-top: 150%; } + .image.is-3by5 { + padding-top: 166.6666%; } + .image.is-9by16 { + padding-top: 177.7777%; } + .image.is-1by2 { + padding-top: 200%; } + .image.is-1by3 { + padding-top: 300%; } + .image.is-16x16 { + height: 16px; + width: 16px; } + .image.is-24x24 { + height: 24px; + width: 24px; } + .image.is-32x32 { + height: 32px; + width: 32px; } + .image.is-48x48 { + height: 48px; + width: 48px; } + .image.is-64x64 { + height: 64px; + width: 64px; } + .image.is-96x96 { + height: 96px; + width: 96px; } + .image.is-128x128 { + height: 128px; + width: 128px; } + +.notification { + background-color: whitesmoke; + border-radius: 4px; + padding: 1.25rem 2.5rem 1.25rem 1.5rem; + position: relative; } + .notification a:not(.button):not(.dropdown-item) { + color: currentColor; + text-decoration: underline; } + .notification strong { + color: currentColor; } + .notification code, + .notification pre { + background: white; } + .notification pre code { + background: transparent; } + .notification > .delete { + position: absolute; + right: 0.5rem; + top: 0.5rem; } + .notification .title, + .notification .subtitle, + .notification .content { + color: currentColor; } + .notification.is-white { + background-color: white; + color: #0a0a0a; } + .notification.is-black { + background-color: #0a0a0a; + color: white; } + .notification.is-light { + background-color: whitesmoke; + color: #363636; } + .notification.is-dark { + background-color: #363636; + color: whitesmoke; } + .notification.is-primary { + background-color: #00d1b2; + color: #fff; } + .notification.is-link { + background-color: #3273dc; + color: #fff; } + .notification.is-info { + background-color: #209cee; + color: #fff; } + .notification.is-success { + background-color: #23d160; + color: #fff; } + .notification.is-warning { + background-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } + .notification.is-danger { + background-color: #ff3860; + color: #fff; } + +.progress { + -moz-appearance: none; + -webkit-appearance: none; + border: none; + border-radius: 290486px; + display: block; + height: 1rem; + overflow: hidden; + padding: 0; + width: 100%; } + .progress::-webkit-progress-bar { + background-color: #dbdbdb; } + .progress::-webkit-progress-value { + background-color: #4a4a4a; } + .progress::-moz-progress-bar { + background-color: #4a4a4a; } + .progress::-ms-fill { + background-color: #4a4a4a; + border: none; } + .progress:indeterminate { + animation-duration: 1.5s; + animation-iteration-count: infinite; + animation-name: moveIndeterminate; + animation-timing-function: linear; + background-color: #dbdbdb; + background-image: linear-gradient(to right, #4a4a4a 30%, #dbdbdb 30%); + background-position: top left; + background-repeat: no-repeat; + background-size: 150% 150%; } + .progress:indeterminate::-webkit-progress-bar { + background-color: transparent; } + .progress:indeterminate::-moz-progress-bar { + background-color: transparent; } + .progress.is-white::-webkit-progress-value { + background-color: white; } + .progress.is-white::-moz-progress-bar { + background-color: white; } + .progress.is-white::-ms-fill { + background-color: white; } + .progress.is-white:indeterminate { + background-image: linear-gradient(to right, white 30%, #dbdbdb 30%); } + .progress.is-black::-webkit-progress-value { + background-color: #0a0a0a; } + .progress.is-black::-moz-progress-bar { + background-color: #0a0a0a; } + .progress.is-black::-ms-fill { + background-color: #0a0a0a; } + .progress.is-black:indeterminate { + background-image: linear-gradient(to right, #0a0a0a 30%, #dbdbdb 30%); } + .progress.is-light::-webkit-progress-value { + background-color: whitesmoke; } + .progress.is-light::-moz-progress-bar { + background-color: whitesmoke; } + .progress.is-light::-ms-fill { + background-color: whitesmoke; } + .progress.is-light:indeterminate { + background-image: linear-gradient(to right, whitesmoke 30%, #dbdbdb 30%); } + .progress.is-dark::-webkit-progress-value { + background-color: #363636; } + .progress.is-dark::-moz-progress-bar { + background-color: #363636; } + .progress.is-dark::-ms-fill { + background-color: #363636; } + .progress.is-dark:indeterminate { + background-image: linear-gradient(to right, #363636 30%, #dbdbdb 30%); } + .progress.is-primary::-webkit-progress-value { + background-color: #00d1b2; } + .progress.is-primary::-moz-progress-bar { + background-color: #00d1b2; } + .progress.is-primary::-ms-fill { + background-color: #00d1b2; } + .progress.is-primary:indeterminate { + background-image: linear-gradient(to right, #00d1b2 30%, #dbdbdb 30%); } + .progress.is-link::-webkit-progress-value { + background-color: #3273dc; } + .progress.is-link::-moz-progress-bar { + background-color: #3273dc; } + .progress.is-link::-ms-fill { + background-color: #3273dc; } + .progress.is-link:indeterminate { + background-image: linear-gradient(to right, #3273dc 30%, #dbdbdb 30%); } + .progress.is-info::-webkit-progress-value { + background-color: #209cee; } + .progress.is-info::-moz-progress-bar { + background-color: #209cee; } + .progress.is-info::-ms-fill { + background-color: #209cee; } + .progress.is-info:indeterminate { + background-image: linear-gradient(to right, #209cee 30%, #dbdbdb 30%); } + .progress.is-success::-webkit-progress-value { + background-color: #23d160; } + .progress.is-success::-moz-progress-bar { + background-color: #23d160; } + .progress.is-success::-ms-fill { + background-color: #23d160; } + .progress.is-success:indeterminate { + background-image: linear-gradient(to right, #23d160 30%, #dbdbdb 30%); } + .progress.is-warning::-webkit-progress-value { + background-color: #ffdd57; } + .progress.is-warning::-moz-progress-bar { + background-color: #ffdd57; } + .progress.is-warning::-ms-fill { + background-color: #ffdd57; } + .progress.is-warning:indeterminate { + background-image: linear-gradient(to right, #ffdd57 30%, #dbdbdb 30%); } + .progress.is-danger::-webkit-progress-value { + background-color: #ff3860; } + .progress.is-danger::-moz-progress-bar { + background-color: #ff3860; } + .progress.is-danger::-ms-fill { + background-color: #ff3860; } + .progress.is-danger:indeterminate { + background-image: linear-gradient(to right, #ff3860 30%, #dbdbdb 30%); } + .progress.is-small { + height: 0.75rem; } + .progress.is-medium { + height: 1.25rem; } + .progress.is-large { + height: 1.5rem; } + +@keyframes moveIndeterminate { + from { + background-position: 200% 0; } + to { + background-position: -200% 0; } } + +.table { + background-color: white; + color: #363636; } + .table td, + .table th { + border: 1px solid #dbdbdb; + border-width: 0 0 1px; + padding: 0.5em 0.75em; + vertical-align: top; } + .table td.is-white, + .table th.is-white { + background-color: white; + border-color: white; + color: #0a0a0a; } + .table td.is-black, + .table th.is-black { + background-color: #0a0a0a; + border-color: #0a0a0a; + color: white; } + .table td.is-light, + .table th.is-light { + background-color: whitesmoke; + border-color: whitesmoke; + color: #363636; } + .table td.is-dark, + .table th.is-dark { + background-color: #363636; + border-color: #363636; + color: whitesmoke; } + .table td.is-primary, + .table th.is-primary { + background-color: #00d1b2; + border-color: #00d1b2; + color: #fff; } + .table td.is-link, + .table th.is-link { + background-color: #3273dc; + border-color: #3273dc; + color: #fff; } + .table td.is-info, + .table th.is-info { + background-color: #209cee; + border-color: #209cee; + color: #fff; } + .table td.is-success, + .table th.is-success { + background-color: #23d160; + border-color: #23d160; + color: #fff; } + .table td.is-warning, + .table th.is-warning { + background-color: #ffdd57; + border-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } + .table td.is-danger, + .table th.is-danger { + background-color: #ff3860; + border-color: #ff3860; + color: #fff; } + .table td.is-narrow, + .table th.is-narrow { + white-space: nowrap; + width: 1%; } + .table td.is-selected, + .table th.is-selected { + background-color: #00d1b2; + color: #fff; } + .table td.is-selected a, + .table td.is-selected strong, + .table th.is-selected a, + .table th.is-selected strong { + color: currentColor; } + .table th { + color: #363636; + text-align: left; } + .table tr.is-selected { + background-color: #00d1b2; + color: #fff; } + .table tr.is-selected a, + .table tr.is-selected strong { + color: currentColor; } + .table tr.is-selected td, + .table tr.is-selected th { + border-color: #fff; + color: currentColor; } + .table thead { + background-color: transparent; } + .table thead td, + .table thead th { + border-width: 0 0 2px; + color: #363636; } + .table tfoot { + background-color: transparent; } + .table tfoot td, + .table tfoot th { + border-width: 2px 0 0; + color: #363636; } + .table tbody { + background-color: transparent; } + .table tbody tr:last-child td, + .table tbody tr:last-child th { + border-bottom-width: 0; } + .table.is-bordered td, + .table.is-bordered th { + border-width: 1px; } + .table.is-bordered tr:last-child td, + .table.is-bordered tr:last-child th { + border-bottom-width: 1px; } + .table.is-fullwidth { + width: 100%; } + .table.is-hoverable tbody tr:not(.is-selected):hover { + background-color: #fafafa; } + .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover { + background-color: #fafafa; } + .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) { + background-color: whitesmoke; } + .table.is-narrow td, + .table.is-narrow th { + padding: 0.25em 0.5em; } + .table.is-striped tbody tr:not(.is-selected):nth-child(even) { + background-color: #fafafa; } + +.table-container { + -webkit-overflow-scrolling: touch; + overflow: auto; + overflow-y: hidden; + max-width: 100%; } + +.tags { + align-items: center; + display: flex; + flex-wrap: wrap; + justify-content: flex-start; } + .tags .tag { + margin-bottom: 0.5rem; } + .tags .tag:not(:last-child) { + margin-right: 0.5rem; } + .tags:last-child { + margin-bottom: -0.5rem; } + .tags:not(:last-child) { + margin-bottom: 1rem; } + .tags.are-medium .tag:not(.is-normal):not(.is-large) { + font-size: 1rem; } + .tags.are-large .tag:not(.is-normal):not(.is-medium) { + font-size: 1.25rem; } + .tags.has-addons .tag { + margin-right: 0; } + .tags.has-addons .tag:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0; } + .tags.has-addons .tag:not(:last-child) { + border-bottom-right-radius: 0; + border-top-right-radius: 0; } + .tags.is-centered { + justify-content: center; } + .tags.is-centered .tag { + margin-right: 0.25rem; + margin-left: 0.25rem; } + .tags.is-right { + justify-content: flex-end; } + .tags.is-right .tag:not(:first-child) { + margin-left: 0.5rem; } + .tags.is-right .tag:not(:last-child) { + margin-right: 0; } + .tags.has-addons .tag { + margin-right: 0; } + .tags.has-addons .tag:not(:first-child) { + margin-left: 0; + border-bottom-left-radius: 0; + border-top-left-radius: 0; } + .tags.has-addons .tag:not(:last-child) { + border-bottom-right-radius: 0; + border-top-right-radius: 0; } + +.tag:not(body) { + align-items: center; + background-color: whitesmoke; + border-radius: 4px; + color: #4a4a4a; + display: inline-flex; + font-size: 0.75rem; + height: 2em; + justify-content: center; + line-height: 1.5; + padding-left: 0.75em; + padding-right: 0.75em; + white-space: nowrap; } + .tag:not(body) .delete { + margin-left: 0.25rem; + margin-right: -0.375rem; } + .tag:not(body).is-white { + background-color: white; + color: #0a0a0a; } + .tag:not(body).is-black { + background-color: #0a0a0a; + color: white; } + .tag:not(body).is-light { + background-color: whitesmoke; + color: #363636; } + .tag:not(body).is-dark { + background-color: #363636; + color: whitesmoke; } + .tag:not(body).is-primary { + background-color: #00d1b2; + color: #fff; } + .tag:not(body).is-link { + background-color: #3273dc; + color: #fff; } + .tag:not(body).is-info { + background-color: #209cee; + color: #fff; } + .tag:not(body).is-success { + background-color: #23d160; + color: #fff; } + .tag:not(body).is-warning { + background-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } + .tag:not(body).is-danger { + background-color: #ff3860; + color: #fff; } + .tag:not(body).is-normal { + font-size: 0.75rem; } + .tag:not(body).is-medium { + font-size: 1rem; } + .tag:not(body).is-large { + font-size: 1.25rem; } + .tag:not(body) .icon:first-child:not(:last-child) { + margin-left: -0.375em; + margin-right: 0.1875em; } + .tag:not(body) .icon:last-child:not(:first-child) { + margin-left: 0.1875em; + margin-right: -0.375em; } + .tag:not(body) .icon:first-child:last-child { + margin-left: -0.375em; + margin-right: -0.375em; } + .tag:not(body).is-delete { + margin-left: 1px; + padding: 0; + position: relative; + width: 2em; } + .tag:not(body).is-delete::before, .tag:not(body).is-delete::after { + background-color: currentColor; + content: ""; + display: block; + left: 50%; + position: absolute; + top: 50%; + transform: translateX(-50%) translateY(-50%) rotate(45deg); + transform-origin: center center; } + .tag:not(body).is-delete::before { + height: 1px; + width: 50%; } + .tag:not(body).is-delete::after { + height: 50%; + width: 1px; } + .tag:not(body).is-delete:hover, .tag:not(body).is-delete:focus { + background-color: #e8e8e8; } + .tag:not(body).is-delete:active { + background-color: #dbdbdb; } + .tag:not(body).is-rounded { + border-radius: 290486px; } + +a.tag:hover { + text-decoration: underline; } + +.title, +.subtitle { + word-break: break-word; } + .title em, + .title span, + .subtitle em, + .subtitle span { + font-weight: inherit; } + .title sub, + .subtitle sub { + font-size: 0.75em; } + .title sup, + .subtitle sup { + font-size: 0.75em; } + .title .tag, + .subtitle .tag { + vertical-align: middle; } + +.title { + color: #363636; + font-size: 2rem; + font-weight: 600; + line-height: 1.125; } + .title strong { + color: inherit; + font-weight: inherit; } + .title + .highlight { + margin-top: -0.75rem; } + .title:not(.is-spaced) + .subtitle { + margin-top: -1.25rem; } + .title.is-1 { + font-size: 3rem; } + .title.is-2 { + font-size: 2.5rem; } + .title.is-3 { + font-size: 2rem; } + .title.is-4 { + font-size: 1.5rem; } + .title.is-5 { + font-size: 1.25rem; } + .title.is-6 { + font-size: 1rem; } + .title.is-7 { + font-size: 0.75rem; } + +.subtitle { + color: #4a4a4a; + font-size: 1.25rem; + font-weight: 400; + line-height: 1.25; } + .subtitle strong { + color: #363636; + font-weight: 600; } + .subtitle:not(.is-spaced) + .title { + margin-top: -1.25rem; } + .subtitle.is-1 { + font-size: 3rem; } + .subtitle.is-2 { + font-size: 2.5rem; } + .subtitle.is-3 { + font-size: 2rem; } + .subtitle.is-4 { + font-size: 1.5rem; } + .subtitle.is-5 { + font-size: 1.25rem; } + .subtitle.is-6 { + font-size: 1rem; } + .subtitle.is-7 { + font-size: 0.75rem; } + +.heading { + display: block; + font-size: 11px; + letter-spacing: 1px; + margin-bottom: 5px; + text-transform: uppercase; } + +.highlight { + font-weight: 400; + max-width: 100%; + overflow: hidden; + padding: 0; } + .highlight pre { + overflow: auto; + max-width: 100%; } + +.number { + align-items: center; + background-color: whitesmoke; + border-radius: 290486px; + display: inline-flex; + font-size: 1.25rem; + height: 2em; + justify-content: center; + margin-right: 1.5rem; + min-width: 2.5em; + padding: 0.25rem 0.5rem; + text-align: center; + vertical-align: top; } + +.breadcrumb { + font-size: 1rem; + white-space: nowrap; } + .breadcrumb a { + align-items: center; + color: #3273dc; + display: flex; + justify-content: center; + padding: 0 0.75em; } + .breadcrumb a:hover { + color: #363636; } + .breadcrumb li { + align-items: center; + display: flex; } + .breadcrumb li:first-child a { + padding-left: 0; } + .breadcrumb li.is-active a { + color: #363636; + cursor: default; + pointer-events: none; } + .breadcrumb li + li::before { + color: #b5b5b5; + content: "\0002f"; } + .breadcrumb ul, + .breadcrumb ol { + align-items: flex-start; + display: flex; + flex-wrap: wrap; + justify-content: flex-start; } + .breadcrumb .icon:first-child { + margin-right: 0.5em; } + .breadcrumb .icon:last-child { + margin-left: 0.5em; } + .breadcrumb.is-centered ol, + .breadcrumb.is-centered ul { + justify-content: center; } + .breadcrumb.is-right ol, + .breadcrumb.is-right ul { + justify-content: flex-end; } + .breadcrumb.is-small { + font-size: 0.75rem; } + .breadcrumb.is-medium { + font-size: 1.25rem; } + .breadcrumb.is-large { + font-size: 1.5rem; } + .breadcrumb.has-arrow-separator li + li::before { + content: "\02192"; } + .breadcrumb.has-bullet-separator li + li::before { + content: "\02022"; } + .breadcrumb.has-dot-separator li + li::before { + content: "\000b7"; } + .breadcrumb.has-succeeds-separator li + li::before { + content: "\0227B"; } + +.card { + background-color: white; + box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); + color: #4a4a4a; + max-width: 100%; + position: relative; } + +.card-header { + background-color: transparent; + align-items: stretch; + box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1); + display: flex; } + +.card-header-title { + align-items: center; + color: #363636; + display: flex; + flex-grow: 1; + font-weight: 700; + padding: 0.75rem; } + .card-header-title.is-centered { + justify-content: center; } + +.card-header-icon { + align-items: center; + cursor: pointer; + display: flex; + justify-content: center; + padding: 0.75rem; } + +.card-image { + display: block; + position: relative; } + +.card-content { + background-color: transparent; + padding: 1.5rem; } + +.card-footer { + background-color: transparent; + border-top: 1px solid #dbdbdb; + align-items: stretch; + display: flex; } + +.card-footer-item { + align-items: center; + display: flex; + flex-basis: 0; + flex-grow: 1; + flex-shrink: 0; + justify-content: center; + padding: 0.75rem; } + .card-footer-item:not(:last-child) { + border-right: 1px solid #dbdbdb; } + +.card .media:not(:last-child) { + margin-bottom: 0.75rem; } + +.dropdown { + display: inline-flex; + position: relative; + vertical-align: top; } + .dropdown.is-active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu { + display: block; } + .dropdown.is-right .dropdown-menu { + left: auto; + right: 0; } + .dropdown.is-up .dropdown-menu { + bottom: 100%; + padding-bottom: 4px; + padding-top: initial; + top: auto; } + +.dropdown-menu { + display: none; + left: 0; + min-width: 12rem; + padding-top: 4px; + position: absolute; + top: 100%; + z-index: 20; } + +.dropdown-content { + background-color: white; + border-radius: 4px; + box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); + padding-bottom: 0.5rem; + padding-top: 0.5rem; } + +.dropdown-item { + color: #4a4a4a; + display: block; + font-size: 0.875rem; + line-height: 1.5; + padding: 0.375rem 1rem; + position: relative; } + +a.dropdown-item, +button.dropdown-item { + padding-right: 3rem; + text-align: left; + white-space: nowrap; + width: 100%; } + a.dropdown-item:hover, + button.dropdown-item:hover { + background-color: whitesmoke; + color: #0a0a0a; } + a.dropdown-item.is-active, + button.dropdown-item.is-active { + background-color: #3273dc; + color: #fff; } + +.dropdown-divider { + background-color: #dbdbdb; + border: none; + display: block; + height: 1px; + margin: 0.5rem 0; } + +.level { + align-items: center; + justify-content: space-between; } + .level code { + border-radius: 4px; } + .level img { + display: inline-block; + vertical-align: top; } + .level.is-mobile { + display: flex; } + .level.is-mobile .level-left, + .level.is-mobile .level-right { + display: flex; } + .level.is-mobile .level-left + .level-right { + margin-top: 0; } + .level.is-mobile .level-item:not(:last-child) { + margin-bottom: 0; + margin-right: 0.75rem; } + .level.is-mobile .level-item:not(.is-narrow) { + flex-grow: 1; } + @media screen and (min-width: 769px), print { + .level { + display: flex; } + .level > .level-item:not(.is-narrow) { + flex-grow: 1; } } + +.level-item { + align-items: center; + display: flex; + flex-basis: auto; + flex-grow: 0; + flex-shrink: 0; + justify-content: center; } + .level-item .title, + .level-item .subtitle { + margin-bottom: 0; } + @media screen and (max-width: 768px) { + .level-item:not(:last-child) { + margin-bottom: 0.75rem; } } + +.level-left, +.level-right { + flex-basis: auto; + flex-grow: 0; + flex-shrink: 0; } + .level-left .level-item.is-flexible, + .level-right .level-item.is-flexible { + flex-grow: 1; } + @media screen and (min-width: 769px), print { + .level-left .level-item:not(:last-child), + .level-right .level-item:not(:last-child) { + margin-right: 0.75rem; } } + +.level-left { + align-items: center; + justify-content: flex-start; } + @media screen and (max-width: 768px) { + .level-left + .level-right { + margin-top: 1.5rem; } } + @media screen and (min-width: 769px), print { + .level-left { + display: flex; } } + +.level-right { + align-items: center; + justify-content: flex-end; } + @media screen and (min-width: 769px), print { + .level-right { + display: flex; } } + +.list { + background-color: white; + border-radius: 4px; + box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); } + +.list-item { + display: block; + padding: 0.5em 1em; } + .list-item:not(a) { + color: #4a4a4a; } + .list-item:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; } + .list-item:last-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; } + .list-item:not(:last-child) { + border-bottom: 1px solid #dbdbdb; } + .list-item.is-active { + background-color: #3273dc; + color: #fff; } + +a.list-item { + background-color: whitesmoke; + cursor: pointer; } + +.media { + align-items: flex-start; + display: flex; + text-align: left; } + .media .content:not(:last-child) { + margin-bottom: 0.75rem; } + .media .media { + border-top: 1px solid rgba(219, 219, 219, 0.5); + display: flex; + padding-top: 0.75rem; } + .media .media .content:not(:last-child), + .media .media .control:not(:last-child) { + margin-bottom: 0.5rem; } + .media .media .media { + padding-top: 0.5rem; } + .media .media .media + .media { + margin-top: 0.5rem; } + .media + .media { + border-top: 1px solid rgba(219, 219, 219, 0.5); + margin-top: 1rem; + padding-top: 1rem; } + .media.is-large + .media { + margin-top: 1.5rem; + padding-top: 1.5rem; } + +.media-left, +.media-right { + flex-basis: auto; + flex-grow: 0; + flex-shrink: 0; } + +.media-left { + margin-right: 1rem; } + +.media-right { + margin-left: 1rem; } + +.media-content { + flex-basis: auto; + flex-grow: 1; + flex-shrink: 1; + text-align: left; } + +@media screen and (max-width: 768px) { + .media-content { + overflow-x: auto; } } + +.menu { + font-size: 1rem; } + .menu.is-small { + font-size: 0.75rem; } + .menu.is-medium { + font-size: 1.25rem; } + .menu.is-large { + font-size: 1.5rem; } + +.menu-list { + line-height: 1.25; } + .menu-list a { + border-radius: 2px; + color: #4a4a4a; + display: block; + padding: 0.5em 0.75em; } + .menu-list a:hover { + background-color: whitesmoke; + color: #363636; } + .menu-list a.is-active { + background-color: #3273dc; + color: #fff; } + .menu-list li ul { + border-left: 1px solid #dbdbdb; + margin: 0.75em; + padding-left: 0.75em; } + +.menu-label { + color: #7a7a7a; + font-size: 0.75em; + letter-spacing: 0.1em; + text-transform: uppercase; } + .menu-label:not(:first-child) { + margin-top: 1em; } + .menu-label:not(:last-child) { + margin-bottom: 1em; } + +.message { + background-color: whitesmoke; + border-radius: 4px; + font-size: 1rem; } + .message strong { + color: currentColor; } + .message a:not(.button):not(.tag):not(.dropdown-item) { + color: currentColor; + text-decoration: underline; } + .message.is-small { + font-size: 0.75rem; } + .message.is-medium { + font-size: 1.25rem; } + .message.is-large { + font-size: 1.5rem; } + .message.is-white { + background-color: white; } + .message.is-white .message-header { + background-color: white; + color: #0a0a0a; } + .message.is-white .message-body { + border-color: white; + color: #4d4d4d; } + .message.is-black { + background-color: #fafafa; } + .message.is-black .message-header { + background-color: #0a0a0a; + color: white; } + .message.is-black .message-body { + border-color: #0a0a0a; + color: #090909; } + .message.is-light { + background-color: #fafafa; } + .message.is-light .message-header { + background-color: whitesmoke; + color: #363636; } + .message.is-light .message-body { + border-color: whitesmoke; + color: #505050; } + .message.is-dark { + background-color: #fafafa; } + .message.is-dark .message-header { + background-color: #363636; + color: whitesmoke; } + .message.is-dark .message-body { + border-color: #363636; + color: #2a2a2a; } + .message.is-primary { + background-color: #f5fffd; } + .message.is-primary .message-header { + background-color: #00d1b2; + color: #fff; } + .message.is-primary .message-body { + border-color: #00d1b2; + color: #021310; } + .message.is-link { + background-color: #f6f9fe; } + .message.is-link .message-header { + background-color: #3273dc; + color: #fff; } + .message.is-link .message-body { + border-color: #3273dc; + color: #22509a; } + .message.is-info { + background-color: #f6fbfe; } + .message.is-info .message-header { + background-color: #209cee; + color: #fff; } + .message.is-info .message-body { + border-color: #209cee; + color: #12537e; } + .message.is-success { + background-color: #f6fef9; } + .message.is-success .message-header { + background-color: #23d160; + color: #fff; } + .message.is-success .message-body { + border-color: #23d160; + color: #0e301a; } + .message.is-warning { + background-color: #fffdf5; } + .message.is-warning .message-header { + background-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } + .message.is-warning .message-body { + border-color: #ffdd57; + color: #3b3108; } + .message.is-danger { + background-color: #fff5f7; } + .message.is-danger .message-header { + background-color: #ff3860; + color: #fff; } + .message.is-danger .message-body { + border-color: #ff3860; + color: #cd0930; } + +.message-header { + align-items: center; + background-color: #4a4a4a; + border-radius: 4px 4px 0 0; + color: #fff; + display: flex; + font-weight: 700; + justify-content: space-between; + line-height: 1.25; + padding: 0.75em 1em; + position: relative; } + .message-header .delete { + flex-grow: 0; + flex-shrink: 0; + margin-left: 0.75em; } + .message-header + .message-body { + border-width: 0; + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.message-body { + border-color: #dbdbdb; + border-radius: 4px; + border-style: solid; + border-width: 0 0 0 4px; + color: #4a4a4a; + padding: 1.25em 1.5em; } + .message-body code, + .message-body pre { + background-color: white; } + .message-body pre code { + background-color: transparent; } + +.modal { + align-items: center; + display: none; + flex-direction: column; + justify-content: center; + overflow: hidden; + position: fixed; + z-index: 40; } + .modal.is-active { + display: flex; } + +.modal-background { + background-color: rgba(10, 10, 10, 0.86); } + +.modal-content, +.modal-card { + margin: 0 20px; + max-height: calc(100vh - 160px); + overflow: auto; + position: relative; + width: 100%; } + @media screen and (min-width: 769px), print { + .modal-content, + .modal-card { + margin: 0 auto; + max-height: calc(100vh - 40px); + width: 640px; } } + +.modal-close { + background: none; + height: 40px; + position: fixed; + right: 20px; + top: 20px; + width: 40px; } + +.modal-card { + display: flex; + flex-direction: column; + max-height: calc(100vh - 40px); + overflow: hidden; + -ms-overflow-y: visible; } + +.modal-card-head, +.modal-card-foot { + align-items: center; + background-color: whitesmoke; + display: flex; + flex-shrink: 0; + justify-content: flex-start; + padding: 20px; + position: relative; } + +.modal-card-head { + border-bottom: 1px solid #dbdbdb; + border-top-left-radius: 6px; + border-top-right-radius: 6px; } + +.modal-card-title { + color: #363636; + flex-grow: 1; + flex-shrink: 0; + font-size: 1.5rem; + line-height: 1; } + +.modal-card-foot { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; + border-top: 1px solid #dbdbdb; } + .modal-card-foot .button:not(:last-child) { + margin-right: 10px; } + +.modal-card-body { + -webkit-overflow-scrolling: touch; + background-color: white; + flex-grow: 1; + flex-shrink: 1; + overflow: auto; + padding: 20px; } + +.navbar { + background-color: white; + min-height: 3.25rem; + position: relative; + z-index: 30; } + .navbar.is-white { + background-color: white; + color: #0a0a0a; } + .navbar.is-white .navbar-brand > .navbar-item, + .navbar.is-white .navbar-brand .navbar-link { + color: #0a0a0a; } + .navbar.is-white .navbar-brand > a.navbar-item:hover, .navbar.is-white .navbar-brand > a.navbar-item.is-active, + .navbar.is-white .navbar-brand .navbar-link:hover, + .navbar.is-white .navbar-brand .navbar-link.is-active { + background-color: #f2f2f2; + color: #0a0a0a; } + .navbar.is-white .navbar-brand .navbar-link::after { + border-color: #0a0a0a; } + .navbar.is-white .navbar-burger { + color: #0a0a0a; } + @media screen and (min-width: 1088px) { + .navbar.is-white .navbar-start > .navbar-item, + .navbar.is-white .navbar-start .navbar-link, + .navbar.is-white .navbar-end > .navbar-item, + .navbar.is-white .navbar-end .navbar-link { + color: #0a0a0a; } + .navbar.is-white .navbar-start > a.navbar-item:hover, .navbar.is-white .navbar-start > a.navbar-item.is-active, + .navbar.is-white .navbar-start .navbar-link:hover, + .navbar.is-white .navbar-start .navbar-link.is-active, + .navbar.is-white .navbar-end > a.navbar-item:hover, + .navbar.is-white .navbar-end > a.navbar-item.is-active, + .navbar.is-white .navbar-end .navbar-link:hover, + .navbar.is-white .navbar-end .navbar-link.is-active { + background-color: #f2f2f2; + color: #0a0a0a; } + .navbar.is-white .navbar-start .navbar-link::after, + .navbar.is-white .navbar-end .navbar-link::after { + border-color: #0a0a0a; } + .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #f2f2f2; + color: #0a0a0a; } + .navbar.is-white .navbar-dropdown a.navbar-item.is-active { + background-color: white; + color: #0a0a0a; } } + .navbar.is-black { + background-color: #0a0a0a; + color: white; } + .navbar.is-black .navbar-brand > .navbar-item, + .navbar.is-black .navbar-brand .navbar-link { + color: white; } + .navbar.is-black .navbar-brand > a.navbar-item:hover, .navbar.is-black .navbar-brand > a.navbar-item.is-active, + .navbar.is-black .navbar-brand .navbar-link:hover, + .navbar.is-black .navbar-brand .navbar-link.is-active { + background-color: black; + color: white; } + .navbar.is-black .navbar-brand .navbar-link::after { + border-color: white; } + .navbar.is-black .navbar-burger { + color: white; } + @media screen and (min-width: 1088px) { + .navbar.is-black .navbar-start > .navbar-item, + .navbar.is-black .navbar-start .navbar-link, + .navbar.is-black .navbar-end > .navbar-item, + .navbar.is-black .navbar-end .navbar-link { + color: white; } + .navbar.is-black .navbar-start > a.navbar-item:hover, .navbar.is-black .navbar-start > a.navbar-item.is-active, + .navbar.is-black .navbar-start .navbar-link:hover, + .navbar.is-black .navbar-start .navbar-link.is-active, + .navbar.is-black .navbar-end > a.navbar-item:hover, + .navbar.is-black .navbar-end > a.navbar-item.is-active, + .navbar.is-black .navbar-end .navbar-link:hover, + .navbar.is-black .navbar-end .navbar-link.is-active { + background-color: black; + color: white; } + .navbar.is-black .navbar-start .navbar-link::after, + .navbar.is-black .navbar-end .navbar-link::after { + border-color: white; } + .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link { + background-color: black; + color: white; } + .navbar.is-black .navbar-dropdown a.navbar-item.is-active { + background-color: #0a0a0a; + color: white; } } + .navbar.is-light { + background-color: whitesmoke; + color: #363636; } + .navbar.is-light .navbar-brand > .navbar-item, + .navbar.is-light .navbar-brand .navbar-link { + color: #363636; } + .navbar.is-light .navbar-brand > a.navbar-item:hover, .navbar.is-light .navbar-brand > a.navbar-item.is-active, + .navbar.is-light .navbar-brand .navbar-link:hover, + .navbar.is-light .navbar-brand .navbar-link.is-active { + background-color: #e8e8e8; + color: #363636; } + .navbar.is-light .navbar-brand .navbar-link::after { + border-color: #363636; } + .navbar.is-light .navbar-burger { + color: #363636; } + @media screen and (min-width: 1088px) { + .navbar.is-light .navbar-start > .navbar-item, + .navbar.is-light .navbar-start .navbar-link, + .navbar.is-light .navbar-end > .navbar-item, + .navbar.is-light .navbar-end .navbar-link { + color: #363636; } + .navbar.is-light .navbar-start > a.navbar-item:hover, .navbar.is-light .navbar-start > a.navbar-item.is-active, + .navbar.is-light .navbar-start .navbar-link:hover, + .navbar.is-light .navbar-start .navbar-link.is-active, + .navbar.is-light .navbar-end > a.navbar-item:hover, + .navbar.is-light .navbar-end > a.navbar-item.is-active, + .navbar.is-light .navbar-end .navbar-link:hover, + .navbar.is-light .navbar-end .navbar-link.is-active { + background-color: #e8e8e8; + color: #363636; } + .navbar.is-light .navbar-start .navbar-link::after, + .navbar.is-light .navbar-end .navbar-link::after { + border-color: #363636; } + .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #e8e8e8; + color: #363636; } + .navbar.is-light .navbar-dropdown a.navbar-item.is-active { + background-color: whitesmoke; + color: #363636; } } + .navbar.is-dark { + background-color: #363636; + color: whitesmoke; } + .navbar.is-dark .navbar-brand > .navbar-item, + .navbar.is-dark .navbar-brand .navbar-link { + color: whitesmoke; } + .navbar.is-dark .navbar-brand > a.navbar-item:hover, .navbar.is-dark .navbar-brand > a.navbar-item.is-active, + .navbar.is-dark .navbar-brand .navbar-link:hover, + .navbar.is-dark .navbar-brand .navbar-link.is-active { + background-color: #292929; + color: whitesmoke; } + .navbar.is-dark .navbar-brand .navbar-link::after { + border-color: whitesmoke; } + .navbar.is-dark .navbar-burger { + color: whitesmoke; } + @media screen and (min-width: 1088px) { + .navbar.is-dark .navbar-start > .navbar-item, + .navbar.is-dark .navbar-start .navbar-link, + .navbar.is-dark .navbar-end > .navbar-item, + .navbar.is-dark .navbar-end .navbar-link { + color: whitesmoke; } + .navbar.is-dark .navbar-start > a.navbar-item:hover, .navbar.is-dark .navbar-start > a.navbar-item.is-active, + .navbar.is-dark .navbar-start .navbar-link:hover, + .navbar.is-dark .navbar-start .navbar-link.is-active, + .navbar.is-dark .navbar-end > a.navbar-item:hover, + .navbar.is-dark .navbar-end > a.navbar-item.is-active, + .navbar.is-dark .navbar-end .navbar-link:hover, + .navbar.is-dark .navbar-end .navbar-link.is-active { + background-color: #292929; + color: whitesmoke; } + .navbar.is-dark .navbar-start .navbar-link::after, + .navbar.is-dark .navbar-end .navbar-link::after { + border-color: whitesmoke; } + .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #292929; + color: whitesmoke; } + .navbar.is-dark .navbar-dropdown a.navbar-item.is-active { + background-color: #363636; + color: whitesmoke; } } + .navbar.is-primary { + background-color: #00d1b2; + color: #fff; } + .navbar.is-primary .navbar-brand > .navbar-item, + .navbar.is-primary .navbar-brand .navbar-link { + color: #fff; } + .navbar.is-primary .navbar-brand > a.navbar-item:hover, .navbar.is-primary .navbar-brand > a.navbar-item.is-active, + .navbar.is-primary .navbar-brand .navbar-link:hover, + .navbar.is-primary .navbar-brand .navbar-link.is-active { + background-color: #00b89c; + color: #fff; } + .navbar.is-primary .navbar-brand .navbar-link::after { + border-color: #fff; } + .navbar.is-primary .navbar-burger { + color: #fff; } + @media screen and (min-width: 1088px) { + .navbar.is-primary .navbar-start > .navbar-item, + .navbar.is-primary .navbar-start .navbar-link, + .navbar.is-primary .navbar-end > .navbar-item, + .navbar.is-primary .navbar-end .navbar-link { + color: #fff; } + .navbar.is-primary .navbar-start > a.navbar-item:hover, .navbar.is-primary .navbar-start > a.navbar-item.is-active, + .navbar.is-primary .navbar-start .navbar-link:hover, + .navbar.is-primary .navbar-start .navbar-link.is-active, + .navbar.is-primary .navbar-end > a.navbar-item:hover, + .navbar.is-primary .navbar-end > a.navbar-item.is-active, + .navbar.is-primary .navbar-end .navbar-link:hover, + .navbar.is-primary .navbar-end .navbar-link.is-active { + background-color: #00b89c; + color: #fff; } + .navbar.is-primary .navbar-start .navbar-link::after, + .navbar.is-primary .navbar-end .navbar-link::after { + border-color: #fff; } + .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #00b89c; + color: #fff; } + .navbar.is-primary .navbar-dropdown a.navbar-item.is-active { + background-color: #00d1b2; + color: #fff; } } + .navbar.is-link { + background-color: #3273dc; + color: #fff; } + .navbar.is-link .navbar-brand > .navbar-item, + .navbar.is-link .navbar-brand .navbar-link { + color: #fff; } + .navbar.is-link .navbar-brand > a.navbar-item:hover, .navbar.is-link .navbar-brand > a.navbar-item.is-active, + .navbar.is-link .navbar-brand .navbar-link:hover, + .navbar.is-link .navbar-brand .navbar-link.is-active { + background-color: #2366d1; + color: #fff; } + .navbar.is-link .navbar-brand .navbar-link::after { + border-color: #fff; } + .navbar.is-link .navbar-burger { + color: #fff; } + @media screen and (min-width: 1088px) { + .navbar.is-link .navbar-start > .navbar-item, + .navbar.is-link .navbar-start .navbar-link, + .navbar.is-link .navbar-end > .navbar-item, + .navbar.is-link .navbar-end .navbar-link { + color: #fff; } + .navbar.is-link .navbar-start > a.navbar-item:hover, .navbar.is-link .navbar-start > a.navbar-item.is-active, + .navbar.is-link .navbar-start .navbar-link:hover, + .navbar.is-link .navbar-start .navbar-link.is-active, + .navbar.is-link .navbar-end > a.navbar-item:hover, + .navbar.is-link .navbar-end > a.navbar-item.is-active, + .navbar.is-link .navbar-end .navbar-link:hover, + .navbar.is-link .navbar-end .navbar-link.is-active { + background-color: #2366d1; + color: #fff; } + .navbar.is-link .navbar-start .navbar-link::after, + .navbar.is-link .navbar-end .navbar-link::after { + border-color: #fff; } + .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #2366d1; + color: #fff; } + .navbar.is-link .navbar-dropdown a.navbar-item.is-active { + background-color: #3273dc; + color: #fff; } } + .navbar.is-info { + background-color: #209cee; + color: #fff; } + .navbar.is-info .navbar-brand > .navbar-item, + .navbar.is-info .navbar-brand .navbar-link { + color: #fff; } + .navbar.is-info .navbar-brand > a.navbar-item:hover, .navbar.is-info .navbar-brand > a.navbar-item.is-active, + .navbar.is-info .navbar-brand .navbar-link:hover, + .navbar.is-info .navbar-brand .navbar-link.is-active { + background-color: #118fe4; + color: #fff; } + .navbar.is-info .navbar-brand .navbar-link::after { + border-color: #fff; } + .navbar.is-info .navbar-burger { + color: #fff; } + @media screen and (min-width: 1088px) { + .navbar.is-info .navbar-start > .navbar-item, + .navbar.is-info .navbar-start .navbar-link, + .navbar.is-info .navbar-end > .navbar-item, + .navbar.is-info .navbar-end .navbar-link { + color: #fff; } + .navbar.is-info .navbar-start > a.navbar-item:hover, .navbar.is-info .navbar-start > a.navbar-item.is-active, + .navbar.is-info .navbar-start .navbar-link:hover, + .navbar.is-info .navbar-start .navbar-link.is-active, + .navbar.is-info .navbar-end > a.navbar-item:hover, + .navbar.is-info .navbar-end > a.navbar-item.is-active, + .navbar.is-info .navbar-end .navbar-link:hover, + .navbar.is-info .navbar-end .navbar-link.is-active { + background-color: #118fe4; + color: #fff; } + .navbar.is-info .navbar-start .navbar-link::after, + .navbar.is-info .navbar-end .navbar-link::after { + border-color: #fff; } + .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #118fe4; + color: #fff; } + .navbar.is-info .navbar-dropdown a.navbar-item.is-active { + background-color: #209cee; + color: #fff; } } + .navbar.is-success { + background-color: #23d160; + color: #fff; } + .navbar.is-success .navbar-brand > .navbar-item, + .navbar.is-success .navbar-brand .navbar-link { + color: #fff; } + .navbar.is-success .navbar-brand > a.navbar-item:hover, .navbar.is-success .navbar-brand > a.navbar-item.is-active, + .navbar.is-success .navbar-brand .navbar-link:hover, + .navbar.is-success .navbar-brand .navbar-link.is-active { + background-color: #20bc56; + color: #fff; } + .navbar.is-success .navbar-brand .navbar-link::after { + border-color: #fff; } + .navbar.is-success .navbar-burger { + color: #fff; } + @media screen and (min-width: 1088px) { + .navbar.is-success .navbar-start > .navbar-item, + .navbar.is-success .navbar-start .navbar-link, + .navbar.is-success .navbar-end > .navbar-item, + .navbar.is-success .navbar-end .navbar-link { + color: #fff; } + .navbar.is-success .navbar-start > a.navbar-item:hover, .navbar.is-success .navbar-start > a.navbar-item.is-active, + .navbar.is-success .navbar-start .navbar-link:hover, + .navbar.is-success .navbar-start .navbar-link.is-active, + .navbar.is-success .navbar-end > a.navbar-item:hover, + .navbar.is-success .navbar-end > a.navbar-item.is-active, + .navbar.is-success .navbar-end .navbar-link:hover, + .navbar.is-success .navbar-end .navbar-link.is-active { + background-color: #20bc56; + color: #fff; } + .navbar.is-success .navbar-start .navbar-link::after, + .navbar.is-success .navbar-end .navbar-link::after { + border-color: #fff; } + .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #20bc56; + color: #fff; } + .navbar.is-success .navbar-dropdown a.navbar-item.is-active { + background-color: #23d160; + color: #fff; } } + .navbar.is-warning { + background-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-brand > .navbar-item, + .navbar.is-warning .navbar-brand .navbar-link { + color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-brand > a.navbar-item:hover, .navbar.is-warning .navbar-brand > a.navbar-item.is-active, + .navbar.is-warning .navbar-brand .navbar-link:hover, + .navbar.is-warning .navbar-brand .navbar-link.is-active { + background-color: #ffd83d; + color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-brand .navbar-link::after { + border-color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-burger { + color: rgba(0, 0, 0, 0.7); } + @media screen and (min-width: 1088px) { + .navbar.is-warning .navbar-start > .navbar-item, + .navbar.is-warning .navbar-start .navbar-link, + .navbar.is-warning .navbar-end > .navbar-item, + .navbar.is-warning .navbar-end .navbar-link { + color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-start > a.navbar-item:hover, .navbar.is-warning .navbar-start > a.navbar-item.is-active, + .navbar.is-warning .navbar-start .navbar-link:hover, + .navbar.is-warning .navbar-start .navbar-link.is-active, + .navbar.is-warning .navbar-end > a.navbar-item:hover, + .navbar.is-warning .navbar-end > a.navbar-item.is-active, + .navbar.is-warning .navbar-end .navbar-link:hover, + .navbar.is-warning .navbar-end .navbar-link.is-active { + background-color: #ffd83d; + color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-start .navbar-link::after, + .navbar.is-warning .navbar-end .navbar-link::after { + border-color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #ffd83d; + color: rgba(0, 0, 0, 0.7); } + .navbar.is-warning .navbar-dropdown a.navbar-item.is-active { + background-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } } + .navbar.is-danger { + background-color: #ff3860; + color: #fff; } + .navbar.is-danger .navbar-brand > .navbar-item, + .navbar.is-danger .navbar-brand .navbar-link { + color: #fff; } + .navbar.is-danger .navbar-brand > a.navbar-item:hover, .navbar.is-danger .navbar-brand > a.navbar-item.is-active, + .navbar.is-danger .navbar-brand .navbar-link:hover, + .navbar.is-danger .navbar-brand .navbar-link.is-active { + background-color: #ff1f4b; + color: #fff; } + .navbar.is-danger .navbar-brand .navbar-link::after { + border-color: #fff; } + .navbar.is-danger .navbar-burger { + color: #fff; } + @media screen and (min-width: 1088px) { + .navbar.is-danger .navbar-start > .navbar-item, + .navbar.is-danger .navbar-start .navbar-link, + .navbar.is-danger .navbar-end > .navbar-item, + .navbar.is-danger .navbar-end .navbar-link { + color: #fff; } + .navbar.is-danger .navbar-start > a.navbar-item:hover, .navbar.is-danger .navbar-start > a.navbar-item.is-active, + .navbar.is-danger .navbar-start .navbar-link:hover, + .navbar.is-danger .navbar-start .navbar-link.is-active, + .navbar.is-danger .navbar-end > a.navbar-item:hover, + .navbar.is-danger .navbar-end > a.navbar-item.is-active, + .navbar.is-danger .navbar-end .navbar-link:hover, + .navbar.is-danger .navbar-end .navbar-link.is-active { + background-color: #ff1f4b; + color: #fff; } + .navbar.is-danger .navbar-start .navbar-link::after, + .navbar.is-danger .navbar-end .navbar-link::after { + border-color: #fff; } + .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link, + .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #ff1f4b; + color: #fff; } + .navbar.is-danger .navbar-dropdown a.navbar-item.is-active { + background-color: #ff3860; + color: #fff; } } + .navbar > .container { + align-items: stretch; + display: flex; + min-height: 3.25rem; + width: 100%; } + .navbar.has-shadow { + box-shadow: 0 2px 0 0 whitesmoke; } + .navbar.is-fixed-bottom, .navbar.is-fixed-top { + left: 0; + position: fixed; + right: 0; + z-index: 30; } + .navbar.is-fixed-bottom { + bottom: 0; } + .navbar.is-fixed-bottom.has-shadow { + box-shadow: 0 -2px 0 0 whitesmoke; } + .navbar.is-fixed-top { + top: 0; } + +html.has-navbar-fixed-top, +body.has-navbar-fixed-top { + padding-top: 3.25rem; } + +html.has-navbar-fixed-bottom, +body.has-navbar-fixed-bottom { + padding-bottom: 3.25rem; } + +.navbar-brand, +.navbar-tabs { + align-items: stretch; + display: flex; + flex-shrink: 0; + min-height: 3.25rem; } + +.navbar-brand a.navbar-item:hover { + background-color: transparent; } + +.navbar-tabs { + -webkit-overflow-scrolling: touch; + max-width: 100vw; + overflow-x: auto; + overflow-y: hidden; } + +.navbar-burger { + color: #4a4a4a; + cursor: pointer; + display: block; + height: 3.25rem; + position: relative; + width: 3.25rem; + margin-left: auto; } + .navbar-burger span { + background-color: currentColor; + display: block; + height: 1px; + left: calc(50% - 8px); + position: absolute; + transform-origin: center; + transition-duration: 86ms; + transition-property: background-color, opacity, transform; + transition-timing-function: ease-out; + width: 16px; } + .navbar-burger span:nth-child(1) { + top: calc(50% - 6px); } + .navbar-burger span:nth-child(2) { + top: calc(50% - 1px); } + .navbar-burger span:nth-child(3) { + top: calc(50% + 4px); } + .navbar-burger:hover { + background-color: rgba(0, 0, 0, 0.05); } + .navbar-burger.is-active span:nth-child(1) { + transform: translateY(5px) rotate(45deg); } + .navbar-burger.is-active span:nth-child(2) { + opacity: 0; } + .navbar-burger.is-active span:nth-child(3) { + transform: translateY(-5px) rotate(-45deg); } + +.navbar-menu { + display: none; } + +.navbar-item, +.navbar-link { + color: #4a4a4a; + display: block; + line-height: 1.5; + padding: 0.5rem 0.75rem; + position: relative; } + .navbar-item .icon:only-child, + .navbar-link .icon:only-child { + margin-left: -0.25rem; + margin-right: -0.25rem; } + +a.navbar-item, +.navbar-link { + cursor: pointer; } + a.navbar-item:hover, a.navbar-item.is-active, + .navbar-link:hover, + .navbar-link.is-active { + background-color: #fafafa; + color: #3273dc; } + +.navbar-item { + display: block; + flex-grow: 0; + flex-shrink: 0; } + .navbar-item img { + max-height: 1.75rem; } + .navbar-item.has-dropdown { + padding: 0; } + .navbar-item.is-expanded { + flex-grow: 1; + flex-shrink: 1; } + .navbar-item.is-tab { + border-bottom: 1px solid transparent; + min-height: 3.25rem; + padding-bottom: calc(0.5rem - 1px); } + .navbar-item.is-tab:hover { + background-color: transparent; + border-bottom-color: #3273dc; } + .navbar-item.is-tab.is-active { + background-color: transparent; + border-bottom-color: #3273dc; + border-bottom-style: solid; + border-bottom-width: 3px; + color: #3273dc; + padding-bottom: calc(0.5rem - 3px); } + +.navbar-content { + flex-grow: 1; + flex-shrink: 1; } + +.navbar-link:not(.is-arrowless) { + padding-right: 2.5em; } + .navbar-link:not(.is-arrowless)::after { + border-color: #3273dc; + margin-top: -0.375em; + right: 1.125em; } + +.navbar-dropdown { + font-size: 0.875rem; + padding-bottom: 0.5rem; + padding-top: 0.5rem; } + .navbar-dropdown .navbar-item { + padding-left: 1.5rem; + padding-right: 1.5rem; } + +.navbar-divider { + background-color: whitesmoke; + border: none; + display: none; + height: 2px; + margin: 0.5rem 0; } + +@media screen and (max-width: 1087px) { + .navbar > .container { + display: block; } + .navbar-brand .navbar-item, + .navbar-tabs .navbar-item { + align-items: center; + display: flex; } + .navbar-link::after { + display: none; } + .navbar-menu { + background-color: white; + box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1); + padding: 0.5rem 0; } + .navbar-menu.is-active { + display: block; } + .navbar.is-fixed-bottom-touch, .navbar.is-fixed-top-touch { + left: 0; + position: fixed; + right: 0; + z-index: 30; } + .navbar.is-fixed-bottom-touch { + bottom: 0; } + .navbar.is-fixed-bottom-touch.has-shadow { + box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); } + .navbar.is-fixed-top-touch { + top: 0; } + .navbar.is-fixed-top .navbar-menu, .navbar.is-fixed-top-touch .navbar-menu { + -webkit-overflow-scrolling: touch; + max-height: calc(100vh - 3.25rem); + overflow: auto; } + html.has-navbar-fixed-top-touch, + body.has-navbar-fixed-top-touch { + padding-top: 3.25rem; } + html.has-navbar-fixed-bottom-touch, + body.has-navbar-fixed-bottom-touch { + padding-bottom: 3.25rem; } } + +@media screen and (min-width: 1088px) { + .navbar, + .navbar-menu, + .navbar-start, + .navbar-end { + align-items: stretch; + display: flex; } + .navbar { + min-height: 3.25rem; } + .navbar.is-spaced { + padding: 1rem 2rem; } + .navbar.is-spaced .navbar-start, + .navbar.is-spaced .navbar-end { + align-items: center; } + .navbar.is-spaced a.navbar-item, + .navbar.is-spaced .navbar-link { + border-radius: 4px; } + .navbar.is-transparent a.navbar-item:hover, .navbar.is-transparent a.navbar-item.is-active, + .navbar.is-transparent .navbar-link:hover, + .navbar.is-transparent .navbar-link.is-active { + background-color: transparent !important; } + .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link { + background-color: transparent !important; } + .navbar.is-transparent .navbar-dropdown a.navbar-item:hover { + background-color: whitesmoke; + color: #0a0a0a; } + .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active { + background-color: whitesmoke; + color: #3273dc; } + .navbar-burger { + display: none; } + .navbar-item, + .navbar-link { + align-items: center; + display: flex; } + .navbar-item { + display: flex; } + .navbar-item.has-dropdown { + align-items: stretch; } + .navbar-item.has-dropdown-up .navbar-link::after { + transform: rotate(135deg) translate(0.25em, -0.25em); } + .navbar-item.has-dropdown-up .navbar-dropdown { + border-bottom: 2px solid #dbdbdb; + border-radius: 6px 6px 0 0; + border-top: none; + bottom: 100%; + box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1); + top: auto; } + .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown { + display: block; } + .navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed { + opacity: 1; + pointer-events: auto; + transform: translateY(0); } + .navbar-menu { + flex-grow: 1; + flex-shrink: 0; } + .navbar-start { + justify-content: flex-start; + margin-right: auto; } + .navbar-end { + justify-content: flex-end; + margin-left: auto; } + .navbar-dropdown { + background-color: white; + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; + border-top: 2px solid #dbdbdb; + box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1); + display: none; + font-size: 0.875rem; + left: 0; + min-width: 100%; + position: absolute; + top: 100%; + z-index: 20; } + .navbar-dropdown .navbar-item { + padding: 0.375rem 1rem; + white-space: nowrap; } + .navbar-dropdown a.navbar-item { + padding-right: 3rem; } + .navbar-dropdown a.navbar-item:hover { + background-color: whitesmoke; + color: #0a0a0a; } + .navbar-dropdown a.navbar-item.is-active { + background-color: whitesmoke; + color: #3273dc; } + .navbar.is-spaced .navbar-dropdown, .navbar-dropdown.is-boxed { + border-radius: 6px; + border-top: none; + box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); + display: block; + opacity: 0; + pointer-events: none; + top: calc(100% + (-4px)); + transform: translateY(-5px); + transition-duration: 86ms; + transition-property: opacity, transform; } + .navbar-dropdown.is-right { + left: auto; + right: 0; } + .navbar-divider { + display: block; } + .navbar > .container .navbar-brand, + .container > .navbar .navbar-brand { + margin-left: -.75rem; } + .navbar > .container .navbar-menu, + .container > .navbar .navbar-menu { + margin-right: -.75rem; } + .navbar.is-fixed-bottom-desktop, .navbar.is-fixed-top-desktop { + left: 0; + position: fixed; + right: 0; + z-index: 30; } + .navbar.is-fixed-bottom-desktop { + bottom: 0; } + .navbar.is-fixed-bottom-desktop.has-shadow { + box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); } + .navbar.is-fixed-top-desktop { + top: 0; } + html.has-navbar-fixed-top-desktop, + body.has-navbar-fixed-top-desktop { + padding-top: 3.25rem; } + html.has-navbar-fixed-bottom-desktop, + body.has-navbar-fixed-bottom-desktop { + padding-bottom: 3.25rem; } + html.has-spaced-navbar-fixed-top, + body.has-spaced-navbar-fixed-top { + padding-top: 5.25rem; } + html.has-spaced-navbar-fixed-bottom, + body.has-spaced-navbar-fixed-bottom { + padding-bottom: 5.25rem; } + a.navbar-item.is-active, + .navbar-link.is-active { + color: #0a0a0a; } + a.navbar-item.is-active:not(:hover), + .navbar-link.is-active:not(:hover) { + background-color: transparent; } + .navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link { + background-color: #fafafa; } } + +.hero.is-fullheight-with-navbar { + min-height: calc(100vh - 3.25rem); } + +.pagination { + font-size: 1rem; + margin: -0.25rem; } + .pagination.is-small { + font-size: 0.75rem; } + .pagination.is-medium { + font-size: 1.25rem; } + .pagination.is-large { + font-size: 1.5rem; } + .pagination.is-rounded .pagination-previous, + .pagination.is-rounded .pagination-next { + padding-left: 1em; + padding-right: 1em; + border-radius: 290486px; } + .pagination.is-rounded .pagination-link { + border-radius: 290486px; } + +.pagination, +.pagination-list { + align-items: center; + display: flex; + justify-content: center; + text-align: center; } + +.pagination-previous, +.pagination-next, +.pagination-link, +.pagination-ellipsis { + font-size: 1em; + padding-left: 0.5em; + padding-right: 0.5em; + justify-content: center; + margin: 0.25rem; + text-align: center; } + +.pagination-previous, +.pagination-next, +.pagination-link { + border-color: #dbdbdb; + color: #363636; + min-width: 2.25em; } + .pagination-previous:hover, + .pagination-next:hover, + .pagination-link:hover { + border-color: #b5b5b5; + color: #363636; } + .pagination-previous:focus, + .pagination-next:focus, + .pagination-link:focus { + border-color: #3273dc; } + .pagination-previous:active, + .pagination-next:active, + .pagination-link:active { + box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2); } + .pagination-previous[disabled], + .pagination-next[disabled], + .pagination-link[disabled] { + background-color: #dbdbdb; + border-color: #dbdbdb; + box-shadow: none; + color: #7a7a7a; + opacity: 0.5; } + +.pagination-previous, +.pagination-next { + padding-left: 0.75em; + padding-right: 0.75em; + white-space: nowrap; } + +.pagination-link.is-current { + background-color: #3273dc; + border-color: #3273dc; + color: #fff; } + +.pagination-ellipsis { + color: #b5b5b5; + pointer-events: none; } + +.pagination-list { + flex-wrap: wrap; } + +@media screen and (max-width: 768px) { + .pagination { + flex-wrap: wrap; } + .pagination-previous, + .pagination-next { + flex-grow: 1; + flex-shrink: 1; } + .pagination-list li { + flex-grow: 1; + flex-shrink: 1; } } + +@media screen and (min-width: 769px), print { + .pagination-list { + flex-grow: 1; + flex-shrink: 1; + justify-content: flex-start; + order: 1; } + .pagination-previous { + order: 2; } + .pagination-next { + order: 3; } + .pagination { + justify-content: space-between; } + .pagination.is-centered .pagination-previous { + order: 1; } + .pagination.is-centered .pagination-list { + justify-content: center; + order: 2; } + .pagination.is-centered .pagination-next { + order: 3; } + .pagination.is-right .pagination-previous { + order: 1; } + .pagination.is-right .pagination-next { + order: 2; } + .pagination.is-right .pagination-list { + justify-content: flex-end; + order: 3; } } + +.panel { + font-size: 1rem; } + .panel:not(:last-child) { + margin-bottom: 1.5rem; } + +.panel-heading, +.panel-tabs, +.panel-block { + border-bottom: 1px solid #dbdbdb; + border-left: 1px solid #dbdbdb; + border-right: 1px solid #dbdbdb; } + .panel-heading:first-child, + .panel-tabs:first-child, + .panel-block:first-child { + border-top: 1px solid #dbdbdb; } + +.panel-heading { + background-color: whitesmoke; + border-radius: 4px 4px 0 0; + color: #363636; + font-size: 1.25em; + font-weight: 300; + line-height: 1.25; + padding: 0.5em 0.75em; } + +.panel-tabs { + align-items: flex-end; + display: flex; + font-size: 0.875em; + justify-content: center; } + .panel-tabs a { + border-bottom: 1px solid #dbdbdb; + margin-bottom: -1px; + padding: 0.5em; } + .panel-tabs a.is-active { + border-bottom-color: #4a4a4a; + color: #363636; } + +.panel-list a { + color: #4a4a4a; } + .panel-list a:hover { + color: #3273dc; } + +.panel-block { + align-items: center; + color: #363636; + display: flex; + justify-content: flex-start; + padding: 0.5em 0.75em; } + .panel-block input[type="checkbox"] { + margin-right: 0.75em; } + .panel-block > .control { + flex-grow: 1; + flex-shrink: 1; + width: 100%; } + .panel-block.is-wrapped { + flex-wrap: wrap; } + .panel-block.is-active { + border-left-color: #3273dc; + color: #363636; } + .panel-block.is-active .panel-icon { + color: #3273dc; } + +a.panel-block, +label.panel-block { + cursor: pointer; } + a.panel-block:hover, + label.panel-block:hover { + background-color: whitesmoke; } + +.panel-icon { + display: inline-block; + font-size: 14px; + height: 1em; + line-height: 1em; + text-align: center; + vertical-align: top; + width: 1em; + color: #7a7a7a; + margin-right: 0.75em; } + .panel-icon .fa { + font-size: inherit; + line-height: inherit; } + +.tabs { + -webkit-overflow-scrolling: touch; + align-items: stretch; + display: flex; + font-size: 1rem; + justify-content: space-between; + overflow: hidden; + overflow-x: auto; + white-space: nowrap; } + .tabs a { + align-items: center; + border-bottom-color: #dbdbdb; + border-bottom-style: solid; + border-bottom-width: 1px; + color: #4a4a4a; + display: flex; + justify-content: center; + margin-bottom: -1px; + padding: 0.5em 1em; + vertical-align: top; } + .tabs a:hover { + border-bottom-color: #363636; + color: #363636; } + .tabs li { + display: block; } + .tabs li.is-active a { + border-bottom-color: #3273dc; + color: #3273dc; } + .tabs ul { + align-items: center; + border-bottom-color: #dbdbdb; + border-bottom-style: solid; + border-bottom-width: 1px; + display: flex; + flex-grow: 1; + flex-shrink: 0; + justify-content: flex-start; } + .tabs ul.is-left { + padding-right: 0.75em; } + .tabs ul.is-center { + flex: none; + justify-content: center; + padding-left: 0.75em; + padding-right: 0.75em; } + .tabs ul.is-right { + justify-content: flex-end; + padding-left: 0.75em; } + .tabs .icon:first-child { + margin-right: 0.5em; } + .tabs .icon:last-child { + margin-left: 0.5em; } + .tabs.is-centered ul { + justify-content: center; } + .tabs.is-right ul { + justify-content: flex-end; } + .tabs.is-boxed a { + border: 1px solid transparent; + border-radius: 4px 4px 0 0; } + .tabs.is-boxed a:hover { + background-color: whitesmoke; + border-bottom-color: #dbdbdb; } + .tabs.is-boxed li.is-active a { + background-color: white; + border-color: #dbdbdb; + border-bottom-color: transparent !important; } + .tabs.is-fullwidth li { + flex-grow: 1; + flex-shrink: 0; } + .tabs.is-toggle a { + border-color: #dbdbdb; + border-style: solid; + border-width: 1px; + margin-bottom: 0; + position: relative; } + .tabs.is-toggle a:hover { + background-color: whitesmoke; + border-color: #b5b5b5; + z-index: 2; } + .tabs.is-toggle li + li { + margin-left: -1px; } + .tabs.is-toggle li:first-child a { + border-radius: 4px 0 0 4px; } + .tabs.is-toggle li:last-child a { + border-radius: 0 4px 4px 0; } + .tabs.is-toggle li.is-active a { + background-color: #3273dc; + border-color: #3273dc; + color: #fff; + z-index: 1; } + .tabs.is-toggle ul { + border-bottom: none; } + .tabs.is-toggle.is-toggle-rounded li:first-child a { + border-bottom-left-radius: 290486px; + border-top-left-radius: 290486px; + padding-left: 1.25em; } + .tabs.is-toggle.is-toggle-rounded li:last-child a { + border-bottom-right-radius: 290486px; + border-top-right-radius: 290486px; + padding-right: 1.25em; } + .tabs.is-small { + font-size: 0.75rem; } + .tabs.is-medium { + font-size: 1.25rem; } + .tabs.is-large { + font-size: 1.5rem; } + +.column { + display: block; + flex-basis: 0; + flex-grow: 1; + flex-shrink: 1; + padding: 0.75rem; } + .columns.is-mobile > .column.is-narrow { + flex: none; } + .columns.is-mobile > .column.is-full { + flex: none; + width: 100%; } + .columns.is-mobile > .column.is-three-quarters { + flex: none; + width: 75%; } + .columns.is-mobile > .column.is-two-thirds { + flex: none; + width: 66.6666%; } + .columns.is-mobile > .column.is-half { + flex: none; + width: 50%; } + .columns.is-mobile > .column.is-one-third { + flex: none; + width: 33.3333%; } + .columns.is-mobile > .column.is-one-quarter { + flex: none; + width: 25%; } + .columns.is-mobile > .column.is-one-fifth { + flex: none; + width: 20%; } + .columns.is-mobile > .column.is-two-fifths { + flex: none; + width: 40%; } + .columns.is-mobile > .column.is-three-fifths { + flex: none; + width: 60%; } + .columns.is-mobile > .column.is-four-fifths { + flex: none; + width: 80%; } + .columns.is-mobile > .column.is-offset-three-quarters { + margin-left: 75%; } + .columns.is-mobile > .column.is-offset-two-thirds { + margin-left: 66.6666%; } + .columns.is-mobile > .column.is-offset-half { + margin-left: 50%; } + .columns.is-mobile > .column.is-offset-one-third { + margin-left: 33.3333%; } + .columns.is-mobile > .column.is-offset-one-quarter { + margin-left: 25%; } + .columns.is-mobile > .column.is-offset-one-fifth { + margin-left: 20%; } + .columns.is-mobile > .column.is-offset-two-fifths { + margin-left: 40%; } + .columns.is-mobile > .column.is-offset-three-fifths { + margin-left: 60%; } + .columns.is-mobile > .column.is-offset-four-fifths { + margin-left: 80%; } + .columns.is-mobile > .column.is-1 { + flex: none; + width: 8.33333%; } + .columns.is-mobile > .column.is-offset-1 { + margin-left: 8.33333%; } + .columns.is-mobile > .column.is-2 { + flex: none; + width: 16.66667%; } + .columns.is-mobile > .column.is-offset-2 { + margin-left: 16.66667%; } + .columns.is-mobile > .column.is-3 { + flex: none; + width: 25%; } + .columns.is-mobile > .column.is-offset-3 { + margin-left: 25%; } + .columns.is-mobile > .column.is-4 { + flex: none; + width: 33.33333%; } + .columns.is-mobile > .column.is-offset-4 { + margin-left: 33.33333%; } + .columns.is-mobile > .column.is-5 { + flex: none; + width: 41.66667%; } + .columns.is-mobile > .column.is-offset-5 { + margin-left: 41.66667%; } + .columns.is-mobile > .column.is-6 { + flex: none; + width: 50%; } + .columns.is-mobile > .column.is-offset-6 { + margin-left: 50%; } + .columns.is-mobile > .column.is-7 { + flex: none; + width: 58.33333%; } + .columns.is-mobile > .column.is-offset-7 { + margin-left: 58.33333%; } + .columns.is-mobile > .column.is-8 { + flex: none; + width: 66.66667%; } + .columns.is-mobile > .column.is-offset-8 { + margin-left: 66.66667%; } + .columns.is-mobile > .column.is-9 { + flex: none; + width: 75%; } + .columns.is-mobile > .column.is-offset-9 { + margin-left: 75%; } + .columns.is-mobile > .column.is-10 { + flex: none; + width: 83.33333%; } + .columns.is-mobile > .column.is-offset-10 { + margin-left: 83.33333%; } + .columns.is-mobile > .column.is-11 { + flex: none; + width: 91.66667%; } + .columns.is-mobile > .column.is-offset-11 { + margin-left: 91.66667%; } + .columns.is-mobile > .column.is-12 { + flex: none; + width: 100%; } + .columns.is-mobile > .column.is-offset-12 { + margin-left: 100%; } + @media screen and (max-width: 768px) { + .column.is-narrow-mobile { + flex: none; } + .column.is-full-mobile { + flex: none; + width: 100%; } + .column.is-three-quarters-mobile { + flex: none; + width: 75%; } + .column.is-two-thirds-mobile { + flex: none; + width: 66.6666%; } + .column.is-half-mobile { + flex: none; + width: 50%; } + .column.is-one-third-mobile { + flex: none; + width: 33.3333%; } + .column.is-one-quarter-mobile { + flex: none; + width: 25%; } + .column.is-one-fifth-mobile { + flex: none; + width: 20%; } + .column.is-two-fifths-mobile { + flex: none; + width: 40%; } + .column.is-three-fifths-mobile { + flex: none; + width: 60%; } + .column.is-four-fifths-mobile { + flex: none; + width: 80%; } + .column.is-offset-three-quarters-mobile { + margin-left: 75%; } + .column.is-offset-two-thirds-mobile { + margin-left: 66.6666%; } + .column.is-offset-half-mobile { + margin-left: 50%; } + .column.is-offset-one-third-mobile { + margin-left: 33.3333%; } + .column.is-offset-one-quarter-mobile { + margin-left: 25%; } + .column.is-offset-one-fifth-mobile { + margin-left: 20%; } + .column.is-offset-two-fifths-mobile { + margin-left: 40%; } + .column.is-offset-three-fifths-mobile { + margin-left: 60%; } + .column.is-offset-four-fifths-mobile { + margin-left: 80%; } + .column.is-1-mobile { + flex: none; + width: 8.33333%; } + .column.is-offset-1-mobile { + margin-left: 8.33333%; } + .column.is-2-mobile { + flex: none; + width: 16.66667%; } + .column.is-offset-2-mobile { + margin-left: 16.66667%; } + .column.is-3-mobile { + flex: none; + width: 25%; } + .column.is-offset-3-mobile { + margin-left: 25%; } + .column.is-4-mobile { + flex: none; + width: 33.33333%; } + .column.is-offset-4-mobile { + margin-left: 33.33333%; } + .column.is-5-mobile { + flex: none; + width: 41.66667%; } + .column.is-offset-5-mobile { + margin-left: 41.66667%; } + .column.is-6-mobile { + flex: none; + width: 50%; } + .column.is-offset-6-mobile { + margin-left: 50%; } + .column.is-7-mobile { + flex: none; + width: 58.33333%; } + .column.is-offset-7-mobile { + margin-left: 58.33333%; } + .column.is-8-mobile { + flex: none; + width: 66.66667%; } + .column.is-offset-8-mobile { + margin-left: 66.66667%; } + .column.is-9-mobile { + flex: none; + width: 75%; } + .column.is-offset-9-mobile { + margin-left: 75%; } + .column.is-10-mobile { + flex: none; + width: 83.33333%; } + .column.is-offset-10-mobile { + margin-left: 83.33333%; } + .column.is-11-mobile { + flex: none; + width: 91.66667%; } + .column.is-offset-11-mobile { + margin-left: 91.66667%; } + .column.is-12-mobile { + flex: none; + width: 100%; } + .column.is-offset-12-mobile { + margin-left: 100%; } } + @media screen and (min-width: 769px), print { + .column.is-narrow, .column.is-narrow-tablet { + flex: none; } + .column.is-full, .column.is-full-tablet { + flex: none; + width: 100%; } + .column.is-three-quarters, .column.is-three-quarters-tablet { + flex: none; + width: 75%; } + .column.is-two-thirds, .column.is-two-thirds-tablet { + flex: none; + width: 66.6666%; } + .column.is-half, .column.is-half-tablet { + flex: none; + width: 50%; } + .column.is-one-third, .column.is-one-third-tablet { + flex: none; + width: 33.3333%; } + .column.is-one-quarter, .column.is-one-quarter-tablet { + flex: none; + width: 25%; } + .column.is-one-fifth, .column.is-one-fifth-tablet { + flex: none; + width: 20%; } + .column.is-two-fifths, .column.is-two-fifths-tablet { + flex: none; + width: 40%; } + .column.is-three-fifths, .column.is-three-fifths-tablet { + flex: none; + width: 60%; } + .column.is-four-fifths, .column.is-four-fifths-tablet { + flex: none; + width: 80%; } + .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet { + margin-left: 75%; } + .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet { + margin-left: 66.6666%; } + .column.is-offset-half, .column.is-offset-half-tablet { + margin-left: 50%; } + .column.is-offset-one-third, .column.is-offset-one-third-tablet { + margin-left: 33.3333%; } + .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet { + margin-left: 25%; } + .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet { + margin-left: 20%; } + .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet { + margin-left: 40%; } + .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet { + margin-left: 60%; } + .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet { + margin-left: 80%; } + .column.is-1, .column.is-1-tablet { + flex: none; + width: 8.33333%; } + .column.is-offset-1, .column.is-offset-1-tablet { + margin-left: 8.33333%; } + .column.is-2, .column.is-2-tablet { + flex: none; + width: 16.66667%; } + .column.is-offset-2, .column.is-offset-2-tablet { + margin-left: 16.66667%; } + .column.is-3, .column.is-3-tablet { + flex: none; + width: 25%; } + .column.is-offset-3, .column.is-offset-3-tablet { + margin-left: 25%; } + .column.is-4, .column.is-4-tablet { + flex: none; + width: 33.33333%; } + .column.is-offset-4, .column.is-offset-4-tablet { + margin-left: 33.33333%; } + .column.is-5, .column.is-5-tablet { + flex: none; + width: 41.66667%; } + .column.is-offset-5, .column.is-offset-5-tablet { + margin-left: 41.66667%; } + .column.is-6, .column.is-6-tablet { + flex: none; + width: 50%; } + .column.is-offset-6, .column.is-offset-6-tablet { + margin-left: 50%; } + .column.is-7, .column.is-7-tablet { + flex: none; + width: 58.33333%; } + .column.is-offset-7, .column.is-offset-7-tablet { + margin-left: 58.33333%; } + .column.is-8, .column.is-8-tablet { + flex: none; + width: 66.66667%; } + .column.is-offset-8, .column.is-offset-8-tablet { + margin-left: 66.66667%; } + .column.is-9, .column.is-9-tablet { + flex: none; + width: 75%; } + .column.is-offset-9, .column.is-offset-9-tablet { + margin-left: 75%; } + .column.is-10, .column.is-10-tablet { + flex: none; + width: 83.33333%; } + .column.is-offset-10, .column.is-offset-10-tablet { + margin-left: 83.33333%; } + .column.is-11, .column.is-11-tablet { + flex: none; + width: 91.66667%; } + .column.is-offset-11, .column.is-offset-11-tablet { + margin-left: 91.66667%; } + .column.is-12, .column.is-12-tablet { + flex: none; + width: 100%; } + .column.is-offset-12, .column.is-offset-12-tablet { + margin-left: 100%; } } + @media screen and (max-width: 1087px) { + .column.is-narrow-touch { + flex: none; } + .column.is-full-touch { + flex: none; + width: 100%; } + .column.is-three-quarters-touch { + flex: none; + width: 75%; } + .column.is-two-thirds-touch { + flex: none; + width: 66.6666%; } + .column.is-half-touch { + flex: none; + width: 50%; } + .column.is-one-third-touch { + flex: none; + width: 33.3333%; } + .column.is-one-quarter-touch { + flex: none; + width: 25%; } + .column.is-one-fifth-touch { + flex: none; + width: 20%; } + .column.is-two-fifths-touch { + flex: none; + width: 40%; } + .column.is-three-fifths-touch { + flex: none; + width: 60%; } + .column.is-four-fifths-touch { + flex: none; + width: 80%; } + .column.is-offset-three-quarters-touch { + margin-left: 75%; } + .column.is-offset-two-thirds-touch { + margin-left: 66.6666%; } + .column.is-offset-half-touch { + margin-left: 50%; } + .column.is-offset-one-third-touch { + margin-left: 33.3333%; } + .column.is-offset-one-quarter-touch { + margin-left: 25%; } + .column.is-offset-one-fifth-touch { + margin-left: 20%; } + .column.is-offset-two-fifths-touch { + margin-left: 40%; } + .column.is-offset-three-fifths-touch { + margin-left: 60%; } + .column.is-offset-four-fifths-touch { + margin-left: 80%; } + .column.is-1-touch { + flex: none; + width: 8.33333%; } + .column.is-offset-1-touch { + margin-left: 8.33333%; } + .column.is-2-touch { + flex: none; + width: 16.66667%; } + .column.is-offset-2-touch { + margin-left: 16.66667%; } + .column.is-3-touch { + flex: none; + width: 25%; } + .column.is-offset-3-touch { + margin-left: 25%; } + .column.is-4-touch { + flex: none; + width: 33.33333%; } + .column.is-offset-4-touch { + margin-left: 33.33333%; } + .column.is-5-touch { + flex: none; + width: 41.66667%; } + .column.is-offset-5-touch { + margin-left: 41.66667%; } + .column.is-6-touch { + flex: none; + width: 50%; } + .column.is-offset-6-touch { + margin-left: 50%; } + .column.is-7-touch { + flex: none; + width: 58.33333%; } + .column.is-offset-7-touch { + margin-left: 58.33333%; } + .column.is-8-touch { + flex: none; + width: 66.66667%; } + .column.is-offset-8-touch { + margin-left: 66.66667%; } + .column.is-9-touch { + flex: none; + width: 75%; } + .column.is-offset-9-touch { + margin-left: 75%; } + .column.is-10-touch { + flex: none; + width: 83.33333%; } + .column.is-offset-10-touch { + margin-left: 83.33333%; } + .column.is-11-touch { + flex: none; + width: 91.66667%; } + .column.is-offset-11-touch { + margin-left: 91.66667%; } + .column.is-12-touch { + flex: none; + width: 100%; } + .column.is-offset-12-touch { + margin-left: 100%; } } + @media screen and (min-width: 1088px) { + .column.is-narrow-desktop { + flex: none; } + .column.is-full-desktop { + flex: none; + width: 100%; } + .column.is-three-quarters-desktop { + flex: none; + width: 75%; } + .column.is-two-thirds-desktop { + flex: none; + width: 66.6666%; } + .column.is-half-desktop { + flex: none; + width: 50%; } + .column.is-one-third-desktop { + flex: none; + width: 33.3333%; } + .column.is-one-quarter-desktop { + flex: none; + width: 25%; } + .column.is-one-fifth-desktop { + flex: none; + width: 20%; } + .column.is-two-fifths-desktop { + flex: none; + width: 40%; } + .column.is-three-fifths-desktop { + flex: none; + width: 60%; } + .column.is-four-fifths-desktop { + flex: none; + width: 80%; } + .column.is-offset-three-quarters-desktop { + margin-left: 75%; } + .column.is-offset-two-thirds-desktop { + margin-left: 66.6666%; } + .column.is-offset-half-desktop { + margin-left: 50%; } + .column.is-offset-one-third-desktop { + margin-left: 33.3333%; } + .column.is-offset-one-quarter-desktop { + margin-left: 25%; } + .column.is-offset-one-fifth-desktop { + margin-left: 20%; } + .column.is-offset-two-fifths-desktop { + margin-left: 40%; } + .column.is-offset-three-fifths-desktop { + margin-left: 60%; } + .column.is-offset-four-fifths-desktop { + margin-left: 80%; } + .column.is-1-desktop { + flex: none; + width: 8.33333%; } + .column.is-offset-1-desktop { + margin-left: 8.33333%; } + .column.is-2-desktop { + flex: none; + width: 16.66667%; } + .column.is-offset-2-desktop { + margin-left: 16.66667%; } + .column.is-3-desktop { + flex: none; + width: 25%; } + .column.is-offset-3-desktop { + margin-left: 25%; } + .column.is-4-desktop { + flex: none; + width: 33.33333%; } + .column.is-offset-4-desktop { + margin-left: 33.33333%; } + .column.is-5-desktop { + flex: none; + width: 41.66667%; } + .column.is-offset-5-desktop { + margin-left: 41.66667%; } + .column.is-6-desktop { + flex: none; + width: 50%; } + .column.is-offset-6-desktop { + margin-left: 50%; } + .column.is-7-desktop { + flex: none; + width: 58.33333%; } + .column.is-offset-7-desktop { + margin-left: 58.33333%; } + .column.is-8-desktop { + flex: none; + width: 66.66667%; } + .column.is-offset-8-desktop { + margin-left: 66.66667%; } + .column.is-9-desktop { + flex: none; + width: 75%; } + .column.is-offset-9-desktop { + margin-left: 75%; } + .column.is-10-desktop { + flex: none; + width: 83.33333%; } + .column.is-offset-10-desktop { + margin-left: 83.33333%; } + .column.is-11-desktop { + flex: none; + width: 91.66667%; } + .column.is-offset-11-desktop { + margin-left: 91.66667%; } + .column.is-12-desktop { + flex: none; + width: 100%; } + .column.is-offset-12-desktop { + margin-left: 100%; } } + @media screen and (min-width: 1280px) { + .column.is-narrow-widescreen { + flex: none; } + .column.is-full-widescreen { + flex: none; + width: 100%; } + .column.is-three-quarters-widescreen { + flex: none; + width: 75%; } + .column.is-two-thirds-widescreen { + flex: none; + width: 66.6666%; } + .column.is-half-widescreen { + flex: none; + width: 50%; } + .column.is-one-third-widescreen { + flex: none; + width: 33.3333%; } + .column.is-one-quarter-widescreen { + flex: none; + width: 25%; } + .column.is-one-fifth-widescreen { + flex: none; + width: 20%; } + .column.is-two-fifths-widescreen { + flex: none; + width: 40%; } + .column.is-three-fifths-widescreen { + flex: none; + width: 60%; } + .column.is-four-fifths-widescreen { + flex: none; + width: 80%; } + .column.is-offset-three-quarters-widescreen { + margin-left: 75%; } + .column.is-offset-two-thirds-widescreen { + margin-left: 66.6666%; } + .column.is-offset-half-widescreen { + margin-left: 50%; } + .column.is-offset-one-third-widescreen { + margin-left: 33.3333%; } + .column.is-offset-one-quarter-widescreen { + margin-left: 25%; } + .column.is-offset-one-fifth-widescreen { + margin-left: 20%; } + .column.is-offset-two-fifths-widescreen { + margin-left: 40%; } + .column.is-offset-three-fifths-widescreen { + margin-left: 60%; } + .column.is-offset-four-fifths-widescreen { + margin-left: 80%; } + .column.is-1-widescreen { + flex: none; + width: 8.33333%; } + .column.is-offset-1-widescreen { + margin-left: 8.33333%; } + .column.is-2-widescreen { + flex: none; + width: 16.66667%; } + .column.is-offset-2-widescreen { + margin-left: 16.66667%; } + .column.is-3-widescreen { + flex: none; + width: 25%; } + .column.is-offset-3-widescreen { + margin-left: 25%; } + .column.is-4-widescreen { + flex: none; + width: 33.33333%; } + .column.is-offset-4-widescreen { + margin-left: 33.33333%; } + .column.is-5-widescreen { + flex: none; + width: 41.66667%; } + .column.is-offset-5-widescreen { + margin-left: 41.66667%; } + .column.is-6-widescreen { + flex: none; + width: 50%; } + .column.is-offset-6-widescreen { + margin-left: 50%; } + .column.is-7-widescreen { + flex: none; + width: 58.33333%; } + .column.is-offset-7-widescreen { + margin-left: 58.33333%; } + .column.is-8-widescreen { + flex: none; + width: 66.66667%; } + .column.is-offset-8-widescreen { + margin-left: 66.66667%; } + .column.is-9-widescreen { + flex: none; + width: 75%; } + .column.is-offset-9-widescreen { + margin-left: 75%; } + .column.is-10-widescreen { + flex: none; + width: 83.33333%; } + .column.is-offset-10-widescreen { + margin-left: 83.33333%; } + .column.is-11-widescreen { + flex: none; + width: 91.66667%; } + .column.is-offset-11-widescreen { + margin-left: 91.66667%; } + .column.is-12-widescreen { + flex: none; + width: 100%; } + .column.is-offset-12-widescreen { + margin-left: 100%; } } + @media screen and (min-width: 1472px) { + .column.is-narrow-fullhd { + flex: none; } + .column.is-full-fullhd { + flex: none; + width: 100%; } + .column.is-three-quarters-fullhd { + flex: none; + width: 75%; } + .column.is-two-thirds-fullhd { + flex: none; + width: 66.6666%; } + .column.is-half-fullhd { + flex: none; + width: 50%; } + .column.is-one-third-fullhd { + flex: none; + width: 33.3333%; } + .column.is-one-quarter-fullhd { + flex: none; + width: 25%; } + .column.is-one-fifth-fullhd { + flex: none; + width: 20%; } + .column.is-two-fifths-fullhd { + flex: none; + width: 40%; } + .column.is-three-fifths-fullhd { + flex: none; + width: 60%; } + .column.is-four-fifths-fullhd { + flex: none; + width: 80%; } + .column.is-offset-three-quarters-fullhd { + margin-left: 75%; } + .column.is-offset-two-thirds-fullhd { + margin-left: 66.6666%; } + .column.is-offset-half-fullhd { + margin-left: 50%; } + .column.is-offset-one-third-fullhd { + margin-left: 33.3333%; } + .column.is-offset-one-quarter-fullhd { + margin-left: 25%; } + .column.is-offset-one-fifth-fullhd { + margin-left: 20%; } + .column.is-offset-two-fifths-fullhd { + margin-left: 40%; } + .column.is-offset-three-fifths-fullhd { + margin-left: 60%; } + .column.is-offset-four-fifths-fullhd { + margin-left: 80%; } + .column.is-1-fullhd { + flex: none; + width: 8.33333%; } + .column.is-offset-1-fullhd { + margin-left: 8.33333%; } + .column.is-2-fullhd { + flex: none; + width: 16.66667%; } + .column.is-offset-2-fullhd { + margin-left: 16.66667%; } + .column.is-3-fullhd { + flex: none; + width: 25%; } + .column.is-offset-3-fullhd { + margin-left: 25%; } + .column.is-4-fullhd { + flex: none; + width: 33.33333%; } + .column.is-offset-4-fullhd { + margin-left: 33.33333%; } + .column.is-5-fullhd { + flex: none; + width: 41.66667%; } + .column.is-offset-5-fullhd { + margin-left: 41.66667%; } + .column.is-6-fullhd { + flex: none; + width: 50%; } + .column.is-offset-6-fullhd { + margin-left: 50%; } + .column.is-7-fullhd { + flex: none; + width: 58.33333%; } + .column.is-offset-7-fullhd { + margin-left: 58.33333%; } + .column.is-8-fullhd { + flex: none; + width: 66.66667%; } + .column.is-offset-8-fullhd { + margin-left: 66.66667%; } + .column.is-9-fullhd { + flex: none; + width: 75%; } + .column.is-offset-9-fullhd { + margin-left: 75%; } + .column.is-10-fullhd { + flex: none; + width: 83.33333%; } + .column.is-offset-10-fullhd { + margin-left: 83.33333%; } + .column.is-11-fullhd { + flex: none; + width: 91.66667%; } + .column.is-offset-11-fullhd { + margin-left: 91.66667%; } + .column.is-12-fullhd { + flex: none; + width: 100%; } + .column.is-offset-12-fullhd { + margin-left: 100%; } } + +.columns { + margin-left: -0.75rem; + margin-right: -0.75rem; + margin-top: -0.75rem; } + .columns:last-child { + margin-bottom: -0.75rem; } + .columns:not(:last-child) { + margin-bottom: calc(1.5rem - 0.75rem); } + .columns.is-centered { + justify-content: center; } + .columns.is-gapless { + margin-left: 0; + margin-right: 0; + margin-top: 0; } + .columns.is-gapless > .column { + margin: 0; + padding: 0 !important; } + .columns.is-gapless:not(:last-child) { + margin-bottom: 1.5rem; } + .columns.is-gapless:last-child { + margin-bottom: 0; } + .columns.is-mobile { + display: flex; } + .columns.is-multiline { + flex-wrap: wrap; } + .columns.is-vcentered { + align-items: center; } + @media screen and (min-width: 769px), print { + .columns:not(.is-desktop) { + display: flex; } } + @media screen and (min-width: 1088px) { + .columns.is-desktop { + display: flex; } } + +.columns.is-variable { + --columnGap: 0.75rem; + margin-left: calc(-1 * var(--columnGap)); + margin-right: calc(-1 * var(--columnGap)); } + .columns.is-variable .column { + padding-left: var(--columnGap); + padding-right: var(--columnGap); } + .columns.is-variable.is-0 { + --columnGap: 0rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-0-mobile { + --columnGap: 0rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-0-tablet { + --columnGap: 0rem; } } + @media screen and (min-width: 769px) and (max-width: 1087px) { + .columns.is-variable.is-0-tablet-only { + --columnGap: 0rem; } } + @media screen and (max-width: 1087px) { + .columns.is-variable.is-0-touch { + --columnGap: 0rem; } } + @media screen and (min-width: 1088px) { + .columns.is-variable.is-0-desktop { + --columnGap: 0rem; } } + @media screen and (min-width: 1088px) and (max-width: 1279px) { + .columns.is-variable.is-0-desktop-only { + --columnGap: 0rem; } } + @media screen and (min-width: 1280px) { + .columns.is-variable.is-0-widescreen { + --columnGap: 0rem; } } + @media screen and (min-width: 1280px) and (max-width: 1471px) { + .columns.is-variable.is-0-widescreen-only { + --columnGap: 0rem; } } + @media screen and (min-width: 1472px) { + .columns.is-variable.is-0-fullhd { + --columnGap: 0rem; } } + .columns.is-variable.is-1 { + --columnGap: 0.25rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-1-mobile { + --columnGap: 0.25rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-1-tablet { + --columnGap: 0.25rem; } } + @media screen and (min-width: 769px) and (max-width: 1087px) { + .columns.is-variable.is-1-tablet-only { + --columnGap: 0.25rem; } } + @media screen and (max-width: 1087px) { + .columns.is-variable.is-1-touch { + --columnGap: 0.25rem; } } + @media screen and (min-width: 1088px) { + .columns.is-variable.is-1-desktop { + --columnGap: 0.25rem; } } + @media screen and (min-width: 1088px) and (max-width: 1279px) { + .columns.is-variable.is-1-desktop-only { + --columnGap: 0.25rem; } } + @media screen and (min-width: 1280px) { + .columns.is-variable.is-1-widescreen { + --columnGap: 0.25rem; } } + @media screen and (min-width: 1280px) and (max-width: 1471px) { + .columns.is-variable.is-1-widescreen-only { + --columnGap: 0.25rem; } } + @media screen and (min-width: 1472px) { + .columns.is-variable.is-1-fullhd { + --columnGap: 0.25rem; } } + .columns.is-variable.is-2 { + --columnGap: 0.5rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-2-mobile { + --columnGap: 0.5rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-2-tablet { + --columnGap: 0.5rem; } } + @media screen and (min-width: 769px) and (max-width: 1087px) { + .columns.is-variable.is-2-tablet-only { + --columnGap: 0.5rem; } } + @media screen and (max-width: 1087px) { + .columns.is-variable.is-2-touch { + --columnGap: 0.5rem; } } + @media screen and (min-width: 1088px) { + .columns.is-variable.is-2-desktop { + --columnGap: 0.5rem; } } + @media screen and (min-width: 1088px) and (max-width: 1279px) { + .columns.is-variable.is-2-desktop-only { + --columnGap: 0.5rem; } } + @media screen and (min-width: 1280px) { + .columns.is-variable.is-2-widescreen { + --columnGap: 0.5rem; } } + @media screen and (min-width: 1280px) and (max-width: 1471px) { + .columns.is-variable.is-2-widescreen-only { + --columnGap: 0.5rem; } } + @media screen and (min-width: 1472px) { + .columns.is-variable.is-2-fullhd { + --columnGap: 0.5rem; } } + .columns.is-variable.is-3 { + --columnGap: 0.75rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-3-mobile { + --columnGap: 0.75rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-3-tablet { + --columnGap: 0.75rem; } } + @media screen and (min-width: 769px) and (max-width: 1087px) { + .columns.is-variable.is-3-tablet-only { + --columnGap: 0.75rem; } } + @media screen and (max-width: 1087px) { + .columns.is-variable.is-3-touch { + --columnGap: 0.75rem; } } + @media screen and (min-width: 1088px) { + .columns.is-variable.is-3-desktop { + --columnGap: 0.75rem; } } + @media screen and (min-width: 1088px) and (max-width: 1279px) { + .columns.is-variable.is-3-desktop-only { + --columnGap: 0.75rem; } } + @media screen and (min-width: 1280px) { + .columns.is-variable.is-3-widescreen { + --columnGap: 0.75rem; } } + @media screen and (min-width: 1280px) and (max-width: 1471px) { + .columns.is-variable.is-3-widescreen-only { + --columnGap: 0.75rem; } } + @media screen and (min-width: 1472px) { + .columns.is-variable.is-3-fullhd { + --columnGap: 0.75rem; } } + .columns.is-variable.is-4 { + --columnGap: 1rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-4-mobile { + --columnGap: 1rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-4-tablet { + --columnGap: 1rem; } } + @media screen and (min-width: 769px) and (max-width: 1087px) { + .columns.is-variable.is-4-tablet-only { + --columnGap: 1rem; } } + @media screen and (max-width: 1087px) { + .columns.is-variable.is-4-touch { + --columnGap: 1rem; } } + @media screen and (min-width: 1088px) { + .columns.is-variable.is-4-desktop { + --columnGap: 1rem; } } + @media screen and (min-width: 1088px) and (max-width: 1279px) { + .columns.is-variable.is-4-desktop-only { + --columnGap: 1rem; } } + @media screen and (min-width: 1280px) { + .columns.is-variable.is-4-widescreen { + --columnGap: 1rem; } } + @media screen and (min-width: 1280px) and (max-width: 1471px) { + .columns.is-variable.is-4-widescreen-only { + --columnGap: 1rem; } } + @media screen and (min-width: 1472px) { + .columns.is-variable.is-4-fullhd { + --columnGap: 1rem; } } + .columns.is-variable.is-5 { + --columnGap: 1.25rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-5-mobile { + --columnGap: 1.25rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-5-tablet { + --columnGap: 1.25rem; } } + @media screen and (min-width: 769px) and (max-width: 1087px) { + .columns.is-variable.is-5-tablet-only { + --columnGap: 1.25rem; } } + @media screen and (max-width: 1087px) { + .columns.is-variable.is-5-touch { + --columnGap: 1.25rem; } } + @media screen and (min-width: 1088px) { + .columns.is-variable.is-5-desktop { + --columnGap: 1.25rem; } } + @media screen and (min-width: 1088px) and (max-width: 1279px) { + .columns.is-variable.is-5-desktop-only { + --columnGap: 1.25rem; } } + @media screen and (min-width: 1280px) { + .columns.is-variable.is-5-widescreen { + --columnGap: 1.25rem; } } + @media screen and (min-width: 1280px) and (max-width: 1471px) { + .columns.is-variable.is-5-widescreen-only { + --columnGap: 1.25rem; } } + @media screen and (min-width: 1472px) { + .columns.is-variable.is-5-fullhd { + --columnGap: 1.25rem; } } + .columns.is-variable.is-6 { + --columnGap: 1.5rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-6-mobile { + --columnGap: 1.5rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-6-tablet { + --columnGap: 1.5rem; } } + @media screen and (min-width: 769px) and (max-width: 1087px) { + .columns.is-variable.is-6-tablet-only { + --columnGap: 1.5rem; } } + @media screen and (max-width: 1087px) { + .columns.is-variable.is-6-touch { + --columnGap: 1.5rem; } } + @media screen and (min-width: 1088px) { + .columns.is-variable.is-6-desktop { + --columnGap: 1.5rem; } } + @media screen and (min-width: 1088px) and (max-width: 1279px) { + .columns.is-variable.is-6-desktop-only { + --columnGap: 1.5rem; } } + @media screen and (min-width: 1280px) { + .columns.is-variable.is-6-widescreen { + --columnGap: 1.5rem; } } + @media screen and (min-width: 1280px) and (max-width: 1471px) { + .columns.is-variable.is-6-widescreen-only { + --columnGap: 1.5rem; } } + @media screen and (min-width: 1472px) { + .columns.is-variable.is-6-fullhd { + --columnGap: 1.5rem; } } + .columns.is-variable.is-7 { + --columnGap: 1.75rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-7-mobile { + --columnGap: 1.75rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-7-tablet { + --columnGap: 1.75rem; } } + @media screen and (min-width: 769px) and (max-width: 1087px) { + .columns.is-variable.is-7-tablet-only { + --columnGap: 1.75rem; } } + @media screen and (max-width: 1087px) { + .columns.is-variable.is-7-touch { + --columnGap: 1.75rem; } } + @media screen and (min-width: 1088px) { + .columns.is-variable.is-7-desktop { + --columnGap: 1.75rem; } } + @media screen and (min-width: 1088px) and (max-width: 1279px) { + .columns.is-variable.is-7-desktop-only { + --columnGap: 1.75rem; } } + @media screen and (min-width: 1280px) { + .columns.is-variable.is-7-widescreen { + --columnGap: 1.75rem; } } + @media screen and (min-width: 1280px) and (max-width: 1471px) { + .columns.is-variable.is-7-widescreen-only { + --columnGap: 1.75rem; } } + @media screen and (min-width: 1472px) { + .columns.is-variable.is-7-fullhd { + --columnGap: 1.75rem; } } + .columns.is-variable.is-8 { + --columnGap: 2rem; } + @media screen and (max-width: 768px) { + .columns.is-variable.is-8-mobile { + --columnGap: 2rem; } } + @media screen and (min-width: 769px), print { + .columns.is-variable.is-8-tablet { + --columnGap: 2rem; } } + @media screen and (min-width: 769px) and (max-width: 1087px) { + .columns.is-variable.is-8-tablet-only { + --columnGap: 2rem; } } + @media screen and (max-width: 1087px) { + .columns.is-variable.is-8-touch { + --columnGap: 2rem; } } + @media screen and (min-width: 1088px) { + .columns.is-variable.is-8-desktop { + --columnGap: 2rem; } } + @media screen and (min-width: 1088px) and (max-width: 1279px) { + .columns.is-variable.is-8-desktop-only { + --columnGap: 2rem; } } + @media screen and (min-width: 1280px) { + .columns.is-variable.is-8-widescreen { + --columnGap: 2rem; } } + @media screen and (min-width: 1280px) and (max-width: 1471px) { + .columns.is-variable.is-8-widescreen-only { + --columnGap: 2rem; } } + @media screen and (min-width: 1472px) { + .columns.is-variable.is-8-fullhd { + --columnGap: 2rem; } } + +.tile { + align-items: stretch; + display: block; + flex-basis: 0; + flex-grow: 1; + flex-shrink: 1; + min-height: min-content; } + .tile.is-ancestor { + margin-left: -0.75rem; + margin-right: -0.75rem; + margin-top: -0.75rem; } + .tile.is-ancestor:last-child { + margin-bottom: -0.75rem; } + .tile.is-ancestor:not(:last-child) { + margin-bottom: 0.75rem; } + .tile.is-child { + margin: 0 !important; } + .tile.is-parent { + padding: 0.75rem; } + .tile.is-vertical { + flex-direction: column; } + .tile.is-vertical > .tile.is-child:not(:last-child) { + margin-bottom: 1.5rem !important; } + @media screen and (min-width: 769px), print { + .tile:not(.is-child) { + display: flex; } + .tile.is-1 { + flex: none; + width: 8.33333%; } + .tile.is-2 { + flex: none; + width: 16.66667%; } + .tile.is-3 { + flex: none; + width: 25%; } + .tile.is-4 { + flex: none; + width: 33.33333%; } + .tile.is-5 { + flex: none; + width: 41.66667%; } + .tile.is-6 { + flex: none; + width: 50%; } + .tile.is-7 { + flex: none; + width: 58.33333%; } + .tile.is-8 { + flex: none; + width: 66.66667%; } + .tile.is-9 { + flex: none; + width: 75%; } + .tile.is-10 { + flex: none; + width: 83.33333%; } + .tile.is-11 { + flex: none; + width: 91.66667%; } + .tile.is-12 { + flex: none; + width: 100%; } } + +.hero { + align-items: stretch; + display: flex; + flex-direction: column; + justify-content: space-between; } + .hero .navbar { + background: none; } + .hero .tabs ul { + border-bottom: none; } + .hero.is-white { + background-color: white; + color: #0a0a0a; } + .hero.is-white a:not(.button):not(.dropdown-item):not(.tag), + .hero.is-white strong { + color: inherit; } + .hero.is-white .title { + color: #0a0a0a; } + .hero.is-white .subtitle { + color: rgba(10, 10, 10, 0.9); } + .hero.is-white .subtitle a:not(.button), + .hero.is-white .subtitle strong { + color: #0a0a0a; } + @media screen and (max-width: 1087px) { + .hero.is-white .navbar-menu { + background-color: white; } } + .hero.is-white .navbar-item, + .hero.is-white .navbar-link { + color: rgba(10, 10, 10, 0.7); } + .hero.is-white a.navbar-item:hover, .hero.is-white a.navbar-item.is-active, + .hero.is-white .navbar-link:hover, + .hero.is-white .navbar-link.is-active { + background-color: #f2f2f2; + color: #0a0a0a; } + .hero.is-white .tabs a { + color: #0a0a0a; + opacity: 0.9; } + .hero.is-white .tabs a:hover { + opacity: 1; } + .hero.is-white .tabs li.is-active a { + opacity: 1; } + .hero.is-white .tabs.is-boxed a, .hero.is-white .tabs.is-toggle a { + color: #0a0a0a; } + .hero.is-white .tabs.is-boxed a:hover, .hero.is-white .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-white .tabs.is-boxed li.is-active a, .hero.is-white .tabs.is-boxed li.is-active a:hover, .hero.is-white .tabs.is-toggle li.is-active a, .hero.is-white .tabs.is-toggle li.is-active a:hover { + background-color: #0a0a0a; + border-color: #0a0a0a; + color: white; } + .hero.is-white.is-bold { + background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%); } + @media screen and (max-width: 768px) { + .hero.is-white.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%); } } + .hero.is-black { + background-color: #0a0a0a; + color: white; } + .hero.is-black a:not(.button):not(.dropdown-item):not(.tag), + .hero.is-black strong { + color: inherit; } + .hero.is-black .title { + color: white; } + .hero.is-black .subtitle { + color: rgba(255, 255, 255, 0.9); } + .hero.is-black .subtitle a:not(.button), + .hero.is-black .subtitle strong { + color: white; } + @media screen and (max-width: 1087px) { + .hero.is-black .navbar-menu { + background-color: #0a0a0a; } } + .hero.is-black .navbar-item, + .hero.is-black .navbar-link { + color: rgba(255, 255, 255, 0.7); } + .hero.is-black a.navbar-item:hover, .hero.is-black a.navbar-item.is-active, + .hero.is-black .navbar-link:hover, + .hero.is-black .navbar-link.is-active { + background-color: black; + color: white; } + .hero.is-black .tabs a { + color: white; + opacity: 0.9; } + .hero.is-black .tabs a:hover { + opacity: 1; } + .hero.is-black .tabs li.is-active a { + opacity: 1; } + .hero.is-black .tabs.is-boxed a, .hero.is-black .tabs.is-toggle a { + color: white; } + .hero.is-black .tabs.is-boxed a:hover, .hero.is-black .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-black .tabs.is-boxed li.is-active a, .hero.is-black .tabs.is-boxed li.is-active a:hover, .hero.is-black .tabs.is-toggle li.is-active a, .hero.is-black .tabs.is-toggle li.is-active a:hover { + background-color: white; + border-color: white; + color: #0a0a0a; } + .hero.is-black.is-bold { + background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%); } + @media screen and (max-width: 768px) { + .hero.is-black.is-bold .navbar-menu { + background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%); } } + .hero.is-light { + background-color: whitesmoke; + color: #363636; } + .hero.is-light a:not(.button):not(.dropdown-item):not(.tag), + .hero.is-light strong { + color: inherit; } + .hero.is-light .title { + color: #363636; } + .hero.is-light .subtitle { + color: rgba(54, 54, 54, 0.9); } + .hero.is-light .subtitle a:not(.button), + .hero.is-light .subtitle strong { + color: #363636; } + @media screen and (max-width: 1087px) { + .hero.is-light .navbar-menu { + background-color: whitesmoke; } } + .hero.is-light .navbar-item, + .hero.is-light .navbar-link { + color: rgba(54, 54, 54, 0.7); } + .hero.is-light a.navbar-item:hover, .hero.is-light a.navbar-item.is-active, + .hero.is-light .navbar-link:hover, + .hero.is-light .navbar-link.is-active { + background-color: #e8e8e8; + color: #363636; } + .hero.is-light .tabs a { + color: #363636; + opacity: 0.9; } + .hero.is-light .tabs a:hover { + opacity: 1; } + .hero.is-light .tabs li.is-active a { + opacity: 1; } + .hero.is-light .tabs.is-boxed a, .hero.is-light .tabs.is-toggle a { + color: #363636; } + .hero.is-light .tabs.is-boxed a:hover, .hero.is-light .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-light .tabs.is-boxed li.is-active a, .hero.is-light .tabs.is-boxed li.is-active a:hover, .hero.is-light .tabs.is-toggle li.is-active a, .hero.is-light .tabs.is-toggle li.is-active a:hover { + background-color: #363636; + border-color: #363636; + color: whitesmoke; } + .hero.is-light.is-bold { + background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%); } + @media screen and (max-width: 768px) { + .hero.is-light.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%); } } + .hero.is-dark { + background-color: #363636; + color: whitesmoke; } + .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag), + .hero.is-dark strong { + color: inherit; } + .hero.is-dark .title { + color: whitesmoke; } + .hero.is-dark .subtitle { + color: rgba(245, 245, 245, 0.9); } + .hero.is-dark .subtitle a:not(.button), + .hero.is-dark .subtitle strong { + color: whitesmoke; } + @media screen and (max-width: 1087px) { + .hero.is-dark .navbar-menu { + background-color: #363636; } } + .hero.is-dark .navbar-item, + .hero.is-dark .navbar-link { + color: rgba(245, 245, 245, 0.7); } + .hero.is-dark a.navbar-item:hover, .hero.is-dark a.navbar-item.is-active, + .hero.is-dark .navbar-link:hover, + .hero.is-dark .navbar-link.is-active { + background-color: #292929; + color: whitesmoke; } + .hero.is-dark .tabs a { + color: whitesmoke; + opacity: 0.9; } + .hero.is-dark .tabs a:hover { + opacity: 1; } + .hero.is-dark .tabs li.is-active a { + opacity: 1; } + .hero.is-dark .tabs.is-boxed a, .hero.is-dark .tabs.is-toggle a { + color: whitesmoke; } + .hero.is-dark .tabs.is-boxed a:hover, .hero.is-dark .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-dark .tabs.is-boxed li.is-active a, .hero.is-dark .tabs.is-boxed li.is-active a:hover, .hero.is-dark .tabs.is-toggle li.is-active a, .hero.is-dark .tabs.is-toggle li.is-active a:hover { + background-color: whitesmoke; + border-color: whitesmoke; + color: #363636; } + .hero.is-dark.is-bold { + background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%); } + @media screen and (max-width: 768px) { + .hero.is-dark.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%); } } + .hero.is-primary { + background-color: #00d1b2; + color: #fff; } + .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag), + .hero.is-primary strong { + color: inherit; } + .hero.is-primary .title { + color: #fff; } + .hero.is-primary .subtitle { + color: rgba(255, 255, 255, 0.9); } + .hero.is-primary .subtitle a:not(.button), + .hero.is-primary .subtitle strong { + color: #fff; } + @media screen and (max-width: 1087px) { + .hero.is-primary .navbar-menu { + background-color: #00d1b2; } } + .hero.is-primary .navbar-item, + .hero.is-primary .navbar-link { + color: rgba(255, 255, 255, 0.7); } + .hero.is-primary a.navbar-item:hover, .hero.is-primary a.navbar-item.is-active, + .hero.is-primary .navbar-link:hover, + .hero.is-primary .navbar-link.is-active { + background-color: #00b89c; + color: #fff; } + .hero.is-primary .tabs a { + color: #fff; + opacity: 0.9; } + .hero.is-primary .tabs a:hover { + opacity: 1; } + .hero.is-primary .tabs li.is-active a { + opacity: 1; } + .hero.is-primary .tabs.is-boxed a, .hero.is-primary .tabs.is-toggle a { + color: #fff; } + .hero.is-primary .tabs.is-boxed a:hover, .hero.is-primary .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-primary .tabs.is-boxed li.is-active a, .hero.is-primary .tabs.is-boxed li.is-active a:hover, .hero.is-primary .tabs.is-toggle li.is-active a, .hero.is-primary .tabs.is-toggle li.is-active a:hover { + background-color: #fff; + border-color: #fff; + color: #00d1b2; } + .hero.is-primary.is-bold { + background-image: linear-gradient(141deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%); } + @media screen and (max-width: 768px) { + .hero.is-primary.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%); } } + .hero.is-link { + background-color: #3273dc; + color: #fff; } + .hero.is-link a:not(.button):not(.dropdown-item):not(.tag), + .hero.is-link strong { + color: inherit; } + .hero.is-link .title { + color: #fff; } + .hero.is-link .subtitle { + color: rgba(255, 255, 255, 0.9); } + .hero.is-link .subtitle a:not(.button), + .hero.is-link .subtitle strong { + color: #fff; } + @media screen and (max-width: 1087px) { + .hero.is-link .navbar-menu { + background-color: #3273dc; } } + .hero.is-link .navbar-item, + .hero.is-link .navbar-link { + color: rgba(255, 255, 255, 0.7); } + .hero.is-link a.navbar-item:hover, .hero.is-link a.navbar-item.is-active, + .hero.is-link .navbar-link:hover, + .hero.is-link .navbar-link.is-active { + background-color: #2366d1; + color: #fff; } + .hero.is-link .tabs a { + color: #fff; + opacity: 0.9; } + .hero.is-link .tabs a:hover { + opacity: 1; } + .hero.is-link .tabs li.is-active a { + opacity: 1; } + .hero.is-link .tabs.is-boxed a, .hero.is-link .tabs.is-toggle a { + color: #fff; } + .hero.is-link .tabs.is-boxed a:hover, .hero.is-link .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-link .tabs.is-boxed li.is-active a, .hero.is-link .tabs.is-boxed li.is-active a:hover, .hero.is-link .tabs.is-toggle li.is-active a, .hero.is-link .tabs.is-toggle li.is-active a:hover { + background-color: #fff; + border-color: #fff; + color: #3273dc; } + .hero.is-link.is-bold { + background-image: linear-gradient(141deg, #1577c6 0%, #3273dc 71%, #4366e5 100%); } + @media screen and (max-width: 768px) { + .hero.is-link.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #1577c6 0%, #3273dc 71%, #4366e5 100%); } } + .hero.is-info { + background-color: #209cee; + color: #fff; } + .hero.is-info a:not(.button):not(.dropdown-item):not(.tag), + .hero.is-info strong { + color: inherit; } + .hero.is-info .title { + color: #fff; } + .hero.is-info .subtitle { + color: rgba(255, 255, 255, 0.9); } + .hero.is-info .subtitle a:not(.button), + .hero.is-info .subtitle strong { + color: #fff; } + @media screen and (max-width: 1087px) { + .hero.is-info .navbar-menu { + background-color: #209cee; } } + .hero.is-info .navbar-item, + .hero.is-info .navbar-link { + color: rgba(255, 255, 255, 0.7); } + .hero.is-info a.navbar-item:hover, .hero.is-info a.navbar-item.is-active, + .hero.is-info .navbar-link:hover, + .hero.is-info .navbar-link.is-active { + background-color: #118fe4; + color: #fff; } + .hero.is-info .tabs a { + color: #fff; + opacity: 0.9; } + .hero.is-info .tabs a:hover { + opacity: 1; } + .hero.is-info .tabs li.is-active a { + opacity: 1; } + .hero.is-info .tabs.is-boxed a, .hero.is-info .tabs.is-toggle a { + color: #fff; } + .hero.is-info .tabs.is-boxed a:hover, .hero.is-info .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-info .tabs.is-boxed li.is-active a, .hero.is-info .tabs.is-boxed li.is-active a:hover, .hero.is-info .tabs.is-toggle li.is-active a, .hero.is-info .tabs.is-toggle li.is-active a:hover { + background-color: #fff; + border-color: #fff; + color: #209cee; } + .hero.is-info.is-bold { + background-image: linear-gradient(141deg, #04a6d7 0%, #209cee 71%, #3287f5 100%); } + @media screen and (max-width: 768px) { + .hero.is-info.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #04a6d7 0%, #209cee 71%, #3287f5 100%); } } + .hero.is-success { + background-color: #23d160; + color: #fff; } + .hero.is-success a:not(.button):not(.dropdown-item):not(.tag), + .hero.is-success strong { + color: inherit; } + .hero.is-success .title { + color: #fff; } + .hero.is-success .subtitle { + color: rgba(255, 255, 255, 0.9); } + .hero.is-success .subtitle a:not(.button), + .hero.is-success .subtitle strong { + color: #fff; } + @media screen and (max-width: 1087px) { + .hero.is-success .navbar-menu { + background-color: #23d160; } } + .hero.is-success .navbar-item, + .hero.is-success .navbar-link { + color: rgba(255, 255, 255, 0.7); } + .hero.is-success a.navbar-item:hover, .hero.is-success a.navbar-item.is-active, + .hero.is-success .navbar-link:hover, + .hero.is-success .navbar-link.is-active { + background-color: #20bc56; + color: #fff; } + .hero.is-success .tabs a { + color: #fff; + opacity: 0.9; } + .hero.is-success .tabs a:hover { + opacity: 1; } + .hero.is-success .tabs li.is-active a { + opacity: 1; } + .hero.is-success .tabs.is-boxed a, .hero.is-success .tabs.is-toggle a { + color: #fff; } + .hero.is-success .tabs.is-boxed a:hover, .hero.is-success .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-success .tabs.is-boxed li.is-active a, .hero.is-success .tabs.is-boxed li.is-active a:hover, .hero.is-success .tabs.is-toggle li.is-active a, .hero.is-success .tabs.is-toggle li.is-active a:hover { + background-color: #fff; + border-color: #fff; + color: #23d160; } + .hero.is-success.is-bold { + background-image: linear-gradient(141deg, #12af2f 0%, #23d160 71%, #2ce28a 100%); } + @media screen and (max-width: 768px) { + .hero.is-success.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #12af2f 0%, #23d160 71%, #2ce28a 100%); } } + .hero.is-warning { + background-color: #ffdd57; + color: rgba(0, 0, 0, 0.7); } + .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag), + .hero.is-warning strong { + color: inherit; } + .hero.is-warning .title { + color: rgba(0, 0, 0, 0.7); } + .hero.is-warning .subtitle { + color: rgba(0, 0, 0, 0.9); } + .hero.is-warning .subtitle a:not(.button), + .hero.is-warning .subtitle strong { + color: rgba(0, 0, 0, 0.7); } + @media screen and (max-width: 1087px) { + .hero.is-warning .navbar-menu { + background-color: #ffdd57; } } + .hero.is-warning .navbar-item, + .hero.is-warning .navbar-link { + color: rgba(0, 0, 0, 0.7); } + .hero.is-warning a.navbar-item:hover, .hero.is-warning a.navbar-item.is-active, + .hero.is-warning .navbar-link:hover, + .hero.is-warning .navbar-link.is-active { + background-color: #ffd83d; + color: rgba(0, 0, 0, 0.7); } + .hero.is-warning .tabs a { + color: rgba(0, 0, 0, 0.7); + opacity: 0.9; } + .hero.is-warning .tabs a:hover { + opacity: 1; } + .hero.is-warning .tabs li.is-active a { + opacity: 1; } + .hero.is-warning .tabs.is-boxed a, .hero.is-warning .tabs.is-toggle a { + color: rgba(0, 0, 0, 0.7); } + .hero.is-warning .tabs.is-boxed a:hover, .hero.is-warning .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-warning .tabs.is-boxed li.is-active a, .hero.is-warning .tabs.is-boxed li.is-active a:hover, .hero.is-warning .tabs.is-toggle li.is-active a, .hero.is-warning .tabs.is-toggle li.is-active a:hover { + background-color: rgba(0, 0, 0, 0.7); + border-color: rgba(0, 0, 0, 0.7); + color: #ffdd57; } + .hero.is-warning.is-bold { + background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%); } + @media screen and (max-width: 768px) { + .hero.is-warning.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%); } } + .hero.is-danger { + background-color: #ff3860; + color: #fff; } + .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag), + .hero.is-danger strong { + color: inherit; } + .hero.is-danger .title { + color: #fff; } + .hero.is-danger .subtitle { + color: rgba(255, 255, 255, 0.9); } + .hero.is-danger .subtitle a:not(.button), + .hero.is-danger .subtitle strong { + color: #fff; } + @media screen and (max-width: 1087px) { + .hero.is-danger .navbar-menu { + background-color: #ff3860; } } + .hero.is-danger .navbar-item, + .hero.is-danger .navbar-link { + color: rgba(255, 255, 255, 0.7); } + .hero.is-danger a.navbar-item:hover, .hero.is-danger a.navbar-item.is-active, + .hero.is-danger .navbar-link:hover, + .hero.is-danger .navbar-link.is-active { + background-color: #ff1f4b; + color: #fff; } + .hero.is-danger .tabs a { + color: #fff; + opacity: 0.9; } + .hero.is-danger .tabs a:hover { + opacity: 1; } + .hero.is-danger .tabs li.is-active a { + opacity: 1; } + .hero.is-danger .tabs.is-boxed a, .hero.is-danger .tabs.is-toggle a { + color: #fff; } + .hero.is-danger .tabs.is-boxed a:hover, .hero.is-danger .tabs.is-toggle a:hover { + background-color: rgba(10, 10, 10, 0.1); } + .hero.is-danger .tabs.is-boxed li.is-active a, .hero.is-danger .tabs.is-boxed li.is-active a:hover, .hero.is-danger .tabs.is-toggle li.is-active a, .hero.is-danger .tabs.is-toggle li.is-active a:hover { + background-color: #fff; + border-color: #fff; + color: #ff3860; } + .hero.is-danger.is-bold { + background-image: linear-gradient(141deg, #ff0561 0%, #ff3860 71%, #ff5257 100%); } + @media screen and (max-width: 768px) { + .hero.is-danger.is-bold .navbar-menu { + background-image: linear-gradient(141deg, #ff0561 0%, #ff3860 71%, #ff5257 100%); } } + .hero.is-small .hero-body { + padding-bottom: 1.5rem; + padding-top: 1.5rem; } + @media screen and (min-width: 769px), print { + .hero.is-medium .hero-body { + padding-bottom: 9rem; + padding-top: 9rem; } } + @media screen and (min-width: 769px), print { + .hero.is-large .hero-body { + padding-bottom: 18rem; + padding-top: 18rem; } } + .hero.is-halfheight .hero-body, .hero.is-fullheight .hero-body, .hero.is-fullheight-with-navbar .hero-body { + align-items: center; + display: flex; } + .hero.is-halfheight .hero-body > .container, .hero.is-fullheight .hero-body > .container, .hero.is-fullheight-with-navbar .hero-body > .container { + flex-grow: 1; + flex-shrink: 1; } + .hero.is-halfheight { + min-height: 50vh; } + .hero.is-fullheight { + min-height: 100vh; } + +.hero-video { + overflow: hidden; } + .hero-video video { + left: 50%; + min-height: 100%; + min-width: 100%; + position: absolute; + top: 50%; + transform: translate3d(-50%, -50%, 0); } + .hero-video.is-transparent { + opacity: 0.3; } + @media screen and (max-width: 768px) { + .hero-video { + display: none; } } + +.hero-buttons { + margin-top: 1.5rem; } + @media screen and (max-width: 768px) { + .hero-buttons .button { + display: flex; } + .hero-buttons .button:not(:last-child) { + margin-bottom: 0.75rem; } } + @media screen and (min-width: 769px), print { + .hero-buttons { + display: flex; + justify-content: center; } + .hero-buttons .button:not(:last-child) { + margin-right: 1.5rem; } } + +.hero-head, +.hero-foot { + flex-grow: 0; + flex-shrink: 0; } + +.hero-body { + flex-grow: 1; + flex-shrink: 0; + padding: 3rem 1.5rem; } + +.section { + padding: 3rem 1.5rem; } + @media screen and (min-width: 1088px) { + .section.is-medium { + padding: 9rem 1.5rem; } + .section.is-large { + padding: 18rem 1.5rem; } } + +.footer { + background-color: #fafafa; + padding: 3rem 1.5rem 6rem; } + +/* Looking Glass Imports */ +.hero.lg-hero-bg { + background-color: #fbfffe; + color: rgba(0, 0, 0, 0.7); } + +.hero-foot.lg-hero-bg { + background-color: #fbfffe; + color: rgba(0, 0, 0, 0.7); } + +.hero.lg-hero-bg .title, .subtitle { + color: rgba(0, 0, 0, 0.7); } + +.hero.is-danger .title, .subtitle { + color: #fff; } + +.hero.lg-hero-bg .navbar-item { + color: rgba(0, 0, 0, 0.7); } + +.button.lg-btn-submit { + background-color: #40798c; + border-color: transparent; + color: #fff; } + +.tag.lg-tag-loctitle { + background-color: #330036; + color: #fff; } + +.tag.lg-tag-cmd { + background-color: #ff5e5b; + color: #fff; + font-family: "Fira Mono", monospace; } + +.tag.lg-tag-cmdtitle { + background-color: #330036; + color: #fff; + font-family: "Fira Mono", monospace; } + +.tag.lg-tag-loc { + background-color: #40798c; + color: #fff; } + +.progress.lg-progressbar:indeterminate { + background-image: linear-gradient(to right, #40798c 30%, #dbdbdb 30%); } + +.message-body pre { + background-color: transparent !important; } + +.query-output { + font-family: "Fira Mono", monospace; + font-size: 0.875em; + overflow-x: auto; + white-space: pre; + word-wrap: normal; } + +.dropdown-content.lg-help { + width: 24rem; } + +.icon.lg-icon-help { + color: #40798c; } diff --git a/hyperglass/static/css/icofont/demo.html b/hyperglass/static/css/icofont/demo.html new file mode 100644 index 0000000..2dba2c5 --- /dev/null +++ b/hyperglass/static/css/icofont/demo.html @@ -0,0 +1,18942 @@ +<!DOCTYPE html> + <html> + <head> + <meta charset="utf-8"> + <title>Examples | IcoFont + + + + +
+
+

IcoFont Icons

+
+
+
+ +
+ + + \ No newline at end of file diff --git a/hyperglass/static/css/icofont/fonts/icofont.eot b/hyperglass/static/css/icofont/fonts/icofont.eot new file mode 100644 index 0000000..56e15db Binary files /dev/null and b/hyperglass/static/css/icofont/fonts/icofont.eot differ diff --git a/hyperglass/static/css/icofont/fonts/icofont.svg b/hyperglass/static/css/icofont/fonts/icofont.svg new file mode 100644 index 0000000..8535ec6 --- /dev/null +++ b/hyperglass/static/css/icofont/fonts/icofont.svg @@ -0,0 +1,2105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/hyperglass/static/css/icofont/fonts/icofont.ttf b/hyperglass/static/css/icofont/fonts/icofont.ttf new file mode 100644 index 0000000..ba6d235 Binary files /dev/null and b/hyperglass/static/css/icofont/fonts/icofont.ttf differ diff --git a/hyperglass/static/css/icofont/fonts/icofont.woff b/hyperglass/static/css/icofont/fonts/icofont.woff new file mode 100644 index 0000000..48002ce Binary files /dev/null and b/hyperglass/static/css/icofont/fonts/icofont.woff differ diff --git a/hyperglass/static/css/icofont/fonts/icofont.woff2 b/hyperglass/static/css/icofont/fonts/icofont.woff2 new file mode 100644 index 0000000..75f03d7 Binary files /dev/null and b/hyperglass/static/css/icofont/fonts/icofont.woff2 differ diff --git a/hyperglass/static/css/icofont/icofont.css b/hyperglass/static/css/icofont/icofont.css new file mode 100644 index 0000000..f6d1006 --- /dev/null +++ b/hyperglass/static/css/icofont/icofont.css @@ -0,0 +1,10757 @@ +/*! +* @package IcoFont +* @version 1.0.1 +* @author IcoFont https://icofont.com +* @copyright Copyright (c) 2015 - 2018 IcoFont +* @license - https://icofont.com/license/ +*/ + +@font-face +{ + + font-family: "IcoFont"; +font-weight: normal; +font-style: "Regular"; +src: url("./fonts/icofont.woff2") format("woff2"), +url("./fonts/icofont.woff") format("woff"); +} + +[class^="icofont-"], [class*=" icofont-"] +{ + font-family: 'IcoFont' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + white-space: nowrap; + word-wrap: normal; + direction: ltr; + line-height: 1; +/* Better Font Rendering =========== */ + -webkit-font-feature-settings: "liga"; + -webkit-font-smoothing: antialiased; +} + +.icofont-angry-monster:before +{ + content: "\e800"; +} + +.icofont-bathtub:before +{ + content: "\e801"; +} + +.icofont-bird-wings:before +{ + content: "\e802"; +} + +.icofont-bow:before +{ + content: "\e803"; +} + +.icofont-castle:before +{ + content: "\e804"; +} + +.icofont-circuit:before +{ + content: "\e805"; +} + +.icofont-crown-king:before +{ + content: "\e806"; +} + +.icofont-crown-queen:before +{ + content: "\e807"; +} + +.icofont-dart:before +{ + content: "\e808"; +} + +.icofont-disability-race:before +{ + content: "\e809"; +} + +.icofont-diving-goggle:before +{ + content: "\e80a"; +} + +.icofont-eye-open:before +{ + content: "\e80b"; +} + +.icofont-flora-flower:before +{ + content: "\e80c"; +} + +.icofont-flora:before +{ + content: "\e80d"; +} + +.icofont-gift-box:before +{ + content: "\e80e"; +} + +.icofont-halloween-pumpkin:before +{ + content: "\e80f"; +} + +.icofont-hand-power:before +{ + content: "\e810"; +} + +.icofont-hand-thunder:before +{ + content: "\e811"; +} + +.icofont-king-monster:before +{ + content: "\e812"; +} + +.icofont-love:before +{ + content: "\e813"; +} + +.icofont-magician-hat:before +{ + content: "\e814"; +} + +.icofont-native-american:before +{ + content: "\e815"; +} + +.icofont-owl-look:before +{ + content: "\e816"; +} + +.icofont-phoenix:before +{ + content: "\e817"; +} + +.icofont-robot-face:before +{ + content: "\e818"; +} + +.icofont-sand-clock:before +{ + content: "\e819"; +} + +.icofont-shield-alt:before +{ + content: "\e81a"; +} + +.icofont-ship-wheel:before +{ + content: "\e81b"; +} + +.icofont-skull-danger:before +{ + content: "\e81c"; +} + +.icofont-skull-face:before +{ + content: "\e81d"; +} + +.icofont-snowmobile:before +{ + content: "\e81e"; +} + +.icofont-space-shuttle:before +{ + content: "\e81f"; +} + +.icofont-star-shape:before +{ + content: "\e820"; +} + +.icofont-swirl:before +{ + content: "\e821"; +} + +.icofont-tattoo-wing:before +{ + content: "\e822"; +} + +.icofont-throne:before +{ + content: "\e823"; +} + +.icofont-tree-alt:before +{ + content: "\e824"; +} + +.icofont-triangle:before +{ + content: "\e825"; +} + +.icofont-unity-hand:before +{ + content: "\e826"; +} + +.icofont-weed:before +{ + content: "\e827"; +} + +.icofont-woman-bird:before +{ + content: "\e828"; +} + +.icofont-bat:before +{ + content: "\e829"; +} + +.icofont-bear-face:before +{ + content: "\e82a"; +} + +.icofont-bear-tracks:before +{ + content: "\e82b"; +} + +.icofont-bear:before +{ + content: "\e82c"; +} + +.icofont-bird-alt:before +{ + content: "\e82d"; +} + +.icofont-bird-flying:before +{ + content: "\e82e"; +} + +.icofont-bird:before +{ + content: "\e82f"; +} + +.icofont-birds:before +{ + content: "\e830"; +} + +.icofont-bone:before +{ + content: "\e831"; +} + +.icofont-bull:before +{ + content: "\e832"; +} + +.icofont-butterfly-alt:before +{ + content: "\e833"; +} + +.icofont-butterfly:before +{ + content: "\e834"; +} + +.icofont-camel-alt:before +{ + content: "\e835"; +} + +.icofont-camel-head:before +{ + content: "\e836"; +} + +.icofont-camel:before +{ + content: "\e837"; +} + +.icofont-cat-alt-1:before +{ + content: "\e838"; +} + +.icofont-cat-alt-2:before +{ + content: "\e839"; +} + +.icofont-cat-alt-3:before +{ + content: "\e83a"; +} + +.icofont-cat-dog:before +{ + content: "\e83b"; +} + +.icofont-cat-face:before +{ + content: "\e83c"; +} + +.icofont-cat:before +{ + content: "\e83d"; +} + +.icofont-cow-head:before +{ + content: "\e83e"; +} + +.icofont-cow:before +{ + content: "\e83f"; +} + +.icofont-crab:before +{ + content: "\e840"; +} + +.icofont-crocodile:before +{ + content: "\e841"; +} + +.icofont-deer-head:before +{ + content: "\e842"; +} + +.icofont-dog-alt:before +{ + content: "\e843"; +} + +.icofont-dog-barking:before +{ + content: "\e844"; +} + +.icofont-dog:before +{ + content: "\e845"; +} + +.icofont-dolphin:before +{ + content: "\e846"; +} + +.icofont-duck-tracks:before +{ + content: "\e847"; +} + +.icofont-eagle-head:before +{ + content: "\e848"; +} + +.icofont-eaten-fish:before +{ + content: "\e849"; +} + +.icofont-elephant-alt:before +{ + content: "\e84a"; +} + +.icofont-elephant-head-alt:before +{ + content: "\e84b"; +} + +.icofont-elephant-head:before +{ + content: "\e84c"; +} + +.icofont-elephant:before +{ + content: "\e84d"; +} + +.icofont-elk:before +{ + content: "\e84e"; +} + +.icofont-fish-1:before +{ + content: "\e84f"; +} + +.icofont-fish-2:before +{ + content: "\e850"; +} + +.icofont-fish-3:before +{ + content: "\e851"; +} + +.icofont-fish-4:before +{ + content: "\e852"; +} + +.icofont-fish-5:before +{ + content: "\e853"; +} + +.icofont-fish:before +{ + content: "\e854"; +} + +.icofont-fox-alt:before +{ + content: "\e855"; +} + +.icofont-fox:before +{ + content: "\e856"; +} + +.icofont-frog-tracks:before +{ + content: "\e857"; +} + +.icofont-frog:before +{ + content: "\e858"; +} + +.icofont-froggy:before +{ + content: "\e859"; +} + +.icofont-giraffe-head-1:before +{ + content: "\e85a"; +} + +.icofont-giraffe-head-2:before +{ + content: "\e85b"; +} + +.icofont-giraffe-head:before +{ + content: "\e85c"; +} + +.icofont-giraffe:before +{ + content: "\e85d"; +} + +.icofont-goat-head:before +{ + content: "\e85e"; +} + +.icofont-gorilla:before +{ + content: "\e85f"; +} + +.icofont-hen-tracks:before +{ + content: "\e860"; +} + +.icofont-horse-head-1:before +{ + content: "\e861"; +} + +.icofont-horse-head-2:before +{ + content: "\e862"; +} + +.icofont-horse-head:before +{ + content: "\e863"; +} + +.icofont-horse-tracks:before +{ + content: "\e864"; +} + +.icofont-jellyfish:before +{ + content: "\e865"; +} + +.icofont-kangaroo:before +{ + content: "\e866"; +} + +.icofont-lemur:before +{ + content: "\e867"; +} + +.icofont-lion-head-1:before +{ + content: "\e868"; +} + +.icofont-lion-head-2:before +{ + content: "\e869"; +} + +.icofont-lion-head:before +{ + content: "\e86a"; +} + +.icofont-lion:before +{ + content: "\e86b"; +} + +.icofont-monkey-2:before +{ + content: "\e86c"; +} + +.icofont-monkey-3:before +{ + content: "\e86d"; +} + +.icofont-monkey-face:before +{ + content: "\e86e"; +} + +.icofont-monkey:before +{ + content: "\e86f"; +} + +.icofont-octopus-alt:before +{ + content: "\e870"; +} + +.icofont-octopus:before +{ + content: "\e871"; +} + +.icofont-owl:before +{ + content: "\e872"; +} + +.icofont-panda-face:before +{ + content: "\e873"; +} + +.icofont-panda:before +{ + content: "\e874"; +} + +.icofont-panther:before +{ + content: "\e875"; +} + +.icofont-parrot-lip:before +{ + content: "\e876"; +} + +.icofont-parrot:before +{ + content: "\e877"; +} + +.icofont-paw:before +{ + content: "\e878"; +} + +.icofont-pelican:before +{ + content: "\e879"; +} + +.icofont-penguin:before +{ + content: "\e87a"; +} + +.icofont-pig-face:before +{ + content: "\e87b"; +} + +.icofont-pig:before +{ + content: "\e87c"; +} + +.icofont-pigeon-1:before +{ + content: "\e87d"; +} + +.icofont-pigeon-2:before +{ + content: "\e87e"; +} + +.icofont-pigeon:before +{ + content: "\e87f"; +} + +.icofont-rabbit:before +{ + content: "\e880"; +} + +.icofont-rat:before +{ + content: "\e881"; +} + +.icofont-rhino-head:before +{ + content: "\e882"; +} + +.icofont-rhino:before +{ + content: "\e883"; +} + +.icofont-rooster:before +{ + content: "\e884"; +} + +.icofont-seahorse:before +{ + content: "\e885"; +} + +.icofont-seal:before +{ + content: "\e886"; +} + +.icofont-shrimp-alt:before +{ + content: "\e887"; +} + +.icofont-shrimp:before +{ + content: "\e888"; +} + +.icofont-snail-1:before +{ + content: "\e889"; +} + +.icofont-snail-2:before +{ + content: "\e88a"; +} + +.icofont-snail-3:before +{ + content: "\e88b"; +} + +.icofont-snail:before +{ + content: "\e88c"; +} + +.icofont-snake:before +{ + content: "\e88d"; +} + +.icofont-squid:before +{ + content: "\e88e"; +} + +.icofont-squirrel:before +{ + content: "\e88f"; +} + +.icofont-tiger-face:before +{ + content: "\e890"; +} + +.icofont-tiger:before +{ + content: "\e891"; +} + +.icofont-turtle:before +{ + content: "\e892"; +} + +.icofont-whale:before +{ + content: "\e893"; +} + +.icofont-woodpecker:before +{ + content: "\e894"; +} + +.icofont-zebra:before +{ + content: "\e895"; +} + +.icofont-brand-acer:before +{ + content: "\e896"; +} + +.icofont-brand-adidas:before +{ + content: "\e897"; +} + +.icofont-brand-adobe:before +{ + content: "\e898"; +} + +.icofont-brand-air-new-zealand:before +{ + content: "\e899"; +} + +.icofont-brand-airbnb:before +{ + content: "\e89a"; +} + +.icofont-brand-aircell:before +{ + content: "\e89b"; +} + +.icofont-brand-airtel:before +{ + content: "\e89c"; +} + +.icofont-brand-alcatel:before +{ + content: "\e89d"; +} + +.icofont-brand-alibaba:before +{ + content: "\e89e"; +} + +.icofont-brand-aliexpress:before +{ + content: "\e89f"; +} + +.icofont-brand-alipay:before +{ + content: "\e8a0"; +} + +.icofont-brand-amazon:before +{ + content: "\e8a1"; +} + +.icofont-brand-amd:before +{ + content: "\e8a2"; +} + +.icofont-brand-american-airlines:before +{ + content: "\e8a3"; +} + +.icofont-brand-android-robot:before +{ + content: "\e8a4"; +} + +.icofont-brand-android:before +{ + content: "\e8a5"; +} + +.icofont-brand-aol:before +{ + content: "\e8a6"; +} + +.icofont-brand-apple:before +{ + content: "\e8a7"; +} + +.icofont-brand-appstore:before +{ + content: "\e8a8"; +} + +.icofont-brand-asus:before +{ + content: "\e8a9"; +} + +.icofont-brand-ati:before +{ + content: "\e8aa"; +} + +.icofont-brand-att:before +{ + content: "\e8ab"; +} + +.icofont-brand-audi:before +{ + content: "\e8ac"; +} + +.icofont-brand-axiata:before +{ + content: "\e8ad"; +} + +.icofont-brand-bada:before +{ + content: "\e8ae"; +} + +.icofont-brand-bbc:before +{ + content: "\e8af"; +} + +.icofont-brand-bing:before +{ + content: "\e8b0"; +} + +.icofont-brand-blackberry:before +{ + content: "\e8b1"; +} + +.icofont-brand-bmw:before +{ + content: "\e8b2"; +} + +.icofont-brand-box:before +{ + content: "\e8b3"; +} + +.icofont-brand-burger-king:before +{ + content: "\e8b4"; +} + +.icofont-brand-business-insider:before +{ + content: "\e8b5"; +} + +.icofont-brand-buzzfeed:before +{ + content: "\e8b6"; +} + +.icofont-brand-cannon:before +{ + content: "\e8b7"; +} + +.icofont-brand-casio:before +{ + content: "\e8b8"; +} + +.icofont-brand-china-mobile:before +{ + content: "\e8b9"; +} + +.icofont-brand-china-telecom:before +{ + content: "\e8ba"; +} + +.icofont-brand-china-unicom:before +{ + content: "\e8bb"; +} + +.icofont-brand-cisco:before +{ + content: "\e8bc"; +} + +.icofont-brand-citibank:before +{ + content: "\e8bd"; +} + +.icofont-brand-cnet:before +{ + content: "\e8be"; +} + +.icofont-brand-cnn:before +{ + content: "\e8bf"; +} + +.icofont-brand-cocal-cola:before +{ + content: "\e8c0"; +} + +.icofont-brand-compaq:before +{ + content: "\e8c1"; +} + +.icofont-brand-debian:before +{ + content: "\e8c2"; +} + +.icofont-brand-delicious:before +{ + content: "\e8c3"; +} + +.icofont-brand-dell:before +{ + content: "\e8c4"; +} + +.icofont-brand-designbump:before +{ + content: "\e8c5"; +} + +.icofont-brand-designfloat:before +{ + content: "\e8c6"; +} + +.icofont-brand-disney:before +{ + content: "\e8c7"; +} + +.icofont-brand-dodge:before +{ + content: "\e8c8"; +} + +.icofont-brand-dove:before +{ + content: "\e8c9"; +} + +.icofont-brand-drupal:before +{ + content: "\e8ca"; +} + +.icofont-brand-ebay:before +{ + content: "\e8cb"; +} + +.icofont-brand-eleven:before +{ + content: "\e8cc"; +} + +.icofont-brand-emirates:before +{ + content: "\e8cd"; +} + +.icofont-brand-espn:before +{ + content: "\e8ce"; +} + +.icofont-brand-etihad-airways:before +{ + content: "\e8cf"; +} + +.icofont-brand-etisalat:before +{ + content: "\e8d0"; +} + +.icofont-brand-etsy:before +{ + content: "\e8d1"; +} + +.icofont-brand-fastrack:before +{ + content: "\e8d2"; +} + +.icofont-brand-fedex:before +{ + content: "\e8d3"; +} + +.icofont-brand-ferrari:before +{ + content: "\e8d4"; +} + +.icofont-brand-fitbit:before +{ + content: "\e8d5"; +} + +.icofont-brand-flikr:before +{ + content: "\e8d6"; +} + +.icofont-brand-forbes:before +{ + content: "\e8d7"; +} + +.icofont-brand-foursquare:before +{ + content: "\e8d8"; +} + +.icofont-brand-foxconn:before +{ + content: "\e8d9"; +} + +.icofont-brand-fujitsu:before +{ + content: "\e8da"; +} + +.icofont-brand-general-electric:before +{ + content: "\e8db"; +} + +.icofont-brand-gillette:before +{ + content: "\e8dc"; +} + +.icofont-brand-gizmodo:before +{ + content: "\e8dd"; +} + +.icofont-brand-gnome:before +{ + content: "\e8de"; +} + +.icofont-brand-google:before +{ + content: "\e8df"; +} + +.icofont-brand-gopro:before +{ + content: "\e8e0"; +} + +.icofont-brand-gucci:before +{ + content: "\e8e1"; +} + +.icofont-brand-hallmark:before +{ + content: "\e8e2"; +} + +.icofont-brand-hi5:before +{ + content: "\e8e3"; +} + +.icofont-brand-honda:before +{ + content: "\e8e4"; +} + +.icofont-brand-hp:before +{ + content: "\e8e5"; +} + +.icofont-brand-hsbc:before +{ + content: "\e8e6"; +} + +.icofont-brand-htc:before +{ + content: "\e8e7"; +} + +.icofont-brand-huawei:before +{ + content: "\e8e8"; +} + +.icofont-brand-hulu:before +{ + content: "\e8e9"; +} + +.icofont-brand-hyundai:before +{ + content: "\e8ea"; +} + +.icofont-brand-ibm:before +{ + content: "\e8eb"; +} + +.icofont-brand-icofont:before +{ + content: "\e8ec"; +} + +.icofont-brand-icq:before +{ + content: "\e8ed"; +} + +.icofont-brand-ikea:before +{ + content: "\e8ee"; +} + +.icofont-brand-imdb:before +{ + content: "\e8ef"; +} + +.icofont-brand-indiegogo:before +{ + content: "\e8f0"; +} + +.icofont-brand-intel:before +{ + content: "\e8f1"; +} + +.icofont-brand-ipair:before +{ + content: "\e8f2"; +} + +.icofont-brand-jaguar:before +{ + content: "\e8f3"; +} + +.icofont-brand-java:before +{ + content: "\e8f4"; +} + +.icofont-brand-joomla:before +{ + content: "\e8f5"; +} + +.icofont-brand-kickstarter:before +{ + content: "\e8f6"; +} + +.icofont-brand-kik:before +{ + content: "\e8f7"; +} + +.icofont-brand-lastfm:before +{ + content: "\e8f8"; +} + +.icofont-brand-lego:before +{ + content: "\e8f9"; +} + +.icofont-brand-lenovo:before +{ + content: "\e8fa"; +} + +.icofont-brand-levis:before +{ + content: "\e8fb"; +} + +.icofont-brand-lexus:before +{ + content: "\e8fc"; +} + +.icofont-brand-lg:before +{ + content: "\e8fd"; +} + +.icofont-brand-life-hacker:before +{ + content: "\e8fe"; +} + +.icofont-brand-linux-mint:before +{ + content: "\e8ff"; +} + +.icofont-brand-linux:before +{ + content: "\e900"; +} + +.icofont-brand-lionix:before +{ + content: "\e901"; +} + +.icofont-brand-loreal:before +{ + content: "\e902"; +} + +.icofont-brand-louis-vuitton:before +{ + content: "\e903"; +} + +.icofont-brand-mac-os:before +{ + content: "\e904"; +} + +.icofont-brand-marvel-app:before +{ + content: "\e905"; +} + +.icofont-brand-mashable:before +{ + content: "\e906"; +} + +.icofont-brand-mazda:before +{ + content: "\e907"; +} + +.icofont-brand-mcdonals:before +{ + content: "\e908"; +} + +.icofont-brand-mercedes:before +{ + content: "\e909"; +} + +.icofont-brand-micromax:before +{ + content: "\e90a"; +} + +.icofont-brand-microsoft:before +{ + content: "\e90b"; +} + +.icofont-brand-mobileme:before +{ + content: "\e90c"; +} + +.icofont-brand-mobily:before +{ + content: "\e90d"; +} + +.icofont-brand-motorola:before +{ + content: "\e90e"; +} + +.icofont-brand-msi:before +{ + content: "\e90f"; +} + +.icofont-brand-mts:before +{ + content: "\e910"; +} + +.icofont-brand-myspace:before +{ + content: "\e911"; +} + +.icofont-brand-mytv:before +{ + content: "\e912"; +} + +.icofont-brand-nasa:before +{ + content: "\e913"; +} + +.icofont-brand-natgeo:before +{ + content: "\e914"; +} + +.icofont-brand-nbc:before +{ + content: "\e915"; +} + +.icofont-brand-nescafe:before +{ + content: "\e916"; +} + +.icofont-brand-nestle:before +{ + content: "\e917"; +} + +.icofont-brand-netflix:before +{ + content: "\e918"; +} + +.icofont-brand-nexus:before +{ + content: "\e919"; +} + +.icofont-brand-nike:before +{ + content: "\e91a"; +} + +.icofont-brand-nokia:before +{ + content: "\e91b"; +} + +.icofont-brand-nvidia:before +{ + content: "\e91c"; +} + +.icofont-brand-omega:before +{ + content: "\e91d"; +} + +.icofont-brand-opensuse:before +{ + content: "\e91e"; +} + +.icofont-brand-oracle:before +{ + content: "\e91f"; +} + +.icofont-brand-panasonic:before +{ + content: "\e920"; +} + +.icofont-brand-paypal:before +{ + content: "\e921"; +} + +.icofont-brand-pepsi:before +{ + content: "\e922"; +} + +.icofont-brand-philips:before +{ + content: "\e923"; +} + +.icofont-brand-pizza-hut:before +{ + content: "\e924"; +} + +.icofont-brand-playstation:before +{ + content: "\e925"; +} + +.icofont-brand-puma:before +{ + content: "\e926"; +} + +.icofont-brand-qatar-air:before +{ + content: "\e927"; +} + +.icofont-brand-qvc:before +{ + content: "\e928"; +} + +.icofont-brand-readernaut:before +{ + content: "\e929"; +} + +.icofont-brand-redbull:before +{ + content: "\e92a"; +} + +.icofont-brand-reebok:before +{ + content: "\e92b"; +} + +.icofont-brand-reuters:before +{ + content: "\e92c"; +} + +.icofont-brand-samsung:before +{ + content: "\e92d"; +} + +.icofont-brand-sap:before +{ + content: "\e92e"; +} + +.icofont-brand-saudia-airlines:before +{ + content: "\e92f"; +} + +.icofont-brand-scribd:before +{ + content: "\e930"; +} + +.icofont-brand-shell:before +{ + content: "\e931"; +} + +.icofont-brand-siemens:before +{ + content: "\e932"; +} + +.icofont-brand-sk-telecom:before +{ + content: "\e933"; +} + +.icofont-brand-slideshare:before +{ + content: "\e934"; +} + +.icofont-brand-smashing-magazine:before +{ + content: "\e935"; +} + +.icofont-brand-snapchat:before +{ + content: "\e936"; +} + +.icofont-brand-sony-ericsson:before +{ + content: "\e937"; +} + +.icofont-brand-sony:before +{ + content: "\e938"; +} + +.icofont-brand-soundcloud:before +{ + content: "\e939"; +} + +.icofont-brand-sprint:before +{ + content: "\e93a"; +} + +.icofont-brand-squidoo:before +{ + content: "\e93b"; +} + +.icofont-brand-starbucks:before +{ + content: "\e93c"; +} + +.icofont-brand-stc:before +{ + content: "\e93d"; +} + +.icofont-brand-steam:before +{ + content: "\e93e"; +} + +.icofont-brand-suzuki:before +{ + content: "\e93f"; +} + +.icofont-brand-symbian:before +{ + content: "\e940"; +} + +.icofont-brand-t-mobile:before +{ + content: "\e941"; +} + +.icofont-brand-tango:before +{ + content: "\e942"; +} + +.icofont-brand-target:before +{ + content: "\e943"; +} + +.icofont-brand-tata-indicom:before +{ + content: "\e944"; +} + +.icofont-brand-techcrunch:before +{ + content: "\e945"; +} + +.icofont-brand-telenor:before +{ + content: "\e946"; +} + +.icofont-brand-teliasonera:before +{ + content: "\e947"; +} + +.icofont-brand-tesla:before +{ + content: "\e948"; +} + +.icofont-brand-the-verge:before +{ + content: "\e949"; +} + +.icofont-brand-thenextweb:before +{ + content: "\e94a"; +} + +.icofont-brand-toshiba:before +{ + content: "\e94b"; +} + +.icofont-brand-toyota:before +{ + content: "\e94c"; +} + +.icofont-brand-tribenet:before +{ + content: "\e94d"; +} + +.icofont-brand-ubuntu:before +{ + content: "\e94e"; +} + +.icofont-brand-unilever:before +{ + content: "\e94f"; +} + +.icofont-brand-vaio:before +{ + content: "\e950"; +} + +.icofont-brand-verizon:before +{ + content: "\e951"; +} + +.icofont-brand-viber:before +{ + content: "\e952"; +} + +.icofont-brand-vodafone:before +{ + content: "\e953"; +} + +.icofont-brand-volkswagen:before +{ + content: "\e954"; +} + +.icofont-brand-walmart:before +{ + content: "\e955"; +} + +.icofont-brand-warnerbros:before +{ + content: "\e956"; +} + +.icofont-brand-whatsapp:before +{ + content: "\e957"; +} + +.icofont-brand-wikipedia:before +{ + content: "\e958"; +} + +.icofont-brand-windows:before +{ + content: "\e959"; +} + +.icofont-brand-wire:before +{ + content: "\e95a"; +} + +.icofont-brand-wordpress:before +{ + content: "\e95b"; +} + +.icofont-brand-xiaomi:before +{ + content: "\e95c"; +} + +.icofont-brand-yahoobuzz:before +{ + content: "\e95d"; +} + +.icofont-brand-yamaha:before +{ + content: "\e95e"; +} + +.icofont-brand-youtube:before +{ + content: "\e95f"; +} + +.icofont-brand-zain:before +{ + content: "\e960"; +} + +.icofont-bank-alt:before +{ + content: "\e961"; +} + +.icofont-bank:before +{ + content: "\e962"; +} + +.icofont-barcode:before +{ + content: "\e963"; +} + +.icofont-bill-alt:before +{ + content: "\e964"; +} + +.icofont-billboard:before +{ + content: "\e965"; +} + +.icofont-briefcase-1:before +{ + content: "\e966"; +} + +.icofont-briefcase-2:before +{ + content: "\e967"; +} + +.icofont-businessman:before +{ + content: "\e968"; +} + +.icofont-businesswoman:before +{ + content: "\e969"; +} + +.icofont-chair:before +{ + content: "\e96a"; +} + +.icofont-coins:before +{ + content: "\e96b"; +} + +.icofont-company:before +{ + content: "\e96c"; +} + +.icofont-contact-add:before +{ + content: "\e96d"; +} + +.icofont-files-stack:before +{ + content: "\e96e"; +} + +.icofont-handshake-deal:before +{ + content: "\e96f"; +} + +.icofont-id-card:before +{ + content: "\e970"; +} + +.icofont-meeting-add:before +{ + content: "\e971"; +} + +.icofont-money-bag:before +{ + content: "\e972"; +} + +.icofont-pie-chart:before +{ + content: "\e973"; +} + +.icofont-presentation-alt:before +{ + content: "\e974"; +} + +.icofont-presentation:before +{ + content: "\e975"; +} + +.icofont-stamp:before +{ + content: "\e976"; +} + +.icofont-stock-mobile:before +{ + content: "\e977"; +} + +.icofont-chart-arrows-axis:before +{ + content: "\e978"; +} + +.icofont-chart-bar-graph:before +{ + content: "\e979"; +} + +.icofont-chart-flow-1:before +{ + content: "\e97a"; +} + +.icofont-chart-flow-2:before +{ + content: "\e97b"; +} + +.icofont-chart-flow:before +{ + content: "\e97c"; +} + +.icofont-chart-growth:before +{ + content: "\e97d"; +} + +.icofont-chart-histogram-alt:before +{ + content: "\e97e"; +} + +.icofont-chart-histogram:before +{ + content: "\e97f"; +} + +.icofont-chart-line-alt:before +{ + content: "\e980"; +} + +.icofont-chart-line:before +{ + content: "\e981"; +} + +.icofont-chart-pie-alt:before +{ + content: "\e982"; +} + +.icofont-chart-pie:before +{ + content: "\e983"; +} + +.icofont-chart-radar-graph:before +{ + content: "\e984"; +} + +.icofont-architecture-alt:before +{ + content: "\e985"; +} + +.icofont-architecture:before +{ + content: "\e986"; +} + +.icofont-barricade:before +{ + content: "\e987"; +} + +.icofont-bolt:before +{ + content: "\e988"; +} + +.icofont-bricks:before +{ + content: "\e989"; +} + +.icofont-building-alt:before +{ + content: "\e98a"; +} + +.icofont-bull-dozer:before +{ + content: "\e98b"; +} + +.icofont-calculations:before +{ + content: "\e98c"; +} + +.icofont-cement-mix:before +{ + content: "\e98d"; +} + +.icofont-cement-mixer:before +{ + content: "\e98e"; +} + +.icofont-concrete-mixer:before +{ + content: "\e98f"; +} + +.icofont-danger-zone:before +{ + content: "\e990"; +} + +.icofont-drill:before +{ + content: "\e991"; +} + +.icofont-eco-energy:before +{ + content: "\e992"; +} + +.icofont-eco-environmen:before +{ + content: "\e993"; +} + +.icofont-energy-air:before +{ + content: "\e994"; +} + +.icofont-energy-oil:before +{ + content: "\e995"; +} + +.icofont-energy-savings:before +{ + content: "\e996"; +} + +.icofont-energy-solar:before +{ + content: "\e997"; +} + +.icofont-energy-water:before +{ + content: "\e998"; +} + +.icofont-engineer:before +{ + content: "\e999"; +} + +.icofont-fire-extinguisher-alt:before +{ + content: "\e99a"; +} + +.icofont-fire-extinguisher:before +{ + content: "\e99b"; +} + +.icofont-fix-tools:before +{ + content: "\e99c"; +} + +.icofont-fork-lift:before +{ + content: "\e99d"; +} + +.icofont-glue-oil:before +{ + content: "\e99e"; +} + +.icofont-hammer-alt:before +{ + content: "\e99f"; +} + +.icofont-hammer:before +{ + content: "\e9a0"; +} + +.icofont-help-robot:before +{ + content: "\e9a1"; +} + +.icofont-industries-1:before +{ + content: "\e9a2"; +} + +.icofont-industries-2:before +{ + content: "\e9a3"; +} + +.icofont-industries-3:before +{ + content: "\e9a4"; +} + +.icofont-industries-4:before +{ + content: "\e9a5"; +} + +.icofont-industries-5:before +{ + content: "\e9a6"; +} + +.icofont-industries:before +{ + content: "\e9a7"; +} + +.icofont-labour:before +{ + content: "\e9a8"; +} + +.icofont-mining:before +{ + content: "\e9a9"; +} + +.icofont-paint-brush:before +{ + content: "\e9aa"; +} + +.icofont-pollution:before +{ + content: "\e9ab"; +} + +.icofont-power-zone:before +{ + content: "\e9ac"; +} + +.icofont-radio-active:before +{ + content: "\e9ad"; +} + +.icofont-recycle-alt:before +{ + content: "\e9ae"; +} + +.icofont-recycling-man:before +{ + content: "\e9af"; +} + +.icofont-safety-hat-light:before +{ + content: "\e9b0"; +} + +.icofont-safety-hat:before +{ + content: "\e9b1"; +} + +.icofont-saw:before +{ + content: "\e9b2"; +} + +.icofont-screw-driver:before +{ + content: "\e9b3"; +} + +.icofont-tools-1:before +{ + content: "\e9b4"; +} + +.icofont-tools-bag:before +{ + content: "\e9b5"; +} + +.icofont-tow-truck:before +{ + content: "\e9b6"; +} + +.icofont-trolley:before +{ + content: "\e9b7"; +} + +.icofont-trowel:before +{ + content: "\e9b8"; +} + +.icofont-under-construction-alt:before +{ + content: "\e9b9"; +} + +.icofont-under-construction:before +{ + content: "\e9ba"; +} + +.icofont-vehicle-cement:before +{ + content: "\e9bb"; +} + +.icofont-vehicle-crane:before +{ + content: "\e9bc"; +} + +.icofont-vehicle-delivery-van:before +{ + content: "\e9bd"; +} + +.icofont-vehicle-dozer:before +{ + content: "\e9be"; +} + +.icofont-vehicle-excavator:before +{ + content: "\e9bf"; +} + +.icofont-vehicle-trucktor:before +{ + content: "\e9c0"; +} + +.icofont-vehicle-wrecking:before +{ + content: "\e9c1"; +} + +.icofont-worker:before +{ + content: "\e9c2"; +} + +.icofont-workers-group:before +{ + content: "\e9c3"; +} + +.icofont-wrench:before +{ + content: "\e9c4"; +} + +.icofont-afghani-false:before +{ + content: "\e9c5"; +} + +.icofont-afghani-minus:before +{ + content: "\e9c6"; +} + +.icofont-afghani-plus:before +{ + content: "\e9c7"; +} + +.icofont-afghani-true:before +{ + content: "\e9c8"; +} + +.icofont-afghani:before +{ + content: "\e9c9"; +} + +.icofont-baht-false:before +{ + content: "\e9ca"; +} + +.icofont-baht-minus:before +{ + content: "\e9cb"; +} + +.icofont-baht-plus:before +{ + content: "\e9cc"; +} + +.icofont-baht-true:before +{ + content: "\e9cd"; +} + +.icofont-baht:before +{ + content: "\e9ce"; +} + +.icofont-bitcoin-false:before +{ + content: "\e9cf"; +} + +.icofont-bitcoin-minus:before +{ + content: "\e9d0"; +} + +.icofont-bitcoin-plus:before +{ + content: "\e9d1"; +} + +.icofont-bitcoin-true:before +{ + content: "\e9d2"; +} + +.icofont-bitcoin:before +{ + content: "\e9d3"; +} + +.icofont-dollar-flase:before +{ + content: "\e9d4"; +} + +.icofont-dollar-minus:before +{ + content: "\e9d5"; +} + +.icofont-dollar-plus:before +{ + content: "\e9d6"; +} + +.icofont-dollar-true:before +{ + content: "\e9d7"; +} + +.icofont-dollar:before +{ + content: "\e9d8"; +} + +.icofont-dong-false:before +{ + content: "\e9d9"; +} + +.icofont-dong-minus:before +{ + content: "\e9da"; +} + +.icofont-dong-plus:before +{ + content: "\e9db"; +} + +.icofont-dong-true:before +{ + content: "\e9dc"; +} + +.icofont-dong:before +{ + content: "\e9dd"; +} + +.icofont-euro-false:before +{ + content: "\e9de"; +} + +.icofont-euro-minus:before +{ + content: "\e9df"; +} + +.icofont-euro-plus:before +{ + content: "\e9e0"; +} + +.icofont-euro-true:before +{ + content: "\e9e1"; +} + +.icofont-euro:before +{ + content: "\e9e2"; +} + +.icofont-frank-false:before +{ + content: "\e9e3"; +} + +.icofont-frank-minus:before +{ + content: "\e9e4"; +} + +.icofont-frank-plus:before +{ + content: "\e9e5"; +} + +.icofont-frank-true:before +{ + content: "\e9e6"; +} + +.icofont-frank:before +{ + content: "\e9e7"; +} + +.icofont-hryvnia-false:before +{ + content: "\e9e8"; +} + +.icofont-hryvnia-minus:before +{ + content: "\e9e9"; +} + +.icofont-hryvnia-plus:before +{ + content: "\e9ea"; +} + +.icofont-hryvnia-true:before +{ + content: "\e9eb"; +} + +.icofont-hryvnia:before +{ + content: "\e9ec"; +} + +.icofont-lira-false:before +{ + content: "\e9ed"; +} + +.icofont-lira-minus:before +{ + content: "\e9ee"; +} + +.icofont-lira-plus:before +{ + content: "\e9ef"; +} + +.icofont-lira-true:before +{ + content: "\e9f0"; +} + +.icofont-lira:before +{ + content: "\e9f1"; +} + +.icofont-peseta-false:before +{ + content: "\e9f2"; +} + +.icofont-peseta-minus:before +{ + content: "\e9f3"; +} + +.icofont-peseta-plus:before +{ + content: "\e9f4"; +} + +.icofont-peseta-true:before +{ + content: "\e9f5"; +} + +.icofont-peseta:before +{ + content: "\e9f6"; +} + +.icofont-peso-false:before +{ + content: "\e9f7"; +} + +.icofont-peso-minus:before +{ + content: "\e9f8"; +} + +.icofont-peso-plus:before +{ + content: "\e9f9"; +} + +.icofont-peso-true:before +{ + content: "\e9fa"; +} + +.icofont-peso:before +{ + content: "\e9fb"; +} + +.icofont-pound-false:before +{ + content: "\e9fc"; +} + +.icofont-pound-minus:before +{ + content: "\e9fd"; +} + +.icofont-pound-plus:before +{ + content: "\e9fe"; +} + +.icofont-pound-true:before +{ + content: "\e9ff"; +} + +.icofont-pound:before +{ + content: "\ea00"; +} + +.icofont-renminbi-false:before +{ + content: "\ea01"; +} + +.icofont-renminbi-minus:before +{ + content: "\ea02"; +} + +.icofont-renminbi-plus:before +{ + content: "\ea03"; +} + +.icofont-renminbi-true:before +{ + content: "\ea04"; +} + +.icofont-renminbi:before +{ + content: "\ea05"; +} + +.icofont-riyal-false:before +{ + content: "\ea06"; +} + +.icofont-riyal-minus:before +{ + content: "\ea07"; +} + +.icofont-riyal-plus:before +{ + content: "\ea08"; +} + +.icofont-riyal-true:before +{ + content: "\ea09"; +} + +.icofont-riyal:before +{ + content: "\ea0a"; +} + +.icofont-rouble-false:before +{ + content: "\ea0b"; +} + +.icofont-rouble-minus:before +{ + content: "\ea0c"; +} + +.icofont-rouble-plus:before +{ + content: "\ea0d"; +} + +.icofont-rouble-true:before +{ + content: "\ea0e"; +} + +.icofont-rouble:before +{ + content: "\ea0f"; +} + +.icofont-rupee-false:before +{ + content: "\ea10"; +} + +.icofont-rupee-minus:before +{ + content: "\ea11"; +} + +.icofont-rupee-plus:before +{ + content: "\ea12"; +} + +.icofont-rupee-true:before +{ + content: "\ea13"; +} + +.icofont-rupee:before +{ + content: "\ea14"; +} + +.icofont-taka-false:before +{ + content: "\ea15"; +} + +.icofont-taka-minus:before +{ + content: "\ea16"; +} + +.icofont-taka-plus:before +{ + content: "\ea17"; +} + +.icofont-taka-true:before +{ + content: "\ea18"; +} + +.icofont-taka:before +{ + content: "\ea19"; +} + +.icofont-turkish-lira-false:before +{ + content: "\ea1a"; +} + +.icofont-turkish-lira-minus:before +{ + content: "\ea1b"; +} + +.icofont-turkish-lira-plus:before +{ + content: "\ea1c"; +} + +.icofont-turkish-lira-true:before +{ + content: "\ea1d"; +} + +.icofont-turkish-lira:before +{ + content: "\ea1e"; +} + +.icofont-won-false:before +{ + content: "\ea1f"; +} + +.icofont-won-minus:before +{ + content: "\ea20"; +} + +.icofont-won-plus:before +{ + content: "\ea21"; +} + +.icofont-won-true:before +{ + content: "\ea22"; +} + +.icofont-won:before +{ + content: "\ea23"; +} + +.icofont-yen-false:before +{ + content: "\ea24"; +} + +.icofont-yen-minus:before +{ + content: "\ea25"; +} + +.icofont-yen-plus:before +{ + content: "\ea26"; +} + +.icofont-yen-true:before +{ + content: "\ea27"; +} + +.icofont-yen:before +{ + content: "\ea28"; +} + +.icofont-android-nexus:before +{ + content: "\ea29"; +} + +.icofont-android-tablet:before +{ + content: "\ea2a"; +} + +.icofont-apple-watch:before +{ + content: "\ea2b"; +} + +.icofont-drawing-tablet:before +{ + content: "\ea2c"; +} + +.icofont-earphone:before +{ + content: "\ea2d"; +} + +.icofont-flash-drive:before +{ + content: "\ea2e"; +} + +.icofont-game-console:before +{ + content: "\ea2f"; +} + +.icofont-game-controller:before +{ + content: "\ea30"; +} + +.icofont-game-pad:before +{ + content: "\ea31"; +} + +.icofont-game:before +{ + content: "\ea32"; +} + +.icofont-headphone-alt-1:before +{ + content: "\ea33"; +} + +.icofont-headphone-alt-2:before +{ + content: "\ea34"; +} + +.icofont-headphone-alt-3:before +{ + content: "\ea35"; +} + +.icofont-headphone-alt:before +{ + content: "\ea36"; +} + +.icofont-headphone:before +{ + content: "\ea37"; +} + +.icofont-htc-one:before +{ + content: "\ea38"; +} + +.icofont-imac:before +{ + content: "\ea39"; +} + +.icofont-ipad:before +{ + content: "\ea3a"; +} + +.icofont-iphone:before +{ + content: "\ea3b"; +} + +.icofont-ipod-nano:before +{ + content: "\ea3c"; +} + +.icofont-ipod-touch:before +{ + content: "\ea3d"; +} + +.icofont-keyboard-alt:before +{ + content: "\ea3e"; +} + +.icofont-keyboard-wireless:before +{ + content: "\ea3f"; +} + +.icofont-keyboard:before +{ + content: "\ea40"; +} + +.icofont-laptop-alt:before +{ + content: "\ea41"; +} + +.icofont-laptop:before +{ + content: "\ea42"; +} + +.icofont-macbook:before +{ + content: "\ea43"; +} + +.icofont-magic-mouse:before +{ + content: "\ea44"; +} + +.icofont-micro-chip:before +{ + content: "\ea45"; +} + +.icofont-microphone-alt:before +{ + content: "\ea46"; +} + +.icofont-microphone:before +{ + content: "\ea47"; +} + +.icofont-monitor:before +{ + content: "\ea48"; +} + +.icofont-mouse:before +{ + content: "\ea49"; +} + +.icofont-mp3-player:before +{ + content: "\ea4a"; +} + +.icofont-nintendo:before +{ + content: "\ea4b"; +} + +.icofont-playstation-alt:before +{ + content: "\ea4c"; +} + +.icofont-psvita:before +{ + content: "\ea4d"; +} + +.icofont-radio-mic:before +{ + content: "\ea4e"; +} + +.icofont-radio:before +{ + content: "\ea4f"; +} + +.icofont-refrigerator:before +{ + content: "\ea50"; +} + +.icofont-samsung-galaxy:before +{ + content: "\ea51"; +} + +.icofont-surface-tablet:before +{ + content: "\ea52"; +} + +.icofont-ui-head-phone:before +{ + content: "\ea53"; +} + +.icofont-ui-keyboard:before +{ + content: "\ea54"; +} + +.icofont-washing-machine:before +{ + content: "\ea55"; +} + +.icofont-wifi-router:before +{ + content: "\ea56"; +} + +.icofont-wii-u:before +{ + content: "\ea57"; +} + +.icofont-windows-lumia:before +{ + content: "\ea58"; +} + +.icofont-wireless-mouse:before +{ + content: "\ea59"; +} + +.icofont-xbox-360:before +{ + content: "\ea5a"; +} + +.icofont-arrow-down:before +{ + content: "\ea5b"; +} + +.icofont-arrow-left:before +{ + content: "\ea5c"; +} + +.icofont-arrow-right:before +{ + content: "\ea5d"; +} + +.icofont-arrow-up:before +{ + content: "\ea5e"; +} + +.icofont-block-down:before +{ + content: "\ea5f"; +} + +.icofont-block-left:before +{ + content: "\ea60"; +} + +.icofont-block-right:before +{ + content: "\ea61"; +} + +.icofont-block-up:before +{ + content: "\ea62"; +} + +.icofont-bubble-down:before +{ + content: "\ea63"; +} + +.icofont-bubble-left:before +{ + content: "\ea64"; +} + +.icofont-bubble-right:before +{ + content: "\ea65"; +} + +.icofont-bubble-up:before +{ + content: "\ea66"; +} + +.icofont-caret-down:before +{ + content: "\ea67"; +} + +.icofont-caret-left:before +{ + content: "\ea68"; +} + +.icofont-caret-right:before +{ + content: "\ea69"; +} + +.icofont-caret-up:before +{ + content: "\ea6a"; +} + +.icofont-circled-down:before +{ + content: "\ea6b"; +} + +.icofont-circled-left:before +{ + content: "\ea6c"; +} + +.icofont-circled-right:before +{ + content: "\ea6d"; +} + +.icofont-circled-up:before +{ + content: "\ea6e"; +} + +.icofont-collapse:before +{ + content: "\ea6f"; +} + +.icofont-cursor-drag:before +{ + content: "\ea70"; +} + +.icofont-curved-double-left:before +{ + content: "\ea71"; +} + +.icofont-curved-double-right:before +{ + content: "\ea72"; +} + +.icofont-curved-down:before +{ + content: "\ea73"; +} + +.icofont-curved-left:before +{ + content: "\ea74"; +} + +.icofont-curved-right:before +{ + content: "\ea75"; +} + +.icofont-curved-up:before +{ + content: "\ea76"; +} + +.icofont-dotted-down:before +{ + content: "\ea77"; +} + +.icofont-dotted-left:before +{ + content: "\ea78"; +} + +.icofont-dotted-right:before +{ + content: "\ea79"; +} + +.icofont-dotted-up:before +{ + content: "\ea7a"; +} + +.icofont-double-left:before +{ + content: "\ea7b"; +} + +.icofont-double-right:before +{ + content: "\ea7c"; +} + +.icofont-expand-alt:before +{ + content: "\ea7d"; +} + +.icofont-hand-down:before +{ + content: "\ea7e"; +} + +.icofont-hand-drag:before +{ + content: "\ea7f"; +} + +.icofont-hand-drag1:before +{ + content: "\ea80"; +} + +.icofont-hand-drag2:before +{ + content: "\ea81"; +} + +.icofont-hand-drawn-alt-down:before +{ + content: "\ea82"; +} + +.icofont-hand-drawn-alt-left:before +{ + content: "\ea83"; +} + +.icofont-hand-drawn-alt-right:before +{ + content: "\ea84"; +} + +.icofont-hand-drawn-alt-up:before +{ + content: "\ea85"; +} + +.icofont-hand-drawn-down:before +{ + content: "\ea86"; +} + +.icofont-hand-drawn-left:before +{ + content: "\ea87"; +} + +.icofont-hand-drawn-right:before +{ + content: "\ea88"; +} + +.icofont-hand-drawn-up:before +{ + content: "\ea89"; +} + +.icofont-hand-grippers:before +{ + content: "\ea8a"; +} + +.icofont-hand-left:before +{ + content: "\ea8b"; +} + +.icofont-hand-right:before +{ + content: "\ea8c"; +} + +.icofont-hand-up:before +{ + content: "\ea8d"; +} + +.icofont-line-block-down:before +{ + content: "\ea8e"; +} + +.icofont-line-block-left:before +{ + content: "\ea8f"; +} + +.icofont-line-block-right:before +{ + content: "\ea90"; +} + +.icofont-line-block-up:before +{ + content: "\ea91"; +} + +.icofont-long-arrow-down:before +{ + content: "\ea92"; +} + +.icofont-long-arrow-left:before +{ + content: "\ea93"; +} + +.icofont-long-arrow-right:before +{ + content: "\ea94"; +} + +.icofont-long-arrow-up:before +{ + content: "\ea95"; +} + +.icofont-rounded-collapse:before +{ + content: "\ea96"; +} + +.icofont-rounded-double-left:before +{ + content: "\ea97"; +} + +.icofont-rounded-double-right:before +{ + content: "\ea98"; +} + +.icofont-rounded-down:before +{ + content: "\ea99"; +} + +.icofont-rounded-expand:before +{ + content: "\ea9a"; +} + +.icofont-rounded-left-down:before +{ + content: "\ea9b"; +} + +.icofont-rounded-left-up:before +{ + content: "\ea9c"; +} + +.icofont-rounded-left:before +{ + content: "\ea9d"; +} + +.icofont-rounded-right-down:before +{ + content: "\ea9e"; +} + +.icofont-rounded-right-up:before +{ + content: "\ea9f"; +} + +.icofont-rounded-right:before +{ + content: "\eaa0"; +} + +.icofont-rounded-up:before +{ + content: "\eaa1"; +} + +.icofont-scroll-bubble-down:before +{ + content: "\eaa2"; +} + +.icofont-scroll-bubble-left:before +{ + content: "\eaa3"; +} + +.icofont-scroll-bubble-right:before +{ + content: "\eaa4"; +} + +.icofont-scroll-bubble-up:before +{ + content: "\eaa5"; +} + +.icofont-scroll-double-down:before +{ + content: "\eaa6"; +} + +.icofont-scroll-double-left:before +{ + content: "\eaa7"; +} + +.icofont-scroll-double-right:before +{ + content: "\eaa8"; +} + +.icofont-scroll-double-up:before +{ + content: "\eaa9"; +} + +.icofont-scroll-down:before +{ + content: "\eaaa"; +} + +.icofont-scroll-left:before +{ + content: "\eaab"; +} + +.icofont-scroll-long-down:before +{ + content: "\eaac"; +} + +.icofont-scroll-long-left:before +{ + content: "\eaad"; +} + +.icofont-scroll-long-right:before +{ + content: "\eaae"; +} + +.icofont-scroll-long-up:before +{ + content: "\eaaf"; +} + +.icofont-scroll-right:before +{ + content: "\eab0"; +} + +.icofont-scroll-up:before +{ + content: "\eab1"; +} + +.icofont-simple-down:before +{ + content: "\eab2"; +} + +.icofont-simple-left-down:before +{ + content: "\eab3"; +} + +.icofont-simple-left-up:before +{ + content: "\eab4"; +} + +.icofont-simple-left:before +{ + content: "\eab5"; +} + +.icofont-simple-right-down:before +{ + content: "\eab6"; +} + +.icofont-simple-right-up:before +{ + content: "\eab7"; +} + +.icofont-simple-right:before +{ + content: "\eab8"; +} + +.icofont-simple-up:before +{ + content: "\eab9"; +} + +.icofont-square-down:before +{ + content: "\eaba"; +} + +.icofont-square-left:before +{ + content: "\eabb"; +} + +.icofont-square-right:before +{ + content: "\eabc"; +} + +.icofont-square-up:before +{ + content: "\eabd"; +} + +.icofont-stylish-down:before +{ + content: "\eabe"; +} + +.icofont-stylish-left:before +{ + content: "\eabf"; +} + +.icofont-stylish-right:before +{ + content: "\eac0"; +} + +.icofont-stylish-up:before +{ + content: "\eac1"; +} + +.icofont-swoosh-down:before +{ + content: "\eac2"; +} + +.icofont-swoosh-left:before +{ + content: "\eac3"; +} + +.icofont-swoosh-right:before +{ + content: "\eac4"; +} + +.icofont-swoosh-up:before +{ + content: "\eac5"; +} + +.icofont-thin-double-left:before +{ + content: "\eac6"; +} + +.icofont-thin-double-right:before +{ + content: "\eac7"; +} + +.icofont-thin-down:before +{ + content: "\eac8"; +} + +.icofont-thin-left:before +{ + content: "\eac9"; +} + +.icofont-thin-right:before +{ + content: "\eaca"; +} + +.icofont-thin-up:before +{ + content: "\eacb"; +} + +.icofont-abc:before +{ + content: "\eacc"; +} + +.icofont-atom:before +{ + content: "\eacd"; +} + +.icofont-award:before +{ + content: "\eace"; +} + +.icofont-bell-alt:before +{ + content: "\eacf"; +} + +.icofont-black-board:before +{ + content: "\ead0"; +} + +.icofont-book-alt:before +{ + content: "\ead1"; +} + +.icofont-book:before +{ + content: "\ead2"; +} + +.icofont-brainstorming:before +{ + content: "\ead3"; +} + +.icofont-certificate-alt-1:before +{ + content: "\ead4"; +} + +.icofont-certificate-alt-2:before +{ + content: "\ead5"; +} + +.icofont-certificate:before +{ + content: "\ead6"; +} + +.icofont-education:before +{ + content: "\ead7"; +} + +.icofont-electron:before +{ + content: "\ead8"; +} + +.icofont-fountain-pen:before +{ + content: "\ead9"; +} + +.icofont-globe-alt:before +{ + content: "\eada"; +} + +.icofont-graduate-alt:before +{ + content: "\eadb"; +} + +.icofont-graduate:before +{ + content: "\eadc"; +} + +.icofont-group-students:before +{ + content: "\eadd"; +} + +.icofont-hat-alt:before +{ + content: "\eade"; +} + +.icofont-hat:before +{ + content: "\eadf"; +} + +.icofont-instrument:before +{ + content: "\eae0"; +} + +.icofont-lamp-light:before +{ + content: "\eae1"; +} + +.icofont-medal:before +{ + content: "\eae2"; +} + +.icofont-microscope-alt:before +{ + content: "\eae3"; +} + +.icofont-microscope:before +{ + content: "\eae4"; +} + +.icofont-paper:before +{ + content: "\eae5"; +} + +.icofont-pen-alt-4:before +{ + content: "\eae6"; +} + +.icofont-pen-nib:before +{ + content: "\eae7"; +} + +.icofont-pencil-alt-5:before +{ + content: "\eae8"; +} + +.icofont-quill-pen:before +{ + content: "\eae9"; +} + +.icofont-read-book-alt:before +{ + content: "\eaea"; +} + +.icofont-read-book:before +{ + content: "\eaeb"; +} + +.icofont-school-bag:before +{ + content: "\eaec"; +} + +.icofont-school-bus:before +{ + content: "\eaed"; +} + +.icofont-student-alt:before +{ + content: "\eaee"; +} + +.icofont-student:before +{ + content: "\eaef"; +} + +.icofont-teacher:before +{ + content: "\eaf0"; +} + +.icofont-test-bulb:before +{ + content: "\eaf1"; +} + +.icofont-test-tube-alt:before +{ + content: "\eaf2"; +} + +.icofont-university:before +{ + content: "\eaf3"; +} + +.icofont-angry:before +{ + content: "\eaf4"; +} + +.icofont-astonished:before +{ + content: "\eaf5"; +} + +.icofont-confounded:before +{ + content: "\eaf6"; +} + +.icofont-confused:before +{ + content: "\eaf7"; +} + +.icofont-crying:before +{ + content: "\eaf8"; +} + +.icofont-dizzy:before +{ + content: "\eaf9"; +} + +.icofont-expressionless:before +{ + content: "\eafa"; +} + +.icofont-heart-eyes:before +{ + content: "\eafb"; +} + +.icofont-laughing:before +{ + content: "\eafc"; +} + +.icofont-nerd-smile:before +{ + content: "\eafd"; +} + +.icofont-open-mouth:before +{ + content: "\eafe"; +} + +.icofont-rage:before +{ + content: "\eaff"; +} + +.icofont-rolling-eyes:before +{ + content: "\eb00"; +} + +.icofont-sad:before +{ + content: "\eb01"; +} + +.icofont-simple-smile:before +{ + content: "\eb02"; +} + +.icofont-slightly-smile:before +{ + content: "\eb03"; +} + +.icofont-smirk:before +{ + content: "\eb04"; +} + +.icofont-stuck-out-tongue:before +{ + content: "\eb05"; +} + +.icofont-wink-smile:before +{ + content: "\eb06"; +} + +.icofont-worried:before +{ + content: "\eb07"; +} + +.icofont-file-alt:before +{ + content: "\eb08"; +} + +.icofont-file-audio:before +{ + content: "\eb09"; +} + +.icofont-file-avi-mp4:before +{ + content: "\eb0a"; +} + +.icofont-file-bmp:before +{ + content: "\eb0b"; +} + +.icofont-file-code:before +{ + content: "\eb0c"; +} + +.icofont-file-css:before +{ + content: "\eb0d"; +} + +.icofont-file-document:before +{ + content: "\eb0e"; +} + +.icofont-file-eps:before +{ + content: "\eb0f"; +} + +.icofont-file-excel:before +{ + content: "\eb10"; +} + +.icofont-file-exe:before +{ + content: "\eb11"; +} + +.icofont-file-file:before +{ + content: "\eb12"; +} + +.icofont-file-flv:before +{ + content: "\eb13"; +} + +.icofont-file-gif:before +{ + content: "\eb14"; +} + +.icofont-file-html5:before +{ + content: "\eb15"; +} + +.icofont-file-image:before +{ + content: "\eb16"; +} + +.icofont-file-iso:before +{ + content: "\eb17"; +} + +.icofont-file-java:before +{ + content: "\eb18"; +} + +.icofont-file-javascript:before +{ + content: "\eb19"; +} + +.icofont-file-jpg:before +{ + content: "\eb1a"; +} + +.icofont-file-midi:before +{ + content: "\eb1b"; +} + +.icofont-file-mov:before +{ + content: "\eb1c"; +} + +.icofont-file-mp3:before +{ + content: "\eb1d"; +} + +.icofont-file-pdf:before +{ + content: "\eb1e"; +} + +.icofont-file-php:before +{ + content: "\eb1f"; +} + +.icofont-file-png:before +{ + content: "\eb20"; +} + +.icofont-file-powerpoint:before +{ + content: "\eb21"; +} + +.icofont-file-presentation:before +{ + content: "\eb22"; +} + +.icofont-file-psb:before +{ + content: "\eb23"; +} + +.icofont-file-psd:before +{ + content: "\eb24"; +} + +.icofont-file-python:before +{ + content: "\eb25"; +} + +.icofont-file-ruby:before +{ + content: "\eb26"; +} + +.icofont-file-spreadsheet:before +{ + content: "\eb27"; +} + +.icofont-file-sql:before +{ + content: "\eb28"; +} + +.icofont-file-svg:before +{ + content: "\eb29"; +} + +.icofont-file-text:before +{ + content: "\eb2a"; +} + +.icofont-file-tiff:before +{ + content: "\eb2b"; +} + +.icofont-file-video:before +{ + content: "\eb2c"; +} + +.icofont-file-wave:before +{ + content: "\eb2d"; +} + +.icofont-file-wmv:before +{ + content: "\eb2e"; +} + +.icofont-file-word:before +{ + content: "\eb2f"; +} + +.icofont-file-zip:before +{ + content: "\eb30"; +} + +.icofont-cycling-alt:before +{ + content: "\eb31"; +} + +.icofont-cycling:before +{ + content: "\eb32"; +} + +.icofont-dumbbell:before +{ + content: "\eb33"; +} + +.icofont-dumbbells:before +{ + content: "\eb34"; +} + +.icofont-gym-alt-1:before +{ + content: "\eb35"; +} + +.icofont-gym-alt-2:before +{ + content: "\eb36"; +} + +.icofont-gym-alt-3:before +{ + content: "\eb37"; +} + +.icofont-gym:before +{ + content: "\eb38"; +} + +.icofont-muscle-weight:before +{ + content: "\eb39"; +} + +.icofont-muscle:before +{ + content: "\eb3a"; +} + +.icofont-apple:before +{ + content: "\eb3b"; +} + +.icofont-arabian-coffee:before +{ + content: "\eb3c"; +} + +.icofont-artichoke:before +{ + content: "\eb3d"; +} + +.icofont-asparagus:before +{ + content: "\eb3e"; +} + +.icofont-avocado:before +{ + content: "\eb3f"; +} + +.icofont-baby-food:before +{ + content: "\eb40"; +} + +.icofont-banana:before +{ + content: "\eb41"; +} + +.icofont-bbq:before +{ + content: "\eb42"; +} + +.icofont-beans:before +{ + content: "\eb43"; +} + +.icofont-beer:before +{ + content: "\eb44"; +} + +.icofont-bell-pepper-capsicum:before +{ + content: "\eb45"; +} + +.icofont-birthday-cake:before +{ + content: "\eb46"; +} + +.icofont-bread:before +{ + content: "\eb47"; +} + +.icofont-broccoli:before +{ + content: "\eb48"; +} + +.icofont-burger:before +{ + content: "\eb49"; +} + +.icofont-cabbage:before +{ + content: "\eb4a"; +} + +.icofont-carrot:before +{ + content: "\eb4b"; +} + +.icofont-cauli-flower:before +{ + content: "\eb4c"; +} + +.icofont-cheese:before +{ + content: "\eb4d"; +} + +.icofont-chef:before +{ + content: "\eb4e"; +} + +.icofont-cherry:before +{ + content: "\eb4f"; +} + +.icofont-chicken-fry:before +{ + content: "\eb50"; +} + +.icofont-chicken:before +{ + content: "\eb51"; +} + +.icofont-cocktail:before +{ + content: "\eb52"; +} + +.icofont-coconut-water:before +{ + content: "\eb53"; +} + +.icofont-coconut:before +{ + content: "\eb54"; +} + +.icofont-coffee-alt:before +{ + content: "\eb55"; +} + +.icofont-coffee-cup:before +{ + content: "\eb56"; +} + +.icofont-coffee-mug:before +{ + content: "\eb57"; +} + +.icofont-coffee-pot:before +{ + content: "\eb58"; +} + +.icofont-cola:before +{ + content: "\eb59"; +} + +.icofont-corn:before +{ + content: "\eb5a"; +} + +.icofont-croissant:before +{ + content: "\eb5b"; +} + +.icofont-crop-plant:before +{ + content: "\eb5c"; +} + +.icofont-cucumber:before +{ + content: "\eb5d"; +} + +.icofont-culinary:before +{ + content: "\eb5e"; +} + +.icofont-cup-cake:before +{ + content: "\eb5f"; +} + +.icofont-dining-table:before +{ + content: "\eb60"; +} + +.icofont-donut:before +{ + content: "\eb61"; +} + +.icofont-egg-plant:before +{ + content: "\eb62"; +} + +.icofont-egg-poached:before +{ + content: "\eb63"; +} + +.icofont-farmer-alt:before +{ + content: "\eb64"; +} + +.icofont-farmer:before +{ + content: "\eb65"; +} + +.icofont-fast-food:before +{ + content: "\eb66"; +} + +.icofont-food-basket:before +{ + content: "\eb67"; +} + +.icofont-food-cart:before +{ + content: "\eb68"; +} + +.icofont-fork-and-knife:before +{ + content: "\eb69"; +} + +.icofont-french-fries:before +{ + content: "\eb6a"; +} + +.icofont-fruits:before +{ + content: "\eb6b"; +} + +.icofont-grapes:before +{ + content: "\eb6c"; +} + +.icofont-honey:before +{ + content: "\eb6d"; +} + +.icofont-hot-dog:before +{ + content: "\eb6e"; +} + +.icofont-ice-cream-alt:before +{ + content: "\eb6f"; +} + +.icofont-ice-cream:before +{ + content: "\eb70"; +} + +.icofont-juice:before +{ + content: "\eb71"; +} + +.icofont-ketchup:before +{ + content: "\eb72"; +} + +.icofont-kiwi:before +{ + content: "\eb73"; +} + +.icofont-layered-cake:before +{ + content: "\eb74"; +} + +.icofont-lemon-alt:before +{ + content: "\eb75"; +} + +.icofont-lemon:before +{ + content: "\eb76"; +} + +.icofont-lobster:before +{ + content: "\eb77"; +} + +.icofont-mango:before +{ + content: "\eb78"; +} + +.icofont-milk:before +{ + content: "\eb79"; +} + +.icofont-mushroom:before +{ + content: "\eb7a"; +} + +.icofont-noodles:before +{ + content: "\eb7b"; +} + +.icofont-onion:before +{ + content: "\eb7c"; +} + +.icofont-orange:before +{ + content: "\eb7d"; +} + +.icofont-pear:before +{ + content: "\eb7e"; +} + +.icofont-peas:before +{ + content: "\eb7f"; +} + +.icofont-pepper:before +{ + content: "\eb80"; +} + +.icofont-pie-alt:before +{ + content: "\eb81"; +} + +.icofont-pie:before +{ + content: "\eb82"; +} + +.icofont-pineapple:before +{ + content: "\eb83"; +} + +.icofont-pizza-slice:before +{ + content: "\eb84"; +} + +.icofont-pizza:before +{ + content: "\eb85"; +} + +.icofont-plant:before +{ + content: "\eb86"; +} + +.icofont-popcorn:before +{ + content: "\eb87"; +} + +.icofont-potato:before +{ + content: "\eb88"; +} + +.icofont-pumpkin:before +{ + content: "\eb89"; +} + +.icofont-raddish:before +{ + content: "\eb8a"; +} + +.icofont-restaurant-menu:before +{ + content: "\eb8b"; +} + +.icofont-restaurant:before +{ + content: "\eb8c"; +} + +.icofont-salt-and-pepper:before +{ + content: "\eb8d"; +} + +.icofont-sandwich:before +{ + content: "\eb8e"; +} + +.icofont-sausage:before +{ + content: "\eb8f"; +} + +.icofont-soft-drinks:before +{ + content: "\eb90"; +} + +.icofont-soup-bowl:before +{ + content: "\eb91"; +} + +.icofont-spoon-and-fork:before +{ + content: "\eb92"; +} + +.icofont-steak:before +{ + content: "\eb93"; +} + +.icofont-strawberry:before +{ + content: "\eb94"; +} + +.icofont-sub-sandwich:before +{ + content: "\eb95"; +} + +.icofont-sushi:before +{ + content: "\eb96"; +} + +.icofont-taco:before +{ + content: "\eb97"; +} + +.icofont-tea-pot:before +{ + content: "\eb98"; +} + +.icofont-tea:before +{ + content: "\eb99"; +} + +.icofont-tomato:before +{ + content: "\eb9a"; +} + +.icofont-watermelon:before +{ + content: "\eb9b"; +} + +.icofont-wheat:before +{ + content: "\eb9c"; +} + +.icofont-baby-backpack:before +{ + content: "\eb9d"; +} + +.icofont-baby-cloth:before +{ + content: "\eb9e"; +} + +.icofont-baby-milk-bottle:before +{ + content: "\eb9f"; +} + +.icofont-baby-trolley:before +{ + content: "\eba0"; +} + +.icofont-baby:before +{ + content: "\eba1"; +} + +.icofont-candy:before +{ + content: "\eba2"; +} + +.icofont-holding-hands:before +{ + content: "\eba3"; +} + +.icofont-infant-nipple:before +{ + content: "\eba4"; +} + +.icofont-kids-scooter:before +{ + content: "\eba5"; +} + +.icofont-safety-pin:before +{ + content: "\eba6"; +} + +.icofont-teddy-bear:before +{ + content: "\eba7"; +} + +.icofont-toy-ball:before +{ + content: "\eba8"; +} + +.icofont-toy-cat:before +{ + content: "\eba9"; +} + +.icofont-toy-duck:before +{ + content: "\ebaa"; +} + +.icofont-toy-elephant:before +{ + content: "\ebab"; +} + +.icofont-toy-hand:before +{ + content: "\ebac"; +} + +.icofont-toy-horse:before +{ + content: "\ebad"; +} + +.icofont-toy-lattu:before +{ + content: "\ebae"; +} + +.icofont-toy-train:before +{ + content: "\ebaf"; +} + +.icofont-burglar:before +{ + content: "\ebb0"; +} + +.icofont-cannon-firing:before +{ + content: "\ebb1"; +} + +.icofont-cc-camera:before +{ + content: "\ebb2"; +} + +.icofont-cop-badge:before +{ + content: "\ebb3"; +} + +.icofont-cop:before +{ + content: "\ebb4"; +} + +.icofont-court-hammer:before +{ + content: "\ebb5"; +} + +.icofont-court:before +{ + content: "\ebb6"; +} + +.icofont-finger-print:before +{ + content: "\ebb7"; +} + +.icofont-gavel:before +{ + content: "\ebb8"; +} + +.icofont-handcuff-alt:before +{ + content: "\ebb9"; +} + +.icofont-handcuff:before +{ + content: "\ebba"; +} + +.icofont-investigation:before +{ + content: "\ebbb"; +} + +.icofont-investigator:before +{ + content: "\ebbc"; +} + +.icofont-jail:before +{ + content: "\ebbd"; +} + +.icofont-judge:before +{ + content: "\ebbe"; +} + +.icofont-law-alt-1:before +{ + content: "\ebbf"; +} + +.icofont-law-alt-2:before +{ + content: "\ebc0"; +} + +.icofont-law-alt-3:before +{ + content: "\ebc1"; +} + +.icofont-law-book:before +{ + content: "\ebc2"; +} + +.icofont-law-document:before +{ + content: "\ebc3"; +} + +.icofont-law-order:before +{ + content: "\ebc4"; +} + +.icofont-law-protect:before +{ + content: "\ebc5"; +} + +.icofont-law-scales:before +{ + content: "\ebc6"; +} + +.icofont-law:before +{ + content: "\ebc7"; +} + +.icofont-lawyer-alt-1:before +{ + content: "\ebc8"; +} + +.icofont-lawyer-alt-2:before +{ + content: "\ebc9"; +} + +.icofont-lawyer:before +{ + content: "\ebca"; +} + +.icofont-legal:before +{ + content: "\ebcb"; +} + +.icofont-pistol:before +{ + content: "\ebcc"; +} + +.icofont-police-badge:before +{ + content: "\ebcd"; +} + +.icofont-police-cap:before +{ + content: "\ebce"; +} + +.icofont-police-car-alt-1:before +{ + content: "\ebcf"; +} + +.icofont-police-car-alt-2:before +{ + content: "\ebd0"; +} + +.icofont-police-car:before +{ + content: "\ebd1"; +} + +.icofont-police-hat:before +{ + content: "\ebd2"; +} + +.icofont-police-van:before +{ + content: "\ebd3"; +} + +.icofont-police:before +{ + content: "\ebd4"; +} + +.icofont-thief-alt:before +{ + content: "\ebd5"; +} + +.icofont-thief:before +{ + content: "\ebd6"; +} + +.icofont-abacus-alt:before +{ + content: "\ebd7"; +} + +.icofont-abacus:before +{ + content: "\ebd8"; +} + +.icofont-angle-180:before +{ + content: "\ebd9"; +} + +.icofont-angle-45:before +{ + content: "\ebda"; +} + +.icofont-angle-90:before +{ + content: "\ebdb"; +} + +.icofont-angle:before +{ + content: "\ebdc"; +} + +.icofont-calculator-alt-1:before +{ + content: "\ebdd"; +} + +.icofont-calculator-alt-2:before +{ + content: "\ebde"; +} + +.icofont-calculator:before +{ + content: "\ebdf"; +} + +.icofont-circle-ruler-alt:before +{ + content: "\ebe0"; +} + +.icofont-circle-ruler:before +{ + content: "\ebe1"; +} + +.icofont-compass-alt-1:before +{ + content: "\ebe2"; +} + +.icofont-compass-alt-2:before +{ + content: "\ebe3"; +} + +.icofont-compass-alt-3:before +{ + content: "\ebe4"; +} + +.icofont-compass-alt-4:before +{ + content: "\ebe5"; +} + +.icofont-golden-ratio:before +{ + content: "\ebe6"; +} + +.icofont-marker-alt-1:before +{ + content: "\ebe7"; +} + +.icofont-marker-alt-2:before +{ + content: "\ebe8"; +} + +.icofont-marker-alt-3:before +{ + content: "\ebe9"; +} + +.icofont-marker:before +{ + content: "\ebea"; +} + +.icofont-math:before +{ + content: "\ebeb"; +} + +.icofont-mathematical-alt-1:before +{ + content: "\ebec"; +} + +.icofont-mathematical-alt-2:before +{ + content: "\ebed"; +} + +.icofont-mathematical:before +{ + content: "\ebee"; +} + +.icofont-pen-alt-1:before +{ + content: "\ebef"; +} + +.icofont-pen-alt-2:before +{ + content: "\ebf0"; +} + +.icofont-pen-alt-3:before +{ + content: "\ebf1"; +} + +.icofont-pen-holder-alt-1:before +{ + content: "\ebf2"; +} + +.icofont-pen-holder:before +{ + content: "\ebf3"; +} + +.icofont-pen:before +{ + content: "\ebf4"; +} + +.icofont-pencil-alt-1:before +{ + content: "\ebf5"; +} + +.icofont-pencil-alt-2:before +{ + content: "\ebf6"; +} + +.icofont-pencil-alt-3:before +{ + content: "\ebf7"; +} + +.icofont-pencil-alt-4:before +{ + content: "\ebf8"; +} + +.icofont-pencil:before +{ + content: "\ebf9"; +} + +.icofont-ruler-alt-1:before +{ + content: "\ebfa"; +} + +.icofont-ruler-alt-2:before +{ + content: "\ebfb"; +} + +.icofont-ruler-compass-alt:before +{ + content: "\ebfc"; +} + +.icofont-ruler-compass:before +{ + content: "\ebfd"; +} + +.icofont-ruler-pencil-alt-1:before +{ + content: "\ebfe"; +} + +.icofont-ruler-pencil-alt-2:before +{ + content: "\ebff"; +} + +.icofont-ruler-pencil:before +{ + content: "\ec00"; +} + +.icofont-ruler:before +{ + content: "\ec01"; +} + +.icofont-rulers-alt:before +{ + content: "\ec02"; +} + +.icofont-rulers:before +{ + content: "\ec03"; +} + +.icofont-square-root:before +{ + content: "\ec04"; +} + +.icofont-ui-calculator:before +{ + content: "\ec05"; +} + +.icofont-aids:before +{ + content: "\ec06"; +} + +.icofont-ambulance-crescent:before +{ + content: "\ec07"; +} + +.icofont-ambulance-cross:before +{ + content: "\ec08"; +} + +.icofont-ambulance:before +{ + content: "\ec09"; +} + +.icofont-autism:before +{ + content: "\ec0a"; +} + +.icofont-bandage:before +{ + content: "\ec0b"; +} + +.icofont-blind:before +{ + content: "\ec0c"; +} + +.icofont-blood-drop:before +{ + content: "\ec0d"; +} + +.icofont-blood-test:before +{ + content: "\ec0e"; +} + +.icofont-blood:before +{ + content: "\ec0f"; +} + +.icofont-brain-alt:before +{ + content: "\ec10"; +} + +.icofont-brain:before +{ + content: "\ec11"; +} + +.icofont-capsule:before +{ + content: "\ec12"; +} + +.icofont-crutch:before +{ + content: "\ec13"; +} + +.icofont-disabled:before +{ + content: "\ec14"; +} + +.icofont-dna-alt-1:before +{ + content: "\ec15"; +} + +.icofont-dna-alt-2:before +{ + content: "\ec16"; +} + +.icofont-dna:before +{ + content: "\ec17"; +} + +.icofont-doctor-alt:before +{ + content: "\ec18"; +} + +.icofont-doctor:before +{ + content: "\ec19"; +} + +.icofont-drug-pack:before +{ + content: "\ec1a"; +} + +.icofont-drug:before +{ + content: "\ec1b"; +} + +.icofont-first-aid-alt:before +{ + content: "\ec1c"; +} + +.icofont-first-aid:before +{ + content: "\ec1d"; +} + +.icofont-heart-beat-alt:before +{ + content: "\ec1e"; +} + +.icofont-heart-beat:before +{ + content: "\ec1f"; +} + +.icofont-heartbeat:before +{ + content: "\ec20"; +} + +.icofont-herbal:before +{ + content: "\ec21"; +} + +.icofont-hospital:before +{ + content: "\ec22"; +} + +.icofont-icu:before +{ + content: "\ec23"; +} + +.icofont-injection-syringe:before +{ + content: "\ec24"; +} + +.icofont-laboratory:before +{ + content: "\ec25"; +} + +.icofont-medical-sign-alt:before +{ + content: "\ec26"; +} + +.icofont-medical-sign:before +{ + content: "\ec27"; +} + +.icofont-nurse-alt:before +{ + content: "\ec28"; +} + +.icofont-nurse:before +{ + content: "\ec29"; +} + +.icofont-nursing-home:before +{ + content: "\ec2a"; +} + +.icofont-operation-theater:before +{ + content: "\ec2b"; +} + +.icofont-paralysis-disability:before +{ + content: "\ec2c"; +} + +.icofont-patient-bed:before +{ + content: "\ec2d"; +} + +.icofont-patient-file:before +{ + content: "\ec2e"; +} + +.icofont-pills:before +{ + content: "\ec2f"; +} + +.icofont-prescription:before +{ + content: "\ec30"; +} + +.icofont-pulse:before +{ + content: "\ec31"; +} + +.icofont-stethoscope-alt:before +{ + content: "\ec32"; +} + +.icofont-stethoscope:before +{ + content: "\ec33"; +} + +.icofont-stretcher:before +{ + content: "\ec34"; +} + +.icofont-surgeon-alt:before +{ + content: "\ec35"; +} + +.icofont-surgeon:before +{ + content: "\ec36"; +} + +.icofont-tablets:before +{ + content: "\ec37"; +} + +.icofont-test-bottle:before +{ + content: "\ec38"; +} + +.icofont-test-tube:before +{ + content: "\ec39"; +} + +.icofont-thermometer-alt:before +{ + content: "\ec3a"; +} + +.icofont-thermometer:before +{ + content: "\ec3b"; +} + +.icofont-tooth:before +{ + content: "\ec3c"; +} + +.icofont-xray:before +{ + content: "\ec3d"; +} + +.icofont-ui-add:before +{ + content: "\ec3e"; +} + +.icofont-ui-alarm:before +{ + content: "\ec3f"; +} + +.icofont-ui-battery:before +{ + content: "\ec40"; +} + +.icofont-ui-block:before +{ + content: "\ec41"; +} + +.icofont-ui-bluetooth:before +{ + content: "\ec42"; +} + +.icofont-ui-brightness:before +{ + content: "\ec43"; +} + +.icofont-ui-browser:before +{ + content: "\ec44"; +} + +.icofont-ui-calendar:before +{ + content: "\ec45"; +} + +.icofont-ui-call:before +{ + content: "\ec46"; +} + +.icofont-ui-camera:before +{ + content: "\ec47"; +} + +.icofont-ui-cart:before +{ + content: "\ec48"; +} + +.icofont-ui-cell-phone:before +{ + content: "\ec49"; +} + +.icofont-ui-chat:before +{ + content: "\ec4a"; +} + +.icofont-ui-check:before +{ + content: "\ec4b"; +} + +.icofont-ui-clip-board:before +{ + content: "\ec4c"; +} + +.icofont-ui-clip:before +{ + content: "\ec4d"; +} + +.icofont-ui-clock:before +{ + content: "\ec4e"; +} + +.icofont-ui-close:before +{ + content: "\ec4f"; +} + +.icofont-ui-contact-list:before +{ + content: "\ec50"; +} + +.icofont-ui-copy:before +{ + content: "\ec51"; +} + +.icofont-ui-cut:before +{ + content: "\ec52"; +} + +.icofont-ui-delete:before +{ + content: "\ec53"; +} + +.icofont-ui-dial-phone:before +{ + content: "\ec54"; +} + +.icofont-ui-edit:before +{ + content: "\ec55"; +} + +.icofont-ui-email:before +{ + content: "\ec56"; +} + +.icofont-ui-file:before +{ + content: "\ec57"; +} + +.icofont-ui-fire-wall:before +{ + content: "\ec58"; +} + +.icofont-ui-flash-light:before +{ + content: "\ec59"; +} + +.icofont-ui-flight:before +{ + content: "\ec5a"; +} + +.icofont-ui-folder:before +{ + content: "\ec5b"; +} + +.icofont-ui-game:before +{ + content: "\ec5c"; +} + +.icofont-ui-handicapped:before +{ + content: "\ec5d"; +} + +.icofont-ui-home:before +{ + content: "\ec5e"; +} + +.icofont-ui-image:before +{ + content: "\ec5f"; +} + +.icofont-ui-laoding:before +{ + content: "\ec60"; +} + +.icofont-ui-lock:before +{ + content: "\ec61"; +} + +.icofont-ui-love-add:before +{ + content: "\ec62"; +} + +.icofont-ui-love-broken:before +{ + content: "\ec63"; +} + +.icofont-ui-love-remove:before +{ + content: "\ec64"; +} + +.icofont-ui-love:before +{ + content: "\ec65"; +} + +.icofont-ui-map:before +{ + content: "\ec66"; +} + +.icofont-ui-message:before +{ + content: "\ec67"; +} + +.icofont-ui-messaging:before +{ + content: "\ec68"; +} + +.icofont-ui-movie:before +{ + content: "\ec69"; +} + +.icofont-ui-music-player:before +{ + content: "\ec6a"; +} + +.icofont-ui-music:before +{ + content: "\ec6b"; +} + +.icofont-ui-mute:before +{ + content: "\ec6c"; +} + +.icofont-ui-network:before +{ + content: "\ec6d"; +} + +.icofont-ui-next:before +{ + content: "\ec6e"; +} + +.icofont-ui-note:before +{ + content: "\ec6f"; +} + +.icofont-ui-office:before +{ + content: "\ec70"; +} + +.icofont-ui-password:before +{ + content: "\ec71"; +} + +.icofont-ui-pause:before +{ + content: "\ec72"; +} + +.icofont-ui-play-stop:before +{ + content: "\ec73"; +} + +.icofont-ui-play:before +{ + content: "\ec74"; +} + +.icofont-ui-pointer:before +{ + content: "\ec75"; +} + +.icofont-ui-power:before +{ + content: "\ec76"; +} + +.icofont-ui-press:before +{ + content: "\ec77"; +} + +.icofont-ui-previous:before +{ + content: "\ec78"; +} + +.icofont-ui-rate-add:before +{ + content: "\ec79"; +} + +.icofont-ui-rate-blank:before +{ + content: "\ec7a"; +} + +.icofont-ui-rate-remove:before +{ + content: "\ec7b"; +} + +.icofont-ui-rating:before +{ + content: "\ec7c"; +} + +.icofont-ui-record:before +{ + content: "\ec7d"; +} + +.icofont-ui-remove:before +{ + content: "\ec7e"; +} + +.icofont-ui-reply:before +{ + content: "\ec7f"; +} + +.icofont-ui-rotation:before +{ + content: "\ec80"; +} + +.icofont-ui-rss:before +{ + content: "\ec81"; +} + +.icofont-ui-search:before +{ + content: "\ec82"; +} + +.icofont-ui-settings:before +{ + content: "\ec83"; +} + +.icofont-ui-social-link:before +{ + content: "\ec84"; +} + +.icofont-ui-tag:before +{ + content: "\ec85"; +} + +.icofont-ui-text-chat:before +{ + content: "\ec86"; +} + +.icofont-ui-text-loading:before +{ + content: "\ec87"; +} + +.icofont-ui-theme:before +{ + content: "\ec88"; +} + +.icofont-ui-timer:before +{ + content: "\ec89"; +} + +.icofont-ui-touch-phone:before +{ + content: "\ec8a"; +} + +.icofont-ui-travel:before +{ + content: "\ec8b"; +} + +.icofont-ui-unlock:before +{ + content: "\ec8c"; +} + +.icofont-ui-user-group:before +{ + content: "\ec8d"; +} + +.icofont-ui-user:before +{ + content: "\ec8e"; +} + +.icofont-ui-v-card:before +{ + content: "\ec8f"; +} + +.icofont-ui-video-chat:before +{ + content: "\ec90"; +} + +.icofont-ui-video-message:before +{ + content: "\ec91"; +} + +.icofont-ui-video-play:before +{ + content: "\ec92"; +} + +.icofont-ui-video:before +{ + content: "\ec93"; +} + +.icofont-ui-volume:before +{ + content: "\ec94"; +} + +.icofont-ui-weather:before +{ + content: "\ec95"; +} + +.icofont-ui-wifi:before +{ + content: "\ec96"; +} + +.icofont-ui-zoom-in:before +{ + content: "\ec97"; +} + +.icofont-ui-zoom-out:before +{ + content: "\ec98"; +} + +.icofont-cassette-player:before +{ + content: "\ec99"; +} + +.icofont-cassette:before +{ + content: "\ec9a"; +} + +.icofont-forward:before +{ + content: "\ec9b"; +} + +.icofont-guiter:before +{ + content: "\ec9c"; +} + +.icofont-movie:before +{ + content: "\ec9d"; +} + +.icofont-multimedia:before +{ + content: "\ec9e"; +} + +.icofont-music-alt:before +{ + content: "\ec9f"; +} + +.icofont-music-disk:before +{ + content: "\eca0"; +} + +.icofont-music-note:before +{ + content: "\eca1"; +} + +.icofont-music-notes:before +{ + content: "\eca2"; +} + +.icofont-music:before +{ + content: "\eca3"; +} + +.icofont-mute-volume:before +{ + content: "\eca4"; +} + +.icofont-pause:before +{ + content: "\eca5"; +} + +.icofont-play-alt-1:before +{ + content: "\eca6"; +} + +.icofont-play-alt-2:before +{ + content: "\eca7"; +} + +.icofont-play-alt-3:before +{ + content: "\eca8"; +} + +.icofont-play-pause:before +{ + content: "\eca9"; +} + +.icofont-play:before +{ + content: "\ecaa"; +} + +.icofont-record:before +{ + content: "\ecab"; +} + +.icofont-retro-music-disk:before +{ + content: "\ecac"; +} + +.icofont-rewind:before +{ + content: "\ecad"; +} + +.icofont-song-notes:before +{ + content: "\ecae"; +} + +.icofont-sound-wave-alt:before +{ + content: "\ecaf"; +} + +.icofont-sound-wave:before +{ + content: "\ecb0"; +} + +.icofont-stop:before +{ + content: "\ecb1"; +} + +.icofont-video-alt:before +{ + content: "\ecb2"; +} + +.icofont-video-cam:before +{ + content: "\ecb3"; +} + +.icofont-video-clapper:before +{ + content: "\ecb4"; +} + +.icofont-video:before +{ + content: "\ecb5"; +} + +.icofont-volume-bar:before +{ + content: "\ecb6"; +} + +.icofont-volume-down:before +{ + content: "\ecb7"; +} + +.icofont-volume-mute:before +{ + content: "\ecb8"; +} + +.icofont-volume-off:before +{ + content: "\ecb9"; +} + +.icofont-volume-up:before +{ + content: "\ecba"; +} + +.icofont-youtube-play:before +{ + content: "\ecbb"; +} + +.icofont-2checkout-alt:before +{ + content: "\ecbc"; +} + +.icofont-2checkout:before +{ + content: "\ecbd"; +} + +.icofont-amazon-alt:before +{ + content: "\ecbe"; +} + +.icofont-amazon:before +{ + content: "\ecbf"; +} + +.icofont-american-express-alt:before +{ + content: "\ecc0"; +} + +.icofont-american-express:before +{ + content: "\ecc1"; +} + +.icofont-apple-pay-alt:before +{ + content: "\ecc2"; +} + +.icofont-apple-pay:before +{ + content: "\ecc3"; +} + +.icofont-bank-transfer-alt:before +{ + content: "\ecc4"; +} + +.icofont-bank-transfer:before +{ + content: "\ecc5"; +} + +.icofont-braintree-alt:before +{ + content: "\ecc6"; +} + +.icofont-braintree:before +{ + content: "\ecc7"; +} + +.icofont-cash-on-delivery-alt:before +{ + content: "\ecc8"; +} + +.icofont-cash-on-delivery:before +{ + content: "\ecc9"; +} + +.icofont-diners-club-alt-1:before +{ + content: "\ecca"; +} + +.icofont-diners-club-alt-2:before +{ + content: "\eccb"; +} + +.icofont-diners-club-alt-3:before +{ + content: "\eccc"; +} + +.icofont-diners-club:before +{ + content: "\eccd"; +} + +.icofont-discover-alt:before +{ + content: "\ecce"; +} + +.icofont-discover:before +{ + content: "\eccf"; +} + +.icofont-eway-alt:before +{ + content: "\ecd0"; +} + +.icofont-eway:before +{ + content: "\ecd1"; +} + +.icofont-google-wallet-alt-1:before +{ + content: "\ecd2"; +} + +.icofont-google-wallet-alt-2:before +{ + content: "\ecd3"; +} + +.icofont-google-wallet-alt-3:before +{ + content: "\ecd4"; +} + +.icofont-google-wallet:before +{ + content: "\ecd5"; +} + +.icofont-jcb-alt:before +{ + content: "\ecd6"; +} + +.icofont-jcb:before +{ + content: "\ecd7"; +} + +.icofont-maestro-alt:before +{ + content: "\ecd8"; +} + +.icofont-maestro:before +{ + content: "\ecd9"; +} + +.icofont-mastercard-alt:before +{ + content: "\ecda"; +} + +.icofont-mastercard:before +{ + content: "\ecdb"; +} + +.icofont-payoneer-alt:before +{ + content: "\ecdc"; +} + +.icofont-payoneer:before +{ + content: "\ecdd"; +} + +.icofont-paypal-alt:before +{ + content: "\ecde"; +} + +.icofont-paypal:before +{ + content: "\ecdf"; +} + +.icofont-sage-alt:before +{ + content: "\ece0"; +} + +.icofont-sage:before +{ + content: "\ece1"; +} + +.icofont-skrill-alt:before +{ + content: "\ece2"; +} + +.icofont-skrill:before +{ + content: "\ece3"; +} + +.icofont-stripe-alt:before +{ + content: "\ece4"; +} + +.icofont-stripe:before +{ + content: "\ece5"; +} + +.icofont-visa-alt:before +{ + content: "\ece6"; +} + +.icofont-visa-electron:before +{ + content: "\ece7"; +} + +.icofont-visa:before +{ + content: "\ece8"; +} + +.icofont-western-union-alt:before +{ + content: "\ece9"; +} + +.icofont-western-union:before +{ + content: "\ecea"; +} + +.icofont-boy:before +{ + content: "\eceb"; +} + +.icofont-business-man-alt-1:before +{ + content: "\ecec"; +} + +.icofont-business-man-alt-2:before +{ + content: "\eced"; +} + +.icofont-business-man-alt-3:before +{ + content: "\ecee"; +} + +.icofont-business-man:before +{ + content: "\ecef"; +} + +.icofont-female:before +{ + content: "\ecf0"; +} + +.icofont-funky-man:before +{ + content: "\ecf1"; +} + +.icofont-girl-alt:before +{ + content: "\ecf2"; +} + +.icofont-girl:before +{ + content: "\ecf3"; +} + +.icofont-group:before +{ + content: "\ecf4"; +} + +.icofont-hotel-boy-alt:before +{ + content: "\ecf5"; +} + +.icofont-hotel-boy:before +{ + content: "\ecf6"; +} + +.icofont-kid:before +{ + content: "\ecf7"; +} + +.icofont-man-in-glasses:before +{ + content: "\ecf8"; +} + +.icofont-people:before +{ + content: "\ecf9"; +} + +.icofont-support:before +{ + content: "\ecfa"; +} + +.icofont-user-alt-1:before +{ + content: "\ecfb"; +} + +.icofont-user-alt-2:before +{ + content: "\ecfc"; +} + +.icofont-user-alt-3:before +{ + content: "\ecfd"; +} + +.icofont-user-alt-4:before +{ + content: "\ecfe"; +} + +.icofont-user-alt-5:before +{ + content: "\ecff"; +} + +.icofont-user-alt-6:before +{ + content: "\ed00"; +} + +.icofont-user-alt-7:before +{ + content: "\ed01"; +} + +.icofont-user-female:before +{ + content: "\ed02"; +} + +.icofont-user-male:before +{ + content: "\ed03"; +} + +.icofont-user-suited:before +{ + content: "\ed04"; +} + +.icofont-user:before +{ + content: "\ed05"; +} + +.icofont-users-alt-1:before +{ + content: "\ed06"; +} + +.icofont-users-alt-2:before +{ + content: "\ed07"; +} + +.icofont-users-alt-3:before +{ + content: "\ed08"; +} + +.icofont-users-alt-4:before +{ + content: "\ed09"; +} + +.icofont-users-alt-5:before +{ + content: "\ed0a"; +} + +.icofont-users-alt-6:before +{ + content: "\ed0b"; +} + +.icofont-users-social:before +{ + content: "\ed0c"; +} + +.icofont-users:before +{ + content: "\ed0d"; +} + +.icofont-waiter-alt:before +{ + content: "\ed0e"; +} + +.icofont-waiter:before +{ + content: "\ed0f"; +} + +.icofont-woman-in-glasses:before +{ + content: "\ed10"; +} + +.icofont-search-1:before +{ + content: "\ed11"; +} + +.icofont-search-2:before +{ + content: "\ed12"; +} + +.icofont-search-document:before +{ + content: "\ed13"; +} + +.icofont-search-folder:before +{ + content: "\ed14"; +} + +.icofont-search-job:before +{ + content: "\ed15"; +} + +.icofont-search-map:before +{ + content: "\ed16"; +} + +.icofont-search-property:before +{ + content: "\ed17"; +} + +.icofont-search-restaurant:before +{ + content: "\ed18"; +} + +.icofont-search-stock:before +{ + content: "\ed19"; +} + +.icofont-search-user:before +{ + content: "\ed1a"; +} + +.icofont-search:before +{ + content: "\ed1b"; +} + +.icofont-500px:before +{ + content: "\ed1c"; +} + +.icofont-aim:before +{ + content: "\ed1d"; +} + +.icofont-badoo:before +{ + content: "\ed1e"; +} + +.icofont-baidu-tieba:before +{ + content: "\ed1f"; +} + +.icofont-bbm-messenger:before +{ + content: "\ed20"; +} + +.icofont-bebo:before +{ + content: "\ed21"; +} + +.icofont-behance:before +{ + content: "\ed22"; +} + +.icofont-blogger:before +{ + content: "\ed23"; +} + +.icofont-bootstrap:before +{ + content: "\ed24"; +} + +.icofont-brightkite:before +{ + content: "\ed25"; +} + +.icofont-cloudapp:before +{ + content: "\ed26"; +} + +.icofont-concrete5:before +{ + content: "\ed27"; +} + +.icofont-delicious:before +{ + content: "\ed28"; +} + +.icofont-designbump:before +{ + content: "\ed29"; +} + +.icofont-designfloat:before +{ + content: "\ed2a"; +} + +.icofont-deviantart:before +{ + content: "\ed2b"; +} + +.icofont-digg:before +{ + content: "\ed2c"; +} + +.icofont-dotcms:before +{ + content: "\ed2d"; +} + +.icofont-dribbble:before +{ + content: "\ed2e"; +} + +.icofont-dribble:before +{ + content: "\ed2f"; +} + +.icofont-dropbox:before +{ + content: "\ed30"; +} + +.icofont-ebuddy:before +{ + content: "\ed31"; +} + +.icofont-ello:before +{ + content: "\ed32"; +} + +.icofont-ember:before +{ + content: "\ed33"; +} + +.icofont-envato:before +{ + content: "\ed34"; +} + +.icofont-evernote:before +{ + content: "\ed35"; +} + +.icofont-facebook-messenger:before +{ + content: "\ed36"; +} + +.icofont-facebook:before +{ + content: "\ed37"; +} + +.icofont-feedburner:before +{ + content: "\ed38"; +} + +.icofont-flikr:before +{ + content: "\ed39"; +} + +.icofont-folkd:before +{ + content: "\ed3a"; +} + +.icofont-foursquare:before +{ + content: "\ed3b"; +} + +.icofont-friendfeed:before +{ + content: "\ed3c"; +} + +.icofont-ghost:before +{ + content: "\ed3d"; +} + +.icofont-github:before +{ + content: "\ed3e"; +} + +.icofont-gnome:before +{ + content: "\ed3f"; +} + +.icofont-google-buzz:before +{ + content: "\ed40"; +} + +.icofont-google-hangouts:before +{ + content: "\ed41"; +} + +.icofont-google-map:before +{ + content: "\ed42"; +} + +.icofont-google-plus:before +{ + content: "\ed43"; +} + +.icofont-google-talk:before +{ + content: "\ed44"; +} + +.icofont-hype-machine:before +{ + content: "\ed45"; +} + +.icofont-instagram:before +{ + content: "\ed46"; +} + +.icofont-kakaotalk:before +{ + content: "\ed47"; +} + +.icofont-kickstarter:before +{ + content: "\ed48"; +} + +.icofont-kik:before +{ + content: "\ed49"; +} + +.icofont-kiwibox:before +{ + content: "\ed4a"; +} + +.icofont-line-messenger:before +{ + content: "\ed4b"; +} + +.icofont-line:before +{ + content: "\ed4c"; +} + +.icofont-linkedin:before +{ + content: "\ed4d"; +} + +.icofont-linux-mint:before +{ + content: "\ed4e"; +} + +.icofont-live-messenger:before +{ + content: "\ed4f"; +} + +.icofont-livejournal:before +{ + content: "\ed50"; +} + +.icofont-magento:before +{ + content: "\ed51"; +} + +.icofont-meetme:before +{ + content: "\ed52"; +} + +.icofont-meetup:before +{ + content: "\ed53"; +} + +.icofont-mixx:before +{ + content: "\ed54"; +} + +.icofont-newsvine:before +{ + content: "\ed55"; +} + +.icofont-nimbuss:before +{ + content: "\ed56"; +} + +.icofont-odnoklassniki:before +{ + content: "\ed57"; +} + +.icofont-opencart:before +{ + content: "\ed58"; +} + +.icofont-oscommerce:before +{ + content: "\ed59"; +} + +.icofont-pandora:before +{ + content: "\ed5a"; +} + +.icofont-photobucket:before +{ + content: "\ed5b"; +} + +.icofont-picasa:before +{ + content: "\ed5c"; +} + +.icofont-pinterest:before +{ + content: "\ed5d"; +} + +.icofont-prestashop:before +{ + content: "\ed5e"; +} + +.icofont-qik:before +{ + content: "\ed5f"; +} + +.icofont-qq:before +{ + content: "\ed60"; +} + +.icofont-readernaut:before +{ + content: "\ed61"; +} + +.icofont-reddit:before +{ + content: "\ed62"; +} + +.icofont-renren:before +{ + content: "\ed63"; +} + +.icofont-rss:before +{ + content: "\ed64"; +} + +.icofont-shopify:before +{ + content: "\ed65"; +} + +.icofont-silverstripe:before +{ + content: "\ed66"; +} + +.icofont-skype:before +{ + content: "\ed67"; +} + +.icofont-slack:before +{ + content: "\ed68"; +} + +.icofont-slashdot:before +{ + content: "\ed69"; +} + +.icofont-slidshare:before +{ + content: "\ed6a"; +} + +.icofont-smugmug:before +{ + content: "\ed6b"; +} + +.icofont-snapchat:before +{ + content: "\ed6c"; +} + +.icofont-soundcloud:before +{ + content: "\ed6d"; +} + +.icofont-spotify:before +{ + content: "\ed6e"; +} + +.icofont-stack-exchange:before +{ + content: "\ed6f"; +} + +.icofont-stack-overflow:before +{ + content: "\ed70"; +} + +.icofont-steam:before +{ + content: "\ed71"; +} + +.icofont-stumbleupon:before +{ + content: "\ed72"; +} + +.icofont-tagged:before +{ + content: "\ed73"; +} + +.icofont-technorati:before +{ + content: "\ed74"; +} + +.icofont-telegram:before +{ + content: "\ed75"; +} + +.icofont-tinder:before +{ + content: "\ed76"; +} + +.icofont-trello:before +{ + content: "\ed77"; +} + +.icofont-tumblr:before +{ + content: "\ed78"; +} + +.icofont-twitch:before +{ + content: "\ed79"; +} + +.icofont-twitter:before +{ + content: "\ed7a"; +} + +.icofont-typo3:before +{ + content: "\ed7b"; +} + +.icofont-ubercart:before +{ + content: "\ed7c"; +} + +.icofont-viber:before +{ + content: "\ed7d"; +} + +.icofont-viddler:before +{ + content: "\ed7e"; +} + +.icofont-vimeo:before +{ + content: "\ed7f"; +} + +.icofont-vine:before +{ + content: "\ed80"; +} + +.icofont-virb:before +{ + content: "\ed81"; +} + +.icofont-virtuemart:before +{ + content: "\ed82"; +} + +.icofont-vk:before +{ + content: "\ed83"; +} + +.icofont-wechat:before +{ + content: "\ed84"; +} + +.icofont-weibo:before +{ + content: "\ed85"; +} + +.icofont-whatsapp:before +{ + content: "\ed86"; +} + +.icofont-xing:before +{ + content: "\ed87"; +} + +.icofont-yahoo:before +{ + content: "\ed88"; +} + +.icofont-yelp:before +{ + content: "\ed89"; +} + +.icofont-youku:before +{ + content: "\ed8a"; +} + +.icofont-youtube:before +{ + content: "\ed8b"; +} + +.icofont-zencart:before +{ + content: "\ed8c"; +} + +.icofont-badminton-birdie:before +{ + content: "\ed8d"; +} + +.icofont-baseball:before +{ + content: "\ed8e"; +} + +.icofont-baseballer:before +{ + content: "\ed8f"; +} + +.icofont-basketball-hoop:before +{ + content: "\ed90"; +} + +.icofont-basketball:before +{ + content: "\ed91"; +} + +.icofont-billiard-ball:before +{ + content: "\ed92"; +} + +.icofont-boot-alt-1:before +{ + content: "\ed93"; +} + +.icofont-boot-alt-2:before +{ + content: "\ed94"; +} + +.icofont-boot:before +{ + content: "\ed95"; +} + +.icofont-bowling-alt:before +{ + content: "\ed96"; +} + +.icofont-bowling:before +{ + content: "\ed97"; +} + +.icofont-canoe:before +{ + content: "\ed98"; +} + +.icofont-cheer-leader:before +{ + content: "\ed99"; +} + +.icofont-climbing:before +{ + content: "\ed9a"; +} + +.icofont-corner:before +{ + content: "\ed9b"; +} + +.icofont-field-alt:before +{ + content: "\ed9c"; +} + +.icofont-field:before +{ + content: "\ed9d"; +} + +.icofont-football-alt:before +{ + content: "\ed9e"; +} + +.icofont-football-american:before +{ + content: "\ed9f"; +} + +.icofont-football:before +{ + content: "\eda0"; +} + +.icofont-foul:before +{ + content: "\eda1"; +} + +.icofont-goal-keeper:before +{ + content: "\eda2"; +} + +.icofont-goal:before +{ + content: "\eda3"; +} + +.icofont-golf-alt:before +{ + content: "\eda4"; +} + +.icofont-golf-bag:before +{ + content: "\eda5"; +} + +.icofont-golf-cart:before +{ + content: "\eda6"; +} + +.icofont-golf-field:before +{ + content: "\eda7"; +} + +.icofont-golf:before +{ + content: "\eda8"; +} + +.icofont-golfer:before +{ + content: "\eda9"; +} + +.icofont-helmet:before +{ + content: "\edaa"; +} + +.icofont-hockey-alt:before +{ + content: "\edab"; +} + +.icofont-hockey:before +{ + content: "\edac"; +} + +.icofont-ice-skate:before +{ + content: "\edad"; +} + +.icofont-jersey-alt:before +{ + content: "\edae"; +} + +.icofont-jersey:before +{ + content: "\edaf"; +} + +.icofont-jumping:before +{ + content: "\edb0"; +} + +.icofont-kick:before +{ + content: "\edb1"; +} + +.icofont-leg:before +{ + content: "\edb2"; +} + +.icofont-match-review:before +{ + content: "\edb3"; +} + +.icofont-medal-sport:before +{ + content: "\edb4"; +} + +.icofont-offside:before +{ + content: "\edb5"; +} + +.icofont-olympic-logo:before +{ + content: "\edb6"; +} + +.icofont-olympic:before +{ + content: "\edb7"; +} + +.icofont-padding:before +{ + content: "\edb8"; +} + +.icofont-penalty-card:before +{ + content: "\edb9"; +} + +.icofont-racer:before +{ + content: "\edba"; +} + +.icofont-racing-car:before +{ + content: "\edbb"; +} + +.icofont-racing-flag-alt:before +{ + content: "\edbc"; +} + +.icofont-racing-flag:before +{ + content: "\edbd"; +} + +.icofont-racings-wheel:before +{ + content: "\edbe"; +} + +.icofont-referee:before +{ + content: "\edbf"; +} + +.icofont-refree-jersey:before +{ + content: "\edc0"; +} + +.icofont-result-sport:before +{ + content: "\edc1"; +} + +.icofont-rugby-ball:before +{ + content: "\edc2"; +} + +.icofont-rugby-player:before +{ + content: "\edc3"; +} + +.icofont-rugby:before +{ + content: "\edc4"; +} + +.icofont-runner-alt-1:before +{ + content: "\edc5"; +} + +.icofont-runner-alt-2:before +{ + content: "\edc6"; +} + +.icofont-runner:before +{ + content: "\edc7"; +} + +.icofont-score-board:before +{ + content: "\edc8"; +} + +.icofont-skiing-man:before +{ + content: "\edc9"; +} + +.icofont-skydiving-goggles:before +{ + content: "\edca"; +} + +.icofont-snow-mobile:before +{ + content: "\edcb"; +} + +.icofont-steering:before +{ + content: "\edcc"; +} + +.icofont-stopwatch:before +{ + content: "\edcd"; +} + +.icofont-substitute:before +{ + content: "\edce"; +} + +.icofont-swimmer:before +{ + content: "\edcf"; +} + +.icofont-table-tennis:before +{ + content: "\edd0"; +} + +.icofont-team-alt:before +{ + content: "\edd1"; +} + +.icofont-team:before +{ + content: "\edd2"; +} + +.icofont-tennis-player:before +{ + content: "\edd3"; +} + +.icofont-tennis:before +{ + content: "\edd4"; +} + +.icofont-tracking:before +{ + content: "\edd5"; +} + +.icofont-trophy-alt:before +{ + content: "\edd6"; +} + +.icofont-trophy:before +{ + content: "\edd7"; +} + +.icofont-volleyball-alt:before +{ + content: "\edd8"; +} + +.icofont-volleyball-fire:before +{ + content: "\edd9"; +} + +.icofont-volleyball:before +{ + content: "\edda"; +} + +.icofont-water-bottle:before +{ + content: "\eddb"; +} + +.icofont-whistle-alt:before +{ + content: "\eddc"; +} + +.icofont-whistle:before +{ + content: "\eddd"; +} + +.icofont-win-trophy:before +{ + content: "\edde"; +} + +.icofont-align-center:before +{ + content: "\eddf"; +} + +.icofont-align-left:before +{ + content: "\ede0"; +} + +.icofont-align-right:before +{ + content: "\ede1"; +} + +.icofont-all-caps:before +{ + content: "\ede2"; +} + +.icofont-bold:before +{ + content: "\ede3"; +} + +.icofont-brush:before +{ + content: "\ede4"; +} + +.icofont-clip-board:before +{ + content: "\ede5"; +} + +.icofont-code-alt:before +{ + content: "\ede6"; +} + +.icofont-color-bucket:before +{ + content: "\ede7"; +} + +.icofont-color-picker:before +{ + content: "\ede8"; +} + +.icofont-copy-invert:before +{ + content: "\ede9"; +} + +.icofont-copy:before +{ + content: "\edea"; +} + +.icofont-cut:before +{ + content: "\edeb"; +} + +.icofont-delete-alt:before +{ + content: "\edec"; +} + +.icofont-edit-alt:before +{ + content: "\eded"; +} + +.icofont-eraser-alt:before +{ + content: "\edee"; +} + +.icofont-font:before +{ + content: "\edef"; +} + +.icofont-heading:before +{ + content: "\edf0"; +} + +.icofont-indent:before +{ + content: "\edf1"; +} + +.icofont-italic-alt:before +{ + content: "\edf2"; +} + +.icofont-italic:before +{ + content: "\edf3"; +} + +.icofont-justify-all:before +{ + content: "\edf4"; +} + +.icofont-justify-center:before +{ + content: "\edf5"; +} + +.icofont-justify-left:before +{ + content: "\edf6"; +} + +.icofont-justify-right:before +{ + content: "\edf7"; +} + +.icofont-link-broken:before +{ + content: "\edf8"; +} + +.icofont-outdent:before +{ + content: "\edf9"; +} + +.icofont-paper-clip:before +{ + content: "\edfa"; +} + +.icofont-paragraph:before +{ + content: "\edfb"; +} + +.icofont-pin:before +{ + content: "\edfc"; +} + +.icofont-printer:before +{ + content: "\edfd"; +} + +.icofont-redo:before +{ + content: "\edfe"; +} + +.icofont-rotation:before +{ + content: "\edff"; +} + +.icofont-save:before +{ + content: "\ee00"; +} + +.icofont-small-cap:before +{ + content: "\ee01"; +} + +.icofont-strike-through:before +{ + content: "\ee02"; +} + +.icofont-sub-listing:before +{ + content: "\ee03"; +} + +.icofont-subscript:before +{ + content: "\ee04"; +} + +.icofont-superscript:before +{ + content: "\ee05"; +} + +.icofont-table:before +{ + content: "\ee06"; +} + +.icofont-text-height:before +{ + content: "\ee07"; +} + +.icofont-text-width:before +{ + content: "\ee08"; +} + +.icofont-trash:before +{ + content: "\ee09"; +} + +.icofont-underline:before +{ + content: "\ee0a"; +} + +.icofont-undo:before +{ + content: "\ee0b"; +} + +.icofont-air-balloon:before +{ + content: "\ee0c"; +} + +.icofont-airplane-alt:before +{ + content: "\ee0d"; +} + +.icofont-airplane:before +{ + content: "\ee0e"; +} + +.icofont-articulated-truck:before +{ + content: "\ee0f"; +} + +.icofont-auto-mobile:before +{ + content: "\ee10"; +} + +.icofont-auto-rickshaw:before +{ + content: "\ee11"; +} + +.icofont-bicycle-alt-1:before +{ + content: "\ee12"; +} + +.icofont-bicycle-alt-2:before +{ + content: "\ee13"; +} + +.icofont-bicycle:before +{ + content: "\ee14"; +} + +.icofont-bus-alt-1:before +{ + content: "\ee15"; +} + +.icofont-bus-alt-2:before +{ + content: "\ee16"; +} + +.icofont-bus-alt-3:before +{ + content: "\ee17"; +} + +.icofont-bus:before +{ + content: "\ee18"; +} + +.icofont-cab:before +{ + content: "\ee19"; +} + +.icofont-cable-car:before +{ + content: "\ee1a"; +} + +.icofont-car-alt-1:before +{ + content: "\ee1b"; +} + +.icofont-car-alt-2:before +{ + content: "\ee1c"; +} + +.icofont-car-alt-3:before +{ + content: "\ee1d"; +} + +.icofont-car-alt-4:before +{ + content: "\ee1e"; +} + +.icofont-car:before +{ + content: "\ee1f"; +} + +.icofont-delivery-time:before +{ + content: "\ee20"; +} + +.icofont-fast-delivery:before +{ + content: "\ee21"; +} + +.icofont-fire-truck-alt:before +{ + content: "\ee22"; +} + +.icofont-fire-truck:before +{ + content: "\ee23"; +} + +.icofont-free-delivery:before +{ + content: "\ee24"; +} + +.icofont-helicopter:before +{ + content: "\ee25"; +} + +.icofont-motor-bike-alt:before +{ + content: "\ee26"; +} + +.icofont-motor-bike:before +{ + content: "\ee27"; +} + +.icofont-motor-biker:before +{ + content: "\ee28"; +} + +.icofont-oil-truck:before +{ + content: "\ee29"; +} + +.icofont-rickshaw:before +{ + content: "\ee2a"; +} + +.icofont-rocket-alt-1:before +{ + content: "\ee2b"; +} + +.icofont-rocket-alt-2:before +{ + content: "\ee2c"; +} + +.icofont-rocket:before +{ + content: "\ee2d"; +} + +.icofont-sail-boat-alt-1:before +{ + content: "\ee2e"; +} + +.icofont-sail-boat-alt-2:before +{ + content: "\ee2f"; +} + +.icofont-sail-boat:before +{ + content: "\ee30"; +} + +.icofont-scooter:before +{ + content: "\ee31"; +} + +.icofont-sea-plane:before +{ + content: "\ee32"; +} + +.icofont-ship-alt:before +{ + content: "\ee33"; +} + +.icofont-ship:before +{ + content: "\ee34"; +} + +.icofont-speed-boat:before +{ + content: "\ee35"; +} + +.icofont-taxi:before +{ + content: "\ee36"; +} + +.icofont-tractor:before +{ + content: "\ee37"; +} + +.icofont-train-line:before +{ + content: "\ee38"; +} + +.icofont-train-steam:before +{ + content: "\ee39"; +} + +.icofont-tram:before +{ + content: "\ee3a"; +} + +.icofont-truck-alt:before +{ + content: "\ee3b"; +} + +.icofont-truck-loaded:before +{ + content: "\ee3c"; +} + +.icofont-truck:before +{ + content: "\ee3d"; +} + +.icofont-van-alt:before +{ + content: "\ee3e"; +} + +.icofont-van:before +{ + content: "\ee3f"; +} + +.icofont-yacht:before +{ + content: "\ee40"; +} + +.icofont-5-star-hotel:before +{ + content: "\ee41"; +} + +.icofont-air-ticket:before +{ + content: "\ee42"; +} + +.icofont-beach-bed:before +{ + content: "\ee43"; +} + +.icofont-beach:before +{ + content: "\ee44"; +} + +.icofont-camping-vest:before +{ + content: "\ee45"; +} + +.icofont-direction-sign:before +{ + content: "\ee46"; +} + +.icofont-hill-side:before +{ + content: "\ee47"; +} + +.icofont-hill:before +{ + content: "\ee48"; +} + +.icofont-hotel:before +{ + content: "\ee49"; +} + +.icofont-island-alt:before +{ + content: "\ee4a"; +} + +.icofont-island:before +{ + content: "\ee4b"; +} + +.icofont-sandals-female:before +{ + content: "\ee4c"; +} + +.icofont-sandals-male:before +{ + content: "\ee4d"; +} + +.icofont-travelling:before +{ + content: "\ee4e"; +} + +.icofont-breakdown:before +{ + content: "\ee4f"; +} + +.icofont-celsius:before +{ + content: "\ee50"; +} + +.icofont-clouds:before +{ + content: "\ee51"; +} + +.icofont-cloudy:before +{ + content: "\ee52"; +} + +.icofont-dust:before +{ + content: "\ee53"; +} + +.icofont-eclipse:before +{ + content: "\ee54"; +} + +.icofont-fahrenheit:before +{ + content: "\ee55"; +} + +.icofont-forest-fire:before +{ + content: "\ee56"; +} + +.icofont-full-night:before +{ + content: "\ee57"; +} + +.icofont-full-sunny:before +{ + content: "\ee58"; +} + +.icofont-hail-night:before +{ + content: "\ee59"; +} + +.icofont-hail-rainy-night:before +{ + content: "\ee5a"; +} + +.icofont-hail-rainy-sunny:before +{ + content: "\ee5b"; +} + +.icofont-hail-rainy:before +{ + content: "\ee5c"; +} + +.icofont-hail-sunny:before +{ + content: "\ee5d"; +} + +.icofont-hail-thunder-night:before +{ + content: "\ee5e"; +} + +.icofont-hail-thunder-sunny:before +{ + content: "\ee5f"; +} + +.icofont-hail-thunder:before +{ + content: "\ee60"; +} + +.icofont-hail:before +{ + content: "\ee61"; +} + +.icofont-hill-night:before +{ + content: "\ee62"; +} + +.icofont-hill-sunny:before +{ + content: "\ee63"; +} + +.icofont-hurricane:before +{ + content: "\ee64"; +} + +.icofont-meteor:before +{ + content: "\ee65"; +} + +.icofont-night:before +{ + content: "\ee66"; +} + +.icofont-rainy-night:before +{ + content: "\ee67"; +} + +.icofont-rainy-sunny:before +{ + content: "\ee68"; +} + +.icofont-rainy-thunder:before +{ + content: "\ee69"; +} + +.icofont-rainy:before +{ + content: "\ee6a"; +} + +.icofont-snow-alt:before +{ + content: "\ee6b"; +} + +.icofont-snow-flake:before +{ + content: "\ee6c"; +} + +.icofont-snow-temp:before +{ + content: "\ee6d"; +} + +.icofont-snow:before +{ + content: "\ee6e"; +} + +.icofont-snowy-hail:before +{ + content: "\ee6f"; +} + +.icofont-snowy-night-hail:before +{ + content: "\ee70"; +} + +.icofont-snowy-night-rainy:before +{ + content: "\ee71"; +} + +.icofont-snowy-night:before +{ + content: "\ee72"; +} + +.icofont-snowy-rainy:before +{ + content: "\ee73"; +} + +.icofont-snowy-sunny-hail:before +{ + content: "\ee74"; +} + +.icofont-snowy-sunny-rainy:before +{ + content: "\ee75"; +} + +.icofont-snowy-sunny:before +{ + content: "\ee76"; +} + +.icofont-snowy-thunder-night:before +{ + content: "\ee77"; +} + +.icofont-snowy-thunder-sunny:before +{ + content: "\ee78"; +} + +.icofont-snowy-thunder:before +{ + content: "\ee79"; +} + +.icofont-snowy-windy-night:before +{ + content: "\ee7a"; +} + +.icofont-snowy-windy-sunny:before +{ + content: "\ee7b"; +} + +.icofont-snowy-windy:before +{ + content: "\ee7c"; +} + +.icofont-snowy:before +{ + content: "\ee7d"; +} + +.icofont-sun-alt:before +{ + content: "\ee7e"; +} + +.icofont-sun-rise:before +{ + content: "\ee7f"; +} + +.icofont-sun-set:before +{ + content: "\ee80"; +} + +.icofont-sun:before +{ + content: "\ee81"; +} + +.icofont-sunny-day-temp:before +{ + content: "\ee82"; +} + +.icofont-sunny:before +{ + content: "\ee83"; +} + +.icofont-thunder-light:before +{ + content: "\ee84"; +} + +.icofont-tornado:before +{ + content: "\ee85"; +} + +.icofont-umbrella-alt:before +{ + content: "\ee86"; +} + +.icofont-umbrella:before +{ + content: "\ee87"; +} + +.icofont-volcano:before +{ + content: "\ee88"; +} + +.icofont-wave:before +{ + content: "\ee89"; +} + +.icofont-wind-scale-0:before +{ + content: "\ee8a"; +} + +.icofont-wind-scale-1:before +{ + content: "\ee8b"; +} + +.icofont-wind-scale-10:before +{ + content: "\ee8c"; +} + +.icofont-wind-scale-11:before +{ + content: "\ee8d"; +} + +.icofont-wind-scale-12:before +{ + content: "\ee8e"; +} + +.icofont-wind-scale-2:before +{ + content: "\ee8f"; +} + +.icofont-wind-scale-3:before +{ + content: "\ee90"; +} + +.icofont-wind-scale-4:before +{ + content: "\ee91"; +} + +.icofont-wind-scale-5:before +{ + content: "\ee92"; +} + +.icofont-wind-scale-6:before +{ + content: "\ee93"; +} + +.icofont-wind-scale-7:before +{ + content: "\ee94"; +} + +.icofont-wind-scale-8:before +{ + content: "\ee95"; +} + +.icofont-wind-scale-9:before +{ + content: "\ee96"; +} + +.icofont-wind-waves:before +{ + content: "\ee97"; +} + +.icofont-wind:before +{ + content: "\ee98"; +} + +.icofont-windy-hail:before +{ + content: "\ee99"; +} + +.icofont-windy-night:before +{ + content: "\ee9a"; +} + +.icofont-windy-raining:before +{ + content: "\ee9b"; +} + +.icofont-windy-sunny:before +{ + content: "\ee9c"; +} + +.icofont-windy-thunder-raining:before +{ + content: "\ee9d"; +} + +.icofont-windy-thunder:before +{ + content: "\ee9e"; +} + +.icofont-windy:before +{ + content: "\ee9f"; +} + +.icofont-addons:before +{ + content: "\eea0"; +} + +.icofont-address-book:before +{ + content: "\eea1"; +} + +.icofont-adjust:before +{ + content: "\eea2"; +} + +.icofont-alarm:before +{ + content: "\eea3"; +} + +.icofont-anchor:before +{ + content: "\eea4"; +} + +.icofont-archive:before +{ + content: "\eea5"; +} + +.icofont-at:before +{ + content: "\eea6"; +} + +.icofont-attachment:before +{ + content: "\eea7"; +} + +.icofont-audio:before +{ + content: "\eea8"; +} + +.icofont-automation:before +{ + content: "\eea9"; +} + +.icofont-badge:before +{ + content: "\eeaa"; +} + +.icofont-bag-alt:before +{ + content: "\eeab"; +} + +.icofont-bag:before +{ + content: "\eeac"; +} + +.icofont-ban:before +{ + content: "\eead"; +} + +.icofont-bar-code:before +{ + content: "\eeae"; +} + +.icofont-bars:before +{ + content: "\eeaf"; +} + +.icofont-basket:before +{ + content: "\eeb0"; +} + +.icofont-battery-empty:before +{ + content: "\eeb1"; +} + +.icofont-battery-full:before +{ + content: "\eeb2"; +} + +.icofont-battery-half:before +{ + content: "\eeb3"; +} + +.icofont-battery-low:before +{ + content: "\eeb4"; +} + +.icofont-beaker:before +{ + content: "\eeb5"; +} + +.icofont-beard:before +{ + content: "\eeb6"; +} + +.icofont-bed:before +{ + content: "\eeb7"; +} + +.icofont-bell:before +{ + content: "\eeb8"; +} + +.icofont-beverage:before +{ + content: "\eeb9"; +} + +.icofont-bill:before +{ + content: "\eeba"; +} + +.icofont-bin:before +{ + content: "\eebb"; +} + +.icofont-binary:before +{ + content: "\eebc"; +} + +.icofont-binoculars:before +{ + content: "\eebd"; +} + +.icofont-bluetooth:before +{ + content: "\eebe"; +} + +.icofont-bomb:before +{ + content: "\eebf"; +} + +.icofont-book-mark:before +{ + content: "\eec0"; +} + +.icofont-box:before +{ + content: "\eec1"; +} + +.icofont-briefcase:before +{ + content: "\eec2"; +} + +.icofont-broken:before +{ + content: "\eec3"; +} + +.icofont-bucket:before +{ + content: "\eec4"; +} + +.icofont-bucket1:before +{ + content: "\eec5"; +} + +.icofont-bucket2:before +{ + content: "\eec6"; +} + +.icofont-bug:before +{ + content: "\eec7"; +} + +.icofont-building:before +{ + content: "\eec8"; +} + +.icofont-bulb-alt:before +{ + content: "\eec9"; +} + +.icofont-bullet:before +{ + content: "\eeca"; +} + +.icofont-bullhorn:before +{ + content: "\eecb"; +} + +.icofont-bullseye:before +{ + content: "\eecc"; +} + +.icofont-calendar:before +{ + content: "\eecd"; +} + +.icofont-camera-alt:before +{ + content: "\eece"; +} + +.icofont-camera:before +{ + content: "\eecf"; +} + +.icofont-card:before +{ + content: "\eed0"; +} + +.icofont-cart-alt:before +{ + content: "\eed1"; +} + +.icofont-cart:before +{ + content: "\eed2"; +} + +.icofont-cc:before +{ + content: "\eed3"; +} + +.icofont-charging:before +{ + content: "\eed4"; +} + +.icofont-chat:before +{ + content: "\eed5"; +} + +.icofont-check-alt:before +{ + content: "\eed6"; +} + +.icofont-check-circled:before +{ + content: "\eed7"; +} + +.icofont-check:before +{ + content: "\eed8"; +} + +.icofont-checked:before +{ + content: "\eed9"; +} + +.icofont-children-care:before +{ + content: "\eeda"; +} + +.icofont-clip:before +{ + content: "\eedb"; +} + +.icofont-clock-time:before +{ + content: "\eedc"; +} + +.icofont-close-circled:before +{ + content: "\eedd"; +} + +.icofont-close-line-circled:before +{ + content: "\eede"; +} + +.icofont-close-line-squared-alt:before +{ + content: "\eedf"; +} + +.icofont-close-line-squared:before +{ + content: "\eee0"; +} + +.icofont-close-line:before +{ + content: "\eee1"; +} + +.icofont-close-squared-alt:before +{ + content: "\eee2"; +} + +.icofont-close-squared:before +{ + content: "\eee3"; +} + +.icofont-close:before +{ + content: "\eee4"; +} + +.icofont-cloud-download:before +{ + content: "\eee5"; +} + +.icofont-cloud-refresh:before +{ + content: "\eee6"; +} + +.icofont-cloud-upload:before +{ + content: "\eee7"; +} + +.icofont-cloud:before +{ + content: "\eee8"; +} + +.icofont-code-not-allowed:before +{ + content: "\eee9"; +} + +.icofont-code:before +{ + content: "\eeea"; +} + +.icofont-comment:before +{ + content: "\eeeb"; +} + +.icofont-compass-alt:before +{ + content: "\eeec"; +} + +.icofont-compass:before +{ + content: "\eeed"; +} + +.icofont-computer:before +{ + content: "\eeee"; +} + +.icofont-connection:before +{ + content: "\eeef"; +} + +.icofont-console:before +{ + content: "\eef0"; +} + +.icofont-contacts:before +{ + content: "\eef1"; +} + +.icofont-contrast:before +{ + content: "\eef2"; +} + +.icofont-copyright:before +{ + content: "\eef3"; +} + +.icofont-credit-card:before +{ + content: "\eef4"; +} + +.icofont-crop:before +{ + content: "\eef5"; +} + +.icofont-crown:before +{ + content: "\eef6"; +} + +.icofont-cube:before +{ + content: "\eef7"; +} + +.icofont-cubes:before +{ + content: "\eef8"; +} + +.icofont-dashboard-web:before +{ + content: "\eef9"; +} + +.icofont-dashboard:before +{ + content: "\eefa"; +} + +.icofont-data:before +{ + content: "\eefb"; +} + +.icofont-database-add:before +{ + content: "\eefc"; +} + +.icofont-database-locked:before +{ + content: "\eefd"; +} + +.icofont-database-remove:before +{ + content: "\eefe"; +} + +.icofont-database:before +{ + content: "\eeff"; +} + +.icofont-delete:before +{ + content: "\ef00"; +} + +.icofont-diamond:before +{ + content: "\ef01"; +} + +.icofont-dice-multiple:before +{ + content: "\ef02"; +} + +.icofont-dice:before +{ + content: "\ef03"; +} + +.icofont-disc:before +{ + content: "\ef04"; +} + +.icofont-diskette:before +{ + content: "\ef05"; +} + +.icofont-document-folder:before +{ + content: "\ef06"; +} + +.icofont-download-alt:before +{ + content: "\ef07"; +} + +.icofont-download:before +{ + content: "\ef08"; +} + +.icofont-downloaded:before +{ + content: "\ef09"; +} + +.icofont-drag:before +{ + content: "\ef0a"; +} + +.icofont-drag1:before +{ + content: "\ef0b"; +} + +.icofont-drag2:before +{ + content: "\ef0c"; +} + +.icofont-drag3:before +{ + content: "\ef0d"; +} + +.icofont-earth:before +{ + content: "\ef0e"; +} + +.icofont-ebook:before +{ + content: "\ef0f"; +} + +.icofont-edit:before +{ + content: "\ef10"; +} + +.icofont-eject:before +{ + content: "\ef11"; +} + +.icofont-email:before +{ + content: "\ef12"; +} + +.icofont-envelope-open:before +{ + content: "\ef13"; +} + +.icofont-envelope:before +{ + content: "\ef14"; +} + +.icofont-eraser:before +{ + content: "\ef15"; +} + +.icofont-error:before +{ + content: "\ef16"; +} + +.icofont-excavator:before +{ + content: "\ef17"; +} + +.icofont-exchange:before +{ + content: "\ef18"; +} + +.icofont-exclamation-circle:before +{ + content: "\ef19"; +} + +.icofont-exclamation-square:before +{ + content: "\ef1a"; +} + +.icofont-exclamation-tringle:before +{ + content: "\ef1b"; +} + +.icofont-exclamation:before +{ + content: "\ef1c"; +} + +.icofont-exit:before +{ + content: "\ef1d"; +} + +.icofont-expand:before +{ + content: "\ef1e"; +} + +.icofont-external-link:before +{ + content: "\ef1f"; +} + +.icofont-external:before +{ + content: "\ef20"; +} + +.icofont-eye-alt:before +{ + content: "\ef21"; +} + +.icofont-eye-blocked:before +{ + content: "\ef22"; +} + +.icofont-eye-dropper:before +{ + content: "\ef23"; +} + +.icofont-eye:before +{ + content: "\ef24"; +} + +.icofont-favourite:before +{ + content: "\ef25"; +} + +.icofont-fax:before +{ + content: "\ef26"; +} + +.icofont-file-fill:before +{ + content: "\ef27"; +} + +.icofont-film:before +{ + content: "\ef28"; +} + +.icofont-filter:before +{ + content: "\ef29"; +} + +.icofont-fire-alt:before +{ + content: "\ef2a"; +} + +.icofont-fire-burn:before +{ + content: "\ef2b"; +} + +.icofont-fire:before +{ + content: "\ef2c"; +} + +.icofont-flag-alt-1:before +{ + content: "\ef2d"; +} + +.icofont-flag-alt-2:before +{ + content: "\ef2e"; +} + +.icofont-flag:before +{ + content: "\ef2f"; +} + +.icofont-flame-torch:before +{ + content: "\ef30"; +} + +.icofont-flash-light:before +{ + content: "\ef31"; +} + +.icofont-flash:before +{ + content: "\ef32"; +} + +.icofont-flask:before +{ + content: "\ef33"; +} + +.icofont-focus:before +{ + content: "\ef34"; +} + +.icofont-folder-open:before +{ + content: "\ef35"; +} + +.icofont-folder:before +{ + content: "\ef36"; +} + +.icofont-foot-print:before +{ + content: "\ef37"; +} + +.icofont-garbage:before +{ + content: "\ef38"; +} + +.icofont-gear-alt:before +{ + content: "\ef39"; +} + +.icofont-gear:before +{ + content: "\ef3a"; +} + +.icofont-gears:before +{ + content: "\ef3b"; +} + +.icofont-gift:before +{ + content: "\ef3c"; +} + +.icofont-glass:before +{ + content: "\ef3d"; +} + +.icofont-globe:before +{ + content: "\ef3e"; +} + +.icofont-graffiti:before +{ + content: "\ef3f"; +} + +.icofont-grocery:before +{ + content: "\ef40"; +} + +.icofont-hand:before +{ + content: "\ef41"; +} + +.icofont-hanger:before +{ + content: "\ef42"; +} + +.icofont-hard-disk:before +{ + content: "\ef43"; +} + +.icofont-heart-alt:before +{ + content: "\ef44"; +} + +.icofont-heart:before +{ + content: "\ef45"; +} + +.icofont-history:before +{ + content: "\ef46"; +} + +.icofont-home:before +{ + content: "\ef47"; +} + +.icofont-horn:before +{ + content: "\ef48"; +} + +.icofont-hour-glass:before +{ + content: "\ef49"; +} + +.icofont-id:before +{ + content: "\ef4a"; +} + +.icofont-image:before +{ + content: "\ef4b"; +} + +.icofont-inbox:before +{ + content: "\ef4c"; +} + +.icofont-infinite:before +{ + content: "\ef4d"; +} + +.icofont-info-circle:before +{ + content: "\ef4e"; +} + +.icofont-info-square:before +{ + content: "\ef4f"; +} + +.icofont-info:before +{ + content: "\ef50"; +} + +.icofont-institution:before +{ + content: "\ef51"; +} + +.icofont-interface:before +{ + content: "\ef52"; +} + +.icofont-invisible:before +{ + content: "\ef53"; +} + +.icofont-jacket:before +{ + content: "\ef54"; +} + +.icofont-jar:before +{ + content: "\ef55"; +} + +.icofont-jewlery:before +{ + content: "\ef56"; +} + +.icofont-karate:before +{ + content: "\ef57"; +} + +.icofont-key-hole:before +{ + content: "\ef58"; +} + +.icofont-key:before +{ + content: "\ef59"; +} + +.icofont-label:before +{ + content: "\ef5a"; +} + +.icofont-lamp:before +{ + content: "\ef5b"; +} + +.icofont-layers:before +{ + content: "\ef5c"; +} + +.icofont-layout:before +{ + content: "\ef5d"; +} + +.icofont-leaf:before +{ + content: "\ef5e"; +} + +.icofont-leaflet:before +{ + content: "\ef5f"; +} + +.icofont-learn:before +{ + content: "\ef60"; +} + +.icofont-lego:before +{ + content: "\ef61"; +} + +.icofont-lens:before +{ + content: "\ef62"; +} + +.icofont-letter:before +{ + content: "\ef63"; +} + +.icofont-letterbox:before +{ + content: "\ef64"; +} + +.icofont-library:before +{ + content: "\ef65"; +} + +.icofont-license:before +{ + content: "\ef66"; +} + +.icofont-life-bouy:before +{ + content: "\ef67"; +} + +.icofont-life-buoy:before +{ + content: "\ef68"; +} + +.icofont-life-jacket:before +{ + content: "\ef69"; +} + +.icofont-life-ring:before +{ + content: "\ef6a"; +} + +.icofont-light-bulb:before +{ + content: "\ef6b"; +} + +.icofont-lighter:before +{ + content: "\ef6c"; +} + +.icofont-lightning-ray:before +{ + content: "\ef6d"; +} + +.icofont-like:before +{ + content: "\ef6e"; +} + +.icofont-line-height:before +{ + content: "\ef6f"; +} + +.icofont-link-alt:before +{ + content: "\ef70"; +} + +.icofont-link:before +{ + content: "\ef71"; +} + +.icofont-list:before +{ + content: "\ef72"; +} + +.icofont-listening:before +{ + content: "\ef73"; +} + +.icofont-listine-dots:before +{ + content: "\ef74"; +} + +.icofont-listing-box:before +{ + content: "\ef75"; +} + +.icofont-listing-number:before +{ + content: "\ef76"; +} + +.icofont-live-support:before +{ + content: "\ef77"; +} + +.icofont-location-arrow:before +{ + content: "\ef78"; +} + +.icofont-location-pin:before +{ + content: "\ef79"; +} + +.icofont-lock:before +{ + content: "\ef7a"; +} + +.icofont-login:before +{ + content: "\ef7b"; +} + +.icofont-logout:before +{ + content: "\ef7c"; +} + +.icofont-lollipop:before +{ + content: "\ef7d"; +} + +.icofont-long-drive:before +{ + content: "\ef7e"; +} + +.icofont-look:before +{ + content: "\ef7f"; +} + +.icofont-loop:before +{ + content: "\ef80"; +} + +.icofont-luggage:before +{ + content: "\ef81"; +} + +.icofont-lunch:before +{ + content: "\ef82"; +} + +.icofont-lungs:before +{ + content: "\ef83"; +} + +.icofont-magic-alt:before +{ + content: "\ef84"; +} + +.icofont-magic:before +{ + content: "\ef85"; +} + +.icofont-magnet:before +{ + content: "\ef86"; +} + +.icofont-mail-box:before +{ + content: "\ef87"; +} + +.icofont-mail:before +{ + content: "\ef88"; +} + +.icofont-male:before +{ + content: "\ef89"; +} + +.icofont-map-pins:before +{ + content: "\ef8a"; +} + +.icofont-map:before +{ + content: "\ef8b"; +} + +.icofont-maximize:before +{ + content: "\ef8c"; +} + +.icofont-measure:before +{ + content: "\ef8d"; +} + +.icofont-medicine:before +{ + content: "\ef8e"; +} + +.icofont-mega-phone:before +{ + content: "\ef8f"; +} + +.icofont-megaphone-alt:before +{ + content: "\ef90"; +} + +.icofont-megaphone:before +{ + content: "\ef91"; +} + +.icofont-memorial:before +{ + content: "\ef92"; +} + +.icofont-memory-card:before +{ + content: "\ef93"; +} + +.icofont-mic-mute:before +{ + content: "\ef94"; +} + +.icofont-mic:before +{ + content: "\ef95"; +} + +.icofont-military:before +{ + content: "\ef96"; +} + +.icofont-mill:before +{ + content: "\ef97"; +} + +.icofont-minus-circle:before +{ + content: "\ef98"; +} + +.icofont-minus-square:before +{ + content: "\ef99"; +} + +.icofont-minus:before +{ + content: "\ef9a"; +} + +.icofont-mobile-phone:before +{ + content: "\ef9b"; +} + +.icofont-molecule:before +{ + content: "\ef9c"; +} + +.icofont-money:before +{ + content: "\ef9d"; +} + +.icofont-moon:before +{ + content: "\ef9e"; +} + +.icofont-mop:before +{ + content: "\ef9f"; +} + +.icofont-muffin:before +{ + content: "\efa0"; +} + +.icofont-mustache:before +{ + content: "\efa1"; +} + +.icofont-navigation-menu:before +{ + content: "\efa2"; +} + +.icofont-navigation:before +{ + content: "\efa3"; +} + +.icofont-network-tower:before +{ + content: "\efa4"; +} + +.icofont-network:before +{ + content: "\efa5"; +} + +.icofont-news:before +{ + content: "\efa6"; +} + +.icofont-newspaper:before +{ + content: "\efa7"; +} + +.icofont-no-smoking:before +{ + content: "\efa8"; +} + +.icofont-not-allowed:before +{ + content: "\efa9"; +} + +.icofont-notebook:before +{ + content: "\efaa"; +} + +.icofont-notepad:before +{ + content: "\efab"; +} + +.icofont-notification:before +{ + content: "\efac"; +} + +.icofont-numbered:before +{ + content: "\efad"; +} + +.icofont-opposite:before +{ + content: "\efae"; +} + +.icofont-optic:before +{ + content: "\efaf"; +} + +.icofont-options:before +{ + content: "\efb0"; +} + +.icofont-package:before +{ + content: "\efb1"; +} + +.icofont-page:before +{ + content: "\efb2"; +} + +.icofont-paint:before +{ + content: "\efb3"; +} + +.icofont-paper-plane:before +{ + content: "\efb4"; +} + +.icofont-paperclip:before +{ + content: "\efb5"; +} + +.icofont-papers:before +{ + content: "\efb6"; +} + +.icofont-pay:before +{ + content: "\efb7"; +} + +.icofont-penguin-linux:before +{ + content: "\efb8"; +} + +.icofont-pestle:before +{ + content: "\efb9"; +} + +.icofont-phone-circle:before +{ + content: "\efba"; +} + +.icofont-phone:before +{ + content: "\efbb"; +} + +.icofont-picture:before +{ + content: "\efbc"; +} + +.icofont-pine:before +{ + content: "\efbd"; +} + +.icofont-pixels:before +{ + content: "\efbe"; +} + +.icofont-plugin:before +{ + content: "\efbf"; +} + +.icofont-plus-circle:before +{ + content: "\efc0"; +} + +.icofont-plus-square:before +{ + content: "\efc1"; +} + +.icofont-plus:before +{ + content: "\efc2"; +} + +.icofont-polygonal:before +{ + content: "\efc3"; +} + +.icofont-power:before +{ + content: "\efc4"; +} + +.icofont-price:before +{ + content: "\efc5"; +} + +.icofont-print:before +{ + content: "\efc6"; +} + +.icofont-puzzle:before +{ + content: "\efc7"; +} + +.icofont-qr-code:before +{ + content: "\efc8"; +} + +.icofont-queen:before +{ + content: "\efc9"; +} + +.icofont-question-circle:before +{ + content: "\efca"; +} + +.icofont-question-square:before +{ + content: "\efcb"; +} + +.icofont-question:before +{ + content: "\efcc"; +} + +.icofont-quote-left:before +{ + content: "\efcd"; +} + +.icofont-quote-right:before +{ + content: "\efce"; +} + +.icofont-random:before +{ + content: "\efcf"; +} + +.icofont-recycle:before +{ + content: "\efd0"; +} + +.icofont-refresh:before +{ + content: "\efd1"; +} + +.icofont-repair:before +{ + content: "\efd2"; +} + +.icofont-reply-all:before +{ + content: "\efd3"; +} + +.icofont-reply:before +{ + content: "\efd4"; +} + +.icofont-resize:before +{ + content: "\efd5"; +} + +.icofont-responsive:before +{ + content: "\efd6"; +} + +.icofont-retweet:before +{ + content: "\efd7"; +} + +.icofont-road:before +{ + content: "\efd8"; +} + +.icofont-robot:before +{ + content: "\efd9"; +} + +.icofont-royal:before +{ + content: "\efda"; +} + +.icofont-rss-feed:before +{ + content: "\efdb"; +} + +.icofont-safety:before +{ + content: "\efdc"; +} + +.icofont-sale-discount:before +{ + content: "\efdd"; +} + +.icofont-satellite:before +{ + content: "\efde"; +} + +.icofont-send-mail:before +{ + content: "\efdf"; +} + +.icofont-server:before +{ + content: "\efe0"; +} + +.icofont-settings-alt:before +{ + content: "\efe1"; +} + +.icofont-settings:before +{ + content: "\efe2"; +} + +.icofont-share-alt:before +{ + content: "\efe3"; +} + +.icofont-share-boxed:before +{ + content: "\efe4"; +} + +.icofont-share:before +{ + content: "\efe5"; +} + +.icofont-shield:before +{ + content: "\efe6"; +} + +.icofont-shopping-cart:before +{ + content: "\efe7"; +} + +.icofont-sign-in:before +{ + content: "\efe8"; +} + +.icofont-sign-out:before +{ + content: "\efe9"; +} + +.icofont-signal:before +{ + content: "\efea"; +} + +.icofont-site-map:before +{ + content: "\efeb"; +} + +.icofont-smart-phone:before +{ + content: "\efec"; +} + +.icofont-soccer:before +{ + content: "\efed"; +} + +.icofont-sort-alt:before +{ + content: "\efee"; +} + +.icofont-sort:before +{ + content: "\efef"; +} + +.icofont-space:before +{ + content: "\eff0"; +} + +.icofont-spanner:before +{ + content: "\eff1"; +} + +.icofont-speech-comments:before +{ + content: "\eff2"; +} + +.icofont-speed-meter:before +{ + content: "\eff3"; +} + +.icofont-spinner-alt-1:before +{ + content: "\eff4"; +} + +.icofont-spinner-alt-2:before +{ + content: "\eff5"; +} + +.icofont-spinner-alt-3:before +{ + content: "\eff6"; +} + +.icofont-spinner-alt-4:before +{ + content: "\eff7"; +} + +.icofont-spinner-alt-5:before +{ + content: "\eff8"; +} + +.icofont-spinner-alt-6:before +{ + content: "\eff9"; +} + +.icofont-spinner:before +{ + content: "\effa"; +} + +.icofont-spreadsheet:before +{ + content: "\effb"; +} + +.icofont-square:before +{ + content: "\effc"; +} + +.icofont-ssl-security:before +{ + content: "\effd"; +} + +.icofont-star-alt-1:before +{ + content: "\effe"; +} + +.icofont-star-alt-2:before +{ + content: "\efff"; +} + +.icofont-star:before +{ + content: "\f000"; +} + +.icofont-street-view:before +{ + content: "\f001"; +} + +.icofont-support-faq:before +{ + content: "\f002"; +} + +.icofont-tack-pin:before +{ + content: "\f003"; +} + +.icofont-tag:before +{ + content: "\f004"; +} + +.icofont-tags:before +{ + content: "\f005"; +} + +.icofont-tasks-alt:before +{ + content: "\f006"; +} + +.icofont-tasks:before +{ + content: "\f007"; +} + +.icofont-telephone:before +{ + content: "\f008"; +} + +.icofont-telescope:before +{ + content: "\f009"; +} + +.icofont-terminal:before +{ + content: "\f00a"; +} + +.icofont-thumbs-down:before +{ + content: "\f00b"; +} + +.icofont-thumbs-up:before +{ + content: "\f00c"; +} + +.icofont-tick-boxed:before +{ + content: "\f00d"; +} + +.icofont-tick-mark:before +{ + content: "\f00e"; +} + +.icofont-ticket:before +{ + content: "\f00f"; +} + +.icofont-tie:before +{ + content: "\f010"; +} + +.icofont-toggle-off:before +{ + content: "\f011"; +} + +.icofont-toggle-on:before +{ + content: "\f012"; +} + +.icofont-tools-alt-2:before +{ + content: "\f013"; +} + +.icofont-tools:before +{ + content: "\f014"; +} + +.icofont-touch:before +{ + content: "\f015"; +} + +.icofont-traffic-light:before +{ + content: "\f016"; +} + +.icofont-transparent:before +{ + content: "\f017"; +} + +.icofont-tree:before +{ + content: "\f018"; +} + +.icofont-unique-idea:before +{ + content: "\f019"; +} + +.icofont-unlock:before +{ + content: "\f01a"; +} + +.icofont-unlocked:before +{ + content: "\f01b"; +} + +.icofont-upload-alt:before +{ + content: "\f01c"; +} + +.icofont-upload:before +{ + content: "\f01d"; +} + +.icofont-usb-drive:before +{ + content: "\f01e"; +} + +.icofont-usb:before +{ + content: "\f01f"; +} + +.icofont-vector-path:before +{ + content: "\f020"; +} + +.icofont-verification-check:before +{ + content: "\f021"; +} + +.icofont-wall-clock:before +{ + content: "\f022"; +} + +.icofont-wall:before +{ + content: "\f023"; +} + +.icofont-wallet:before +{ + content: "\f024"; +} + +.icofont-warning-alt:before +{ + content: "\f025"; +} + +.icofont-warning:before +{ + content: "\f026"; +} + +.icofont-water-drop:before +{ + content: "\f027"; +} + +.icofont-web:before +{ + content: "\f028"; +} + +.icofont-wheelchair:before +{ + content: "\f029"; +} + +.icofont-wifi-alt:before +{ + content: "\f02a"; +} + +.icofont-wifi:before +{ + content: "\f02b"; +} + +.icofont-world:before +{ + content: "\f02c"; +} + +.icofont-zigzag:before +{ + content: "\f02d"; +} + +.icofont-zipped:before +{ + content: "\f02e"; +} + +.icofont-xs +{ + font-size: .5em; +} + +.icofont-sm +{ + font-size: .75em; +} + +.icofont-md +{ + font-size: 1.25em; +} + +.icofont-lg +{ + font-size: 1.5em; +} + +.icofont-1x +{ + font-size: 1em; +} + +.icofont-2x +{ + font-size: 2em; +} + +.icofont-3x +{ + font-size: 3em; +} + +.icofont-4x +{ + font-size: 4em; +} + +.icofont-5x +{ + font-size: 5em; +} + +.icofont-6x +{ + font-size: 6em; +} + +.icofont-7x +{ + font-size: 7em; +} + +.icofont-8x +{ + font-size: 8em; +} + +.icofont-9x +{ + font-size: 9em; +} + +.icofont-10x +{ + font-size: 10em; +} + +.icofont-fw +{ + text-align: center; + width: 1.25em; +} + +.icofont-ul +{ + list-style-type: none; + padding-left: 0; + margin-left: 0; +} + +.icofont-ul > li +{ + position: relative; + line-height: 2em; +} + +.icofont-ul > li .icofont +{ + display: inline-block; + vertical-align: middle; +} + +.icofont-border +{ + border: solid 0.08em #f1f1f1; + border-radius: .1em; + padding: .2em .25em .15em; +} + +.icofont-pull-left +{ + float: left; +} + +.icofont-pull-right +{ + float: right; +} + +.icofont.icofont-pull-left +{ + margin-right: .3em; +} + +.icofont.icofont-pull-right +{ + margin-left: .3em; +} + +.icofont-spin +{ + -webkit-animation: icofont-spin 2s infinite linear; + animation: icofont-spin 2s infinite linear; + display: inline-block; +} + +.icofont-pulse +{ + -webkit-animation: icofont-spin 1s infinite steps(8); + animation: icofont-spin 1s infinite steps(8); + display: inline-block; +} + +@-webkit-keyframes icofont-spin +{ + 0% + { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + + 100% + { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes icofont-spin +{ + 0% + { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + + 100% + { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +.icofont-rotate-90 +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} + +.icofont-rotate-180 +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); +} + +.icofont-rotate-270 +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); +} + +.icofont-flip-horizontal +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +.icofont-flip-vertical +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); +} + +.icofont-flip-horizontal.icofont-flip-vertical +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); +} + +:root .icofont-rotate-90, + :root .icofont-rotate-180, + :root .icofont-rotate-270, + :root .icofont-flip-horizontal, + :root .icofont-flip-vertical +{ + -webkit-filter: none; + filter: none; + display: inline-block; +} + +.icofont-inverse +{ + color: #fff; +} + +.sr-only +{ + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +.sr-only-focusable:active, + .sr-only-focusable:focus +{ + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; +} + \ No newline at end of file diff --git a/hyperglass/static/css/icofont/icofont.min.css b/hyperglass/static/css/icofont/icofont.min.css new file mode 100644 index 0000000..2a075a5 --- /dev/null +++ b/hyperglass/static/css/icofont/icofont.min.css @@ -0,0 +1,7 @@ +/*! +* @package IcoFont +* @version 1.0.1 +* @author IcoFont https://icofont.com +* @copyright Copyright (c) 2015 - 2018 IcoFont +* @license - https://icofont.com/license/ +*/@font-face{font-family:IcoFont;font-weight:400;font-style:Regular;src:url(fonts/icofont.woff2) format("woff2"),url(fonts/icofont.woff) format("woff")}[class*=" icofont-"],[class^=icofont-]{font-family:IcoFont!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;line-height:1;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased}.icofont-angry-monster:before{content:"\e800"}.icofont-bathtub:before{content:"\e801"}.icofont-bird-wings:before{content:"\e802"}.icofont-bow:before{content:"\e803"}.icofont-castle:before{content:"\e804"}.icofont-circuit:before{content:"\e805"}.icofont-crown-king:before{content:"\e806"}.icofont-crown-queen:before{content:"\e807"}.icofont-dart:before{content:"\e808"}.icofont-disability-race:before{content:"\e809"}.icofont-diving-goggle:before{content:"\e80a"}.icofont-eye-open:before{content:"\e80b"}.icofont-flora-flower:before{content:"\e80c"}.icofont-flora:before{content:"\e80d"}.icofont-gift-box:before{content:"\e80e"}.icofont-halloween-pumpkin:before{content:"\e80f"}.icofont-hand-power:before{content:"\e810"}.icofont-hand-thunder:before{content:"\e811"}.icofont-king-monster:before{content:"\e812"}.icofont-love:before{content:"\e813"}.icofont-magician-hat:before{content:"\e814"}.icofont-native-american:before{content:"\e815"}.icofont-owl-look:before{content:"\e816"}.icofont-phoenix:before{content:"\e817"}.icofont-robot-face:before{content:"\e818"}.icofont-sand-clock:before{content:"\e819"}.icofont-shield-alt:before{content:"\e81a"}.icofont-ship-wheel:before{content:"\e81b"}.icofont-skull-danger:before{content:"\e81c"}.icofont-skull-face:before{content:"\e81d"}.icofont-snowmobile:before{content:"\e81e"}.icofont-space-shuttle:before{content:"\e81f"}.icofont-star-shape:before{content:"\e820"}.icofont-swirl:before{content:"\e821"}.icofont-tattoo-wing:before{content:"\e822"}.icofont-throne:before{content:"\e823"}.icofont-tree-alt:before{content:"\e824"}.icofont-triangle:before{content:"\e825"}.icofont-unity-hand:before{content:"\e826"}.icofont-weed:before{content:"\e827"}.icofont-woman-bird:before{content:"\e828"}.icofont-bat:before{content:"\e829"}.icofont-bear-face:before{content:"\e82a"}.icofont-bear-tracks:before{content:"\e82b"}.icofont-bear:before{content:"\e82c"}.icofont-bird-alt:before{content:"\e82d"}.icofont-bird-flying:before{content:"\e82e"}.icofont-bird:before{content:"\e82f"}.icofont-birds:before{content:"\e830"}.icofont-bone:before{content:"\e831"}.icofont-bull:before{content:"\e832"}.icofont-butterfly-alt:before{content:"\e833"}.icofont-butterfly:before{content:"\e834"}.icofont-camel-alt:before{content:"\e835"}.icofont-camel-head:before{content:"\e836"}.icofont-camel:before{content:"\e837"}.icofont-cat-alt-1:before{content:"\e838"}.icofont-cat-alt-2:before{content:"\e839"}.icofont-cat-alt-3:before{content:"\e83a"}.icofont-cat-dog:before{content:"\e83b"}.icofont-cat-face:before{content:"\e83c"}.icofont-cat:before{content:"\e83d"}.icofont-cow-head:before{content:"\e83e"}.icofont-cow:before{content:"\e83f"}.icofont-crab:before{content:"\e840"}.icofont-crocodile:before{content:"\e841"}.icofont-deer-head:before{content:"\e842"}.icofont-dog-alt:before{content:"\e843"}.icofont-dog-barking:before{content:"\e844"}.icofont-dog:before{content:"\e845"}.icofont-dolphin:before{content:"\e846"}.icofont-duck-tracks:before{content:"\e847"}.icofont-eagle-head:before{content:"\e848"}.icofont-eaten-fish:before{content:"\e849"}.icofont-elephant-alt:before{content:"\e84a"}.icofont-elephant-head-alt:before{content:"\e84b"}.icofont-elephant-head:before{content:"\e84c"}.icofont-elephant:before{content:"\e84d"}.icofont-elk:before{content:"\e84e"}.icofont-fish-1:before{content:"\e84f"}.icofont-fish-2:before{content:"\e850"}.icofont-fish-3:before{content:"\e851"}.icofont-fish-4:before{content:"\e852"}.icofont-fish-5:before{content:"\e853"}.icofont-fish:before{content:"\e854"}.icofont-fox-alt:before{content:"\e855"}.icofont-fox:before{content:"\e856"}.icofont-frog-tracks:before{content:"\e857"}.icofont-frog:before{content:"\e858"}.icofont-froggy:before{content:"\e859"}.icofont-giraffe-head-1:before{content:"\e85a"}.icofont-giraffe-head-2:before{content:"\e85b"}.icofont-giraffe-head:before{content:"\e85c"}.icofont-giraffe:before{content:"\e85d"}.icofont-goat-head:before{content:"\e85e"}.icofont-gorilla:before{content:"\e85f"}.icofont-hen-tracks:before{content:"\e860"}.icofont-horse-head-1:before{content:"\e861"}.icofont-horse-head-2:before{content:"\e862"}.icofont-horse-head:before{content:"\e863"}.icofont-horse-tracks:before{content:"\e864"}.icofont-jellyfish:before{content:"\e865"}.icofont-kangaroo:before{content:"\e866"}.icofont-lemur:before{content:"\e867"}.icofont-lion-head-1:before{content:"\e868"}.icofont-lion-head-2:before{content:"\e869"}.icofont-lion-head:before{content:"\e86a"}.icofont-lion:before{content:"\e86b"}.icofont-monkey-2:before{content:"\e86c"}.icofont-monkey-3:before{content:"\e86d"}.icofont-monkey-face:before{content:"\e86e"}.icofont-monkey:before{content:"\e86f"}.icofont-octopus-alt:before{content:"\e870"}.icofont-octopus:before{content:"\e871"}.icofont-owl:before{content:"\e872"}.icofont-panda-face:before{content:"\e873"}.icofont-panda:before{content:"\e874"}.icofont-panther:before{content:"\e875"}.icofont-parrot-lip:before{content:"\e876"}.icofont-parrot:before{content:"\e877"}.icofont-paw:before{content:"\e878"}.icofont-pelican:before{content:"\e879"}.icofont-penguin:before{content:"\e87a"}.icofont-pig-face:before{content:"\e87b"}.icofont-pig:before{content:"\e87c"}.icofont-pigeon-1:before{content:"\e87d"}.icofont-pigeon-2:before{content:"\e87e"}.icofont-pigeon:before{content:"\e87f"}.icofont-rabbit:before{content:"\e880"}.icofont-rat:before{content:"\e881"}.icofont-rhino-head:before{content:"\e882"}.icofont-rhino:before{content:"\e883"}.icofont-rooster:before{content:"\e884"}.icofont-seahorse:before{content:"\e885"}.icofont-seal:before{content:"\e886"}.icofont-shrimp-alt:before{content:"\e887"}.icofont-shrimp:before{content:"\e888"}.icofont-snail-1:before{content:"\e889"}.icofont-snail-2:before{content:"\e88a"}.icofont-snail-3:before{content:"\e88b"}.icofont-snail:before{content:"\e88c"}.icofont-snake:before{content:"\e88d"}.icofont-squid:before{content:"\e88e"}.icofont-squirrel:before{content:"\e88f"}.icofont-tiger-face:before{content:"\e890"}.icofont-tiger:before{content:"\e891"}.icofont-turtle:before{content:"\e892"}.icofont-whale:before{content:"\e893"}.icofont-woodpecker:before{content:"\e894"}.icofont-zebra:before{content:"\e895"}.icofont-brand-acer:before{content:"\e896"}.icofont-brand-adidas:before{content:"\e897"}.icofont-brand-adobe:before{content:"\e898"}.icofont-brand-air-new-zealand:before{content:"\e899"}.icofont-brand-airbnb:before{content:"\e89a"}.icofont-brand-aircell:before{content:"\e89b"}.icofont-brand-airtel:before{content:"\e89c"}.icofont-brand-alcatel:before{content:"\e89d"}.icofont-brand-alibaba:before{content:"\e89e"}.icofont-brand-aliexpress:before{content:"\e89f"}.icofont-brand-alipay:before{content:"\e8a0"}.icofont-brand-amazon:before{content:"\e8a1"}.icofont-brand-amd:before{content:"\e8a2"}.icofont-brand-american-airlines:before{content:"\e8a3"}.icofont-brand-android-robot:before{content:"\e8a4"}.icofont-brand-android:before{content:"\e8a5"}.icofont-brand-aol:before{content:"\e8a6"}.icofont-brand-apple:before{content:"\e8a7"}.icofont-brand-appstore:before{content:"\e8a8"}.icofont-brand-asus:before{content:"\e8a9"}.icofont-brand-ati:before{content:"\e8aa"}.icofont-brand-att:before{content:"\e8ab"}.icofont-brand-audi:before{content:"\e8ac"}.icofont-brand-axiata:before{content:"\e8ad"}.icofont-brand-bada:before{content:"\e8ae"}.icofont-brand-bbc:before{content:"\e8af"}.icofont-brand-bing:before{content:"\e8b0"}.icofont-brand-blackberry:before{content:"\e8b1"}.icofont-brand-bmw:before{content:"\e8b2"}.icofont-brand-box:before{content:"\e8b3"}.icofont-brand-burger-king:before{content:"\e8b4"}.icofont-brand-business-insider:before{content:"\e8b5"}.icofont-brand-buzzfeed:before{content:"\e8b6"}.icofont-brand-cannon:before{content:"\e8b7"}.icofont-brand-casio:before{content:"\e8b8"}.icofont-brand-china-mobile:before{content:"\e8b9"}.icofont-brand-china-telecom:before{content:"\e8ba"}.icofont-brand-china-unicom:before{content:"\e8bb"}.icofont-brand-cisco:before{content:"\e8bc"}.icofont-brand-citibank:before{content:"\e8bd"}.icofont-brand-cnet:before{content:"\e8be"}.icofont-brand-cnn:before{content:"\e8bf"}.icofont-brand-cocal-cola:before{content:"\e8c0"}.icofont-brand-compaq:before{content:"\e8c1"}.icofont-brand-debian:before{content:"\e8c2"}.icofont-brand-delicious:before{content:"\e8c3"}.icofont-brand-dell:before{content:"\e8c4"}.icofont-brand-designbump:before{content:"\e8c5"}.icofont-brand-designfloat:before{content:"\e8c6"}.icofont-brand-disney:before{content:"\e8c7"}.icofont-brand-dodge:before{content:"\e8c8"}.icofont-brand-dove:before{content:"\e8c9"}.icofont-brand-drupal:before{content:"\e8ca"}.icofont-brand-ebay:before{content:"\e8cb"}.icofont-brand-eleven:before{content:"\e8cc"}.icofont-brand-emirates:before{content:"\e8cd"}.icofont-brand-espn:before{content:"\e8ce"}.icofont-brand-etihad-airways:before{content:"\e8cf"}.icofont-brand-etisalat:before{content:"\e8d0"}.icofont-brand-etsy:before{content:"\e8d1"}.icofont-brand-fastrack:before{content:"\e8d2"}.icofont-brand-fedex:before{content:"\e8d3"}.icofont-brand-ferrari:before{content:"\e8d4"}.icofont-brand-fitbit:before{content:"\e8d5"}.icofont-brand-flikr:before{content:"\e8d6"}.icofont-brand-forbes:before{content:"\e8d7"}.icofont-brand-foursquare:before{content:"\e8d8"}.icofont-brand-foxconn:before{content:"\e8d9"}.icofont-brand-fujitsu:before{content:"\e8da"}.icofont-brand-general-electric:before{content:"\e8db"}.icofont-brand-gillette:before{content:"\e8dc"}.icofont-brand-gizmodo:before{content:"\e8dd"}.icofont-brand-gnome:before{content:"\e8de"}.icofont-brand-google:before{content:"\e8df"}.icofont-brand-gopro:before{content:"\e8e0"}.icofont-brand-gucci:before{content:"\e8e1"}.icofont-brand-hallmark:before{content:"\e8e2"}.icofont-brand-hi5:before{content:"\e8e3"}.icofont-brand-honda:before{content:"\e8e4"}.icofont-brand-hp:before{content:"\e8e5"}.icofont-brand-hsbc:before{content:"\e8e6"}.icofont-brand-htc:before{content:"\e8e7"}.icofont-brand-huawei:before{content:"\e8e8"}.icofont-brand-hulu:before{content:"\e8e9"}.icofont-brand-hyundai:before{content:"\e8ea"}.icofont-brand-ibm:before{content:"\e8eb"}.icofont-brand-icofont:before{content:"\e8ec"}.icofont-brand-icq:before{content:"\e8ed"}.icofont-brand-ikea:before{content:"\e8ee"}.icofont-brand-imdb:before{content:"\e8ef"}.icofont-brand-indiegogo:before{content:"\e8f0"}.icofont-brand-intel:before{content:"\e8f1"}.icofont-brand-ipair:before{content:"\e8f2"}.icofont-brand-jaguar:before{content:"\e8f3"}.icofont-brand-java:before{content:"\e8f4"}.icofont-brand-joomla:before{content:"\e8f5"}.icofont-brand-kickstarter:before{content:"\e8f6"}.icofont-brand-kik:before{content:"\e8f7"}.icofont-brand-lastfm:before{content:"\e8f8"}.icofont-brand-lego:before{content:"\e8f9"}.icofont-brand-lenovo:before{content:"\e8fa"}.icofont-brand-levis:before{content:"\e8fb"}.icofont-brand-lexus:before{content:"\e8fc"}.icofont-brand-lg:before{content:"\e8fd"}.icofont-brand-life-hacker:before{content:"\e8fe"}.icofont-brand-linux-mint:before{content:"\e8ff"}.icofont-brand-linux:before{content:"\e900"}.icofont-brand-lionix:before{content:"\e901"}.icofont-brand-loreal:before{content:"\e902"}.icofont-brand-louis-vuitton:before{content:"\e903"}.icofont-brand-mac-os:before{content:"\e904"}.icofont-brand-marvel-app:before{content:"\e905"}.icofont-brand-mashable:before{content:"\e906"}.icofont-brand-mazda:before{content:"\e907"}.icofont-brand-mcdonals:before{content:"\e908"}.icofont-brand-mercedes:before{content:"\e909"}.icofont-brand-micromax:before{content:"\e90a"}.icofont-brand-microsoft:before{content:"\e90b"}.icofont-brand-mobileme:before{content:"\e90c"}.icofont-brand-mobily:before{content:"\e90d"}.icofont-brand-motorola:before{content:"\e90e"}.icofont-brand-msi:before{content:"\e90f"}.icofont-brand-mts:before{content:"\e910"}.icofont-brand-myspace:before{content:"\e911"}.icofont-brand-mytv:before{content:"\e912"}.icofont-brand-nasa:before{content:"\e913"}.icofont-brand-natgeo:before{content:"\e914"}.icofont-brand-nbc:before{content:"\e915"}.icofont-brand-nescafe:before{content:"\e916"}.icofont-brand-nestle:before{content:"\e917"}.icofont-brand-netflix:before{content:"\e918"}.icofont-brand-nexus:before{content:"\e919"}.icofont-brand-nike:before{content:"\e91a"}.icofont-brand-nokia:before{content:"\e91b"}.icofont-brand-nvidia:before{content:"\e91c"}.icofont-brand-omega:before{content:"\e91d"}.icofont-brand-opensuse:before{content:"\e91e"}.icofont-brand-oracle:before{content:"\e91f"}.icofont-brand-panasonic:before{content:"\e920"}.icofont-brand-paypal:before{content:"\e921"}.icofont-brand-pepsi:before{content:"\e922"}.icofont-brand-philips:before{content:"\e923"}.icofont-brand-pizza-hut:before{content:"\e924"}.icofont-brand-playstation:before{content:"\e925"}.icofont-brand-puma:before{content:"\e926"}.icofont-brand-qatar-air:before{content:"\e927"}.icofont-brand-qvc:before{content:"\e928"}.icofont-brand-readernaut:before{content:"\e929"}.icofont-brand-redbull:before{content:"\e92a"}.icofont-brand-reebok:before{content:"\e92b"}.icofont-brand-reuters:before{content:"\e92c"}.icofont-brand-samsung:before{content:"\e92d"}.icofont-brand-sap:before{content:"\e92e"}.icofont-brand-saudia-airlines:before{content:"\e92f"}.icofont-brand-scribd:before{content:"\e930"}.icofont-brand-shell:before{content:"\e931"}.icofont-brand-siemens:before{content:"\e932"}.icofont-brand-sk-telecom:before{content:"\e933"}.icofont-brand-slideshare:before{content:"\e934"}.icofont-brand-smashing-magazine:before{content:"\e935"}.icofont-brand-snapchat:before{content:"\e936"}.icofont-brand-sony-ericsson:before{content:"\e937"}.icofont-brand-sony:before{content:"\e938"}.icofont-brand-soundcloud:before{content:"\e939"}.icofont-brand-sprint:before{content:"\e93a"}.icofont-brand-squidoo:before{content:"\e93b"}.icofont-brand-starbucks:before{content:"\e93c"}.icofont-brand-stc:before{content:"\e93d"}.icofont-brand-steam:before{content:"\e93e"}.icofont-brand-suzuki:before{content:"\e93f"}.icofont-brand-symbian:before{content:"\e940"}.icofont-brand-t-mobile:before{content:"\e941"}.icofont-brand-tango:before{content:"\e942"}.icofont-brand-target:before{content:"\e943"}.icofont-brand-tata-indicom:before{content:"\e944"}.icofont-brand-techcrunch:before{content:"\e945"}.icofont-brand-telenor:before{content:"\e946"}.icofont-brand-teliasonera:before{content:"\e947"}.icofont-brand-tesla:before{content:"\e948"}.icofont-brand-the-verge:before{content:"\e949"}.icofont-brand-thenextweb:before{content:"\e94a"}.icofont-brand-toshiba:before{content:"\e94b"}.icofont-brand-toyota:before{content:"\e94c"}.icofont-brand-tribenet:before{content:"\e94d"}.icofont-brand-ubuntu:before{content:"\e94e"}.icofont-brand-unilever:before{content:"\e94f"}.icofont-brand-vaio:before{content:"\e950"}.icofont-brand-verizon:before{content:"\e951"}.icofont-brand-viber:before{content:"\e952"}.icofont-brand-vodafone:before{content:"\e953"}.icofont-brand-volkswagen:before{content:"\e954"}.icofont-brand-walmart:before{content:"\e955"}.icofont-brand-warnerbros:before{content:"\e956"}.icofont-brand-whatsapp:before{content:"\e957"}.icofont-brand-wikipedia:before{content:"\e958"}.icofont-brand-windows:before{content:"\e959"}.icofont-brand-wire:before{content:"\e95a"}.icofont-brand-wordpress:before{content:"\e95b"}.icofont-brand-xiaomi:before{content:"\e95c"}.icofont-brand-yahoobuzz:before{content:"\e95d"}.icofont-brand-yamaha:before{content:"\e95e"}.icofont-brand-youtube:before{content:"\e95f"}.icofont-brand-zain:before{content:"\e960"}.icofont-bank-alt:before{content:"\e961"}.icofont-bank:before{content:"\e962"}.icofont-barcode:before{content:"\e963"}.icofont-bill-alt:before{content:"\e964"}.icofont-billboard:before{content:"\e965"}.icofont-briefcase-1:before{content:"\e966"}.icofont-briefcase-2:before{content:"\e967"}.icofont-businessman:before{content:"\e968"}.icofont-businesswoman:before{content:"\e969"}.icofont-chair:before{content:"\e96a"}.icofont-coins:before{content:"\e96b"}.icofont-company:before{content:"\e96c"}.icofont-contact-add:before{content:"\e96d"}.icofont-files-stack:before{content:"\e96e"}.icofont-handshake-deal:before{content:"\e96f"}.icofont-id-card:before{content:"\e970"}.icofont-meeting-add:before{content:"\e971"}.icofont-money-bag:before{content:"\e972"}.icofont-pie-chart:before{content:"\e973"}.icofont-presentation-alt:before{content:"\e974"}.icofont-presentation:before{content:"\e975"}.icofont-stamp:before{content:"\e976"}.icofont-stock-mobile:before{content:"\e977"}.icofont-chart-arrows-axis:before{content:"\e978"}.icofont-chart-bar-graph:before{content:"\e979"}.icofont-chart-flow-1:before{content:"\e97a"}.icofont-chart-flow-2:before{content:"\e97b"}.icofont-chart-flow:before{content:"\e97c"}.icofont-chart-growth:before{content:"\e97d"}.icofont-chart-histogram-alt:before{content:"\e97e"}.icofont-chart-histogram:before{content:"\e97f"}.icofont-chart-line-alt:before{content:"\e980"}.icofont-chart-line:before{content:"\e981"}.icofont-chart-pie-alt:before{content:"\e982"}.icofont-chart-pie:before{content:"\e983"}.icofont-chart-radar-graph:before{content:"\e984"}.icofont-architecture-alt:before{content:"\e985"}.icofont-architecture:before{content:"\e986"}.icofont-barricade:before{content:"\e987"}.icofont-bolt:before{content:"\e988"}.icofont-bricks:before{content:"\e989"}.icofont-building-alt:before{content:"\e98a"}.icofont-bull-dozer:before{content:"\e98b"}.icofont-calculations:before{content:"\e98c"}.icofont-cement-mix:before{content:"\e98d"}.icofont-cement-mixer:before{content:"\e98e"}.icofont-concrete-mixer:before{content:"\e98f"}.icofont-danger-zone:before{content:"\e990"}.icofont-drill:before{content:"\e991"}.icofont-eco-energy:before{content:"\e992"}.icofont-eco-environmen:before{content:"\e993"}.icofont-energy-air:before{content:"\e994"}.icofont-energy-oil:before{content:"\e995"}.icofont-energy-savings:before{content:"\e996"}.icofont-energy-solar:before{content:"\e997"}.icofont-energy-water:before{content:"\e998"}.icofont-engineer:before{content:"\e999"}.icofont-fire-extinguisher-alt:before{content:"\e99a"}.icofont-fire-extinguisher:before{content:"\e99b"}.icofont-fix-tools:before{content:"\e99c"}.icofont-fork-lift:before{content:"\e99d"}.icofont-glue-oil:before{content:"\e99e"}.icofont-hammer-alt:before{content:"\e99f"}.icofont-hammer:before{content:"\e9a0"}.icofont-help-robot:before{content:"\e9a1"}.icofont-industries-1:before{content:"\e9a2"}.icofont-industries-2:before{content:"\e9a3"}.icofont-industries-3:before{content:"\e9a4"}.icofont-industries-4:before{content:"\e9a5"}.icofont-industries-5:before{content:"\e9a6"}.icofont-industries:before{content:"\e9a7"}.icofont-labour:before{content:"\e9a8"}.icofont-mining:before{content:"\e9a9"}.icofont-paint-brush:before{content:"\e9aa"}.icofont-pollution:before{content:"\e9ab"}.icofont-power-zone:before{content:"\e9ac"}.icofont-radio-active:before{content:"\e9ad"}.icofont-recycle-alt:before{content:"\e9ae"}.icofont-recycling-man:before{content:"\e9af"}.icofont-safety-hat-light:before{content:"\e9b0"}.icofont-safety-hat:before{content:"\e9b1"}.icofont-saw:before{content:"\e9b2"}.icofont-screw-driver:before{content:"\e9b3"}.icofont-tools-1:before{content:"\e9b4"}.icofont-tools-bag:before{content:"\e9b5"}.icofont-tow-truck:before{content:"\e9b6"}.icofont-trolley:before{content:"\e9b7"}.icofont-trowel:before{content:"\e9b8"}.icofont-under-construction-alt:before{content:"\e9b9"}.icofont-under-construction:before{content:"\e9ba"}.icofont-vehicle-cement:before{content:"\e9bb"}.icofont-vehicle-crane:before{content:"\e9bc"}.icofont-vehicle-delivery-van:before{content:"\e9bd"}.icofont-vehicle-dozer:before{content:"\e9be"}.icofont-vehicle-excavator:before{content:"\e9bf"}.icofont-vehicle-trucktor:before{content:"\e9c0"}.icofont-vehicle-wrecking:before{content:"\e9c1"}.icofont-worker:before{content:"\e9c2"}.icofont-workers-group:before{content:"\e9c3"}.icofont-wrench:before{content:"\e9c4"}.icofont-afghani-false:before{content:"\e9c5"}.icofont-afghani-minus:before{content:"\e9c6"}.icofont-afghani-plus:before{content:"\e9c7"}.icofont-afghani-true:before{content:"\e9c8"}.icofont-afghani:before{content:"\e9c9"}.icofont-baht-false:before{content:"\e9ca"}.icofont-baht-minus:before{content:"\e9cb"}.icofont-baht-plus:before{content:"\e9cc"}.icofont-baht-true:before{content:"\e9cd"}.icofont-baht:before{content:"\e9ce"}.icofont-bitcoin-false:before{content:"\e9cf"}.icofont-bitcoin-minus:before{content:"\e9d0"}.icofont-bitcoin-plus:before{content:"\e9d1"}.icofont-bitcoin-true:before{content:"\e9d2"}.icofont-bitcoin:before{content:"\e9d3"}.icofont-dollar-flase:before{content:"\e9d4"}.icofont-dollar-minus:before{content:"\e9d5"}.icofont-dollar-plus:before{content:"\e9d6"}.icofont-dollar-true:before{content:"\e9d7"}.icofont-dollar:before{content:"\e9d8"}.icofont-dong-false:before{content:"\e9d9"}.icofont-dong-minus:before{content:"\e9da"}.icofont-dong-plus:before{content:"\e9db"}.icofont-dong-true:before{content:"\e9dc"}.icofont-dong:before{content:"\e9dd"}.icofont-euro-false:before{content:"\e9de"}.icofont-euro-minus:before{content:"\e9df"}.icofont-euro-plus:before{content:"\e9e0"}.icofont-euro-true:before{content:"\e9e1"}.icofont-euro:before{content:"\e9e2"}.icofont-frank-false:before{content:"\e9e3"}.icofont-frank-minus:before{content:"\e9e4"}.icofont-frank-plus:before{content:"\e9e5"}.icofont-frank-true:before{content:"\e9e6"}.icofont-frank:before{content:"\e9e7"}.icofont-hryvnia-false:before{content:"\e9e8"}.icofont-hryvnia-minus:before{content:"\e9e9"}.icofont-hryvnia-plus:before{content:"\e9ea"}.icofont-hryvnia-true:before{content:"\e9eb"}.icofont-hryvnia:before{content:"\e9ec"}.icofont-lira-false:before{content:"\e9ed"}.icofont-lira-minus:before{content:"\e9ee"}.icofont-lira-plus:before{content:"\e9ef"}.icofont-lira-true:before{content:"\e9f0"}.icofont-lira:before{content:"\e9f1"}.icofont-peseta-false:before{content:"\e9f2"}.icofont-peseta-minus:before{content:"\e9f3"}.icofont-peseta-plus:before{content:"\e9f4"}.icofont-peseta-true:before{content:"\e9f5"}.icofont-peseta:before{content:"\e9f6"}.icofont-peso-false:before{content:"\e9f7"}.icofont-peso-minus:before{content:"\e9f8"}.icofont-peso-plus:before{content:"\e9f9"}.icofont-peso-true:before{content:"\e9fa"}.icofont-peso:before{content:"\e9fb"}.icofont-pound-false:before{content:"\e9fc"}.icofont-pound-minus:before{content:"\e9fd"}.icofont-pound-plus:before{content:"\e9fe"}.icofont-pound-true:before{content:"\e9ff"}.icofont-pound:before{content:"\ea00"}.icofont-renminbi-false:before{content:"\ea01"}.icofont-renminbi-minus:before{content:"\ea02"}.icofont-renminbi-plus:before{content:"\ea03"}.icofont-renminbi-true:before{content:"\ea04"}.icofont-renminbi:before{content:"\ea05"}.icofont-riyal-false:before{content:"\ea06"}.icofont-riyal-minus:before{content:"\ea07"}.icofont-riyal-plus:before{content:"\ea08"}.icofont-riyal-true:before{content:"\ea09"}.icofont-riyal:before{content:"\ea0a"}.icofont-rouble-false:before{content:"\ea0b"}.icofont-rouble-minus:before{content:"\ea0c"}.icofont-rouble-plus:before{content:"\ea0d"}.icofont-rouble-true:before{content:"\ea0e"}.icofont-rouble:before{content:"\ea0f"}.icofont-rupee-false:before{content:"\ea10"}.icofont-rupee-minus:before{content:"\ea11"}.icofont-rupee-plus:before{content:"\ea12"}.icofont-rupee-true:before{content:"\ea13"}.icofont-rupee:before{content:"\ea14"}.icofont-taka-false:before{content:"\ea15"}.icofont-taka-minus:before{content:"\ea16"}.icofont-taka-plus:before{content:"\ea17"}.icofont-taka-true:before{content:"\ea18"}.icofont-taka:before{content:"\ea19"}.icofont-turkish-lira-false:before{content:"\ea1a"}.icofont-turkish-lira-minus:before{content:"\ea1b"}.icofont-turkish-lira-plus:before{content:"\ea1c"}.icofont-turkish-lira-true:before{content:"\ea1d"}.icofont-turkish-lira:before{content:"\ea1e"}.icofont-won-false:before{content:"\ea1f"}.icofont-won-minus:before{content:"\ea20"}.icofont-won-plus:before{content:"\ea21"}.icofont-won-true:before{content:"\ea22"}.icofont-won:before{content:"\ea23"}.icofont-yen-false:before{content:"\ea24"}.icofont-yen-minus:before{content:"\ea25"}.icofont-yen-plus:before{content:"\ea26"}.icofont-yen-true:before{content:"\ea27"}.icofont-yen:before{content:"\ea28"}.icofont-android-nexus:before{content:"\ea29"}.icofont-android-tablet:before{content:"\ea2a"}.icofont-apple-watch:before{content:"\ea2b"}.icofont-drawing-tablet:before{content:"\ea2c"}.icofont-earphone:before{content:"\ea2d"}.icofont-flash-drive:before{content:"\ea2e"}.icofont-game-console:before{content:"\ea2f"}.icofont-game-controller:before{content:"\ea30"}.icofont-game-pad:before{content:"\ea31"}.icofont-game:before{content:"\ea32"}.icofont-headphone-alt-1:before{content:"\ea33"}.icofont-headphone-alt-2:before{content:"\ea34"}.icofont-headphone-alt-3:before{content:"\ea35"}.icofont-headphone-alt:before{content:"\ea36"}.icofont-headphone:before{content:"\ea37"}.icofont-htc-one:before{content:"\ea38"}.icofont-imac:before{content:"\ea39"}.icofont-ipad:before{content:"\ea3a"}.icofont-iphone:before{content:"\ea3b"}.icofont-ipod-nano:before{content:"\ea3c"}.icofont-ipod-touch:before{content:"\ea3d"}.icofont-keyboard-alt:before{content:"\ea3e"}.icofont-keyboard-wireless:before{content:"\ea3f"}.icofont-keyboard:before{content:"\ea40"}.icofont-laptop-alt:before{content:"\ea41"}.icofont-laptop:before{content:"\ea42"}.icofont-macbook:before{content:"\ea43"}.icofont-magic-mouse:before{content:"\ea44"}.icofont-micro-chip:before{content:"\ea45"}.icofont-microphone-alt:before{content:"\ea46"}.icofont-microphone:before{content:"\ea47"}.icofont-monitor:before{content:"\ea48"}.icofont-mouse:before{content:"\ea49"}.icofont-mp3-player:before{content:"\ea4a"}.icofont-nintendo:before{content:"\ea4b"}.icofont-playstation-alt:before{content:"\ea4c"}.icofont-psvita:before{content:"\ea4d"}.icofont-radio-mic:before{content:"\ea4e"}.icofont-radio:before{content:"\ea4f"}.icofont-refrigerator:before{content:"\ea50"}.icofont-samsung-galaxy:before{content:"\ea51"}.icofont-surface-tablet:before{content:"\ea52"}.icofont-ui-head-phone:before{content:"\ea53"}.icofont-ui-keyboard:before{content:"\ea54"}.icofont-washing-machine:before{content:"\ea55"}.icofont-wifi-router:before{content:"\ea56"}.icofont-wii-u:before{content:"\ea57"}.icofont-windows-lumia:before{content:"\ea58"}.icofont-wireless-mouse:before{content:"\ea59"}.icofont-xbox-360:before{content:"\ea5a"}.icofont-arrow-down:before{content:"\ea5b"}.icofont-arrow-left:before{content:"\ea5c"}.icofont-arrow-right:before{content:"\ea5d"}.icofont-arrow-up:before{content:"\ea5e"}.icofont-block-down:before{content:"\ea5f"}.icofont-block-left:before{content:"\ea60"}.icofont-block-right:before{content:"\ea61"}.icofont-block-up:before{content:"\ea62"}.icofont-bubble-down:before{content:"\ea63"}.icofont-bubble-left:before{content:"\ea64"}.icofont-bubble-right:before{content:"\ea65"}.icofont-bubble-up:before{content:"\ea66"}.icofont-caret-down:before{content:"\ea67"}.icofont-caret-left:before{content:"\ea68"}.icofont-caret-right:before{content:"\ea69"}.icofont-caret-up:before{content:"\ea6a"}.icofont-circled-down:before{content:"\ea6b"}.icofont-circled-left:before{content:"\ea6c"}.icofont-circled-right:before{content:"\ea6d"}.icofont-circled-up:before{content:"\ea6e"}.icofont-collapse:before{content:"\ea6f"}.icofont-cursor-drag:before{content:"\ea70"}.icofont-curved-double-left:before{content:"\ea71"}.icofont-curved-double-right:before{content:"\ea72"}.icofont-curved-down:before{content:"\ea73"}.icofont-curved-left:before{content:"\ea74"}.icofont-curved-right:before{content:"\ea75"}.icofont-curved-up:before{content:"\ea76"}.icofont-dotted-down:before{content:"\ea77"}.icofont-dotted-left:before{content:"\ea78"}.icofont-dotted-right:before{content:"\ea79"}.icofont-dotted-up:before{content:"\ea7a"}.icofont-double-left:before{content:"\ea7b"}.icofont-double-right:before{content:"\ea7c"}.icofont-expand-alt:before{content:"\ea7d"}.icofont-hand-down:before{content:"\ea7e"}.icofont-hand-drag:before{content:"\ea7f"}.icofont-hand-drag1:before{content:"\ea80"}.icofont-hand-drag2:before{content:"\ea81"}.icofont-hand-drawn-alt-down:before{content:"\ea82"}.icofont-hand-drawn-alt-left:before{content:"\ea83"}.icofont-hand-drawn-alt-right:before{content:"\ea84"}.icofont-hand-drawn-alt-up:before{content:"\ea85"}.icofont-hand-drawn-down:before{content:"\ea86"}.icofont-hand-drawn-left:before{content:"\ea87"}.icofont-hand-drawn-right:before{content:"\ea88"}.icofont-hand-drawn-up:before{content:"\ea89"}.icofont-hand-grippers:before{content:"\ea8a"}.icofont-hand-left:before{content:"\ea8b"}.icofont-hand-right:before{content:"\ea8c"}.icofont-hand-up:before{content:"\ea8d"}.icofont-line-block-down:before{content:"\ea8e"}.icofont-line-block-left:before{content:"\ea8f"}.icofont-line-block-right:before{content:"\ea90"}.icofont-line-block-up:before{content:"\ea91"}.icofont-long-arrow-down:before{content:"\ea92"}.icofont-long-arrow-left:before{content:"\ea93"}.icofont-long-arrow-right:before{content:"\ea94"}.icofont-long-arrow-up:before{content:"\ea95"}.icofont-rounded-collapse:before{content:"\ea96"}.icofont-rounded-double-left:before{content:"\ea97"}.icofont-rounded-double-right:before{content:"\ea98"}.icofont-rounded-down:before{content:"\ea99"}.icofont-rounded-expand:before{content:"\ea9a"}.icofont-rounded-left-down:before{content:"\ea9b"}.icofont-rounded-left-up:before{content:"\ea9c"}.icofont-rounded-left:before{content:"\ea9d"}.icofont-rounded-right-down:before{content:"\ea9e"}.icofont-rounded-right-up:before{content:"\ea9f"}.icofont-rounded-right:before{content:"\eaa0"}.icofont-rounded-up:before{content:"\eaa1"}.icofont-scroll-bubble-down:before{content:"\eaa2"}.icofont-scroll-bubble-left:before{content:"\eaa3"}.icofont-scroll-bubble-right:before{content:"\eaa4"}.icofont-scroll-bubble-up:before{content:"\eaa5"}.icofont-scroll-double-down:before{content:"\eaa6"}.icofont-scroll-double-left:before{content:"\eaa7"}.icofont-scroll-double-right:before{content:"\eaa8"}.icofont-scroll-double-up:before{content:"\eaa9"}.icofont-scroll-down:before{content:"\eaaa"}.icofont-scroll-left:before{content:"\eaab"}.icofont-scroll-long-down:before{content:"\eaac"}.icofont-scroll-long-left:before{content:"\eaad"}.icofont-scroll-long-right:before{content:"\eaae"}.icofont-scroll-long-up:before{content:"\eaaf"}.icofont-scroll-right:before{content:"\eab0"}.icofont-scroll-up:before{content:"\eab1"}.icofont-simple-down:before{content:"\eab2"}.icofont-simple-left-down:before{content:"\eab3"}.icofont-simple-left-up:before{content:"\eab4"}.icofont-simple-left:before{content:"\eab5"}.icofont-simple-right-down:before{content:"\eab6"}.icofont-simple-right-up:before{content:"\eab7"}.icofont-simple-right:before{content:"\eab8"}.icofont-simple-up:before{content:"\eab9"}.icofont-square-down:before{content:"\eaba"}.icofont-square-left:before{content:"\eabb"}.icofont-square-right:before{content:"\eabc"}.icofont-square-up:before{content:"\eabd"}.icofont-stylish-down:before{content:"\eabe"}.icofont-stylish-left:before{content:"\eabf"}.icofont-stylish-right:before{content:"\eac0"}.icofont-stylish-up:before{content:"\eac1"}.icofont-swoosh-down:before{content:"\eac2"}.icofont-swoosh-left:before{content:"\eac3"}.icofont-swoosh-right:before{content:"\eac4"}.icofont-swoosh-up:before{content:"\eac5"}.icofont-thin-double-left:before{content:"\eac6"}.icofont-thin-double-right:before{content:"\eac7"}.icofont-thin-down:before{content:"\eac8"}.icofont-thin-left:before{content:"\eac9"}.icofont-thin-right:before{content:"\eaca"}.icofont-thin-up:before{content:"\eacb"}.icofont-abc:before{content:"\eacc"}.icofont-atom:before{content:"\eacd"}.icofont-award:before{content:"\eace"}.icofont-bell-alt:before{content:"\eacf"}.icofont-black-board:before{content:"\ead0"}.icofont-book-alt:before{content:"\ead1"}.icofont-book:before{content:"\ead2"}.icofont-brainstorming:before{content:"\ead3"}.icofont-certificate-alt-1:before{content:"\ead4"}.icofont-certificate-alt-2:before{content:"\ead5"}.icofont-certificate:before{content:"\ead6"}.icofont-education:before{content:"\ead7"}.icofont-electron:before{content:"\ead8"}.icofont-fountain-pen:before{content:"\ead9"}.icofont-globe-alt:before{content:"\eada"}.icofont-graduate-alt:before{content:"\eadb"}.icofont-graduate:before{content:"\eadc"}.icofont-group-students:before{content:"\eadd"}.icofont-hat-alt:before{content:"\eade"}.icofont-hat:before{content:"\eadf"}.icofont-instrument:before{content:"\eae0"}.icofont-lamp-light:before{content:"\eae1"}.icofont-medal:before{content:"\eae2"}.icofont-microscope-alt:before{content:"\eae3"}.icofont-microscope:before{content:"\eae4"}.icofont-paper:before{content:"\eae5"}.icofont-pen-alt-4:before{content:"\eae6"}.icofont-pen-nib:before{content:"\eae7"}.icofont-pencil-alt-5:before{content:"\eae8"}.icofont-quill-pen:before{content:"\eae9"}.icofont-read-book-alt:before{content:"\eaea"}.icofont-read-book:before{content:"\eaeb"}.icofont-school-bag:before{content:"\eaec"}.icofont-school-bus:before{content:"\eaed"}.icofont-student-alt:before{content:"\eaee"}.icofont-student:before{content:"\eaef"}.icofont-teacher:before{content:"\eaf0"}.icofont-test-bulb:before{content:"\eaf1"}.icofont-test-tube-alt:before{content:"\eaf2"}.icofont-university:before{content:"\eaf3"}.icofont-angry:before{content:"\eaf4"}.icofont-astonished:before{content:"\eaf5"}.icofont-confounded:before{content:"\eaf6"}.icofont-confused:before{content:"\eaf7"}.icofont-crying:before{content:"\eaf8"}.icofont-dizzy:before{content:"\eaf9"}.icofont-expressionless:before{content:"\eafa"}.icofont-heart-eyes:before{content:"\eafb"}.icofont-laughing:before{content:"\eafc"}.icofont-nerd-smile:before{content:"\eafd"}.icofont-open-mouth:before{content:"\eafe"}.icofont-rage:before{content:"\eaff"}.icofont-rolling-eyes:before{content:"\eb00"}.icofont-sad:before{content:"\eb01"}.icofont-simple-smile:before{content:"\eb02"}.icofont-slightly-smile:before{content:"\eb03"}.icofont-smirk:before{content:"\eb04"}.icofont-stuck-out-tongue:before{content:"\eb05"}.icofont-wink-smile:before{content:"\eb06"}.icofont-worried:before{content:"\eb07"}.icofont-file-alt:before{content:"\eb08"}.icofont-file-audio:before{content:"\eb09"}.icofont-file-avi-mp4:before{content:"\eb0a"}.icofont-file-bmp:before{content:"\eb0b"}.icofont-file-code:before{content:"\eb0c"}.icofont-file-css:before{content:"\eb0d"}.icofont-file-document:before{content:"\eb0e"}.icofont-file-eps:before{content:"\eb0f"}.icofont-file-excel:before{content:"\eb10"}.icofont-file-exe:before{content:"\eb11"}.icofont-file-file:before{content:"\eb12"}.icofont-file-flv:before{content:"\eb13"}.icofont-file-gif:before{content:"\eb14"}.icofont-file-html5:before{content:"\eb15"}.icofont-file-image:before{content:"\eb16"}.icofont-file-iso:before{content:"\eb17"}.icofont-file-java:before{content:"\eb18"}.icofont-file-javascript:before{content:"\eb19"}.icofont-file-jpg:before{content:"\eb1a"}.icofont-file-midi:before{content:"\eb1b"}.icofont-file-mov:before{content:"\eb1c"}.icofont-file-mp3:before{content:"\eb1d"}.icofont-file-pdf:before{content:"\eb1e"}.icofont-file-php:before{content:"\eb1f"}.icofont-file-png:before{content:"\eb20"}.icofont-file-powerpoint:before{content:"\eb21"}.icofont-file-presentation:before{content:"\eb22"}.icofont-file-psb:before{content:"\eb23"}.icofont-file-psd:before{content:"\eb24"}.icofont-file-python:before{content:"\eb25"}.icofont-file-ruby:before{content:"\eb26"}.icofont-file-spreadsheet:before{content:"\eb27"}.icofont-file-sql:before{content:"\eb28"}.icofont-file-svg:before{content:"\eb29"}.icofont-file-text:before{content:"\eb2a"}.icofont-file-tiff:before{content:"\eb2b"}.icofont-file-video:before{content:"\eb2c"}.icofont-file-wave:before{content:"\eb2d"}.icofont-file-wmv:before{content:"\eb2e"}.icofont-file-word:before{content:"\eb2f"}.icofont-file-zip:before{content:"\eb30"}.icofont-cycling-alt:before{content:"\eb31"}.icofont-cycling:before{content:"\eb32"}.icofont-dumbbell:before{content:"\eb33"}.icofont-dumbbells:before{content:"\eb34"}.icofont-gym-alt-1:before{content:"\eb35"}.icofont-gym-alt-2:before{content:"\eb36"}.icofont-gym-alt-3:before{content:"\eb37"}.icofont-gym:before{content:"\eb38"}.icofont-muscle-weight:before{content:"\eb39"}.icofont-muscle:before{content:"\eb3a"}.icofont-apple:before{content:"\eb3b"}.icofont-arabian-coffee:before{content:"\eb3c"}.icofont-artichoke:before{content:"\eb3d"}.icofont-asparagus:before{content:"\eb3e"}.icofont-avocado:before{content:"\eb3f"}.icofont-baby-food:before{content:"\eb40"}.icofont-banana:before{content:"\eb41"}.icofont-bbq:before{content:"\eb42"}.icofont-beans:before{content:"\eb43"}.icofont-beer:before{content:"\eb44"}.icofont-bell-pepper-capsicum:before{content:"\eb45"}.icofont-birthday-cake:before{content:"\eb46"}.icofont-bread:before{content:"\eb47"}.icofont-broccoli:before{content:"\eb48"}.icofont-burger:before{content:"\eb49"}.icofont-cabbage:before{content:"\eb4a"}.icofont-carrot:before{content:"\eb4b"}.icofont-cauli-flower:before{content:"\eb4c"}.icofont-cheese:before{content:"\eb4d"}.icofont-chef:before{content:"\eb4e"}.icofont-cherry:before{content:"\eb4f"}.icofont-chicken-fry:before{content:"\eb50"}.icofont-chicken:before{content:"\eb51"}.icofont-cocktail:before{content:"\eb52"}.icofont-coconut-water:before{content:"\eb53"}.icofont-coconut:before{content:"\eb54"}.icofont-coffee-alt:before{content:"\eb55"}.icofont-coffee-cup:before{content:"\eb56"}.icofont-coffee-mug:before{content:"\eb57"}.icofont-coffee-pot:before{content:"\eb58"}.icofont-cola:before{content:"\eb59"}.icofont-corn:before{content:"\eb5a"}.icofont-croissant:before{content:"\eb5b"}.icofont-crop-plant:before{content:"\eb5c"}.icofont-cucumber:before{content:"\eb5d"}.icofont-culinary:before{content:"\eb5e"}.icofont-cup-cake:before{content:"\eb5f"}.icofont-dining-table:before{content:"\eb60"}.icofont-donut:before{content:"\eb61"}.icofont-egg-plant:before{content:"\eb62"}.icofont-egg-poached:before{content:"\eb63"}.icofont-farmer-alt:before{content:"\eb64"}.icofont-farmer:before{content:"\eb65"}.icofont-fast-food:before{content:"\eb66"}.icofont-food-basket:before{content:"\eb67"}.icofont-food-cart:before{content:"\eb68"}.icofont-fork-and-knife:before{content:"\eb69"}.icofont-french-fries:before{content:"\eb6a"}.icofont-fruits:before{content:"\eb6b"}.icofont-grapes:before{content:"\eb6c"}.icofont-honey:before{content:"\eb6d"}.icofont-hot-dog:before{content:"\eb6e"}.icofont-ice-cream-alt:before{content:"\eb6f"}.icofont-ice-cream:before{content:"\eb70"}.icofont-juice:before{content:"\eb71"}.icofont-ketchup:before{content:"\eb72"}.icofont-kiwi:before{content:"\eb73"}.icofont-layered-cake:before{content:"\eb74"}.icofont-lemon-alt:before{content:"\eb75"}.icofont-lemon:before{content:"\eb76"}.icofont-lobster:before{content:"\eb77"}.icofont-mango:before{content:"\eb78"}.icofont-milk:before{content:"\eb79"}.icofont-mushroom:before{content:"\eb7a"}.icofont-noodles:before{content:"\eb7b"}.icofont-onion:before{content:"\eb7c"}.icofont-orange:before{content:"\eb7d"}.icofont-pear:before{content:"\eb7e"}.icofont-peas:before{content:"\eb7f"}.icofont-pepper:before{content:"\eb80"}.icofont-pie-alt:before{content:"\eb81"}.icofont-pie:before{content:"\eb82"}.icofont-pineapple:before{content:"\eb83"}.icofont-pizza-slice:before{content:"\eb84"}.icofont-pizza:before{content:"\eb85"}.icofont-plant:before{content:"\eb86"}.icofont-popcorn:before{content:"\eb87"}.icofont-potato:before{content:"\eb88"}.icofont-pumpkin:before{content:"\eb89"}.icofont-raddish:before{content:"\eb8a"}.icofont-restaurant-menu:before{content:"\eb8b"}.icofont-restaurant:before{content:"\eb8c"}.icofont-salt-and-pepper:before{content:"\eb8d"}.icofont-sandwich:before{content:"\eb8e"}.icofont-sausage:before{content:"\eb8f"}.icofont-soft-drinks:before{content:"\eb90"}.icofont-soup-bowl:before{content:"\eb91"}.icofont-spoon-and-fork:before{content:"\eb92"}.icofont-steak:before{content:"\eb93"}.icofont-strawberry:before{content:"\eb94"}.icofont-sub-sandwich:before{content:"\eb95"}.icofont-sushi:before{content:"\eb96"}.icofont-taco:before{content:"\eb97"}.icofont-tea-pot:before{content:"\eb98"}.icofont-tea:before{content:"\eb99"}.icofont-tomato:before{content:"\eb9a"}.icofont-watermelon:before{content:"\eb9b"}.icofont-wheat:before{content:"\eb9c"}.icofont-baby-backpack:before{content:"\eb9d"}.icofont-baby-cloth:before{content:"\eb9e"}.icofont-baby-milk-bottle:before{content:"\eb9f"}.icofont-baby-trolley:before{content:"\eba0"}.icofont-baby:before{content:"\eba1"}.icofont-candy:before{content:"\eba2"}.icofont-holding-hands:before{content:"\eba3"}.icofont-infant-nipple:before{content:"\eba4"}.icofont-kids-scooter:before{content:"\eba5"}.icofont-safety-pin:before{content:"\eba6"}.icofont-teddy-bear:before{content:"\eba7"}.icofont-toy-ball:before{content:"\eba8"}.icofont-toy-cat:before{content:"\eba9"}.icofont-toy-duck:before{content:"\ebaa"}.icofont-toy-elephant:before{content:"\ebab"}.icofont-toy-hand:before{content:"\ebac"}.icofont-toy-horse:before{content:"\ebad"}.icofont-toy-lattu:before{content:"\ebae"}.icofont-toy-train:before{content:"\ebaf"}.icofont-burglar:before{content:"\ebb0"}.icofont-cannon-firing:before{content:"\ebb1"}.icofont-cc-camera:before{content:"\ebb2"}.icofont-cop-badge:before{content:"\ebb3"}.icofont-cop:before{content:"\ebb4"}.icofont-court-hammer:before{content:"\ebb5"}.icofont-court:before{content:"\ebb6"}.icofont-finger-print:before{content:"\ebb7"}.icofont-gavel:before{content:"\ebb8"}.icofont-handcuff-alt:before{content:"\ebb9"}.icofont-handcuff:before{content:"\ebba"}.icofont-investigation:before{content:"\ebbb"}.icofont-investigator:before{content:"\ebbc"}.icofont-jail:before{content:"\ebbd"}.icofont-judge:before{content:"\ebbe"}.icofont-law-alt-1:before{content:"\ebbf"}.icofont-law-alt-2:before{content:"\ebc0"}.icofont-law-alt-3:before{content:"\ebc1"}.icofont-law-book:before{content:"\ebc2"}.icofont-law-document:before{content:"\ebc3"}.icofont-law-order:before{content:"\ebc4"}.icofont-law-protect:before{content:"\ebc5"}.icofont-law-scales:before{content:"\ebc6"}.icofont-law:before{content:"\ebc7"}.icofont-lawyer-alt-1:before{content:"\ebc8"}.icofont-lawyer-alt-2:before{content:"\ebc9"}.icofont-lawyer:before{content:"\ebca"}.icofont-legal:before{content:"\ebcb"}.icofont-pistol:before{content:"\ebcc"}.icofont-police-badge:before{content:"\ebcd"}.icofont-police-cap:before{content:"\ebce"}.icofont-police-car-alt-1:before{content:"\ebcf"}.icofont-police-car-alt-2:before{content:"\ebd0"}.icofont-police-car:before{content:"\ebd1"}.icofont-police-hat:before{content:"\ebd2"}.icofont-police-van:before{content:"\ebd3"}.icofont-police:before{content:"\ebd4"}.icofont-thief-alt:before{content:"\ebd5"}.icofont-thief:before{content:"\ebd6"}.icofont-abacus-alt:before{content:"\ebd7"}.icofont-abacus:before{content:"\ebd8"}.icofont-angle-180:before{content:"\ebd9"}.icofont-angle-45:before{content:"\ebda"}.icofont-angle-90:before{content:"\ebdb"}.icofont-angle:before{content:"\ebdc"}.icofont-calculator-alt-1:before{content:"\ebdd"}.icofont-calculator-alt-2:before{content:"\ebde"}.icofont-calculator:before{content:"\ebdf"}.icofont-circle-ruler-alt:before{content:"\ebe0"}.icofont-circle-ruler:before{content:"\ebe1"}.icofont-compass-alt-1:before{content:"\ebe2"}.icofont-compass-alt-2:before{content:"\ebe3"}.icofont-compass-alt-3:before{content:"\ebe4"}.icofont-compass-alt-4:before{content:"\ebe5"}.icofont-golden-ratio:before{content:"\ebe6"}.icofont-marker-alt-1:before{content:"\ebe7"}.icofont-marker-alt-2:before{content:"\ebe8"}.icofont-marker-alt-3:before{content:"\ebe9"}.icofont-marker:before{content:"\ebea"}.icofont-math:before{content:"\ebeb"}.icofont-mathematical-alt-1:before{content:"\ebec"}.icofont-mathematical-alt-2:before{content:"\ebed"}.icofont-mathematical:before{content:"\ebee"}.icofont-pen-alt-1:before{content:"\ebef"}.icofont-pen-alt-2:before{content:"\ebf0"}.icofont-pen-alt-3:before{content:"\ebf1"}.icofont-pen-holder-alt-1:before{content:"\ebf2"}.icofont-pen-holder:before{content:"\ebf3"}.icofont-pen:before{content:"\ebf4"}.icofont-pencil-alt-1:before{content:"\ebf5"}.icofont-pencil-alt-2:before{content:"\ebf6"}.icofont-pencil-alt-3:before{content:"\ebf7"}.icofont-pencil-alt-4:before{content:"\ebf8"}.icofont-pencil:before{content:"\ebf9"}.icofont-ruler-alt-1:before{content:"\ebfa"}.icofont-ruler-alt-2:before{content:"\ebfb"}.icofont-ruler-compass-alt:before{content:"\ebfc"}.icofont-ruler-compass:before{content:"\ebfd"}.icofont-ruler-pencil-alt-1:before{content:"\ebfe"}.icofont-ruler-pencil-alt-2:before{content:"\ebff"}.icofont-ruler-pencil:before{content:"\ec00"}.icofont-ruler:before{content:"\ec01"}.icofont-rulers-alt:before{content:"\ec02"}.icofont-rulers:before{content:"\ec03"}.icofont-square-root:before{content:"\ec04"}.icofont-ui-calculator:before{content:"\ec05"}.icofont-aids:before{content:"\ec06"}.icofont-ambulance-crescent:before{content:"\ec07"}.icofont-ambulance-cross:before{content:"\ec08"}.icofont-ambulance:before{content:"\ec09"}.icofont-autism:before{content:"\ec0a"}.icofont-bandage:before{content:"\ec0b"}.icofont-blind:before{content:"\ec0c"}.icofont-blood-drop:before{content:"\ec0d"}.icofont-blood-test:before{content:"\ec0e"}.icofont-blood:before{content:"\ec0f"}.icofont-brain-alt:before{content:"\ec10"}.icofont-brain:before{content:"\ec11"}.icofont-capsule:before{content:"\ec12"}.icofont-crutch:before{content:"\ec13"}.icofont-disabled:before{content:"\ec14"}.icofont-dna-alt-1:before{content:"\ec15"}.icofont-dna-alt-2:before{content:"\ec16"}.icofont-dna:before{content:"\ec17"}.icofont-doctor-alt:before{content:"\ec18"}.icofont-doctor:before{content:"\ec19"}.icofont-drug-pack:before{content:"\ec1a"}.icofont-drug:before{content:"\ec1b"}.icofont-first-aid-alt:before{content:"\ec1c"}.icofont-first-aid:before{content:"\ec1d"}.icofont-heart-beat-alt:before{content:"\ec1e"}.icofont-heart-beat:before{content:"\ec1f"}.icofont-heartbeat:before{content:"\ec20"}.icofont-herbal:before{content:"\ec21"}.icofont-hospital:before{content:"\ec22"}.icofont-icu:before{content:"\ec23"}.icofont-injection-syringe:before{content:"\ec24"}.icofont-laboratory:before{content:"\ec25"}.icofont-medical-sign-alt:before{content:"\ec26"}.icofont-medical-sign:before{content:"\ec27"}.icofont-nurse-alt:before{content:"\ec28"}.icofont-nurse:before{content:"\ec29"}.icofont-nursing-home:before{content:"\ec2a"}.icofont-operation-theater:before{content:"\ec2b"}.icofont-paralysis-disability:before{content:"\ec2c"}.icofont-patient-bed:before{content:"\ec2d"}.icofont-patient-file:before{content:"\ec2e"}.icofont-pills:before{content:"\ec2f"}.icofont-prescription:before{content:"\ec30"}.icofont-pulse:before{content:"\ec31"}.icofont-stethoscope-alt:before{content:"\ec32"}.icofont-stethoscope:before{content:"\ec33"}.icofont-stretcher:before{content:"\ec34"}.icofont-surgeon-alt:before{content:"\ec35"}.icofont-surgeon:before{content:"\ec36"}.icofont-tablets:before{content:"\ec37"}.icofont-test-bottle:before{content:"\ec38"}.icofont-test-tube:before{content:"\ec39"}.icofont-thermometer-alt:before{content:"\ec3a"}.icofont-thermometer:before{content:"\ec3b"}.icofont-tooth:before{content:"\ec3c"}.icofont-xray:before{content:"\ec3d"}.icofont-ui-add:before{content:"\ec3e"}.icofont-ui-alarm:before{content:"\ec3f"}.icofont-ui-battery:before{content:"\ec40"}.icofont-ui-block:before{content:"\ec41"}.icofont-ui-bluetooth:before{content:"\ec42"}.icofont-ui-brightness:before{content:"\ec43"}.icofont-ui-browser:before{content:"\ec44"}.icofont-ui-calendar:before{content:"\ec45"}.icofont-ui-call:before{content:"\ec46"}.icofont-ui-camera:before{content:"\ec47"}.icofont-ui-cart:before{content:"\ec48"}.icofont-ui-cell-phone:before{content:"\ec49"}.icofont-ui-chat:before{content:"\ec4a"}.icofont-ui-check:before{content:"\ec4b"}.icofont-ui-clip-board:before{content:"\ec4c"}.icofont-ui-clip:before{content:"\ec4d"}.icofont-ui-clock:before{content:"\ec4e"}.icofont-ui-close:before{content:"\ec4f"}.icofont-ui-contact-list:before{content:"\ec50"}.icofont-ui-copy:before{content:"\ec51"}.icofont-ui-cut:before{content:"\ec52"}.icofont-ui-delete:before{content:"\ec53"}.icofont-ui-dial-phone:before{content:"\ec54"}.icofont-ui-edit:before{content:"\ec55"}.icofont-ui-email:before{content:"\ec56"}.icofont-ui-file:before{content:"\ec57"}.icofont-ui-fire-wall:before{content:"\ec58"}.icofont-ui-flash-light:before{content:"\ec59"}.icofont-ui-flight:before{content:"\ec5a"}.icofont-ui-folder:before{content:"\ec5b"}.icofont-ui-game:before{content:"\ec5c"}.icofont-ui-handicapped:before{content:"\ec5d"}.icofont-ui-home:before{content:"\ec5e"}.icofont-ui-image:before{content:"\ec5f"}.icofont-ui-laoding:before{content:"\ec60"}.icofont-ui-lock:before{content:"\ec61"}.icofont-ui-love-add:before{content:"\ec62"}.icofont-ui-love-broken:before{content:"\ec63"}.icofont-ui-love-remove:before{content:"\ec64"}.icofont-ui-love:before{content:"\ec65"}.icofont-ui-map:before{content:"\ec66"}.icofont-ui-message:before{content:"\ec67"}.icofont-ui-messaging:before{content:"\ec68"}.icofont-ui-movie:before{content:"\ec69"}.icofont-ui-music-player:before{content:"\ec6a"}.icofont-ui-music:before{content:"\ec6b"}.icofont-ui-mute:before{content:"\ec6c"}.icofont-ui-network:before{content:"\ec6d"}.icofont-ui-next:before{content:"\ec6e"}.icofont-ui-note:before{content:"\ec6f"}.icofont-ui-office:before{content:"\ec70"}.icofont-ui-password:before{content:"\ec71"}.icofont-ui-pause:before{content:"\ec72"}.icofont-ui-play-stop:before{content:"\ec73"}.icofont-ui-play:before{content:"\ec74"}.icofont-ui-pointer:before{content:"\ec75"}.icofont-ui-power:before{content:"\ec76"}.icofont-ui-press:before{content:"\ec77"}.icofont-ui-previous:before{content:"\ec78"}.icofont-ui-rate-add:before{content:"\ec79"}.icofont-ui-rate-blank:before{content:"\ec7a"}.icofont-ui-rate-remove:before{content:"\ec7b"}.icofont-ui-rating:before{content:"\ec7c"}.icofont-ui-record:before{content:"\ec7d"}.icofont-ui-remove:before{content:"\ec7e"}.icofont-ui-reply:before{content:"\ec7f"}.icofont-ui-rotation:before{content:"\ec80"}.icofont-ui-rss:before{content:"\ec81"}.icofont-ui-search:before{content:"\ec82"}.icofont-ui-settings:before{content:"\ec83"}.icofont-ui-social-link:before{content:"\ec84"}.icofont-ui-tag:before{content:"\ec85"}.icofont-ui-text-chat:before{content:"\ec86"}.icofont-ui-text-loading:before{content:"\ec87"}.icofont-ui-theme:before{content:"\ec88"}.icofont-ui-timer:before{content:"\ec89"}.icofont-ui-touch-phone:before{content:"\ec8a"}.icofont-ui-travel:before{content:"\ec8b"}.icofont-ui-unlock:before{content:"\ec8c"}.icofont-ui-user-group:before{content:"\ec8d"}.icofont-ui-user:before{content:"\ec8e"}.icofont-ui-v-card:before{content:"\ec8f"}.icofont-ui-video-chat:before{content:"\ec90"}.icofont-ui-video-message:before{content:"\ec91"}.icofont-ui-video-play:before{content:"\ec92"}.icofont-ui-video:before{content:"\ec93"}.icofont-ui-volume:before{content:"\ec94"}.icofont-ui-weather:before{content:"\ec95"}.icofont-ui-wifi:before{content:"\ec96"}.icofont-ui-zoom-in:before{content:"\ec97"}.icofont-ui-zoom-out:before{content:"\ec98"}.icofont-cassette-player:before{content:"\ec99"}.icofont-cassette:before{content:"\ec9a"}.icofont-forward:before{content:"\ec9b"}.icofont-guiter:before{content:"\ec9c"}.icofont-movie:before{content:"\ec9d"}.icofont-multimedia:before{content:"\ec9e"}.icofont-music-alt:before{content:"\ec9f"}.icofont-music-disk:before{content:"\eca0"}.icofont-music-note:before{content:"\eca1"}.icofont-music-notes:before{content:"\eca2"}.icofont-music:before{content:"\eca3"}.icofont-mute-volume:before{content:"\eca4"}.icofont-pause:before{content:"\eca5"}.icofont-play-alt-1:before{content:"\eca6"}.icofont-play-alt-2:before{content:"\eca7"}.icofont-play-alt-3:before{content:"\eca8"}.icofont-play-pause:before{content:"\eca9"}.icofont-play:before{content:"\ecaa"}.icofont-record:before{content:"\ecab"}.icofont-retro-music-disk:before{content:"\ecac"}.icofont-rewind:before{content:"\ecad"}.icofont-song-notes:before{content:"\ecae"}.icofont-sound-wave-alt:before{content:"\ecaf"}.icofont-sound-wave:before{content:"\ecb0"}.icofont-stop:before{content:"\ecb1"}.icofont-video-alt:before{content:"\ecb2"}.icofont-video-cam:before{content:"\ecb3"}.icofont-video-clapper:before{content:"\ecb4"}.icofont-video:before{content:"\ecb5"}.icofont-volume-bar:before{content:"\ecb6"}.icofont-volume-down:before{content:"\ecb7"}.icofont-volume-mute:before{content:"\ecb8"}.icofont-volume-off:before{content:"\ecb9"}.icofont-volume-up:before{content:"\ecba"}.icofont-youtube-play:before{content:"\ecbb"}.icofont-2checkout-alt:before{content:"\ecbc"}.icofont-2checkout:before{content:"\ecbd"}.icofont-amazon-alt:before{content:"\ecbe"}.icofont-amazon:before{content:"\ecbf"}.icofont-american-express-alt:before{content:"\ecc0"}.icofont-american-express:before{content:"\ecc1"}.icofont-apple-pay-alt:before{content:"\ecc2"}.icofont-apple-pay:before{content:"\ecc3"}.icofont-bank-transfer-alt:before{content:"\ecc4"}.icofont-bank-transfer:before{content:"\ecc5"}.icofont-braintree-alt:before{content:"\ecc6"}.icofont-braintree:before{content:"\ecc7"}.icofont-cash-on-delivery-alt:before{content:"\ecc8"}.icofont-cash-on-delivery:before{content:"\ecc9"}.icofont-diners-club-alt-1:before{content:"\ecca"}.icofont-diners-club-alt-2:before{content:"\eccb"}.icofont-diners-club-alt-3:before{content:"\eccc"}.icofont-diners-club:before{content:"\eccd"}.icofont-discover-alt:before{content:"\ecce"}.icofont-discover:before{content:"\eccf"}.icofont-eway-alt:before{content:"\ecd0"}.icofont-eway:before{content:"\ecd1"}.icofont-google-wallet-alt-1:before{content:"\ecd2"}.icofont-google-wallet-alt-2:before{content:"\ecd3"}.icofont-google-wallet-alt-3:before{content:"\ecd4"}.icofont-google-wallet:before{content:"\ecd5"}.icofont-jcb-alt:before{content:"\ecd6"}.icofont-jcb:before{content:"\ecd7"}.icofont-maestro-alt:before{content:"\ecd8"}.icofont-maestro:before{content:"\ecd9"}.icofont-mastercard-alt:before{content:"\ecda"}.icofont-mastercard:before{content:"\ecdb"}.icofont-payoneer-alt:before{content:"\ecdc"}.icofont-payoneer:before{content:"\ecdd"}.icofont-paypal-alt:before{content:"\ecde"}.icofont-paypal:before{content:"\ecdf"}.icofont-sage-alt:before{content:"\ece0"}.icofont-sage:before{content:"\ece1"}.icofont-skrill-alt:before{content:"\ece2"}.icofont-skrill:before{content:"\ece3"}.icofont-stripe-alt:before{content:"\ece4"}.icofont-stripe:before{content:"\ece5"}.icofont-visa-alt:before{content:"\ece6"}.icofont-visa-electron:before{content:"\ece7"}.icofont-visa:before{content:"\ece8"}.icofont-western-union-alt:before{content:"\ece9"}.icofont-western-union:before{content:"\ecea"}.icofont-boy:before{content:"\eceb"}.icofont-business-man-alt-1:before{content:"\ecec"}.icofont-business-man-alt-2:before{content:"\eced"}.icofont-business-man-alt-3:before{content:"\ecee"}.icofont-business-man:before{content:"\ecef"}.icofont-female:before{content:"\ecf0"}.icofont-funky-man:before{content:"\ecf1"}.icofont-girl-alt:before{content:"\ecf2"}.icofont-girl:before{content:"\ecf3"}.icofont-group:before{content:"\ecf4"}.icofont-hotel-boy-alt:before{content:"\ecf5"}.icofont-hotel-boy:before{content:"\ecf6"}.icofont-kid:before{content:"\ecf7"}.icofont-man-in-glasses:before{content:"\ecf8"}.icofont-people:before{content:"\ecf9"}.icofont-support:before{content:"\ecfa"}.icofont-user-alt-1:before{content:"\ecfb"}.icofont-user-alt-2:before{content:"\ecfc"}.icofont-user-alt-3:before{content:"\ecfd"}.icofont-user-alt-4:before{content:"\ecfe"}.icofont-user-alt-5:before{content:"\ecff"}.icofont-user-alt-6:before{content:"\ed00"}.icofont-user-alt-7:before{content:"\ed01"}.icofont-user-female:before{content:"\ed02"}.icofont-user-male:before{content:"\ed03"}.icofont-user-suited:before{content:"\ed04"}.icofont-user:before{content:"\ed05"}.icofont-users-alt-1:before{content:"\ed06"}.icofont-users-alt-2:before{content:"\ed07"}.icofont-users-alt-3:before{content:"\ed08"}.icofont-users-alt-4:before{content:"\ed09"}.icofont-users-alt-5:before{content:"\ed0a"}.icofont-users-alt-6:before{content:"\ed0b"}.icofont-users-social:before{content:"\ed0c"}.icofont-users:before{content:"\ed0d"}.icofont-waiter-alt:before{content:"\ed0e"}.icofont-waiter:before{content:"\ed0f"}.icofont-woman-in-glasses:before{content:"\ed10"}.icofont-search-1:before{content:"\ed11"}.icofont-search-2:before{content:"\ed12"}.icofont-search-document:before{content:"\ed13"}.icofont-search-folder:before{content:"\ed14"}.icofont-search-job:before{content:"\ed15"}.icofont-search-map:before{content:"\ed16"}.icofont-search-property:before{content:"\ed17"}.icofont-search-restaurant:before{content:"\ed18"}.icofont-search-stock:before{content:"\ed19"}.icofont-search-user:before{content:"\ed1a"}.icofont-search:before{content:"\ed1b"}.icofont-500px:before{content:"\ed1c"}.icofont-aim:before{content:"\ed1d"}.icofont-badoo:before{content:"\ed1e"}.icofont-baidu-tieba:before{content:"\ed1f"}.icofont-bbm-messenger:before{content:"\ed20"}.icofont-bebo:before{content:"\ed21"}.icofont-behance:before{content:"\ed22"}.icofont-blogger:before{content:"\ed23"}.icofont-bootstrap:before{content:"\ed24"}.icofont-brightkite:before{content:"\ed25"}.icofont-cloudapp:before{content:"\ed26"}.icofont-concrete5:before{content:"\ed27"}.icofont-delicious:before{content:"\ed28"}.icofont-designbump:before{content:"\ed29"}.icofont-designfloat:before{content:"\ed2a"}.icofont-deviantart:before{content:"\ed2b"}.icofont-digg:before{content:"\ed2c"}.icofont-dotcms:before{content:"\ed2d"}.icofont-dribbble:before{content:"\ed2e"}.icofont-dribble:before{content:"\ed2f"}.icofont-dropbox:before{content:"\ed30"}.icofont-ebuddy:before{content:"\ed31"}.icofont-ello:before{content:"\ed32"}.icofont-ember:before{content:"\ed33"}.icofont-envato:before{content:"\ed34"}.icofont-evernote:before{content:"\ed35"}.icofont-facebook-messenger:before{content:"\ed36"}.icofont-facebook:before{content:"\ed37"}.icofont-feedburner:before{content:"\ed38"}.icofont-flikr:before{content:"\ed39"}.icofont-folkd:before{content:"\ed3a"}.icofont-foursquare:before{content:"\ed3b"}.icofont-friendfeed:before{content:"\ed3c"}.icofont-ghost:before{content:"\ed3d"}.icofont-github:before{content:"\ed3e"}.icofont-gnome:before{content:"\ed3f"}.icofont-google-buzz:before{content:"\ed40"}.icofont-google-hangouts:before{content:"\ed41"}.icofont-google-map:before{content:"\ed42"}.icofont-google-plus:before{content:"\ed43"}.icofont-google-talk:before{content:"\ed44"}.icofont-hype-machine:before{content:"\ed45"}.icofont-instagram:before{content:"\ed46"}.icofont-kakaotalk:before{content:"\ed47"}.icofont-kickstarter:before{content:"\ed48"}.icofont-kik:before{content:"\ed49"}.icofont-kiwibox:before{content:"\ed4a"}.icofont-line-messenger:before{content:"\ed4b"}.icofont-line:before{content:"\ed4c"}.icofont-linkedin:before{content:"\ed4d"}.icofont-linux-mint:before{content:"\ed4e"}.icofont-live-messenger:before{content:"\ed4f"}.icofont-livejournal:before{content:"\ed50"}.icofont-magento:before{content:"\ed51"}.icofont-meetme:before{content:"\ed52"}.icofont-meetup:before{content:"\ed53"}.icofont-mixx:before{content:"\ed54"}.icofont-newsvine:before{content:"\ed55"}.icofont-nimbuss:before{content:"\ed56"}.icofont-odnoklassniki:before{content:"\ed57"}.icofont-opencart:before{content:"\ed58"}.icofont-oscommerce:before{content:"\ed59"}.icofont-pandora:before{content:"\ed5a"}.icofont-photobucket:before{content:"\ed5b"}.icofont-picasa:before{content:"\ed5c"}.icofont-pinterest:before{content:"\ed5d"}.icofont-prestashop:before{content:"\ed5e"}.icofont-qik:before{content:"\ed5f"}.icofont-qq:before{content:"\ed60"}.icofont-readernaut:before{content:"\ed61"}.icofont-reddit:before{content:"\ed62"}.icofont-renren:before{content:"\ed63"}.icofont-rss:before{content:"\ed64"}.icofont-shopify:before{content:"\ed65"}.icofont-silverstripe:before{content:"\ed66"}.icofont-skype:before{content:"\ed67"}.icofont-slack:before{content:"\ed68"}.icofont-slashdot:before{content:"\ed69"}.icofont-slidshare:before{content:"\ed6a"}.icofont-smugmug:before{content:"\ed6b"}.icofont-snapchat:before{content:"\ed6c"}.icofont-soundcloud:before{content:"\ed6d"}.icofont-spotify:before{content:"\ed6e"}.icofont-stack-exchange:before{content:"\ed6f"}.icofont-stack-overflow:before{content:"\ed70"}.icofont-steam:before{content:"\ed71"}.icofont-stumbleupon:before{content:"\ed72"}.icofont-tagged:before{content:"\ed73"}.icofont-technorati:before{content:"\ed74"}.icofont-telegram:before{content:"\ed75"}.icofont-tinder:before{content:"\ed76"}.icofont-trello:before{content:"\ed77"}.icofont-tumblr:before{content:"\ed78"}.icofont-twitch:before{content:"\ed79"}.icofont-twitter:before{content:"\ed7a"}.icofont-typo3:before{content:"\ed7b"}.icofont-ubercart:before{content:"\ed7c"}.icofont-viber:before{content:"\ed7d"}.icofont-viddler:before{content:"\ed7e"}.icofont-vimeo:before{content:"\ed7f"}.icofont-vine:before{content:"\ed80"}.icofont-virb:before{content:"\ed81"}.icofont-virtuemart:before{content:"\ed82"}.icofont-vk:before{content:"\ed83"}.icofont-wechat:before{content:"\ed84"}.icofont-weibo:before{content:"\ed85"}.icofont-whatsapp:before{content:"\ed86"}.icofont-xing:before{content:"\ed87"}.icofont-yahoo:before{content:"\ed88"}.icofont-yelp:before{content:"\ed89"}.icofont-youku:before{content:"\ed8a"}.icofont-youtube:before{content:"\ed8b"}.icofont-zencart:before{content:"\ed8c"}.icofont-badminton-birdie:before{content:"\ed8d"}.icofont-baseball:before{content:"\ed8e"}.icofont-baseballer:before{content:"\ed8f"}.icofont-basketball-hoop:before{content:"\ed90"}.icofont-basketball:before{content:"\ed91"}.icofont-billiard-ball:before{content:"\ed92"}.icofont-boot-alt-1:before{content:"\ed93"}.icofont-boot-alt-2:before{content:"\ed94"}.icofont-boot:before{content:"\ed95"}.icofont-bowling-alt:before{content:"\ed96"}.icofont-bowling:before{content:"\ed97"}.icofont-canoe:before{content:"\ed98"}.icofont-cheer-leader:before{content:"\ed99"}.icofont-climbing:before{content:"\ed9a"}.icofont-corner:before{content:"\ed9b"}.icofont-field-alt:before{content:"\ed9c"}.icofont-field:before{content:"\ed9d"}.icofont-football-alt:before{content:"\ed9e"}.icofont-football-american:before{content:"\ed9f"}.icofont-football:before{content:"\eda0"}.icofont-foul:before{content:"\eda1"}.icofont-goal-keeper:before{content:"\eda2"}.icofont-goal:before{content:"\eda3"}.icofont-golf-alt:before{content:"\eda4"}.icofont-golf-bag:before{content:"\eda5"}.icofont-golf-cart:before{content:"\eda6"}.icofont-golf-field:before{content:"\eda7"}.icofont-golf:before{content:"\eda8"}.icofont-golfer:before{content:"\eda9"}.icofont-helmet:before{content:"\edaa"}.icofont-hockey-alt:before{content:"\edab"}.icofont-hockey:before{content:"\edac"}.icofont-ice-skate:before{content:"\edad"}.icofont-jersey-alt:before{content:"\edae"}.icofont-jersey:before{content:"\edaf"}.icofont-jumping:before{content:"\edb0"}.icofont-kick:before{content:"\edb1"}.icofont-leg:before{content:"\edb2"}.icofont-match-review:before{content:"\edb3"}.icofont-medal-sport:before{content:"\edb4"}.icofont-offside:before{content:"\edb5"}.icofont-olympic-logo:before{content:"\edb6"}.icofont-olympic:before{content:"\edb7"}.icofont-padding:before{content:"\edb8"}.icofont-penalty-card:before{content:"\edb9"}.icofont-racer:before{content:"\edba"}.icofont-racing-car:before{content:"\edbb"}.icofont-racing-flag-alt:before{content:"\edbc"}.icofont-racing-flag:before{content:"\edbd"}.icofont-racings-wheel:before{content:"\edbe"}.icofont-referee:before{content:"\edbf"}.icofont-refree-jersey:before{content:"\edc0"}.icofont-result-sport:before{content:"\edc1"}.icofont-rugby-ball:before{content:"\edc2"}.icofont-rugby-player:before{content:"\edc3"}.icofont-rugby:before{content:"\edc4"}.icofont-runner-alt-1:before{content:"\edc5"}.icofont-runner-alt-2:before{content:"\edc6"}.icofont-runner:before{content:"\edc7"}.icofont-score-board:before{content:"\edc8"}.icofont-skiing-man:before{content:"\edc9"}.icofont-skydiving-goggles:before{content:"\edca"}.icofont-snow-mobile:before{content:"\edcb"}.icofont-steering:before{content:"\edcc"}.icofont-stopwatch:before{content:"\edcd"}.icofont-substitute:before{content:"\edce"}.icofont-swimmer:before{content:"\edcf"}.icofont-table-tennis:before{content:"\edd0"}.icofont-team-alt:before{content:"\edd1"}.icofont-team:before{content:"\edd2"}.icofont-tennis-player:before{content:"\edd3"}.icofont-tennis:before{content:"\edd4"}.icofont-tracking:before{content:"\edd5"}.icofont-trophy-alt:before{content:"\edd6"}.icofont-trophy:before{content:"\edd7"}.icofont-volleyball-alt:before{content:"\edd8"}.icofont-volleyball-fire:before{content:"\edd9"}.icofont-volleyball:before{content:"\edda"}.icofont-water-bottle:before{content:"\eddb"}.icofont-whistle-alt:before{content:"\eddc"}.icofont-whistle:before{content:"\eddd"}.icofont-win-trophy:before{content:"\edde"}.icofont-align-center:before{content:"\eddf"}.icofont-align-left:before{content:"\ede0"}.icofont-align-right:before{content:"\ede1"}.icofont-all-caps:before{content:"\ede2"}.icofont-bold:before{content:"\ede3"}.icofont-brush:before{content:"\ede4"}.icofont-clip-board:before{content:"\ede5"}.icofont-code-alt:before{content:"\ede6"}.icofont-color-bucket:before{content:"\ede7"}.icofont-color-picker:before{content:"\ede8"}.icofont-copy-invert:before{content:"\ede9"}.icofont-copy:before{content:"\edea"}.icofont-cut:before{content:"\edeb"}.icofont-delete-alt:before{content:"\edec"}.icofont-edit-alt:before{content:"\eded"}.icofont-eraser-alt:before{content:"\edee"}.icofont-font:before{content:"\edef"}.icofont-heading:before{content:"\edf0"}.icofont-indent:before{content:"\edf1"}.icofont-italic-alt:before{content:"\edf2"}.icofont-italic:before{content:"\edf3"}.icofont-justify-all:before{content:"\edf4"}.icofont-justify-center:before{content:"\edf5"}.icofont-justify-left:before{content:"\edf6"}.icofont-justify-right:before{content:"\edf7"}.icofont-link-broken:before{content:"\edf8"}.icofont-outdent:before{content:"\edf9"}.icofont-paper-clip:before{content:"\edfa"}.icofont-paragraph:before{content:"\edfb"}.icofont-pin:before{content:"\edfc"}.icofont-printer:before{content:"\edfd"}.icofont-redo:before{content:"\edfe"}.icofont-rotation:before{content:"\edff"}.icofont-save:before{content:"\ee00"}.icofont-small-cap:before{content:"\ee01"}.icofont-strike-through:before{content:"\ee02"}.icofont-sub-listing:before{content:"\ee03"}.icofont-subscript:before{content:"\ee04"}.icofont-superscript:before{content:"\ee05"}.icofont-table:before{content:"\ee06"}.icofont-text-height:before{content:"\ee07"}.icofont-text-width:before{content:"\ee08"}.icofont-trash:before{content:"\ee09"}.icofont-underline:before{content:"\ee0a"}.icofont-undo:before{content:"\ee0b"}.icofont-air-balloon:before{content:"\ee0c"}.icofont-airplane-alt:before{content:"\ee0d"}.icofont-airplane:before{content:"\ee0e"}.icofont-articulated-truck:before{content:"\ee0f"}.icofont-auto-mobile:before{content:"\ee10"}.icofont-auto-rickshaw:before{content:"\ee11"}.icofont-bicycle-alt-1:before{content:"\ee12"}.icofont-bicycle-alt-2:before{content:"\ee13"}.icofont-bicycle:before{content:"\ee14"}.icofont-bus-alt-1:before{content:"\ee15"}.icofont-bus-alt-2:before{content:"\ee16"}.icofont-bus-alt-3:before{content:"\ee17"}.icofont-bus:before{content:"\ee18"}.icofont-cab:before{content:"\ee19"}.icofont-cable-car:before{content:"\ee1a"}.icofont-car-alt-1:before{content:"\ee1b"}.icofont-car-alt-2:before{content:"\ee1c"}.icofont-car-alt-3:before{content:"\ee1d"}.icofont-car-alt-4:before{content:"\ee1e"}.icofont-car:before{content:"\ee1f"}.icofont-delivery-time:before{content:"\ee20"}.icofont-fast-delivery:before{content:"\ee21"}.icofont-fire-truck-alt:before{content:"\ee22"}.icofont-fire-truck:before{content:"\ee23"}.icofont-free-delivery:before{content:"\ee24"}.icofont-helicopter:before{content:"\ee25"}.icofont-motor-bike-alt:before{content:"\ee26"}.icofont-motor-bike:before{content:"\ee27"}.icofont-motor-biker:before{content:"\ee28"}.icofont-oil-truck:before{content:"\ee29"}.icofont-rickshaw:before{content:"\ee2a"}.icofont-rocket-alt-1:before{content:"\ee2b"}.icofont-rocket-alt-2:before{content:"\ee2c"}.icofont-rocket:before{content:"\ee2d"}.icofont-sail-boat-alt-1:before{content:"\ee2e"}.icofont-sail-boat-alt-2:before{content:"\ee2f"}.icofont-sail-boat:before{content:"\ee30"}.icofont-scooter:before{content:"\ee31"}.icofont-sea-plane:before{content:"\ee32"}.icofont-ship-alt:before{content:"\ee33"}.icofont-ship:before{content:"\ee34"}.icofont-speed-boat:before{content:"\ee35"}.icofont-taxi:before{content:"\ee36"}.icofont-tractor:before{content:"\ee37"}.icofont-train-line:before{content:"\ee38"}.icofont-train-steam:before{content:"\ee39"}.icofont-tram:before{content:"\ee3a"}.icofont-truck-alt:before{content:"\ee3b"}.icofont-truck-loaded:before{content:"\ee3c"}.icofont-truck:before{content:"\ee3d"}.icofont-van-alt:before{content:"\ee3e"}.icofont-van:before{content:"\ee3f"}.icofont-yacht:before{content:"\ee40"}.icofont-5-star-hotel:before{content:"\ee41"}.icofont-air-ticket:before{content:"\ee42"}.icofont-beach-bed:before{content:"\ee43"}.icofont-beach:before{content:"\ee44"}.icofont-camping-vest:before{content:"\ee45"}.icofont-direction-sign:before{content:"\ee46"}.icofont-hill-side:before{content:"\ee47"}.icofont-hill:before{content:"\ee48"}.icofont-hotel:before{content:"\ee49"}.icofont-island-alt:before{content:"\ee4a"}.icofont-island:before{content:"\ee4b"}.icofont-sandals-female:before{content:"\ee4c"}.icofont-sandals-male:before{content:"\ee4d"}.icofont-travelling:before{content:"\ee4e"}.icofont-breakdown:before{content:"\ee4f"}.icofont-celsius:before{content:"\ee50"}.icofont-clouds:before{content:"\ee51"}.icofont-cloudy:before{content:"\ee52"}.icofont-dust:before{content:"\ee53"}.icofont-eclipse:before{content:"\ee54"}.icofont-fahrenheit:before{content:"\ee55"}.icofont-forest-fire:before{content:"\ee56"}.icofont-full-night:before{content:"\ee57"}.icofont-full-sunny:before{content:"\ee58"}.icofont-hail-night:before{content:"\ee59"}.icofont-hail-rainy-night:before{content:"\ee5a"}.icofont-hail-rainy-sunny:before{content:"\ee5b"}.icofont-hail-rainy:before{content:"\ee5c"}.icofont-hail-sunny:before{content:"\ee5d"}.icofont-hail-thunder-night:before{content:"\ee5e"}.icofont-hail-thunder-sunny:before{content:"\ee5f"}.icofont-hail-thunder:before{content:"\ee60"}.icofont-hail:before{content:"\ee61"}.icofont-hill-night:before{content:"\ee62"}.icofont-hill-sunny:before{content:"\ee63"}.icofont-hurricane:before{content:"\ee64"}.icofont-meteor:before{content:"\ee65"}.icofont-night:before{content:"\ee66"}.icofont-rainy-night:before{content:"\ee67"}.icofont-rainy-sunny:before{content:"\ee68"}.icofont-rainy-thunder:before{content:"\ee69"}.icofont-rainy:before{content:"\ee6a"}.icofont-snow-alt:before{content:"\ee6b"}.icofont-snow-flake:before{content:"\ee6c"}.icofont-snow-temp:before{content:"\ee6d"}.icofont-snow:before{content:"\ee6e"}.icofont-snowy-hail:before{content:"\ee6f"}.icofont-snowy-night-hail:before{content:"\ee70"}.icofont-snowy-night-rainy:before{content:"\ee71"}.icofont-snowy-night:before{content:"\ee72"}.icofont-snowy-rainy:before{content:"\ee73"}.icofont-snowy-sunny-hail:before{content:"\ee74"}.icofont-snowy-sunny-rainy:before{content:"\ee75"}.icofont-snowy-sunny:before{content:"\ee76"}.icofont-snowy-thunder-night:before{content:"\ee77"}.icofont-snowy-thunder-sunny:before{content:"\ee78"}.icofont-snowy-thunder:before{content:"\ee79"}.icofont-snowy-windy-night:before{content:"\ee7a"}.icofont-snowy-windy-sunny:before{content:"\ee7b"}.icofont-snowy-windy:before{content:"\ee7c"}.icofont-snowy:before{content:"\ee7d"}.icofont-sun-alt:before{content:"\ee7e"}.icofont-sun-rise:before{content:"\ee7f"}.icofont-sun-set:before{content:"\ee80"}.icofont-sun:before{content:"\ee81"}.icofont-sunny-day-temp:before{content:"\ee82"}.icofont-sunny:before{content:"\ee83"}.icofont-thunder-light:before{content:"\ee84"}.icofont-tornado:before{content:"\ee85"}.icofont-umbrella-alt:before{content:"\ee86"}.icofont-umbrella:before{content:"\ee87"}.icofont-volcano:before{content:"\ee88"}.icofont-wave:before{content:"\ee89"}.icofont-wind-scale-0:before{content:"\ee8a"}.icofont-wind-scale-1:before{content:"\ee8b"}.icofont-wind-scale-10:before{content:"\ee8c"}.icofont-wind-scale-11:before{content:"\ee8d"}.icofont-wind-scale-12:before{content:"\ee8e"}.icofont-wind-scale-2:before{content:"\ee8f"}.icofont-wind-scale-3:before{content:"\ee90"}.icofont-wind-scale-4:before{content:"\ee91"}.icofont-wind-scale-5:before{content:"\ee92"}.icofont-wind-scale-6:before{content:"\ee93"}.icofont-wind-scale-7:before{content:"\ee94"}.icofont-wind-scale-8:before{content:"\ee95"}.icofont-wind-scale-9:before{content:"\ee96"}.icofont-wind-waves:before{content:"\ee97"}.icofont-wind:before{content:"\ee98"}.icofont-windy-hail:before{content:"\ee99"}.icofont-windy-night:before{content:"\ee9a"}.icofont-windy-raining:before{content:"\ee9b"}.icofont-windy-sunny:before{content:"\ee9c"}.icofont-windy-thunder-raining:before{content:"\ee9d"}.icofont-windy-thunder:before{content:"\ee9e"}.icofont-windy:before{content:"\ee9f"}.icofont-addons:before{content:"\eea0"}.icofont-address-book:before{content:"\eea1"}.icofont-adjust:before{content:"\eea2"}.icofont-alarm:before{content:"\eea3"}.icofont-anchor:before{content:"\eea4"}.icofont-archive:before{content:"\eea5"}.icofont-at:before{content:"\eea6"}.icofont-attachment:before{content:"\eea7"}.icofont-audio:before{content:"\eea8"}.icofont-automation:before{content:"\eea9"}.icofont-badge:before{content:"\eeaa"}.icofont-bag-alt:before{content:"\eeab"}.icofont-bag:before{content:"\eeac"}.icofont-ban:before{content:"\eead"}.icofont-bar-code:before{content:"\eeae"}.icofont-bars:before{content:"\eeaf"}.icofont-basket:before{content:"\eeb0"}.icofont-battery-empty:before{content:"\eeb1"}.icofont-battery-full:before{content:"\eeb2"}.icofont-battery-half:before{content:"\eeb3"}.icofont-battery-low:before{content:"\eeb4"}.icofont-beaker:before{content:"\eeb5"}.icofont-beard:before{content:"\eeb6"}.icofont-bed:before{content:"\eeb7"}.icofont-bell:before{content:"\eeb8"}.icofont-beverage:before{content:"\eeb9"}.icofont-bill:before{content:"\eeba"}.icofont-bin:before{content:"\eebb"}.icofont-binary:before{content:"\eebc"}.icofont-binoculars:before{content:"\eebd"}.icofont-bluetooth:before{content:"\eebe"}.icofont-bomb:before{content:"\eebf"}.icofont-book-mark:before{content:"\eec0"}.icofont-box:before{content:"\eec1"}.icofont-briefcase:before{content:"\eec2"}.icofont-broken:before{content:"\eec3"}.icofont-bucket:before{content:"\eec4"}.icofont-bucket1:before{content:"\eec5"}.icofont-bucket2:before{content:"\eec6"}.icofont-bug:before{content:"\eec7"}.icofont-building:before{content:"\eec8"}.icofont-bulb-alt:before{content:"\eec9"}.icofont-bullet:before{content:"\eeca"}.icofont-bullhorn:before{content:"\eecb"}.icofont-bullseye:before{content:"\eecc"}.icofont-calendar:before{content:"\eecd"}.icofont-camera-alt:before{content:"\eece"}.icofont-camera:before{content:"\eecf"}.icofont-card:before{content:"\eed0"}.icofont-cart-alt:before{content:"\eed1"}.icofont-cart:before{content:"\eed2"}.icofont-cc:before{content:"\eed3"}.icofont-charging:before{content:"\eed4"}.icofont-chat:before{content:"\eed5"}.icofont-check-alt:before{content:"\eed6"}.icofont-check-circled:before{content:"\eed7"}.icofont-check:before{content:"\eed8"}.icofont-checked:before{content:"\eed9"}.icofont-children-care:before{content:"\eeda"}.icofont-clip:before{content:"\eedb"}.icofont-clock-time:before{content:"\eedc"}.icofont-close-circled:before{content:"\eedd"}.icofont-close-line-circled:before{content:"\eede"}.icofont-close-line-squared-alt:before{content:"\eedf"}.icofont-close-line-squared:before{content:"\eee0"}.icofont-close-line:before{content:"\eee1"}.icofont-close-squared-alt:before{content:"\eee2"}.icofont-close-squared:before{content:"\eee3"}.icofont-close:before{content:"\eee4"}.icofont-cloud-download:before{content:"\eee5"}.icofont-cloud-refresh:before{content:"\eee6"}.icofont-cloud-upload:before{content:"\eee7"}.icofont-cloud:before{content:"\eee8"}.icofont-code-not-allowed:before{content:"\eee9"}.icofont-code:before{content:"\eeea"}.icofont-comment:before{content:"\eeeb"}.icofont-compass-alt:before{content:"\eeec"}.icofont-compass:before{content:"\eeed"}.icofont-computer:before{content:"\eeee"}.icofont-connection:before{content:"\eeef"}.icofont-console:before{content:"\eef0"}.icofont-contacts:before{content:"\eef1"}.icofont-contrast:before{content:"\eef2"}.icofont-copyright:before{content:"\eef3"}.icofont-credit-card:before{content:"\eef4"}.icofont-crop:before{content:"\eef5"}.icofont-crown:before{content:"\eef6"}.icofont-cube:before{content:"\eef7"}.icofont-cubes:before{content:"\eef8"}.icofont-dashboard-web:before{content:"\eef9"}.icofont-dashboard:before{content:"\eefa"}.icofont-data:before{content:"\eefb"}.icofont-database-add:before{content:"\eefc"}.icofont-database-locked:before{content:"\eefd"}.icofont-database-remove:before{content:"\eefe"}.icofont-database:before{content:"\eeff"}.icofont-delete:before{content:"\ef00"}.icofont-diamond:before{content:"\ef01"}.icofont-dice-multiple:before{content:"\ef02"}.icofont-dice:before{content:"\ef03"}.icofont-disc:before{content:"\ef04"}.icofont-diskette:before{content:"\ef05"}.icofont-document-folder:before{content:"\ef06"}.icofont-download-alt:before{content:"\ef07"}.icofont-download:before{content:"\ef08"}.icofont-downloaded:before{content:"\ef09"}.icofont-drag:before{content:"\ef0a"}.icofont-drag1:before{content:"\ef0b"}.icofont-drag2:before{content:"\ef0c"}.icofont-drag3:before{content:"\ef0d"}.icofont-earth:before{content:"\ef0e"}.icofont-ebook:before{content:"\ef0f"}.icofont-edit:before{content:"\ef10"}.icofont-eject:before{content:"\ef11"}.icofont-email:before{content:"\ef12"}.icofont-envelope-open:before{content:"\ef13"}.icofont-envelope:before{content:"\ef14"}.icofont-eraser:before{content:"\ef15"}.icofont-error:before{content:"\ef16"}.icofont-excavator:before{content:"\ef17"}.icofont-exchange:before{content:"\ef18"}.icofont-exclamation-circle:before{content:"\ef19"}.icofont-exclamation-square:before{content:"\ef1a"}.icofont-exclamation-tringle:before{content:"\ef1b"}.icofont-exclamation:before{content:"\ef1c"}.icofont-exit:before{content:"\ef1d"}.icofont-expand:before{content:"\ef1e"}.icofont-external-link:before{content:"\ef1f"}.icofont-external:before{content:"\ef20"}.icofont-eye-alt:before{content:"\ef21"}.icofont-eye-blocked:before{content:"\ef22"}.icofont-eye-dropper:before{content:"\ef23"}.icofont-eye:before{content:"\ef24"}.icofont-favourite:before{content:"\ef25"}.icofont-fax:before{content:"\ef26"}.icofont-file-fill:before{content:"\ef27"}.icofont-film:before{content:"\ef28"}.icofont-filter:before{content:"\ef29"}.icofont-fire-alt:before{content:"\ef2a"}.icofont-fire-burn:before{content:"\ef2b"}.icofont-fire:before{content:"\ef2c"}.icofont-flag-alt-1:before{content:"\ef2d"}.icofont-flag-alt-2:before{content:"\ef2e"}.icofont-flag:before{content:"\ef2f"}.icofont-flame-torch:before{content:"\ef30"}.icofont-flash-light:before{content:"\ef31"}.icofont-flash:before{content:"\ef32"}.icofont-flask:before{content:"\ef33"}.icofont-focus:before{content:"\ef34"}.icofont-folder-open:before{content:"\ef35"}.icofont-folder:before{content:"\ef36"}.icofont-foot-print:before{content:"\ef37"}.icofont-garbage:before{content:"\ef38"}.icofont-gear-alt:before{content:"\ef39"}.icofont-gear:before{content:"\ef3a"}.icofont-gears:before{content:"\ef3b"}.icofont-gift:before{content:"\ef3c"}.icofont-glass:before{content:"\ef3d"}.icofont-globe:before{content:"\ef3e"}.icofont-graffiti:before{content:"\ef3f"}.icofont-grocery:before{content:"\ef40"}.icofont-hand:before{content:"\ef41"}.icofont-hanger:before{content:"\ef42"}.icofont-hard-disk:before{content:"\ef43"}.icofont-heart-alt:before{content:"\ef44"}.icofont-heart:before{content:"\ef45"}.icofont-history:before{content:"\ef46"}.icofont-home:before{content:"\ef47"}.icofont-horn:before{content:"\ef48"}.icofont-hour-glass:before{content:"\ef49"}.icofont-id:before{content:"\ef4a"}.icofont-image:before{content:"\ef4b"}.icofont-inbox:before{content:"\ef4c"}.icofont-infinite:before{content:"\ef4d"}.icofont-info-circle:before{content:"\ef4e"}.icofont-info-square:before{content:"\ef4f"}.icofont-info:before{content:"\ef50"}.icofont-institution:before{content:"\ef51"}.icofont-interface:before{content:"\ef52"}.icofont-invisible:before{content:"\ef53"}.icofont-jacket:before{content:"\ef54"}.icofont-jar:before{content:"\ef55"}.icofont-jewlery:before{content:"\ef56"}.icofont-karate:before{content:"\ef57"}.icofont-key-hole:before{content:"\ef58"}.icofont-key:before{content:"\ef59"}.icofont-label:before{content:"\ef5a"}.icofont-lamp:before{content:"\ef5b"}.icofont-layers:before{content:"\ef5c"}.icofont-layout:before{content:"\ef5d"}.icofont-leaf:before{content:"\ef5e"}.icofont-leaflet:before{content:"\ef5f"}.icofont-learn:before{content:"\ef60"}.icofont-lego:before{content:"\ef61"}.icofont-lens:before{content:"\ef62"}.icofont-letter:before{content:"\ef63"}.icofont-letterbox:before{content:"\ef64"}.icofont-library:before{content:"\ef65"}.icofont-license:before{content:"\ef66"}.icofont-life-bouy:before{content:"\ef67"}.icofont-life-buoy:before{content:"\ef68"}.icofont-life-jacket:before{content:"\ef69"}.icofont-life-ring:before{content:"\ef6a"}.icofont-light-bulb:before{content:"\ef6b"}.icofont-lighter:before{content:"\ef6c"}.icofont-lightning-ray:before{content:"\ef6d"}.icofont-like:before{content:"\ef6e"}.icofont-line-height:before{content:"\ef6f"}.icofont-link-alt:before{content:"\ef70"}.icofont-link:before{content:"\ef71"}.icofont-list:before{content:"\ef72"}.icofont-listening:before{content:"\ef73"}.icofont-listine-dots:before{content:"\ef74"}.icofont-listing-box:before{content:"\ef75"}.icofont-listing-number:before{content:"\ef76"}.icofont-live-support:before{content:"\ef77"}.icofont-location-arrow:before{content:"\ef78"}.icofont-location-pin:before{content:"\ef79"}.icofont-lock:before{content:"\ef7a"}.icofont-login:before{content:"\ef7b"}.icofont-logout:before{content:"\ef7c"}.icofont-lollipop:before{content:"\ef7d"}.icofont-long-drive:before{content:"\ef7e"}.icofont-look:before{content:"\ef7f"}.icofont-loop:before{content:"\ef80"}.icofont-luggage:before{content:"\ef81"}.icofont-lunch:before{content:"\ef82"}.icofont-lungs:before{content:"\ef83"}.icofont-magic-alt:before{content:"\ef84"}.icofont-magic:before{content:"\ef85"}.icofont-magnet:before{content:"\ef86"}.icofont-mail-box:before{content:"\ef87"}.icofont-mail:before{content:"\ef88"}.icofont-male:before{content:"\ef89"}.icofont-map-pins:before{content:"\ef8a"}.icofont-map:before{content:"\ef8b"}.icofont-maximize:before{content:"\ef8c"}.icofont-measure:before{content:"\ef8d"}.icofont-medicine:before{content:"\ef8e"}.icofont-mega-phone:before{content:"\ef8f"}.icofont-megaphone-alt:before{content:"\ef90"}.icofont-megaphone:before{content:"\ef91"}.icofont-memorial:before{content:"\ef92"}.icofont-memory-card:before{content:"\ef93"}.icofont-mic-mute:before{content:"\ef94"}.icofont-mic:before{content:"\ef95"}.icofont-military:before{content:"\ef96"}.icofont-mill:before{content:"\ef97"}.icofont-minus-circle:before{content:"\ef98"}.icofont-minus-square:before{content:"\ef99"}.icofont-minus:before{content:"\ef9a"}.icofont-mobile-phone:before{content:"\ef9b"}.icofont-molecule:before{content:"\ef9c"}.icofont-money:before{content:"\ef9d"}.icofont-moon:before{content:"\ef9e"}.icofont-mop:before{content:"\ef9f"}.icofont-muffin:before{content:"\efa0"}.icofont-mustache:before{content:"\efa1"}.icofont-navigation-menu:before{content:"\efa2"}.icofont-navigation:before{content:"\efa3"}.icofont-network-tower:before{content:"\efa4"}.icofont-network:before{content:"\efa5"}.icofont-news:before{content:"\efa6"}.icofont-newspaper:before{content:"\efa7"}.icofont-no-smoking:before{content:"\efa8"}.icofont-not-allowed:before{content:"\efa9"}.icofont-notebook:before{content:"\efaa"}.icofont-notepad:before{content:"\efab"}.icofont-notification:before{content:"\efac"}.icofont-numbered:before{content:"\efad"}.icofont-opposite:before{content:"\efae"}.icofont-optic:before{content:"\efaf"}.icofont-options:before{content:"\efb0"}.icofont-package:before{content:"\efb1"}.icofont-page:before{content:"\efb2"}.icofont-paint:before{content:"\efb3"}.icofont-paper-plane:before{content:"\efb4"}.icofont-paperclip:before{content:"\efb5"}.icofont-papers:before{content:"\efb6"}.icofont-pay:before{content:"\efb7"}.icofont-penguin-linux:before{content:"\efb8"}.icofont-pestle:before{content:"\efb9"}.icofont-phone-circle:before{content:"\efba"}.icofont-phone:before{content:"\efbb"}.icofont-picture:before{content:"\efbc"}.icofont-pine:before{content:"\efbd"}.icofont-pixels:before{content:"\efbe"}.icofont-plugin:before{content:"\efbf"}.icofont-plus-circle:before{content:"\efc0"}.icofont-plus-square:before{content:"\efc1"}.icofont-plus:before{content:"\efc2"}.icofont-polygonal:before{content:"\efc3"}.icofont-power:before{content:"\efc4"}.icofont-price:before{content:"\efc5"}.icofont-print:before{content:"\efc6"}.icofont-puzzle:before{content:"\efc7"}.icofont-qr-code:before{content:"\efc8"}.icofont-queen:before{content:"\efc9"}.icofont-question-circle:before{content:"\efca"}.icofont-question-square:before{content:"\efcb"}.icofont-question:before{content:"\efcc"}.icofont-quote-left:before{content:"\efcd"}.icofont-quote-right:before{content:"\efce"}.icofont-random:before{content:"\efcf"}.icofont-recycle:before{content:"\efd0"}.icofont-refresh:before{content:"\efd1"}.icofont-repair:before{content:"\efd2"}.icofont-reply-all:before{content:"\efd3"}.icofont-reply:before{content:"\efd4"}.icofont-resize:before{content:"\efd5"}.icofont-responsive:before{content:"\efd6"}.icofont-retweet:before{content:"\efd7"}.icofont-road:before{content:"\efd8"}.icofont-robot:before{content:"\efd9"}.icofont-royal:before{content:"\efda"}.icofont-rss-feed:before{content:"\efdb"}.icofont-safety:before{content:"\efdc"}.icofont-sale-discount:before{content:"\efdd"}.icofont-satellite:before{content:"\efde"}.icofont-send-mail:before{content:"\efdf"}.icofont-server:before{content:"\efe0"}.icofont-settings-alt:before{content:"\efe1"}.icofont-settings:before{content:"\efe2"}.icofont-share-alt:before{content:"\efe3"}.icofont-share-boxed:before{content:"\efe4"}.icofont-share:before{content:"\efe5"}.icofont-shield:before{content:"\efe6"}.icofont-shopping-cart:before{content:"\efe7"}.icofont-sign-in:before{content:"\efe8"}.icofont-sign-out:before{content:"\efe9"}.icofont-signal:before{content:"\efea"}.icofont-site-map:before{content:"\efeb"}.icofont-smart-phone:before{content:"\efec"}.icofont-soccer:before{content:"\efed"}.icofont-sort-alt:before{content:"\efee"}.icofont-sort:before{content:"\efef"}.icofont-space:before{content:"\eff0"}.icofont-spanner:before{content:"\eff1"}.icofont-speech-comments:before{content:"\eff2"}.icofont-speed-meter:before{content:"\eff3"}.icofont-spinner-alt-1:before{content:"\eff4"}.icofont-spinner-alt-2:before{content:"\eff5"}.icofont-spinner-alt-3:before{content:"\eff6"}.icofont-spinner-alt-4:before{content:"\eff7"}.icofont-spinner-alt-5:before{content:"\eff8"}.icofont-spinner-alt-6:before{content:"\eff9"}.icofont-spinner:before{content:"\effa"}.icofont-spreadsheet:before{content:"\effb"}.icofont-square:before{content:"\effc"}.icofont-ssl-security:before{content:"\effd"}.icofont-star-alt-1:before{content:"\effe"}.icofont-star-alt-2:before{content:"\efff"}.icofont-star:before{content:"\f000"}.icofont-street-view:before{content:"\f001"}.icofont-support-faq:before{content:"\f002"}.icofont-tack-pin:before{content:"\f003"}.icofont-tag:before{content:"\f004"}.icofont-tags:before{content:"\f005"}.icofont-tasks-alt:before{content:"\f006"}.icofont-tasks:before{content:"\f007"}.icofont-telephone:before{content:"\f008"}.icofont-telescope:before{content:"\f009"}.icofont-terminal:before{content:"\f00a"}.icofont-thumbs-down:before{content:"\f00b"}.icofont-thumbs-up:before{content:"\f00c"}.icofont-tick-boxed:before{content:"\f00d"}.icofont-tick-mark:before{content:"\f00e"}.icofont-ticket:before{content:"\f00f"}.icofont-tie:before{content:"\f010"}.icofont-toggle-off:before{content:"\f011"}.icofont-toggle-on:before{content:"\f012"}.icofont-tools-alt-2:before{content:"\f013"}.icofont-tools:before{content:"\f014"}.icofont-touch:before{content:"\f015"}.icofont-traffic-light:before{content:"\f016"}.icofont-transparent:before{content:"\f017"}.icofont-tree:before{content:"\f018"}.icofont-unique-idea:before{content:"\f019"}.icofont-unlock:before{content:"\f01a"}.icofont-unlocked:before{content:"\f01b"}.icofont-upload-alt:before{content:"\f01c"}.icofont-upload:before{content:"\f01d"}.icofont-usb-drive:before{content:"\f01e"}.icofont-usb:before{content:"\f01f"}.icofont-vector-path:before{content:"\f020"}.icofont-verification-check:before{content:"\f021"}.icofont-wall-clock:before{content:"\f022"}.icofont-wall:before{content:"\f023"}.icofont-wallet:before{content:"\f024"}.icofont-warning-alt:before{content:"\f025"}.icofont-warning:before{content:"\f026"}.icofont-water-drop:before{content:"\f027"}.icofont-web:before{content:"\f028"}.icofont-wheelchair:before{content:"\f029"}.icofont-wifi-alt:before{content:"\f02a"}.icofont-wifi:before{content:"\f02b"}.icofont-world:before{content:"\f02c"}.icofont-zigzag:before{content:"\f02d"}.icofont-zipped:before{content:"\f02e"}.icofont-xs{font-size:.5em}.icofont-sm{font-size:.75em}.icofont-md{font-size:1.25em}.icofont-lg{font-size:1.5em}.icofont-1x{font-size:1em}.icofont-2x{font-size:2em}.icofont-3x{font-size:3em}.icofont-4x{font-size:4em}.icofont-5x{font-size:5em}.icofont-6x{font-size:6em}.icofont-7x{font-size:7em}.icofont-8x{font-size:8em}.icofont-9x{font-size:9em}.icofont-10x{font-size:10em}.icofont-fw{text-align:center;width:1.25em}.icofont-ul{list-style-type:none;padding-left:0;margin-left:0}.icofont-ul>li{position:relative;line-height:2em}.icofont-ul>li .icofont{display:inline-block;vertical-align:middle}.icofont-border{border:solid .08em #f1f1f1;border-radius:.1em;padding:.2em .25em .15em}.icofont-pull-left{float:left}.icofont-pull-right{float:right}.icofont.icofont-pull-left{margin-right:.3em}.icofont.icofont-pull-right{margin-left:.3em}.icofont-spin{-webkit-animation:icofont-spin 2s infinite linear;animation:icofont-spin 2s infinite linear;display:inline-block}.icofont-pulse{-webkit-animation:icofont-spin 1s infinite steps(8);animation:icofont-spin 1s infinite steps(8);display:inline-block}@-webkit-keyframes icofont-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes icofont-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.icofont-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.icofont-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.icofont-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.icofont-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.icofont-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.icofont-flip-horizontal.icofont-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .icofont-flip-horizontal,:root .icofont-flip-vertical,:root .icofont-rotate-180,:root .icofont-rotate-270,:root .icofont-rotate-90{-webkit-filter:none;filter:none;display:inline-block}.icofont-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} \ No newline at end of file diff --git a/hyperglass/static/icofont/demo.html b/hyperglass/static/icofont/demo.html new file mode 100644 index 0000000..2dba2c5 --- /dev/null +++ b/hyperglass/static/icofont/demo.html @@ -0,0 +1,18942 @@ + + + + + Examples | IcoFont + + + + +
+
+

IcoFont Icons

+
+
+
+ +
+ + + \ No newline at end of file diff --git a/hyperglass/static/icofont/fonts/icofont.eot b/hyperglass/static/icofont/fonts/icofont.eot new file mode 100644 index 0000000..56e15db Binary files /dev/null and b/hyperglass/static/icofont/fonts/icofont.eot differ diff --git a/hyperglass/static/icofont/fonts/icofont.svg b/hyperglass/static/icofont/fonts/icofont.svg new file mode 100644 index 0000000..8535ec6 --- /dev/null +++ b/hyperglass/static/icofont/fonts/icofont.svg @@ -0,0 +1,2105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/hyperglass/static/icofont/fonts/icofont.ttf b/hyperglass/static/icofont/fonts/icofont.ttf new file mode 100644 index 0000000..ba6d235 Binary files /dev/null and b/hyperglass/static/icofont/fonts/icofont.ttf differ diff --git a/hyperglass/static/icofont/fonts/icofont.woff b/hyperglass/static/icofont/fonts/icofont.woff new file mode 100644 index 0000000..48002ce Binary files /dev/null and b/hyperglass/static/icofont/fonts/icofont.woff differ diff --git a/hyperglass/static/icofont/fonts/icofont.woff2 b/hyperglass/static/icofont/fonts/icofont.woff2 new file mode 100644 index 0000000..75f03d7 Binary files /dev/null and b/hyperglass/static/icofont/fonts/icofont.woff2 differ diff --git a/hyperglass/static/icofont/icofont.css b/hyperglass/static/icofont/icofont.css new file mode 100644 index 0000000..f6d1006 --- /dev/null +++ b/hyperglass/static/icofont/icofont.css @@ -0,0 +1,10757 @@ +/*! +* @package IcoFont +* @version 1.0.1 +* @author IcoFont https://icofont.com +* @copyright Copyright (c) 2015 - 2018 IcoFont +* @license - https://icofont.com/license/ +*/ + +@font-face +{ + + font-family: "IcoFont"; +font-weight: normal; +font-style: "Regular"; +src: url("./fonts/icofont.woff2") format("woff2"), +url("./fonts/icofont.woff") format("woff"); +} + +[class^="icofont-"], [class*=" icofont-"] +{ + font-family: 'IcoFont' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + white-space: nowrap; + word-wrap: normal; + direction: ltr; + line-height: 1; +/* Better Font Rendering =========== */ + -webkit-font-feature-settings: "liga"; + -webkit-font-smoothing: antialiased; +} + +.icofont-angry-monster:before +{ + content: "\e800"; +} + +.icofont-bathtub:before +{ + content: "\e801"; +} + +.icofont-bird-wings:before +{ + content: "\e802"; +} + +.icofont-bow:before +{ + content: "\e803"; +} + +.icofont-castle:before +{ + content: "\e804"; +} + +.icofont-circuit:before +{ + content: "\e805"; +} + +.icofont-crown-king:before +{ + content: "\e806"; +} + +.icofont-crown-queen:before +{ + content: "\e807"; +} + +.icofont-dart:before +{ + content: "\e808"; +} + +.icofont-disability-race:before +{ + content: "\e809"; +} + +.icofont-diving-goggle:before +{ + content: "\e80a"; +} + +.icofont-eye-open:before +{ + content: "\e80b"; +} + +.icofont-flora-flower:before +{ + content: "\e80c"; +} + +.icofont-flora:before +{ + content: "\e80d"; +} + +.icofont-gift-box:before +{ + content: "\e80e"; +} + +.icofont-halloween-pumpkin:before +{ + content: "\e80f"; +} + +.icofont-hand-power:before +{ + content: "\e810"; +} + +.icofont-hand-thunder:before +{ + content: "\e811"; +} + +.icofont-king-monster:before +{ + content: "\e812"; +} + +.icofont-love:before +{ + content: "\e813"; +} + +.icofont-magician-hat:before +{ + content: "\e814"; +} + +.icofont-native-american:before +{ + content: "\e815"; +} + +.icofont-owl-look:before +{ + content: "\e816"; +} + +.icofont-phoenix:before +{ + content: "\e817"; +} + +.icofont-robot-face:before +{ + content: "\e818"; +} + +.icofont-sand-clock:before +{ + content: "\e819"; +} + +.icofont-shield-alt:before +{ + content: "\e81a"; +} + +.icofont-ship-wheel:before +{ + content: "\e81b"; +} + +.icofont-skull-danger:before +{ + content: "\e81c"; +} + +.icofont-skull-face:before +{ + content: "\e81d"; +} + +.icofont-snowmobile:before +{ + content: "\e81e"; +} + +.icofont-space-shuttle:before +{ + content: "\e81f"; +} + +.icofont-star-shape:before +{ + content: "\e820"; +} + +.icofont-swirl:before +{ + content: "\e821"; +} + +.icofont-tattoo-wing:before +{ + content: "\e822"; +} + +.icofont-throne:before +{ + content: "\e823"; +} + +.icofont-tree-alt:before +{ + content: "\e824"; +} + +.icofont-triangle:before +{ + content: "\e825"; +} + +.icofont-unity-hand:before +{ + content: "\e826"; +} + +.icofont-weed:before +{ + content: "\e827"; +} + +.icofont-woman-bird:before +{ + content: "\e828"; +} + +.icofont-bat:before +{ + content: "\e829"; +} + +.icofont-bear-face:before +{ + content: "\e82a"; +} + +.icofont-bear-tracks:before +{ + content: "\e82b"; +} + +.icofont-bear:before +{ + content: "\e82c"; +} + +.icofont-bird-alt:before +{ + content: "\e82d"; +} + +.icofont-bird-flying:before +{ + content: "\e82e"; +} + +.icofont-bird:before +{ + content: "\e82f"; +} + +.icofont-birds:before +{ + content: "\e830"; +} + +.icofont-bone:before +{ + content: "\e831"; +} + +.icofont-bull:before +{ + content: "\e832"; +} + +.icofont-butterfly-alt:before +{ + content: "\e833"; +} + +.icofont-butterfly:before +{ + content: "\e834"; +} + +.icofont-camel-alt:before +{ + content: "\e835"; +} + +.icofont-camel-head:before +{ + content: "\e836"; +} + +.icofont-camel:before +{ + content: "\e837"; +} + +.icofont-cat-alt-1:before +{ + content: "\e838"; +} + +.icofont-cat-alt-2:before +{ + content: "\e839"; +} + +.icofont-cat-alt-3:before +{ + content: "\e83a"; +} + +.icofont-cat-dog:before +{ + content: "\e83b"; +} + +.icofont-cat-face:before +{ + content: "\e83c"; +} + +.icofont-cat:before +{ + content: "\e83d"; +} + +.icofont-cow-head:before +{ + content: "\e83e"; +} + +.icofont-cow:before +{ + content: "\e83f"; +} + +.icofont-crab:before +{ + content: "\e840"; +} + +.icofont-crocodile:before +{ + content: "\e841"; +} + +.icofont-deer-head:before +{ + content: "\e842"; +} + +.icofont-dog-alt:before +{ + content: "\e843"; +} + +.icofont-dog-barking:before +{ + content: "\e844"; +} + +.icofont-dog:before +{ + content: "\e845"; +} + +.icofont-dolphin:before +{ + content: "\e846"; +} + +.icofont-duck-tracks:before +{ + content: "\e847"; +} + +.icofont-eagle-head:before +{ + content: "\e848"; +} + +.icofont-eaten-fish:before +{ + content: "\e849"; +} + +.icofont-elephant-alt:before +{ + content: "\e84a"; +} + +.icofont-elephant-head-alt:before +{ + content: "\e84b"; +} + +.icofont-elephant-head:before +{ + content: "\e84c"; +} + +.icofont-elephant:before +{ + content: "\e84d"; +} + +.icofont-elk:before +{ + content: "\e84e"; +} + +.icofont-fish-1:before +{ + content: "\e84f"; +} + +.icofont-fish-2:before +{ + content: "\e850"; +} + +.icofont-fish-3:before +{ + content: "\e851"; +} + +.icofont-fish-4:before +{ + content: "\e852"; +} + +.icofont-fish-5:before +{ + content: "\e853"; +} + +.icofont-fish:before +{ + content: "\e854"; +} + +.icofont-fox-alt:before +{ + content: "\e855"; +} + +.icofont-fox:before +{ + content: "\e856"; +} + +.icofont-frog-tracks:before +{ + content: "\e857"; +} + +.icofont-frog:before +{ + content: "\e858"; +} + +.icofont-froggy:before +{ + content: "\e859"; +} + +.icofont-giraffe-head-1:before +{ + content: "\e85a"; +} + +.icofont-giraffe-head-2:before +{ + content: "\e85b"; +} + +.icofont-giraffe-head:before +{ + content: "\e85c"; +} + +.icofont-giraffe:before +{ + content: "\e85d"; +} + +.icofont-goat-head:before +{ + content: "\e85e"; +} + +.icofont-gorilla:before +{ + content: "\e85f"; +} + +.icofont-hen-tracks:before +{ + content: "\e860"; +} + +.icofont-horse-head-1:before +{ + content: "\e861"; +} + +.icofont-horse-head-2:before +{ + content: "\e862"; +} + +.icofont-horse-head:before +{ + content: "\e863"; +} + +.icofont-horse-tracks:before +{ + content: "\e864"; +} + +.icofont-jellyfish:before +{ + content: "\e865"; +} + +.icofont-kangaroo:before +{ + content: "\e866"; +} + +.icofont-lemur:before +{ + content: "\e867"; +} + +.icofont-lion-head-1:before +{ + content: "\e868"; +} + +.icofont-lion-head-2:before +{ + content: "\e869"; +} + +.icofont-lion-head:before +{ + content: "\e86a"; +} + +.icofont-lion:before +{ + content: "\e86b"; +} + +.icofont-monkey-2:before +{ + content: "\e86c"; +} + +.icofont-monkey-3:before +{ + content: "\e86d"; +} + +.icofont-monkey-face:before +{ + content: "\e86e"; +} + +.icofont-monkey:before +{ + content: "\e86f"; +} + +.icofont-octopus-alt:before +{ + content: "\e870"; +} + +.icofont-octopus:before +{ + content: "\e871"; +} + +.icofont-owl:before +{ + content: "\e872"; +} + +.icofont-panda-face:before +{ + content: "\e873"; +} + +.icofont-panda:before +{ + content: "\e874"; +} + +.icofont-panther:before +{ + content: "\e875"; +} + +.icofont-parrot-lip:before +{ + content: "\e876"; +} + +.icofont-parrot:before +{ + content: "\e877"; +} + +.icofont-paw:before +{ + content: "\e878"; +} + +.icofont-pelican:before +{ + content: "\e879"; +} + +.icofont-penguin:before +{ + content: "\e87a"; +} + +.icofont-pig-face:before +{ + content: "\e87b"; +} + +.icofont-pig:before +{ + content: "\e87c"; +} + +.icofont-pigeon-1:before +{ + content: "\e87d"; +} + +.icofont-pigeon-2:before +{ + content: "\e87e"; +} + +.icofont-pigeon:before +{ + content: "\e87f"; +} + +.icofont-rabbit:before +{ + content: "\e880"; +} + +.icofont-rat:before +{ + content: "\e881"; +} + +.icofont-rhino-head:before +{ + content: "\e882"; +} + +.icofont-rhino:before +{ + content: "\e883"; +} + +.icofont-rooster:before +{ + content: "\e884"; +} + +.icofont-seahorse:before +{ + content: "\e885"; +} + +.icofont-seal:before +{ + content: "\e886"; +} + +.icofont-shrimp-alt:before +{ + content: "\e887"; +} + +.icofont-shrimp:before +{ + content: "\e888"; +} + +.icofont-snail-1:before +{ + content: "\e889"; +} + +.icofont-snail-2:before +{ + content: "\e88a"; +} + +.icofont-snail-3:before +{ + content: "\e88b"; +} + +.icofont-snail:before +{ + content: "\e88c"; +} + +.icofont-snake:before +{ + content: "\e88d"; +} + +.icofont-squid:before +{ + content: "\e88e"; +} + +.icofont-squirrel:before +{ + content: "\e88f"; +} + +.icofont-tiger-face:before +{ + content: "\e890"; +} + +.icofont-tiger:before +{ + content: "\e891"; +} + +.icofont-turtle:before +{ + content: "\e892"; +} + +.icofont-whale:before +{ + content: "\e893"; +} + +.icofont-woodpecker:before +{ + content: "\e894"; +} + +.icofont-zebra:before +{ + content: "\e895"; +} + +.icofont-brand-acer:before +{ + content: "\e896"; +} + +.icofont-brand-adidas:before +{ + content: "\e897"; +} + +.icofont-brand-adobe:before +{ + content: "\e898"; +} + +.icofont-brand-air-new-zealand:before +{ + content: "\e899"; +} + +.icofont-brand-airbnb:before +{ + content: "\e89a"; +} + +.icofont-brand-aircell:before +{ + content: "\e89b"; +} + +.icofont-brand-airtel:before +{ + content: "\e89c"; +} + +.icofont-brand-alcatel:before +{ + content: "\e89d"; +} + +.icofont-brand-alibaba:before +{ + content: "\e89e"; +} + +.icofont-brand-aliexpress:before +{ + content: "\e89f"; +} + +.icofont-brand-alipay:before +{ + content: "\e8a0"; +} + +.icofont-brand-amazon:before +{ + content: "\e8a1"; +} + +.icofont-brand-amd:before +{ + content: "\e8a2"; +} + +.icofont-brand-american-airlines:before +{ + content: "\e8a3"; +} + +.icofont-brand-android-robot:before +{ + content: "\e8a4"; +} + +.icofont-brand-android:before +{ + content: "\e8a5"; +} + +.icofont-brand-aol:before +{ + content: "\e8a6"; +} + +.icofont-brand-apple:before +{ + content: "\e8a7"; +} + +.icofont-brand-appstore:before +{ + content: "\e8a8"; +} + +.icofont-brand-asus:before +{ + content: "\e8a9"; +} + +.icofont-brand-ati:before +{ + content: "\e8aa"; +} + +.icofont-brand-att:before +{ + content: "\e8ab"; +} + +.icofont-brand-audi:before +{ + content: "\e8ac"; +} + +.icofont-brand-axiata:before +{ + content: "\e8ad"; +} + +.icofont-brand-bada:before +{ + content: "\e8ae"; +} + +.icofont-brand-bbc:before +{ + content: "\e8af"; +} + +.icofont-brand-bing:before +{ + content: "\e8b0"; +} + +.icofont-brand-blackberry:before +{ + content: "\e8b1"; +} + +.icofont-brand-bmw:before +{ + content: "\e8b2"; +} + +.icofont-brand-box:before +{ + content: "\e8b3"; +} + +.icofont-brand-burger-king:before +{ + content: "\e8b4"; +} + +.icofont-brand-business-insider:before +{ + content: "\e8b5"; +} + +.icofont-brand-buzzfeed:before +{ + content: "\e8b6"; +} + +.icofont-brand-cannon:before +{ + content: "\e8b7"; +} + +.icofont-brand-casio:before +{ + content: "\e8b8"; +} + +.icofont-brand-china-mobile:before +{ + content: "\e8b9"; +} + +.icofont-brand-china-telecom:before +{ + content: "\e8ba"; +} + +.icofont-brand-china-unicom:before +{ + content: "\e8bb"; +} + +.icofont-brand-cisco:before +{ + content: "\e8bc"; +} + +.icofont-brand-citibank:before +{ + content: "\e8bd"; +} + +.icofont-brand-cnet:before +{ + content: "\e8be"; +} + +.icofont-brand-cnn:before +{ + content: "\e8bf"; +} + +.icofont-brand-cocal-cola:before +{ + content: "\e8c0"; +} + +.icofont-brand-compaq:before +{ + content: "\e8c1"; +} + +.icofont-brand-debian:before +{ + content: "\e8c2"; +} + +.icofont-brand-delicious:before +{ + content: "\e8c3"; +} + +.icofont-brand-dell:before +{ + content: "\e8c4"; +} + +.icofont-brand-designbump:before +{ + content: "\e8c5"; +} + +.icofont-brand-designfloat:before +{ + content: "\e8c6"; +} + +.icofont-brand-disney:before +{ + content: "\e8c7"; +} + +.icofont-brand-dodge:before +{ + content: "\e8c8"; +} + +.icofont-brand-dove:before +{ + content: "\e8c9"; +} + +.icofont-brand-drupal:before +{ + content: "\e8ca"; +} + +.icofont-brand-ebay:before +{ + content: "\e8cb"; +} + +.icofont-brand-eleven:before +{ + content: "\e8cc"; +} + +.icofont-brand-emirates:before +{ + content: "\e8cd"; +} + +.icofont-brand-espn:before +{ + content: "\e8ce"; +} + +.icofont-brand-etihad-airways:before +{ + content: "\e8cf"; +} + +.icofont-brand-etisalat:before +{ + content: "\e8d0"; +} + +.icofont-brand-etsy:before +{ + content: "\e8d1"; +} + +.icofont-brand-fastrack:before +{ + content: "\e8d2"; +} + +.icofont-brand-fedex:before +{ + content: "\e8d3"; +} + +.icofont-brand-ferrari:before +{ + content: "\e8d4"; +} + +.icofont-brand-fitbit:before +{ + content: "\e8d5"; +} + +.icofont-brand-flikr:before +{ + content: "\e8d6"; +} + +.icofont-brand-forbes:before +{ + content: "\e8d7"; +} + +.icofont-brand-foursquare:before +{ + content: "\e8d8"; +} + +.icofont-brand-foxconn:before +{ + content: "\e8d9"; +} + +.icofont-brand-fujitsu:before +{ + content: "\e8da"; +} + +.icofont-brand-general-electric:before +{ + content: "\e8db"; +} + +.icofont-brand-gillette:before +{ + content: "\e8dc"; +} + +.icofont-brand-gizmodo:before +{ + content: "\e8dd"; +} + +.icofont-brand-gnome:before +{ + content: "\e8de"; +} + +.icofont-brand-google:before +{ + content: "\e8df"; +} + +.icofont-brand-gopro:before +{ + content: "\e8e0"; +} + +.icofont-brand-gucci:before +{ + content: "\e8e1"; +} + +.icofont-brand-hallmark:before +{ + content: "\e8e2"; +} + +.icofont-brand-hi5:before +{ + content: "\e8e3"; +} + +.icofont-brand-honda:before +{ + content: "\e8e4"; +} + +.icofont-brand-hp:before +{ + content: "\e8e5"; +} + +.icofont-brand-hsbc:before +{ + content: "\e8e6"; +} + +.icofont-brand-htc:before +{ + content: "\e8e7"; +} + +.icofont-brand-huawei:before +{ + content: "\e8e8"; +} + +.icofont-brand-hulu:before +{ + content: "\e8e9"; +} + +.icofont-brand-hyundai:before +{ + content: "\e8ea"; +} + +.icofont-brand-ibm:before +{ + content: "\e8eb"; +} + +.icofont-brand-icofont:before +{ + content: "\e8ec"; +} + +.icofont-brand-icq:before +{ + content: "\e8ed"; +} + +.icofont-brand-ikea:before +{ + content: "\e8ee"; +} + +.icofont-brand-imdb:before +{ + content: "\e8ef"; +} + +.icofont-brand-indiegogo:before +{ + content: "\e8f0"; +} + +.icofont-brand-intel:before +{ + content: "\e8f1"; +} + +.icofont-brand-ipair:before +{ + content: "\e8f2"; +} + +.icofont-brand-jaguar:before +{ + content: "\e8f3"; +} + +.icofont-brand-java:before +{ + content: "\e8f4"; +} + +.icofont-brand-joomla:before +{ + content: "\e8f5"; +} + +.icofont-brand-kickstarter:before +{ + content: "\e8f6"; +} + +.icofont-brand-kik:before +{ + content: "\e8f7"; +} + +.icofont-brand-lastfm:before +{ + content: "\e8f8"; +} + +.icofont-brand-lego:before +{ + content: "\e8f9"; +} + +.icofont-brand-lenovo:before +{ + content: "\e8fa"; +} + +.icofont-brand-levis:before +{ + content: "\e8fb"; +} + +.icofont-brand-lexus:before +{ + content: "\e8fc"; +} + +.icofont-brand-lg:before +{ + content: "\e8fd"; +} + +.icofont-brand-life-hacker:before +{ + content: "\e8fe"; +} + +.icofont-brand-linux-mint:before +{ + content: "\e8ff"; +} + +.icofont-brand-linux:before +{ + content: "\e900"; +} + +.icofont-brand-lionix:before +{ + content: "\e901"; +} + +.icofont-brand-loreal:before +{ + content: "\e902"; +} + +.icofont-brand-louis-vuitton:before +{ + content: "\e903"; +} + +.icofont-brand-mac-os:before +{ + content: "\e904"; +} + +.icofont-brand-marvel-app:before +{ + content: "\e905"; +} + +.icofont-brand-mashable:before +{ + content: "\e906"; +} + +.icofont-brand-mazda:before +{ + content: "\e907"; +} + +.icofont-brand-mcdonals:before +{ + content: "\e908"; +} + +.icofont-brand-mercedes:before +{ + content: "\e909"; +} + +.icofont-brand-micromax:before +{ + content: "\e90a"; +} + +.icofont-brand-microsoft:before +{ + content: "\e90b"; +} + +.icofont-brand-mobileme:before +{ + content: "\e90c"; +} + +.icofont-brand-mobily:before +{ + content: "\e90d"; +} + +.icofont-brand-motorola:before +{ + content: "\e90e"; +} + +.icofont-brand-msi:before +{ + content: "\e90f"; +} + +.icofont-brand-mts:before +{ + content: "\e910"; +} + +.icofont-brand-myspace:before +{ + content: "\e911"; +} + +.icofont-brand-mytv:before +{ + content: "\e912"; +} + +.icofont-brand-nasa:before +{ + content: "\e913"; +} + +.icofont-brand-natgeo:before +{ + content: "\e914"; +} + +.icofont-brand-nbc:before +{ + content: "\e915"; +} + +.icofont-brand-nescafe:before +{ + content: "\e916"; +} + +.icofont-brand-nestle:before +{ + content: "\e917"; +} + +.icofont-brand-netflix:before +{ + content: "\e918"; +} + +.icofont-brand-nexus:before +{ + content: "\e919"; +} + +.icofont-brand-nike:before +{ + content: "\e91a"; +} + +.icofont-brand-nokia:before +{ + content: "\e91b"; +} + +.icofont-brand-nvidia:before +{ + content: "\e91c"; +} + +.icofont-brand-omega:before +{ + content: "\e91d"; +} + +.icofont-brand-opensuse:before +{ + content: "\e91e"; +} + +.icofont-brand-oracle:before +{ + content: "\e91f"; +} + +.icofont-brand-panasonic:before +{ + content: "\e920"; +} + +.icofont-brand-paypal:before +{ + content: "\e921"; +} + +.icofont-brand-pepsi:before +{ + content: "\e922"; +} + +.icofont-brand-philips:before +{ + content: "\e923"; +} + +.icofont-brand-pizza-hut:before +{ + content: "\e924"; +} + +.icofont-brand-playstation:before +{ + content: "\e925"; +} + +.icofont-brand-puma:before +{ + content: "\e926"; +} + +.icofont-brand-qatar-air:before +{ + content: "\e927"; +} + +.icofont-brand-qvc:before +{ + content: "\e928"; +} + +.icofont-brand-readernaut:before +{ + content: "\e929"; +} + +.icofont-brand-redbull:before +{ + content: "\e92a"; +} + +.icofont-brand-reebok:before +{ + content: "\e92b"; +} + +.icofont-brand-reuters:before +{ + content: "\e92c"; +} + +.icofont-brand-samsung:before +{ + content: "\e92d"; +} + +.icofont-brand-sap:before +{ + content: "\e92e"; +} + +.icofont-brand-saudia-airlines:before +{ + content: "\e92f"; +} + +.icofont-brand-scribd:before +{ + content: "\e930"; +} + +.icofont-brand-shell:before +{ + content: "\e931"; +} + +.icofont-brand-siemens:before +{ + content: "\e932"; +} + +.icofont-brand-sk-telecom:before +{ + content: "\e933"; +} + +.icofont-brand-slideshare:before +{ + content: "\e934"; +} + +.icofont-brand-smashing-magazine:before +{ + content: "\e935"; +} + +.icofont-brand-snapchat:before +{ + content: "\e936"; +} + +.icofont-brand-sony-ericsson:before +{ + content: "\e937"; +} + +.icofont-brand-sony:before +{ + content: "\e938"; +} + +.icofont-brand-soundcloud:before +{ + content: "\e939"; +} + +.icofont-brand-sprint:before +{ + content: "\e93a"; +} + +.icofont-brand-squidoo:before +{ + content: "\e93b"; +} + +.icofont-brand-starbucks:before +{ + content: "\e93c"; +} + +.icofont-brand-stc:before +{ + content: "\e93d"; +} + +.icofont-brand-steam:before +{ + content: "\e93e"; +} + +.icofont-brand-suzuki:before +{ + content: "\e93f"; +} + +.icofont-brand-symbian:before +{ + content: "\e940"; +} + +.icofont-brand-t-mobile:before +{ + content: "\e941"; +} + +.icofont-brand-tango:before +{ + content: "\e942"; +} + +.icofont-brand-target:before +{ + content: "\e943"; +} + +.icofont-brand-tata-indicom:before +{ + content: "\e944"; +} + +.icofont-brand-techcrunch:before +{ + content: "\e945"; +} + +.icofont-brand-telenor:before +{ + content: "\e946"; +} + +.icofont-brand-teliasonera:before +{ + content: "\e947"; +} + +.icofont-brand-tesla:before +{ + content: "\e948"; +} + +.icofont-brand-the-verge:before +{ + content: "\e949"; +} + +.icofont-brand-thenextweb:before +{ + content: "\e94a"; +} + +.icofont-brand-toshiba:before +{ + content: "\e94b"; +} + +.icofont-brand-toyota:before +{ + content: "\e94c"; +} + +.icofont-brand-tribenet:before +{ + content: "\e94d"; +} + +.icofont-brand-ubuntu:before +{ + content: "\e94e"; +} + +.icofont-brand-unilever:before +{ + content: "\e94f"; +} + +.icofont-brand-vaio:before +{ + content: "\e950"; +} + +.icofont-brand-verizon:before +{ + content: "\e951"; +} + +.icofont-brand-viber:before +{ + content: "\e952"; +} + +.icofont-brand-vodafone:before +{ + content: "\e953"; +} + +.icofont-brand-volkswagen:before +{ + content: "\e954"; +} + +.icofont-brand-walmart:before +{ + content: "\e955"; +} + +.icofont-brand-warnerbros:before +{ + content: "\e956"; +} + +.icofont-brand-whatsapp:before +{ + content: "\e957"; +} + +.icofont-brand-wikipedia:before +{ + content: "\e958"; +} + +.icofont-brand-windows:before +{ + content: "\e959"; +} + +.icofont-brand-wire:before +{ + content: "\e95a"; +} + +.icofont-brand-wordpress:before +{ + content: "\e95b"; +} + +.icofont-brand-xiaomi:before +{ + content: "\e95c"; +} + +.icofont-brand-yahoobuzz:before +{ + content: "\e95d"; +} + +.icofont-brand-yamaha:before +{ + content: "\e95e"; +} + +.icofont-brand-youtube:before +{ + content: "\e95f"; +} + +.icofont-brand-zain:before +{ + content: "\e960"; +} + +.icofont-bank-alt:before +{ + content: "\e961"; +} + +.icofont-bank:before +{ + content: "\e962"; +} + +.icofont-barcode:before +{ + content: "\e963"; +} + +.icofont-bill-alt:before +{ + content: "\e964"; +} + +.icofont-billboard:before +{ + content: "\e965"; +} + +.icofont-briefcase-1:before +{ + content: "\e966"; +} + +.icofont-briefcase-2:before +{ + content: "\e967"; +} + +.icofont-businessman:before +{ + content: "\e968"; +} + +.icofont-businesswoman:before +{ + content: "\e969"; +} + +.icofont-chair:before +{ + content: "\e96a"; +} + +.icofont-coins:before +{ + content: "\e96b"; +} + +.icofont-company:before +{ + content: "\e96c"; +} + +.icofont-contact-add:before +{ + content: "\e96d"; +} + +.icofont-files-stack:before +{ + content: "\e96e"; +} + +.icofont-handshake-deal:before +{ + content: "\e96f"; +} + +.icofont-id-card:before +{ + content: "\e970"; +} + +.icofont-meeting-add:before +{ + content: "\e971"; +} + +.icofont-money-bag:before +{ + content: "\e972"; +} + +.icofont-pie-chart:before +{ + content: "\e973"; +} + +.icofont-presentation-alt:before +{ + content: "\e974"; +} + +.icofont-presentation:before +{ + content: "\e975"; +} + +.icofont-stamp:before +{ + content: "\e976"; +} + +.icofont-stock-mobile:before +{ + content: "\e977"; +} + +.icofont-chart-arrows-axis:before +{ + content: "\e978"; +} + +.icofont-chart-bar-graph:before +{ + content: "\e979"; +} + +.icofont-chart-flow-1:before +{ + content: "\e97a"; +} + +.icofont-chart-flow-2:before +{ + content: "\e97b"; +} + +.icofont-chart-flow:before +{ + content: "\e97c"; +} + +.icofont-chart-growth:before +{ + content: "\e97d"; +} + +.icofont-chart-histogram-alt:before +{ + content: "\e97e"; +} + +.icofont-chart-histogram:before +{ + content: "\e97f"; +} + +.icofont-chart-line-alt:before +{ + content: "\e980"; +} + +.icofont-chart-line:before +{ + content: "\e981"; +} + +.icofont-chart-pie-alt:before +{ + content: "\e982"; +} + +.icofont-chart-pie:before +{ + content: "\e983"; +} + +.icofont-chart-radar-graph:before +{ + content: "\e984"; +} + +.icofont-architecture-alt:before +{ + content: "\e985"; +} + +.icofont-architecture:before +{ + content: "\e986"; +} + +.icofont-barricade:before +{ + content: "\e987"; +} + +.icofont-bolt:before +{ + content: "\e988"; +} + +.icofont-bricks:before +{ + content: "\e989"; +} + +.icofont-building-alt:before +{ + content: "\e98a"; +} + +.icofont-bull-dozer:before +{ + content: "\e98b"; +} + +.icofont-calculations:before +{ + content: "\e98c"; +} + +.icofont-cement-mix:before +{ + content: "\e98d"; +} + +.icofont-cement-mixer:before +{ + content: "\e98e"; +} + +.icofont-concrete-mixer:before +{ + content: "\e98f"; +} + +.icofont-danger-zone:before +{ + content: "\e990"; +} + +.icofont-drill:before +{ + content: "\e991"; +} + +.icofont-eco-energy:before +{ + content: "\e992"; +} + +.icofont-eco-environmen:before +{ + content: "\e993"; +} + +.icofont-energy-air:before +{ + content: "\e994"; +} + +.icofont-energy-oil:before +{ + content: "\e995"; +} + +.icofont-energy-savings:before +{ + content: "\e996"; +} + +.icofont-energy-solar:before +{ + content: "\e997"; +} + +.icofont-energy-water:before +{ + content: "\e998"; +} + +.icofont-engineer:before +{ + content: "\e999"; +} + +.icofont-fire-extinguisher-alt:before +{ + content: "\e99a"; +} + +.icofont-fire-extinguisher:before +{ + content: "\e99b"; +} + +.icofont-fix-tools:before +{ + content: "\e99c"; +} + +.icofont-fork-lift:before +{ + content: "\e99d"; +} + +.icofont-glue-oil:before +{ + content: "\e99e"; +} + +.icofont-hammer-alt:before +{ + content: "\e99f"; +} + +.icofont-hammer:before +{ + content: "\e9a0"; +} + +.icofont-help-robot:before +{ + content: "\e9a1"; +} + +.icofont-industries-1:before +{ + content: "\e9a2"; +} + +.icofont-industries-2:before +{ + content: "\e9a3"; +} + +.icofont-industries-3:before +{ + content: "\e9a4"; +} + +.icofont-industries-4:before +{ + content: "\e9a5"; +} + +.icofont-industries-5:before +{ + content: "\e9a6"; +} + +.icofont-industries:before +{ + content: "\e9a7"; +} + +.icofont-labour:before +{ + content: "\e9a8"; +} + +.icofont-mining:before +{ + content: "\e9a9"; +} + +.icofont-paint-brush:before +{ + content: "\e9aa"; +} + +.icofont-pollution:before +{ + content: "\e9ab"; +} + +.icofont-power-zone:before +{ + content: "\e9ac"; +} + +.icofont-radio-active:before +{ + content: "\e9ad"; +} + +.icofont-recycle-alt:before +{ + content: "\e9ae"; +} + +.icofont-recycling-man:before +{ + content: "\e9af"; +} + +.icofont-safety-hat-light:before +{ + content: "\e9b0"; +} + +.icofont-safety-hat:before +{ + content: "\e9b1"; +} + +.icofont-saw:before +{ + content: "\e9b2"; +} + +.icofont-screw-driver:before +{ + content: "\e9b3"; +} + +.icofont-tools-1:before +{ + content: "\e9b4"; +} + +.icofont-tools-bag:before +{ + content: "\e9b5"; +} + +.icofont-tow-truck:before +{ + content: "\e9b6"; +} + +.icofont-trolley:before +{ + content: "\e9b7"; +} + +.icofont-trowel:before +{ + content: "\e9b8"; +} + +.icofont-under-construction-alt:before +{ + content: "\e9b9"; +} + +.icofont-under-construction:before +{ + content: "\e9ba"; +} + +.icofont-vehicle-cement:before +{ + content: "\e9bb"; +} + +.icofont-vehicle-crane:before +{ + content: "\e9bc"; +} + +.icofont-vehicle-delivery-van:before +{ + content: "\e9bd"; +} + +.icofont-vehicle-dozer:before +{ + content: "\e9be"; +} + +.icofont-vehicle-excavator:before +{ + content: "\e9bf"; +} + +.icofont-vehicle-trucktor:before +{ + content: "\e9c0"; +} + +.icofont-vehicle-wrecking:before +{ + content: "\e9c1"; +} + +.icofont-worker:before +{ + content: "\e9c2"; +} + +.icofont-workers-group:before +{ + content: "\e9c3"; +} + +.icofont-wrench:before +{ + content: "\e9c4"; +} + +.icofont-afghani-false:before +{ + content: "\e9c5"; +} + +.icofont-afghani-minus:before +{ + content: "\e9c6"; +} + +.icofont-afghani-plus:before +{ + content: "\e9c7"; +} + +.icofont-afghani-true:before +{ + content: "\e9c8"; +} + +.icofont-afghani:before +{ + content: "\e9c9"; +} + +.icofont-baht-false:before +{ + content: "\e9ca"; +} + +.icofont-baht-minus:before +{ + content: "\e9cb"; +} + +.icofont-baht-plus:before +{ + content: "\e9cc"; +} + +.icofont-baht-true:before +{ + content: "\e9cd"; +} + +.icofont-baht:before +{ + content: "\e9ce"; +} + +.icofont-bitcoin-false:before +{ + content: "\e9cf"; +} + +.icofont-bitcoin-minus:before +{ + content: "\e9d0"; +} + +.icofont-bitcoin-plus:before +{ + content: "\e9d1"; +} + +.icofont-bitcoin-true:before +{ + content: "\e9d2"; +} + +.icofont-bitcoin:before +{ + content: "\e9d3"; +} + +.icofont-dollar-flase:before +{ + content: "\e9d4"; +} + +.icofont-dollar-minus:before +{ + content: "\e9d5"; +} + +.icofont-dollar-plus:before +{ + content: "\e9d6"; +} + +.icofont-dollar-true:before +{ + content: "\e9d7"; +} + +.icofont-dollar:before +{ + content: "\e9d8"; +} + +.icofont-dong-false:before +{ + content: "\e9d9"; +} + +.icofont-dong-minus:before +{ + content: "\e9da"; +} + +.icofont-dong-plus:before +{ + content: "\e9db"; +} + +.icofont-dong-true:before +{ + content: "\e9dc"; +} + +.icofont-dong:before +{ + content: "\e9dd"; +} + +.icofont-euro-false:before +{ + content: "\e9de"; +} + +.icofont-euro-minus:before +{ + content: "\e9df"; +} + +.icofont-euro-plus:before +{ + content: "\e9e0"; +} + +.icofont-euro-true:before +{ + content: "\e9e1"; +} + +.icofont-euro:before +{ + content: "\e9e2"; +} + +.icofont-frank-false:before +{ + content: "\e9e3"; +} + +.icofont-frank-minus:before +{ + content: "\e9e4"; +} + +.icofont-frank-plus:before +{ + content: "\e9e5"; +} + +.icofont-frank-true:before +{ + content: "\e9e6"; +} + +.icofont-frank:before +{ + content: "\e9e7"; +} + +.icofont-hryvnia-false:before +{ + content: "\e9e8"; +} + +.icofont-hryvnia-minus:before +{ + content: "\e9e9"; +} + +.icofont-hryvnia-plus:before +{ + content: "\e9ea"; +} + +.icofont-hryvnia-true:before +{ + content: "\e9eb"; +} + +.icofont-hryvnia:before +{ + content: "\e9ec"; +} + +.icofont-lira-false:before +{ + content: "\e9ed"; +} + +.icofont-lira-minus:before +{ + content: "\e9ee"; +} + +.icofont-lira-plus:before +{ + content: "\e9ef"; +} + +.icofont-lira-true:before +{ + content: "\e9f0"; +} + +.icofont-lira:before +{ + content: "\e9f1"; +} + +.icofont-peseta-false:before +{ + content: "\e9f2"; +} + +.icofont-peseta-minus:before +{ + content: "\e9f3"; +} + +.icofont-peseta-plus:before +{ + content: "\e9f4"; +} + +.icofont-peseta-true:before +{ + content: "\e9f5"; +} + +.icofont-peseta:before +{ + content: "\e9f6"; +} + +.icofont-peso-false:before +{ + content: "\e9f7"; +} + +.icofont-peso-minus:before +{ + content: "\e9f8"; +} + +.icofont-peso-plus:before +{ + content: "\e9f9"; +} + +.icofont-peso-true:before +{ + content: "\e9fa"; +} + +.icofont-peso:before +{ + content: "\e9fb"; +} + +.icofont-pound-false:before +{ + content: "\e9fc"; +} + +.icofont-pound-minus:before +{ + content: "\e9fd"; +} + +.icofont-pound-plus:before +{ + content: "\e9fe"; +} + +.icofont-pound-true:before +{ + content: "\e9ff"; +} + +.icofont-pound:before +{ + content: "\ea00"; +} + +.icofont-renminbi-false:before +{ + content: "\ea01"; +} + +.icofont-renminbi-minus:before +{ + content: "\ea02"; +} + +.icofont-renminbi-plus:before +{ + content: "\ea03"; +} + +.icofont-renminbi-true:before +{ + content: "\ea04"; +} + +.icofont-renminbi:before +{ + content: "\ea05"; +} + +.icofont-riyal-false:before +{ + content: "\ea06"; +} + +.icofont-riyal-minus:before +{ + content: "\ea07"; +} + +.icofont-riyal-plus:before +{ + content: "\ea08"; +} + +.icofont-riyal-true:before +{ + content: "\ea09"; +} + +.icofont-riyal:before +{ + content: "\ea0a"; +} + +.icofont-rouble-false:before +{ + content: "\ea0b"; +} + +.icofont-rouble-minus:before +{ + content: "\ea0c"; +} + +.icofont-rouble-plus:before +{ + content: "\ea0d"; +} + +.icofont-rouble-true:before +{ + content: "\ea0e"; +} + +.icofont-rouble:before +{ + content: "\ea0f"; +} + +.icofont-rupee-false:before +{ + content: "\ea10"; +} + +.icofont-rupee-minus:before +{ + content: "\ea11"; +} + +.icofont-rupee-plus:before +{ + content: "\ea12"; +} + +.icofont-rupee-true:before +{ + content: "\ea13"; +} + +.icofont-rupee:before +{ + content: "\ea14"; +} + +.icofont-taka-false:before +{ + content: "\ea15"; +} + +.icofont-taka-minus:before +{ + content: "\ea16"; +} + +.icofont-taka-plus:before +{ + content: "\ea17"; +} + +.icofont-taka-true:before +{ + content: "\ea18"; +} + +.icofont-taka:before +{ + content: "\ea19"; +} + +.icofont-turkish-lira-false:before +{ + content: "\ea1a"; +} + +.icofont-turkish-lira-minus:before +{ + content: "\ea1b"; +} + +.icofont-turkish-lira-plus:before +{ + content: "\ea1c"; +} + +.icofont-turkish-lira-true:before +{ + content: "\ea1d"; +} + +.icofont-turkish-lira:before +{ + content: "\ea1e"; +} + +.icofont-won-false:before +{ + content: "\ea1f"; +} + +.icofont-won-minus:before +{ + content: "\ea20"; +} + +.icofont-won-plus:before +{ + content: "\ea21"; +} + +.icofont-won-true:before +{ + content: "\ea22"; +} + +.icofont-won:before +{ + content: "\ea23"; +} + +.icofont-yen-false:before +{ + content: "\ea24"; +} + +.icofont-yen-minus:before +{ + content: "\ea25"; +} + +.icofont-yen-plus:before +{ + content: "\ea26"; +} + +.icofont-yen-true:before +{ + content: "\ea27"; +} + +.icofont-yen:before +{ + content: "\ea28"; +} + +.icofont-android-nexus:before +{ + content: "\ea29"; +} + +.icofont-android-tablet:before +{ + content: "\ea2a"; +} + +.icofont-apple-watch:before +{ + content: "\ea2b"; +} + +.icofont-drawing-tablet:before +{ + content: "\ea2c"; +} + +.icofont-earphone:before +{ + content: "\ea2d"; +} + +.icofont-flash-drive:before +{ + content: "\ea2e"; +} + +.icofont-game-console:before +{ + content: "\ea2f"; +} + +.icofont-game-controller:before +{ + content: "\ea30"; +} + +.icofont-game-pad:before +{ + content: "\ea31"; +} + +.icofont-game:before +{ + content: "\ea32"; +} + +.icofont-headphone-alt-1:before +{ + content: "\ea33"; +} + +.icofont-headphone-alt-2:before +{ + content: "\ea34"; +} + +.icofont-headphone-alt-3:before +{ + content: "\ea35"; +} + +.icofont-headphone-alt:before +{ + content: "\ea36"; +} + +.icofont-headphone:before +{ + content: "\ea37"; +} + +.icofont-htc-one:before +{ + content: "\ea38"; +} + +.icofont-imac:before +{ + content: "\ea39"; +} + +.icofont-ipad:before +{ + content: "\ea3a"; +} + +.icofont-iphone:before +{ + content: "\ea3b"; +} + +.icofont-ipod-nano:before +{ + content: "\ea3c"; +} + +.icofont-ipod-touch:before +{ + content: "\ea3d"; +} + +.icofont-keyboard-alt:before +{ + content: "\ea3e"; +} + +.icofont-keyboard-wireless:before +{ + content: "\ea3f"; +} + +.icofont-keyboard:before +{ + content: "\ea40"; +} + +.icofont-laptop-alt:before +{ + content: "\ea41"; +} + +.icofont-laptop:before +{ + content: "\ea42"; +} + +.icofont-macbook:before +{ + content: "\ea43"; +} + +.icofont-magic-mouse:before +{ + content: "\ea44"; +} + +.icofont-micro-chip:before +{ + content: "\ea45"; +} + +.icofont-microphone-alt:before +{ + content: "\ea46"; +} + +.icofont-microphone:before +{ + content: "\ea47"; +} + +.icofont-monitor:before +{ + content: "\ea48"; +} + +.icofont-mouse:before +{ + content: "\ea49"; +} + +.icofont-mp3-player:before +{ + content: "\ea4a"; +} + +.icofont-nintendo:before +{ + content: "\ea4b"; +} + +.icofont-playstation-alt:before +{ + content: "\ea4c"; +} + +.icofont-psvita:before +{ + content: "\ea4d"; +} + +.icofont-radio-mic:before +{ + content: "\ea4e"; +} + +.icofont-radio:before +{ + content: "\ea4f"; +} + +.icofont-refrigerator:before +{ + content: "\ea50"; +} + +.icofont-samsung-galaxy:before +{ + content: "\ea51"; +} + +.icofont-surface-tablet:before +{ + content: "\ea52"; +} + +.icofont-ui-head-phone:before +{ + content: "\ea53"; +} + +.icofont-ui-keyboard:before +{ + content: "\ea54"; +} + +.icofont-washing-machine:before +{ + content: "\ea55"; +} + +.icofont-wifi-router:before +{ + content: "\ea56"; +} + +.icofont-wii-u:before +{ + content: "\ea57"; +} + +.icofont-windows-lumia:before +{ + content: "\ea58"; +} + +.icofont-wireless-mouse:before +{ + content: "\ea59"; +} + +.icofont-xbox-360:before +{ + content: "\ea5a"; +} + +.icofont-arrow-down:before +{ + content: "\ea5b"; +} + +.icofont-arrow-left:before +{ + content: "\ea5c"; +} + +.icofont-arrow-right:before +{ + content: "\ea5d"; +} + +.icofont-arrow-up:before +{ + content: "\ea5e"; +} + +.icofont-block-down:before +{ + content: "\ea5f"; +} + +.icofont-block-left:before +{ + content: "\ea60"; +} + +.icofont-block-right:before +{ + content: "\ea61"; +} + +.icofont-block-up:before +{ + content: "\ea62"; +} + +.icofont-bubble-down:before +{ + content: "\ea63"; +} + +.icofont-bubble-left:before +{ + content: "\ea64"; +} + +.icofont-bubble-right:before +{ + content: "\ea65"; +} + +.icofont-bubble-up:before +{ + content: "\ea66"; +} + +.icofont-caret-down:before +{ + content: "\ea67"; +} + +.icofont-caret-left:before +{ + content: "\ea68"; +} + +.icofont-caret-right:before +{ + content: "\ea69"; +} + +.icofont-caret-up:before +{ + content: "\ea6a"; +} + +.icofont-circled-down:before +{ + content: "\ea6b"; +} + +.icofont-circled-left:before +{ + content: "\ea6c"; +} + +.icofont-circled-right:before +{ + content: "\ea6d"; +} + +.icofont-circled-up:before +{ + content: "\ea6e"; +} + +.icofont-collapse:before +{ + content: "\ea6f"; +} + +.icofont-cursor-drag:before +{ + content: "\ea70"; +} + +.icofont-curved-double-left:before +{ + content: "\ea71"; +} + +.icofont-curved-double-right:before +{ + content: "\ea72"; +} + +.icofont-curved-down:before +{ + content: "\ea73"; +} + +.icofont-curved-left:before +{ + content: "\ea74"; +} + +.icofont-curved-right:before +{ + content: "\ea75"; +} + +.icofont-curved-up:before +{ + content: "\ea76"; +} + +.icofont-dotted-down:before +{ + content: "\ea77"; +} + +.icofont-dotted-left:before +{ + content: "\ea78"; +} + +.icofont-dotted-right:before +{ + content: "\ea79"; +} + +.icofont-dotted-up:before +{ + content: "\ea7a"; +} + +.icofont-double-left:before +{ + content: "\ea7b"; +} + +.icofont-double-right:before +{ + content: "\ea7c"; +} + +.icofont-expand-alt:before +{ + content: "\ea7d"; +} + +.icofont-hand-down:before +{ + content: "\ea7e"; +} + +.icofont-hand-drag:before +{ + content: "\ea7f"; +} + +.icofont-hand-drag1:before +{ + content: "\ea80"; +} + +.icofont-hand-drag2:before +{ + content: "\ea81"; +} + +.icofont-hand-drawn-alt-down:before +{ + content: "\ea82"; +} + +.icofont-hand-drawn-alt-left:before +{ + content: "\ea83"; +} + +.icofont-hand-drawn-alt-right:before +{ + content: "\ea84"; +} + +.icofont-hand-drawn-alt-up:before +{ + content: "\ea85"; +} + +.icofont-hand-drawn-down:before +{ + content: "\ea86"; +} + +.icofont-hand-drawn-left:before +{ + content: "\ea87"; +} + +.icofont-hand-drawn-right:before +{ + content: "\ea88"; +} + +.icofont-hand-drawn-up:before +{ + content: "\ea89"; +} + +.icofont-hand-grippers:before +{ + content: "\ea8a"; +} + +.icofont-hand-left:before +{ + content: "\ea8b"; +} + +.icofont-hand-right:before +{ + content: "\ea8c"; +} + +.icofont-hand-up:before +{ + content: "\ea8d"; +} + +.icofont-line-block-down:before +{ + content: "\ea8e"; +} + +.icofont-line-block-left:before +{ + content: "\ea8f"; +} + +.icofont-line-block-right:before +{ + content: "\ea90"; +} + +.icofont-line-block-up:before +{ + content: "\ea91"; +} + +.icofont-long-arrow-down:before +{ + content: "\ea92"; +} + +.icofont-long-arrow-left:before +{ + content: "\ea93"; +} + +.icofont-long-arrow-right:before +{ + content: "\ea94"; +} + +.icofont-long-arrow-up:before +{ + content: "\ea95"; +} + +.icofont-rounded-collapse:before +{ + content: "\ea96"; +} + +.icofont-rounded-double-left:before +{ + content: "\ea97"; +} + +.icofont-rounded-double-right:before +{ + content: "\ea98"; +} + +.icofont-rounded-down:before +{ + content: "\ea99"; +} + +.icofont-rounded-expand:before +{ + content: "\ea9a"; +} + +.icofont-rounded-left-down:before +{ + content: "\ea9b"; +} + +.icofont-rounded-left-up:before +{ + content: "\ea9c"; +} + +.icofont-rounded-left:before +{ + content: "\ea9d"; +} + +.icofont-rounded-right-down:before +{ + content: "\ea9e"; +} + +.icofont-rounded-right-up:before +{ + content: "\ea9f"; +} + +.icofont-rounded-right:before +{ + content: "\eaa0"; +} + +.icofont-rounded-up:before +{ + content: "\eaa1"; +} + +.icofont-scroll-bubble-down:before +{ + content: "\eaa2"; +} + +.icofont-scroll-bubble-left:before +{ + content: "\eaa3"; +} + +.icofont-scroll-bubble-right:before +{ + content: "\eaa4"; +} + +.icofont-scroll-bubble-up:before +{ + content: "\eaa5"; +} + +.icofont-scroll-double-down:before +{ + content: "\eaa6"; +} + +.icofont-scroll-double-left:before +{ + content: "\eaa7"; +} + +.icofont-scroll-double-right:before +{ + content: "\eaa8"; +} + +.icofont-scroll-double-up:before +{ + content: "\eaa9"; +} + +.icofont-scroll-down:before +{ + content: "\eaaa"; +} + +.icofont-scroll-left:before +{ + content: "\eaab"; +} + +.icofont-scroll-long-down:before +{ + content: "\eaac"; +} + +.icofont-scroll-long-left:before +{ + content: "\eaad"; +} + +.icofont-scroll-long-right:before +{ + content: "\eaae"; +} + +.icofont-scroll-long-up:before +{ + content: "\eaaf"; +} + +.icofont-scroll-right:before +{ + content: "\eab0"; +} + +.icofont-scroll-up:before +{ + content: "\eab1"; +} + +.icofont-simple-down:before +{ + content: "\eab2"; +} + +.icofont-simple-left-down:before +{ + content: "\eab3"; +} + +.icofont-simple-left-up:before +{ + content: "\eab4"; +} + +.icofont-simple-left:before +{ + content: "\eab5"; +} + +.icofont-simple-right-down:before +{ + content: "\eab6"; +} + +.icofont-simple-right-up:before +{ + content: "\eab7"; +} + +.icofont-simple-right:before +{ + content: "\eab8"; +} + +.icofont-simple-up:before +{ + content: "\eab9"; +} + +.icofont-square-down:before +{ + content: "\eaba"; +} + +.icofont-square-left:before +{ + content: "\eabb"; +} + +.icofont-square-right:before +{ + content: "\eabc"; +} + +.icofont-square-up:before +{ + content: "\eabd"; +} + +.icofont-stylish-down:before +{ + content: "\eabe"; +} + +.icofont-stylish-left:before +{ + content: "\eabf"; +} + +.icofont-stylish-right:before +{ + content: "\eac0"; +} + +.icofont-stylish-up:before +{ + content: "\eac1"; +} + +.icofont-swoosh-down:before +{ + content: "\eac2"; +} + +.icofont-swoosh-left:before +{ + content: "\eac3"; +} + +.icofont-swoosh-right:before +{ + content: "\eac4"; +} + +.icofont-swoosh-up:before +{ + content: "\eac5"; +} + +.icofont-thin-double-left:before +{ + content: "\eac6"; +} + +.icofont-thin-double-right:before +{ + content: "\eac7"; +} + +.icofont-thin-down:before +{ + content: "\eac8"; +} + +.icofont-thin-left:before +{ + content: "\eac9"; +} + +.icofont-thin-right:before +{ + content: "\eaca"; +} + +.icofont-thin-up:before +{ + content: "\eacb"; +} + +.icofont-abc:before +{ + content: "\eacc"; +} + +.icofont-atom:before +{ + content: "\eacd"; +} + +.icofont-award:before +{ + content: "\eace"; +} + +.icofont-bell-alt:before +{ + content: "\eacf"; +} + +.icofont-black-board:before +{ + content: "\ead0"; +} + +.icofont-book-alt:before +{ + content: "\ead1"; +} + +.icofont-book:before +{ + content: "\ead2"; +} + +.icofont-brainstorming:before +{ + content: "\ead3"; +} + +.icofont-certificate-alt-1:before +{ + content: "\ead4"; +} + +.icofont-certificate-alt-2:before +{ + content: "\ead5"; +} + +.icofont-certificate:before +{ + content: "\ead6"; +} + +.icofont-education:before +{ + content: "\ead7"; +} + +.icofont-electron:before +{ + content: "\ead8"; +} + +.icofont-fountain-pen:before +{ + content: "\ead9"; +} + +.icofont-globe-alt:before +{ + content: "\eada"; +} + +.icofont-graduate-alt:before +{ + content: "\eadb"; +} + +.icofont-graduate:before +{ + content: "\eadc"; +} + +.icofont-group-students:before +{ + content: "\eadd"; +} + +.icofont-hat-alt:before +{ + content: "\eade"; +} + +.icofont-hat:before +{ + content: "\eadf"; +} + +.icofont-instrument:before +{ + content: "\eae0"; +} + +.icofont-lamp-light:before +{ + content: "\eae1"; +} + +.icofont-medal:before +{ + content: "\eae2"; +} + +.icofont-microscope-alt:before +{ + content: "\eae3"; +} + +.icofont-microscope:before +{ + content: "\eae4"; +} + +.icofont-paper:before +{ + content: "\eae5"; +} + +.icofont-pen-alt-4:before +{ + content: "\eae6"; +} + +.icofont-pen-nib:before +{ + content: "\eae7"; +} + +.icofont-pencil-alt-5:before +{ + content: "\eae8"; +} + +.icofont-quill-pen:before +{ + content: "\eae9"; +} + +.icofont-read-book-alt:before +{ + content: "\eaea"; +} + +.icofont-read-book:before +{ + content: "\eaeb"; +} + +.icofont-school-bag:before +{ + content: "\eaec"; +} + +.icofont-school-bus:before +{ + content: "\eaed"; +} + +.icofont-student-alt:before +{ + content: "\eaee"; +} + +.icofont-student:before +{ + content: "\eaef"; +} + +.icofont-teacher:before +{ + content: "\eaf0"; +} + +.icofont-test-bulb:before +{ + content: "\eaf1"; +} + +.icofont-test-tube-alt:before +{ + content: "\eaf2"; +} + +.icofont-university:before +{ + content: "\eaf3"; +} + +.icofont-angry:before +{ + content: "\eaf4"; +} + +.icofont-astonished:before +{ + content: "\eaf5"; +} + +.icofont-confounded:before +{ + content: "\eaf6"; +} + +.icofont-confused:before +{ + content: "\eaf7"; +} + +.icofont-crying:before +{ + content: "\eaf8"; +} + +.icofont-dizzy:before +{ + content: "\eaf9"; +} + +.icofont-expressionless:before +{ + content: "\eafa"; +} + +.icofont-heart-eyes:before +{ + content: "\eafb"; +} + +.icofont-laughing:before +{ + content: "\eafc"; +} + +.icofont-nerd-smile:before +{ + content: "\eafd"; +} + +.icofont-open-mouth:before +{ + content: "\eafe"; +} + +.icofont-rage:before +{ + content: "\eaff"; +} + +.icofont-rolling-eyes:before +{ + content: "\eb00"; +} + +.icofont-sad:before +{ + content: "\eb01"; +} + +.icofont-simple-smile:before +{ + content: "\eb02"; +} + +.icofont-slightly-smile:before +{ + content: "\eb03"; +} + +.icofont-smirk:before +{ + content: "\eb04"; +} + +.icofont-stuck-out-tongue:before +{ + content: "\eb05"; +} + +.icofont-wink-smile:before +{ + content: "\eb06"; +} + +.icofont-worried:before +{ + content: "\eb07"; +} + +.icofont-file-alt:before +{ + content: "\eb08"; +} + +.icofont-file-audio:before +{ + content: "\eb09"; +} + +.icofont-file-avi-mp4:before +{ + content: "\eb0a"; +} + +.icofont-file-bmp:before +{ + content: "\eb0b"; +} + +.icofont-file-code:before +{ + content: "\eb0c"; +} + +.icofont-file-css:before +{ + content: "\eb0d"; +} + +.icofont-file-document:before +{ + content: "\eb0e"; +} + +.icofont-file-eps:before +{ + content: "\eb0f"; +} + +.icofont-file-excel:before +{ + content: "\eb10"; +} + +.icofont-file-exe:before +{ + content: "\eb11"; +} + +.icofont-file-file:before +{ + content: "\eb12"; +} + +.icofont-file-flv:before +{ + content: "\eb13"; +} + +.icofont-file-gif:before +{ + content: "\eb14"; +} + +.icofont-file-html5:before +{ + content: "\eb15"; +} + +.icofont-file-image:before +{ + content: "\eb16"; +} + +.icofont-file-iso:before +{ + content: "\eb17"; +} + +.icofont-file-java:before +{ + content: "\eb18"; +} + +.icofont-file-javascript:before +{ + content: "\eb19"; +} + +.icofont-file-jpg:before +{ + content: "\eb1a"; +} + +.icofont-file-midi:before +{ + content: "\eb1b"; +} + +.icofont-file-mov:before +{ + content: "\eb1c"; +} + +.icofont-file-mp3:before +{ + content: "\eb1d"; +} + +.icofont-file-pdf:before +{ + content: "\eb1e"; +} + +.icofont-file-php:before +{ + content: "\eb1f"; +} + +.icofont-file-png:before +{ + content: "\eb20"; +} + +.icofont-file-powerpoint:before +{ + content: "\eb21"; +} + +.icofont-file-presentation:before +{ + content: "\eb22"; +} + +.icofont-file-psb:before +{ + content: "\eb23"; +} + +.icofont-file-psd:before +{ + content: "\eb24"; +} + +.icofont-file-python:before +{ + content: "\eb25"; +} + +.icofont-file-ruby:before +{ + content: "\eb26"; +} + +.icofont-file-spreadsheet:before +{ + content: "\eb27"; +} + +.icofont-file-sql:before +{ + content: "\eb28"; +} + +.icofont-file-svg:before +{ + content: "\eb29"; +} + +.icofont-file-text:before +{ + content: "\eb2a"; +} + +.icofont-file-tiff:before +{ + content: "\eb2b"; +} + +.icofont-file-video:before +{ + content: "\eb2c"; +} + +.icofont-file-wave:before +{ + content: "\eb2d"; +} + +.icofont-file-wmv:before +{ + content: "\eb2e"; +} + +.icofont-file-word:before +{ + content: "\eb2f"; +} + +.icofont-file-zip:before +{ + content: "\eb30"; +} + +.icofont-cycling-alt:before +{ + content: "\eb31"; +} + +.icofont-cycling:before +{ + content: "\eb32"; +} + +.icofont-dumbbell:before +{ + content: "\eb33"; +} + +.icofont-dumbbells:before +{ + content: "\eb34"; +} + +.icofont-gym-alt-1:before +{ + content: "\eb35"; +} + +.icofont-gym-alt-2:before +{ + content: "\eb36"; +} + +.icofont-gym-alt-3:before +{ + content: "\eb37"; +} + +.icofont-gym:before +{ + content: "\eb38"; +} + +.icofont-muscle-weight:before +{ + content: "\eb39"; +} + +.icofont-muscle:before +{ + content: "\eb3a"; +} + +.icofont-apple:before +{ + content: "\eb3b"; +} + +.icofont-arabian-coffee:before +{ + content: "\eb3c"; +} + +.icofont-artichoke:before +{ + content: "\eb3d"; +} + +.icofont-asparagus:before +{ + content: "\eb3e"; +} + +.icofont-avocado:before +{ + content: "\eb3f"; +} + +.icofont-baby-food:before +{ + content: "\eb40"; +} + +.icofont-banana:before +{ + content: "\eb41"; +} + +.icofont-bbq:before +{ + content: "\eb42"; +} + +.icofont-beans:before +{ + content: "\eb43"; +} + +.icofont-beer:before +{ + content: "\eb44"; +} + +.icofont-bell-pepper-capsicum:before +{ + content: "\eb45"; +} + +.icofont-birthday-cake:before +{ + content: "\eb46"; +} + +.icofont-bread:before +{ + content: "\eb47"; +} + +.icofont-broccoli:before +{ + content: "\eb48"; +} + +.icofont-burger:before +{ + content: "\eb49"; +} + +.icofont-cabbage:before +{ + content: "\eb4a"; +} + +.icofont-carrot:before +{ + content: "\eb4b"; +} + +.icofont-cauli-flower:before +{ + content: "\eb4c"; +} + +.icofont-cheese:before +{ + content: "\eb4d"; +} + +.icofont-chef:before +{ + content: "\eb4e"; +} + +.icofont-cherry:before +{ + content: "\eb4f"; +} + +.icofont-chicken-fry:before +{ + content: "\eb50"; +} + +.icofont-chicken:before +{ + content: "\eb51"; +} + +.icofont-cocktail:before +{ + content: "\eb52"; +} + +.icofont-coconut-water:before +{ + content: "\eb53"; +} + +.icofont-coconut:before +{ + content: "\eb54"; +} + +.icofont-coffee-alt:before +{ + content: "\eb55"; +} + +.icofont-coffee-cup:before +{ + content: "\eb56"; +} + +.icofont-coffee-mug:before +{ + content: "\eb57"; +} + +.icofont-coffee-pot:before +{ + content: "\eb58"; +} + +.icofont-cola:before +{ + content: "\eb59"; +} + +.icofont-corn:before +{ + content: "\eb5a"; +} + +.icofont-croissant:before +{ + content: "\eb5b"; +} + +.icofont-crop-plant:before +{ + content: "\eb5c"; +} + +.icofont-cucumber:before +{ + content: "\eb5d"; +} + +.icofont-culinary:before +{ + content: "\eb5e"; +} + +.icofont-cup-cake:before +{ + content: "\eb5f"; +} + +.icofont-dining-table:before +{ + content: "\eb60"; +} + +.icofont-donut:before +{ + content: "\eb61"; +} + +.icofont-egg-plant:before +{ + content: "\eb62"; +} + +.icofont-egg-poached:before +{ + content: "\eb63"; +} + +.icofont-farmer-alt:before +{ + content: "\eb64"; +} + +.icofont-farmer:before +{ + content: "\eb65"; +} + +.icofont-fast-food:before +{ + content: "\eb66"; +} + +.icofont-food-basket:before +{ + content: "\eb67"; +} + +.icofont-food-cart:before +{ + content: "\eb68"; +} + +.icofont-fork-and-knife:before +{ + content: "\eb69"; +} + +.icofont-french-fries:before +{ + content: "\eb6a"; +} + +.icofont-fruits:before +{ + content: "\eb6b"; +} + +.icofont-grapes:before +{ + content: "\eb6c"; +} + +.icofont-honey:before +{ + content: "\eb6d"; +} + +.icofont-hot-dog:before +{ + content: "\eb6e"; +} + +.icofont-ice-cream-alt:before +{ + content: "\eb6f"; +} + +.icofont-ice-cream:before +{ + content: "\eb70"; +} + +.icofont-juice:before +{ + content: "\eb71"; +} + +.icofont-ketchup:before +{ + content: "\eb72"; +} + +.icofont-kiwi:before +{ + content: "\eb73"; +} + +.icofont-layered-cake:before +{ + content: "\eb74"; +} + +.icofont-lemon-alt:before +{ + content: "\eb75"; +} + +.icofont-lemon:before +{ + content: "\eb76"; +} + +.icofont-lobster:before +{ + content: "\eb77"; +} + +.icofont-mango:before +{ + content: "\eb78"; +} + +.icofont-milk:before +{ + content: "\eb79"; +} + +.icofont-mushroom:before +{ + content: "\eb7a"; +} + +.icofont-noodles:before +{ + content: "\eb7b"; +} + +.icofont-onion:before +{ + content: "\eb7c"; +} + +.icofont-orange:before +{ + content: "\eb7d"; +} + +.icofont-pear:before +{ + content: "\eb7e"; +} + +.icofont-peas:before +{ + content: "\eb7f"; +} + +.icofont-pepper:before +{ + content: "\eb80"; +} + +.icofont-pie-alt:before +{ + content: "\eb81"; +} + +.icofont-pie:before +{ + content: "\eb82"; +} + +.icofont-pineapple:before +{ + content: "\eb83"; +} + +.icofont-pizza-slice:before +{ + content: "\eb84"; +} + +.icofont-pizza:before +{ + content: "\eb85"; +} + +.icofont-plant:before +{ + content: "\eb86"; +} + +.icofont-popcorn:before +{ + content: "\eb87"; +} + +.icofont-potato:before +{ + content: "\eb88"; +} + +.icofont-pumpkin:before +{ + content: "\eb89"; +} + +.icofont-raddish:before +{ + content: "\eb8a"; +} + +.icofont-restaurant-menu:before +{ + content: "\eb8b"; +} + +.icofont-restaurant:before +{ + content: "\eb8c"; +} + +.icofont-salt-and-pepper:before +{ + content: "\eb8d"; +} + +.icofont-sandwich:before +{ + content: "\eb8e"; +} + +.icofont-sausage:before +{ + content: "\eb8f"; +} + +.icofont-soft-drinks:before +{ + content: "\eb90"; +} + +.icofont-soup-bowl:before +{ + content: "\eb91"; +} + +.icofont-spoon-and-fork:before +{ + content: "\eb92"; +} + +.icofont-steak:before +{ + content: "\eb93"; +} + +.icofont-strawberry:before +{ + content: "\eb94"; +} + +.icofont-sub-sandwich:before +{ + content: "\eb95"; +} + +.icofont-sushi:before +{ + content: "\eb96"; +} + +.icofont-taco:before +{ + content: "\eb97"; +} + +.icofont-tea-pot:before +{ + content: "\eb98"; +} + +.icofont-tea:before +{ + content: "\eb99"; +} + +.icofont-tomato:before +{ + content: "\eb9a"; +} + +.icofont-watermelon:before +{ + content: "\eb9b"; +} + +.icofont-wheat:before +{ + content: "\eb9c"; +} + +.icofont-baby-backpack:before +{ + content: "\eb9d"; +} + +.icofont-baby-cloth:before +{ + content: "\eb9e"; +} + +.icofont-baby-milk-bottle:before +{ + content: "\eb9f"; +} + +.icofont-baby-trolley:before +{ + content: "\eba0"; +} + +.icofont-baby:before +{ + content: "\eba1"; +} + +.icofont-candy:before +{ + content: "\eba2"; +} + +.icofont-holding-hands:before +{ + content: "\eba3"; +} + +.icofont-infant-nipple:before +{ + content: "\eba4"; +} + +.icofont-kids-scooter:before +{ + content: "\eba5"; +} + +.icofont-safety-pin:before +{ + content: "\eba6"; +} + +.icofont-teddy-bear:before +{ + content: "\eba7"; +} + +.icofont-toy-ball:before +{ + content: "\eba8"; +} + +.icofont-toy-cat:before +{ + content: "\eba9"; +} + +.icofont-toy-duck:before +{ + content: "\ebaa"; +} + +.icofont-toy-elephant:before +{ + content: "\ebab"; +} + +.icofont-toy-hand:before +{ + content: "\ebac"; +} + +.icofont-toy-horse:before +{ + content: "\ebad"; +} + +.icofont-toy-lattu:before +{ + content: "\ebae"; +} + +.icofont-toy-train:before +{ + content: "\ebaf"; +} + +.icofont-burglar:before +{ + content: "\ebb0"; +} + +.icofont-cannon-firing:before +{ + content: "\ebb1"; +} + +.icofont-cc-camera:before +{ + content: "\ebb2"; +} + +.icofont-cop-badge:before +{ + content: "\ebb3"; +} + +.icofont-cop:before +{ + content: "\ebb4"; +} + +.icofont-court-hammer:before +{ + content: "\ebb5"; +} + +.icofont-court:before +{ + content: "\ebb6"; +} + +.icofont-finger-print:before +{ + content: "\ebb7"; +} + +.icofont-gavel:before +{ + content: "\ebb8"; +} + +.icofont-handcuff-alt:before +{ + content: "\ebb9"; +} + +.icofont-handcuff:before +{ + content: "\ebba"; +} + +.icofont-investigation:before +{ + content: "\ebbb"; +} + +.icofont-investigator:before +{ + content: "\ebbc"; +} + +.icofont-jail:before +{ + content: "\ebbd"; +} + +.icofont-judge:before +{ + content: "\ebbe"; +} + +.icofont-law-alt-1:before +{ + content: "\ebbf"; +} + +.icofont-law-alt-2:before +{ + content: "\ebc0"; +} + +.icofont-law-alt-3:before +{ + content: "\ebc1"; +} + +.icofont-law-book:before +{ + content: "\ebc2"; +} + +.icofont-law-document:before +{ + content: "\ebc3"; +} + +.icofont-law-order:before +{ + content: "\ebc4"; +} + +.icofont-law-protect:before +{ + content: "\ebc5"; +} + +.icofont-law-scales:before +{ + content: "\ebc6"; +} + +.icofont-law:before +{ + content: "\ebc7"; +} + +.icofont-lawyer-alt-1:before +{ + content: "\ebc8"; +} + +.icofont-lawyer-alt-2:before +{ + content: "\ebc9"; +} + +.icofont-lawyer:before +{ + content: "\ebca"; +} + +.icofont-legal:before +{ + content: "\ebcb"; +} + +.icofont-pistol:before +{ + content: "\ebcc"; +} + +.icofont-police-badge:before +{ + content: "\ebcd"; +} + +.icofont-police-cap:before +{ + content: "\ebce"; +} + +.icofont-police-car-alt-1:before +{ + content: "\ebcf"; +} + +.icofont-police-car-alt-2:before +{ + content: "\ebd0"; +} + +.icofont-police-car:before +{ + content: "\ebd1"; +} + +.icofont-police-hat:before +{ + content: "\ebd2"; +} + +.icofont-police-van:before +{ + content: "\ebd3"; +} + +.icofont-police:before +{ + content: "\ebd4"; +} + +.icofont-thief-alt:before +{ + content: "\ebd5"; +} + +.icofont-thief:before +{ + content: "\ebd6"; +} + +.icofont-abacus-alt:before +{ + content: "\ebd7"; +} + +.icofont-abacus:before +{ + content: "\ebd8"; +} + +.icofont-angle-180:before +{ + content: "\ebd9"; +} + +.icofont-angle-45:before +{ + content: "\ebda"; +} + +.icofont-angle-90:before +{ + content: "\ebdb"; +} + +.icofont-angle:before +{ + content: "\ebdc"; +} + +.icofont-calculator-alt-1:before +{ + content: "\ebdd"; +} + +.icofont-calculator-alt-2:before +{ + content: "\ebde"; +} + +.icofont-calculator:before +{ + content: "\ebdf"; +} + +.icofont-circle-ruler-alt:before +{ + content: "\ebe0"; +} + +.icofont-circle-ruler:before +{ + content: "\ebe1"; +} + +.icofont-compass-alt-1:before +{ + content: "\ebe2"; +} + +.icofont-compass-alt-2:before +{ + content: "\ebe3"; +} + +.icofont-compass-alt-3:before +{ + content: "\ebe4"; +} + +.icofont-compass-alt-4:before +{ + content: "\ebe5"; +} + +.icofont-golden-ratio:before +{ + content: "\ebe6"; +} + +.icofont-marker-alt-1:before +{ + content: "\ebe7"; +} + +.icofont-marker-alt-2:before +{ + content: "\ebe8"; +} + +.icofont-marker-alt-3:before +{ + content: "\ebe9"; +} + +.icofont-marker:before +{ + content: "\ebea"; +} + +.icofont-math:before +{ + content: "\ebeb"; +} + +.icofont-mathematical-alt-1:before +{ + content: "\ebec"; +} + +.icofont-mathematical-alt-2:before +{ + content: "\ebed"; +} + +.icofont-mathematical:before +{ + content: "\ebee"; +} + +.icofont-pen-alt-1:before +{ + content: "\ebef"; +} + +.icofont-pen-alt-2:before +{ + content: "\ebf0"; +} + +.icofont-pen-alt-3:before +{ + content: "\ebf1"; +} + +.icofont-pen-holder-alt-1:before +{ + content: "\ebf2"; +} + +.icofont-pen-holder:before +{ + content: "\ebf3"; +} + +.icofont-pen:before +{ + content: "\ebf4"; +} + +.icofont-pencil-alt-1:before +{ + content: "\ebf5"; +} + +.icofont-pencil-alt-2:before +{ + content: "\ebf6"; +} + +.icofont-pencil-alt-3:before +{ + content: "\ebf7"; +} + +.icofont-pencil-alt-4:before +{ + content: "\ebf8"; +} + +.icofont-pencil:before +{ + content: "\ebf9"; +} + +.icofont-ruler-alt-1:before +{ + content: "\ebfa"; +} + +.icofont-ruler-alt-2:before +{ + content: "\ebfb"; +} + +.icofont-ruler-compass-alt:before +{ + content: "\ebfc"; +} + +.icofont-ruler-compass:before +{ + content: "\ebfd"; +} + +.icofont-ruler-pencil-alt-1:before +{ + content: "\ebfe"; +} + +.icofont-ruler-pencil-alt-2:before +{ + content: "\ebff"; +} + +.icofont-ruler-pencil:before +{ + content: "\ec00"; +} + +.icofont-ruler:before +{ + content: "\ec01"; +} + +.icofont-rulers-alt:before +{ + content: "\ec02"; +} + +.icofont-rulers:before +{ + content: "\ec03"; +} + +.icofont-square-root:before +{ + content: "\ec04"; +} + +.icofont-ui-calculator:before +{ + content: "\ec05"; +} + +.icofont-aids:before +{ + content: "\ec06"; +} + +.icofont-ambulance-crescent:before +{ + content: "\ec07"; +} + +.icofont-ambulance-cross:before +{ + content: "\ec08"; +} + +.icofont-ambulance:before +{ + content: "\ec09"; +} + +.icofont-autism:before +{ + content: "\ec0a"; +} + +.icofont-bandage:before +{ + content: "\ec0b"; +} + +.icofont-blind:before +{ + content: "\ec0c"; +} + +.icofont-blood-drop:before +{ + content: "\ec0d"; +} + +.icofont-blood-test:before +{ + content: "\ec0e"; +} + +.icofont-blood:before +{ + content: "\ec0f"; +} + +.icofont-brain-alt:before +{ + content: "\ec10"; +} + +.icofont-brain:before +{ + content: "\ec11"; +} + +.icofont-capsule:before +{ + content: "\ec12"; +} + +.icofont-crutch:before +{ + content: "\ec13"; +} + +.icofont-disabled:before +{ + content: "\ec14"; +} + +.icofont-dna-alt-1:before +{ + content: "\ec15"; +} + +.icofont-dna-alt-2:before +{ + content: "\ec16"; +} + +.icofont-dna:before +{ + content: "\ec17"; +} + +.icofont-doctor-alt:before +{ + content: "\ec18"; +} + +.icofont-doctor:before +{ + content: "\ec19"; +} + +.icofont-drug-pack:before +{ + content: "\ec1a"; +} + +.icofont-drug:before +{ + content: "\ec1b"; +} + +.icofont-first-aid-alt:before +{ + content: "\ec1c"; +} + +.icofont-first-aid:before +{ + content: "\ec1d"; +} + +.icofont-heart-beat-alt:before +{ + content: "\ec1e"; +} + +.icofont-heart-beat:before +{ + content: "\ec1f"; +} + +.icofont-heartbeat:before +{ + content: "\ec20"; +} + +.icofont-herbal:before +{ + content: "\ec21"; +} + +.icofont-hospital:before +{ + content: "\ec22"; +} + +.icofont-icu:before +{ + content: "\ec23"; +} + +.icofont-injection-syringe:before +{ + content: "\ec24"; +} + +.icofont-laboratory:before +{ + content: "\ec25"; +} + +.icofont-medical-sign-alt:before +{ + content: "\ec26"; +} + +.icofont-medical-sign:before +{ + content: "\ec27"; +} + +.icofont-nurse-alt:before +{ + content: "\ec28"; +} + +.icofont-nurse:before +{ + content: "\ec29"; +} + +.icofont-nursing-home:before +{ + content: "\ec2a"; +} + +.icofont-operation-theater:before +{ + content: "\ec2b"; +} + +.icofont-paralysis-disability:before +{ + content: "\ec2c"; +} + +.icofont-patient-bed:before +{ + content: "\ec2d"; +} + +.icofont-patient-file:before +{ + content: "\ec2e"; +} + +.icofont-pills:before +{ + content: "\ec2f"; +} + +.icofont-prescription:before +{ + content: "\ec30"; +} + +.icofont-pulse:before +{ + content: "\ec31"; +} + +.icofont-stethoscope-alt:before +{ + content: "\ec32"; +} + +.icofont-stethoscope:before +{ + content: "\ec33"; +} + +.icofont-stretcher:before +{ + content: "\ec34"; +} + +.icofont-surgeon-alt:before +{ + content: "\ec35"; +} + +.icofont-surgeon:before +{ + content: "\ec36"; +} + +.icofont-tablets:before +{ + content: "\ec37"; +} + +.icofont-test-bottle:before +{ + content: "\ec38"; +} + +.icofont-test-tube:before +{ + content: "\ec39"; +} + +.icofont-thermometer-alt:before +{ + content: "\ec3a"; +} + +.icofont-thermometer:before +{ + content: "\ec3b"; +} + +.icofont-tooth:before +{ + content: "\ec3c"; +} + +.icofont-xray:before +{ + content: "\ec3d"; +} + +.icofont-ui-add:before +{ + content: "\ec3e"; +} + +.icofont-ui-alarm:before +{ + content: "\ec3f"; +} + +.icofont-ui-battery:before +{ + content: "\ec40"; +} + +.icofont-ui-block:before +{ + content: "\ec41"; +} + +.icofont-ui-bluetooth:before +{ + content: "\ec42"; +} + +.icofont-ui-brightness:before +{ + content: "\ec43"; +} + +.icofont-ui-browser:before +{ + content: "\ec44"; +} + +.icofont-ui-calendar:before +{ + content: "\ec45"; +} + +.icofont-ui-call:before +{ + content: "\ec46"; +} + +.icofont-ui-camera:before +{ + content: "\ec47"; +} + +.icofont-ui-cart:before +{ + content: "\ec48"; +} + +.icofont-ui-cell-phone:before +{ + content: "\ec49"; +} + +.icofont-ui-chat:before +{ + content: "\ec4a"; +} + +.icofont-ui-check:before +{ + content: "\ec4b"; +} + +.icofont-ui-clip-board:before +{ + content: "\ec4c"; +} + +.icofont-ui-clip:before +{ + content: "\ec4d"; +} + +.icofont-ui-clock:before +{ + content: "\ec4e"; +} + +.icofont-ui-close:before +{ + content: "\ec4f"; +} + +.icofont-ui-contact-list:before +{ + content: "\ec50"; +} + +.icofont-ui-copy:before +{ + content: "\ec51"; +} + +.icofont-ui-cut:before +{ + content: "\ec52"; +} + +.icofont-ui-delete:before +{ + content: "\ec53"; +} + +.icofont-ui-dial-phone:before +{ + content: "\ec54"; +} + +.icofont-ui-edit:before +{ + content: "\ec55"; +} + +.icofont-ui-email:before +{ + content: "\ec56"; +} + +.icofont-ui-file:before +{ + content: "\ec57"; +} + +.icofont-ui-fire-wall:before +{ + content: "\ec58"; +} + +.icofont-ui-flash-light:before +{ + content: "\ec59"; +} + +.icofont-ui-flight:before +{ + content: "\ec5a"; +} + +.icofont-ui-folder:before +{ + content: "\ec5b"; +} + +.icofont-ui-game:before +{ + content: "\ec5c"; +} + +.icofont-ui-handicapped:before +{ + content: "\ec5d"; +} + +.icofont-ui-home:before +{ + content: "\ec5e"; +} + +.icofont-ui-image:before +{ + content: "\ec5f"; +} + +.icofont-ui-laoding:before +{ + content: "\ec60"; +} + +.icofont-ui-lock:before +{ + content: "\ec61"; +} + +.icofont-ui-love-add:before +{ + content: "\ec62"; +} + +.icofont-ui-love-broken:before +{ + content: "\ec63"; +} + +.icofont-ui-love-remove:before +{ + content: "\ec64"; +} + +.icofont-ui-love:before +{ + content: "\ec65"; +} + +.icofont-ui-map:before +{ + content: "\ec66"; +} + +.icofont-ui-message:before +{ + content: "\ec67"; +} + +.icofont-ui-messaging:before +{ + content: "\ec68"; +} + +.icofont-ui-movie:before +{ + content: "\ec69"; +} + +.icofont-ui-music-player:before +{ + content: "\ec6a"; +} + +.icofont-ui-music:before +{ + content: "\ec6b"; +} + +.icofont-ui-mute:before +{ + content: "\ec6c"; +} + +.icofont-ui-network:before +{ + content: "\ec6d"; +} + +.icofont-ui-next:before +{ + content: "\ec6e"; +} + +.icofont-ui-note:before +{ + content: "\ec6f"; +} + +.icofont-ui-office:before +{ + content: "\ec70"; +} + +.icofont-ui-password:before +{ + content: "\ec71"; +} + +.icofont-ui-pause:before +{ + content: "\ec72"; +} + +.icofont-ui-play-stop:before +{ + content: "\ec73"; +} + +.icofont-ui-play:before +{ + content: "\ec74"; +} + +.icofont-ui-pointer:before +{ + content: "\ec75"; +} + +.icofont-ui-power:before +{ + content: "\ec76"; +} + +.icofont-ui-press:before +{ + content: "\ec77"; +} + +.icofont-ui-previous:before +{ + content: "\ec78"; +} + +.icofont-ui-rate-add:before +{ + content: "\ec79"; +} + +.icofont-ui-rate-blank:before +{ + content: "\ec7a"; +} + +.icofont-ui-rate-remove:before +{ + content: "\ec7b"; +} + +.icofont-ui-rating:before +{ + content: "\ec7c"; +} + +.icofont-ui-record:before +{ + content: "\ec7d"; +} + +.icofont-ui-remove:before +{ + content: "\ec7e"; +} + +.icofont-ui-reply:before +{ + content: "\ec7f"; +} + +.icofont-ui-rotation:before +{ + content: "\ec80"; +} + +.icofont-ui-rss:before +{ + content: "\ec81"; +} + +.icofont-ui-search:before +{ + content: "\ec82"; +} + +.icofont-ui-settings:before +{ + content: "\ec83"; +} + +.icofont-ui-social-link:before +{ + content: "\ec84"; +} + +.icofont-ui-tag:before +{ + content: "\ec85"; +} + +.icofont-ui-text-chat:before +{ + content: "\ec86"; +} + +.icofont-ui-text-loading:before +{ + content: "\ec87"; +} + +.icofont-ui-theme:before +{ + content: "\ec88"; +} + +.icofont-ui-timer:before +{ + content: "\ec89"; +} + +.icofont-ui-touch-phone:before +{ + content: "\ec8a"; +} + +.icofont-ui-travel:before +{ + content: "\ec8b"; +} + +.icofont-ui-unlock:before +{ + content: "\ec8c"; +} + +.icofont-ui-user-group:before +{ + content: "\ec8d"; +} + +.icofont-ui-user:before +{ + content: "\ec8e"; +} + +.icofont-ui-v-card:before +{ + content: "\ec8f"; +} + +.icofont-ui-video-chat:before +{ + content: "\ec90"; +} + +.icofont-ui-video-message:before +{ + content: "\ec91"; +} + +.icofont-ui-video-play:before +{ + content: "\ec92"; +} + +.icofont-ui-video:before +{ + content: "\ec93"; +} + +.icofont-ui-volume:before +{ + content: "\ec94"; +} + +.icofont-ui-weather:before +{ + content: "\ec95"; +} + +.icofont-ui-wifi:before +{ + content: "\ec96"; +} + +.icofont-ui-zoom-in:before +{ + content: "\ec97"; +} + +.icofont-ui-zoom-out:before +{ + content: "\ec98"; +} + +.icofont-cassette-player:before +{ + content: "\ec99"; +} + +.icofont-cassette:before +{ + content: "\ec9a"; +} + +.icofont-forward:before +{ + content: "\ec9b"; +} + +.icofont-guiter:before +{ + content: "\ec9c"; +} + +.icofont-movie:before +{ + content: "\ec9d"; +} + +.icofont-multimedia:before +{ + content: "\ec9e"; +} + +.icofont-music-alt:before +{ + content: "\ec9f"; +} + +.icofont-music-disk:before +{ + content: "\eca0"; +} + +.icofont-music-note:before +{ + content: "\eca1"; +} + +.icofont-music-notes:before +{ + content: "\eca2"; +} + +.icofont-music:before +{ + content: "\eca3"; +} + +.icofont-mute-volume:before +{ + content: "\eca4"; +} + +.icofont-pause:before +{ + content: "\eca5"; +} + +.icofont-play-alt-1:before +{ + content: "\eca6"; +} + +.icofont-play-alt-2:before +{ + content: "\eca7"; +} + +.icofont-play-alt-3:before +{ + content: "\eca8"; +} + +.icofont-play-pause:before +{ + content: "\eca9"; +} + +.icofont-play:before +{ + content: "\ecaa"; +} + +.icofont-record:before +{ + content: "\ecab"; +} + +.icofont-retro-music-disk:before +{ + content: "\ecac"; +} + +.icofont-rewind:before +{ + content: "\ecad"; +} + +.icofont-song-notes:before +{ + content: "\ecae"; +} + +.icofont-sound-wave-alt:before +{ + content: "\ecaf"; +} + +.icofont-sound-wave:before +{ + content: "\ecb0"; +} + +.icofont-stop:before +{ + content: "\ecb1"; +} + +.icofont-video-alt:before +{ + content: "\ecb2"; +} + +.icofont-video-cam:before +{ + content: "\ecb3"; +} + +.icofont-video-clapper:before +{ + content: "\ecb4"; +} + +.icofont-video:before +{ + content: "\ecb5"; +} + +.icofont-volume-bar:before +{ + content: "\ecb6"; +} + +.icofont-volume-down:before +{ + content: "\ecb7"; +} + +.icofont-volume-mute:before +{ + content: "\ecb8"; +} + +.icofont-volume-off:before +{ + content: "\ecb9"; +} + +.icofont-volume-up:before +{ + content: "\ecba"; +} + +.icofont-youtube-play:before +{ + content: "\ecbb"; +} + +.icofont-2checkout-alt:before +{ + content: "\ecbc"; +} + +.icofont-2checkout:before +{ + content: "\ecbd"; +} + +.icofont-amazon-alt:before +{ + content: "\ecbe"; +} + +.icofont-amazon:before +{ + content: "\ecbf"; +} + +.icofont-american-express-alt:before +{ + content: "\ecc0"; +} + +.icofont-american-express:before +{ + content: "\ecc1"; +} + +.icofont-apple-pay-alt:before +{ + content: "\ecc2"; +} + +.icofont-apple-pay:before +{ + content: "\ecc3"; +} + +.icofont-bank-transfer-alt:before +{ + content: "\ecc4"; +} + +.icofont-bank-transfer:before +{ + content: "\ecc5"; +} + +.icofont-braintree-alt:before +{ + content: "\ecc6"; +} + +.icofont-braintree:before +{ + content: "\ecc7"; +} + +.icofont-cash-on-delivery-alt:before +{ + content: "\ecc8"; +} + +.icofont-cash-on-delivery:before +{ + content: "\ecc9"; +} + +.icofont-diners-club-alt-1:before +{ + content: "\ecca"; +} + +.icofont-diners-club-alt-2:before +{ + content: "\eccb"; +} + +.icofont-diners-club-alt-3:before +{ + content: "\eccc"; +} + +.icofont-diners-club:before +{ + content: "\eccd"; +} + +.icofont-discover-alt:before +{ + content: "\ecce"; +} + +.icofont-discover:before +{ + content: "\eccf"; +} + +.icofont-eway-alt:before +{ + content: "\ecd0"; +} + +.icofont-eway:before +{ + content: "\ecd1"; +} + +.icofont-google-wallet-alt-1:before +{ + content: "\ecd2"; +} + +.icofont-google-wallet-alt-2:before +{ + content: "\ecd3"; +} + +.icofont-google-wallet-alt-3:before +{ + content: "\ecd4"; +} + +.icofont-google-wallet:before +{ + content: "\ecd5"; +} + +.icofont-jcb-alt:before +{ + content: "\ecd6"; +} + +.icofont-jcb:before +{ + content: "\ecd7"; +} + +.icofont-maestro-alt:before +{ + content: "\ecd8"; +} + +.icofont-maestro:before +{ + content: "\ecd9"; +} + +.icofont-mastercard-alt:before +{ + content: "\ecda"; +} + +.icofont-mastercard:before +{ + content: "\ecdb"; +} + +.icofont-payoneer-alt:before +{ + content: "\ecdc"; +} + +.icofont-payoneer:before +{ + content: "\ecdd"; +} + +.icofont-paypal-alt:before +{ + content: "\ecde"; +} + +.icofont-paypal:before +{ + content: "\ecdf"; +} + +.icofont-sage-alt:before +{ + content: "\ece0"; +} + +.icofont-sage:before +{ + content: "\ece1"; +} + +.icofont-skrill-alt:before +{ + content: "\ece2"; +} + +.icofont-skrill:before +{ + content: "\ece3"; +} + +.icofont-stripe-alt:before +{ + content: "\ece4"; +} + +.icofont-stripe:before +{ + content: "\ece5"; +} + +.icofont-visa-alt:before +{ + content: "\ece6"; +} + +.icofont-visa-electron:before +{ + content: "\ece7"; +} + +.icofont-visa:before +{ + content: "\ece8"; +} + +.icofont-western-union-alt:before +{ + content: "\ece9"; +} + +.icofont-western-union:before +{ + content: "\ecea"; +} + +.icofont-boy:before +{ + content: "\eceb"; +} + +.icofont-business-man-alt-1:before +{ + content: "\ecec"; +} + +.icofont-business-man-alt-2:before +{ + content: "\eced"; +} + +.icofont-business-man-alt-3:before +{ + content: "\ecee"; +} + +.icofont-business-man:before +{ + content: "\ecef"; +} + +.icofont-female:before +{ + content: "\ecf0"; +} + +.icofont-funky-man:before +{ + content: "\ecf1"; +} + +.icofont-girl-alt:before +{ + content: "\ecf2"; +} + +.icofont-girl:before +{ + content: "\ecf3"; +} + +.icofont-group:before +{ + content: "\ecf4"; +} + +.icofont-hotel-boy-alt:before +{ + content: "\ecf5"; +} + +.icofont-hotel-boy:before +{ + content: "\ecf6"; +} + +.icofont-kid:before +{ + content: "\ecf7"; +} + +.icofont-man-in-glasses:before +{ + content: "\ecf8"; +} + +.icofont-people:before +{ + content: "\ecf9"; +} + +.icofont-support:before +{ + content: "\ecfa"; +} + +.icofont-user-alt-1:before +{ + content: "\ecfb"; +} + +.icofont-user-alt-2:before +{ + content: "\ecfc"; +} + +.icofont-user-alt-3:before +{ + content: "\ecfd"; +} + +.icofont-user-alt-4:before +{ + content: "\ecfe"; +} + +.icofont-user-alt-5:before +{ + content: "\ecff"; +} + +.icofont-user-alt-6:before +{ + content: "\ed00"; +} + +.icofont-user-alt-7:before +{ + content: "\ed01"; +} + +.icofont-user-female:before +{ + content: "\ed02"; +} + +.icofont-user-male:before +{ + content: "\ed03"; +} + +.icofont-user-suited:before +{ + content: "\ed04"; +} + +.icofont-user:before +{ + content: "\ed05"; +} + +.icofont-users-alt-1:before +{ + content: "\ed06"; +} + +.icofont-users-alt-2:before +{ + content: "\ed07"; +} + +.icofont-users-alt-3:before +{ + content: "\ed08"; +} + +.icofont-users-alt-4:before +{ + content: "\ed09"; +} + +.icofont-users-alt-5:before +{ + content: "\ed0a"; +} + +.icofont-users-alt-6:before +{ + content: "\ed0b"; +} + +.icofont-users-social:before +{ + content: "\ed0c"; +} + +.icofont-users:before +{ + content: "\ed0d"; +} + +.icofont-waiter-alt:before +{ + content: "\ed0e"; +} + +.icofont-waiter:before +{ + content: "\ed0f"; +} + +.icofont-woman-in-glasses:before +{ + content: "\ed10"; +} + +.icofont-search-1:before +{ + content: "\ed11"; +} + +.icofont-search-2:before +{ + content: "\ed12"; +} + +.icofont-search-document:before +{ + content: "\ed13"; +} + +.icofont-search-folder:before +{ + content: "\ed14"; +} + +.icofont-search-job:before +{ + content: "\ed15"; +} + +.icofont-search-map:before +{ + content: "\ed16"; +} + +.icofont-search-property:before +{ + content: "\ed17"; +} + +.icofont-search-restaurant:before +{ + content: "\ed18"; +} + +.icofont-search-stock:before +{ + content: "\ed19"; +} + +.icofont-search-user:before +{ + content: "\ed1a"; +} + +.icofont-search:before +{ + content: "\ed1b"; +} + +.icofont-500px:before +{ + content: "\ed1c"; +} + +.icofont-aim:before +{ + content: "\ed1d"; +} + +.icofont-badoo:before +{ + content: "\ed1e"; +} + +.icofont-baidu-tieba:before +{ + content: "\ed1f"; +} + +.icofont-bbm-messenger:before +{ + content: "\ed20"; +} + +.icofont-bebo:before +{ + content: "\ed21"; +} + +.icofont-behance:before +{ + content: "\ed22"; +} + +.icofont-blogger:before +{ + content: "\ed23"; +} + +.icofont-bootstrap:before +{ + content: "\ed24"; +} + +.icofont-brightkite:before +{ + content: "\ed25"; +} + +.icofont-cloudapp:before +{ + content: "\ed26"; +} + +.icofont-concrete5:before +{ + content: "\ed27"; +} + +.icofont-delicious:before +{ + content: "\ed28"; +} + +.icofont-designbump:before +{ + content: "\ed29"; +} + +.icofont-designfloat:before +{ + content: "\ed2a"; +} + +.icofont-deviantart:before +{ + content: "\ed2b"; +} + +.icofont-digg:before +{ + content: "\ed2c"; +} + +.icofont-dotcms:before +{ + content: "\ed2d"; +} + +.icofont-dribbble:before +{ + content: "\ed2e"; +} + +.icofont-dribble:before +{ + content: "\ed2f"; +} + +.icofont-dropbox:before +{ + content: "\ed30"; +} + +.icofont-ebuddy:before +{ + content: "\ed31"; +} + +.icofont-ello:before +{ + content: "\ed32"; +} + +.icofont-ember:before +{ + content: "\ed33"; +} + +.icofont-envato:before +{ + content: "\ed34"; +} + +.icofont-evernote:before +{ + content: "\ed35"; +} + +.icofont-facebook-messenger:before +{ + content: "\ed36"; +} + +.icofont-facebook:before +{ + content: "\ed37"; +} + +.icofont-feedburner:before +{ + content: "\ed38"; +} + +.icofont-flikr:before +{ + content: "\ed39"; +} + +.icofont-folkd:before +{ + content: "\ed3a"; +} + +.icofont-foursquare:before +{ + content: "\ed3b"; +} + +.icofont-friendfeed:before +{ + content: "\ed3c"; +} + +.icofont-ghost:before +{ + content: "\ed3d"; +} + +.icofont-github:before +{ + content: "\ed3e"; +} + +.icofont-gnome:before +{ + content: "\ed3f"; +} + +.icofont-google-buzz:before +{ + content: "\ed40"; +} + +.icofont-google-hangouts:before +{ + content: "\ed41"; +} + +.icofont-google-map:before +{ + content: "\ed42"; +} + +.icofont-google-plus:before +{ + content: "\ed43"; +} + +.icofont-google-talk:before +{ + content: "\ed44"; +} + +.icofont-hype-machine:before +{ + content: "\ed45"; +} + +.icofont-instagram:before +{ + content: "\ed46"; +} + +.icofont-kakaotalk:before +{ + content: "\ed47"; +} + +.icofont-kickstarter:before +{ + content: "\ed48"; +} + +.icofont-kik:before +{ + content: "\ed49"; +} + +.icofont-kiwibox:before +{ + content: "\ed4a"; +} + +.icofont-line-messenger:before +{ + content: "\ed4b"; +} + +.icofont-line:before +{ + content: "\ed4c"; +} + +.icofont-linkedin:before +{ + content: "\ed4d"; +} + +.icofont-linux-mint:before +{ + content: "\ed4e"; +} + +.icofont-live-messenger:before +{ + content: "\ed4f"; +} + +.icofont-livejournal:before +{ + content: "\ed50"; +} + +.icofont-magento:before +{ + content: "\ed51"; +} + +.icofont-meetme:before +{ + content: "\ed52"; +} + +.icofont-meetup:before +{ + content: "\ed53"; +} + +.icofont-mixx:before +{ + content: "\ed54"; +} + +.icofont-newsvine:before +{ + content: "\ed55"; +} + +.icofont-nimbuss:before +{ + content: "\ed56"; +} + +.icofont-odnoklassniki:before +{ + content: "\ed57"; +} + +.icofont-opencart:before +{ + content: "\ed58"; +} + +.icofont-oscommerce:before +{ + content: "\ed59"; +} + +.icofont-pandora:before +{ + content: "\ed5a"; +} + +.icofont-photobucket:before +{ + content: "\ed5b"; +} + +.icofont-picasa:before +{ + content: "\ed5c"; +} + +.icofont-pinterest:before +{ + content: "\ed5d"; +} + +.icofont-prestashop:before +{ + content: "\ed5e"; +} + +.icofont-qik:before +{ + content: "\ed5f"; +} + +.icofont-qq:before +{ + content: "\ed60"; +} + +.icofont-readernaut:before +{ + content: "\ed61"; +} + +.icofont-reddit:before +{ + content: "\ed62"; +} + +.icofont-renren:before +{ + content: "\ed63"; +} + +.icofont-rss:before +{ + content: "\ed64"; +} + +.icofont-shopify:before +{ + content: "\ed65"; +} + +.icofont-silverstripe:before +{ + content: "\ed66"; +} + +.icofont-skype:before +{ + content: "\ed67"; +} + +.icofont-slack:before +{ + content: "\ed68"; +} + +.icofont-slashdot:before +{ + content: "\ed69"; +} + +.icofont-slidshare:before +{ + content: "\ed6a"; +} + +.icofont-smugmug:before +{ + content: "\ed6b"; +} + +.icofont-snapchat:before +{ + content: "\ed6c"; +} + +.icofont-soundcloud:before +{ + content: "\ed6d"; +} + +.icofont-spotify:before +{ + content: "\ed6e"; +} + +.icofont-stack-exchange:before +{ + content: "\ed6f"; +} + +.icofont-stack-overflow:before +{ + content: "\ed70"; +} + +.icofont-steam:before +{ + content: "\ed71"; +} + +.icofont-stumbleupon:before +{ + content: "\ed72"; +} + +.icofont-tagged:before +{ + content: "\ed73"; +} + +.icofont-technorati:before +{ + content: "\ed74"; +} + +.icofont-telegram:before +{ + content: "\ed75"; +} + +.icofont-tinder:before +{ + content: "\ed76"; +} + +.icofont-trello:before +{ + content: "\ed77"; +} + +.icofont-tumblr:before +{ + content: "\ed78"; +} + +.icofont-twitch:before +{ + content: "\ed79"; +} + +.icofont-twitter:before +{ + content: "\ed7a"; +} + +.icofont-typo3:before +{ + content: "\ed7b"; +} + +.icofont-ubercart:before +{ + content: "\ed7c"; +} + +.icofont-viber:before +{ + content: "\ed7d"; +} + +.icofont-viddler:before +{ + content: "\ed7e"; +} + +.icofont-vimeo:before +{ + content: "\ed7f"; +} + +.icofont-vine:before +{ + content: "\ed80"; +} + +.icofont-virb:before +{ + content: "\ed81"; +} + +.icofont-virtuemart:before +{ + content: "\ed82"; +} + +.icofont-vk:before +{ + content: "\ed83"; +} + +.icofont-wechat:before +{ + content: "\ed84"; +} + +.icofont-weibo:before +{ + content: "\ed85"; +} + +.icofont-whatsapp:before +{ + content: "\ed86"; +} + +.icofont-xing:before +{ + content: "\ed87"; +} + +.icofont-yahoo:before +{ + content: "\ed88"; +} + +.icofont-yelp:before +{ + content: "\ed89"; +} + +.icofont-youku:before +{ + content: "\ed8a"; +} + +.icofont-youtube:before +{ + content: "\ed8b"; +} + +.icofont-zencart:before +{ + content: "\ed8c"; +} + +.icofont-badminton-birdie:before +{ + content: "\ed8d"; +} + +.icofont-baseball:before +{ + content: "\ed8e"; +} + +.icofont-baseballer:before +{ + content: "\ed8f"; +} + +.icofont-basketball-hoop:before +{ + content: "\ed90"; +} + +.icofont-basketball:before +{ + content: "\ed91"; +} + +.icofont-billiard-ball:before +{ + content: "\ed92"; +} + +.icofont-boot-alt-1:before +{ + content: "\ed93"; +} + +.icofont-boot-alt-2:before +{ + content: "\ed94"; +} + +.icofont-boot:before +{ + content: "\ed95"; +} + +.icofont-bowling-alt:before +{ + content: "\ed96"; +} + +.icofont-bowling:before +{ + content: "\ed97"; +} + +.icofont-canoe:before +{ + content: "\ed98"; +} + +.icofont-cheer-leader:before +{ + content: "\ed99"; +} + +.icofont-climbing:before +{ + content: "\ed9a"; +} + +.icofont-corner:before +{ + content: "\ed9b"; +} + +.icofont-field-alt:before +{ + content: "\ed9c"; +} + +.icofont-field:before +{ + content: "\ed9d"; +} + +.icofont-football-alt:before +{ + content: "\ed9e"; +} + +.icofont-football-american:before +{ + content: "\ed9f"; +} + +.icofont-football:before +{ + content: "\eda0"; +} + +.icofont-foul:before +{ + content: "\eda1"; +} + +.icofont-goal-keeper:before +{ + content: "\eda2"; +} + +.icofont-goal:before +{ + content: "\eda3"; +} + +.icofont-golf-alt:before +{ + content: "\eda4"; +} + +.icofont-golf-bag:before +{ + content: "\eda5"; +} + +.icofont-golf-cart:before +{ + content: "\eda6"; +} + +.icofont-golf-field:before +{ + content: "\eda7"; +} + +.icofont-golf:before +{ + content: "\eda8"; +} + +.icofont-golfer:before +{ + content: "\eda9"; +} + +.icofont-helmet:before +{ + content: "\edaa"; +} + +.icofont-hockey-alt:before +{ + content: "\edab"; +} + +.icofont-hockey:before +{ + content: "\edac"; +} + +.icofont-ice-skate:before +{ + content: "\edad"; +} + +.icofont-jersey-alt:before +{ + content: "\edae"; +} + +.icofont-jersey:before +{ + content: "\edaf"; +} + +.icofont-jumping:before +{ + content: "\edb0"; +} + +.icofont-kick:before +{ + content: "\edb1"; +} + +.icofont-leg:before +{ + content: "\edb2"; +} + +.icofont-match-review:before +{ + content: "\edb3"; +} + +.icofont-medal-sport:before +{ + content: "\edb4"; +} + +.icofont-offside:before +{ + content: "\edb5"; +} + +.icofont-olympic-logo:before +{ + content: "\edb6"; +} + +.icofont-olympic:before +{ + content: "\edb7"; +} + +.icofont-padding:before +{ + content: "\edb8"; +} + +.icofont-penalty-card:before +{ + content: "\edb9"; +} + +.icofont-racer:before +{ + content: "\edba"; +} + +.icofont-racing-car:before +{ + content: "\edbb"; +} + +.icofont-racing-flag-alt:before +{ + content: "\edbc"; +} + +.icofont-racing-flag:before +{ + content: "\edbd"; +} + +.icofont-racings-wheel:before +{ + content: "\edbe"; +} + +.icofont-referee:before +{ + content: "\edbf"; +} + +.icofont-refree-jersey:before +{ + content: "\edc0"; +} + +.icofont-result-sport:before +{ + content: "\edc1"; +} + +.icofont-rugby-ball:before +{ + content: "\edc2"; +} + +.icofont-rugby-player:before +{ + content: "\edc3"; +} + +.icofont-rugby:before +{ + content: "\edc4"; +} + +.icofont-runner-alt-1:before +{ + content: "\edc5"; +} + +.icofont-runner-alt-2:before +{ + content: "\edc6"; +} + +.icofont-runner:before +{ + content: "\edc7"; +} + +.icofont-score-board:before +{ + content: "\edc8"; +} + +.icofont-skiing-man:before +{ + content: "\edc9"; +} + +.icofont-skydiving-goggles:before +{ + content: "\edca"; +} + +.icofont-snow-mobile:before +{ + content: "\edcb"; +} + +.icofont-steering:before +{ + content: "\edcc"; +} + +.icofont-stopwatch:before +{ + content: "\edcd"; +} + +.icofont-substitute:before +{ + content: "\edce"; +} + +.icofont-swimmer:before +{ + content: "\edcf"; +} + +.icofont-table-tennis:before +{ + content: "\edd0"; +} + +.icofont-team-alt:before +{ + content: "\edd1"; +} + +.icofont-team:before +{ + content: "\edd2"; +} + +.icofont-tennis-player:before +{ + content: "\edd3"; +} + +.icofont-tennis:before +{ + content: "\edd4"; +} + +.icofont-tracking:before +{ + content: "\edd5"; +} + +.icofont-trophy-alt:before +{ + content: "\edd6"; +} + +.icofont-trophy:before +{ + content: "\edd7"; +} + +.icofont-volleyball-alt:before +{ + content: "\edd8"; +} + +.icofont-volleyball-fire:before +{ + content: "\edd9"; +} + +.icofont-volleyball:before +{ + content: "\edda"; +} + +.icofont-water-bottle:before +{ + content: "\eddb"; +} + +.icofont-whistle-alt:before +{ + content: "\eddc"; +} + +.icofont-whistle:before +{ + content: "\eddd"; +} + +.icofont-win-trophy:before +{ + content: "\edde"; +} + +.icofont-align-center:before +{ + content: "\eddf"; +} + +.icofont-align-left:before +{ + content: "\ede0"; +} + +.icofont-align-right:before +{ + content: "\ede1"; +} + +.icofont-all-caps:before +{ + content: "\ede2"; +} + +.icofont-bold:before +{ + content: "\ede3"; +} + +.icofont-brush:before +{ + content: "\ede4"; +} + +.icofont-clip-board:before +{ + content: "\ede5"; +} + +.icofont-code-alt:before +{ + content: "\ede6"; +} + +.icofont-color-bucket:before +{ + content: "\ede7"; +} + +.icofont-color-picker:before +{ + content: "\ede8"; +} + +.icofont-copy-invert:before +{ + content: "\ede9"; +} + +.icofont-copy:before +{ + content: "\edea"; +} + +.icofont-cut:before +{ + content: "\edeb"; +} + +.icofont-delete-alt:before +{ + content: "\edec"; +} + +.icofont-edit-alt:before +{ + content: "\eded"; +} + +.icofont-eraser-alt:before +{ + content: "\edee"; +} + +.icofont-font:before +{ + content: "\edef"; +} + +.icofont-heading:before +{ + content: "\edf0"; +} + +.icofont-indent:before +{ + content: "\edf1"; +} + +.icofont-italic-alt:before +{ + content: "\edf2"; +} + +.icofont-italic:before +{ + content: "\edf3"; +} + +.icofont-justify-all:before +{ + content: "\edf4"; +} + +.icofont-justify-center:before +{ + content: "\edf5"; +} + +.icofont-justify-left:before +{ + content: "\edf6"; +} + +.icofont-justify-right:before +{ + content: "\edf7"; +} + +.icofont-link-broken:before +{ + content: "\edf8"; +} + +.icofont-outdent:before +{ + content: "\edf9"; +} + +.icofont-paper-clip:before +{ + content: "\edfa"; +} + +.icofont-paragraph:before +{ + content: "\edfb"; +} + +.icofont-pin:before +{ + content: "\edfc"; +} + +.icofont-printer:before +{ + content: "\edfd"; +} + +.icofont-redo:before +{ + content: "\edfe"; +} + +.icofont-rotation:before +{ + content: "\edff"; +} + +.icofont-save:before +{ + content: "\ee00"; +} + +.icofont-small-cap:before +{ + content: "\ee01"; +} + +.icofont-strike-through:before +{ + content: "\ee02"; +} + +.icofont-sub-listing:before +{ + content: "\ee03"; +} + +.icofont-subscript:before +{ + content: "\ee04"; +} + +.icofont-superscript:before +{ + content: "\ee05"; +} + +.icofont-table:before +{ + content: "\ee06"; +} + +.icofont-text-height:before +{ + content: "\ee07"; +} + +.icofont-text-width:before +{ + content: "\ee08"; +} + +.icofont-trash:before +{ + content: "\ee09"; +} + +.icofont-underline:before +{ + content: "\ee0a"; +} + +.icofont-undo:before +{ + content: "\ee0b"; +} + +.icofont-air-balloon:before +{ + content: "\ee0c"; +} + +.icofont-airplane-alt:before +{ + content: "\ee0d"; +} + +.icofont-airplane:before +{ + content: "\ee0e"; +} + +.icofont-articulated-truck:before +{ + content: "\ee0f"; +} + +.icofont-auto-mobile:before +{ + content: "\ee10"; +} + +.icofont-auto-rickshaw:before +{ + content: "\ee11"; +} + +.icofont-bicycle-alt-1:before +{ + content: "\ee12"; +} + +.icofont-bicycle-alt-2:before +{ + content: "\ee13"; +} + +.icofont-bicycle:before +{ + content: "\ee14"; +} + +.icofont-bus-alt-1:before +{ + content: "\ee15"; +} + +.icofont-bus-alt-2:before +{ + content: "\ee16"; +} + +.icofont-bus-alt-3:before +{ + content: "\ee17"; +} + +.icofont-bus:before +{ + content: "\ee18"; +} + +.icofont-cab:before +{ + content: "\ee19"; +} + +.icofont-cable-car:before +{ + content: "\ee1a"; +} + +.icofont-car-alt-1:before +{ + content: "\ee1b"; +} + +.icofont-car-alt-2:before +{ + content: "\ee1c"; +} + +.icofont-car-alt-3:before +{ + content: "\ee1d"; +} + +.icofont-car-alt-4:before +{ + content: "\ee1e"; +} + +.icofont-car:before +{ + content: "\ee1f"; +} + +.icofont-delivery-time:before +{ + content: "\ee20"; +} + +.icofont-fast-delivery:before +{ + content: "\ee21"; +} + +.icofont-fire-truck-alt:before +{ + content: "\ee22"; +} + +.icofont-fire-truck:before +{ + content: "\ee23"; +} + +.icofont-free-delivery:before +{ + content: "\ee24"; +} + +.icofont-helicopter:before +{ + content: "\ee25"; +} + +.icofont-motor-bike-alt:before +{ + content: "\ee26"; +} + +.icofont-motor-bike:before +{ + content: "\ee27"; +} + +.icofont-motor-biker:before +{ + content: "\ee28"; +} + +.icofont-oil-truck:before +{ + content: "\ee29"; +} + +.icofont-rickshaw:before +{ + content: "\ee2a"; +} + +.icofont-rocket-alt-1:before +{ + content: "\ee2b"; +} + +.icofont-rocket-alt-2:before +{ + content: "\ee2c"; +} + +.icofont-rocket:before +{ + content: "\ee2d"; +} + +.icofont-sail-boat-alt-1:before +{ + content: "\ee2e"; +} + +.icofont-sail-boat-alt-2:before +{ + content: "\ee2f"; +} + +.icofont-sail-boat:before +{ + content: "\ee30"; +} + +.icofont-scooter:before +{ + content: "\ee31"; +} + +.icofont-sea-plane:before +{ + content: "\ee32"; +} + +.icofont-ship-alt:before +{ + content: "\ee33"; +} + +.icofont-ship:before +{ + content: "\ee34"; +} + +.icofont-speed-boat:before +{ + content: "\ee35"; +} + +.icofont-taxi:before +{ + content: "\ee36"; +} + +.icofont-tractor:before +{ + content: "\ee37"; +} + +.icofont-train-line:before +{ + content: "\ee38"; +} + +.icofont-train-steam:before +{ + content: "\ee39"; +} + +.icofont-tram:before +{ + content: "\ee3a"; +} + +.icofont-truck-alt:before +{ + content: "\ee3b"; +} + +.icofont-truck-loaded:before +{ + content: "\ee3c"; +} + +.icofont-truck:before +{ + content: "\ee3d"; +} + +.icofont-van-alt:before +{ + content: "\ee3e"; +} + +.icofont-van:before +{ + content: "\ee3f"; +} + +.icofont-yacht:before +{ + content: "\ee40"; +} + +.icofont-5-star-hotel:before +{ + content: "\ee41"; +} + +.icofont-air-ticket:before +{ + content: "\ee42"; +} + +.icofont-beach-bed:before +{ + content: "\ee43"; +} + +.icofont-beach:before +{ + content: "\ee44"; +} + +.icofont-camping-vest:before +{ + content: "\ee45"; +} + +.icofont-direction-sign:before +{ + content: "\ee46"; +} + +.icofont-hill-side:before +{ + content: "\ee47"; +} + +.icofont-hill:before +{ + content: "\ee48"; +} + +.icofont-hotel:before +{ + content: "\ee49"; +} + +.icofont-island-alt:before +{ + content: "\ee4a"; +} + +.icofont-island:before +{ + content: "\ee4b"; +} + +.icofont-sandals-female:before +{ + content: "\ee4c"; +} + +.icofont-sandals-male:before +{ + content: "\ee4d"; +} + +.icofont-travelling:before +{ + content: "\ee4e"; +} + +.icofont-breakdown:before +{ + content: "\ee4f"; +} + +.icofont-celsius:before +{ + content: "\ee50"; +} + +.icofont-clouds:before +{ + content: "\ee51"; +} + +.icofont-cloudy:before +{ + content: "\ee52"; +} + +.icofont-dust:before +{ + content: "\ee53"; +} + +.icofont-eclipse:before +{ + content: "\ee54"; +} + +.icofont-fahrenheit:before +{ + content: "\ee55"; +} + +.icofont-forest-fire:before +{ + content: "\ee56"; +} + +.icofont-full-night:before +{ + content: "\ee57"; +} + +.icofont-full-sunny:before +{ + content: "\ee58"; +} + +.icofont-hail-night:before +{ + content: "\ee59"; +} + +.icofont-hail-rainy-night:before +{ + content: "\ee5a"; +} + +.icofont-hail-rainy-sunny:before +{ + content: "\ee5b"; +} + +.icofont-hail-rainy:before +{ + content: "\ee5c"; +} + +.icofont-hail-sunny:before +{ + content: "\ee5d"; +} + +.icofont-hail-thunder-night:before +{ + content: "\ee5e"; +} + +.icofont-hail-thunder-sunny:before +{ + content: "\ee5f"; +} + +.icofont-hail-thunder:before +{ + content: "\ee60"; +} + +.icofont-hail:before +{ + content: "\ee61"; +} + +.icofont-hill-night:before +{ + content: "\ee62"; +} + +.icofont-hill-sunny:before +{ + content: "\ee63"; +} + +.icofont-hurricane:before +{ + content: "\ee64"; +} + +.icofont-meteor:before +{ + content: "\ee65"; +} + +.icofont-night:before +{ + content: "\ee66"; +} + +.icofont-rainy-night:before +{ + content: "\ee67"; +} + +.icofont-rainy-sunny:before +{ + content: "\ee68"; +} + +.icofont-rainy-thunder:before +{ + content: "\ee69"; +} + +.icofont-rainy:before +{ + content: "\ee6a"; +} + +.icofont-snow-alt:before +{ + content: "\ee6b"; +} + +.icofont-snow-flake:before +{ + content: "\ee6c"; +} + +.icofont-snow-temp:before +{ + content: "\ee6d"; +} + +.icofont-snow:before +{ + content: "\ee6e"; +} + +.icofont-snowy-hail:before +{ + content: "\ee6f"; +} + +.icofont-snowy-night-hail:before +{ + content: "\ee70"; +} + +.icofont-snowy-night-rainy:before +{ + content: "\ee71"; +} + +.icofont-snowy-night:before +{ + content: "\ee72"; +} + +.icofont-snowy-rainy:before +{ + content: "\ee73"; +} + +.icofont-snowy-sunny-hail:before +{ + content: "\ee74"; +} + +.icofont-snowy-sunny-rainy:before +{ + content: "\ee75"; +} + +.icofont-snowy-sunny:before +{ + content: "\ee76"; +} + +.icofont-snowy-thunder-night:before +{ + content: "\ee77"; +} + +.icofont-snowy-thunder-sunny:before +{ + content: "\ee78"; +} + +.icofont-snowy-thunder:before +{ + content: "\ee79"; +} + +.icofont-snowy-windy-night:before +{ + content: "\ee7a"; +} + +.icofont-snowy-windy-sunny:before +{ + content: "\ee7b"; +} + +.icofont-snowy-windy:before +{ + content: "\ee7c"; +} + +.icofont-snowy:before +{ + content: "\ee7d"; +} + +.icofont-sun-alt:before +{ + content: "\ee7e"; +} + +.icofont-sun-rise:before +{ + content: "\ee7f"; +} + +.icofont-sun-set:before +{ + content: "\ee80"; +} + +.icofont-sun:before +{ + content: "\ee81"; +} + +.icofont-sunny-day-temp:before +{ + content: "\ee82"; +} + +.icofont-sunny:before +{ + content: "\ee83"; +} + +.icofont-thunder-light:before +{ + content: "\ee84"; +} + +.icofont-tornado:before +{ + content: "\ee85"; +} + +.icofont-umbrella-alt:before +{ + content: "\ee86"; +} + +.icofont-umbrella:before +{ + content: "\ee87"; +} + +.icofont-volcano:before +{ + content: "\ee88"; +} + +.icofont-wave:before +{ + content: "\ee89"; +} + +.icofont-wind-scale-0:before +{ + content: "\ee8a"; +} + +.icofont-wind-scale-1:before +{ + content: "\ee8b"; +} + +.icofont-wind-scale-10:before +{ + content: "\ee8c"; +} + +.icofont-wind-scale-11:before +{ + content: "\ee8d"; +} + +.icofont-wind-scale-12:before +{ + content: "\ee8e"; +} + +.icofont-wind-scale-2:before +{ + content: "\ee8f"; +} + +.icofont-wind-scale-3:before +{ + content: "\ee90"; +} + +.icofont-wind-scale-4:before +{ + content: "\ee91"; +} + +.icofont-wind-scale-5:before +{ + content: "\ee92"; +} + +.icofont-wind-scale-6:before +{ + content: "\ee93"; +} + +.icofont-wind-scale-7:before +{ + content: "\ee94"; +} + +.icofont-wind-scale-8:before +{ + content: "\ee95"; +} + +.icofont-wind-scale-9:before +{ + content: "\ee96"; +} + +.icofont-wind-waves:before +{ + content: "\ee97"; +} + +.icofont-wind:before +{ + content: "\ee98"; +} + +.icofont-windy-hail:before +{ + content: "\ee99"; +} + +.icofont-windy-night:before +{ + content: "\ee9a"; +} + +.icofont-windy-raining:before +{ + content: "\ee9b"; +} + +.icofont-windy-sunny:before +{ + content: "\ee9c"; +} + +.icofont-windy-thunder-raining:before +{ + content: "\ee9d"; +} + +.icofont-windy-thunder:before +{ + content: "\ee9e"; +} + +.icofont-windy:before +{ + content: "\ee9f"; +} + +.icofont-addons:before +{ + content: "\eea0"; +} + +.icofont-address-book:before +{ + content: "\eea1"; +} + +.icofont-adjust:before +{ + content: "\eea2"; +} + +.icofont-alarm:before +{ + content: "\eea3"; +} + +.icofont-anchor:before +{ + content: "\eea4"; +} + +.icofont-archive:before +{ + content: "\eea5"; +} + +.icofont-at:before +{ + content: "\eea6"; +} + +.icofont-attachment:before +{ + content: "\eea7"; +} + +.icofont-audio:before +{ + content: "\eea8"; +} + +.icofont-automation:before +{ + content: "\eea9"; +} + +.icofont-badge:before +{ + content: "\eeaa"; +} + +.icofont-bag-alt:before +{ + content: "\eeab"; +} + +.icofont-bag:before +{ + content: "\eeac"; +} + +.icofont-ban:before +{ + content: "\eead"; +} + +.icofont-bar-code:before +{ + content: "\eeae"; +} + +.icofont-bars:before +{ + content: "\eeaf"; +} + +.icofont-basket:before +{ + content: "\eeb0"; +} + +.icofont-battery-empty:before +{ + content: "\eeb1"; +} + +.icofont-battery-full:before +{ + content: "\eeb2"; +} + +.icofont-battery-half:before +{ + content: "\eeb3"; +} + +.icofont-battery-low:before +{ + content: "\eeb4"; +} + +.icofont-beaker:before +{ + content: "\eeb5"; +} + +.icofont-beard:before +{ + content: "\eeb6"; +} + +.icofont-bed:before +{ + content: "\eeb7"; +} + +.icofont-bell:before +{ + content: "\eeb8"; +} + +.icofont-beverage:before +{ + content: "\eeb9"; +} + +.icofont-bill:before +{ + content: "\eeba"; +} + +.icofont-bin:before +{ + content: "\eebb"; +} + +.icofont-binary:before +{ + content: "\eebc"; +} + +.icofont-binoculars:before +{ + content: "\eebd"; +} + +.icofont-bluetooth:before +{ + content: "\eebe"; +} + +.icofont-bomb:before +{ + content: "\eebf"; +} + +.icofont-book-mark:before +{ + content: "\eec0"; +} + +.icofont-box:before +{ + content: "\eec1"; +} + +.icofont-briefcase:before +{ + content: "\eec2"; +} + +.icofont-broken:before +{ + content: "\eec3"; +} + +.icofont-bucket:before +{ + content: "\eec4"; +} + +.icofont-bucket1:before +{ + content: "\eec5"; +} + +.icofont-bucket2:before +{ + content: "\eec6"; +} + +.icofont-bug:before +{ + content: "\eec7"; +} + +.icofont-building:before +{ + content: "\eec8"; +} + +.icofont-bulb-alt:before +{ + content: "\eec9"; +} + +.icofont-bullet:before +{ + content: "\eeca"; +} + +.icofont-bullhorn:before +{ + content: "\eecb"; +} + +.icofont-bullseye:before +{ + content: "\eecc"; +} + +.icofont-calendar:before +{ + content: "\eecd"; +} + +.icofont-camera-alt:before +{ + content: "\eece"; +} + +.icofont-camera:before +{ + content: "\eecf"; +} + +.icofont-card:before +{ + content: "\eed0"; +} + +.icofont-cart-alt:before +{ + content: "\eed1"; +} + +.icofont-cart:before +{ + content: "\eed2"; +} + +.icofont-cc:before +{ + content: "\eed3"; +} + +.icofont-charging:before +{ + content: "\eed4"; +} + +.icofont-chat:before +{ + content: "\eed5"; +} + +.icofont-check-alt:before +{ + content: "\eed6"; +} + +.icofont-check-circled:before +{ + content: "\eed7"; +} + +.icofont-check:before +{ + content: "\eed8"; +} + +.icofont-checked:before +{ + content: "\eed9"; +} + +.icofont-children-care:before +{ + content: "\eeda"; +} + +.icofont-clip:before +{ + content: "\eedb"; +} + +.icofont-clock-time:before +{ + content: "\eedc"; +} + +.icofont-close-circled:before +{ + content: "\eedd"; +} + +.icofont-close-line-circled:before +{ + content: "\eede"; +} + +.icofont-close-line-squared-alt:before +{ + content: "\eedf"; +} + +.icofont-close-line-squared:before +{ + content: "\eee0"; +} + +.icofont-close-line:before +{ + content: "\eee1"; +} + +.icofont-close-squared-alt:before +{ + content: "\eee2"; +} + +.icofont-close-squared:before +{ + content: "\eee3"; +} + +.icofont-close:before +{ + content: "\eee4"; +} + +.icofont-cloud-download:before +{ + content: "\eee5"; +} + +.icofont-cloud-refresh:before +{ + content: "\eee6"; +} + +.icofont-cloud-upload:before +{ + content: "\eee7"; +} + +.icofont-cloud:before +{ + content: "\eee8"; +} + +.icofont-code-not-allowed:before +{ + content: "\eee9"; +} + +.icofont-code:before +{ + content: "\eeea"; +} + +.icofont-comment:before +{ + content: "\eeeb"; +} + +.icofont-compass-alt:before +{ + content: "\eeec"; +} + +.icofont-compass:before +{ + content: "\eeed"; +} + +.icofont-computer:before +{ + content: "\eeee"; +} + +.icofont-connection:before +{ + content: "\eeef"; +} + +.icofont-console:before +{ + content: "\eef0"; +} + +.icofont-contacts:before +{ + content: "\eef1"; +} + +.icofont-contrast:before +{ + content: "\eef2"; +} + +.icofont-copyright:before +{ + content: "\eef3"; +} + +.icofont-credit-card:before +{ + content: "\eef4"; +} + +.icofont-crop:before +{ + content: "\eef5"; +} + +.icofont-crown:before +{ + content: "\eef6"; +} + +.icofont-cube:before +{ + content: "\eef7"; +} + +.icofont-cubes:before +{ + content: "\eef8"; +} + +.icofont-dashboard-web:before +{ + content: "\eef9"; +} + +.icofont-dashboard:before +{ + content: "\eefa"; +} + +.icofont-data:before +{ + content: "\eefb"; +} + +.icofont-database-add:before +{ + content: "\eefc"; +} + +.icofont-database-locked:before +{ + content: "\eefd"; +} + +.icofont-database-remove:before +{ + content: "\eefe"; +} + +.icofont-database:before +{ + content: "\eeff"; +} + +.icofont-delete:before +{ + content: "\ef00"; +} + +.icofont-diamond:before +{ + content: "\ef01"; +} + +.icofont-dice-multiple:before +{ + content: "\ef02"; +} + +.icofont-dice:before +{ + content: "\ef03"; +} + +.icofont-disc:before +{ + content: "\ef04"; +} + +.icofont-diskette:before +{ + content: "\ef05"; +} + +.icofont-document-folder:before +{ + content: "\ef06"; +} + +.icofont-download-alt:before +{ + content: "\ef07"; +} + +.icofont-download:before +{ + content: "\ef08"; +} + +.icofont-downloaded:before +{ + content: "\ef09"; +} + +.icofont-drag:before +{ + content: "\ef0a"; +} + +.icofont-drag1:before +{ + content: "\ef0b"; +} + +.icofont-drag2:before +{ + content: "\ef0c"; +} + +.icofont-drag3:before +{ + content: "\ef0d"; +} + +.icofont-earth:before +{ + content: "\ef0e"; +} + +.icofont-ebook:before +{ + content: "\ef0f"; +} + +.icofont-edit:before +{ + content: "\ef10"; +} + +.icofont-eject:before +{ + content: "\ef11"; +} + +.icofont-email:before +{ + content: "\ef12"; +} + +.icofont-envelope-open:before +{ + content: "\ef13"; +} + +.icofont-envelope:before +{ + content: "\ef14"; +} + +.icofont-eraser:before +{ + content: "\ef15"; +} + +.icofont-error:before +{ + content: "\ef16"; +} + +.icofont-excavator:before +{ + content: "\ef17"; +} + +.icofont-exchange:before +{ + content: "\ef18"; +} + +.icofont-exclamation-circle:before +{ + content: "\ef19"; +} + +.icofont-exclamation-square:before +{ + content: "\ef1a"; +} + +.icofont-exclamation-tringle:before +{ + content: "\ef1b"; +} + +.icofont-exclamation:before +{ + content: "\ef1c"; +} + +.icofont-exit:before +{ + content: "\ef1d"; +} + +.icofont-expand:before +{ + content: "\ef1e"; +} + +.icofont-external-link:before +{ + content: "\ef1f"; +} + +.icofont-external:before +{ + content: "\ef20"; +} + +.icofont-eye-alt:before +{ + content: "\ef21"; +} + +.icofont-eye-blocked:before +{ + content: "\ef22"; +} + +.icofont-eye-dropper:before +{ + content: "\ef23"; +} + +.icofont-eye:before +{ + content: "\ef24"; +} + +.icofont-favourite:before +{ + content: "\ef25"; +} + +.icofont-fax:before +{ + content: "\ef26"; +} + +.icofont-file-fill:before +{ + content: "\ef27"; +} + +.icofont-film:before +{ + content: "\ef28"; +} + +.icofont-filter:before +{ + content: "\ef29"; +} + +.icofont-fire-alt:before +{ + content: "\ef2a"; +} + +.icofont-fire-burn:before +{ + content: "\ef2b"; +} + +.icofont-fire:before +{ + content: "\ef2c"; +} + +.icofont-flag-alt-1:before +{ + content: "\ef2d"; +} + +.icofont-flag-alt-2:before +{ + content: "\ef2e"; +} + +.icofont-flag:before +{ + content: "\ef2f"; +} + +.icofont-flame-torch:before +{ + content: "\ef30"; +} + +.icofont-flash-light:before +{ + content: "\ef31"; +} + +.icofont-flash:before +{ + content: "\ef32"; +} + +.icofont-flask:before +{ + content: "\ef33"; +} + +.icofont-focus:before +{ + content: "\ef34"; +} + +.icofont-folder-open:before +{ + content: "\ef35"; +} + +.icofont-folder:before +{ + content: "\ef36"; +} + +.icofont-foot-print:before +{ + content: "\ef37"; +} + +.icofont-garbage:before +{ + content: "\ef38"; +} + +.icofont-gear-alt:before +{ + content: "\ef39"; +} + +.icofont-gear:before +{ + content: "\ef3a"; +} + +.icofont-gears:before +{ + content: "\ef3b"; +} + +.icofont-gift:before +{ + content: "\ef3c"; +} + +.icofont-glass:before +{ + content: "\ef3d"; +} + +.icofont-globe:before +{ + content: "\ef3e"; +} + +.icofont-graffiti:before +{ + content: "\ef3f"; +} + +.icofont-grocery:before +{ + content: "\ef40"; +} + +.icofont-hand:before +{ + content: "\ef41"; +} + +.icofont-hanger:before +{ + content: "\ef42"; +} + +.icofont-hard-disk:before +{ + content: "\ef43"; +} + +.icofont-heart-alt:before +{ + content: "\ef44"; +} + +.icofont-heart:before +{ + content: "\ef45"; +} + +.icofont-history:before +{ + content: "\ef46"; +} + +.icofont-home:before +{ + content: "\ef47"; +} + +.icofont-horn:before +{ + content: "\ef48"; +} + +.icofont-hour-glass:before +{ + content: "\ef49"; +} + +.icofont-id:before +{ + content: "\ef4a"; +} + +.icofont-image:before +{ + content: "\ef4b"; +} + +.icofont-inbox:before +{ + content: "\ef4c"; +} + +.icofont-infinite:before +{ + content: "\ef4d"; +} + +.icofont-info-circle:before +{ + content: "\ef4e"; +} + +.icofont-info-square:before +{ + content: "\ef4f"; +} + +.icofont-info:before +{ + content: "\ef50"; +} + +.icofont-institution:before +{ + content: "\ef51"; +} + +.icofont-interface:before +{ + content: "\ef52"; +} + +.icofont-invisible:before +{ + content: "\ef53"; +} + +.icofont-jacket:before +{ + content: "\ef54"; +} + +.icofont-jar:before +{ + content: "\ef55"; +} + +.icofont-jewlery:before +{ + content: "\ef56"; +} + +.icofont-karate:before +{ + content: "\ef57"; +} + +.icofont-key-hole:before +{ + content: "\ef58"; +} + +.icofont-key:before +{ + content: "\ef59"; +} + +.icofont-label:before +{ + content: "\ef5a"; +} + +.icofont-lamp:before +{ + content: "\ef5b"; +} + +.icofont-layers:before +{ + content: "\ef5c"; +} + +.icofont-layout:before +{ + content: "\ef5d"; +} + +.icofont-leaf:before +{ + content: "\ef5e"; +} + +.icofont-leaflet:before +{ + content: "\ef5f"; +} + +.icofont-learn:before +{ + content: "\ef60"; +} + +.icofont-lego:before +{ + content: "\ef61"; +} + +.icofont-lens:before +{ + content: "\ef62"; +} + +.icofont-letter:before +{ + content: "\ef63"; +} + +.icofont-letterbox:before +{ + content: "\ef64"; +} + +.icofont-library:before +{ + content: "\ef65"; +} + +.icofont-license:before +{ + content: "\ef66"; +} + +.icofont-life-bouy:before +{ + content: "\ef67"; +} + +.icofont-life-buoy:before +{ + content: "\ef68"; +} + +.icofont-life-jacket:before +{ + content: "\ef69"; +} + +.icofont-life-ring:before +{ + content: "\ef6a"; +} + +.icofont-light-bulb:before +{ + content: "\ef6b"; +} + +.icofont-lighter:before +{ + content: "\ef6c"; +} + +.icofont-lightning-ray:before +{ + content: "\ef6d"; +} + +.icofont-like:before +{ + content: "\ef6e"; +} + +.icofont-line-height:before +{ + content: "\ef6f"; +} + +.icofont-link-alt:before +{ + content: "\ef70"; +} + +.icofont-link:before +{ + content: "\ef71"; +} + +.icofont-list:before +{ + content: "\ef72"; +} + +.icofont-listening:before +{ + content: "\ef73"; +} + +.icofont-listine-dots:before +{ + content: "\ef74"; +} + +.icofont-listing-box:before +{ + content: "\ef75"; +} + +.icofont-listing-number:before +{ + content: "\ef76"; +} + +.icofont-live-support:before +{ + content: "\ef77"; +} + +.icofont-location-arrow:before +{ + content: "\ef78"; +} + +.icofont-location-pin:before +{ + content: "\ef79"; +} + +.icofont-lock:before +{ + content: "\ef7a"; +} + +.icofont-login:before +{ + content: "\ef7b"; +} + +.icofont-logout:before +{ + content: "\ef7c"; +} + +.icofont-lollipop:before +{ + content: "\ef7d"; +} + +.icofont-long-drive:before +{ + content: "\ef7e"; +} + +.icofont-look:before +{ + content: "\ef7f"; +} + +.icofont-loop:before +{ + content: "\ef80"; +} + +.icofont-luggage:before +{ + content: "\ef81"; +} + +.icofont-lunch:before +{ + content: "\ef82"; +} + +.icofont-lungs:before +{ + content: "\ef83"; +} + +.icofont-magic-alt:before +{ + content: "\ef84"; +} + +.icofont-magic:before +{ + content: "\ef85"; +} + +.icofont-magnet:before +{ + content: "\ef86"; +} + +.icofont-mail-box:before +{ + content: "\ef87"; +} + +.icofont-mail:before +{ + content: "\ef88"; +} + +.icofont-male:before +{ + content: "\ef89"; +} + +.icofont-map-pins:before +{ + content: "\ef8a"; +} + +.icofont-map:before +{ + content: "\ef8b"; +} + +.icofont-maximize:before +{ + content: "\ef8c"; +} + +.icofont-measure:before +{ + content: "\ef8d"; +} + +.icofont-medicine:before +{ + content: "\ef8e"; +} + +.icofont-mega-phone:before +{ + content: "\ef8f"; +} + +.icofont-megaphone-alt:before +{ + content: "\ef90"; +} + +.icofont-megaphone:before +{ + content: "\ef91"; +} + +.icofont-memorial:before +{ + content: "\ef92"; +} + +.icofont-memory-card:before +{ + content: "\ef93"; +} + +.icofont-mic-mute:before +{ + content: "\ef94"; +} + +.icofont-mic:before +{ + content: "\ef95"; +} + +.icofont-military:before +{ + content: "\ef96"; +} + +.icofont-mill:before +{ + content: "\ef97"; +} + +.icofont-minus-circle:before +{ + content: "\ef98"; +} + +.icofont-minus-square:before +{ + content: "\ef99"; +} + +.icofont-minus:before +{ + content: "\ef9a"; +} + +.icofont-mobile-phone:before +{ + content: "\ef9b"; +} + +.icofont-molecule:before +{ + content: "\ef9c"; +} + +.icofont-money:before +{ + content: "\ef9d"; +} + +.icofont-moon:before +{ + content: "\ef9e"; +} + +.icofont-mop:before +{ + content: "\ef9f"; +} + +.icofont-muffin:before +{ + content: "\efa0"; +} + +.icofont-mustache:before +{ + content: "\efa1"; +} + +.icofont-navigation-menu:before +{ + content: "\efa2"; +} + +.icofont-navigation:before +{ + content: "\efa3"; +} + +.icofont-network-tower:before +{ + content: "\efa4"; +} + +.icofont-network:before +{ + content: "\efa5"; +} + +.icofont-news:before +{ + content: "\efa6"; +} + +.icofont-newspaper:before +{ + content: "\efa7"; +} + +.icofont-no-smoking:before +{ + content: "\efa8"; +} + +.icofont-not-allowed:before +{ + content: "\efa9"; +} + +.icofont-notebook:before +{ + content: "\efaa"; +} + +.icofont-notepad:before +{ + content: "\efab"; +} + +.icofont-notification:before +{ + content: "\efac"; +} + +.icofont-numbered:before +{ + content: "\efad"; +} + +.icofont-opposite:before +{ + content: "\efae"; +} + +.icofont-optic:before +{ + content: "\efaf"; +} + +.icofont-options:before +{ + content: "\efb0"; +} + +.icofont-package:before +{ + content: "\efb1"; +} + +.icofont-page:before +{ + content: "\efb2"; +} + +.icofont-paint:before +{ + content: "\efb3"; +} + +.icofont-paper-plane:before +{ + content: "\efb4"; +} + +.icofont-paperclip:before +{ + content: "\efb5"; +} + +.icofont-papers:before +{ + content: "\efb6"; +} + +.icofont-pay:before +{ + content: "\efb7"; +} + +.icofont-penguin-linux:before +{ + content: "\efb8"; +} + +.icofont-pestle:before +{ + content: "\efb9"; +} + +.icofont-phone-circle:before +{ + content: "\efba"; +} + +.icofont-phone:before +{ + content: "\efbb"; +} + +.icofont-picture:before +{ + content: "\efbc"; +} + +.icofont-pine:before +{ + content: "\efbd"; +} + +.icofont-pixels:before +{ + content: "\efbe"; +} + +.icofont-plugin:before +{ + content: "\efbf"; +} + +.icofont-plus-circle:before +{ + content: "\efc0"; +} + +.icofont-plus-square:before +{ + content: "\efc1"; +} + +.icofont-plus:before +{ + content: "\efc2"; +} + +.icofont-polygonal:before +{ + content: "\efc3"; +} + +.icofont-power:before +{ + content: "\efc4"; +} + +.icofont-price:before +{ + content: "\efc5"; +} + +.icofont-print:before +{ + content: "\efc6"; +} + +.icofont-puzzle:before +{ + content: "\efc7"; +} + +.icofont-qr-code:before +{ + content: "\efc8"; +} + +.icofont-queen:before +{ + content: "\efc9"; +} + +.icofont-question-circle:before +{ + content: "\efca"; +} + +.icofont-question-square:before +{ + content: "\efcb"; +} + +.icofont-question:before +{ + content: "\efcc"; +} + +.icofont-quote-left:before +{ + content: "\efcd"; +} + +.icofont-quote-right:before +{ + content: "\efce"; +} + +.icofont-random:before +{ + content: "\efcf"; +} + +.icofont-recycle:before +{ + content: "\efd0"; +} + +.icofont-refresh:before +{ + content: "\efd1"; +} + +.icofont-repair:before +{ + content: "\efd2"; +} + +.icofont-reply-all:before +{ + content: "\efd3"; +} + +.icofont-reply:before +{ + content: "\efd4"; +} + +.icofont-resize:before +{ + content: "\efd5"; +} + +.icofont-responsive:before +{ + content: "\efd6"; +} + +.icofont-retweet:before +{ + content: "\efd7"; +} + +.icofont-road:before +{ + content: "\efd8"; +} + +.icofont-robot:before +{ + content: "\efd9"; +} + +.icofont-royal:before +{ + content: "\efda"; +} + +.icofont-rss-feed:before +{ + content: "\efdb"; +} + +.icofont-safety:before +{ + content: "\efdc"; +} + +.icofont-sale-discount:before +{ + content: "\efdd"; +} + +.icofont-satellite:before +{ + content: "\efde"; +} + +.icofont-send-mail:before +{ + content: "\efdf"; +} + +.icofont-server:before +{ + content: "\efe0"; +} + +.icofont-settings-alt:before +{ + content: "\efe1"; +} + +.icofont-settings:before +{ + content: "\efe2"; +} + +.icofont-share-alt:before +{ + content: "\efe3"; +} + +.icofont-share-boxed:before +{ + content: "\efe4"; +} + +.icofont-share:before +{ + content: "\efe5"; +} + +.icofont-shield:before +{ + content: "\efe6"; +} + +.icofont-shopping-cart:before +{ + content: "\efe7"; +} + +.icofont-sign-in:before +{ + content: "\efe8"; +} + +.icofont-sign-out:before +{ + content: "\efe9"; +} + +.icofont-signal:before +{ + content: "\efea"; +} + +.icofont-site-map:before +{ + content: "\efeb"; +} + +.icofont-smart-phone:before +{ + content: "\efec"; +} + +.icofont-soccer:before +{ + content: "\efed"; +} + +.icofont-sort-alt:before +{ + content: "\efee"; +} + +.icofont-sort:before +{ + content: "\efef"; +} + +.icofont-space:before +{ + content: "\eff0"; +} + +.icofont-spanner:before +{ + content: "\eff1"; +} + +.icofont-speech-comments:before +{ + content: "\eff2"; +} + +.icofont-speed-meter:before +{ + content: "\eff3"; +} + +.icofont-spinner-alt-1:before +{ + content: "\eff4"; +} + +.icofont-spinner-alt-2:before +{ + content: "\eff5"; +} + +.icofont-spinner-alt-3:before +{ + content: "\eff6"; +} + +.icofont-spinner-alt-4:before +{ + content: "\eff7"; +} + +.icofont-spinner-alt-5:before +{ + content: "\eff8"; +} + +.icofont-spinner-alt-6:before +{ + content: "\eff9"; +} + +.icofont-spinner:before +{ + content: "\effa"; +} + +.icofont-spreadsheet:before +{ + content: "\effb"; +} + +.icofont-square:before +{ + content: "\effc"; +} + +.icofont-ssl-security:before +{ + content: "\effd"; +} + +.icofont-star-alt-1:before +{ + content: "\effe"; +} + +.icofont-star-alt-2:before +{ + content: "\efff"; +} + +.icofont-star:before +{ + content: "\f000"; +} + +.icofont-street-view:before +{ + content: "\f001"; +} + +.icofont-support-faq:before +{ + content: "\f002"; +} + +.icofont-tack-pin:before +{ + content: "\f003"; +} + +.icofont-tag:before +{ + content: "\f004"; +} + +.icofont-tags:before +{ + content: "\f005"; +} + +.icofont-tasks-alt:before +{ + content: "\f006"; +} + +.icofont-tasks:before +{ + content: "\f007"; +} + +.icofont-telephone:before +{ + content: "\f008"; +} + +.icofont-telescope:before +{ + content: "\f009"; +} + +.icofont-terminal:before +{ + content: "\f00a"; +} + +.icofont-thumbs-down:before +{ + content: "\f00b"; +} + +.icofont-thumbs-up:before +{ + content: "\f00c"; +} + +.icofont-tick-boxed:before +{ + content: "\f00d"; +} + +.icofont-tick-mark:before +{ + content: "\f00e"; +} + +.icofont-ticket:before +{ + content: "\f00f"; +} + +.icofont-tie:before +{ + content: "\f010"; +} + +.icofont-toggle-off:before +{ + content: "\f011"; +} + +.icofont-toggle-on:before +{ + content: "\f012"; +} + +.icofont-tools-alt-2:before +{ + content: "\f013"; +} + +.icofont-tools:before +{ + content: "\f014"; +} + +.icofont-touch:before +{ + content: "\f015"; +} + +.icofont-traffic-light:before +{ + content: "\f016"; +} + +.icofont-transparent:before +{ + content: "\f017"; +} + +.icofont-tree:before +{ + content: "\f018"; +} + +.icofont-unique-idea:before +{ + content: "\f019"; +} + +.icofont-unlock:before +{ + content: "\f01a"; +} + +.icofont-unlocked:before +{ + content: "\f01b"; +} + +.icofont-upload-alt:before +{ + content: "\f01c"; +} + +.icofont-upload:before +{ + content: "\f01d"; +} + +.icofont-usb-drive:before +{ + content: "\f01e"; +} + +.icofont-usb:before +{ + content: "\f01f"; +} + +.icofont-vector-path:before +{ + content: "\f020"; +} + +.icofont-verification-check:before +{ + content: "\f021"; +} + +.icofont-wall-clock:before +{ + content: "\f022"; +} + +.icofont-wall:before +{ + content: "\f023"; +} + +.icofont-wallet:before +{ + content: "\f024"; +} + +.icofont-warning-alt:before +{ + content: "\f025"; +} + +.icofont-warning:before +{ + content: "\f026"; +} + +.icofont-water-drop:before +{ + content: "\f027"; +} + +.icofont-web:before +{ + content: "\f028"; +} + +.icofont-wheelchair:before +{ + content: "\f029"; +} + +.icofont-wifi-alt:before +{ + content: "\f02a"; +} + +.icofont-wifi:before +{ + content: "\f02b"; +} + +.icofont-world:before +{ + content: "\f02c"; +} + +.icofont-zigzag:before +{ + content: "\f02d"; +} + +.icofont-zipped:before +{ + content: "\f02e"; +} + +.icofont-xs +{ + font-size: .5em; +} + +.icofont-sm +{ + font-size: .75em; +} + +.icofont-md +{ + font-size: 1.25em; +} + +.icofont-lg +{ + font-size: 1.5em; +} + +.icofont-1x +{ + font-size: 1em; +} + +.icofont-2x +{ + font-size: 2em; +} + +.icofont-3x +{ + font-size: 3em; +} + +.icofont-4x +{ + font-size: 4em; +} + +.icofont-5x +{ + font-size: 5em; +} + +.icofont-6x +{ + font-size: 6em; +} + +.icofont-7x +{ + font-size: 7em; +} + +.icofont-8x +{ + font-size: 8em; +} + +.icofont-9x +{ + font-size: 9em; +} + +.icofont-10x +{ + font-size: 10em; +} + +.icofont-fw +{ + text-align: center; + width: 1.25em; +} + +.icofont-ul +{ + list-style-type: none; + padding-left: 0; + margin-left: 0; +} + +.icofont-ul > li +{ + position: relative; + line-height: 2em; +} + +.icofont-ul > li .icofont +{ + display: inline-block; + vertical-align: middle; +} + +.icofont-border +{ + border: solid 0.08em #f1f1f1; + border-radius: .1em; + padding: .2em .25em .15em; +} + +.icofont-pull-left +{ + float: left; +} + +.icofont-pull-right +{ + float: right; +} + +.icofont.icofont-pull-left +{ + margin-right: .3em; +} + +.icofont.icofont-pull-right +{ + margin-left: .3em; +} + +.icofont-spin +{ + -webkit-animation: icofont-spin 2s infinite linear; + animation: icofont-spin 2s infinite linear; + display: inline-block; +} + +.icofont-pulse +{ + -webkit-animation: icofont-spin 1s infinite steps(8); + animation: icofont-spin 1s infinite steps(8); + display: inline-block; +} + +@-webkit-keyframes icofont-spin +{ + 0% + { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + + 100% + { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes icofont-spin +{ + 0% + { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + + 100% + { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +.icofont-rotate-90 +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} + +.icofont-rotate-180 +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); +} + +.icofont-rotate-270 +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); +} + +.icofont-flip-horizontal +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +.icofont-flip-vertical +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); +} + +.icofont-flip-horizontal.icofont-flip-vertical +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); +} + +:root .icofont-rotate-90, + :root .icofont-rotate-180, + :root .icofont-rotate-270, + :root .icofont-flip-horizontal, + :root .icofont-flip-vertical +{ + -webkit-filter: none; + filter: none; + display: inline-block; +} + +.icofont-inverse +{ + color: #fff; +} + +.sr-only +{ + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +.sr-only-focusable:active, + .sr-only-focusable:focus +{ + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; +} + \ No newline at end of file diff --git a/hyperglass/static/icofont/icofont.min.css b/hyperglass/static/icofont/icofont.min.css new file mode 100644 index 0000000..2a075a5 --- /dev/null +++ b/hyperglass/static/icofont/icofont.min.css @@ -0,0 +1,7 @@ +/*! +* @package IcoFont +* @version 1.0.1 +* @author IcoFont https://icofont.com +* @copyright Copyright (c) 2015 - 2018 IcoFont +* @license - https://icofont.com/license/ +*/@font-face{font-family:IcoFont;font-weight:400;font-style:Regular;src:url(fonts/icofont.woff2) format("woff2"),url(fonts/icofont.woff) format("woff")}[class*=" icofont-"],[class^=icofont-]{font-family:IcoFont!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;line-height:1;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased}.icofont-angry-monster:before{content:"\e800"}.icofont-bathtub:before{content:"\e801"}.icofont-bird-wings:before{content:"\e802"}.icofont-bow:before{content:"\e803"}.icofont-castle:before{content:"\e804"}.icofont-circuit:before{content:"\e805"}.icofont-crown-king:before{content:"\e806"}.icofont-crown-queen:before{content:"\e807"}.icofont-dart:before{content:"\e808"}.icofont-disability-race:before{content:"\e809"}.icofont-diving-goggle:before{content:"\e80a"}.icofont-eye-open:before{content:"\e80b"}.icofont-flora-flower:before{content:"\e80c"}.icofont-flora:before{content:"\e80d"}.icofont-gift-box:before{content:"\e80e"}.icofont-halloween-pumpkin:before{content:"\e80f"}.icofont-hand-power:before{content:"\e810"}.icofont-hand-thunder:before{content:"\e811"}.icofont-king-monster:before{content:"\e812"}.icofont-love:before{content:"\e813"}.icofont-magician-hat:before{content:"\e814"}.icofont-native-american:before{content:"\e815"}.icofont-owl-look:before{content:"\e816"}.icofont-phoenix:before{content:"\e817"}.icofont-robot-face:before{content:"\e818"}.icofont-sand-clock:before{content:"\e819"}.icofont-shield-alt:before{content:"\e81a"}.icofont-ship-wheel:before{content:"\e81b"}.icofont-skull-danger:before{content:"\e81c"}.icofont-skull-face:before{content:"\e81d"}.icofont-snowmobile:before{content:"\e81e"}.icofont-space-shuttle:before{content:"\e81f"}.icofont-star-shape:before{content:"\e820"}.icofont-swirl:before{content:"\e821"}.icofont-tattoo-wing:before{content:"\e822"}.icofont-throne:before{content:"\e823"}.icofont-tree-alt:before{content:"\e824"}.icofont-triangle:before{content:"\e825"}.icofont-unity-hand:before{content:"\e826"}.icofont-weed:before{content:"\e827"}.icofont-woman-bird:before{content:"\e828"}.icofont-bat:before{content:"\e829"}.icofont-bear-face:before{content:"\e82a"}.icofont-bear-tracks:before{content:"\e82b"}.icofont-bear:before{content:"\e82c"}.icofont-bird-alt:before{content:"\e82d"}.icofont-bird-flying:before{content:"\e82e"}.icofont-bird:before{content:"\e82f"}.icofont-birds:before{content:"\e830"}.icofont-bone:before{content:"\e831"}.icofont-bull:before{content:"\e832"}.icofont-butterfly-alt:before{content:"\e833"}.icofont-butterfly:before{content:"\e834"}.icofont-camel-alt:before{content:"\e835"}.icofont-camel-head:before{content:"\e836"}.icofont-camel:before{content:"\e837"}.icofont-cat-alt-1:before{content:"\e838"}.icofont-cat-alt-2:before{content:"\e839"}.icofont-cat-alt-3:before{content:"\e83a"}.icofont-cat-dog:before{content:"\e83b"}.icofont-cat-face:before{content:"\e83c"}.icofont-cat:before{content:"\e83d"}.icofont-cow-head:before{content:"\e83e"}.icofont-cow:before{content:"\e83f"}.icofont-crab:before{content:"\e840"}.icofont-crocodile:before{content:"\e841"}.icofont-deer-head:before{content:"\e842"}.icofont-dog-alt:before{content:"\e843"}.icofont-dog-barking:before{content:"\e844"}.icofont-dog:before{content:"\e845"}.icofont-dolphin:before{content:"\e846"}.icofont-duck-tracks:before{content:"\e847"}.icofont-eagle-head:before{content:"\e848"}.icofont-eaten-fish:before{content:"\e849"}.icofont-elephant-alt:before{content:"\e84a"}.icofont-elephant-head-alt:before{content:"\e84b"}.icofont-elephant-head:before{content:"\e84c"}.icofont-elephant:before{content:"\e84d"}.icofont-elk:before{content:"\e84e"}.icofont-fish-1:before{content:"\e84f"}.icofont-fish-2:before{content:"\e850"}.icofont-fish-3:before{content:"\e851"}.icofont-fish-4:before{content:"\e852"}.icofont-fish-5:before{content:"\e853"}.icofont-fish:before{content:"\e854"}.icofont-fox-alt:before{content:"\e855"}.icofont-fox:before{content:"\e856"}.icofont-frog-tracks:before{content:"\e857"}.icofont-frog:before{content:"\e858"}.icofont-froggy:before{content:"\e859"}.icofont-giraffe-head-1:before{content:"\e85a"}.icofont-giraffe-head-2:before{content:"\e85b"}.icofont-giraffe-head:before{content:"\e85c"}.icofont-giraffe:before{content:"\e85d"}.icofont-goat-head:before{content:"\e85e"}.icofont-gorilla:before{content:"\e85f"}.icofont-hen-tracks:before{content:"\e860"}.icofont-horse-head-1:before{content:"\e861"}.icofont-horse-head-2:before{content:"\e862"}.icofont-horse-head:before{content:"\e863"}.icofont-horse-tracks:before{content:"\e864"}.icofont-jellyfish:before{content:"\e865"}.icofont-kangaroo:before{content:"\e866"}.icofont-lemur:before{content:"\e867"}.icofont-lion-head-1:before{content:"\e868"}.icofont-lion-head-2:before{content:"\e869"}.icofont-lion-head:before{content:"\e86a"}.icofont-lion:before{content:"\e86b"}.icofont-monkey-2:before{content:"\e86c"}.icofont-monkey-3:before{content:"\e86d"}.icofont-monkey-face:before{content:"\e86e"}.icofont-monkey:before{content:"\e86f"}.icofont-octopus-alt:before{content:"\e870"}.icofont-octopus:before{content:"\e871"}.icofont-owl:before{content:"\e872"}.icofont-panda-face:before{content:"\e873"}.icofont-panda:before{content:"\e874"}.icofont-panther:before{content:"\e875"}.icofont-parrot-lip:before{content:"\e876"}.icofont-parrot:before{content:"\e877"}.icofont-paw:before{content:"\e878"}.icofont-pelican:before{content:"\e879"}.icofont-penguin:before{content:"\e87a"}.icofont-pig-face:before{content:"\e87b"}.icofont-pig:before{content:"\e87c"}.icofont-pigeon-1:before{content:"\e87d"}.icofont-pigeon-2:before{content:"\e87e"}.icofont-pigeon:before{content:"\e87f"}.icofont-rabbit:before{content:"\e880"}.icofont-rat:before{content:"\e881"}.icofont-rhino-head:before{content:"\e882"}.icofont-rhino:before{content:"\e883"}.icofont-rooster:before{content:"\e884"}.icofont-seahorse:before{content:"\e885"}.icofont-seal:before{content:"\e886"}.icofont-shrimp-alt:before{content:"\e887"}.icofont-shrimp:before{content:"\e888"}.icofont-snail-1:before{content:"\e889"}.icofont-snail-2:before{content:"\e88a"}.icofont-snail-3:before{content:"\e88b"}.icofont-snail:before{content:"\e88c"}.icofont-snake:before{content:"\e88d"}.icofont-squid:before{content:"\e88e"}.icofont-squirrel:before{content:"\e88f"}.icofont-tiger-face:before{content:"\e890"}.icofont-tiger:before{content:"\e891"}.icofont-turtle:before{content:"\e892"}.icofont-whale:before{content:"\e893"}.icofont-woodpecker:before{content:"\e894"}.icofont-zebra:before{content:"\e895"}.icofont-brand-acer:before{content:"\e896"}.icofont-brand-adidas:before{content:"\e897"}.icofont-brand-adobe:before{content:"\e898"}.icofont-brand-air-new-zealand:before{content:"\e899"}.icofont-brand-airbnb:before{content:"\e89a"}.icofont-brand-aircell:before{content:"\e89b"}.icofont-brand-airtel:before{content:"\e89c"}.icofont-brand-alcatel:before{content:"\e89d"}.icofont-brand-alibaba:before{content:"\e89e"}.icofont-brand-aliexpress:before{content:"\e89f"}.icofont-brand-alipay:before{content:"\e8a0"}.icofont-brand-amazon:before{content:"\e8a1"}.icofont-brand-amd:before{content:"\e8a2"}.icofont-brand-american-airlines:before{content:"\e8a3"}.icofont-brand-android-robot:before{content:"\e8a4"}.icofont-brand-android:before{content:"\e8a5"}.icofont-brand-aol:before{content:"\e8a6"}.icofont-brand-apple:before{content:"\e8a7"}.icofont-brand-appstore:before{content:"\e8a8"}.icofont-brand-asus:before{content:"\e8a9"}.icofont-brand-ati:before{content:"\e8aa"}.icofont-brand-att:before{content:"\e8ab"}.icofont-brand-audi:before{content:"\e8ac"}.icofont-brand-axiata:before{content:"\e8ad"}.icofont-brand-bada:before{content:"\e8ae"}.icofont-brand-bbc:before{content:"\e8af"}.icofont-brand-bing:before{content:"\e8b0"}.icofont-brand-blackberry:before{content:"\e8b1"}.icofont-brand-bmw:before{content:"\e8b2"}.icofont-brand-box:before{content:"\e8b3"}.icofont-brand-burger-king:before{content:"\e8b4"}.icofont-brand-business-insider:before{content:"\e8b5"}.icofont-brand-buzzfeed:before{content:"\e8b6"}.icofont-brand-cannon:before{content:"\e8b7"}.icofont-brand-casio:before{content:"\e8b8"}.icofont-brand-china-mobile:before{content:"\e8b9"}.icofont-brand-china-telecom:before{content:"\e8ba"}.icofont-brand-china-unicom:before{content:"\e8bb"}.icofont-brand-cisco:before{content:"\e8bc"}.icofont-brand-citibank:before{content:"\e8bd"}.icofont-brand-cnet:before{content:"\e8be"}.icofont-brand-cnn:before{content:"\e8bf"}.icofont-brand-cocal-cola:before{content:"\e8c0"}.icofont-brand-compaq:before{content:"\e8c1"}.icofont-brand-debian:before{content:"\e8c2"}.icofont-brand-delicious:before{content:"\e8c3"}.icofont-brand-dell:before{content:"\e8c4"}.icofont-brand-designbump:before{content:"\e8c5"}.icofont-brand-designfloat:before{content:"\e8c6"}.icofont-brand-disney:before{content:"\e8c7"}.icofont-brand-dodge:before{content:"\e8c8"}.icofont-brand-dove:before{content:"\e8c9"}.icofont-brand-drupal:before{content:"\e8ca"}.icofont-brand-ebay:before{content:"\e8cb"}.icofont-brand-eleven:before{content:"\e8cc"}.icofont-brand-emirates:before{content:"\e8cd"}.icofont-brand-espn:before{content:"\e8ce"}.icofont-brand-etihad-airways:before{content:"\e8cf"}.icofont-brand-etisalat:before{content:"\e8d0"}.icofont-brand-etsy:before{content:"\e8d1"}.icofont-brand-fastrack:before{content:"\e8d2"}.icofont-brand-fedex:before{content:"\e8d3"}.icofont-brand-ferrari:before{content:"\e8d4"}.icofont-brand-fitbit:before{content:"\e8d5"}.icofont-brand-flikr:before{content:"\e8d6"}.icofont-brand-forbes:before{content:"\e8d7"}.icofont-brand-foursquare:before{content:"\e8d8"}.icofont-brand-foxconn:before{content:"\e8d9"}.icofont-brand-fujitsu:before{content:"\e8da"}.icofont-brand-general-electric:before{content:"\e8db"}.icofont-brand-gillette:before{content:"\e8dc"}.icofont-brand-gizmodo:before{content:"\e8dd"}.icofont-brand-gnome:before{content:"\e8de"}.icofont-brand-google:before{content:"\e8df"}.icofont-brand-gopro:before{content:"\e8e0"}.icofont-brand-gucci:before{content:"\e8e1"}.icofont-brand-hallmark:before{content:"\e8e2"}.icofont-brand-hi5:before{content:"\e8e3"}.icofont-brand-honda:before{content:"\e8e4"}.icofont-brand-hp:before{content:"\e8e5"}.icofont-brand-hsbc:before{content:"\e8e6"}.icofont-brand-htc:before{content:"\e8e7"}.icofont-brand-huawei:before{content:"\e8e8"}.icofont-brand-hulu:before{content:"\e8e9"}.icofont-brand-hyundai:before{content:"\e8ea"}.icofont-brand-ibm:before{content:"\e8eb"}.icofont-brand-icofont:before{content:"\e8ec"}.icofont-brand-icq:before{content:"\e8ed"}.icofont-brand-ikea:before{content:"\e8ee"}.icofont-brand-imdb:before{content:"\e8ef"}.icofont-brand-indiegogo:before{content:"\e8f0"}.icofont-brand-intel:before{content:"\e8f1"}.icofont-brand-ipair:before{content:"\e8f2"}.icofont-brand-jaguar:before{content:"\e8f3"}.icofont-brand-java:before{content:"\e8f4"}.icofont-brand-joomla:before{content:"\e8f5"}.icofont-brand-kickstarter:before{content:"\e8f6"}.icofont-brand-kik:before{content:"\e8f7"}.icofont-brand-lastfm:before{content:"\e8f8"}.icofont-brand-lego:before{content:"\e8f9"}.icofont-brand-lenovo:before{content:"\e8fa"}.icofont-brand-levis:before{content:"\e8fb"}.icofont-brand-lexus:before{content:"\e8fc"}.icofont-brand-lg:before{content:"\e8fd"}.icofont-brand-life-hacker:before{content:"\e8fe"}.icofont-brand-linux-mint:before{content:"\e8ff"}.icofont-brand-linux:before{content:"\e900"}.icofont-brand-lionix:before{content:"\e901"}.icofont-brand-loreal:before{content:"\e902"}.icofont-brand-louis-vuitton:before{content:"\e903"}.icofont-brand-mac-os:before{content:"\e904"}.icofont-brand-marvel-app:before{content:"\e905"}.icofont-brand-mashable:before{content:"\e906"}.icofont-brand-mazda:before{content:"\e907"}.icofont-brand-mcdonals:before{content:"\e908"}.icofont-brand-mercedes:before{content:"\e909"}.icofont-brand-micromax:before{content:"\e90a"}.icofont-brand-microsoft:before{content:"\e90b"}.icofont-brand-mobileme:before{content:"\e90c"}.icofont-brand-mobily:before{content:"\e90d"}.icofont-brand-motorola:before{content:"\e90e"}.icofont-brand-msi:before{content:"\e90f"}.icofont-brand-mts:before{content:"\e910"}.icofont-brand-myspace:before{content:"\e911"}.icofont-brand-mytv:before{content:"\e912"}.icofont-brand-nasa:before{content:"\e913"}.icofont-brand-natgeo:before{content:"\e914"}.icofont-brand-nbc:before{content:"\e915"}.icofont-brand-nescafe:before{content:"\e916"}.icofont-brand-nestle:before{content:"\e917"}.icofont-brand-netflix:before{content:"\e918"}.icofont-brand-nexus:before{content:"\e919"}.icofont-brand-nike:before{content:"\e91a"}.icofont-brand-nokia:before{content:"\e91b"}.icofont-brand-nvidia:before{content:"\e91c"}.icofont-brand-omega:before{content:"\e91d"}.icofont-brand-opensuse:before{content:"\e91e"}.icofont-brand-oracle:before{content:"\e91f"}.icofont-brand-panasonic:before{content:"\e920"}.icofont-brand-paypal:before{content:"\e921"}.icofont-brand-pepsi:before{content:"\e922"}.icofont-brand-philips:before{content:"\e923"}.icofont-brand-pizza-hut:before{content:"\e924"}.icofont-brand-playstation:before{content:"\e925"}.icofont-brand-puma:before{content:"\e926"}.icofont-brand-qatar-air:before{content:"\e927"}.icofont-brand-qvc:before{content:"\e928"}.icofont-brand-readernaut:before{content:"\e929"}.icofont-brand-redbull:before{content:"\e92a"}.icofont-brand-reebok:before{content:"\e92b"}.icofont-brand-reuters:before{content:"\e92c"}.icofont-brand-samsung:before{content:"\e92d"}.icofont-brand-sap:before{content:"\e92e"}.icofont-brand-saudia-airlines:before{content:"\e92f"}.icofont-brand-scribd:before{content:"\e930"}.icofont-brand-shell:before{content:"\e931"}.icofont-brand-siemens:before{content:"\e932"}.icofont-brand-sk-telecom:before{content:"\e933"}.icofont-brand-slideshare:before{content:"\e934"}.icofont-brand-smashing-magazine:before{content:"\e935"}.icofont-brand-snapchat:before{content:"\e936"}.icofont-brand-sony-ericsson:before{content:"\e937"}.icofont-brand-sony:before{content:"\e938"}.icofont-brand-soundcloud:before{content:"\e939"}.icofont-brand-sprint:before{content:"\e93a"}.icofont-brand-squidoo:before{content:"\e93b"}.icofont-brand-starbucks:before{content:"\e93c"}.icofont-brand-stc:before{content:"\e93d"}.icofont-brand-steam:before{content:"\e93e"}.icofont-brand-suzuki:before{content:"\e93f"}.icofont-brand-symbian:before{content:"\e940"}.icofont-brand-t-mobile:before{content:"\e941"}.icofont-brand-tango:before{content:"\e942"}.icofont-brand-target:before{content:"\e943"}.icofont-brand-tata-indicom:before{content:"\e944"}.icofont-brand-techcrunch:before{content:"\e945"}.icofont-brand-telenor:before{content:"\e946"}.icofont-brand-teliasonera:before{content:"\e947"}.icofont-brand-tesla:before{content:"\e948"}.icofont-brand-the-verge:before{content:"\e949"}.icofont-brand-thenextweb:before{content:"\e94a"}.icofont-brand-toshiba:before{content:"\e94b"}.icofont-brand-toyota:before{content:"\e94c"}.icofont-brand-tribenet:before{content:"\e94d"}.icofont-brand-ubuntu:before{content:"\e94e"}.icofont-brand-unilever:before{content:"\e94f"}.icofont-brand-vaio:before{content:"\e950"}.icofont-brand-verizon:before{content:"\e951"}.icofont-brand-viber:before{content:"\e952"}.icofont-brand-vodafone:before{content:"\e953"}.icofont-brand-volkswagen:before{content:"\e954"}.icofont-brand-walmart:before{content:"\e955"}.icofont-brand-warnerbros:before{content:"\e956"}.icofont-brand-whatsapp:before{content:"\e957"}.icofont-brand-wikipedia:before{content:"\e958"}.icofont-brand-windows:before{content:"\e959"}.icofont-brand-wire:before{content:"\e95a"}.icofont-brand-wordpress:before{content:"\e95b"}.icofont-brand-xiaomi:before{content:"\e95c"}.icofont-brand-yahoobuzz:before{content:"\e95d"}.icofont-brand-yamaha:before{content:"\e95e"}.icofont-brand-youtube:before{content:"\e95f"}.icofont-brand-zain:before{content:"\e960"}.icofont-bank-alt:before{content:"\e961"}.icofont-bank:before{content:"\e962"}.icofont-barcode:before{content:"\e963"}.icofont-bill-alt:before{content:"\e964"}.icofont-billboard:before{content:"\e965"}.icofont-briefcase-1:before{content:"\e966"}.icofont-briefcase-2:before{content:"\e967"}.icofont-businessman:before{content:"\e968"}.icofont-businesswoman:before{content:"\e969"}.icofont-chair:before{content:"\e96a"}.icofont-coins:before{content:"\e96b"}.icofont-company:before{content:"\e96c"}.icofont-contact-add:before{content:"\e96d"}.icofont-files-stack:before{content:"\e96e"}.icofont-handshake-deal:before{content:"\e96f"}.icofont-id-card:before{content:"\e970"}.icofont-meeting-add:before{content:"\e971"}.icofont-money-bag:before{content:"\e972"}.icofont-pie-chart:before{content:"\e973"}.icofont-presentation-alt:before{content:"\e974"}.icofont-presentation:before{content:"\e975"}.icofont-stamp:before{content:"\e976"}.icofont-stock-mobile:before{content:"\e977"}.icofont-chart-arrows-axis:before{content:"\e978"}.icofont-chart-bar-graph:before{content:"\e979"}.icofont-chart-flow-1:before{content:"\e97a"}.icofont-chart-flow-2:before{content:"\e97b"}.icofont-chart-flow:before{content:"\e97c"}.icofont-chart-growth:before{content:"\e97d"}.icofont-chart-histogram-alt:before{content:"\e97e"}.icofont-chart-histogram:before{content:"\e97f"}.icofont-chart-line-alt:before{content:"\e980"}.icofont-chart-line:before{content:"\e981"}.icofont-chart-pie-alt:before{content:"\e982"}.icofont-chart-pie:before{content:"\e983"}.icofont-chart-radar-graph:before{content:"\e984"}.icofont-architecture-alt:before{content:"\e985"}.icofont-architecture:before{content:"\e986"}.icofont-barricade:before{content:"\e987"}.icofont-bolt:before{content:"\e988"}.icofont-bricks:before{content:"\e989"}.icofont-building-alt:before{content:"\e98a"}.icofont-bull-dozer:before{content:"\e98b"}.icofont-calculations:before{content:"\e98c"}.icofont-cement-mix:before{content:"\e98d"}.icofont-cement-mixer:before{content:"\e98e"}.icofont-concrete-mixer:before{content:"\e98f"}.icofont-danger-zone:before{content:"\e990"}.icofont-drill:before{content:"\e991"}.icofont-eco-energy:before{content:"\e992"}.icofont-eco-environmen:before{content:"\e993"}.icofont-energy-air:before{content:"\e994"}.icofont-energy-oil:before{content:"\e995"}.icofont-energy-savings:before{content:"\e996"}.icofont-energy-solar:before{content:"\e997"}.icofont-energy-water:before{content:"\e998"}.icofont-engineer:before{content:"\e999"}.icofont-fire-extinguisher-alt:before{content:"\e99a"}.icofont-fire-extinguisher:before{content:"\e99b"}.icofont-fix-tools:before{content:"\e99c"}.icofont-fork-lift:before{content:"\e99d"}.icofont-glue-oil:before{content:"\e99e"}.icofont-hammer-alt:before{content:"\e99f"}.icofont-hammer:before{content:"\e9a0"}.icofont-help-robot:before{content:"\e9a1"}.icofont-industries-1:before{content:"\e9a2"}.icofont-industries-2:before{content:"\e9a3"}.icofont-industries-3:before{content:"\e9a4"}.icofont-industries-4:before{content:"\e9a5"}.icofont-industries-5:before{content:"\e9a6"}.icofont-industries:before{content:"\e9a7"}.icofont-labour:before{content:"\e9a8"}.icofont-mining:before{content:"\e9a9"}.icofont-paint-brush:before{content:"\e9aa"}.icofont-pollution:before{content:"\e9ab"}.icofont-power-zone:before{content:"\e9ac"}.icofont-radio-active:before{content:"\e9ad"}.icofont-recycle-alt:before{content:"\e9ae"}.icofont-recycling-man:before{content:"\e9af"}.icofont-safety-hat-light:before{content:"\e9b0"}.icofont-safety-hat:before{content:"\e9b1"}.icofont-saw:before{content:"\e9b2"}.icofont-screw-driver:before{content:"\e9b3"}.icofont-tools-1:before{content:"\e9b4"}.icofont-tools-bag:before{content:"\e9b5"}.icofont-tow-truck:before{content:"\e9b6"}.icofont-trolley:before{content:"\e9b7"}.icofont-trowel:before{content:"\e9b8"}.icofont-under-construction-alt:before{content:"\e9b9"}.icofont-under-construction:before{content:"\e9ba"}.icofont-vehicle-cement:before{content:"\e9bb"}.icofont-vehicle-crane:before{content:"\e9bc"}.icofont-vehicle-delivery-van:before{content:"\e9bd"}.icofont-vehicle-dozer:before{content:"\e9be"}.icofont-vehicle-excavator:before{content:"\e9bf"}.icofont-vehicle-trucktor:before{content:"\e9c0"}.icofont-vehicle-wrecking:before{content:"\e9c1"}.icofont-worker:before{content:"\e9c2"}.icofont-workers-group:before{content:"\e9c3"}.icofont-wrench:before{content:"\e9c4"}.icofont-afghani-false:before{content:"\e9c5"}.icofont-afghani-minus:before{content:"\e9c6"}.icofont-afghani-plus:before{content:"\e9c7"}.icofont-afghani-true:before{content:"\e9c8"}.icofont-afghani:before{content:"\e9c9"}.icofont-baht-false:before{content:"\e9ca"}.icofont-baht-minus:before{content:"\e9cb"}.icofont-baht-plus:before{content:"\e9cc"}.icofont-baht-true:before{content:"\e9cd"}.icofont-baht:before{content:"\e9ce"}.icofont-bitcoin-false:before{content:"\e9cf"}.icofont-bitcoin-minus:before{content:"\e9d0"}.icofont-bitcoin-plus:before{content:"\e9d1"}.icofont-bitcoin-true:before{content:"\e9d2"}.icofont-bitcoin:before{content:"\e9d3"}.icofont-dollar-flase:before{content:"\e9d4"}.icofont-dollar-minus:before{content:"\e9d5"}.icofont-dollar-plus:before{content:"\e9d6"}.icofont-dollar-true:before{content:"\e9d7"}.icofont-dollar:before{content:"\e9d8"}.icofont-dong-false:before{content:"\e9d9"}.icofont-dong-minus:before{content:"\e9da"}.icofont-dong-plus:before{content:"\e9db"}.icofont-dong-true:before{content:"\e9dc"}.icofont-dong:before{content:"\e9dd"}.icofont-euro-false:before{content:"\e9de"}.icofont-euro-minus:before{content:"\e9df"}.icofont-euro-plus:before{content:"\e9e0"}.icofont-euro-true:before{content:"\e9e1"}.icofont-euro:before{content:"\e9e2"}.icofont-frank-false:before{content:"\e9e3"}.icofont-frank-minus:before{content:"\e9e4"}.icofont-frank-plus:before{content:"\e9e5"}.icofont-frank-true:before{content:"\e9e6"}.icofont-frank:before{content:"\e9e7"}.icofont-hryvnia-false:before{content:"\e9e8"}.icofont-hryvnia-minus:before{content:"\e9e9"}.icofont-hryvnia-plus:before{content:"\e9ea"}.icofont-hryvnia-true:before{content:"\e9eb"}.icofont-hryvnia:before{content:"\e9ec"}.icofont-lira-false:before{content:"\e9ed"}.icofont-lira-minus:before{content:"\e9ee"}.icofont-lira-plus:before{content:"\e9ef"}.icofont-lira-true:before{content:"\e9f0"}.icofont-lira:before{content:"\e9f1"}.icofont-peseta-false:before{content:"\e9f2"}.icofont-peseta-minus:before{content:"\e9f3"}.icofont-peseta-plus:before{content:"\e9f4"}.icofont-peseta-true:before{content:"\e9f5"}.icofont-peseta:before{content:"\e9f6"}.icofont-peso-false:before{content:"\e9f7"}.icofont-peso-minus:before{content:"\e9f8"}.icofont-peso-plus:before{content:"\e9f9"}.icofont-peso-true:before{content:"\e9fa"}.icofont-peso:before{content:"\e9fb"}.icofont-pound-false:before{content:"\e9fc"}.icofont-pound-minus:before{content:"\e9fd"}.icofont-pound-plus:before{content:"\e9fe"}.icofont-pound-true:before{content:"\e9ff"}.icofont-pound:before{content:"\ea00"}.icofont-renminbi-false:before{content:"\ea01"}.icofont-renminbi-minus:before{content:"\ea02"}.icofont-renminbi-plus:before{content:"\ea03"}.icofont-renminbi-true:before{content:"\ea04"}.icofont-renminbi:before{content:"\ea05"}.icofont-riyal-false:before{content:"\ea06"}.icofont-riyal-minus:before{content:"\ea07"}.icofont-riyal-plus:before{content:"\ea08"}.icofont-riyal-true:before{content:"\ea09"}.icofont-riyal:before{content:"\ea0a"}.icofont-rouble-false:before{content:"\ea0b"}.icofont-rouble-minus:before{content:"\ea0c"}.icofont-rouble-plus:before{content:"\ea0d"}.icofont-rouble-true:before{content:"\ea0e"}.icofont-rouble:before{content:"\ea0f"}.icofont-rupee-false:before{content:"\ea10"}.icofont-rupee-minus:before{content:"\ea11"}.icofont-rupee-plus:before{content:"\ea12"}.icofont-rupee-true:before{content:"\ea13"}.icofont-rupee:before{content:"\ea14"}.icofont-taka-false:before{content:"\ea15"}.icofont-taka-minus:before{content:"\ea16"}.icofont-taka-plus:before{content:"\ea17"}.icofont-taka-true:before{content:"\ea18"}.icofont-taka:before{content:"\ea19"}.icofont-turkish-lira-false:before{content:"\ea1a"}.icofont-turkish-lira-minus:before{content:"\ea1b"}.icofont-turkish-lira-plus:before{content:"\ea1c"}.icofont-turkish-lira-true:before{content:"\ea1d"}.icofont-turkish-lira:before{content:"\ea1e"}.icofont-won-false:before{content:"\ea1f"}.icofont-won-minus:before{content:"\ea20"}.icofont-won-plus:before{content:"\ea21"}.icofont-won-true:before{content:"\ea22"}.icofont-won:before{content:"\ea23"}.icofont-yen-false:before{content:"\ea24"}.icofont-yen-minus:before{content:"\ea25"}.icofont-yen-plus:before{content:"\ea26"}.icofont-yen-true:before{content:"\ea27"}.icofont-yen:before{content:"\ea28"}.icofont-android-nexus:before{content:"\ea29"}.icofont-android-tablet:before{content:"\ea2a"}.icofont-apple-watch:before{content:"\ea2b"}.icofont-drawing-tablet:before{content:"\ea2c"}.icofont-earphone:before{content:"\ea2d"}.icofont-flash-drive:before{content:"\ea2e"}.icofont-game-console:before{content:"\ea2f"}.icofont-game-controller:before{content:"\ea30"}.icofont-game-pad:before{content:"\ea31"}.icofont-game:before{content:"\ea32"}.icofont-headphone-alt-1:before{content:"\ea33"}.icofont-headphone-alt-2:before{content:"\ea34"}.icofont-headphone-alt-3:before{content:"\ea35"}.icofont-headphone-alt:before{content:"\ea36"}.icofont-headphone:before{content:"\ea37"}.icofont-htc-one:before{content:"\ea38"}.icofont-imac:before{content:"\ea39"}.icofont-ipad:before{content:"\ea3a"}.icofont-iphone:before{content:"\ea3b"}.icofont-ipod-nano:before{content:"\ea3c"}.icofont-ipod-touch:before{content:"\ea3d"}.icofont-keyboard-alt:before{content:"\ea3e"}.icofont-keyboard-wireless:before{content:"\ea3f"}.icofont-keyboard:before{content:"\ea40"}.icofont-laptop-alt:before{content:"\ea41"}.icofont-laptop:before{content:"\ea42"}.icofont-macbook:before{content:"\ea43"}.icofont-magic-mouse:before{content:"\ea44"}.icofont-micro-chip:before{content:"\ea45"}.icofont-microphone-alt:before{content:"\ea46"}.icofont-microphone:before{content:"\ea47"}.icofont-monitor:before{content:"\ea48"}.icofont-mouse:before{content:"\ea49"}.icofont-mp3-player:before{content:"\ea4a"}.icofont-nintendo:before{content:"\ea4b"}.icofont-playstation-alt:before{content:"\ea4c"}.icofont-psvita:before{content:"\ea4d"}.icofont-radio-mic:before{content:"\ea4e"}.icofont-radio:before{content:"\ea4f"}.icofont-refrigerator:before{content:"\ea50"}.icofont-samsung-galaxy:before{content:"\ea51"}.icofont-surface-tablet:before{content:"\ea52"}.icofont-ui-head-phone:before{content:"\ea53"}.icofont-ui-keyboard:before{content:"\ea54"}.icofont-washing-machine:before{content:"\ea55"}.icofont-wifi-router:before{content:"\ea56"}.icofont-wii-u:before{content:"\ea57"}.icofont-windows-lumia:before{content:"\ea58"}.icofont-wireless-mouse:before{content:"\ea59"}.icofont-xbox-360:before{content:"\ea5a"}.icofont-arrow-down:before{content:"\ea5b"}.icofont-arrow-left:before{content:"\ea5c"}.icofont-arrow-right:before{content:"\ea5d"}.icofont-arrow-up:before{content:"\ea5e"}.icofont-block-down:before{content:"\ea5f"}.icofont-block-left:before{content:"\ea60"}.icofont-block-right:before{content:"\ea61"}.icofont-block-up:before{content:"\ea62"}.icofont-bubble-down:before{content:"\ea63"}.icofont-bubble-left:before{content:"\ea64"}.icofont-bubble-right:before{content:"\ea65"}.icofont-bubble-up:before{content:"\ea66"}.icofont-caret-down:before{content:"\ea67"}.icofont-caret-left:before{content:"\ea68"}.icofont-caret-right:before{content:"\ea69"}.icofont-caret-up:before{content:"\ea6a"}.icofont-circled-down:before{content:"\ea6b"}.icofont-circled-left:before{content:"\ea6c"}.icofont-circled-right:before{content:"\ea6d"}.icofont-circled-up:before{content:"\ea6e"}.icofont-collapse:before{content:"\ea6f"}.icofont-cursor-drag:before{content:"\ea70"}.icofont-curved-double-left:before{content:"\ea71"}.icofont-curved-double-right:before{content:"\ea72"}.icofont-curved-down:before{content:"\ea73"}.icofont-curved-left:before{content:"\ea74"}.icofont-curved-right:before{content:"\ea75"}.icofont-curved-up:before{content:"\ea76"}.icofont-dotted-down:before{content:"\ea77"}.icofont-dotted-left:before{content:"\ea78"}.icofont-dotted-right:before{content:"\ea79"}.icofont-dotted-up:before{content:"\ea7a"}.icofont-double-left:before{content:"\ea7b"}.icofont-double-right:before{content:"\ea7c"}.icofont-expand-alt:before{content:"\ea7d"}.icofont-hand-down:before{content:"\ea7e"}.icofont-hand-drag:before{content:"\ea7f"}.icofont-hand-drag1:before{content:"\ea80"}.icofont-hand-drag2:before{content:"\ea81"}.icofont-hand-drawn-alt-down:before{content:"\ea82"}.icofont-hand-drawn-alt-left:before{content:"\ea83"}.icofont-hand-drawn-alt-right:before{content:"\ea84"}.icofont-hand-drawn-alt-up:before{content:"\ea85"}.icofont-hand-drawn-down:before{content:"\ea86"}.icofont-hand-drawn-left:before{content:"\ea87"}.icofont-hand-drawn-right:before{content:"\ea88"}.icofont-hand-drawn-up:before{content:"\ea89"}.icofont-hand-grippers:before{content:"\ea8a"}.icofont-hand-left:before{content:"\ea8b"}.icofont-hand-right:before{content:"\ea8c"}.icofont-hand-up:before{content:"\ea8d"}.icofont-line-block-down:before{content:"\ea8e"}.icofont-line-block-left:before{content:"\ea8f"}.icofont-line-block-right:before{content:"\ea90"}.icofont-line-block-up:before{content:"\ea91"}.icofont-long-arrow-down:before{content:"\ea92"}.icofont-long-arrow-left:before{content:"\ea93"}.icofont-long-arrow-right:before{content:"\ea94"}.icofont-long-arrow-up:before{content:"\ea95"}.icofont-rounded-collapse:before{content:"\ea96"}.icofont-rounded-double-left:before{content:"\ea97"}.icofont-rounded-double-right:before{content:"\ea98"}.icofont-rounded-down:before{content:"\ea99"}.icofont-rounded-expand:before{content:"\ea9a"}.icofont-rounded-left-down:before{content:"\ea9b"}.icofont-rounded-left-up:before{content:"\ea9c"}.icofont-rounded-left:before{content:"\ea9d"}.icofont-rounded-right-down:before{content:"\ea9e"}.icofont-rounded-right-up:before{content:"\ea9f"}.icofont-rounded-right:before{content:"\eaa0"}.icofont-rounded-up:before{content:"\eaa1"}.icofont-scroll-bubble-down:before{content:"\eaa2"}.icofont-scroll-bubble-left:before{content:"\eaa3"}.icofont-scroll-bubble-right:before{content:"\eaa4"}.icofont-scroll-bubble-up:before{content:"\eaa5"}.icofont-scroll-double-down:before{content:"\eaa6"}.icofont-scroll-double-left:before{content:"\eaa7"}.icofont-scroll-double-right:before{content:"\eaa8"}.icofont-scroll-double-up:before{content:"\eaa9"}.icofont-scroll-down:before{content:"\eaaa"}.icofont-scroll-left:before{content:"\eaab"}.icofont-scroll-long-down:before{content:"\eaac"}.icofont-scroll-long-left:before{content:"\eaad"}.icofont-scroll-long-right:before{content:"\eaae"}.icofont-scroll-long-up:before{content:"\eaaf"}.icofont-scroll-right:before{content:"\eab0"}.icofont-scroll-up:before{content:"\eab1"}.icofont-simple-down:before{content:"\eab2"}.icofont-simple-left-down:before{content:"\eab3"}.icofont-simple-left-up:before{content:"\eab4"}.icofont-simple-left:before{content:"\eab5"}.icofont-simple-right-down:before{content:"\eab6"}.icofont-simple-right-up:before{content:"\eab7"}.icofont-simple-right:before{content:"\eab8"}.icofont-simple-up:before{content:"\eab9"}.icofont-square-down:before{content:"\eaba"}.icofont-square-left:before{content:"\eabb"}.icofont-square-right:before{content:"\eabc"}.icofont-square-up:before{content:"\eabd"}.icofont-stylish-down:before{content:"\eabe"}.icofont-stylish-left:before{content:"\eabf"}.icofont-stylish-right:before{content:"\eac0"}.icofont-stylish-up:before{content:"\eac1"}.icofont-swoosh-down:before{content:"\eac2"}.icofont-swoosh-left:before{content:"\eac3"}.icofont-swoosh-right:before{content:"\eac4"}.icofont-swoosh-up:before{content:"\eac5"}.icofont-thin-double-left:before{content:"\eac6"}.icofont-thin-double-right:before{content:"\eac7"}.icofont-thin-down:before{content:"\eac8"}.icofont-thin-left:before{content:"\eac9"}.icofont-thin-right:before{content:"\eaca"}.icofont-thin-up:before{content:"\eacb"}.icofont-abc:before{content:"\eacc"}.icofont-atom:before{content:"\eacd"}.icofont-award:before{content:"\eace"}.icofont-bell-alt:before{content:"\eacf"}.icofont-black-board:before{content:"\ead0"}.icofont-book-alt:before{content:"\ead1"}.icofont-book:before{content:"\ead2"}.icofont-brainstorming:before{content:"\ead3"}.icofont-certificate-alt-1:before{content:"\ead4"}.icofont-certificate-alt-2:before{content:"\ead5"}.icofont-certificate:before{content:"\ead6"}.icofont-education:before{content:"\ead7"}.icofont-electron:before{content:"\ead8"}.icofont-fountain-pen:before{content:"\ead9"}.icofont-globe-alt:before{content:"\eada"}.icofont-graduate-alt:before{content:"\eadb"}.icofont-graduate:before{content:"\eadc"}.icofont-group-students:before{content:"\eadd"}.icofont-hat-alt:before{content:"\eade"}.icofont-hat:before{content:"\eadf"}.icofont-instrument:before{content:"\eae0"}.icofont-lamp-light:before{content:"\eae1"}.icofont-medal:before{content:"\eae2"}.icofont-microscope-alt:before{content:"\eae3"}.icofont-microscope:before{content:"\eae4"}.icofont-paper:before{content:"\eae5"}.icofont-pen-alt-4:before{content:"\eae6"}.icofont-pen-nib:before{content:"\eae7"}.icofont-pencil-alt-5:before{content:"\eae8"}.icofont-quill-pen:before{content:"\eae9"}.icofont-read-book-alt:before{content:"\eaea"}.icofont-read-book:before{content:"\eaeb"}.icofont-school-bag:before{content:"\eaec"}.icofont-school-bus:before{content:"\eaed"}.icofont-student-alt:before{content:"\eaee"}.icofont-student:before{content:"\eaef"}.icofont-teacher:before{content:"\eaf0"}.icofont-test-bulb:before{content:"\eaf1"}.icofont-test-tube-alt:before{content:"\eaf2"}.icofont-university:before{content:"\eaf3"}.icofont-angry:before{content:"\eaf4"}.icofont-astonished:before{content:"\eaf5"}.icofont-confounded:before{content:"\eaf6"}.icofont-confused:before{content:"\eaf7"}.icofont-crying:before{content:"\eaf8"}.icofont-dizzy:before{content:"\eaf9"}.icofont-expressionless:before{content:"\eafa"}.icofont-heart-eyes:before{content:"\eafb"}.icofont-laughing:before{content:"\eafc"}.icofont-nerd-smile:before{content:"\eafd"}.icofont-open-mouth:before{content:"\eafe"}.icofont-rage:before{content:"\eaff"}.icofont-rolling-eyes:before{content:"\eb00"}.icofont-sad:before{content:"\eb01"}.icofont-simple-smile:before{content:"\eb02"}.icofont-slightly-smile:before{content:"\eb03"}.icofont-smirk:before{content:"\eb04"}.icofont-stuck-out-tongue:before{content:"\eb05"}.icofont-wink-smile:before{content:"\eb06"}.icofont-worried:before{content:"\eb07"}.icofont-file-alt:before{content:"\eb08"}.icofont-file-audio:before{content:"\eb09"}.icofont-file-avi-mp4:before{content:"\eb0a"}.icofont-file-bmp:before{content:"\eb0b"}.icofont-file-code:before{content:"\eb0c"}.icofont-file-css:before{content:"\eb0d"}.icofont-file-document:before{content:"\eb0e"}.icofont-file-eps:before{content:"\eb0f"}.icofont-file-excel:before{content:"\eb10"}.icofont-file-exe:before{content:"\eb11"}.icofont-file-file:before{content:"\eb12"}.icofont-file-flv:before{content:"\eb13"}.icofont-file-gif:before{content:"\eb14"}.icofont-file-html5:before{content:"\eb15"}.icofont-file-image:before{content:"\eb16"}.icofont-file-iso:before{content:"\eb17"}.icofont-file-java:before{content:"\eb18"}.icofont-file-javascript:before{content:"\eb19"}.icofont-file-jpg:before{content:"\eb1a"}.icofont-file-midi:before{content:"\eb1b"}.icofont-file-mov:before{content:"\eb1c"}.icofont-file-mp3:before{content:"\eb1d"}.icofont-file-pdf:before{content:"\eb1e"}.icofont-file-php:before{content:"\eb1f"}.icofont-file-png:before{content:"\eb20"}.icofont-file-powerpoint:before{content:"\eb21"}.icofont-file-presentation:before{content:"\eb22"}.icofont-file-psb:before{content:"\eb23"}.icofont-file-psd:before{content:"\eb24"}.icofont-file-python:before{content:"\eb25"}.icofont-file-ruby:before{content:"\eb26"}.icofont-file-spreadsheet:before{content:"\eb27"}.icofont-file-sql:before{content:"\eb28"}.icofont-file-svg:before{content:"\eb29"}.icofont-file-text:before{content:"\eb2a"}.icofont-file-tiff:before{content:"\eb2b"}.icofont-file-video:before{content:"\eb2c"}.icofont-file-wave:before{content:"\eb2d"}.icofont-file-wmv:before{content:"\eb2e"}.icofont-file-word:before{content:"\eb2f"}.icofont-file-zip:before{content:"\eb30"}.icofont-cycling-alt:before{content:"\eb31"}.icofont-cycling:before{content:"\eb32"}.icofont-dumbbell:before{content:"\eb33"}.icofont-dumbbells:before{content:"\eb34"}.icofont-gym-alt-1:before{content:"\eb35"}.icofont-gym-alt-2:before{content:"\eb36"}.icofont-gym-alt-3:before{content:"\eb37"}.icofont-gym:before{content:"\eb38"}.icofont-muscle-weight:before{content:"\eb39"}.icofont-muscle:before{content:"\eb3a"}.icofont-apple:before{content:"\eb3b"}.icofont-arabian-coffee:before{content:"\eb3c"}.icofont-artichoke:before{content:"\eb3d"}.icofont-asparagus:before{content:"\eb3e"}.icofont-avocado:before{content:"\eb3f"}.icofont-baby-food:before{content:"\eb40"}.icofont-banana:before{content:"\eb41"}.icofont-bbq:before{content:"\eb42"}.icofont-beans:before{content:"\eb43"}.icofont-beer:before{content:"\eb44"}.icofont-bell-pepper-capsicum:before{content:"\eb45"}.icofont-birthday-cake:before{content:"\eb46"}.icofont-bread:before{content:"\eb47"}.icofont-broccoli:before{content:"\eb48"}.icofont-burger:before{content:"\eb49"}.icofont-cabbage:before{content:"\eb4a"}.icofont-carrot:before{content:"\eb4b"}.icofont-cauli-flower:before{content:"\eb4c"}.icofont-cheese:before{content:"\eb4d"}.icofont-chef:before{content:"\eb4e"}.icofont-cherry:before{content:"\eb4f"}.icofont-chicken-fry:before{content:"\eb50"}.icofont-chicken:before{content:"\eb51"}.icofont-cocktail:before{content:"\eb52"}.icofont-coconut-water:before{content:"\eb53"}.icofont-coconut:before{content:"\eb54"}.icofont-coffee-alt:before{content:"\eb55"}.icofont-coffee-cup:before{content:"\eb56"}.icofont-coffee-mug:before{content:"\eb57"}.icofont-coffee-pot:before{content:"\eb58"}.icofont-cola:before{content:"\eb59"}.icofont-corn:before{content:"\eb5a"}.icofont-croissant:before{content:"\eb5b"}.icofont-crop-plant:before{content:"\eb5c"}.icofont-cucumber:before{content:"\eb5d"}.icofont-culinary:before{content:"\eb5e"}.icofont-cup-cake:before{content:"\eb5f"}.icofont-dining-table:before{content:"\eb60"}.icofont-donut:before{content:"\eb61"}.icofont-egg-plant:before{content:"\eb62"}.icofont-egg-poached:before{content:"\eb63"}.icofont-farmer-alt:before{content:"\eb64"}.icofont-farmer:before{content:"\eb65"}.icofont-fast-food:before{content:"\eb66"}.icofont-food-basket:before{content:"\eb67"}.icofont-food-cart:before{content:"\eb68"}.icofont-fork-and-knife:before{content:"\eb69"}.icofont-french-fries:before{content:"\eb6a"}.icofont-fruits:before{content:"\eb6b"}.icofont-grapes:before{content:"\eb6c"}.icofont-honey:before{content:"\eb6d"}.icofont-hot-dog:before{content:"\eb6e"}.icofont-ice-cream-alt:before{content:"\eb6f"}.icofont-ice-cream:before{content:"\eb70"}.icofont-juice:before{content:"\eb71"}.icofont-ketchup:before{content:"\eb72"}.icofont-kiwi:before{content:"\eb73"}.icofont-layered-cake:before{content:"\eb74"}.icofont-lemon-alt:before{content:"\eb75"}.icofont-lemon:before{content:"\eb76"}.icofont-lobster:before{content:"\eb77"}.icofont-mango:before{content:"\eb78"}.icofont-milk:before{content:"\eb79"}.icofont-mushroom:before{content:"\eb7a"}.icofont-noodles:before{content:"\eb7b"}.icofont-onion:before{content:"\eb7c"}.icofont-orange:before{content:"\eb7d"}.icofont-pear:before{content:"\eb7e"}.icofont-peas:before{content:"\eb7f"}.icofont-pepper:before{content:"\eb80"}.icofont-pie-alt:before{content:"\eb81"}.icofont-pie:before{content:"\eb82"}.icofont-pineapple:before{content:"\eb83"}.icofont-pizza-slice:before{content:"\eb84"}.icofont-pizza:before{content:"\eb85"}.icofont-plant:before{content:"\eb86"}.icofont-popcorn:before{content:"\eb87"}.icofont-potato:before{content:"\eb88"}.icofont-pumpkin:before{content:"\eb89"}.icofont-raddish:before{content:"\eb8a"}.icofont-restaurant-menu:before{content:"\eb8b"}.icofont-restaurant:before{content:"\eb8c"}.icofont-salt-and-pepper:before{content:"\eb8d"}.icofont-sandwich:before{content:"\eb8e"}.icofont-sausage:before{content:"\eb8f"}.icofont-soft-drinks:before{content:"\eb90"}.icofont-soup-bowl:before{content:"\eb91"}.icofont-spoon-and-fork:before{content:"\eb92"}.icofont-steak:before{content:"\eb93"}.icofont-strawberry:before{content:"\eb94"}.icofont-sub-sandwich:before{content:"\eb95"}.icofont-sushi:before{content:"\eb96"}.icofont-taco:before{content:"\eb97"}.icofont-tea-pot:before{content:"\eb98"}.icofont-tea:before{content:"\eb99"}.icofont-tomato:before{content:"\eb9a"}.icofont-watermelon:before{content:"\eb9b"}.icofont-wheat:before{content:"\eb9c"}.icofont-baby-backpack:before{content:"\eb9d"}.icofont-baby-cloth:before{content:"\eb9e"}.icofont-baby-milk-bottle:before{content:"\eb9f"}.icofont-baby-trolley:before{content:"\eba0"}.icofont-baby:before{content:"\eba1"}.icofont-candy:before{content:"\eba2"}.icofont-holding-hands:before{content:"\eba3"}.icofont-infant-nipple:before{content:"\eba4"}.icofont-kids-scooter:before{content:"\eba5"}.icofont-safety-pin:before{content:"\eba6"}.icofont-teddy-bear:before{content:"\eba7"}.icofont-toy-ball:before{content:"\eba8"}.icofont-toy-cat:before{content:"\eba9"}.icofont-toy-duck:before{content:"\ebaa"}.icofont-toy-elephant:before{content:"\ebab"}.icofont-toy-hand:before{content:"\ebac"}.icofont-toy-horse:before{content:"\ebad"}.icofont-toy-lattu:before{content:"\ebae"}.icofont-toy-train:before{content:"\ebaf"}.icofont-burglar:before{content:"\ebb0"}.icofont-cannon-firing:before{content:"\ebb1"}.icofont-cc-camera:before{content:"\ebb2"}.icofont-cop-badge:before{content:"\ebb3"}.icofont-cop:before{content:"\ebb4"}.icofont-court-hammer:before{content:"\ebb5"}.icofont-court:before{content:"\ebb6"}.icofont-finger-print:before{content:"\ebb7"}.icofont-gavel:before{content:"\ebb8"}.icofont-handcuff-alt:before{content:"\ebb9"}.icofont-handcuff:before{content:"\ebba"}.icofont-investigation:before{content:"\ebbb"}.icofont-investigator:before{content:"\ebbc"}.icofont-jail:before{content:"\ebbd"}.icofont-judge:before{content:"\ebbe"}.icofont-law-alt-1:before{content:"\ebbf"}.icofont-law-alt-2:before{content:"\ebc0"}.icofont-law-alt-3:before{content:"\ebc1"}.icofont-law-book:before{content:"\ebc2"}.icofont-law-document:before{content:"\ebc3"}.icofont-law-order:before{content:"\ebc4"}.icofont-law-protect:before{content:"\ebc5"}.icofont-law-scales:before{content:"\ebc6"}.icofont-law:before{content:"\ebc7"}.icofont-lawyer-alt-1:before{content:"\ebc8"}.icofont-lawyer-alt-2:before{content:"\ebc9"}.icofont-lawyer:before{content:"\ebca"}.icofont-legal:before{content:"\ebcb"}.icofont-pistol:before{content:"\ebcc"}.icofont-police-badge:before{content:"\ebcd"}.icofont-police-cap:before{content:"\ebce"}.icofont-police-car-alt-1:before{content:"\ebcf"}.icofont-police-car-alt-2:before{content:"\ebd0"}.icofont-police-car:before{content:"\ebd1"}.icofont-police-hat:before{content:"\ebd2"}.icofont-police-van:before{content:"\ebd3"}.icofont-police:before{content:"\ebd4"}.icofont-thief-alt:before{content:"\ebd5"}.icofont-thief:before{content:"\ebd6"}.icofont-abacus-alt:before{content:"\ebd7"}.icofont-abacus:before{content:"\ebd8"}.icofont-angle-180:before{content:"\ebd9"}.icofont-angle-45:before{content:"\ebda"}.icofont-angle-90:before{content:"\ebdb"}.icofont-angle:before{content:"\ebdc"}.icofont-calculator-alt-1:before{content:"\ebdd"}.icofont-calculator-alt-2:before{content:"\ebde"}.icofont-calculator:before{content:"\ebdf"}.icofont-circle-ruler-alt:before{content:"\ebe0"}.icofont-circle-ruler:before{content:"\ebe1"}.icofont-compass-alt-1:before{content:"\ebe2"}.icofont-compass-alt-2:before{content:"\ebe3"}.icofont-compass-alt-3:before{content:"\ebe4"}.icofont-compass-alt-4:before{content:"\ebe5"}.icofont-golden-ratio:before{content:"\ebe6"}.icofont-marker-alt-1:before{content:"\ebe7"}.icofont-marker-alt-2:before{content:"\ebe8"}.icofont-marker-alt-3:before{content:"\ebe9"}.icofont-marker:before{content:"\ebea"}.icofont-math:before{content:"\ebeb"}.icofont-mathematical-alt-1:before{content:"\ebec"}.icofont-mathematical-alt-2:before{content:"\ebed"}.icofont-mathematical:before{content:"\ebee"}.icofont-pen-alt-1:before{content:"\ebef"}.icofont-pen-alt-2:before{content:"\ebf0"}.icofont-pen-alt-3:before{content:"\ebf1"}.icofont-pen-holder-alt-1:before{content:"\ebf2"}.icofont-pen-holder:before{content:"\ebf3"}.icofont-pen:before{content:"\ebf4"}.icofont-pencil-alt-1:before{content:"\ebf5"}.icofont-pencil-alt-2:before{content:"\ebf6"}.icofont-pencil-alt-3:before{content:"\ebf7"}.icofont-pencil-alt-4:before{content:"\ebf8"}.icofont-pencil:before{content:"\ebf9"}.icofont-ruler-alt-1:before{content:"\ebfa"}.icofont-ruler-alt-2:before{content:"\ebfb"}.icofont-ruler-compass-alt:before{content:"\ebfc"}.icofont-ruler-compass:before{content:"\ebfd"}.icofont-ruler-pencil-alt-1:before{content:"\ebfe"}.icofont-ruler-pencil-alt-2:before{content:"\ebff"}.icofont-ruler-pencil:before{content:"\ec00"}.icofont-ruler:before{content:"\ec01"}.icofont-rulers-alt:before{content:"\ec02"}.icofont-rulers:before{content:"\ec03"}.icofont-square-root:before{content:"\ec04"}.icofont-ui-calculator:before{content:"\ec05"}.icofont-aids:before{content:"\ec06"}.icofont-ambulance-crescent:before{content:"\ec07"}.icofont-ambulance-cross:before{content:"\ec08"}.icofont-ambulance:before{content:"\ec09"}.icofont-autism:before{content:"\ec0a"}.icofont-bandage:before{content:"\ec0b"}.icofont-blind:before{content:"\ec0c"}.icofont-blood-drop:before{content:"\ec0d"}.icofont-blood-test:before{content:"\ec0e"}.icofont-blood:before{content:"\ec0f"}.icofont-brain-alt:before{content:"\ec10"}.icofont-brain:before{content:"\ec11"}.icofont-capsule:before{content:"\ec12"}.icofont-crutch:before{content:"\ec13"}.icofont-disabled:before{content:"\ec14"}.icofont-dna-alt-1:before{content:"\ec15"}.icofont-dna-alt-2:before{content:"\ec16"}.icofont-dna:before{content:"\ec17"}.icofont-doctor-alt:before{content:"\ec18"}.icofont-doctor:before{content:"\ec19"}.icofont-drug-pack:before{content:"\ec1a"}.icofont-drug:before{content:"\ec1b"}.icofont-first-aid-alt:before{content:"\ec1c"}.icofont-first-aid:before{content:"\ec1d"}.icofont-heart-beat-alt:before{content:"\ec1e"}.icofont-heart-beat:before{content:"\ec1f"}.icofont-heartbeat:before{content:"\ec20"}.icofont-herbal:before{content:"\ec21"}.icofont-hospital:before{content:"\ec22"}.icofont-icu:before{content:"\ec23"}.icofont-injection-syringe:before{content:"\ec24"}.icofont-laboratory:before{content:"\ec25"}.icofont-medical-sign-alt:before{content:"\ec26"}.icofont-medical-sign:before{content:"\ec27"}.icofont-nurse-alt:before{content:"\ec28"}.icofont-nurse:before{content:"\ec29"}.icofont-nursing-home:before{content:"\ec2a"}.icofont-operation-theater:before{content:"\ec2b"}.icofont-paralysis-disability:before{content:"\ec2c"}.icofont-patient-bed:before{content:"\ec2d"}.icofont-patient-file:before{content:"\ec2e"}.icofont-pills:before{content:"\ec2f"}.icofont-prescription:before{content:"\ec30"}.icofont-pulse:before{content:"\ec31"}.icofont-stethoscope-alt:before{content:"\ec32"}.icofont-stethoscope:before{content:"\ec33"}.icofont-stretcher:before{content:"\ec34"}.icofont-surgeon-alt:before{content:"\ec35"}.icofont-surgeon:before{content:"\ec36"}.icofont-tablets:before{content:"\ec37"}.icofont-test-bottle:before{content:"\ec38"}.icofont-test-tube:before{content:"\ec39"}.icofont-thermometer-alt:before{content:"\ec3a"}.icofont-thermometer:before{content:"\ec3b"}.icofont-tooth:before{content:"\ec3c"}.icofont-xray:before{content:"\ec3d"}.icofont-ui-add:before{content:"\ec3e"}.icofont-ui-alarm:before{content:"\ec3f"}.icofont-ui-battery:before{content:"\ec40"}.icofont-ui-block:before{content:"\ec41"}.icofont-ui-bluetooth:before{content:"\ec42"}.icofont-ui-brightness:before{content:"\ec43"}.icofont-ui-browser:before{content:"\ec44"}.icofont-ui-calendar:before{content:"\ec45"}.icofont-ui-call:before{content:"\ec46"}.icofont-ui-camera:before{content:"\ec47"}.icofont-ui-cart:before{content:"\ec48"}.icofont-ui-cell-phone:before{content:"\ec49"}.icofont-ui-chat:before{content:"\ec4a"}.icofont-ui-check:before{content:"\ec4b"}.icofont-ui-clip-board:before{content:"\ec4c"}.icofont-ui-clip:before{content:"\ec4d"}.icofont-ui-clock:before{content:"\ec4e"}.icofont-ui-close:before{content:"\ec4f"}.icofont-ui-contact-list:before{content:"\ec50"}.icofont-ui-copy:before{content:"\ec51"}.icofont-ui-cut:before{content:"\ec52"}.icofont-ui-delete:before{content:"\ec53"}.icofont-ui-dial-phone:before{content:"\ec54"}.icofont-ui-edit:before{content:"\ec55"}.icofont-ui-email:before{content:"\ec56"}.icofont-ui-file:before{content:"\ec57"}.icofont-ui-fire-wall:before{content:"\ec58"}.icofont-ui-flash-light:before{content:"\ec59"}.icofont-ui-flight:before{content:"\ec5a"}.icofont-ui-folder:before{content:"\ec5b"}.icofont-ui-game:before{content:"\ec5c"}.icofont-ui-handicapped:before{content:"\ec5d"}.icofont-ui-home:before{content:"\ec5e"}.icofont-ui-image:before{content:"\ec5f"}.icofont-ui-laoding:before{content:"\ec60"}.icofont-ui-lock:before{content:"\ec61"}.icofont-ui-love-add:before{content:"\ec62"}.icofont-ui-love-broken:before{content:"\ec63"}.icofont-ui-love-remove:before{content:"\ec64"}.icofont-ui-love:before{content:"\ec65"}.icofont-ui-map:before{content:"\ec66"}.icofont-ui-message:before{content:"\ec67"}.icofont-ui-messaging:before{content:"\ec68"}.icofont-ui-movie:before{content:"\ec69"}.icofont-ui-music-player:before{content:"\ec6a"}.icofont-ui-music:before{content:"\ec6b"}.icofont-ui-mute:before{content:"\ec6c"}.icofont-ui-network:before{content:"\ec6d"}.icofont-ui-next:before{content:"\ec6e"}.icofont-ui-note:before{content:"\ec6f"}.icofont-ui-office:before{content:"\ec70"}.icofont-ui-password:before{content:"\ec71"}.icofont-ui-pause:before{content:"\ec72"}.icofont-ui-play-stop:before{content:"\ec73"}.icofont-ui-play:before{content:"\ec74"}.icofont-ui-pointer:before{content:"\ec75"}.icofont-ui-power:before{content:"\ec76"}.icofont-ui-press:before{content:"\ec77"}.icofont-ui-previous:before{content:"\ec78"}.icofont-ui-rate-add:before{content:"\ec79"}.icofont-ui-rate-blank:before{content:"\ec7a"}.icofont-ui-rate-remove:before{content:"\ec7b"}.icofont-ui-rating:before{content:"\ec7c"}.icofont-ui-record:before{content:"\ec7d"}.icofont-ui-remove:before{content:"\ec7e"}.icofont-ui-reply:before{content:"\ec7f"}.icofont-ui-rotation:before{content:"\ec80"}.icofont-ui-rss:before{content:"\ec81"}.icofont-ui-search:before{content:"\ec82"}.icofont-ui-settings:before{content:"\ec83"}.icofont-ui-social-link:before{content:"\ec84"}.icofont-ui-tag:before{content:"\ec85"}.icofont-ui-text-chat:before{content:"\ec86"}.icofont-ui-text-loading:before{content:"\ec87"}.icofont-ui-theme:before{content:"\ec88"}.icofont-ui-timer:before{content:"\ec89"}.icofont-ui-touch-phone:before{content:"\ec8a"}.icofont-ui-travel:before{content:"\ec8b"}.icofont-ui-unlock:before{content:"\ec8c"}.icofont-ui-user-group:before{content:"\ec8d"}.icofont-ui-user:before{content:"\ec8e"}.icofont-ui-v-card:before{content:"\ec8f"}.icofont-ui-video-chat:before{content:"\ec90"}.icofont-ui-video-message:before{content:"\ec91"}.icofont-ui-video-play:before{content:"\ec92"}.icofont-ui-video:before{content:"\ec93"}.icofont-ui-volume:before{content:"\ec94"}.icofont-ui-weather:before{content:"\ec95"}.icofont-ui-wifi:before{content:"\ec96"}.icofont-ui-zoom-in:before{content:"\ec97"}.icofont-ui-zoom-out:before{content:"\ec98"}.icofont-cassette-player:before{content:"\ec99"}.icofont-cassette:before{content:"\ec9a"}.icofont-forward:before{content:"\ec9b"}.icofont-guiter:before{content:"\ec9c"}.icofont-movie:before{content:"\ec9d"}.icofont-multimedia:before{content:"\ec9e"}.icofont-music-alt:before{content:"\ec9f"}.icofont-music-disk:before{content:"\eca0"}.icofont-music-note:before{content:"\eca1"}.icofont-music-notes:before{content:"\eca2"}.icofont-music:before{content:"\eca3"}.icofont-mute-volume:before{content:"\eca4"}.icofont-pause:before{content:"\eca5"}.icofont-play-alt-1:before{content:"\eca6"}.icofont-play-alt-2:before{content:"\eca7"}.icofont-play-alt-3:before{content:"\eca8"}.icofont-play-pause:before{content:"\eca9"}.icofont-play:before{content:"\ecaa"}.icofont-record:before{content:"\ecab"}.icofont-retro-music-disk:before{content:"\ecac"}.icofont-rewind:before{content:"\ecad"}.icofont-song-notes:before{content:"\ecae"}.icofont-sound-wave-alt:before{content:"\ecaf"}.icofont-sound-wave:before{content:"\ecb0"}.icofont-stop:before{content:"\ecb1"}.icofont-video-alt:before{content:"\ecb2"}.icofont-video-cam:before{content:"\ecb3"}.icofont-video-clapper:before{content:"\ecb4"}.icofont-video:before{content:"\ecb5"}.icofont-volume-bar:before{content:"\ecb6"}.icofont-volume-down:before{content:"\ecb7"}.icofont-volume-mute:before{content:"\ecb8"}.icofont-volume-off:before{content:"\ecb9"}.icofont-volume-up:before{content:"\ecba"}.icofont-youtube-play:before{content:"\ecbb"}.icofont-2checkout-alt:before{content:"\ecbc"}.icofont-2checkout:before{content:"\ecbd"}.icofont-amazon-alt:before{content:"\ecbe"}.icofont-amazon:before{content:"\ecbf"}.icofont-american-express-alt:before{content:"\ecc0"}.icofont-american-express:before{content:"\ecc1"}.icofont-apple-pay-alt:before{content:"\ecc2"}.icofont-apple-pay:before{content:"\ecc3"}.icofont-bank-transfer-alt:before{content:"\ecc4"}.icofont-bank-transfer:before{content:"\ecc5"}.icofont-braintree-alt:before{content:"\ecc6"}.icofont-braintree:before{content:"\ecc7"}.icofont-cash-on-delivery-alt:before{content:"\ecc8"}.icofont-cash-on-delivery:before{content:"\ecc9"}.icofont-diners-club-alt-1:before{content:"\ecca"}.icofont-diners-club-alt-2:before{content:"\eccb"}.icofont-diners-club-alt-3:before{content:"\eccc"}.icofont-diners-club:before{content:"\eccd"}.icofont-discover-alt:before{content:"\ecce"}.icofont-discover:before{content:"\eccf"}.icofont-eway-alt:before{content:"\ecd0"}.icofont-eway:before{content:"\ecd1"}.icofont-google-wallet-alt-1:before{content:"\ecd2"}.icofont-google-wallet-alt-2:before{content:"\ecd3"}.icofont-google-wallet-alt-3:before{content:"\ecd4"}.icofont-google-wallet:before{content:"\ecd5"}.icofont-jcb-alt:before{content:"\ecd6"}.icofont-jcb:before{content:"\ecd7"}.icofont-maestro-alt:before{content:"\ecd8"}.icofont-maestro:before{content:"\ecd9"}.icofont-mastercard-alt:before{content:"\ecda"}.icofont-mastercard:before{content:"\ecdb"}.icofont-payoneer-alt:before{content:"\ecdc"}.icofont-payoneer:before{content:"\ecdd"}.icofont-paypal-alt:before{content:"\ecde"}.icofont-paypal:before{content:"\ecdf"}.icofont-sage-alt:before{content:"\ece0"}.icofont-sage:before{content:"\ece1"}.icofont-skrill-alt:before{content:"\ece2"}.icofont-skrill:before{content:"\ece3"}.icofont-stripe-alt:before{content:"\ece4"}.icofont-stripe:before{content:"\ece5"}.icofont-visa-alt:before{content:"\ece6"}.icofont-visa-electron:before{content:"\ece7"}.icofont-visa:before{content:"\ece8"}.icofont-western-union-alt:before{content:"\ece9"}.icofont-western-union:before{content:"\ecea"}.icofont-boy:before{content:"\eceb"}.icofont-business-man-alt-1:before{content:"\ecec"}.icofont-business-man-alt-2:before{content:"\eced"}.icofont-business-man-alt-3:before{content:"\ecee"}.icofont-business-man:before{content:"\ecef"}.icofont-female:before{content:"\ecf0"}.icofont-funky-man:before{content:"\ecf1"}.icofont-girl-alt:before{content:"\ecf2"}.icofont-girl:before{content:"\ecf3"}.icofont-group:before{content:"\ecf4"}.icofont-hotel-boy-alt:before{content:"\ecf5"}.icofont-hotel-boy:before{content:"\ecf6"}.icofont-kid:before{content:"\ecf7"}.icofont-man-in-glasses:before{content:"\ecf8"}.icofont-people:before{content:"\ecf9"}.icofont-support:before{content:"\ecfa"}.icofont-user-alt-1:before{content:"\ecfb"}.icofont-user-alt-2:before{content:"\ecfc"}.icofont-user-alt-3:before{content:"\ecfd"}.icofont-user-alt-4:before{content:"\ecfe"}.icofont-user-alt-5:before{content:"\ecff"}.icofont-user-alt-6:before{content:"\ed00"}.icofont-user-alt-7:before{content:"\ed01"}.icofont-user-female:before{content:"\ed02"}.icofont-user-male:before{content:"\ed03"}.icofont-user-suited:before{content:"\ed04"}.icofont-user:before{content:"\ed05"}.icofont-users-alt-1:before{content:"\ed06"}.icofont-users-alt-2:before{content:"\ed07"}.icofont-users-alt-3:before{content:"\ed08"}.icofont-users-alt-4:before{content:"\ed09"}.icofont-users-alt-5:before{content:"\ed0a"}.icofont-users-alt-6:before{content:"\ed0b"}.icofont-users-social:before{content:"\ed0c"}.icofont-users:before{content:"\ed0d"}.icofont-waiter-alt:before{content:"\ed0e"}.icofont-waiter:before{content:"\ed0f"}.icofont-woman-in-glasses:before{content:"\ed10"}.icofont-search-1:before{content:"\ed11"}.icofont-search-2:before{content:"\ed12"}.icofont-search-document:before{content:"\ed13"}.icofont-search-folder:before{content:"\ed14"}.icofont-search-job:before{content:"\ed15"}.icofont-search-map:before{content:"\ed16"}.icofont-search-property:before{content:"\ed17"}.icofont-search-restaurant:before{content:"\ed18"}.icofont-search-stock:before{content:"\ed19"}.icofont-search-user:before{content:"\ed1a"}.icofont-search:before{content:"\ed1b"}.icofont-500px:before{content:"\ed1c"}.icofont-aim:before{content:"\ed1d"}.icofont-badoo:before{content:"\ed1e"}.icofont-baidu-tieba:before{content:"\ed1f"}.icofont-bbm-messenger:before{content:"\ed20"}.icofont-bebo:before{content:"\ed21"}.icofont-behance:before{content:"\ed22"}.icofont-blogger:before{content:"\ed23"}.icofont-bootstrap:before{content:"\ed24"}.icofont-brightkite:before{content:"\ed25"}.icofont-cloudapp:before{content:"\ed26"}.icofont-concrete5:before{content:"\ed27"}.icofont-delicious:before{content:"\ed28"}.icofont-designbump:before{content:"\ed29"}.icofont-designfloat:before{content:"\ed2a"}.icofont-deviantart:before{content:"\ed2b"}.icofont-digg:before{content:"\ed2c"}.icofont-dotcms:before{content:"\ed2d"}.icofont-dribbble:before{content:"\ed2e"}.icofont-dribble:before{content:"\ed2f"}.icofont-dropbox:before{content:"\ed30"}.icofont-ebuddy:before{content:"\ed31"}.icofont-ello:before{content:"\ed32"}.icofont-ember:before{content:"\ed33"}.icofont-envato:before{content:"\ed34"}.icofont-evernote:before{content:"\ed35"}.icofont-facebook-messenger:before{content:"\ed36"}.icofont-facebook:before{content:"\ed37"}.icofont-feedburner:before{content:"\ed38"}.icofont-flikr:before{content:"\ed39"}.icofont-folkd:before{content:"\ed3a"}.icofont-foursquare:before{content:"\ed3b"}.icofont-friendfeed:before{content:"\ed3c"}.icofont-ghost:before{content:"\ed3d"}.icofont-github:before{content:"\ed3e"}.icofont-gnome:before{content:"\ed3f"}.icofont-google-buzz:before{content:"\ed40"}.icofont-google-hangouts:before{content:"\ed41"}.icofont-google-map:before{content:"\ed42"}.icofont-google-plus:before{content:"\ed43"}.icofont-google-talk:before{content:"\ed44"}.icofont-hype-machine:before{content:"\ed45"}.icofont-instagram:before{content:"\ed46"}.icofont-kakaotalk:before{content:"\ed47"}.icofont-kickstarter:before{content:"\ed48"}.icofont-kik:before{content:"\ed49"}.icofont-kiwibox:before{content:"\ed4a"}.icofont-line-messenger:before{content:"\ed4b"}.icofont-line:before{content:"\ed4c"}.icofont-linkedin:before{content:"\ed4d"}.icofont-linux-mint:before{content:"\ed4e"}.icofont-live-messenger:before{content:"\ed4f"}.icofont-livejournal:before{content:"\ed50"}.icofont-magento:before{content:"\ed51"}.icofont-meetme:before{content:"\ed52"}.icofont-meetup:before{content:"\ed53"}.icofont-mixx:before{content:"\ed54"}.icofont-newsvine:before{content:"\ed55"}.icofont-nimbuss:before{content:"\ed56"}.icofont-odnoklassniki:before{content:"\ed57"}.icofont-opencart:before{content:"\ed58"}.icofont-oscommerce:before{content:"\ed59"}.icofont-pandora:before{content:"\ed5a"}.icofont-photobucket:before{content:"\ed5b"}.icofont-picasa:before{content:"\ed5c"}.icofont-pinterest:before{content:"\ed5d"}.icofont-prestashop:before{content:"\ed5e"}.icofont-qik:before{content:"\ed5f"}.icofont-qq:before{content:"\ed60"}.icofont-readernaut:before{content:"\ed61"}.icofont-reddit:before{content:"\ed62"}.icofont-renren:before{content:"\ed63"}.icofont-rss:before{content:"\ed64"}.icofont-shopify:before{content:"\ed65"}.icofont-silverstripe:before{content:"\ed66"}.icofont-skype:before{content:"\ed67"}.icofont-slack:before{content:"\ed68"}.icofont-slashdot:before{content:"\ed69"}.icofont-slidshare:before{content:"\ed6a"}.icofont-smugmug:before{content:"\ed6b"}.icofont-snapchat:before{content:"\ed6c"}.icofont-soundcloud:before{content:"\ed6d"}.icofont-spotify:before{content:"\ed6e"}.icofont-stack-exchange:before{content:"\ed6f"}.icofont-stack-overflow:before{content:"\ed70"}.icofont-steam:before{content:"\ed71"}.icofont-stumbleupon:before{content:"\ed72"}.icofont-tagged:before{content:"\ed73"}.icofont-technorati:before{content:"\ed74"}.icofont-telegram:before{content:"\ed75"}.icofont-tinder:before{content:"\ed76"}.icofont-trello:before{content:"\ed77"}.icofont-tumblr:before{content:"\ed78"}.icofont-twitch:before{content:"\ed79"}.icofont-twitter:before{content:"\ed7a"}.icofont-typo3:before{content:"\ed7b"}.icofont-ubercart:before{content:"\ed7c"}.icofont-viber:before{content:"\ed7d"}.icofont-viddler:before{content:"\ed7e"}.icofont-vimeo:before{content:"\ed7f"}.icofont-vine:before{content:"\ed80"}.icofont-virb:before{content:"\ed81"}.icofont-virtuemart:before{content:"\ed82"}.icofont-vk:before{content:"\ed83"}.icofont-wechat:before{content:"\ed84"}.icofont-weibo:before{content:"\ed85"}.icofont-whatsapp:before{content:"\ed86"}.icofont-xing:before{content:"\ed87"}.icofont-yahoo:before{content:"\ed88"}.icofont-yelp:before{content:"\ed89"}.icofont-youku:before{content:"\ed8a"}.icofont-youtube:before{content:"\ed8b"}.icofont-zencart:before{content:"\ed8c"}.icofont-badminton-birdie:before{content:"\ed8d"}.icofont-baseball:before{content:"\ed8e"}.icofont-baseballer:before{content:"\ed8f"}.icofont-basketball-hoop:before{content:"\ed90"}.icofont-basketball:before{content:"\ed91"}.icofont-billiard-ball:before{content:"\ed92"}.icofont-boot-alt-1:before{content:"\ed93"}.icofont-boot-alt-2:before{content:"\ed94"}.icofont-boot:before{content:"\ed95"}.icofont-bowling-alt:before{content:"\ed96"}.icofont-bowling:before{content:"\ed97"}.icofont-canoe:before{content:"\ed98"}.icofont-cheer-leader:before{content:"\ed99"}.icofont-climbing:before{content:"\ed9a"}.icofont-corner:before{content:"\ed9b"}.icofont-field-alt:before{content:"\ed9c"}.icofont-field:before{content:"\ed9d"}.icofont-football-alt:before{content:"\ed9e"}.icofont-football-american:before{content:"\ed9f"}.icofont-football:before{content:"\eda0"}.icofont-foul:before{content:"\eda1"}.icofont-goal-keeper:before{content:"\eda2"}.icofont-goal:before{content:"\eda3"}.icofont-golf-alt:before{content:"\eda4"}.icofont-golf-bag:before{content:"\eda5"}.icofont-golf-cart:before{content:"\eda6"}.icofont-golf-field:before{content:"\eda7"}.icofont-golf:before{content:"\eda8"}.icofont-golfer:before{content:"\eda9"}.icofont-helmet:before{content:"\edaa"}.icofont-hockey-alt:before{content:"\edab"}.icofont-hockey:before{content:"\edac"}.icofont-ice-skate:before{content:"\edad"}.icofont-jersey-alt:before{content:"\edae"}.icofont-jersey:before{content:"\edaf"}.icofont-jumping:before{content:"\edb0"}.icofont-kick:before{content:"\edb1"}.icofont-leg:before{content:"\edb2"}.icofont-match-review:before{content:"\edb3"}.icofont-medal-sport:before{content:"\edb4"}.icofont-offside:before{content:"\edb5"}.icofont-olympic-logo:before{content:"\edb6"}.icofont-olympic:before{content:"\edb7"}.icofont-padding:before{content:"\edb8"}.icofont-penalty-card:before{content:"\edb9"}.icofont-racer:before{content:"\edba"}.icofont-racing-car:before{content:"\edbb"}.icofont-racing-flag-alt:before{content:"\edbc"}.icofont-racing-flag:before{content:"\edbd"}.icofont-racings-wheel:before{content:"\edbe"}.icofont-referee:before{content:"\edbf"}.icofont-refree-jersey:before{content:"\edc0"}.icofont-result-sport:before{content:"\edc1"}.icofont-rugby-ball:before{content:"\edc2"}.icofont-rugby-player:before{content:"\edc3"}.icofont-rugby:before{content:"\edc4"}.icofont-runner-alt-1:before{content:"\edc5"}.icofont-runner-alt-2:before{content:"\edc6"}.icofont-runner:before{content:"\edc7"}.icofont-score-board:before{content:"\edc8"}.icofont-skiing-man:before{content:"\edc9"}.icofont-skydiving-goggles:before{content:"\edca"}.icofont-snow-mobile:before{content:"\edcb"}.icofont-steering:before{content:"\edcc"}.icofont-stopwatch:before{content:"\edcd"}.icofont-substitute:before{content:"\edce"}.icofont-swimmer:before{content:"\edcf"}.icofont-table-tennis:before{content:"\edd0"}.icofont-team-alt:before{content:"\edd1"}.icofont-team:before{content:"\edd2"}.icofont-tennis-player:before{content:"\edd3"}.icofont-tennis:before{content:"\edd4"}.icofont-tracking:before{content:"\edd5"}.icofont-trophy-alt:before{content:"\edd6"}.icofont-trophy:before{content:"\edd7"}.icofont-volleyball-alt:before{content:"\edd8"}.icofont-volleyball-fire:before{content:"\edd9"}.icofont-volleyball:before{content:"\edda"}.icofont-water-bottle:before{content:"\eddb"}.icofont-whistle-alt:before{content:"\eddc"}.icofont-whistle:before{content:"\eddd"}.icofont-win-trophy:before{content:"\edde"}.icofont-align-center:before{content:"\eddf"}.icofont-align-left:before{content:"\ede0"}.icofont-align-right:before{content:"\ede1"}.icofont-all-caps:before{content:"\ede2"}.icofont-bold:before{content:"\ede3"}.icofont-brush:before{content:"\ede4"}.icofont-clip-board:before{content:"\ede5"}.icofont-code-alt:before{content:"\ede6"}.icofont-color-bucket:before{content:"\ede7"}.icofont-color-picker:before{content:"\ede8"}.icofont-copy-invert:before{content:"\ede9"}.icofont-copy:before{content:"\edea"}.icofont-cut:before{content:"\edeb"}.icofont-delete-alt:before{content:"\edec"}.icofont-edit-alt:before{content:"\eded"}.icofont-eraser-alt:before{content:"\edee"}.icofont-font:before{content:"\edef"}.icofont-heading:before{content:"\edf0"}.icofont-indent:before{content:"\edf1"}.icofont-italic-alt:before{content:"\edf2"}.icofont-italic:before{content:"\edf3"}.icofont-justify-all:before{content:"\edf4"}.icofont-justify-center:before{content:"\edf5"}.icofont-justify-left:before{content:"\edf6"}.icofont-justify-right:before{content:"\edf7"}.icofont-link-broken:before{content:"\edf8"}.icofont-outdent:before{content:"\edf9"}.icofont-paper-clip:before{content:"\edfa"}.icofont-paragraph:before{content:"\edfb"}.icofont-pin:before{content:"\edfc"}.icofont-printer:before{content:"\edfd"}.icofont-redo:before{content:"\edfe"}.icofont-rotation:before{content:"\edff"}.icofont-save:before{content:"\ee00"}.icofont-small-cap:before{content:"\ee01"}.icofont-strike-through:before{content:"\ee02"}.icofont-sub-listing:before{content:"\ee03"}.icofont-subscript:before{content:"\ee04"}.icofont-superscript:before{content:"\ee05"}.icofont-table:before{content:"\ee06"}.icofont-text-height:before{content:"\ee07"}.icofont-text-width:before{content:"\ee08"}.icofont-trash:before{content:"\ee09"}.icofont-underline:before{content:"\ee0a"}.icofont-undo:before{content:"\ee0b"}.icofont-air-balloon:before{content:"\ee0c"}.icofont-airplane-alt:before{content:"\ee0d"}.icofont-airplane:before{content:"\ee0e"}.icofont-articulated-truck:before{content:"\ee0f"}.icofont-auto-mobile:before{content:"\ee10"}.icofont-auto-rickshaw:before{content:"\ee11"}.icofont-bicycle-alt-1:before{content:"\ee12"}.icofont-bicycle-alt-2:before{content:"\ee13"}.icofont-bicycle:before{content:"\ee14"}.icofont-bus-alt-1:before{content:"\ee15"}.icofont-bus-alt-2:before{content:"\ee16"}.icofont-bus-alt-3:before{content:"\ee17"}.icofont-bus:before{content:"\ee18"}.icofont-cab:before{content:"\ee19"}.icofont-cable-car:before{content:"\ee1a"}.icofont-car-alt-1:before{content:"\ee1b"}.icofont-car-alt-2:before{content:"\ee1c"}.icofont-car-alt-3:before{content:"\ee1d"}.icofont-car-alt-4:before{content:"\ee1e"}.icofont-car:before{content:"\ee1f"}.icofont-delivery-time:before{content:"\ee20"}.icofont-fast-delivery:before{content:"\ee21"}.icofont-fire-truck-alt:before{content:"\ee22"}.icofont-fire-truck:before{content:"\ee23"}.icofont-free-delivery:before{content:"\ee24"}.icofont-helicopter:before{content:"\ee25"}.icofont-motor-bike-alt:before{content:"\ee26"}.icofont-motor-bike:before{content:"\ee27"}.icofont-motor-biker:before{content:"\ee28"}.icofont-oil-truck:before{content:"\ee29"}.icofont-rickshaw:before{content:"\ee2a"}.icofont-rocket-alt-1:before{content:"\ee2b"}.icofont-rocket-alt-2:before{content:"\ee2c"}.icofont-rocket:before{content:"\ee2d"}.icofont-sail-boat-alt-1:before{content:"\ee2e"}.icofont-sail-boat-alt-2:before{content:"\ee2f"}.icofont-sail-boat:before{content:"\ee30"}.icofont-scooter:before{content:"\ee31"}.icofont-sea-plane:before{content:"\ee32"}.icofont-ship-alt:before{content:"\ee33"}.icofont-ship:before{content:"\ee34"}.icofont-speed-boat:before{content:"\ee35"}.icofont-taxi:before{content:"\ee36"}.icofont-tractor:before{content:"\ee37"}.icofont-train-line:before{content:"\ee38"}.icofont-train-steam:before{content:"\ee39"}.icofont-tram:before{content:"\ee3a"}.icofont-truck-alt:before{content:"\ee3b"}.icofont-truck-loaded:before{content:"\ee3c"}.icofont-truck:before{content:"\ee3d"}.icofont-van-alt:before{content:"\ee3e"}.icofont-van:before{content:"\ee3f"}.icofont-yacht:before{content:"\ee40"}.icofont-5-star-hotel:before{content:"\ee41"}.icofont-air-ticket:before{content:"\ee42"}.icofont-beach-bed:before{content:"\ee43"}.icofont-beach:before{content:"\ee44"}.icofont-camping-vest:before{content:"\ee45"}.icofont-direction-sign:before{content:"\ee46"}.icofont-hill-side:before{content:"\ee47"}.icofont-hill:before{content:"\ee48"}.icofont-hotel:before{content:"\ee49"}.icofont-island-alt:before{content:"\ee4a"}.icofont-island:before{content:"\ee4b"}.icofont-sandals-female:before{content:"\ee4c"}.icofont-sandals-male:before{content:"\ee4d"}.icofont-travelling:before{content:"\ee4e"}.icofont-breakdown:before{content:"\ee4f"}.icofont-celsius:before{content:"\ee50"}.icofont-clouds:before{content:"\ee51"}.icofont-cloudy:before{content:"\ee52"}.icofont-dust:before{content:"\ee53"}.icofont-eclipse:before{content:"\ee54"}.icofont-fahrenheit:before{content:"\ee55"}.icofont-forest-fire:before{content:"\ee56"}.icofont-full-night:before{content:"\ee57"}.icofont-full-sunny:before{content:"\ee58"}.icofont-hail-night:before{content:"\ee59"}.icofont-hail-rainy-night:before{content:"\ee5a"}.icofont-hail-rainy-sunny:before{content:"\ee5b"}.icofont-hail-rainy:before{content:"\ee5c"}.icofont-hail-sunny:before{content:"\ee5d"}.icofont-hail-thunder-night:before{content:"\ee5e"}.icofont-hail-thunder-sunny:before{content:"\ee5f"}.icofont-hail-thunder:before{content:"\ee60"}.icofont-hail:before{content:"\ee61"}.icofont-hill-night:before{content:"\ee62"}.icofont-hill-sunny:before{content:"\ee63"}.icofont-hurricane:before{content:"\ee64"}.icofont-meteor:before{content:"\ee65"}.icofont-night:before{content:"\ee66"}.icofont-rainy-night:before{content:"\ee67"}.icofont-rainy-sunny:before{content:"\ee68"}.icofont-rainy-thunder:before{content:"\ee69"}.icofont-rainy:before{content:"\ee6a"}.icofont-snow-alt:before{content:"\ee6b"}.icofont-snow-flake:before{content:"\ee6c"}.icofont-snow-temp:before{content:"\ee6d"}.icofont-snow:before{content:"\ee6e"}.icofont-snowy-hail:before{content:"\ee6f"}.icofont-snowy-night-hail:before{content:"\ee70"}.icofont-snowy-night-rainy:before{content:"\ee71"}.icofont-snowy-night:before{content:"\ee72"}.icofont-snowy-rainy:before{content:"\ee73"}.icofont-snowy-sunny-hail:before{content:"\ee74"}.icofont-snowy-sunny-rainy:before{content:"\ee75"}.icofont-snowy-sunny:before{content:"\ee76"}.icofont-snowy-thunder-night:before{content:"\ee77"}.icofont-snowy-thunder-sunny:before{content:"\ee78"}.icofont-snowy-thunder:before{content:"\ee79"}.icofont-snowy-windy-night:before{content:"\ee7a"}.icofont-snowy-windy-sunny:before{content:"\ee7b"}.icofont-snowy-windy:before{content:"\ee7c"}.icofont-snowy:before{content:"\ee7d"}.icofont-sun-alt:before{content:"\ee7e"}.icofont-sun-rise:before{content:"\ee7f"}.icofont-sun-set:before{content:"\ee80"}.icofont-sun:before{content:"\ee81"}.icofont-sunny-day-temp:before{content:"\ee82"}.icofont-sunny:before{content:"\ee83"}.icofont-thunder-light:before{content:"\ee84"}.icofont-tornado:before{content:"\ee85"}.icofont-umbrella-alt:before{content:"\ee86"}.icofont-umbrella:before{content:"\ee87"}.icofont-volcano:before{content:"\ee88"}.icofont-wave:before{content:"\ee89"}.icofont-wind-scale-0:before{content:"\ee8a"}.icofont-wind-scale-1:before{content:"\ee8b"}.icofont-wind-scale-10:before{content:"\ee8c"}.icofont-wind-scale-11:before{content:"\ee8d"}.icofont-wind-scale-12:before{content:"\ee8e"}.icofont-wind-scale-2:before{content:"\ee8f"}.icofont-wind-scale-3:before{content:"\ee90"}.icofont-wind-scale-4:before{content:"\ee91"}.icofont-wind-scale-5:before{content:"\ee92"}.icofont-wind-scale-6:before{content:"\ee93"}.icofont-wind-scale-7:before{content:"\ee94"}.icofont-wind-scale-8:before{content:"\ee95"}.icofont-wind-scale-9:before{content:"\ee96"}.icofont-wind-waves:before{content:"\ee97"}.icofont-wind:before{content:"\ee98"}.icofont-windy-hail:before{content:"\ee99"}.icofont-windy-night:before{content:"\ee9a"}.icofont-windy-raining:before{content:"\ee9b"}.icofont-windy-sunny:before{content:"\ee9c"}.icofont-windy-thunder-raining:before{content:"\ee9d"}.icofont-windy-thunder:before{content:"\ee9e"}.icofont-windy:before{content:"\ee9f"}.icofont-addons:before{content:"\eea0"}.icofont-address-book:before{content:"\eea1"}.icofont-adjust:before{content:"\eea2"}.icofont-alarm:before{content:"\eea3"}.icofont-anchor:before{content:"\eea4"}.icofont-archive:before{content:"\eea5"}.icofont-at:before{content:"\eea6"}.icofont-attachment:before{content:"\eea7"}.icofont-audio:before{content:"\eea8"}.icofont-automation:before{content:"\eea9"}.icofont-badge:before{content:"\eeaa"}.icofont-bag-alt:before{content:"\eeab"}.icofont-bag:before{content:"\eeac"}.icofont-ban:before{content:"\eead"}.icofont-bar-code:before{content:"\eeae"}.icofont-bars:before{content:"\eeaf"}.icofont-basket:before{content:"\eeb0"}.icofont-battery-empty:before{content:"\eeb1"}.icofont-battery-full:before{content:"\eeb2"}.icofont-battery-half:before{content:"\eeb3"}.icofont-battery-low:before{content:"\eeb4"}.icofont-beaker:before{content:"\eeb5"}.icofont-beard:before{content:"\eeb6"}.icofont-bed:before{content:"\eeb7"}.icofont-bell:before{content:"\eeb8"}.icofont-beverage:before{content:"\eeb9"}.icofont-bill:before{content:"\eeba"}.icofont-bin:before{content:"\eebb"}.icofont-binary:before{content:"\eebc"}.icofont-binoculars:before{content:"\eebd"}.icofont-bluetooth:before{content:"\eebe"}.icofont-bomb:before{content:"\eebf"}.icofont-book-mark:before{content:"\eec0"}.icofont-box:before{content:"\eec1"}.icofont-briefcase:before{content:"\eec2"}.icofont-broken:before{content:"\eec3"}.icofont-bucket:before{content:"\eec4"}.icofont-bucket1:before{content:"\eec5"}.icofont-bucket2:before{content:"\eec6"}.icofont-bug:before{content:"\eec7"}.icofont-building:before{content:"\eec8"}.icofont-bulb-alt:before{content:"\eec9"}.icofont-bullet:before{content:"\eeca"}.icofont-bullhorn:before{content:"\eecb"}.icofont-bullseye:before{content:"\eecc"}.icofont-calendar:before{content:"\eecd"}.icofont-camera-alt:before{content:"\eece"}.icofont-camera:before{content:"\eecf"}.icofont-card:before{content:"\eed0"}.icofont-cart-alt:before{content:"\eed1"}.icofont-cart:before{content:"\eed2"}.icofont-cc:before{content:"\eed3"}.icofont-charging:before{content:"\eed4"}.icofont-chat:before{content:"\eed5"}.icofont-check-alt:before{content:"\eed6"}.icofont-check-circled:before{content:"\eed7"}.icofont-check:before{content:"\eed8"}.icofont-checked:before{content:"\eed9"}.icofont-children-care:before{content:"\eeda"}.icofont-clip:before{content:"\eedb"}.icofont-clock-time:before{content:"\eedc"}.icofont-close-circled:before{content:"\eedd"}.icofont-close-line-circled:before{content:"\eede"}.icofont-close-line-squared-alt:before{content:"\eedf"}.icofont-close-line-squared:before{content:"\eee0"}.icofont-close-line:before{content:"\eee1"}.icofont-close-squared-alt:before{content:"\eee2"}.icofont-close-squared:before{content:"\eee3"}.icofont-close:before{content:"\eee4"}.icofont-cloud-download:before{content:"\eee5"}.icofont-cloud-refresh:before{content:"\eee6"}.icofont-cloud-upload:before{content:"\eee7"}.icofont-cloud:before{content:"\eee8"}.icofont-code-not-allowed:before{content:"\eee9"}.icofont-code:before{content:"\eeea"}.icofont-comment:before{content:"\eeeb"}.icofont-compass-alt:before{content:"\eeec"}.icofont-compass:before{content:"\eeed"}.icofont-computer:before{content:"\eeee"}.icofont-connection:before{content:"\eeef"}.icofont-console:before{content:"\eef0"}.icofont-contacts:before{content:"\eef1"}.icofont-contrast:before{content:"\eef2"}.icofont-copyright:before{content:"\eef3"}.icofont-credit-card:before{content:"\eef4"}.icofont-crop:before{content:"\eef5"}.icofont-crown:before{content:"\eef6"}.icofont-cube:before{content:"\eef7"}.icofont-cubes:before{content:"\eef8"}.icofont-dashboard-web:before{content:"\eef9"}.icofont-dashboard:before{content:"\eefa"}.icofont-data:before{content:"\eefb"}.icofont-database-add:before{content:"\eefc"}.icofont-database-locked:before{content:"\eefd"}.icofont-database-remove:before{content:"\eefe"}.icofont-database:before{content:"\eeff"}.icofont-delete:before{content:"\ef00"}.icofont-diamond:before{content:"\ef01"}.icofont-dice-multiple:before{content:"\ef02"}.icofont-dice:before{content:"\ef03"}.icofont-disc:before{content:"\ef04"}.icofont-diskette:before{content:"\ef05"}.icofont-document-folder:before{content:"\ef06"}.icofont-download-alt:before{content:"\ef07"}.icofont-download:before{content:"\ef08"}.icofont-downloaded:before{content:"\ef09"}.icofont-drag:before{content:"\ef0a"}.icofont-drag1:before{content:"\ef0b"}.icofont-drag2:before{content:"\ef0c"}.icofont-drag3:before{content:"\ef0d"}.icofont-earth:before{content:"\ef0e"}.icofont-ebook:before{content:"\ef0f"}.icofont-edit:before{content:"\ef10"}.icofont-eject:before{content:"\ef11"}.icofont-email:before{content:"\ef12"}.icofont-envelope-open:before{content:"\ef13"}.icofont-envelope:before{content:"\ef14"}.icofont-eraser:before{content:"\ef15"}.icofont-error:before{content:"\ef16"}.icofont-excavator:before{content:"\ef17"}.icofont-exchange:before{content:"\ef18"}.icofont-exclamation-circle:before{content:"\ef19"}.icofont-exclamation-square:before{content:"\ef1a"}.icofont-exclamation-tringle:before{content:"\ef1b"}.icofont-exclamation:before{content:"\ef1c"}.icofont-exit:before{content:"\ef1d"}.icofont-expand:before{content:"\ef1e"}.icofont-external-link:before{content:"\ef1f"}.icofont-external:before{content:"\ef20"}.icofont-eye-alt:before{content:"\ef21"}.icofont-eye-blocked:before{content:"\ef22"}.icofont-eye-dropper:before{content:"\ef23"}.icofont-eye:before{content:"\ef24"}.icofont-favourite:before{content:"\ef25"}.icofont-fax:before{content:"\ef26"}.icofont-file-fill:before{content:"\ef27"}.icofont-film:before{content:"\ef28"}.icofont-filter:before{content:"\ef29"}.icofont-fire-alt:before{content:"\ef2a"}.icofont-fire-burn:before{content:"\ef2b"}.icofont-fire:before{content:"\ef2c"}.icofont-flag-alt-1:before{content:"\ef2d"}.icofont-flag-alt-2:before{content:"\ef2e"}.icofont-flag:before{content:"\ef2f"}.icofont-flame-torch:before{content:"\ef30"}.icofont-flash-light:before{content:"\ef31"}.icofont-flash:before{content:"\ef32"}.icofont-flask:before{content:"\ef33"}.icofont-focus:before{content:"\ef34"}.icofont-folder-open:before{content:"\ef35"}.icofont-folder:before{content:"\ef36"}.icofont-foot-print:before{content:"\ef37"}.icofont-garbage:before{content:"\ef38"}.icofont-gear-alt:before{content:"\ef39"}.icofont-gear:before{content:"\ef3a"}.icofont-gears:before{content:"\ef3b"}.icofont-gift:before{content:"\ef3c"}.icofont-glass:before{content:"\ef3d"}.icofont-globe:before{content:"\ef3e"}.icofont-graffiti:before{content:"\ef3f"}.icofont-grocery:before{content:"\ef40"}.icofont-hand:before{content:"\ef41"}.icofont-hanger:before{content:"\ef42"}.icofont-hard-disk:before{content:"\ef43"}.icofont-heart-alt:before{content:"\ef44"}.icofont-heart:before{content:"\ef45"}.icofont-history:before{content:"\ef46"}.icofont-home:before{content:"\ef47"}.icofont-horn:before{content:"\ef48"}.icofont-hour-glass:before{content:"\ef49"}.icofont-id:before{content:"\ef4a"}.icofont-image:before{content:"\ef4b"}.icofont-inbox:before{content:"\ef4c"}.icofont-infinite:before{content:"\ef4d"}.icofont-info-circle:before{content:"\ef4e"}.icofont-info-square:before{content:"\ef4f"}.icofont-info:before{content:"\ef50"}.icofont-institution:before{content:"\ef51"}.icofont-interface:before{content:"\ef52"}.icofont-invisible:before{content:"\ef53"}.icofont-jacket:before{content:"\ef54"}.icofont-jar:before{content:"\ef55"}.icofont-jewlery:before{content:"\ef56"}.icofont-karate:before{content:"\ef57"}.icofont-key-hole:before{content:"\ef58"}.icofont-key:before{content:"\ef59"}.icofont-label:before{content:"\ef5a"}.icofont-lamp:before{content:"\ef5b"}.icofont-layers:before{content:"\ef5c"}.icofont-layout:before{content:"\ef5d"}.icofont-leaf:before{content:"\ef5e"}.icofont-leaflet:before{content:"\ef5f"}.icofont-learn:before{content:"\ef60"}.icofont-lego:before{content:"\ef61"}.icofont-lens:before{content:"\ef62"}.icofont-letter:before{content:"\ef63"}.icofont-letterbox:before{content:"\ef64"}.icofont-library:before{content:"\ef65"}.icofont-license:before{content:"\ef66"}.icofont-life-bouy:before{content:"\ef67"}.icofont-life-buoy:before{content:"\ef68"}.icofont-life-jacket:before{content:"\ef69"}.icofont-life-ring:before{content:"\ef6a"}.icofont-light-bulb:before{content:"\ef6b"}.icofont-lighter:before{content:"\ef6c"}.icofont-lightning-ray:before{content:"\ef6d"}.icofont-like:before{content:"\ef6e"}.icofont-line-height:before{content:"\ef6f"}.icofont-link-alt:before{content:"\ef70"}.icofont-link:before{content:"\ef71"}.icofont-list:before{content:"\ef72"}.icofont-listening:before{content:"\ef73"}.icofont-listine-dots:before{content:"\ef74"}.icofont-listing-box:before{content:"\ef75"}.icofont-listing-number:before{content:"\ef76"}.icofont-live-support:before{content:"\ef77"}.icofont-location-arrow:before{content:"\ef78"}.icofont-location-pin:before{content:"\ef79"}.icofont-lock:before{content:"\ef7a"}.icofont-login:before{content:"\ef7b"}.icofont-logout:before{content:"\ef7c"}.icofont-lollipop:before{content:"\ef7d"}.icofont-long-drive:before{content:"\ef7e"}.icofont-look:before{content:"\ef7f"}.icofont-loop:before{content:"\ef80"}.icofont-luggage:before{content:"\ef81"}.icofont-lunch:before{content:"\ef82"}.icofont-lungs:before{content:"\ef83"}.icofont-magic-alt:before{content:"\ef84"}.icofont-magic:before{content:"\ef85"}.icofont-magnet:before{content:"\ef86"}.icofont-mail-box:before{content:"\ef87"}.icofont-mail:before{content:"\ef88"}.icofont-male:before{content:"\ef89"}.icofont-map-pins:before{content:"\ef8a"}.icofont-map:before{content:"\ef8b"}.icofont-maximize:before{content:"\ef8c"}.icofont-measure:before{content:"\ef8d"}.icofont-medicine:before{content:"\ef8e"}.icofont-mega-phone:before{content:"\ef8f"}.icofont-megaphone-alt:before{content:"\ef90"}.icofont-megaphone:before{content:"\ef91"}.icofont-memorial:before{content:"\ef92"}.icofont-memory-card:before{content:"\ef93"}.icofont-mic-mute:before{content:"\ef94"}.icofont-mic:before{content:"\ef95"}.icofont-military:before{content:"\ef96"}.icofont-mill:before{content:"\ef97"}.icofont-minus-circle:before{content:"\ef98"}.icofont-minus-square:before{content:"\ef99"}.icofont-minus:before{content:"\ef9a"}.icofont-mobile-phone:before{content:"\ef9b"}.icofont-molecule:before{content:"\ef9c"}.icofont-money:before{content:"\ef9d"}.icofont-moon:before{content:"\ef9e"}.icofont-mop:before{content:"\ef9f"}.icofont-muffin:before{content:"\efa0"}.icofont-mustache:before{content:"\efa1"}.icofont-navigation-menu:before{content:"\efa2"}.icofont-navigation:before{content:"\efa3"}.icofont-network-tower:before{content:"\efa4"}.icofont-network:before{content:"\efa5"}.icofont-news:before{content:"\efa6"}.icofont-newspaper:before{content:"\efa7"}.icofont-no-smoking:before{content:"\efa8"}.icofont-not-allowed:before{content:"\efa9"}.icofont-notebook:before{content:"\efaa"}.icofont-notepad:before{content:"\efab"}.icofont-notification:before{content:"\efac"}.icofont-numbered:before{content:"\efad"}.icofont-opposite:before{content:"\efae"}.icofont-optic:before{content:"\efaf"}.icofont-options:before{content:"\efb0"}.icofont-package:before{content:"\efb1"}.icofont-page:before{content:"\efb2"}.icofont-paint:before{content:"\efb3"}.icofont-paper-plane:before{content:"\efb4"}.icofont-paperclip:before{content:"\efb5"}.icofont-papers:before{content:"\efb6"}.icofont-pay:before{content:"\efb7"}.icofont-penguin-linux:before{content:"\efb8"}.icofont-pestle:before{content:"\efb9"}.icofont-phone-circle:before{content:"\efba"}.icofont-phone:before{content:"\efbb"}.icofont-picture:before{content:"\efbc"}.icofont-pine:before{content:"\efbd"}.icofont-pixels:before{content:"\efbe"}.icofont-plugin:before{content:"\efbf"}.icofont-plus-circle:before{content:"\efc0"}.icofont-plus-square:before{content:"\efc1"}.icofont-plus:before{content:"\efc2"}.icofont-polygonal:before{content:"\efc3"}.icofont-power:before{content:"\efc4"}.icofont-price:before{content:"\efc5"}.icofont-print:before{content:"\efc6"}.icofont-puzzle:before{content:"\efc7"}.icofont-qr-code:before{content:"\efc8"}.icofont-queen:before{content:"\efc9"}.icofont-question-circle:before{content:"\efca"}.icofont-question-square:before{content:"\efcb"}.icofont-question:before{content:"\efcc"}.icofont-quote-left:before{content:"\efcd"}.icofont-quote-right:before{content:"\efce"}.icofont-random:before{content:"\efcf"}.icofont-recycle:before{content:"\efd0"}.icofont-refresh:before{content:"\efd1"}.icofont-repair:before{content:"\efd2"}.icofont-reply-all:before{content:"\efd3"}.icofont-reply:before{content:"\efd4"}.icofont-resize:before{content:"\efd5"}.icofont-responsive:before{content:"\efd6"}.icofont-retweet:before{content:"\efd7"}.icofont-road:before{content:"\efd8"}.icofont-robot:before{content:"\efd9"}.icofont-royal:before{content:"\efda"}.icofont-rss-feed:before{content:"\efdb"}.icofont-safety:before{content:"\efdc"}.icofont-sale-discount:before{content:"\efdd"}.icofont-satellite:before{content:"\efde"}.icofont-send-mail:before{content:"\efdf"}.icofont-server:before{content:"\efe0"}.icofont-settings-alt:before{content:"\efe1"}.icofont-settings:before{content:"\efe2"}.icofont-share-alt:before{content:"\efe3"}.icofont-share-boxed:before{content:"\efe4"}.icofont-share:before{content:"\efe5"}.icofont-shield:before{content:"\efe6"}.icofont-shopping-cart:before{content:"\efe7"}.icofont-sign-in:before{content:"\efe8"}.icofont-sign-out:before{content:"\efe9"}.icofont-signal:before{content:"\efea"}.icofont-site-map:before{content:"\efeb"}.icofont-smart-phone:before{content:"\efec"}.icofont-soccer:before{content:"\efed"}.icofont-sort-alt:before{content:"\efee"}.icofont-sort:before{content:"\efef"}.icofont-space:before{content:"\eff0"}.icofont-spanner:before{content:"\eff1"}.icofont-speech-comments:before{content:"\eff2"}.icofont-speed-meter:before{content:"\eff3"}.icofont-spinner-alt-1:before{content:"\eff4"}.icofont-spinner-alt-2:before{content:"\eff5"}.icofont-spinner-alt-3:before{content:"\eff6"}.icofont-spinner-alt-4:before{content:"\eff7"}.icofont-spinner-alt-5:before{content:"\eff8"}.icofont-spinner-alt-6:before{content:"\eff9"}.icofont-spinner:before{content:"\effa"}.icofont-spreadsheet:before{content:"\effb"}.icofont-square:before{content:"\effc"}.icofont-ssl-security:before{content:"\effd"}.icofont-star-alt-1:before{content:"\effe"}.icofont-star-alt-2:before{content:"\efff"}.icofont-star:before{content:"\f000"}.icofont-street-view:before{content:"\f001"}.icofont-support-faq:before{content:"\f002"}.icofont-tack-pin:before{content:"\f003"}.icofont-tag:before{content:"\f004"}.icofont-tags:before{content:"\f005"}.icofont-tasks-alt:before{content:"\f006"}.icofont-tasks:before{content:"\f007"}.icofont-telephone:before{content:"\f008"}.icofont-telescope:before{content:"\f009"}.icofont-terminal:before{content:"\f00a"}.icofont-thumbs-down:before{content:"\f00b"}.icofont-thumbs-up:before{content:"\f00c"}.icofont-tick-boxed:before{content:"\f00d"}.icofont-tick-mark:before{content:"\f00e"}.icofont-ticket:before{content:"\f00f"}.icofont-tie:before{content:"\f010"}.icofont-toggle-off:before{content:"\f011"}.icofont-toggle-on:before{content:"\f012"}.icofont-tools-alt-2:before{content:"\f013"}.icofont-tools:before{content:"\f014"}.icofont-touch:before{content:"\f015"}.icofont-traffic-light:before{content:"\f016"}.icofont-transparent:before{content:"\f017"}.icofont-tree:before{content:"\f018"}.icofont-unique-idea:before{content:"\f019"}.icofont-unlock:before{content:"\f01a"}.icofont-unlocked:before{content:"\f01b"}.icofont-upload-alt:before{content:"\f01c"}.icofont-upload:before{content:"\f01d"}.icofont-usb-drive:before{content:"\f01e"}.icofont-usb:before{content:"\f01f"}.icofont-vector-path:before{content:"\f020"}.icofont-verification-check:before{content:"\f021"}.icofont-wall-clock:before{content:"\f022"}.icofont-wall:before{content:"\f023"}.icofont-wallet:before{content:"\f024"}.icofont-warning-alt:before{content:"\f025"}.icofont-warning:before{content:"\f026"}.icofont-water-drop:before{content:"\f027"}.icofont-web:before{content:"\f028"}.icofont-wheelchair:before{content:"\f029"}.icofont-wifi-alt:before{content:"\f02a"}.icofont-wifi:before{content:"\f02b"}.icofont-world:before{content:"\f02c"}.icofont-zigzag:before{content:"\f02d"}.icofont-zipped:before{content:"\f02e"}.icofont-xs{font-size:.5em}.icofont-sm{font-size:.75em}.icofont-md{font-size:1.25em}.icofont-lg{font-size:1.5em}.icofont-1x{font-size:1em}.icofont-2x{font-size:2em}.icofont-3x{font-size:3em}.icofont-4x{font-size:4em}.icofont-5x{font-size:5em}.icofont-6x{font-size:6em}.icofont-7x{font-size:7em}.icofont-8x{font-size:8em}.icofont-9x{font-size:9em}.icofont-10x{font-size:10em}.icofont-fw{text-align:center;width:1.25em}.icofont-ul{list-style-type:none;padding-left:0;margin-left:0}.icofont-ul>li{position:relative;line-height:2em}.icofont-ul>li .icofont{display:inline-block;vertical-align:middle}.icofont-border{border:solid .08em #f1f1f1;border-radius:.1em;padding:.2em .25em .15em}.icofont-pull-left{float:left}.icofont-pull-right{float:right}.icofont.icofont-pull-left{margin-right:.3em}.icofont.icofont-pull-right{margin-left:.3em}.icofont-spin{-webkit-animation:icofont-spin 2s infinite linear;animation:icofont-spin 2s infinite linear;display:inline-block}.icofont-pulse{-webkit-animation:icofont-spin 1s infinite steps(8);animation:icofont-spin 1s infinite steps(8);display:inline-block}@-webkit-keyframes icofont-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes icofont-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.icofont-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.icofont-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.icofont-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.icofont-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.icofont-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.icofont-flip-horizontal.icofont-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .icofont-flip-horizontal,:root .icofont-flip-vertical,:root .icofont-rotate-180,:root .icofont-rotate-270,:root .icofont-rotate-90{-webkit-filter:none;filter:none;display:inline-block}.icofont-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} \ No newline at end of file diff --git a/hyperglass/static/images/brand.svg b/hyperglass/static/images/brand.svg new file mode 100644 index 0000000..f41bbdd --- /dev/null +++ b/hyperglass/static/images/brand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/hyperglass/static/images/favicon/android-chrome-192x192.png b/hyperglass/static/images/favicon/android-chrome-192x192.png new file mode 100644 index 0000000..31c7cfa Binary files /dev/null and b/hyperglass/static/images/favicon/android-chrome-192x192.png differ diff --git a/hyperglass/static/images/favicon/android-chrome-512x512.png b/hyperglass/static/images/favicon/android-chrome-512x512.png new file mode 100644 index 0000000..bf96f22 Binary files /dev/null and b/hyperglass/static/images/favicon/android-chrome-512x512.png differ diff --git a/hyperglass/static/images/favicon/apple-touch-icon.png b/hyperglass/static/images/favicon/apple-touch-icon.png new file mode 100644 index 0000000..7cc6389 Binary files /dev/null and b/hyperglass/static/images/favicon/apple-touch-icon.png differ diff --git a/hyperglass/static/images/favicon/browserconfig.xml b/hyperglass/static/images/favicon/browserconfig.xml new file mode 100644 index 0000000..17ebdbe --- /dev/null +++ b/hyperglass/static/images/favicon/browserconfig.xml @@ -0,0 +1,9 @@ + + + + + + #330036 + + + diff --git a/hyperglass/static/images/favicon/favicon-16x16.png b/hyperglass/static/images/favicon/favicon-16x16.png new file mode 100644 index 0000000..9f50d07 Binary files /dev/null and b/hyperglass/static/images/favicon/favicon-16x16.png differ diff --git a/hyperglass/static/images/favicon/favicon-32x32.png b/hyperglass/static/images/favicon/favicon-32x32.png new file mode 100644 index 0000000..0ea054b Binary files /dev/null and b/hyperglass/static/images/favicon/favicon-32x32.png differ diff --git a/hyperglass/static/images/favicon/favicon.ico b/hyperglass/static/images/favicon/favicon.ico new file mode 100644 index 0000000..1bd01da Binary files /dev/null and b/hyperglass/static/images/favicon/favicon.ico differ diff --git a/hyperglass/static/images/favicon/mstile-150x150.png b/hyperglass/static/images/favicon/mstile-150x150.png new file mode 100644 index 0000000..83cafb1 Binary files /dev/null and b/hyperglass/static/images/favicon/mstile-150x150.png differ diff --git a/hyperglass/static/images/favicon/safari-pinned-tab.svg b/hyperglass/static/images/favicon/safari-pinned-tab.svg new file mode 100644 index 0000000..ea55987 --- /dev/null +++ b/hyperglass/static/images/favicon/safari-pinned-tab.svg @@ -0,0 +1,64 @@ + + + + +Created by potrace 1.11, written by Peter Selinger 2001-2013 + + + + + + + diff --git a/hyperglass/static/images/favicon/site.webmanifest b/hyperglass/static/images/favicon/site.webmanifest new file mode 100644 index 0000000..19c9ccd --- /dev/null +++ b/hyperglass/static/images/favicon/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "hyperglass", + "short_name": "hyperglass", + "icons": [ + { + "src": "android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#330036", + "background_color": "#330036", + "display": "standalone" +} diff --git a/hyperglass/static/images/hyperglass-dark.png b/hyperglass/static/images/hyperglass-dark.png new file mode 100644 index 0000000..ab3e6ff Binary files /dev/null and b/hyperglass/static/images/hyperglass-dark.png differ diff --git a/hyperglass/static/images/hyperglass-light.png b/hyperglass/static/images/hyperglass-light.png new file mode 100644 index 0000000..d9da1d9 Binary files /dev/null and b/hyperglass/static/images/hyperglass-light.png differ diff --git a/hyperglass/static/js/hyperglass.js b/hyperglass/static/js/hyperglass.js new file mode 100644 index 0000000..8d553c7 --- /dev/null +++ b/hyperglass/static/js/hyperglass.js @@ -0,0 +1,258 @@ +// Get the list of routers for the selected Network + +var progress = ($('#progress')); +var resultsbox = ($('#resultsbox')); +resultsbox.hide(); +progress.hide(); +listNetworks (); +clientIP (); + +function clientIP () { + $.getJSON("https://jsonip.com?callback=?", function(data) { + clientip = data.ip + }); +}; + +function listNetworks () { + let networklist = $('#network'); + networklist.empty(); + networklist.prop('selectedIndex', 0); + const url = '/networks'; + $.getJSON(url, function (data) { + $.each(data, function (key, entry) { + networklist.append($('').attr('value', entry.network).text('AS'+entry.network)); + }) + }) +} + +// Update the list of routers for the *default* selected network +$( document ).ready(function(){ + var defaultasn = $ ( "#network" ).val(); + $.ajax({ + url: `/routers/${defaultasn}`, + context: document.body, + type: 'get', + success: function (data) { + selectedRouters = JSON.parse(data) + console.log(selectedRouters) + updateRouters(selectedRouters); + }, + error: function (err) { + console.log(err) + } + }) +}) + +$('#network').on('change', () => { + var asn = $("select[id=network").val() + $.ajax({ + url: `/routers/${asn}`, + type: 'get', + success: function (data) { + updateRouters(JSON.parse(data)); + + }, + error: function (err) { + console.log(err) + } + }) +}) + +function updateRouters (routers) { + routers.forEach(function (r) { + $('#router').append($("