From 787427beec760c90cefecc6be87b6616253ce1df Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" Date: Wed, 19 Apr 2023 15:32:01 +0200 Subject: [PATCH] Switch to remixicon --- nummi/main/forms.py | 4 +- ...nt_uicon_remove_category_uicon_and_more.py | 32 + nummi/main/models.py | 12 +- nummi/main/static/main/css/index.css | 6 - nummi/main/static/main/css/main.css | 9 +- .../main/static/main/remixicon/remixicon.css | 7419 ++++++++++++++++- .../static/main/remixicon/remixicon.woff2 | Bin 984 -> 139320 bytes nummi/main/templates/main/form/account.html | 2 +- nummi/main/templates/main/form/category.html | 2 +- nummi/main/templates/main/icons/checkmark.svg | 11 - nummi/main/templates/main/icons/error.svg | 1 - nummi/main/templates/main/index.html | 7 +- nummi/main/templates/main/plot/category.html | 2 +- nummi/main/templates/main/table/snapshot.html | 12 +- .../templates/main/table/transaction.html | 12 +- nummi/main/templatetags/main_extras.py | 5 + nummi/main/views.py | 2 +- 17 files changed, 7480 insertions(+), 58 deletions(-) create mode 100644 nummi/main/migrations/0027_remove_account_uicon_remove_category_uicon_and_more.py delete mode 100644 nummi/main/static/main/css/index.css delete mode 100644 nummi/main/templates/main/icons/checkmark.svg delete mode 100644 nummi/main/templates/main/icons/error.svg diff --git a/nummi/main/forms.py b/nummi/main/forms.py index 6047bda..d1e5de1 100644 --- a/nummi/main/forms.py +++ b/nummi/main/forms.py @@ -21,7 +21,7 @@ class AccountForm(NummiForm): model = Account fields = [ "name", - "uicon", + "icon", "default", ] @@ -31,7 +31,7 @@ class CategoryForm(NummiForm): model = Category fields = [ "name", - "uicon", + "icon", "budget", ] diff --git a/nummi/main/migrations/0027_remove_account_uicon_remove_category_uicon_and_more.py b/nummi/main/migrations/0027_remove_account_uicon_remove_category_uicon_and_more.py new file mode 100644 index 0000000..d0f386f --- /dev/null +++ b/nummi/main/migrations/0027_remove_account_uicon_remove_category_uicon_and_more.py @@ -0,0 +1,32 @@ +# Generated by Django 4.1.4 on 2023-04-19 13:10 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("main", "0026_alter_account_uicon_alter_category_uicon"), + ] + + operations = [ + migrations.RemoveField( + model_name="account", + name="uicon", + ), + migrations.RemoveField( + model_name="category", + name="uicon", + ), + migrations.AddField( + model_name="account", + name="icon", + field=models.SlugField(default="bank", max_length=16, verbose_name="Icon"), + ), + migrations.AddField( + model_name="category", + name="icon", + field=models.SlugField( + default="folder", max_length=16, verbose_name="Icon" + ), + ), + ] diff --git a/nummi/main/models.py b/nummi/main/models.py index a1eb97e..db6144f 100644 --- a/nummi/main/models.py +++ b/nummi/main/models.py @@ -43,9 +43,9 @@ def get_path(instance, filename): class Account(CustomModel): id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False) name = models.CharField(max_length=64, default=_("Account"), verbose_name=_("Name")) - uicon = models.CharField( - max_length=2, - default="🏦", + icon = models.SlugField( + max_length=16, + default="bank", verbose_name=_("Icon"), ) default = models.BooleanField(default=False, verbose_name=_("Default")) @@ -96,9 +96,9 @@ class Category(CustomModel): name = models.CharField( max_length=64, default=_("Category"), verbose_name=_("Name") ) - uicon = models.CharField( - max_length=2, - default="📂", + icon = models.SlugField( + max_length=16, + default="folder", verbose_name=_("Icon"), ) budget = models.BooleanField(default=True, verbose_name=_("Budget")) diff --git a/nummi/main/static/main/css/index.css b/nummi/main/static/main/css/index.css deleted file mode 100644 index 4df25da..0000000 --- a/nummi/main/static/main/css/index.css +++ /dev/null @@ -1,6 +0,0 @@ -a.big-link { - margin-right: 1em; -} -a.big-link > i { - margin-right: 0.5rem; -} diff --git a/nummi/main/static/main/css/main.css b/nummi/main/static/main/css/main.css index ff39283..22ea06a 100644 --- a/nummi/main/static/main/css/main.css +++ b/nummi/main/static/main/css/main.css @@ -159,6 +159,11 @@ footer { height: initial; } } -svg { - height: 1em; + +a.big-link { + margin-right: 1em; +} +[class^="ri-"] { + margin-right: 0.5em; + font-weight: normal; } diff --git a/nummi/main/static/main/remixicon/remixicon.css b/nummi/main/static/main/remixicon/remixicon.css index a58e163..be59fed 100644 --- a/nummi/main/static/main/remixicon/remixicon.css +++ b/nummi/main/static/main/remixicon/remixicon.css @@ -1,31 +1,7432 @@ /* +* Remix Icon v3.2.0 * https://remixicon.com * https://github.com/Remix-Design/RemixIcon +* * Copyright RemixIcon.com * Released under the Apache License Version 2.0 +* +* Date: 2023-04-15 */ - @font-face { font-family: "remixicon"; - src: url("remixicon.woff2?t=1681908066607") format("woff2"); + src: url("remixicon.woff2?t=1681573354175") format("woff2"); font-display: swap; } -[class^="ri-"], -[class*="ri-"] { - font-family: "remixicon" !important; +[class^="ri-"] { + font-family: "remixicon"; + display: inline-block; font-style: normal; text-align: center; width: 1.25em; - font-weight: normal; + text-decoration: none; } -.ri-attachement:before { +.ri-24-hours-fill:before { + content: "\ea01"; +} +.ri-24-hours-line:before { + content: "\ea02"; +} +.ri-4k-fill:before { + content: "\ea03"; +} +.ri-4k-line:before { + content: "\ea04"; +} +.ri-a-b:before { + content: "\ea05"; +} +.ri-account-box-fill:before { + content: "\ea06"; +} +.ri-account-box-line:before { + content: "\ea07"; +} +.ri-account-circle-fill:before { + content: "\ea08"; +} +.ri-account-circle-line:before { + content: "\ea09"; +} +.ri-account-pin-box-fill:before { + content: "\ea0a"; +} +.ri-account-pin-box-line:before { + content: "\ea0b"; +} +.ri-account-pin-circle-fill:before { + content: "\ea0c"; +} +.ri-account-pin-circle-line:before { + content: "\ea0d"; +} +.ri-add-box-fill:before { + content: "\ea0e"; +} +.ri-add-box-line:before { + content: "\ea0f"; +} +.ri-add-circle-fill:before { + content: "\ea10"; +} +.ri-add-circle-line:before { + content: "\ea11"; +} +.ri-add-fill:before { + content: "\ea12"; +} +.ri-add-line:before { + content: "\ea13"; +} +.ri-admin-fill:before { + content: "\ea14"; +} +.ri-admin-line:before { + content: "\ea15"; +} +.ri-advertisement-fill:before { + content: "\ea16"; +} +.ri-advertisement-line:before { + content: "\ea17"; +} +.ri-airplay-fill:before { + content: "\ea18"; +} +.ri-airplay-line:before { + content: "\ea19"; +} +.ri-alarm-fill:before { + content: "\ea1a"; +} +.ri-alarm-line:before { + content: "\ea1b"; +} +.ri-alarm-warning-fill:before { + content: "\ea1c"; +} +.ri-alarm-warning-line:before { + content: "\ea1d"; +} +.ri-album-fill:before { + content: "\ea1e"; +} +.ri-album-line:before { + content: "\ea1f"; +} +.ri-alert-fill:before { + content: "\ea20"; +} +.ri-alert-line:before { + content: "\ea21"; +} +.ri-aliens-fill:before { + content: "\ea22"; +} +.ri-aliens-line:before { + content: "\ea23"; +} +.ri-align-bottom:before { + content: "\ea24"; +} +.ri-align-center:before { + content: "\ea25"; +} +.ri-align-justify:before { + content: "\ea26"; +} +.ri-align-left:before { + content: "\ea27"; +} +.ri-align-right:before { + content: "\ea28"; +} +.ri-align-top:before { + content: "\ea29"; +} +.ri-align-vertically:before { + content: "\ea2a"; +} +.ri-alipay-fill:before { + content: "\ea2b"; +} +.ri-alipay-line:before { + content: "\ea2c"; +} +.ri-amazon-fill:before { + content: "\ea2d"; +} +.ri-amazon-line:before { + content: "\ea2e"; +} +.ri-anchor-fill:before { + content: "\ea2f"; +} +.ri-anchor-line:before { + content: "\ea30"; +} +.ri-ancient-gate-fill:before { + content: "\ea31"; +} +.ri-ancient-gate-line:before { + content: "\ea32"; +} +.ri-ancient-pavilion-fill:before { + content: "\ea33"; +} +.ri-ancient-pavilion-line:before { + content: "\ea34"; +} +.ri-android-fill:before { + content: "\ea35"; +} +.ri-android-line:before { + content: "\ea36"; +} +.ri-angularjs-fill:before { + content: "\ea37"; +} +.ri-angularjs-line:before { + content: "\ea38"; +} +.ri-anticlockwise-2-fill:before { + content: "\ea39"; +} +.ri-anticlockwise-2-line:before { + content: "\ea3a"; +} +.ri-anticlockwise-fill:before { + content: "\ea3b"; +} +.ri-anticlockwise-line:before { + content: "\ea3c"; +} +.ri-app-store-fill:before { + content: "\ea3d"; +} +.ri-app-store-line:before { + content: "\ea3e"; +} +.ri-apple-fill:before { + content: "\ea3f"; +} +.ri-apple-line:before { + content: "\ea40"; +} +.ri-apps-2-fill:before { + content: "\ea41"; +} +.ri-apps-2-line:before { + content: "\ea42"; +} +.ri-apps-fill:before { + content: "\ea43"; +} +.ri-apps-line:before { + content: "\ea44"; +} +.ri-archive-drawer-fill:before { + content: "\ea45"; +} +.ri-archive-drawer-line:before { + content: "\ea46"; +} +.ri-archive-fill:before { + content: "\ea47"; +} +.ri-archive-line:before { + content: "\ea48"; +} +.ri-arrow-down-circle-fill:before { + content: "\ea49"; +} +.ri-arrow-down-circle-line:before { + content: "\ea4a"; +} +.ri-arrow-down-fill:before { + content: "\ea4b"; +} +.ri-arrow-down-line:before { + content: "\ea4c"; +} +.ri-arrow-down-s-fill:before { + content: "\ea4d"; +} +.ri-arrow-down-s-line:before { + content: "\ea4e"; +} +.ri-arrow-drop-down-fill:before { + content: "\ea4f"; +} +.ri-arrow-drop-down-line:before { + content: "\ea50"; +} +.ri-arrow-drop-left-fill:before { + content: "\ea51"; +} +.ri-arrow-drop-left-line:before { + content: "\ea52"; +} +.ri-arrow-drop-right-fill:before { + content: "\ea53"; +} +.ri-arrow-drop-right-line:before { + content: "\ea54"; +} +.ri-arrow-drop-up-fill:before { + content: "\ea55"; +} +.ri-arrow-drop-up-line:before { + content: "\ea56"; +} +.ri-arrow-go-back-fill:before { + content: "\ea57"; +} +.ri-arrow-go-back-line:before { + content: "\ea58"; +} +.ri-arrow-go-forward-fill:before { + content: "\ea59"; +} +.ri-arrow-go-forward-line:before { + content: "\ea5a"; +} +.ri-arrow-left-circle-fill:before { + content: "\ea5b"; +} +.ri-arrow-left-circle-line:before { + content: "\ea5c"; +} +.ri-arrow-left-down-fill:before { + content: "\ea5d"; +} +.ri-arrow-left-down-line:before { + content: "\ea5e"; +} +.ri-arrow-left-fill:before { + content: "\ea5f"; +} +.ri-arrow-left-line:before { + content: "\ea60"; +} +.ri-arrow-left-right-fill:before { + content: "\ea61"; +} +.ri-arrow-left-right-line:before { + content: "\ea62"; +} +.ri-arrow-left-s-fill:before { + content: "\ea63"; +} +.ri-arrow-left-s-line:before { + content: "\ea64"; +} +.ri-arrow-left-up-fill:before { + content: "\ea65"; +} +.ri-arrow-left-up-line:before { + content: "\ea66"; +} +.ri-arrow-right-circle-fill:before { + content: "\ea67"; +} +.ri-arrow-right-circle-line:before { + content: "\ea68"; +} +.ri-arrow-right-down-fill:before { + content: "\ea69"; +} +.ri-arrow-right-down-line:before { + content: "\ea6a"; +} +.ri-arrow-right-fill:before { + content: "\ea6b"; +} +.ri-arrow-right-line:before { + content: "\ea6c"; +} +.ri-arrow-right-s-fill:before { + content: "\ea6d"; +} +.ri-arrow-right-s-line:before { + content: "\ea6e"; +} +.ri-arrow-right-up-fill:before { + content: "\ea6f"; +} +.ri-arrow-right-up-line:before { + content: "\ea70"; +} +.ri-arrow-up-circle-fill:before { + content: "\ea71"; +} +.ri-arrow-up-circle-line:before { + content: "\ea72"; +} +.ri-arrow-up-down-fill:before { + content: "\ea73"; +} +.ri-arrow-up-down-line:before { + content: "\ea74"; +} +.ri-arrow-up-fill:before { + content: "\ea75"; +} +.ri-arrow-up-line:before { + content: "\ea76"; +} +.ri-arrow-up-s-fill:before { + content: "\ea77"; +} +.ri-arrow-up-s-line:before { + content: "\ea78"; +} +.ri-artboard-2-fill:before { + content: "\ea79"; +} +.ri-artboard-2-line:before { + content: "\ea7a"; +} +.ri-artboard-fill:before { + content: "\ea7b"; +} +.ri-artboard-line:before { + content: "\ea7c"; +} +.ri-article-fill:before { + content: "\ea7d"; +} +.ri-article-line:before { + content: "\ea7e"; +} +.ri-aspect-ratio-fill:before { + content: "\ea7f"; +} +.ri-aspect-ratio-line:before { + content: "\ea80"; +} +.ri-asterisk:before { + content: "\ea81"; +} +.ri-at-fill:before { + content: "\ea82"; +} +.ri-at-line:before { + content: "\ea83"; +} +.ri-attachment-2:before { + content: "\ea84"; +} +.ri-attachment-fill:before { + content: "\ea85"; +} +.ri-attachment-line:before { content: "\ea86"; } -.ri-check:before { +.ri-auction-fill:before { + content: "\ea87"; +} +.ri-auction-line:before { + content: "\ea88"; +} +.ri-award-fill:before { + content: "\ea89"; +} +.ri-award-line:before { + content: "\ea8a"; +} +.ri-baidu-fill:before { + content: "\ea8b"; +} +.ri-baidu-line:before { + content: "\ea8c"; +} +.ri-ball-pen-fill:before { + content: "\ea8d"; +} +.ri-ball-pen-line:before { + content: "\ea8e"; +} +.ri-bank-card-2-fill:before { + content: "\ea8f"; +} +.ri-bank-card-2-line:before { + content: "\ea90"; +} +.ri-bank-card-fill:before { + content: "\ea91"; +} +.ri-bank-card-line:before { + content: "\ea92"; +} +.ri-bank-fill:before { + content: "\ea93"; +} +.ri-bank-line:before { + content: "\ea94"; +} +.ri-bar-chart-2-fill:before { + content: "\ea95"; +} +.ri-bar-chart-2-line:before { + content: "\ea96"; +} +.ri-bar-chart-box-fill:before { + content: "\ea97"; +} +.ri-bar-chart-box-line:before { + content: "\ea98"; +} +.ri-bar-chart-fill:before { + content: "\ea99"; +} +.ri-bar-chart-grouped-fill:before { + content: "\ea9a"; +} +.ri-bar-chart-grouped-line:before { + content: "\ea9b"; +} +.ri-bar-chart-horizontal-fill:before { + content: "\ea9c"; +} +.ri-bar-chart-horizontal-line:before { + content: "\ea9d"; +} +.ri-bar-chart-line:before { + content: "\ea9e"; +} +.ri-barcode-box-fill:before { + content: "\ea9f"; +} +.ri-barcode-box-line:before { + content: "\eaa0"; +} +.ri-barcode-fill:before { + content: "\eaa1"; +} +.ri-barcode-line:before { + content: "\eaa2"; +} +.ri-barricade-fill:before { + content: "\eaa3"; +} +.ri-barricade-line:before { + content: "\eaa4"; +} +.ri-base-station-fill:before { + content: "\eaa5"; +} +.ri-base-station-line:before { + content: "\eaa6"; +} +.ri-basketball-fill:before { + content: "\eaa7"; +} +.ri-basketball-line:before { + content: "\eaa8"; +} +.ri-battery-2-charge-fill:before { + content: "\eaa9"; +} +.ri-battery-2-charge-line:before { + content: "\eaaa"; +} +.ri-battery-2-fill:before { + content: "\eaab"; +} +.ri-battery-2-line:before { + content: "\eaac"; +} +.ri-battery-charge-fill:before { + content: "\eaad"; +} +.ri-battery-charge-line:before { + content: "\eaae"; +} +.ri-battery-fill:before { + content: "\eaaf"; +} +.ri-battery-line:before { + content: "\eab0"; +} +.ri-battery-low-fill:before { + content: "\eab1"; +} +.ri-battery-low-line:before { + content: "\eab2"; +} +.ri-battery-saver-fill:before { + content: "\eab3"; +} +.ri-battery-saver-line:before { + content: "\eab4"; +} +.ri-battery-share-fill:before { + content: "\eab5"; +} +.ri-battery-share-line:before { + content: "\eab6"; +} +.ri-bear-smile-fill:before { + content: "\eab7"; +} +.ri-bear-smile-line:before { + content: "\eab8"; +} +.ri-behance-fill:before { + content: "\eab9"; +} +.ri-behance-line:before { + content: "\eaba"; +} +.ri-bell-fill:before { + content: "\eabb"; +} +.ri-bell-line:before { + content: "\eabc"; +} +.ri-bike-fill:before { + content: "\eabd"; +} +.ri-bike-line:before { + content: "\eabe"; +} +.ri-bilibili-fill:before { + content: "\eabf"; +} +.ri-bilibili-line:before { + content: "\eac0"; +} +.ri-bill-fill:before { + content: "\eac1"; +} +.ri-bill-line:before { + content: "\eac2"; +} +.ri-billiards-fill:before { + content: "\eac3"; +} +.ri-billiards-line:before { + content: "\eac4"; +} +.ri-bit-coin-fill:before { + content: "\eac5"; +} +.ri-bit-coin-line:before { + content: "\eac6"; +} +.ri-blaze-fill:before { + content: "\eac7"; +} +.ri-blaze-line:before { + content: "\eac8"; +} +.ri-bluetooth-connect-fill:before { + content: "\eac9"; +} +.ri-bluetooth-connect-line:before { + content: "\eaca"; +} +.ri-bluetooth-fill:before { + content: "\eacb"; +} +.ri-bluetooth-line:before { + content: "\eacc"; +} +.ri-blur-off-fill:before { + content: "\eacd"; +} +.ri-blur-off-line:before { + content: "\eace"; +} +.ri-body-scan-fill:before { + content: "\eacf"; +} +.ri-body-scan-line:before { + content: "\ead0"; +} +.ri-bold:before { + content: "\ead1"; +} +.ri-book-2-fill:before { + content: "\ead2"; +} +.ri-book-2-line:before { + content: "\ead3"; +} +.ri-book-3-fill:before { + content: "\ead4"; +} +.ri-book-3-line:before { + content: "\ead5"; +} +.ri-book-fill:before { + content: "\ead6"; +} +.ri-book-line:before { + content: "\ead7"; +} +.ri-book-mark-fill:before { + content: "\ead8"; +} +.ri-book-mark-line:before { + content: "\ead9"; +} +.ri-book-open-fill:before { + content: "\eada"; +} +.ri-book-open-line:before { + content: "\eadb"; +} +.ri-book-read-fill:before { + content: "\eadc"; +} +.ri-book-read-line:before { + content: "\eadd"; +} +.ri-booklet-fill:before { + content: "\eade"; +} +.ri-booklet-line:before { + content: "\eadf"; +} +.ri-bookmark-2-fill:before { + content: "\eae0"; +} +.ri-bookmark-2-line:before { + content: "\eae1"; +} +.ri-bookmark-3-fill:before { + content: "\eae2"; +} +.ri-bookmark-3-line:before { + content: "\eae3"; +} +.ri-bookmark-fill:before { + content: "\eae4"; +} +.ri-bookmark-line:before { + content: "\eae5"; +} +.ri-boxing-fill:before { + content: "\eae6"; +} +.ri-boxing-line:before { + content: "\eae7"; +} +.ri-braces-fill:before { + content: "\eae8"; +} +.ri-braces-line:before { + content: "\eae9"; +} +.ri-brackets-fill:before { + content: "\eaea"; +} +.ri-brackets-line:before { + content: "\eaeb"; +} +.ri-briefcase-2-fill:before { + content: "\eaec"; +} +.ri-briefcase-2-line:before { + content: "\eaed"; +} +.ri-briefcase-3-fill:before { + content: "\eaee"; +} +.ri-briefcase-3-line:before { + content: "\eaef"; +} +.ri-briefcase-4-fill:before { + content: "\eaf0"; +} +.ri-briefcase-4-line:before { + content: "\eaf1"; +} +.ri-briefcase-5-fill:before { + content: "\eaf2"; +} +.ri-briefcase-5-line:before { + content: "\eaf3"; +} +.ri-briefcase-fill:before { + content: "\eaf4"; +} +.ri-briefcase-line:before { + content: "\eaf5"; +} +.ri-bring-forward:before { + content: "\eaf6"; +} +.ri-bring-to-front:before { + content: "\eaf7"; +} +.ri-broadcast-fill:before { + content: "\eaf8"; +} +.ri-broadcast-line:before { + content: "\eaf9"; +} +.ri-brush-2-fill:before { + content: "\eafa"; +} +.ri-brush-2-line:before { + content: "\eafb"; +} +.ri-brush-3-fill:before { + content: "\eafc"; +} +.ri-brush-3-line:before { + content: "\eafd"; +} +.ri-brush-4-fill:before { + content: "\eafe"; +} +.ri-brush-4-line:before { + content: "\eaff"; +} +.ri-brush-fill:before { + content: "\eb00"; +} +.ri-brush-line:before { + content: "\eb01"; +} +.ri-bubble-chart-fill:before { + content: "\eb02"; +} +.ri-bubble-chart-line:before { + content: "\eb03"; +} +.ri-bug-2-fill:before { + content: "\eb04"; +} +.ri-bug-2-line:before { + content: "\eb05"; +} +.ri-bug-fill:before { + content: "\eb06"; +} +.ri-bug-line:before { + content: "\eb07"; +} +.ri-building-2-fill:before { + content: "\eb08"; +} +.ri-building-2-line:before { + content: "\eb09"; +} +.ri-building-3-fill:before { + content: "\eb0a"; +} +.ri-building-3-line:before { + content: "\eb0b"; +} +.ri-building-4-fill:before { + content: "\eb0c"; +} +.ri-building-4-line:before { + content: "\eb0d"; +} +.ri-building-fill:before { + content: "\eb0e"; +} +.ri-building-line:before { + content: "\eb0f"; +} +.ri-bus-2-fill:before { + content: "\eb10"; +} +.ri-bus-2-line:before { + content: "\eb11"; +} +.ri-bus-fill:before { + content: "\eb12"; +} +.ri-bus-line:before { + content: "\eb13"; +} +.ri-bus-wifi-fill:before { + content: "\eb14"; +} +.ri-bus-wifi-line:before { + content: "\eb15"; +} +.ri-cactus-fill:before { + content: "\eb16"; +} +.ri-cactus-line:before { + content: "\eb17"; +} +.ri-cake-2-fill:before { + content: "\eb18"; +} +.ri-cake-2-line:before { + content: "\eb19"; +} +.ri-cake-3-fill:before { + content: "\eb1a"; +} +.ri-cake-3-line:before { + content: "\eb1b"; +} +.ri-cake-fill:before { + content: "\eb1c"; +} +.ri-cake-line:before { + content: "\eb1d"; +} +.ri-calculator-fill:before { + content: "\eb1e"; +} +.ri-calculator-line:before { + content: "\eb1f"; +} +.ri-calendar-2-fill:before { + content: "\eb20"; +} +.ri-calendar-2-line:before { + content: "\eb21"; +} +.ri-calendar-check-fill:before { + content: "\eb22"; +} +.ri-calendar-check-line:before { + content: "\eb23"; +} +.ri-calendar-event-fill:before { + content: "\eb24"; +} +.ri-calendar-event-line:before { + content: "\eb25"; +} +.ri-calendar-fill:before { + content: "\eb26"; +} +.ri-calendar-line:before { + content: "\eb27"; +} +.ri-calendar-todo-fill:before { + content: "\eb28"; +} +.ri-calendar-todo-line:before { + content: "\eb29"; +} +.ri-camera-2-fill:before { + content: "\eb2a"; +} +.ri-camera-2-line:before { + content: "\eb2b"; +} +.ri-camera-3-fill:before { + content: "\eb2c"; +} +.ri-camera-3-line:before { + content: "\eb2d"; +} +.ri-camera-fill:before { + content: "\eb2e"; +} +.ri-camera-lens-fill:before { + content: "\eb2f"; +} +.ri-camera-lens-line:before { + content: "\eb30"; +} +.ri-camera-line:before { + content: "\eb31"; +} +.ri-camera-off-fill:before { + content: "\eb32"; +} +.ri-camera-off-line:before { + content: "\eb33"; +} +.ri-camera-switch-fill:before { + content: "\eb34"; +} +.ri-camera-switch-line:before { + content: "\eb35"; +} +.ri-capsule-fill:before { + content: "\eb36"; +} +.ri-capsule-line:before { + content: "\eb37"; +} +.ri-car-fill:before { + content: "\eb38"; +} +.ri-car-line:before { + content: "\eb39"; +} +.ri-car-washing-fill:before { + content: "\eb3a"; +} +.ri-car-washing-line:before { + content: "\eb3b"; +} +.ri-caravan-fill:before { + content: "\eb3c"; +} +.ri-caravan-line:before { + content: "\eb3d"; +} +.ri-cast-fill:before { + content: "\eb3e"; +} +.ri-cast-line:before { + content: "\eb3f"; +} +.ri-cellphone-fill:before { + content: "\eb40"; +} +.ri-cellphone-line:before { + content: "\eb41"; +} +.ri-celsius-fill:before { + content: "\eb42"; +} +.ri-celsius-line:before { + content: "\eb43"; +} +.ri-centos-fill:before { + content: "\eb44"; +} +.ri-centos-line:before { + content: "\eb45"; +} +.ri-character-recognition-fill:before { + content: "\eb46"; +} +.ri-character-recognition-line:before { + content: "\eb47"; +} +.ri-charging-pile-2-fill:before { + content: "\eb48"; +} +.ri-charging-pile-2-line:before { + content: "\eb49"; +} +.ri-charging-pile-fill:before { + content: "\eb4a"; +} +.ri-charging-pile-line:before { + content: "\eb4b"; +} +.ri-chat-1-fill:before { + content: "\eb4c"; +} +.ri-chat-1-line:before { + content: "\eb4d"; +} +.ri-chat-2-fill:before { + content: "\eb4e"; +} +.ri-chat-2-line:before { + content: "\eb4f"; +} +.ri-chat-3-fill:before { + content: "\eb50"; +} +.ri-chat-3-line:before { + content: "\eb51"; +} +.ri-chat-4-fill:before { + content: "\eb52"; +} +.ri-chat-4-line:before { + content: "\eb53"; +} +.ri-chat-check-fill:before { + content: "\eb54"; +} +.ri-chat-check-line:before { + content: "\eb55"; +} +.ri-chat-delete-fill:before { + content: "\eb56"; +} +.ri-chat-delete-line:before { + content: "\eb57"; +} +.ri-chat-download-fill:before { + content: "\eb58"; +} +.ri-chat-download-line:before { + content: "\eb59"; +} +.ri-chat-follow-up-fill:before { + content: "\eb5a"; +} +.ri-chat-follow-up-line:before { + content: "\eb5b"; +} +.ri-chat-forward-fill:before { + content: "\eb5c"; +} +.ri-chat-forward-line:before { + content: "\eb5d"; +} +.ri-chat-heart-fill:before { + content: "\eb5e"; +} +.ri-chat-heart-line:before { + content: "\eb5f"; +} +.ri-chat-history-fill:before { + content: "\eb60"; +} +.ri-chat-history-line:before { + content: "\eb61"; +} +.ri-chat-new-fill:before { + content: "\eb62"; +} +.ri-chat-new-line:before { + content: "\eb63"; +} +.ri-chat-off-fill:before { + content: "\eb64"; +} +.ri-chat-off-line:before { + content: "\eb65"; +} +.ri-chat-poll-fill:before { + content: "\eb66"; +} +.ri-chat-poll-line:before { + content: "\eb67"; +} +.ri-chat-private-fill:before { + content: "\eb68"; +} +.ri-chat-private-line:before { + content: "\eb69"; +} +.ri-chat-quote-fill:before { + content: "\eb6a"; +} +.ri-chat-quote-line:before { + content: "\eb6b"; +} +.ri-chat-settings-fill:before { + content: "\eb6c"; +} +.ri-chat-settings-line:before { + content: "\eb6d"; +} +.ri-chat-smile-2-fill:before { + content: "\eb6e"; +} +.ri-chat-smile-2-line:before { + content: "\eb6f"; +} +.ri-chat-smile-3-fill:before { + content: "\eb70"; +} +.ri-chat-smile-3-line:before { + content: "\eb71"; +} +.ri-chat-smile-fill:before { + content: "\eb72"; +} +.ri-chat-smile-line:before { + content: "\eb73"; +} +.ri-chat-upload-fill:before { + content: "\eb74"; +} +.ri-chat-upload-line:before { + content: "\eb75"; +} +.ri-chat-voice-fill:before { + content: "\eb76"; +} +.ri-chat-voice-line:before { + content: "\eb77"; +} +.ri-check-double-fill:before { + content: "\eb78"; +} +.ri-check-double-line:before { + content: "\eb79"; +} +.ri-check-fill:before { + content: "\eb7a"; +} +.ri-check-line:before { content: "\eb7b"; } -.ri-close:before { +.ri-checkbox-blank-circle-fill:before { + content: "\eb7c"; +} +.ri-checkbox-blank-circle-line:before { + content: "\eb7d"; +} +.ri-checkbox-blank-fill:before { + content: "\eb7e"; +} +.ri-checkbox-blank-line:before { + content: "\eb7f"; +} +.ri-checkbox-circle-fill:before { + content: "\eb80"; +} +.ri-checkbox-circle-line:before { + content: "\eb81"; +} +.ri-checkbox-fill:before { + content: "\eb82"; +} +.ri-checkbox-indeterminate-fill:before { + content: "\eb83"; +} +.ri-checkbox-indeterminate-line:before { + content: "\eb84"; +} +.ri-checkbox-line:before { + content: "\eb85"; +} +.ri-checkbox-multiple-blank-fill:before { + content: "\eb86"; +} +.ri-checkbox-multiple-blank-line:before { + content: "\eb87"; +} +.ri-checkbox-multiple-fill:before { + content: "\eb88"; +} +.ri-checkbox-multiple-line:before { + content: "\eb89"; +} +.ri-china-railway-fill:before { + content: "\eb8a"; +} +.ri-china-railway-line:before { + content: "\eb8b"; +} +.ri-chrome-fill:before { + content: "\eb8c"; +} +.ri-chrome-line:before { + content: "\eb8d"; +} +.ri-clapperboard-fill:before { + content: "\eb8e"; +} +.ri-clapperboard-line:before { + content: "\eb8f"; +} +.ri-clipboard-fill:before { + content: "\eb90"; +} +.ri-clipboard-line:before { + content: "\eb91"; +} +.ri-clockwise-2-fill:before { + content: "\eb92"; +} +.ri-clockwise-2-line:before { + content: "\eb93"; +} +.ri-clockwise-fill:before { + content: "\eb94"; +} +.ri-clockwise-line:before { + content: "\eb95"; +} +.ri-close-circle-fill:before { + content: "\eb96"; +} +.ri-close-circle-line:before { + content: "\eb97"; +} +.ri-close-fill:before { + content: "\eb98"; +} +.ri-close-line:before { content: "\eb99"; } +.ri-closed-captioning-fill:before { + content: "\eb9a"; +} +.ri-closed-captioning-line:before { + content: "\eb9b"; +} +.ri-cloud-fill:before { + content: "\eb9c"; +} +.ri-cloud-line:before { + content: "\eb9d"; +} +.ri-cloud-off-fill:before { + content: "\eb9e"; +} +.ri-cloud-off-line:before { + content: "\eb9f"; +} +.ri-cloud-windy-fill:before { + content: "\eba0"; +} +.ri-cloud-windy-line:before { + content: "\eba1"; +} +.ri-cloudy-2-fill:before { + content: "\eba2"; +} +.ri-cloudy-2-line:before { + content: "\eba3"; +} +.ri-cloudy-fill:before { + content: "\eba4"; +} +.ri-cloudy-line:before { + content: "\eba5"; +} +.ri-code-box-fill:before { + content: "\eba6"; +} +.ri-code-box-line:before { + content: "\eba7"; +} +.ri-code-fill:before { + content: "\eba8"; +} +.ri-code-line:before { + content: "\eba9"; +} +.ri-code-s-fill:before { + content: "\ebaa"; +} +.ri-code-s-line:before { + content: "\ebab"; +} +.ri-code-s-slash-fill:before { + content: "\ebac"; +} +.ri-code-s-slash-line:before { + content: "\ebad"; +} +.ri-code-view:before { + content: "\ebae"; +} +.ri-codepen-fill:before { + content: "\ebaf"; +} +.ri-codepen-line:before { + content: "\ebb0"; +} +.ri-coin-fill:before { + content: "\ebb1"; +} +.ri-coin-line:before { + content: "\ebb2"; +} +.ri-coins-fill:before { + content: "\ebb3"; +} +.ri-coins-line:before { + content: "\ebb4"; +} +.ri-collage-fill:before { + content: "\ebb5"; +} +.ri-collage-line:before { + content: "\ebb6"; +} +.ri-command-fill:before { + content: "\ebb7"; +} +.ri-command-line:before { + content: "\ebb8"; +} +.ri-community-fill:before { + content: "\ebb9"; +} +.ri-community-line:before { + content: "\ebba"; +} +.ri-compass-2-fill:before { + content: "\ebbb"; +} +.ri-compass-2-line:before { + content: "\ebbc"; +} +.ri-compass-3-fill:before { + content: "\ebbd"; +} +.ri-compass-3-line:before { + content: "\ebbe"; +} +.ri-compass-4-fill:before { + content: "\ebbf"; +} +.ri-compass-4-line:before { + content: "\ebc0"; +} +.ri-compass-discover-fill:before { + content: "\ebc1"; +} +.ri-compass-discover-line:before { + content: "\ebc2"; +} +.ri-compass-fill:before { + content: "\ebc3"; +} +.ri-compass-line:before { + content: "\ebc4"; +} +.ri-compasses-2-fill:before { + content: "\ebc5"; +} +.ri-compasses-2-line:before { + content: "\ebc6"; +} +.ri-compasses-fill:before { + content: "\ebc7"; +} +.ri-compasses-line:before { + content: "\ebc8"; +} +.ri-computer-fill:before { + content: "\ebc9"; +} +.ri-computer-line:before { + content: "\ebca"; +} +.ri-contacts-book-2-fill:before { + content: "\ebcb"; +} +.ri-contacts-book-2-line:before { + content: "\ebcc"; +} +.ri-contacts-book-fill:before { + content: "\ebcd"; +} +.ri-contacts-book-line:before { + content: "\ebce"; +} +.ri-contacts-book-upload-fill:before { + content: "\ebcf"; +} +.ri-contacts-book-upload-line:before { + content: "\ebd0"; +} +.ri-contacts-fill:before { + content: "\ebd1"; +} +.ri-contacts-line:before { + content: "\ebd2"; +} +.ri-contrast-2-fill:before { + content: "\ebd3"; +} +.ri-contrast-2-line:before { + content: "\ebd4"; +} +.ri-contrast-drop-2-fill:before { + content: "\ebd5"; +} +.ri-contrast-drop-2-line:before { + content: "\ebd6"; +} +.ri-contrast-drop-fill:before { + content: "\ebd7"; +} +.ri-contrast-drop-line:before { + content: "\ebd8"; +} +.ri-contrast-fill:before { + content: "\ebd9"; +} +.ri-contrast-line:before { + content: "\ebda"; +} +.ri-copper-coin-fill:before { + content: "\ebdb"; +} +.ri-copper-coin-line:before { + content: "\ebdc"; +} +.ri-copper-diamond-fill:before { + content: "\ebdd"; +} +.ri-copper-diamond-line:before { + content: "\ebde"; +} +.ri-copyleft-fill:before { + content: "\ebdf"; +} +.ri-copyleft-line:before { + content: "\ebe0"; +} +.ri-copyright-fill:before { + content: "\ebe1"; +} +.ri-copyright-line:before { + content: "\ebe2"; +} +.ri-coreos-fill:before { + content: "\ebe3"; +} +.ri-coreos-line:before { + content: "\ebe4"; +} +.ri-coupon-2-fill:before { + content: "\ebe5"; +} +.ri-coupon-2-line:before { + content: "\ebe6"; +} +.ri-coupon-3-fill:before { + content: "\ebe7"; +} +.ri-coupon-3-line:before { + content: "\ebe8"; +} +.ri-coupon-4-fill:before { + content: "\ebe9"; +} +.ri-coupon-4-line:before { + content: "\ebea"; +} +.ri-coupon-5-fill:before { + content: "\ebeb"; +} +.ri-coupon-5-line:before { + content: "\ebec"; +} +.ri-coupon-fill:before { + content: "\ebed"; +} +.ri-coupon-line:before { + content: "\ebee"; +} +.ri-cpu-fill:before { + content: "\ebef"; +} +.ri-cpu-line:before { + content: "\ebf0"; +} +.ri-creative-commons-by-fill:before { + content: "\ebf1"; +} +.ri-creative-commons-by-line:before { + content: "\ebf2"; +} +.ri-creative-commons-fill:before { + content: "\ebf3"; +} +.ri-creative-commons-line:before { + content: "\ebf4"; +} +.ri-creative-commons-nc-fill:before { + content: "\ebf5"; +} +.ri-creative-commons-nc-line:before { + content: "\ebf6"; +} +.ri-creative-commons-nd-fill:before { + content: "\ebf7"; +} +.ri-creative-commons-nd-line:before { + content: "\ebf8"; +} +.ri-creative-commons-sa-fill:before { + content: "\ebf9"; +} +.ri-creative-commons-sa-line:before { + content: "\ebfa"; +} +.ri-creative-commons-zero-fill:before { + content: "\ebfb"; +} +.ri-creative-commons-zero-line:before { + content: "\ebfc"; +} +.ri-criminal-fill:before { + content: "\ebfd"; +} +.ri-criminal-line:before { + content: "\ebfe"; +} +.ri-crop-2-fill:before { + content: "\ebff"; +} +.ri-crop-2-line:before { + content: "\ec00"; +} +.ri-crop-fill:before { + content: "\ec01"; +} +.ri-crop-line:before { + content: "\ec02"; +} +.ri-css3-fill:before { + content: "\ec03"; +} +.ri-css3-line:before { + content: "\ec04"; +} +.ri-cup-fill:before { + content: "\ec05"; +} +.ri-cup-line:before { + content: "\ec06"; +} +.ri-currency-fill:before { + content: "\ec07"; +} +.ri-currency-line:before { + content: "\ec08"; +} +.ri-cursor-fill:before { + content: "\ec09"; +} +.ri-cursor-line:before { + content: "\ec0a"; +} +.ri-customer-service-2-fill:before { + content: "\ec0b"; +} +.ri-customer-service-2-line:before { + content: "\ec0c"; +} +.ri-customer-service-fill:before { + content: "\ec0d"; +} +.ri-customer-service-line:before { + content: "\ec0e"; +} +.ri-dashboard-2-fill:before { + content: "\ec0f"; +} +.ri-dashboard-2-line:before { + content: "\ec10"; +} +.ri-dashboard-3-fill:before { + content: "\ec11"; +} +.ri-dashboard-3-line:before { + content: "\ec12"; +} +.ri-dashboard-fill:before { + content: "\ec13"; +} +.ri-dashboard-line:before { + content: "\ec14"; +} +.ri-database-2-fill:before { + content: "\ec15"; +} +.ri-database-2-line:before { + content: "\ec16"; +} +.ri-database-fill:before { + content: "\ec17"; +} +.ri-database-line:before { + content: "\ec18"; +} +.ri-delete-back-2-fill:before { + content: "\ec19"; +} +.ri-delete-back-2-line:before { + content: "\ec1a"; +} +.ri-delete-back-fill:before { + content: "\ec1b"; +} +.ri-delete-back-line:before { + content: "\ec1c"; +} +.ri-delete-bin-2-fill:before { + content: "\ec1d"; +} +.ri-delete-bin-2-line:before { + content: "\ec1e"; +} +.ri-delete-bin-3-fill:before { + content: "\ec1f"; +} +.ri-delete-bin-3-line:before { + content: "\ec20"; +} +.ri-delete-bin-4-fill:before { + content: "\ec21"; +} +.ri-delete-bin-4-line:before { + content: "\ec22"; +} +.ri-delete-bin-5-fill:before { + content: "\ec23"; +} +.ri-delete-bin-5-line:before { + content: "\ec24"; +} +.ri-delete-bin-6-fill:before { + content: "\ec25"; +} +.ri-delete-bin-6-line:before { + content: "\ec26"; +} +.ri-delete-bin-7-fill:before { + content: "\ec27"; +} +.ri-delete-bin-7-line:before { + content: "\ec28"; +} +.ri-delete-bin-fill:before { + content: "\ec29"; +} +.ri-delete-bin-line:before { + content: "\ec2a"; +} +.ri-delete-column:before { + content: "\ec2b"; +} +.ri-delete-row:before { + content: "\ec2c"; +} +.ri-device-fill:before { + content: "\ec2d"; +} +.ri-device-line:before { + content: "\ec2e"; +} +.ri-device-recover-fill:before { + content: "\ec2f"; +} +.ri-device-recover-line:before { + content: "\ec30"; +} +.ri-dingding-fill:before { + content: "\ec31"; +} +.ri-dingding-line:before { + content: "\ec32"; +} +.ri-direction-fill:before { + content: "\ec33"; +} +.ri-direction-line:before { + content: "\ec34"; +} +.ri-disc-fill:before { + content: "\ec35"; +} +.ri-disc-line:before { + content: "\ec36"; +} +.ri-discord-fill:before { + content: "\ec37"; +} +.ri-discord-line:before { + content: "\ec38"; +} +.ri-discuss-fill:before { + content: "\ec39"; +} +.ri-discuss-line:before { + content: "\ec3a"; +} +.ri-dislike-fill:before { + content: "\ec3b"; +} +.ri-dislike-line:before { + content: "\ec3c"; +} +.ri-disqus-fill:before { + content: "\ec3d"; +} +.ri-disqus-line:before { + content: "\ec3e"; +} +.ri-divide-fill:before { + content: "\ec3f"; +} +.ri-divide-line:before { + content: "\ec40"; +} +.ri-donut-chart-fill:before { + content: "\ec41"; +} +.ri-donut-chart-line:before { + content: "\ec42"; +} +.ri-door-closed-fill:before { + content: "\ec43"; +} +.ri-door-closed-line:before { + content: "\ec44"; +} +.ri-door-fill:before { + content: "\ec45"; +} +.ri-door-line:before { + content: "\ec46"; +} +.ri-door-lock-box-fill:before { + content: "\ec47"; +} +.ri-door-lock-box-line:before { + content: "\ec48"; +} +.ri-door-lock-fill:before { + content: "\ec49"; +} +.ri-door-lock-line:before { + content: "\ec4a"; +} +.ri-door-open-fill:before { + content: "\ec4b"; +} +.ri-door-open-line:before { + content: "\ec4c"; +} +.ri-dossier-fill:before { + content: "\ec4d"; +} +.ri-dossier-line:before { + content: "\ec4e"; +} +.ri-douban-fill:before { + content: "\ec4f"; +} +.ri-douban-line:before { + content: "\ec50"; +} +.ri-double-quotes-l:before { + content: "\ec51"; +} +.ri-double-quotes-r:before { + content: "\ec52"; +} +.ri-download-2-fill:before { + content: "\ec53"; +} +.ri-download-2-line:before { + content: "\ec54"; +} +.ri-download-cloud-2-fill:before { + content: "\ec55"; +} +.ri-download-cloud-2-line:before { + content: "\ec56"; +} +.ri-download-cloud-fill:before { + content: "\ec57"; +} +.ri-download-cloud-line:before { + content: "\ec58"; +} +.ri-download-fill:before { + content: "\ec59"; +} +.ri-download-line:before { + content: "\ec5a"; +} +.ri-draft-fill:before { + content: "\ec5b"; +} +.ri-draft-line:before { + content: "\ec5c"; +} +.ri-drag-drop-fill:before { + content: "\ec5d"; +} +.ri-drag-drop-line:before { + content: "\ec5e"; +} +.ri-drag-move-2-fill:before { + content: "\ec5f"; +} +.ri-drag-move-2-line:before { + content: "\ec60"; +} +.ri-drag-move-fill:before { + content: "\ec61"; +} +.ri-drag-move-line:before { + content: "\ec62"; +} +.ri-dribbble-fill:before { + content: "\ec63"; +} +.ri-dribbble-line:before { + content: "\ec64"; +} +.ri-drive-fill:before { + content: "\ec65"; +} +.ri-drive-line:before { + content: "\ec66"; +} +.ri-drizzle-fill:before { + content: "\ec67"; +} +.ri-drizzle-line:before { + content: "\ec68"; +} +.ri-drop-fill:before { + content: "\ec69"; +} +.ri-drop-line:before { + content: "\ec6a"; +} +.ri-dropbox-fill:before { + content: "\ec6b"; +} +.ri-dropbox-line:before { + content: "\ec6c"; +} +.ri-dual-sim-1-fill:before { + content: "\ec6d"; +} +.ri-dual-sim-1-line:before { + content: "\ec6e"; +} +.ri-dual-sim-2-fill:before { + content: "\ec6f"; +} +.ri-dual-sim-2-line:before { + content: "\ec70"; +} +.ri-dv-fill:before { + content: "\ec71"; +} +.ri-dv-line:before { + content: "\ec72"; +} +.ri-dvd-fill:before { + content: "\ec73"; +} +.ri-dvd-line:before { + content: "\ec74"; +} +.ri-e-bike-2-fill:before { + content: "\ec75"; +} +.ri-e-bike-2-line:before { + content: "\ec76"; +} +.ri-e-bike-fill:before { + content: "\ec77"; +} +.ri-e-bike-line:before { + content: "\ec78"; +} +.ri-earth-fill:before { + content: "\ec79"; +} +.ri-earth-line:before { + content: "\ec7a"; +} +.ri-earthquake-fill:before { + content: "\ec7b"; +} +.ri-earthquake-line:before { + content: "\ec7c"; +} +.ri-edge-fill:before { + content: "\ec7d"; +} +.ri-edge-line:before { + content: "\ec7e"; +} +.ri-edit-2-fill:before { + content: "\ec7f"; +} +.ri-edit-2-line:before { + content: "\ec80"; +} +.ri-edit-box-fill:before { + content: "\ec81"; +} +.ri-edit-box-line:before { + content: "\ec82"; +} +.ri-edit-circle-fill:before { + content: "\ec83"; +} +.ri-edit-circle-line:before { + content: "\ec84"; +} +.ri-edit-fill:before { + content: "\ec85"; +} +.ri-edit-line:before { + content: "\ec86"; +} +.ri-eject-fill:before { + content: "\ec87"; +} +.ri-eject-line:before { + content: "\ec88"; +} +.ri-emotion-2-fill:before { + content: "\ec89"; +} +.ri-emotion-2-line:before { + content: "\ec8a"; +} +.ri-emotion-fill:before { + content: "\ec8b"; +} +.ri-emotion-happy-fill:before { + content: "\ec8c"; +} +.ri-emotion-happy-line:before { + content: "\ec8d"; +} +.ri-emotion-laugh-fill:before { + content: "\ec8e"; +} +.ri-emotion-laugh-line:before { + content: "\ec8f"; +} +.ri-emotion-line:before { + content: "\ec90"; +} +.ri-emotion-normal-fill:before { + content: "\ec91"; +} +.ri-emotion-normal-line:before { + content: "\ec92"; +} +.ri-emotion-sad-fill:before { + content: "\ec93"; +} +.ri-emotion-sad-line:before { + content: "\ec94"; +} +.ri-emotion-unhappy-fill:before { + content: "\ec95"; +} +.ri-emotion-unhappy-line:before { + content: "\ec96"; +} +.ri-empathize-fill:before { + content: "\ec97"; +} +.ri-empathize-line:before { + content: "\ec98"; +} +.ri-emphasis-cn:before { + content: "\ec99"; +} +.ri-emphasis:before { + content: "\ec9a"; +} +.ri-english-input:before { + content: "\ec9b"; +} +.ri-equalizer-fill:before { + content: "\ec9c"; +} +.ri-equalizer-line:before { + content: "\ec9d"; +} +.ri-eraser-fill:before { + content: "\ec9e"; +} +.ri-eraser-line:before { + content: "\ec9f"; +} +.ri-error-warning-fill:before { + content: "\eca0"; +} +.ri-error-warning-line:before { + content: "\eca1"; +} +.ri-evernote-fill:before { + content: "\eca2"; +} +.ri-evernote-line:before { + content: "\eca3"; +} +.ri-exchange-box-fill:before { + content: "\eca4"; +} +.ri-exchange-box-line:before { + content: "\eca5"; +} +.ri-exchange-cny-fill:before { + content: "\eca6"; +} +.ri-exchange-cny-line:before { + content: "\eca7"; +} +.ri-exchange-dollar-fill:before { + content: "\eca8"; +} +.ri-exchange-dollar-line:before { + content: "\eca9"; +} +.ri-exchange-fill:before { + content: "\ecaa"; +} +.ri-exchange-funds-fill:before { + content: "\ecab"; +} +.ri-exchange-funds-line:before { + content: "\ecac"; +} +.ri-exchange-line:before { + content: "\ecad"; +} +.ri-external-link-fill:before { + content: "\ecae"; +} +.ri-external-link-line:before { + content: "\ecaf"; +} +.ri-eye-2-fill:before { + content: "\ecb0"; +} +.ri-eye-2-line:before { + content: "\ecb1"; +} +.ri-eye-close-fill:before { + content: "\ecb2"; +} +.ri-eye-close-line:before { + content: "\ecb3"; +} +.ri-eye-fill:before { + content: "\ecb4"; +} +.ri-eye-line:before { + content: "\ecb5"; +} +.ri-eye-off-fill:before { + content: "\ecb6"; +} +.ri-eye-off-line:before { + content: "\ecb7"; +} +.ri-facebook-box-fill:before { + content: "\ecb8"; +} +.ri-facebook-box-line:before { + content: "\ecb9"; +} +.ri-facebook-circle-fill:before { + content: "\ecba"; +} +.ri-facebook-circle-line:before { + content: "\ecbb"; +} +.ri-facebook-fill:before { + content: "\ecbc"; +} +.ri-facebook-line:before { + content: "\ecbd"; +} +.ri-fahrenheit-fill:before { + content: "\ecbe"; +} +.ri-fahrenheit-line:before { + content: "\ecbf"; +} +.ri-feedback-fill:before { + content: "\ecc0"; +} +.ri-feedback-line:before { + content: "\ecc1"; +} +.ri-file-2-fill:before { + content: "\ecc2"; +} +.ri-file-2-line:before { + content: "\ecc3"; +} +.ri-file-3-fill:before { + content: "\ecc4"; +} +.ri-file-3-line:before { + content: "\ecc5"; +} +.ri-file-4-fill:before { + content: "\ecc6"; +} +.ri-file-4-line:before { + content: "\ecc7"; +} +.ri-file-add-fill:before { + content: "\ecc8"; +} +.ri-file-add-line:before { + content: "\ecc9"; +} +.ri-file-chart-2-fill:before { + content: "\ecca"; +} +.ri-file-chart-2-line:before { + content: "\eccb"; +} +.ri-file-chart-fill:before { + content: "\eccc"; +} +.ri-file-chart-line:before { + content: "\eccd"; +} +.ri-file-cloud-fill:before { + content: "\ecce"; +} +.ri-file-cloud-line:before { + content: "\eccf"; +} +.ri-file-code-fill:before { + content: "\ecd0"; +} +.ri-file-code-line:before { + content: "\ecd1"; +} +.ri-file-copy-2-fill:before { + content: "\ecd2"; +} +.ri-file-copy-2-line:before { + content: "\ecd3"; +} +.ri-file-copy-fill:before { + content: "\ecd4"; +} +.ri-file-copy-line:before { + content: "\ecd5"; +} +.ri-file-damage-fill:before { + content: "\ecd6"; +} +.ri-file-damage-line:before { + content: "\ecd7"; +} +.ri-file-download-fill:before { + content: "\ecd8"; +} +.ri-file-download-line:before { + content: "\ecd9"; +} +.ri-file-edit-fill:before { + content: "\ecda"; +} +.ri-file-edit-line:before { + content: "\ecdb"; +} +.ri-file-excel-2-fill:before { + content: "\ecdc"; +} +.ri-file-excel-2-line:before { + content: "\ecdd"; +} +.ri-file-excel-fill:before { + content: "\ecde"; +} +.ri-file-excel-line:before { + content: "\ecdf"; +} +.ri-file-fill:before { + content: "\ece0"; +} +.ri-file-forbid-fill:before { + content: "\ece1"; +} +.ri-file-forbid-line:before { + content: "\ece2"; +} +.ri-file-gif-fill:before { + content: "\ece3"; +} +.ri-file-gif-line:before { + content: "\ece4"; +} +.ri-file-history-fill:before { + content: "\ece5"; +} +.ri-file-history-line:before { + content: "\ece6"; +} +.ri-file-hwp-fill:before { + content: "\ece7"; +} +.ri-file-hwp-line:before { + content: "\ece8"; +} +.ri-file-info-fill:before { + content: "\ece9"; +} +.ri-file-info-line:before { + content: "\ecea"; +} +.ri-file-line:before { + content: "\eceb"; +} +.ri-file-list-2-fill:before { + content: "\ecec"; +} +.ri-file-list-2-line:before { + content: "\eced"; +} +.ri-file-list-3-fill:before { + content: "\ecee"; +} +.ri-file-list-3-line:before { + content: "\ecef"; +} +.ri-file-list-fill:before { + content: "\ecf0"; +} +.ri-file-list-line:before { + content: "\ecf1"; +} +.ri-file-lock-fill:before { + content: "\ecf2"; +} +.ri-file-lock-line:before { + content: "\ecf3"; +} +.ri-file-mark-fill:before { + content: "\ecf4"; +} +.ri-file-mark-line:before { + content: "\ecf5"; +} +.ri-file-music-fill:before { + content: "\ecf6"; +} +.ri-file-music-line:before { + content: "\ecf7"; +} +.ri-file-paper-2-fill:before { + content: "\ecf8"; +} +.ri-file-paper-2-line:before { + content: "\ecf9"; +} +.ri-file-paper-fill:before { + content: "\ecfa"; +} +.ri-file-paper-line:before { + content: "\ecfb"; +} +.ri-file-pdf-fill:before { + content: "\ecfc"; +} +.ri-file-pdf-line:before { + content: "\ecfd"; +} +.ri-file-ppt-2-fill:before { + content: "\ecfe"; +} +.ri-file-ppt-2-line:before { + content: "\ecff"; +} +.ri-file-ppt-fill:before { + content: "\ed00"; +} +.ri-file-ppt-line:before { + content: "\ed01"; +} +.ri-file-reduce-fill:before { + content: "\ed02"; +} +.ri-file-reduce-line:before { + content: "\ed03"; +} +.ri-file-search-fill:before { + content: "\ed04"; +} +.ri-file-search-line:before { + content: "\ed05"; +} +.ri-file-settings-fill:before { + content: "\ed06"; +} +.ri-file-settings-line:before { + content: "\ed07"; +} +.ri-file-shield-2-fill:before { + content: "\ed08"; +} +.ri-file-shield-2-line:before { + content: "\ed09"; +} +.ri-file-shield-fill:before { + content: "\ed0a"; +} +.ri-file-shield-line:before { + content: "\ed0b"; +} +.ri-file-shred-fill:before { + content: "\ed0c"; +} +.ri-file-shred-line:before { + content: "\ed0d"; +} +.ri-file-text-fill:before { + content: "\ed0e"; +} +.ri-file-text-line:before { + content: "\ed0f"; +} +.ri-file-transfer-fill:before { + content: "\ed10"; +} +.ri-file-transfer-line:before { + content: "\ed11"; +} +.ri-file-unknow-fill:before { + content: "\ed12"; +} +.ri-file-unknow-line:before { + content: "\ed13"; +} +.ri-file-upload-fill:before { + content: "\ed14"; +} +.ri-file-upload-line:before { + content: "\ed15"; +} +.ri-file-user-fill:before { + content: "\ed16"; +} +.ri-file-user-line:before { + content: "\ed17"; +} +.ri-file-warning-fill:before { + content: "\ed18"; +} +.ri-file-warning-line:before { + content: "\ed19"; +} +.ri-file-word-2-fill:before { + content: "\ed1a"; +} +.ri-file-word-2-line:before { + content: "\ed1b"; +} +.ri-file-word-fill:before { + content: "\ed1c"; +} +.ri-file-word-line:before { + content: "\ed1d"; +} +.ri-file-zip-fill:before { + content: "\ed1e"; +} +.ri-file-zip-line:before { + content: "\ed1f"; +} +.ri-film-fill:before { + content: "\ed20"; +} +.ri-film-line:before { + content: "\ed21"; +} +.ri-filter-2-fill:before { + content: "\ed22"; +} +.ri-filter-2-line:before { + content: "\ed23"; +} +.ri-filter-3-fill:before { + content: "\ed24"; +} +.ri-filter-3-line:before { + content: "\ed25"; +} +.ri-filter-fill:before { + content: "\ed26"; +} +.ri-filter-line:before { + content: "\ed27"; +} +.ri-filter-off-fill:before { + content: "\ed28"; +} +.ri-filter-off-line:before { + content: "\ed29"; +} +.ri-find-replace-fill:before { + content: "\ed2a"; +} +.ri-find-replace-line:before { + content: "\ed2b"; +} +.ri-finder-fill:before { + content: "\ed2c"; +} +.ri-finder-line:before { + content: "\ed2d"; +} +.ri-fingerprint-2-fill:before { + content: "\ed2e"; +} +.ri-fingerprint-2-line:before { + content: "\ed2f"; +} +.ri-fingerprint-fill:before { + content: "\ed30"; +} +.ri-fingerprint-line:before { + content: "\ed31"; +} +.ri-fire-fill:before { + content: "\ed32"; +} +.ri-fire-line:before { + content: "\ed33"; +} +.ri-firefox-fill:before { + content: "\ed34"; +} +.ri-firefox-line:before { + content: "\ed35"; +} +.ri-first-aid-kit-fill:before { + content: "\ed36"; +} +.ri-first-aid-kit-line:before { + content: "\ed37"; +} +.ri-flag-2-fill:before { + content: "\ed38"; +} +.ri-flag-2-line:before { + content: "\ed39"; +} +.ri-flag-fill:before { + content: "\ed3a"; +} +.ri-flag-line:before { + content: "\ed3b"; +} +.ri-flashlight-fill:before { + content: "\ed3c"; +} +.ri-flashlight-line:before { + content: "\ed3d"; +} +.ri-flask-fill:before { + content: "\ed3e"; +} +.ri-flask-line:before { + content: "\ed3f"; +} +.ri-flight-land-fill:before { + content: "\ed40"; +} +.ri-flight-land-line:before { + content: "\ed41"; +} +.ri-flight-takeoff-fill:before { + content: "\ed42"; +} +.ri-flight-takeoff-line:before { + content: "\ed43"; +} +.ri-flood-fill:before { + content: "\ed44"; +} +.ri-flood-line:before { + content: "\ed45"; +} +.ri-flow-chart:before { + content: "\ed46"; +} +.ri-flutter-fill:before { + content: "\ed47"; +} +.ri-flutter-line:before { + content: "\ed48"; +} +.ri-focus-2-fill:before { + content: "\ed49"; +} +.ri-focus-2-line:before { + content: "\ed4a"; +} +.ri-focus-3-fill:before { + content: "\ed4b"; +} +.ri-focus-3-line:before { + content: "\ed4c"; +} +.ri-focus-fill:before { + content: "\ed4d"; +} +.ri-focus-line:before { + content: "\ed4e"; +} +.ri-foggy-fill:before { + content: "\ed4f"; +} +.ri-foggy-line:before { + content: "\ed50"; +} +.ri-folder-2-fill:before { + content: "\ed51"; +} +.ri-folder-2-line:before { + content: "\ed52"; +} +.ri-folder-3-fill:before { + content: "\ed53"; +} +.ri-folder-3-line:before { + content: "\ed54"; +} +.ri-folder-4-fill:before { + content: "\ed55"; +} +.ri-folder-4-line:before { + content: "\ed56"; +} +.ri-folder-5-fill:before { + content: "\ed57"; +} +.ri-folder-5-line:before { + content: "\ed58"; +} +.ri-folder-add-fill:before { + content: "\ed59"; +} +.ri-folder-add-line:before { + content: "\ed5a"; +} +.ri-folder-chart-2-fill:before { + content: "\ed5b"; +} +.ri-folder-chart-2-line:before { + content: "\ed5c"; +} +.ri-folder-chart-fill:before { + content: "\ed5d"; +} +.ri-folder-chart-line:before { + content: "\ed5e"; +} +.ri-folder-download-fill:before { + content: "\ed5f"; +} +.ri-folder-download-line:before { + content: "\ed60"; +} +.ri-folder-fill:before { + content: "\ed61"; +} +.ri-folder-forbid-fill:before { + content: "\ed62"; +} +.ri-folder-forbid-line:before { + content: "\ed63"; +} +.ri-folder-history-fill:before { + content: "\ed64"; +} +.ri-folder-history-line:before { + content: "\ed65"; +} +.ri-folder-info-fill:before { + content: "\ed66"; +} +.ri-folder-info-line:before { + content: "\ed67"; +} +.ri-folder-keyhole-fill:before { + content: "\ed68"; +} +.ri-folder-keyhole-line:before { + content: "\ed69"; +} +.ri-folder-line:before { + content: "\ed6a"; +} +.ri-folder-lock-fill:before { + content: "\ed6b"; +} +.ri-folder-lock-line:before { + content: "\ed6c"; +} +.ri-folder-music-fill:before { + content: "\ed6d"; +} +.ri-folder-music-line:before { + content: "\ed6e"; +} +.ri-folder-open-fill:before { + content: "\ed6f"; +} +.ri-folder-open-line:before { + content: "\ed70"; +} +.ri-folder-received-fill:before { + content: "\ed71"; +} +.ri-folder-received-line:before { + content: "\ed72"; +} +.ri-folder-reduce-fill:before { + content: "\ed73"; +} +.ri-folder-reduce-line:before { + content: "\ed74"; +} +.ri-folder-settings-fill:before { + content: "\ed75"; +} +.ri-folder-settings-line:before { + content: "\ed76"; +} +.ri-folder-shared-fill:before { + content: "\ed77"; +} +.ri-folder-shared-line:before { + content: "\ed78"; +} +.ri-folder-shield-2-fill:before { + content: "\ed79"; +} +.ri-folder-shield-2-line:before { + content: "\ed7a"; +} +.ri-folder-shield-fill:before { + content: "\ed7b"; +} +.ri-folder-shield-line:before { + content: "\ed7c"; +} +.ri-folder-transfer-fill:before { + content: "\ed7d"; +} +.ri-folder-transfer-line:before { + content: "\ed7e"; +} +.ri-folder-unknow-fill:before { + content: "\ed7f"; +} +.ri-folder-unknow-line:before { + content: "\ed80"; +} +.ri-folder-upload-fill:before { + content: "\ed81"; +} +.ri-folder-upload-line:before { + content: "\ed82"; +} +.ri-folder-user-fill:before { + content: "\ed83"; +} +.ri-folder-user-line:before { + content: "\ed84"; +} +.ri-folder-warning-fill:before { + content: "\ed85"; +} +.ri-folder-warning-line:before { + content: "\ed86"; +} +.ri-folder-zip-fill:before { + content: "\ed87"; +} +.ri-folder-zip-line:before { + content: "\ed88"; +} +.ri-folders-fill:before { + content: "\ed89"; +} +.ri-folders-line:before { + content: "\ed8a"; +} +.ri-font-color:before { + content: "\ed8b"; +} +.ri-font-size-2:before { + content: "\ed8c"; +} +.ri-font-size:before { + content: "\ed8d"; +} +.ri-football-fill:before { + content: "\ed8e"; +} +.ri-football-line:before { + content: "\ed8f"; +} +.ri-footprint-fill:before { + content: "\ed90"; +} +.ri-footprint-line:before { + content: "\ed91"; +} +.ri-forbid-2-fill:before { + content: "\ed92"; +} +.ri-forbid-2-line:before { + content: "\ed93"; +} +.ri-forbid-fill:before { + content: "\ed94"; +} +.ri-forbid-line:before { + content: "\ed95"; +} +.ri-format-clear:before { + content: "\ed96"; +} +.ri-fridge-fill:before { + content: "\ed97"; +} +.ri-fridge-line:before { + content: "\ed98"; +} +.ri-fullscreen-exit-fill:before { + content: "\ed99"; +} +.ri-fullscreen-exit-line:before { + content: "\ed9a"; +} +.ri-fullscreen-fill:before { + content: "\ed9b"; +} +.ri-fullscreen-line:before { + content: "\ed9c"; +} +.ri-function-fill:before { + content: "\ed9d"; +} +.ri-function-line:before { + content: "\ed9e"; +} +.ri-functions:before { + content: "\ed9f"; +} +.ri-funds-box-fill:before { + content: "\eda0"; +} +.ri-funds-box-line:before { + content: "\eda1"; +} +.ri-funds-fill:before { + content: "\eda2"; +} +.ri-funds-line:before { + content: "\eda3"; +} +.ri-gallery-fill:before { + content: "\eda4"; +} +.ri-gallery-line:before { + content: "\eda5"; +} +.ri-gallery-upload-fill:before { + content: "\eda6"; +} +.ri-gallery-upload-line:before { + content: "\eda7"; +} +.ri-game-fill:before { + content: "\eda8"; +} +.ri-game-line:before { + content: "\eda9"; +} +.ri-gamepad-fill:before { + content: "\edaa"; +} +.ri-gamepad-line:before { + content: "\edab"; +} +.ri-gas-station-fill:before { + content: "\edac"; +} +.ri-gas-station-line:before { + content: "\edad"; +} +.ri-gatsby-fill:before { + content: "\edae"; +} +.ri-gatsby-line:before { + content: "\edaf"; +} +.ri-genderless-fill:before { + content: "\edb0"; +} +.ri-genderless-line:before { + content: "\edb1"; +} +.ri-ghost-2-fill:before { + content: "\edb2"; +} +.ri-ghost-2-line:before { + content: "\edb3"; +} +.ri-ghost-fill:before { + content: "\edb4"; +} +.ri-ghost-line:before { + content: "\edb5"; +} +.ri-ghost-smile-fill:before { + content: "\edb6"; +} +.ri-ghost-smile-line:before { + content: "\edb7"; +} +.ri-gift-2-fill:before { + content: "\edb8"; +} +.ri-gift-2-line:before { + content: "\edb9"; +} +.ri-gift-fill:before { + content: "\edba"; +} +.ri-gift-line:before { + content: "\edbb"; +} +.ri-git-branch-fill:before { + content: "\edbc"; +} +.ri-git-branch-line:before { + content: "\edbd"; +} +.ri-git-commit-fill:before { + content: "\edbe"; +} +.ri-git-commit-line:before { + content: "\edbf"; +} +.ri-git-merge-fill:before { + content: "\edc0"; +} +.ri-git-merge-line:before { + content: "\edc1"; +} +.ri-git-pull-request-fill:before { + content: "\edc2"; +} +.ri-git-pull-request-line:before { + content: "\edc3"; +} +.ri-git-repository-commits-fill:before { + content: "\edc4"; +} +.ri-git-repository-commits-line:before { + content: "\edc5"; +} +.ri-git-repository-fill:before { + content: "\edc6"; +} +.ri-git-repository-line:before { + content: "\edc7"; +} +.ri-git-repository-private-fill:before { + content: "\edc8"; +} +.ri-git-repository-private-line:before { + content: "\edc9"; +} +.ri-github-fill:before { + content: "\edca"; +} +.ri-github-line:before { + content: "\edcb"; +} +.ri-gitlab-fill:before { + content: "\edcc"; +} +.ri-gitlab-line:before { + content: "\edcd"; +} +.ri-global-fill:before { + content: "\edce"; +} +.ri-global-line:before { + content: "\edcf"; +} +.ri-globe-fill:before { + content: "\edd0"; +} +.ri-globe-line:before { + content: "\edd1"; +} +.ri-goblet-fill:before { + content: "\edd2"; +} +.ri-goblet-line:before { + content: "\edd3"; +} +.ri-google-fill:before { + content: "\edd4"; +} +.ri-google-line:before { + content: "\edd5"; +} +.ri-google-play-fill:before { + content: "\edd6"; +} +.ri-google-play-line:before { + content: "\edd7"; +} +.ri-government-fill:before { + content: "\edd8"; +} +.ri-government-line:before { + content: "\edd9"; +} +.ri-gps-fill:before { + content: "\edda"; +} +.ri-gps-line:before { + content: "\eddb"; +} +.ri-gradienter-fill:before { + content: "\eddc"; +} +.ri-gradienter-line:before { + content: "\eddd"; +} +.ri-grid-fill:before { + content: "\edde"; +} +.ri-grid-line:before { + content: "\eddf"; +} +.ri-group-2-fill:before { + content: "\ede0"; +} +.ri-group-2-line:before { + content: "\ede1"; +} +.ri-group-fill:before { + content: "\ede2"; +} +.ri-group-line:before { + content: "\ede3"; +} +.ri-guide-fill:before { + content: "\ede4"; +} +.ri-guide-line:before { + content: "\ede5"; +} +.ri-h-1:before { + content: "\ede6"; +} +.ri-h-2:before { + content: "\ede7"; +} +.ri-h-3:before { + content: "\ede8"; +} +.ri-h-4:before { + content: "\ede9"; +} +.ri-h-5:before { + content: "\edea"; +} +.ri-h-6:before { + content: "\edeb"; +} +.ri-hail-fill:before { + content: "\edec"; +} +.ri-hail-line:before { + content: "\eded"; +} +.ri-hammer-fill:before { + content: "\edee"; +} +.ri-hammer-line:before { + content: "\edef"; +} +.ri-hand-coin-fill:before { + content: "\edf0"; +} +.ri-hand-coin-line:before { + content: "\edf1"; +} +.ri-hand-heart-fill:before { + content: "\edf2"; +} +.ri-hand-heart-line:before { + content: "\edf3"; +} +.ri-hand-sanitizer-fill:before { + content: "\edf4"; +} +.ri-hand-sanitizer-line:before { + content: "\edf5"; +} +.ri-handbag-fill:before { + content: "\edf6"; +} +.ri-handbag-line:before { + content: "\edf7"; +} +.ri-hard-drive-2-fill:before { + content: "\edf8"; +} +.ri-hard-drive-2-line:before { + content: "\edf9"; +} +.ri-hard-drive-fill:before { + content: "\edfa"; +} +.ri-hard-drive-line:before { + content: "\edfb"; +} +.ri-hashtag:before { + content: "\edfc"; +} +.ri-haze-2-fill:before { + content: "\edfd"; +} +.ri-haze-2-line:before { + content: "\edfe"; +} +.ri-haze-fill:before { + content: "\edff"; +} +.ri-haze-line:before { + content: "\ee00"; +} +.ri-hd-fill:before { + content: "\ee01"; +} +.ri-hd-line:before { + content: "\ee02"; +} +.ri-heading:before { + content: "\ee03"; +} +.ri-headphone-fill:before { + content: "\ee04"; +} +.ri-headphone-line:before { + content: "\ee05"; +} +.ri-health-book-fill:before { + content: "\ee06"; +} +.ri-health-book-line:before { + content: "\ee07"; +} +.ri-heart-2-fill:before { + content: "\ee08"; +} +.ri-heart-2-line:before { + content: "\ee09"; +} +.ri-heart-3-fill:before { + content: "\ee0a"; +} +.ri-heart-3-line:before { + content: "\ee0b"; +} +.ri-heart-add-fill:before { + content: "\ee0c"; +} +.ri-heart-add-line:before { + content: "\ee0d"; +} +.ri-heart-fill:before { + content: "\ee0e"; +} +.ri-heart-line:before { + content: "\ee0f"; +} +.ri-heart-pulse-fill:before { + content: "\ee10"; +} +.ri-heart-pulse-line:before { + content: "\ee11"; +} +.ri-hearts-fill:before { + content: "\ee12"; +} +.ri-hearts-line:before { + content: "\ee13"; +} +.ri-heavy-showers-fill:before { + content: "\ee14"; +} +.ri-heavy-showers-line:before { + content: "\ee15"; +} +.ri-history-fill:before { + content: "\ee16"; +} +.ri-history-line:before { + content: "\ee17"; +} +.ri-home-2-fill:before { + content: "\ee18"; +} +.ri-home-2-line:before { + content: "\ee19"; +} +.ri-home-3-fill:before { + content: "\ee1a"; +} +.ri-home-3-line:before { + content: "\ee1b"; +} +.ri-home-4-fill:before { + content: "\ee1c"; +} +.ri-home-4-line:before { + content: "\ee1d"; +} +.ri-home-5-fill:before { + content: "\ee1e"; +} +.ri-home-5-line:before { + content: "\ee1f"; +} +.ri-home-6-fill:before { + content: "\ee20"; +} +.ri-home-6-line:before { + content: "\ee21"; +} +.ri-home-7-fill:before { + content: "\ee22"; +} +.ri-home-7-line:before { + content: "\ee23"; +} +.ri-home-8-fill:before { + content: "\ee24"; +} +.ri-home-8-line:before { + content: "\ee25"; +} +.ri-home-fill:before { + content: "\ee26"; +} +.ri-home-gear-fill:before { + content: "\ee27"; +} +.ri-home-gear-line:before { + content: "\ee28"; +} +.ri-home-heart-fill:before { + content: "\ee29"; +} +.ri-home-heart-line:before { + content: "\ee2a"; +} +.ri-home-line:before { + content: "\ee2b"; +} +.ri-home-smile-2-fill:before { + content: "\ee2c"; +} +.ri-home-smile-2-line:before { + content: "\ee2d"; +} +.ri-home-smile-fill:before { + content: "\ee2e"; +} +.ri-home-smile-line:before { + content: "\ee2f"; +} +.ri-home-wifi-fill:before { + content: "\ee30"; +} +.ri-home-wifi-line:before { + content: "\ee31"; +} +.ri-honor-of-kings-fill:before { + content: "\ee32"; +} +.ri-honor-of-kings-line:before { + content: "\ee33"; +} +.ri-honour-fill:before { + content: "\ee34"; +} +.ri-honour-line:before { + content: "\ee35"; +} +.ri-hospital-fill:before { + content: "\ee36"; +} +.ri-hospital-line:before { + content: "\ee37"; +} +.ri-hotel-bed-fill:before { + content: "\ee38"; +} +.ri-hotel-bed-line:before { + content: "\ee39"; +} +.ri-hotel-fill:before { + content: "\ee3a"; +} +.ri-hotel-line:before { + content: "\ee3b"; +} +.ri-hotspot-fill:before { + content: "\ee3c"; +} +.ri-hotspot-line:before { + content: "\ee3d"; +} +.ri-hq-fill:before { + content: "\ee3e"; +} +.ri-hq-line:before { + content: "\ee3f"; +} +.ri-html5-fill:before { + content: "\ee40"; +} +.ri-html5-line:before { + content: "\ee41"; +} +.ri-ie-fill:before { + content: "\ee42"; +} +.ri-ie-line:before { + content: "\ee43"; +} +.ri-image-2-fill:before { + content: "\ee44"; +} +.ri-image-2-line:before { + content: "\ee45"; +} +.ri-image-add-fill:before { + content: "\ee46"; +} +.ri-image-add-line:before { + content: "\ee47"; +} +.ri-image-edit-fill:before { + content: "\ee48"; +} +.ri-image-edit-line:before { + content: "\ee49"; +} +.ri-image-fill:before { + content: "\ee4a"; +} +.ri-image-line:before { + content: "\ee4b"; +} +.ri-inbox-archive-fill:before { + content: "\ee4c"; +} +.ri-inbox-archive-line:before { + content: "\ee4d"; +} +.ri-inbox-fill:before { + content: "\ee4e"; +} +.ri-inbox-line:before { + content: "\ee4f"; +} +.ri-inbox-unarchive-fill:before { + content: "\ee50"; +} +.ri-inbox-unarchive-line:before { + content: "\ee51"; +} +.ri-increase-decrease-fill:before { + content: "\ee52"; +} +.ri-increase-decrease-line:before { + content: "\ee53"; +} +.ri-indent-decrease:before { + content: "\ee54"; +} +.ri-indent-increase:before { + content: "\ee55"; +} +.ri-indeterminate-circle-fill:before { + content: "\ee56"; +} +.ri-indeterminate-circle-line:before { + content: "\ee57"; +} +.ri-information-fill:before { + content: "\ee58"; +} +.ri-information-line:before { + content: "\ee59"; +} +.ri-infrared-thermometer-fill:before { + content: "\ee5a"; +} +.ri-infrared-thermometer-line:before { + content: "\ee5b"; +} +.ri-ink-bottle-fill:before { + content: "\ee5c"; +} +.ri-ink-bottle-line:before { + content: "\ee5d"; +} +.ri-input-cursor-move:before { + content: "\ee5e"; +} +.ri-input-method-fill:before { + content: "\ee5f"; +} +.ri-input-method-line:before { + content: "\ee60"; +} +.ri-insert-column-left:before { + content: "\ee61"; +} +.ri-insert-column-right:before { + content: "\ee62"; +} +.ri-insert-row-bottom:before { + content: "\ee63"; +} +.ri-insert-row-top:before { + content: "\ee64"; +} +.ri-instagram-fill:before { + content: "\ee65"; +} +.ri-instagram-line:before { + content: "\ee66"; +} +.ri-install-fill:before { + content: "\ee67"; +} +.ri-install-line:before { + content: "\ee68"; +} +.ri-invision-fill:before { + content: "\ee69"; +} +.ri-invision-line:before { + content: "\ee6a"; +} +.ri-italic:before { + content: "\ee6b"; +} +.ri-kakao-talk-fill:before { + content: "\ee6c"; +} +.ri-kakao-talk-line:before { + content: "\ee6d"; +} +.ri-key-2-fill:before { + content: "\ee6e"; +} +.ri-key-2-line:before { + content: "\ee6f"; +} +.ri-key-fill:before { + content: "\ee70"; +} +.ri-key-line:before { + content: "\ee71"; +} +.ri-keyboard-box-fill:before { + content: "\ee72"; +} +.ri-keyboard-box-line:before { + content: "\ee73"; +} +.ri-keyboard-fill:before { + content: "\ee74"; +} +.ri-keyboard-line:before { + content: "\ee75"; +} +.ri-keynote-fill:before { + content: "\ee76"; +} +.ri-keynote-line:before { + content: "\ee77"; +} +.ri-knife-blood-fill:before { + content: "\ee78"; +} +.ri-knife-blood-line:before { + content: "\ee79"; +} +.ri-knife-fill:before { + content: "\ee7a"; +} +.ri-knife-line:before { + content: "\ee7b"; +} +.ri-landscape-fill:before { + content: "\ee7c"; +} +.ri-landscape-line:before { + content: "\ee7d"; +} +.ri-layout-2-fill:before { + content: "\ee7e"; +} +.ri-layout-2-line:before { + content: "\ee7f"; +} +.ri-layout-3-fill:before { + content: "\ee80"; +} +.ri-layout-3-line:before { + content: "\ee81"; +} +.ri-layout-4-fill:before { + content: "\ee82"; +} +.ri-layout-4-line:before { + content: "\ee83"; +} +.ri-layout-5-fill:before { + content: "\ee84"; +} +.ri-layout-5-line:before { + content: "\ee85"; +} +.ri-layout-6-fill:before { + content: "\ee86"; +} +.ri-layout-6-line:before { + content: "\ee87"; +} +.ri-layout-bottom-2-fill:before { + content: "\ee88"; +} +.ri-layout-bottom-2-line:before { + content: "\ee89"; +} +.ri-layout-bottom-fill:before { + content: "\ee8a"; +} +.ri-layout-bottom-line:before { + content: "\ee8b"; +} +.ri-layout-column-fill:before { + content: "\ee8c"; +} +.ri-layout-column-line:before { + content: "\ee8d"; +} +.ri-layout-fill:before { + content: "\ee8e"; +} +.ri-layout-grid-fill:before { + content: "\ee8f"; +} +.ri-layout-grid-line:before { + content: "\ee90"; +} +.ri-layout-left-2-fill:before { + content: "\ee91"; +} +.ri-layout-left-2-line:before { + content: "\ee92"; +} +.ri-layout-left-fill:before { + content: "\ee93"; +} +.ri-layout-left-line:before { + content: "\ee94"; +} +.ri-layout-line:before { + content: "\ee95"; +} +.ri-layout-masonry-fill:before { + content: "\ee96"; +} +.ri-layout-masonry-line:before { + content: "\ee97"; +} +.ri-layout-right-2-fill:before { + content: "\ee98"; +} +.ri-layout-right-2-line:before { + content: "\ee99"; +} +.ri-layout-right-fill:before { + content: "\ee9a"; +} +.ri-layout-right-line:before { + content: "\ee9b"; +} +.ri-layout-row-fill:before { + content: "\ee9c"; +} +.ri-layout-row-line:before { + content: "\ee9d"; +} +.ri-layout-top-2-fill:before { + content: "\ee9e"; +} +.ri-layout-top-2-line:before { + content: "\ee9f"; +} +.ri-layout-top-fill:before { + content: "\eea0"; +} +.ri-layout-top-line:before { + content: "\eea1"; +} +.ri-leaf-fill:before { + content: "\eea2"; +} +.ri-leaf-line:before { + content: "\eea3"; +} +.ri-lifebuoy-fill:before { + content: "\eea4"; +} +.ri-lifebuoy-line:before { + content: "\eea5"; +} +.ri-lightbulb-fill:before { + content: "\eea6"; +} +.ri-lightbulb-flash-fill:before { + content: "\eea7"; +} +.ri-lightbulb-flash-line:before { + content: "\eea8"; +} +.ri-lightbulb-line:before { + content: "\eea9"; +} +.ri-line-chart-fill:before { + content: "\eeaa"; +} +.ri-line-chart-line:before { + content: "\eeab"; +} +.ri-line-fill:before { + content: "\eeac"; +} +.ri-line-height:before { + content: "\eead"; +} +.ri-line-line:before { + content: "\eeae"; +} +.ri-link-m:before { + content: "\eeaf"; +} +.ri-link-unlink-m:before { + content: "\eeb0"; +} +.ri-link-unlink:before { + content: "\eeb1"; +} +.ri-link:before { + content: "\eeb2"; +} +.ri-linkedin-box-fill:before { + content: "\eeb3"; +} +.ri-linkedin-box-line:before { + content: "\eeb4"; +} +.ri-linkedin-fill:before { + content: "\eeb5"; +} +.ri-linkedin-line:before { + content: "\eeb6"; +} +.ri-links-fill:before { + content: "\eeb7"; +} +.ri-links-line:before { + content: "\eeb8"; +} +.ri-list-check-2:before { + content: "\eeb9"; +} +.ri-list-check:before { + content: "\eeba"; +} +.ri-list-ordered:before { + content: "\eebb"; +} +.ri-list-settings-fill:before { + content: "\eebc"; +} +.ri-list-settings-line:before { + content: "\eebd"; +} +.ri-list-unordered:before { + content: "\eebe"; +} +.ri-live-fill:before { + content: "\eebf"; +} +.ri-live-line:before { + content: "\eec0"; +} +.ri-loader-2-fill:before { + content: "\eec1"; +} +.ri-loader-2-line:before { + content: "\eec2"; +} +.ri-loader-3-fill:before { + content: "\eec3"; +} +.ri-loader-3-line:before { + content: "\eec4"; +} +.ri-loader-4-fill:before { + content: "\eec5"; +} +.ri-loader-4-line:before { + content: "\eec6"; +} +.ri-loader-5-fill:before { + content: "\eec7"; +} +.ri-loader-5-line:before { + content: "\eec8"; +} +.ri-loader-fill:before { + content: "\eec9"; +} +.ri-loader-line:before { + content: "\eeca"; +} +.ri-lock-2-fill:before { + content: "\eecb"; +} +.ri-lock-2-line:before { + content: "\eecc"; +} +.ri-lock-fill:before { + content: "\eecd"; +} +.ri-lock-line:before { + content: "\eece"; +} +.ri-lock-password-fill:before { + content: "\eecf"; +} +.ri-lock-password-line:before { + content: "\eed0"; +} +.ri-lock-unlock-fill:before { + content: "\eed1"; +} +.ri-lock-unlock-line:before { + content: "\eed2"; +} +.ri-login-box-fill:before { + content: "\eed3"; +} +.ri-login-box-line:before { + content: "\eed4"; +} +.ri-login-circle-fill:before { + content: "\eed5"; +} +.ri-login-circle-line:before { + content: "\eed6"; +} +.ri-logout-box-fill:before { + content: "\eed7"; +} +.ri-logout-box-line:before { + content: "\eed8"; +} +.ri-logout-box-r-fill:before { + content: "\eed9"; +} +.ri-logout-box-r-line:before { + content: "\eeda"; +} +.ri-logout-circle-fill:before { + content: "\eedb"; +} +.ri-logout-circle-line:before { + content: "\eedc"; +} +.ri-logout-circle-r-fill:before { + content: "\eedd"; +} +.ri-logout-circle-r-line:before { + content: "\eede"; +} +.ri-luggage-cart-fill:before { + content: "\eedf"; +} +.ri-luggage-cart-line:before { + content: "\eee0"; +} +.ri-luggage-deposit-fill:before { + content: "\eee1"; +} +.ri-luggage-deposit-line:before { + content: "\eee2"; +} +.ri-lungs-fill:before { + content: "\eee3"; +} +.ri-lungs-line:before { + content: "\eee4"; +} +.ri-mac-fill:before { + content: "\eee5"; +} +.ri-mac-line:before { + content: "\eee6"; +} +.ri-macbook-fill:before { + content: "\eee7"; +} +.ri-macbook-line:before { + content: "\eee8"; +} +.ri-magic-fill:before { + content: "\eee9"; +} +.ri-magic-line:before { + content: "\eeea"; +} +.ri-mail-add-fill:before { + content: "\eeeb"; +} +.ri-mail-add-line:before { + content: "\eeec"; +} +.ri-mail-check-fill:before { + content: "\eeed"; +} +.ri-mail-check-line:before { + content: "\eeee"; +} +.ri-mail-close-fill:before { + content: "\eeef"; +} +.ri-mail-close-line:before { + content: "\eef0"; +} +.ri-mail-download-fill:before { + content: "\eef1"; +} +.ri-mail-download-line:before { + content: "\eef2"; +} +.ri-mail-fill:before { + content: "\eef3"; +} +.ri-mail-forbid-fill:before { + content: "\eef4"; +} +.ri-mail-forbid-line:before { + content: "\eef5"; +} +.ri-mail-line:before { + content: "\eef6"; +} +.ri-mail-lock-fill:before { + content: "\eef7"; +} +.ri-mail-lock-line:before { + content: "\eef8"; +} +.ri-mail-open-fill:before { + content: "\eef9"; +} +.ri-mail-open-line:before { + content: "\eefa"; +} +.ri-mail-send-fill:before { + content: "\eefb"; +} +.ri-mail-send-line:before { + content: "\eefc"; +} +.ri-mail-settings-fill:before { + content: "\eefd"; +} +.ri-mail-settings-line:before { + content: "\eefe"; +} +.ri-mail-star-fill:before { + content: "\eeff"; +} +.ri-mail-star-line:before { + content: "\ef00"; +} +.ri-mail-unread-fill:before { + content: "\ef01"; +} +.ri-mail-unread-line:before { + content: "\ef02"; +} +.ri-mail-volume-fill:before { + content: "\ef03"; +} +.ri-mail-volume-line:before { + content: "\ef04"; +} +.ri-map-2-fill:before { + content: "\ef05"; +} +.ri-map-2-line:before { + content: "\ef06"; +} +.ri-map-fill:before { + content: "\ef07"; +} +.ri-map-line:before { + content: "\ef08"; +} +.ri-map-pin-2-fill:before { + content: "\ef09"; +} +.ri-map-pin-2-line:before { + content: "\ef0a"; +} +.ri-map-pin-3-fill:before { + content: "\ef0b"; +} +.ri-map-pin-3-line:before { + content: "\ef0c"; +} +.ri-map-pin-4-fill:before { + content: "\ef0d"; +} +.ri-map-pin-4-line:before { + content: "\ef0e"; +} +.ri-map-pin-5-fill:before { + content: "\ef0f"; +} +.ri-map-pin-5-line:before { + content: "\ef10"; +} +.ri-map-pin-add-fill:before { + content: "\ef11"; +} +.ri-map-pin-add-line:before { + content: "\ef12"; +} +.ri-map-pin-fill:before { + content: "\ef13"; +} +.ri-map-pin-line:before { + content: "\ef14"; +} +.ri-map-pin-range-fill:before { + content: "\ef15"; +} +.ri-map-pin-range-line:before { + content: "\ef16"; +} +.ri-map-pin-time-fill:before { + content: "\ef17"; +} +.ri-map-pin-time-line:before { + content: "\ef18"; +} +.ri-map-pin-user-fill:before { + content: "\ef19"; +} +.ri-map-pin-user-line:before { + content: "\ef1a"; +} +.ri-mark-pen-fill:before { + content: "\ef1b"; +} +.ri-mark-pen-line:before { + content: "\ef1c"; +} +.ri-markdown-fill:before { + content: "\ef1d"; +} +.ri-markdown-line:before { + content: "\ef1e"; +} +.ri-markup-fill:before { + content: "\ef1f"; +} +.ri-markup-line:before { + content: "\ef20"; +} +.ri-mastercard-fill:before { + content: "\ef21"; +} +.ri-mastercard-line:before { + content: "\ef22"; +} +.ri-mastodon-fill:before { + content: "\ef23"; +} +.ri-mastodon-line:before { + content: "\ef24"; +} +.ri-medal-2-fill:before { + content: "\ef25"; +} +.ri-medal-2-line:before { + content: "\ef26"; +} +.ri-medal-fill:before { + content: "\ef27"; +} +.ri-medal-line:before { + content: "\ef28"; +} +.ri-medicine-bottle-fill:before { + content: "\ef29"; +} +.ri-medicine-bottle-line:before { + content: "\ef2a"; +} +.ri-medium-fill:before { + content: "\ef2b"; +} +.ri-medium-line:before { + content: "\ef2c"; +} +.ri-men-fill:before { + content: "\ef2d"; +} +.ri-men-line:before { + content: "\ef2e"; +} +.ri-mental-health-fill:before { + content: "\ef2f"; +} +.ri-mental-health-line:before { + content: "\ef30"; +} +.ri-menu-2-fill:before { + content: "\ef31"; +} +.ri-menu-2-line:before { + content: "\ef32"; +} +.ri-menu-3-fill:before { + content: "\ef33"; +} +.ri-menu-3-line:before { + content: "\ef34"; +} +.ri-menu-4-fill:before { + content: "\ef35"; +} +.ri-menu-4-line:before { + content: "\ef36"; +} +.ri-menu-5-fill:before { + content: "\ef37"; +} +.ri-menu-5-line:before { + content: "\ef38"; +} +.ri-menu-add-fill:before { + content: "\ef39"; +} +.ri-menu-add-line:before { + content: "\ef3a"; +} +.ri-menu-fill:before { + content: "\ef3b"; +} +.ri-menu-fold-fill:before { + content: "\ef3c"; +} +.ri-menu-fold-line:before { + content: "\ef3d"; +} +.ri-menu-line:before { + content: "\ef3e"; +} +.ri-menu-unfold-fill:before { + content: "\ef3f"; +} +.ri-menu-unfold-line:before { + content: "\ef40"; +} +.ri-merge-cells-horizontal:before { + content: "\ef41"; +} +.ri-merge-cells-vertical:before { + content: "\ef42"; +} +.ri-message-2-fill:before { + content: "\ef43"; +} +.ri-message-2-line:before { + content: "\ef44"; +} +.ri-message-3-fill:before { + content: "\ef45"; +} +.ri-message-3-line:before { + content: "\ef46"; +} +.ri-message-fill:before { + content: "\ef47"; +} +.ri-message-line:before { + content: "\ef48"; +} +.ri-messenger-fill:before { + content: "\ef49"; +} +.ri-messenger-line:before { + content: "\ef4a"; +} +.ri-meteor-fill:before { + content: "\ef4b"; +} +.ri-meteor-line:before { + content: "\ef4c"; +} +.ri-mic-2-fill:before { + content: "\ef4d"; +} +.ri-mic-2-line:before { + content: "\ef4e"; +} +.ri-mic-fill:before { + content: "\ef4f"; +} +.ri-mic-line:before { + content: "\ef50"; +} +.ri-mic-off-fill:before { + content: "\ef51"; +} +.ri-mic-off-line:before { + content: "\ef52"; +} +.ri-mickey-fill:before { + content: "\ef53"; +} +.ri-mickey-line:before { + content: "\ef54"; +} +.ri-microscope-fill:before { + content: "\ef55"; +} +.ri-microscope-line:before { + content: "\ef56"; +} +.ri-microsoft-fill:before { + content: "\ef57"; +} +.ri-microsoft-line:before { + content: "\ef58"; +} +.ri-mind-map:before { + content: "\ef59"; +} +.ri-mini-program-fill:before { + content: "\ef5a"; +} +.ri-mini-program-line:before { + content: "\ef5b"; +} +.ri-mist-fill:before { + content: "\ef5c"; +} +.ri-mist-line:before { + content: "\ef5d"; +} +.ri-money-cny-box-fill:before { + content: "\ef5e"; +} +.ri-money-cny-box-line:before { + content: "\ef5f"; +} +.ri-money-cny-circle-fill:before { + content: "\ef60"; +} +.ri-money-cny-circle-line:before { + content: "\ef61"; +} +.ri-money-dollar-box-fill:before { + content: "\ef62"; +} +.ri-money-dollar-box-line:before { + content: "\ef63"; +} +.ri-money-dollar-circle-fill:before { + content: "\ef64"; +} +.ri-money-dollar-circle-line:before { + content: "\ef65"; +} +.ri-money-euro-box-fill:before { + content: "\ef66"; +} +.ri-money-euro-box-line:before { + content: "\ef67"; +} +.ri-money-euro-circle-fill:before { + content: "\ef68"; +} +.ri-money-euro-circle-line:before { + content: "\ef69"; +} +.ri-money-pound-box-fill:before { + content: "\ef6a"; +} +.ri-money-pound-box-line:before { + content: "\ef6b"; +} +.ri-money-pound-circle-fill:before { + content: "\ef6c"; +} +.ri-money-pound-circle-line:before { + content: "\ef6d"; +} +.ri-moon-clear-fill:before { + content: "\ef6e"; +} +.ri-moon-clear-line:before { + content: "\ef6f"; +} +.ri-moon-cloudy-fill:before { + content: "\ef70"; +} +.ri-moon-cloudy-line:before { + content: "\ef71"; +} +.ri-moon-fill:before { + content: "\ef72"; +} +.ri-moon-foggy-fill:before { + content: "\ef73"; +} +.ri-moon-foggy-line:before { + content: "\ef74"; +} +.ri-moon-line:before { + content: "\ef75"; +} +.ri-more-2-fill:before { + content: "\ef76"; +} +.ri-more-2-line:before { + content: "\ef77"; +} +.ri-more-fill:before { + content: "\ef78"; +} +.ri-more-line:before { + content: "\ef79"; +} +.ri-motorbike-fill:before { + content: "\ef7a"; +} +.ri-motorbike-line:before { + content: "\ef7b"; +} +.ri-mouse-fill:before { + content: "\ef7c"; +} +.ri-mouse-line:before { + content: "\ef7d"; +} +.ri-movie-2-fill:before { + content: "\ef7e"; +} +.ri-movie-2-line:before { + content: "\ef7f"; +} +.ri-movie-fill:before { + content: "\ef80"; +} +.ri-movie-line:before { + content: "\ef81"; +} +.ri-music-2-fill:before { + content: "\ef82"; +} +.ri-music-2-line:before { + content: "\ef83"; +} +.ri-music-fill:before { + content: "\ef84"; +} +.ri-music-line:before { + content: "\ef85"; +} +.ri-mv-fill:before { + content: "\ef86"; +} +.ri-mv-line:before { + content: "\ef87"; +} +.ri-navigation-fill:before { + content: "\ef88"; +} +.ri-navigation-line:before { + content: "\ef89"; +} +.ri-netease-cloud-music-fill:before { + content: "\ef8a"; +} +.ri-netease-cloud-music-line:before { + content: "\ef8b"; +} +.ri-netflix-fill:before { + content: "\ef8c"; +} +.ri-netflix-line:before { + content: "\ef8d"; +} +.ri-newspaper-fill:before { + content: "\ef8e"; +} +.ri-newspaper-line:before { + content: "\ef8f"; +} +.ri-node-tree:before { + content: "\ef90"; +} +.ri-notification-2-fill:before { + content: "\ef91"; +} +.ri-notification-2-line:before { + content: "\ef92"; +} +.ri-notification-3-fill:before { + content: "\ef93"; +} +.ri-notification-3-line:before { + content: "\ef94"; +} +.ri-notification-4-fill:before { + content: "\ef95"; +} +.ri-notification-4-line:before { + content: "\ef96"; +} +.ri-notification-badge-fill:before { + content: "\ef97"; +} +.ri-notification-badge-line:before { + content: "\ef98"; +} +.ri-notification-fill:before { + content: "\ef99"; +} +.ri-notification-line:before { + content: "\ef9a"; +} +.ri-notification-off-fill:before { + content: "\ef9b"; +} +.ri-notification-off-line:before { + content: "\ef9c"; +} +.ri-npmjs-fill:before { + content: "\ef9d"; +} +.ri-npmjs-line:before { + content: "\ef9e"; +} +.ri-number-0:before { + content: "\ef9f"; +} +.ri-number-1:before { + content: "\efa0"; +} +.ri-number-2:before { + content: "\efa1"; +} +.ri-number-3:before { + content: "\efa2"; +} +.ri-number-4:before { + content: "\efa3"; +} +.ri-number-5:before { + content: "\efa4"; +} +.ri-number-6:before { + content: "\efa5"; +} +.ri-number-7:before { + content: "\efa6"; +} +.ri-number-8:before { + content: "\efa7"; +} +.ri-number-9:before { + content: "\efa8"; +} +.ri-numbers-fill:before { + content: "\efa9"; +} +.ri-numbers-line:before { + content: "\efaa"; +} +.ri-nurse-fill:before { + content: "\efab"; +} +.ri-nurse-line:before { + content: "\efac"; +} +.ri-oil-fill:before { + content: "\efad"; +} +.ri-oil-line:before { + content: "\efae"; +} +.ri-omega:before { + content: "\efaf"; +} +.ri-open-arm-fill:before { + content: "\efb0"; +} +.ri-open-arm-line:before { + content: "\efb1"; +} +.ri-open-source-fill:before { + content: "\efb2"; +} +.ri-open-source-line:before { + content: "\efb3"; +} +.ri-opera-fill:before { + content: "\efb4"; +} +.ri-opera-line:before { + content: "\efb5"; +} +.ri-order-play-fill:before { + content: "\efb6"; +} +.ri-order-play-line:before { + content: "\efb7"; +} +.ri-organization-chart:before { + content: "\efb8"; +} +.ri-outlet-2-fill:before { + content: "\efb9"; +} +.ri-outlet-2-line:before { + content: "\efba"; +} +.ri-outlet-fill:before { + content: "\efbb"; +} +.ri-outlet-line:before { + content: "\efbc"; +} +.ri-page-separator:before { + content: "\efbd"; +} +.ri-pages-fill:before { + content: "\efbe"; +} +.ri-pages-line:before { + content: "\efbf"; +} +.ri-paint-brush-fill:before { + content: "\efc0"; +} +.ri-paint-brush-line:before { + content: "\efc1"; +} +.ri-paint-fill:before { + content: "\efc2"; +} +.ri-paint-line:before { + content: "\efc3"; +} +.ri-palette-fill:before { + content: "\efc4"; +} +.ri-palette-line:before { + content: "\efc5"; +} +.ri-pantone-fill:before { + content: "\efc6"; +} +.ri-pantone-line:before { + content: "\efc7"; +} +.ri-paragraph:before { + content: "\efc8"; +} +.ri-parent-fill:before { + content: "\efc9"; +} +.ri-parent-line:before { + content: "\efca"; +} +.ri-parentheses-fill:before { + content: "\efcb"; +} +.ri-parentheses-line:before { + content: "\efcc"; +} +.ri-parking-box-fill:before { + content: "\efcd"; +} +.ri-parking-box-line:before { + content: "\efce"; +} +.ri-parking-fill:before { + content: "\efcf"; +} +.ri-parking-line:before { + content: "\efd0"; +} +.ri-passport-fill:before { + content: "\efd1"; +} +.ri-passport-line:before { + content: "\efd2"; +} +.ri-patreon-fill:before { + content: "\efd3"; +} +.ri-patreon-line:before { + content: "\efd4"; +} +.ri-pause-circle-fill:before { + content: "\efd5"; +} +.ri-pause-circle-line:before { + content: "\efd6"; +} +.ri-pause-fill:before { + content: "\efd7"; +} +.ri-pause-line:before { + content: "\efd8"; +} +.ri-pause-mini-fill:before { + content: "\efd9"; +} +.ri-pause-mini-line:before { + content: "\efda"; +} +.ri-paypal-fill:before { + content: "\efdb"; +} +.ri-paypal-line:before { + content: "\efdc"; +} +.ri-pen-nib-fill:before { + content: "\efdd"; +} +.ri-pen-nib-line:before { + content: "\efde"; +} +.ri-pencil-fill:before { + content: "\efdf"; +} +.ri-pencil-line:before { + content: "\efe0"; +} +.ri-pencil-ruler-2-fill:before { + content: "\efe1"; +} +.ri-pencil-ruler-2-line:before { + content: "\efe2"; +} +.ri-pencil-ruler-fill:before { + content: "\efe3"; +} +.ri-pencil-ruler-line:before { + content: "\efe4"; +} +.ri-percent-fill:before { + content: "\efe5"; +} +.ri-percent-line:before { + content: "\efe6"; +} +.ri-phone-camera-fill:before { + content: "\efe7"; +} +.ri-phone-camera-line:before { + content: "\efe8"; +} +.ri-phone-fill:before { + content: "\efe9"; +} +.ri-phone-find-fill:before { + content: "\efea"; +} +.ri-phone-find-line:before { + content: "\efeb"; +} +.ri-phone-line:before { + content: "\efec"; +} +.ri-phone-lock-fill:before { + content: "\efed"; +} +.ri-phone-lock-line:before { + content: "\efee"; +} +.ri-picture-in-picture-2-fill:before { + content: "\efef"; +} +.ri-picture-in-picture-2-line:before { + content: "\eff0"; +} +.ri-picture-in-picture-exit-fill:before { + content: "\eff1"; +} +.ri-picture-in-picture-exit-line:before { + content: "\eff2"; +} +.ri-picture-in-picture-fill:before { + content: "\eff3"; +} +.ri-picture-in-picture-line:before { + content: "\eff4"; +} +.ri-pie-chart-2-fill:before { + content: "\eff5"; +} +.ri-pie-chart-2-line:before { + content: "\eff6"; +} +.ri-pie-chart-box-fill:before { + content: "\eff7"; +} +.ri-pie-chart-box-line:before { + content: "\eff8"; +} +.ri-pie-chart-fill:before { + content: "\eff9"; +} +.ri-pie-chart-line:before { + content: "\effa"; +} +.ri-pin-distance-fill:before { + content: "\effb"; +} +.ri-pin-distance-line:before { + content: "\effc"; +} +.ri-ping-pong-fill:before { + content: "\effd"; +} +.ri-ping-pong-line:before { + content: "\effe"; +} +.ri-pinterest-fill:before { + content: "\efff"; +} +.ri-pinterest-line:before { + content: "\f000"; +} +.ri-pinyin-input:before { + content: "\f001"; +} +.ri-pixelfed-fill:before { + content: "\f002"; +} +.ri-pixelfed-line:before { + content: "\f003"; +} +.ri-plane-fill:before { + content: "\f004"; +} +.ri-plane-line:before { + content: "\f005"; +} +.ri-plant-fill:before { + content: "\f006"; +} +.ri-plant-line:before { + content: "\f007"; +} +.ri-play-circle-fill:before { + content: "\f008"; +} +.ri-play-circle-line:before { + content: "\f009"; +} +.ri-play-fill:before { + content: "\f00a"; +} +.ri-play-line:before { + content: "\f00b"; +} +.ri-play-list-2-fill:before { + content: "\f00c"; +} +.ri-play-list-2-line:before { + content: "\f00d"; +} +.ri-play-list-add-fill:before { + content: "\f00e"; +} +.ri-play-list-add-line:before { + content: "\f00f"; +} +.ri-play-list-fill:before { + content: "\f010"; +} +.ri-play-list-line:before { + content: "\f011"; +} +.ri-play-mini-fill:before { + content: "\f012"; +} +.ri-play-mini-line:before { + content: "\f013"; +} +.ri-playstation-fill:before { + content: "\f014"; +} +.ri-playstation-line:before { + content: "\f015"; +} +.ri-plug-2-fill:before { + content: "\f016"; +} +.ri-plug-2-line:before { + content: "\f017"; +} +.ri-plug-fill:before { + content: "\f018"; +} +.ri-plug-line:before { + content: "\f019"; +} +.ri-polaroid-2-fill:before { + content: "\f01a"; +} +.ri-polaroid-2-line:before { + content: "\f01b"; +} +.ri-polaroid-fill:before { + content: "\f01c"; +} +.ri-polaroid-line:before { + content: "\f01d"; +} +.ri-police-car-fill:before { + content: "\f01e"; +} +.ri-police-car-line:before { + content: "\f01f"; +} +.ri-price-tag-2-fill:before { + content: "\f020"; +} +.ri-price-tag-2-line:before { + content: "\f021"; +} +.ri-price-tag-3-fill:before { + content: "\f022"; +} +.ri-price-tag-3-line:before { + content: "\f023"; +} +.ri-price-tag-fill:before { + content: "\f024"; +} +.ri-price-tag-line:before { + content: "\f025"; +} +.ri-printer-cloud-fill:before { + content: "\f026"; +} +.ri-printer-cloud-line:before { + content: "\f027"; +} +.ri-printer-fill:before { + content: "\f028"; +} +.ri-printer-line:before { + content: "\f029"; +} +.ri-product-hunt-fill:before { + content: "\f02a"; +} +.ri-product-hunt-line:before { + content: "\f02b"; +} +.ri-profile-fill:before { + content: "\f02c"; +} +.ri-profile-line:before { + content: "\f02d"; +} +.ri-projector-2-fill:before { + content: "\f02e"; +} +.ri-projector-2-line:before { + content: "\f02f"; +} +.ri-projector-fill:before { + content: "\f030"; +} +.ri-projector-line:before { + content: "\f031"; +} +.ri-psychotherapy-fill:before { + content: "\f032"; +} +.ri-psychotherapy-line:before { + content: "\f033"; +} +.ri-pulse-fill:before { + content: "\f034"; +} +.ri-pulse-line:before { + content: "\f035"; +} +.ri-pushpin-2-fill:before { + content: "\f036"; +} +.ri-pushpin-2-line:before { + content: "\f037"; +} +.ri-pushpin-fill:before { + content: "\f038"; +} +.ri-pushpin-line:before { + content: "\f039"; +} +.ri-qq-fill:before { + content: "\f03a"; +} +.ri-qq-line:before { + content: "\f03b"; +} +.ri-qr-code-fill:before { + content: "\f03c"; +} +.ri-qr-code-line:before { + content: "\f03d"; +} +.ri-qr-scan-2-fill:before { + content: "\f03e"; +} +.ri-qr-scan-2-line:before { + content: "\f03f"; +} +.ri-qr-scan-fill:before { + content: "\f040"; +} +.ri-qr-scan-line:before { + content: "\f041"; +} +.ri-question-answer-fill:before { + content: "\f042"; +} +.ri-question-answer-line:before { + content: "\f043"; +} +.ri-question-fill:before { + content: "\f044"; +} +.ri-question-line:before { + content: "\f045"; +} +.ri-question-mark:before { + content: "\f046"; +} +.ri-questionnaire-fill:before { + content: "\f047"; +} +.ri-questionnaire-line:before { + content: "\f048"; +} +.ri-quill-pen-fill:before { + content: "\f049"; +} +.ri-quill-pen-line:before { + content: "\f04a"; +} +.ri-radar-fill:before { + content: "\f04b"; +} +.ri-radar-line:before { + content: "\f04c"; +} +.ri-radio-2-fill:before { + content: "\f04d"; +} +.ri-radio-2-line:before { + content: "\f04e"; +} +.ri-radio-button-fill:before { + content: "\f04f"; +} +.ri-radio-button-line:before { + content: "\f050"; +} +.ri-radio-fill:before { + content: "\f051"; +} +.ri-radio-line:before { + content: "\f052"; +} +.ri-rainbow-fill:before { + content: "\f053"; +} +.ri-rainbow-line:before { + content: "\f054"; +} +.ri-rainy-fill:before { + content: "\f055"; +} +.ri-rainy-line:before { + content: "\f056"; +} +.ri-reactjs-fill:before { + content: "\f057"; +} +.ri-reactjs-line:before { + content: "\f058"; +} +.ri-record-circle-fill:before { + content: "\f059"; +} +.ri-record-circle-line:before { + content: "\f05a"; +} +.ri-record-mail-fill:before { + content: "\f05b"; +} +.ri-record-mail-line:before { + content: "\f05c"; +} +.ri-recycle-fill:before { + content: "\f05d"; +} +.ri-recycle-line:before { + content: "\f05e"; +} +.ri-red-packet-fill:before { + content: "\f05f"; +} +.ri-red-packet-line:before { + content: "\f060"; +} +.ri-reddit-fill:before { + content: "\f061"; +} +.ri-reddit-line:before { + content: "\f062"; +} +.ri-refresh-fill:before { + content: "\f063"; +} +.ri-refresh-line:before { + content: "\f064"; +} +.ri-refund-2-fill:before { + content: "\f065"; +} +.ri-refund-2-line:before { + content: "\f066"; +} +.ri-refund-fill:before { + content: "\f067"; +} +.ri-refund-line:before { + content: "\f068"; +} +.ri-registered-fill:before { + content: "\f069"; +} +.ri-registered-line:before { + content: "\f06a"; +} +.ri-remixicon-fill:before { + content: "\f06b"; +} +.ri-remixicon-line:before { + content: "\f06c"; +} +.ri-remote-control-2-fill:before { + content: "\f06d"; +} +.ri-remote-control-2-line:before { + content: "\f06e"; +} +.ri-remote-control-fill:before { + content: "\f06f"; +} +.ri-remote-control-line:before { + content: "\f070"; +} +.ri-repeat-2-fill:before { + content: "\f071"; +} +.ri-repeat-2-line:before { + content: "\f072"; +} +.ri-repeat-fill:before { + content: "\f073"; +} +.ri-repeat-line:before { + content: "\f074"; +} +.ri-repeat-one-fill:before { + content: "\f075"; +} +.ri-repeat-one-line:before { + content: "\f076"; +} +.ri-reply-all-fill:before { + content: "\f077"; +} +.ri-reply-all-line:before { + content: "\f078"; +} +.ri-reply-fill:before { + content: "\f079"; +} +.ri-reply-line:before { + content: "\f07a"; +} +.ri-reserved-fill:before { + content: "\f07b"; +} +.ri-reserved-line:before { + content: "\f07c"; +} +.ri-rest-time-fill:before { + content: "\f07d"; +} +.ri-rest-time-line:before { + content: "\f07e"; +} +.ri-restart-fill:before { + content: "\f07f"; +} +.ri-restart-line:before { + content: "\f080"; +} +.ri-restaurant-2-fill:before { + content: "\f081"; +} +.ri-restaurant-2-line:before { + content: "\f082"; +} +.ri-restaurant-fill:before { + content: "\f083"; +} +.ri-restaurant-line:before { + content: "\f084"; +} +.ri-rewind-fill:before { + content: "\f085"; +} +.ri-rewind-line:before { + content: "\f086"; +} +.ri-rewind-mini-fill:before { + content: "\f087"; +} +.ri-rewind-mini-line:before { + content: "\f088"; +} +.ri-rhythm-fill:before { + content: "\f089"; +} +.ri-rhythm-line:before { + content: "\f08a"; +} +.ri-riding-fill:before { + content: "\f08b"; +} +.ri-riding-line:before { + content: "\f08c"; +} +.ri-road-map-fill:before { + content: "\f08d"; +} +.ri-road-map-line:before { + content: "\f08e"; +} +.ri-roadster-fill:before { + content: "\f08f"; +} +.ri-roadster-line:before { + content: "\f090"; +} +.ri-robot-fill:before { + content: "\f091"; +} +.ri-robot-line:before { + content: "\f092"; +} +.ri-rocket-2-fill:before { + content: "\f093"; +} +.ri-rocket-2-line:before { + content: "\f094"; +} +.ri-rocket-fill:before { + content: "\f095"; +} +.ri-rocket-line:before { + content: "\f096"; +} +.ri-rotate-lock-fill:before { + content: "\f097"; +} +.ri-rotate-lock-line:before { + content: "\f098"; +} +.ri-rounded-corner:before { + content: "\f099"; +} +.ri-route-fill:before { + content: "\f09a"; +} +.ri-route-line:before { + content: "\f09b"; +} +.ri-router-fill:before { + content: "\f09c"; +} +.ri-router-line:before { + content: "\f09d"; +} +.ri-rss-fill:before { + content: "\f09e"; +} +.ri-rss-line:before { + content: "\f09f"; +} +.ri-ruler-2-fill:before { + content: "\f0a0"; +} +.ri-ruler-2-line:before { + content: "\f0a1"; +} +.ri-ruler-fill:before { + content: "\f0a2"; +} +.ri-ruler-line:before { + content: "\f0a3"; +} +.ri-run-fill:before { + content: "\f0a4"; +} +.ri-run-line:before { + content: "\f0a5"; +} +.ri-safari-fill:before { + content: "\f0a6"; +} +.ri-safari-line:before { + content: "\f0a7"; +} +.ri-safe-2-fill:before { + content: "\f0a8"; +} +.ri-safe-2-line:before { + content: "\f0a9"; +} +.ri-safe-fill:before { + content: "\f0aa"; +} +.ri-safe-line:before { + content: "\f0ab"; +} +.ri-sailboat-fill:before { + content: "\f0ac"; +} +.ri-sailboat-line:before { + content: "\f0ad"; +} +.ri-save-2-fill:before { + content: "\f0ae"; +} +.ri-save-2-line:before { + content: "\f0af"; +} +.ri-save-3-fill:before { + content: "\f0b0"; +} +.ri-save-3-line:before { + content: "\f0b1"; +} +.ri-save-fill:before { + content: "\f0b2"; +} +.ri-save-line:before { + content: "\f0b3"; +} +.ri-scales-2-fill:before { + content: "\f0b4"; +} +.ri-scales-2-line:before { + content: "\f0b5"; +} +.ri-scales-3-fill:before { + content: "\f0b6"; +} +.ri-scales-3-line:before { + content: "\f0b7"; +} +.ri-scales-fill:before { + content: "\f0b8"; +} +.ri-scales-line:before { + content: "\f0b9"; +} +.ri-scan-2-fill:before { + content: "\f0ba"; +} +.ri-scan-2-line:before { + content: "\f0bb"; +} +.ri-scan-fill:before { + content: "\f0bc"; +} +.ri-scan-line:before { + content: "\f0bd"; +} +.ri-scissors-2-fill:before { + content: "\f0be"; +} +.ri-scissors-2-line:before { + content: "\f0bf"; +} +.ri-scissors-cut-fill:before { + content: "\f0c0"; +} +.ri-scissors-cut-line:before { + content: "\f0c1"; +} +.ri-scissors-fill:before { + content: "\f0c2"; +} +.ri-scissors-line:before { + content: "\f0c3"; +} +.ri-screenshot-2-fill:before { + content: "\f0c4"; +} +.ri-screenshot-2-line:before { + content: "\f0c5"; +} +.ri-screenshot-fill:before { + content: "\f0c6"; +} +.ri-screenshot-line:before { + content: "\f0c7"; +} +.ri-sd-card-fill:before { + content: "\f0c8"; +} +.ri-sd-card-line:before { + content: "\f0c9"; +} +.ri-sd-card-mini-fill:before { + content: "\f0ca"; +} +.ri-sd-card-mini-line:before { + content: "\f0cb"; +} +.ri-search-2-fill:before { + content: "\f0cc"; +} +.ri-search-2-line:before { + content: "\f0cd"; +} +.ri-search-eye-fill:before { + content: "\f0ce"; +} +.ri-search-eye-line:before { + content: "\f0cf"; +} +.ri-search-fill:before { + content: "\f0d0"; +} +.ri-search-line:before { + content: "\f0d1"; +} +.ri-secure-payment-fill:before { + content: "\f0d2"; +} +.ri-secure-payment-line:before { + content: "\f0d3"; +} +.ri-seedling-fill:before { + content: "\f0d4"; +} +.ri-seedling-line:before { + content: "\f0d5"; +} +.ri-send-backward:before { + content: "\f0d6"; +} +.ri-send-plane-2-fill:before { + content: "\f0d7"; +} +.ri-send-plane-2-line:before { + content: "\f0d8"; +} +.ri-send-plane-fill:before { + content: "\f0d9"; +} +.ri-send-plane-line:before { + content: "\f0da"; +} +.ri-send-to-back:before { + content: "\f0db"; +} +.ri-sensor-fill:before { + content: "\f0dc"; +} +.ri-sensor-line:before { + content: "\f0dd"; +} +.ri-separator:before { + content: "\f0de"; +} +.ri-server-fill:before { + content: "\f0df"; +} +.ri-server-line:before { + content: "\f0e0"; +} +.ri-service-fill:before { + content: "\f0e1"; +} +.ri-service-line:before { + content: "\f0e2"; +} +.ri-settings-2-fill:before { + content: "\f0e3"; +} +.ri-settings-2-line:before { + content: "\f0e4"; +} +.ri-settings-3-fill:before { + content: "\f0e5"; +} +.ri-settings-3-line:before { + content: "\f0e6"; +} +.ri-settings-4-fill:before { + content: "\f0e7"; +} +.ri-settings-4-line:before { + content: "\f0e8"; +} +.ri-settings-5-fill:before { + content: "\f0e9"; +} +.ri-settings-5-line:before { + content: "\f0ea"; +} +.ri-settings-6-fill:before { + content: "\f0eb"; +} +.ri-settings-6-line:before { + content: "\f0ec"; +} +.ri-settings-fill:before { + content: "\f0ed"; +} +.ri-settings-line:before { + content: "\f0ee"; +} +.ri-shape-2-fill:before { + content: "\f0ef"; +} +.ri-shape-2-line:before { + content: "\f0f0"; +} +.ri-shape-fill:before { + content: "\f0f1"; +} +.ri-shape-line:before { + content: "\f0f2"; +} +.ri-share-box-fill:before { + content: "\f0f3"; +} +.ri-share-box-line:before { + content: "\f0f4"; +} +.ri-share-circle-fill:before { + content: "\f0f5"; +} +.ri-share-circle-line:before { + content: "\f0f6"; +} +.ri-share-fill:before { + content: "\f0f7"; +} +.ri-share-forward-2-fill:before { + content: "\f0f8"; +} +.ri-share-forward-2-line:before { + content: "\f0f9"; +} +.ri-share-forward-box-fill:before { + content: "\f0fa"; +} +.ri-share-forward-box-line:before { + content: "\f0fb"; +} +.ri-share-forward-fill:before { + content: "\f0fc"; +} +.ri-share-forward-line:before { + content: "\f0fd"; +} +.ri-share-line:before { + content: "\f0fe"; +} +.ri-shield-check-fill:before { + content: "\f0ff"; +} +.ri-shield-check-line:before { + content: "\f100"; +} +.ri-shield-cross-fill:before { + content: "\f101"; +} +.ri-shield-cross-line:before { + content: "\f102"; +} +.ri-shield-fill:before { + content: "\f103"; +} +.ri-shield-flash-fill:before { + content: "\f104"; +} +.ri-shield-flash-line:before { + content: "\f105"; +} +.ri-shield-keyhole-fill:before { + content: "\f106"; +} +.ri-shield-keyhole-line:before { + content: "\f107"; +} +.ri-shield-line:before { + content: "\f108"; +} +.ri-shield-star-fill:before { + content: "\f109"; +} +.ri-shield-star-line:before { + content: "\f10a"; +} +.ri-shield-user-fill:before { + content: "\f10b"; +} +.ri-shield-user-line:before { + content: "\f10c"; +} +.ri-ship-2-fill:before { + content: "\f10d"; +} +.ri-ship-2-line:before { + content: "\f10e"; +} +.ri-ship-fill:before { + content: "\f10f"; +} +.ri-ship-line:before { + content: "\f110"; +} +.ri-shirt-fill:before { + content: "\f111"; +} +.ri-shirt-line:before { + content: "\f112"; +} +.ri-shopping-bag-2-fill:before { + content: "\f113"; +} +.ri-shopping-bag-2-line:before { + content: "\f114"; +} +.ri-shopping-bag-3-fill:before { + content: "\f115"; +} +.ri-shopping-bag-3-line:before { + content: "\f116"; +} +.ri-shopping-bag-fill:before { + content: "\f117"; +} +.ri-shopping-bag-line:before { + content: "\f118"; +} +.ri-shopping-basket-2-fill:before { + content: "\f119"; +} +.ri-shopping-basket-2-line:before { + content: "\f11a"; +} +.ri-shopping-basket-fill:before { + content: "\f11b"; +} +.ri-shopping-basket-line:before { + content: "\f11c"; +} +.ri-shopping-cart-2-fill:before { + content: "\f11d"; +} +.ri-shopping-cart-2-line:before { + content: "\f11e"; +} +.ri-shopping-cart-fill:before { + content: "\f11f"; +} +.ri-shopping-cart-line:before { + content: "\f120"; +} +.ri-showers-fill:before { + content: "\f121"; +} +.ri-showers-line:before { + content: "\f122"; +} +.ri-shuffle-fill:before { + content: "\f123"; +} +.ri-shuffle-line:before { + content: "\f124"; +} +.ri-shut-down-fill:before { + content: "\f125"; +} +.ri-shut-down-line:before { + content: "\f126"; +} +.ri-side-bar-fill:before { + content: "\f127"; +} +.ri-side-bar-line:before { + content: "\f128"; +} +.ri-signal-tower-fill:before { + content: "\f129"; +} +.ri-signal-tower-line:before { + content: "\f12a"; +} +.ri-signal-wifi-1-fill:before { + content: "\f12b"; +} +.ri-signal-wifi-1-line:before { + content: "\f12c"; +} +.ri-signal-wifi-2-fill:before { + content: "\f12d"; +} +.ri-signal-wifi-2-line:before { + content: "\f12e"; +} +.ri-signal-wifi-3-fill:before { + content: "\f12f"; +} +.ri-signal-wifi-3-line:before { + content: "\f130"; +} +.ri-signal-wifi-error-fill:before { + content: "\f131"; +} +.ri-signal-wifi-error-line:before { + content: "\f132"; +} +.ri-signal-wifi-fill:before { + content: "\f133"; +} +.ri-signal-wifi-line:before { + content: "\f134"; +} +.ri-signal-wifi-off-fill:before { + content: "\f135"; +} +.ri-signal-wifi-off-line:before { + content: "\f136"; +} +.ri-sim-card-2-fill:before { + content: "\f137"; +} +.ri-sim-card-2-line:before { + content: "\f138"; +} +.ri-sim-card-fill:before { + content: "\f139"; +} +.ri-sim-card-line:before { + content: "\f13a"; +} +.ri-single-quotes-l:before { + content: "\f13b"; +} +.ri-single-quotes-r:before { + content: "\f13c"; +} +.ri-sip-fill:before { + content: "\f13d"; +} +.ri-sip-line:before { + content: "\f13e"; +} +.ri-skip-back-fill:before { + content: "\f13f"; +} +.ri-skip-back-line:before { + content: "\f140"; +} +.ri-skip-back-mini-fill:before { + content: "\f141"; +} +.ri-skip-back-mini-line:before { + content: "\f142"; +} +.ri-skip-forward-fill:before { + content: "\f143"; +} +.ri-skip-forward-line:before { + content: "\f144"; +} +.ri-skip-forward-mini-fill:before { + content: "\f145"; +} +.ri-skip-forward-mini-line:before { + content: "\f146"; +} +.ri-skull-2-fill:before { + content: "\f147"; +} +.ri-skull-2-line:before { + content: "\f148"; +} +.ri-skull-fill:before { + content: "\f149"; +} +.ri-skull-line:before { + content: "\f14a"; +} +.ri-skype-fill:before { + content: "\f14b"; +} +.ri-skype-line:before { + content: "\f14c"; +} +.ri-slack-fill:before { + content: "\f14d"; +} +.ri-slack-line:before { + content: "\f14e"; +} +.ri-slice-fill:before { + content: "\f14f"; +} +.ri-slice-line:before { + content: "\f150"; +} +.ri-slideshow-2-fill:before { + content: "\f151"; +} +.ri-slideshow-2-line:before { + content: "\f152"; +} +.ri-slideshow-3-fill:before { + content: "\f153"; +} +.ri-slideshow-3-line:before { + content: "\f154"; +} +.ri-slideshow-4-fill:before { + content: "\f155"; +} +.ri-slideshow-4-line:before { + content: "\f156"; +} +.ri-slideshow-fill:before { + content: "\f157"; +} +.ri-slideshow-line:before { + content: "\f158"; +} +.ri-smartphone-fill:before { + content: "\f159"; +} +.ri-smartphone-line:before { + content: "\f15a"; +} +.ri-snapchat-fill:before { + content: "\f15b"; +} +.ri-snapchat-line:before { + content: "\f15c"; +} +.ri-snowy-fill:before { + content: "\f15d"; +} +.ri-snowy-line:before { + content: "\f15e"; +} +.ri-sort-asc:before { + content: "\f15f"; +} +.ri-sort-desc:before { + content: "\f160"; +} +.ri-sound-module-fill:before { + content: "\f161"; +} +.ri-sound-module-line:before { + content: "\f162"; +} +.ri-soundcloud-fill:before { + content: "\f163"; +} +.ri-soundcloud-line:before { + content: "\f164"; +} +.ri-space-ship-fill:before { + content: "\f165"; +} +.ri-space-ship-line:before { + content: "\f166"; +} +.ri-space:before { + content: "\f167"; +} +.ri-spam-2-fill:before { + content: "\f168"; +} +.ri-spam-2-line:before { + content: "\f169"; +} +.ri-spam-3-fill:before { + content: "\f16a"; +} +.ri-spam-3-line:before { + content: "\f16b"; +} +.ri-spam-fill:before { + content: "\f16c"; +} +.ri-spam-line:before { + content: "\f16d"; +} +.ri-speaker-2-fill:before { + content: "\f16e"; +} +.ri-speaker-2-line:before { + content: "\f16f"; +} +.ri-speaker-3-fill:before { + content: "\f170"; +} +.ri-speaker-3-line:before { + content: "\f171"; +} +.ri-speaker-fill:before { + content: "\f172"; +} +.ri-speaker-line:before { + content: "\f173"; +} +.ri-spectrum-fill:before { + content: "\f174"; +} +.ri-spectrum-line:before { + content: "\f175"; +} +.ri-speed-fill:before { + content: "\f176"; +} +.ri-speed-line:before { + content: "\f177"; +} +.ri-speed-mini-fill:before { + content: "\f178"; +} +.ri-speed-mini-line:before { + content: "\f179"; +} +.ri-split-cells-horizontal:before { + content: "\f17a"; +} +.ri-split-cells-vertical:before { + content: "\f17b"; +} +.ri-spotify-fill:before { + content: "\f17c"; +} +.ri-spotify-line:before { + content: "\f17d"; +} +.ri-spy-fill:before { + content: "\f17e"; +} +.ri-spy-line:before { + content: "\f17f"; +} +.ri-stack-fill:before { + content: "\f180"; +} +.ri-stack-line:before { + content: "\f181"; +} +.ri-stack-overflow-fill:before { + content: "\f182"; +} +.ri-stack-overflow-line:before { + content: "\f183"; +} +.ri-stackshare-fill:before { + content: "\f184"; +} +.ri-stackshare-line:before { + content: "\f185"; +} +.ri-star-fill:before { + content: "\f186"; +} +.ri-star-half-fill:before { + content: "\f187"; +} +.ri-star-half-line:before { + content: "\f188"; +} +.ri-star-half-s-fill:before { + content: "\f189"; +} +.ri-star-half-s-line:before { + content: "\f18a"; +} +.ri-star-line:before { + content: "\f18b"; +} +.ri-star-s-fill:before { + content: "\f18c"; +} +.ri-star-s-line:before { + content: "\f18d"; +} +.ri-star-smile-fill:before { + content: "\f18e"; +} +.ri-star-smile-line:before { + content: "\f18f"; +} +.ri-steam-fill:before { + content: "\f190"; +} +.ri-steam-line:before { + content: "\f191"; +} +.ri-steering-2-fill:before { + content: "\f192"; +} +.ri-steering-2-line:before { + content: "\f193"; +} +.ri-steering-fill:before { + content: "\f194"; +} +.ri-steering-line:before { + content: "\f195"; +} +.ri-stethoscope-fill:before { + content: "\f196"; +} +.ri-stethoscope-line:before { + content: "\f197"; +} +.ri-sticky-note-2-fill:before { + content: "\f198"; +} +.ri-sticky-note-2-line:before { + content: "\f199"; +} +.ri-sticky-note-fill:before { + content: "\f19a"; +} +.ri-sticky-note-line:before { + content: "\f19b"; +} +.ri-stock-fill:before { + content: "\f19c"; +} +.ri-stock-line:before { + content: "\f19d"; +} +.ri-stop-circle-fill:before { + content: "\f19e"; +} +.ri-stop-circle-line:before { + content: "\f19f"; +} +.ri-stop-fill:before { + content: "\f1a0"; +} +.ri-stop-line:before { + content: "\f1a1"; +} +.ri-stop-mini-fill:before { + content: "\f1a2"; +} +.ri-stop-mini-line:before { + content: "\f1a3"; +} +.ri-store-2-fill:before { + content: "\f1a4"; +} +.ri-store-2-line:before { + content: "\f1a5"; +} +.ri-store-3-fill:before { + content: "\f1a6"; +} +.ri-store-3-line:before { + content: "\f1a7"; +} +.ri-store-fill:before { + content: "\f1a8"; +} +.ri-store-line:before { + content: "\f1a9"; +} +.ri-strikethrough-2:before { + content: "\f1aa"; +} +.ri-strikethrough:before { + content: "\f1ab"; +} +.ri-subscript-2:before { + content: "\f1ac"; +} +.ri-subscript:before { + content: "\f1ad"; +} +.ri-subtract-fill:before { + content: "\f1ae"; +} +.ri-subtract-line:before { + content: "\f1af"; +} +.ri-subway-fill:before { + content: "\f1b0"; +} +.ri-subway-line:before { + content: "\f1b1"; +} +.ri-subway-wifi-fill:before { + content: "\f1b2"; +} +.ri-subway-wifi-line:before { + content: "\f1b3"; +} +.ri-suitcase-2-fill:before { + content: "\f1b4"; +} +.ri-suitcase-2-line:before { + content: "\f1b5"; +} +.ri-suitcase-3-fill:before { + content: "\f1b6"; +} +.ri-suitcase-3-line:before { + content: "\f1b7"; +} +.ri-suitcase-fill:before { + content: "\f1b8"; +} +.ri-suitcase-line:before { + content: "\f1b9"; +} +.ri-sun-cloudy-fill:before { + content: "\f1ba"; +} +.ri-sun-cloudy-line:before { + content: "\f1bb"; +} +.ri-sun-fill:before { + content: "\f1bc"; +} +.ri-sun-foggy-fill:before { + content: "\f1bd"; +} +.ri-sun-foggy-line:before { + content: "\f1be"; +} +.ri-sun-line:before { + content: "\f1bf"; +} +.ri-superscript-2:before { + content: "\f1c0"; +} +.ri-superscript:before { + content: "\f1c1"; +} +.ri-surgical-mask-fill:before { + content: "\f1c2"; +} +.ri-surgical-mask-line:before { + content: "\f1c3"; +} +.ri-surround-sound-fill:before { + content: "\f1c4"; +} +.ri-surround-sound-line:before { + content: "\f1c5"; +} +.ri-survey-fill:before { + content: "\f1c6"; +} +.ri-survey-line:before { + content: "\f1c7"; +} +.ri-swap-box-fill:before { + content: "\f1c8"; +} +.ri-swap-box-line:before { + content: "\f1c9"; +} +.ri-swap-fill:before { + content: "\f1ca"; +} +.ri-swap-line:before { + content: "\f1cb"; +} +.ri-switch-fill:before { + content: "\f1cc"; +} +.ri-switch-line:before { + content: "\f1cd"; +} +.ri-sword-fill:before { + content: "\f1ce"; +} +.ri-sword-line:before { + content: "\f1cf"; +} +.ri-syringe-fill:before { + content: "\f1d0"; +} +.ri-syringe-line:before { + content: "\f1d1"; +} +.ri-t-box-fill:before { + content: "\f1d2"; +} +.ri-t-box-line:before { + content: "\f1d3"; +} +.ri-t-shirt-2-fill:before { + content: "\f1d4"; +} +.ri-t-shirt-2-line:before { + content: "\f1d5"; +} +.ri-t-shirt-air-fill:before { + content: "\f1d6"; +} +.ri-t-shirt-air-line:before { + content: "\f1d7"; +} +.ri-t-shirt-fill:before { + content: "\f1d8"; +} +.ri-t-shirt-line:before { + content: "\f1d9"; +} +.ri-table-2:before { + content: "\f1da"; +} +.ri-table-alt-fill:before { + content: "\f1db"; +} +.ri-table-alt-line:before { + content: "\f1dc"; +} +.ri-table-fill:before { + content: "\f1dd"; +} +.ri-table-line:before { + content: "\f1de"; +} +.ri-tablet-fill:before { + content: "\f1df"; +} +.ri-tablet-line:before { + content: "\f1e0"; +} +.ri-takeaway-fill:before { + content: "\f1e1"; +} +.ri-takeaway-line:before { + content: "\f1e2"; +} +.ri-taobao-fill:before { + content: "\f1e3"; +} +.ri-taobao-line:before { + content: "\f1e4"; +} +.ri-tape-fill:before { + content: "\f1e5"; +} +.ri-tape-line:before { + content: "\f1e6"; +} +.ri-task-fill:before { + content: "\f1e7"; +} +.ri-task-line:before { + content: "\f1e8"; +} +.ri-taxi-fill:before { + content: "\f1e9"; +} +.ri-taxi-line:before { + content: "\f1ea"; +} +.ri-taxi-wifi-fill:before { + content: "\f1eb"; +} +.ri-taxi-wifi-line:before { + content: "\f1ec"; +} +.ri-team-fill:before { + content: "\f1ed"; +} +.ri-team-line:before { + content: "\f1ee"; +} +.ri-telegram-fill:before { + content: "\f1ef"; +} +.ri-telegram-line:before { + content: "\f1f0"; +} +.ri-temp-cold-fill:before { + content: "\f1f1"; +} +.ri-temp-cold-line:before { + content: "\f1f2"; +} +.ri-temp-hot-fill:before { + content: "\f1f3"; +} +.ri-temp-hot-line:before { + content: "\f1f4"; +} +.ri-terminal-box-fill:before { + content: "\f1f5"; +} +.ri-terminal-box-line:before { + content: "\f1f6"; +} +.ri-terminal-fill:before { + content: "\f1f7"; +} +.ri-terminal-line:before { + content: "\f1f8"; +} +.ri-terminal-window-fill:before { + content: "\f1f9"; +} +.ri-terminal-window-line:before { + content: "\f1fa"; +} +.ri-test-tube-fill:before { + content: "\f1fb"; +} +.ri-test-tube-line:before { + content: "\f1fc"; +} +.ri-text-direction-l:before { + content: "\f1fd"; +} +.ri-text-direction-r:before { + content: "\f1fe"; +} +.ri-text-spacing:before { + content: "\f1ff"; +} +.ri-text-wrap:before { + content: "\f200"; +} +.ri-text:before { + content: "\f201"; +} +.ri-thermometer-fill:before { + content: "\f202"; +} +.ri-thermometer-line:before { + content: "\f203"; +} +.ri-thumb-down-fill:before { + content: "\f204"; +} +.ri-thumb-down-line:before { + content: "\f205"; +} +.ri-thumb-up-fill:before { + content: "\f206"; +} +.ri-thumb-up-line:before { + content: "\f207"; +} +.ri-thunderstorms-fill:before { + content: "\f208"; +} +.ri-thunderstorms-line:before { + content: "\f209"; +} +.ri-ticket-2-fill:before { + content: "\f20a"; +} +.ri-ticket-2-line:before { + content: "\f20b"; +} +.ri-ticket-fill:before { + content: "\f20c"; +} +.ri-ticket-line:before { + content: "\f20d"; +} +.ri-time-fill:before { + content: "\f20e"; +} +.ri-time-line:before { + content: "\f20f"; +} +.ri-timer-2-fill:before { + content: "\f210"; +} +.ri-timer-2-line:before { + content: "\f211"; +} +.ri-timer-fill:before { + content: "\f212"; +} +.ri-timer-flash-fill:before { + content: "\f213"; +} +.ri-timer-flash-line:before { + content: "\f214"; +} +.ri-timer-line:before { + content: "\f215"; +} +.ri-todo-fill:before { + content: "\f216"; +} +.ri-todo-line:before { + content: "\f217"; +} +.ri-toggle-fill:before { + content: "\f218"; +} +.ri-toggle-line:before { + content: "\f219"; +} +.ri-tools-fill:before { + content: "\f21a"; +} +.ri-tools-line:before { + content: "\f21b"; +} +.ri-tornado-fill:before { + content: "\f21c"; +} +.ri-tornado-line:before { + content: "\f21d"; +} +.ri-trademark-fill:before { + content: "\f21e"; +} +.ri-trademark-line:before { + content: "\f21f"; +} +.ri-traffic-light-fill:before { + content: "\f220"; +} +.ri-traffic-light-line:before { + content: "\f221"; +} +.ri-train-fill:before { + content: "\f222"; +} +.ri-train-line:before { + content: "\f223"; +} +.ri-train-wifi-fill:before { + content: "\f224"; +} +.ri-train-wifi-line:before { + content: "\f225"; +} +.ri-translate-2:before { + content: "\f226"; +} +.ri-translate:before { + content: "\f227"; +} +.ri-travesti-fill:before { + content: "\f228"; +} +.ri-travesti-line:before { + content: "\f229"; +} +.ri-treasure-map-fill:before { + content: "\f22a"; +} +.ri-treasure-map-line:before { + content: "\f22b"; +} +.ri-trello-fill:before { + content: "\f22c"; +} +.ri-trello-line:before { + content: "\f22d"; +} +.ri-trophy-fill:before { + content: "\f22e"; +} +.ri-trophy-line:before { + content: "\f22f"; +} +.ri-truck-fill:before { + content: "\f230"; +} +.ri-truck-line:before { + content: "\f231"; +} +.ri-tumblr-fill:before { + content: "\f232"; +} +.ri-tumblr-line:before { + content: "\f233"; +} +.ri-tv-2-fill:before { + content: "\f234"; +} +.ri-tv-2-line:before { + content: "\f235"; +} +.ri-tv-fill:before { + content: "\f236"; +} +.ri-tv-line:before { + content: "\f237"; +} +.ri-twitch-fill:before { + content: "\f238"; +} +.ri-twitch-line:before { + content: "\f239"; +} +.ri-twitter-fill:before { + content: "\f23a"; +} +.ri-twitter-line:before { + content: "\f23b"; +} +.ri-typhoon-fill:before { + content: "\f23c"; +} +.ri-typhoon-line:before { + content: "\f23d"; +} +.ri-u-disk-fill:before { + content: "\f23e"; +} +.ri-u-disk-line:before { + content: "\f23f"; +} +.ri-ubuntu-fill:before { + content: "\f240"; +} +.ri-ubuntu-line:before { + content: "\f241"; +} +.ri-umbrella-fill:before { + content: "\f242"; +} +.ri-umbrella-line:before { + content: "\f243"; +} +.ri-underline:before { + content: "\f244"; +} +.ri-uninstall-fill:before { + content: "\f245"; +} +.ri-uninstall-line:before { + content: "\f246"; +} +.ri-unsplash-fill:before { + content: "\f247"; +} +.ri-unsplash-line:before { + content: "\f248"; +} +.ri-upload-2-fill:before { + content: "\f249"; +} +.ri-upload-2-line:before { + content: "\f24a"; +} +.ri-upload-cloud-2-fill:before { + content: "\f24b"; +} +.ri-upload-cloud-2-line:before { + content: "\f24c"; +} +.ri-upload-cloud-fill:before { + content: "\f24d"; +} +.ri-upload-cloud-line:before { + content: "\f24e"; +} +.ri-upload-fill:before { + content: "\f24f"; +} +.ri-upload-line:before { + content: "\f250"; +} +.ri-usb-fill:before { + content: "\f251"; +} +.ri-usb-line:before { + content: "\f252"; +} +.ri-user-2-fill:before { + content: "\f253"; +} +.ri-user-2-line:before { + content: "\f254"; +} +.ri-user-3-fill:before { + content: "\f255"; +} +.ri-user-3-line:before { + content: "\f256"; +} +.ri-user-4-fill:before { + content: "\f257"; +} +.ri-user-4-line:before { + content: "\f258"; +} +.ri-user-5-fill:before { + content: "\f259"; +} +.ri-user-5-line:before { + content: "\f25a"; +} +.ri-user-6-fill:before { + content: "\f25b"; +} +.ri-user-6-line:before { + content: "\f25c"; +} +.ri-user-add-fill:before { + content: "\f25d"; +} +.ri-user-add-line:before { + content: "\f25e"; +} +.ri-user-fill:before { + content: "\f25f"; +} +.ri-user-follow-fill:before { + content: "\f260"; +} +.ri-user-follow-line:before { + content: "\f261"; +} +.ri-user-heart-fill:before { + content: "\f262"; +} +.ri-user-heart-line:before { + content: "\f263"; +} +.ri-user-line:before { + content: "\f264"; +} +.ri-user-location-fill:before { + content: "\f265"; +} +.ri-user-location-line:before { + content: "\f266"; +} +.ri-user-received-2-fill:before { + content: "\f267"; +} +.ri-user-received-2-line:before { + content: "\f268"; +} +.ri-user-received-fill:before { + content: "\f269"; +} +.ri-user-received-line:before { + content: "\f26a"; +} +.ri-user-search-fill:before { + content: "\f26b"; +} +.ri-user-search-line:before { + content: "\f26c"; +} +.ri-user-settings-fill:before { + content: "\f26d"; +} +.ri-user-settings-line:before { + content: "\f26e"; +} +.ri-user-shared-2-fill:before { + content: "\f26f"; +} +.ri-user-shared-2-line:before { + content: "\f270"; +} +.ri-user-shared-fill:before { + content: "\f271"; +} +.ri-user-shared-line:before { + content: "\f272"; +} +.ri-user-smile-fill:before { + content: "\f273"; +} +.ri-user-smile-line:before { + content: "\f274"; +} +.ri-user-star-fill:before { + content: "\f275"; +} +.ri-user-star-line:before { + content: "\f276"; +} +.ri-user-unfollow-fill:before { + content: "\f277"; +} +.ri-user-unfollow-line:before { + content: "\f278"; +} +.ri-user-voice-fill:before { + content: "\f279"; +} +.ri-user-voice-line:before { + content: "\f27a"; +} +.ri-video-add-fill:before { + content: "\f27b"; +} +.ri-video-add-line:before { + content: "\f27c"; +} +.ri-video-chat-fill:before { + content: "\f27d"; +} +.ri-video-chat-line:before { + content: "\f27e"; +} +.ri-video-download-fill:before { + content: "\f27f"; +} +.ri-video-download-line:before { + content: "\f280"; +} +.ri-video-fill:before { + content: "\f281"; +} +.ri-video-line:before { + content: "\f282"; +} +.ri-video-upload-fill:before { + content: "\f283"; +} +.ri-video-upload-line:before { + content: "\f284"; +} +.ri-vidicon-2-fill:before { + content: "\f285"; +} +.ri-vidicon-2-line:before { + content: "\f286"; +} +.ri-vidicon-fill:before { + content: "\f287"; +} +.ri-vidicon-line:before { + content: "\f288"; +} +.ri-vimeo-fill:before { + content: "\f289"; +} +.ri-vimeo-line:before { + content: "\f28a"; +} +.ri-vip-crown-2-fill:before { + content: "\f28b"; +} +.ri-vip-crown-2-line:before { + content: "\f28c"; +} +.ri-vip-crown-fill:before { + content: "\f28d"; +} +.ri-vip-crown-line:before { + content: "\f28e"; +} +.ri-vip-diamond-fill:before { + content: "\f28f"; +} +.ri-vip-diamond-line:before { + content: "\f290"; +} +.ri-vip-fill:before { + content: "\f291"; +} +.ri-vip-line:before { + content: "\f292"; +} +.ri-virus-fill:before { + content: "\f293"; +} +.ri-virus-line:before { + content: "\f294"; +} +.ri-visa-fill:before { + content: "\f295"; +} +.ri-visa-line:before { + content: "\f296"; +} +.ri-voice-recognition-fill:before { + content: "\f297"; +} +.ri-voice-recognition-line:before { + content: "\f298"; +} +.ri-voiceprint-fill:before { + content: "\f299"; +} +.ri-voiceprint-line:before { + content: "\f29a"; +} +.ri-volume-down-fill:before { + content: "\f29b"; +} +.ri-volume-down-line:before { + content: "\f29c"; +} +.ri-volume-mute-fill:before { + content: "\f29d"; +} +.ri-volume-mute-line:before { + content: "\f29e"; +} +.ri-volume-off-vibrate-fill:before { + content: "\f29f"; +} +.ri-volume-off-vibrate-line:before { + content: "\f2a0"; +} +.ri-volume-up-fill:before { + content: "\f2a1"; +} +.ri-volume-up-line:before { + content: "\f2a2"; +} +.ri-volume-vibrate-fill:before { + content: "\f2a3"; +} +.ri-volume-vibrate-line:before { + content: "\f2a4"; +} +.ri-vuejs-fill:before { + content: "\f2a5"; +} +.ri-vuejs-line:before { + content: "\f2a6"; +} +.ri-walk-fill:before { + content: "\f2a7"; +} +.ri-walk-line:before { + content: "\f2a8"; +} +.ri-wallet-2-fill:before { + content: "\f2a9"; +} +.ri-wallet-2-line:before { + content: "\f2aa"; +} +.ri-wallet-3-fill:before { + content: "\f2ab"; +} +.ri-wallet-3-line:before { + content: "\f2ac"; +} +.ri-wallet-fill:before { + content: "\f2ad"; +} +.ri-wallet-line:before { + content: "\f2ae"; +} +.ri-water-flash-fill:before { + content: "\f2af"; +} +.ri-water-flash-line:before { + content: "\f2b0"; +} +.ri-webcam-fill:before { + content: "\f2b1"; +} +.ri-webcam-line:before { + content: "\f2b2"; +} +.ri-wechat-2-fill:before { + content: "\f2b3"; +} +.ri-wechat-2-line:before { + content: "\f2b4"; +} +.ri-wechat-fill:before { + content: "\f2b5"; +} +.ri-wechat-line:before { + content: "\f2b6"; +} +.ri-wechat-pay-fill:before { + content: "\f2b7"; +} +.ri-wechat-pay-line:before { + content: "\f2b8"; +} +.ri-weibo-fill:before { + content: "\f2b9"; +} +.ri-weibo-line:before { + content: "\f2ba"; +} +.ri-whatsapp-fill:before { + content: "\f2bb"; +} +.ri-whatsapp-line:before { + content: "\f2bc"; +} +.ri-wheelchair-fill:before { + content: "\f2bd"; +} +.ri-wheelchair-line:before { + content: "\f2be"; +} +.ri-wifi-fill:before { + content: "\f2bf"; +} +.ri-wifi-line:before { + content: "\f2c0"; +} +.ri-wifi-off-fill:before { + content: "\f2c1"; +} +.ri-wifi-off-line:before { + content: "\f2c2"; +} +.ri-window-2-fill:before { + content: "\f2c3"; +} +.ri-window-2-line:before { + content: "\f2c4"; +} +.ri-window-fill:before { + content: "\f2c5"; +} +.ri-window-line:before { + content: "\f2c6"; +} +.ri-windows-fill:before { + content: "\f2c7"; +} +.ri-windows-line:before { + content: "\f2c8"; +} +.ri-windy-fill:before { + content: "\f2c9"; +} +.ri-windy-line:before { + content: "\f2ca"; +} +.ri-wireless-charging-fill:before { + content: "\f2cb"; +} +.ri-wireless-charging-line:before { + content: "\f2cc"; +} +.ri-women-fill:before { + content: "\f2cd"; +} +.ri-women-line:before { + content: "\f2ce"; +} +.ri-wubi-input:before { + content: "\f2cf"; +} +.ri-xbox-fill:before { + content: "\f2d0"; +} +.ri-xbox-line:before { + content: "\f2d1"; +} +.ri-xing-fill:before { + content: "\f2d2"; +} +.ri-xing-line:before { + content: "\f2d3"; +} +.ri-youtube-fill:before { + content: "\f2d4"; +} +.ri-youtube-line:before { + content: "\f2d5"; +} +.ri-zcool-fill:before { + content: "\f2d6"; +} +.ri-zcool-line:before { + content: "\f2d7"; +} +.ri-zhihu-fill:before { + content: "\f2d8"; +} +.ri-zhihu-line:before { + content: "\f2d9"; +} +.ri-zoom-in-fill:before { + content: "\f2da"; +} +.ri-zoom-in-line:before { + content: "\f2db"; +} +.ri-zoom-out-fill:before { + content: "\f2dc"; +} +.ri-zoom-out-line:before { + content: "\f2dd"; +} +.ri-zzz-fill:before { + content: "\f2de"; +} +.ri-zzz-line:before { + content: "\f2df"; +} +.ri-arrow-down-double-fill:before { + content: "\f2e0"; +} +.ri-arrow-down-double-line:before { + content: "\f2e1"; +} +.ri-arrow-left-double-fill:before { + content: "\f2e2"; +} +.ri-arrow-left-double-line:before { + content: "\f2e3"; +} +.ri-arrow-right-double-fill:before { + content: "\f2e4"; +} +.ri-arrow-right-double-line:before { + content: "\f2e5"; +} +.ri-arrow-turn-back-fill:before { + content: "\f2e6"; +} +.ri-arrow-turn-back-line:before { + content: "\f2e7"; +} +.ri-arrow-turn-forward-fill:before { + content: "\f2e8"; +} +.ri-arrow-turn-forward-line:before { + content: "\f2e9"; +} +.ri-arrow-up-double-fill:before { + content: "\f2ea"; +} +.ri-arrow-up-double-line:before { + content: "\f2eb"; +} +.ri-bard-fill:before { + content: "\f2ec"; +} +.ri-bard-line:before { + content: "\f2ed"; +} +.ri-bootstrap-fill:before { + content: "\f2ee"; +} +.ri-bootstrap-line:before { + content: "\f2ef"; +} +.ri-box-1-fill:before { + content: "\f2f0"; +} +.ri-box-1-line:before { + content: "\f2f1"; +} +.ri-box-2-fill:before { + content: "\f2f2"; +} +.ri-box-2-line:before { + content: "\f2f3"; +} +.ri-box-3-fill:before { + content: "\f2f4"; +} +.ri-box-3-line:before { + content: "\f2f5"; +} +.ri-brain-fill:before { + content: "\f2f6"; +} +.ri-brain-line:before { + content: "\f2f7"; +} +.ri-candle-fill:before { + content: "\f2f8"; +} +.ri-candle-line:before { + content: "\f2f9"; +} +.ri-cash-fill:before { + content: "\f2fa"; +} +.ri-cash-line:before { + content: "\f2fb"; +} +.ri-contract-left-fill:before { + content: "\f2fc"; +} +.ri-contract-left-line:before { + content: "\f2fd"; +} +.ri-contract-left-right-fill:before { + content: "\f2fe"; +} +.ri-contract-left-right-line:before { + content: "\f2ff"; +} +.ri-contract-right-fill:before { + content: "\f300"; +} +.ri-contract-right-line:before { + content: "\f301"; +} +.ri-contract-up-down-fill:before { + content: "\f302"; +} +.ri-contract-up-down-line:before { + content: "\f303"; +} +.ri-copilot-fill:before { + content: "\f304"; +} +.ri-copilot-line:before { + content: "\f305"; +} +.ri-corner-down-left-fill:before { + content: "\f306"; +} +.ri-corner-down-left-line:before { + content: "\f307"; +} +.ri-corner-down-right-fill:before { + content: "\f308"; +} +.ri-corner-down-right-line:before { + content: "\f309"; +} +.ri-corner-left-down-fill:before { + content: "\f30a"; +} +.ri-corner-left-down-line:before { + content: "\f30b"; +} +.ri-corner-left-up-fill:before { + content: "\f30c"; +} +.ri-corner-left-up-line:before { + content: "\f30d"; +} +.ri-corner-right-down-fill:before { + content: "\f30e"; +} +.ri-corner-right-down-line:before { + content: "\f30f"; +} +.ri-corner-right-up-fill:before { + content: "\f310"; +} +.ri-corner-right-up-line:before { + content: "\f311"; +} +.ri-corner-up-left-double-fill:before { + content: "\f312"; +} +.ri-corner-up-left-double-line:before { + content: "\f313"; +} +.ri-corner-up-left-fill:before { + content: "\f314"; +} +.ri-corner-up-left-line:before { + content: "\f315"; +} +.ri-corner-up-right-double-fill:before { + content: "\f316"; +} +.ri-corner-up-right-double-line:before { + content: "\f317"; +} +.ri-corner-up-right-fill:before { + content: "\f318"; +} +.ri-corner-up-right-line:before { + content: "\f319"; +} +.ri-cross-fill:before { + content: "\f31a"; +} +.ri-cross-line:before { + content: "\f31b"; +} +.ri-edge-new-fill:before { + content: "\f31c"; +} +.ri-edge-new-line:before { + content: "\f31d"; +} +.ri-equal-fill:before { + content: "\f31e"; +} +.ri-equal-line:before { + content: "\f31f"; +} +.ri-expand-left-fill:before { + content: "\f320"; +} +.ri-expand-left-line:before { + content: "\f321"; +} +.ri-expand-left-right-fill:before { + content: "\f322"; +} +.ri-expand-left-right-line:before { + content: "\f323"; +} +.ri-expand-right-fill:before { + content: "\f324"; +} +.ri-expand-right-line:before { + content: "\f325"; +} +.ri-expand-up-down-fill:before { + content: "\f326"; +} +.ri-expand-up-down-line:before { + content: "\f327"; +} +.ri-flickr-fill:before { + content: "\f328"; +} +.ri-flickr-line:before { + content: "\f329"; +} +.ri-forward-10-fill:before { + content: "\f32a"; +} +.ri-forward-10-line:before { + content: "\f32b"; +} +.ri-forward-15-fill:before { + content: "\f32c"; +} +.ri-forward-15-line:before { + content: "\f32d"; +} +.ri-forward-30-fill:before { + content: "\f32e"; +} +.ri-forward-30-line:before { + content: "\f32f"; +} +.ri-forward-5-fill:before { + content: "\f330"; +} +.ri-forward-5-line:before { + content: "\f331"; +} +.ri-graduation-cap-fill:before { + content: "\f332"; +} +.ri-graduation-cap-line:before { + content: "\f333"; +} +.ri-home-office-fill:before { + content: "\f334"; +} +.ri-home-office-line:before { + content: "\f335"; +} +.ri-hourglass-2-fill:before { + content: "\f336"; +} +.ri-hourglass-2-line:before { + content: "\f337"; +} +.ri-hourglass-fill:before { + content: "\f338"; +} +.ri-hourglass-line:before { + content: "\f339"; +} +.ri-javascript-fill:before { + content: "\f33a"; +} +.ri-javascript-line:before { + content: "\f33b"; +} +.ri-loop-left-fill:before { + content: "\f33c"; +} +.ri-loop-left-line:before { + content: "\f33d"; +} +.ri-loop-right-fill:before { + content: "\f33e"; +} +.ri-loop-right-line:before { + content: "\f33f"; +} +.ri-memories-fill:before { + content: "\f340"; +} +.ri-memories-line:before { + content: "\f341"; +} +.ri-meta-fill:before { + content: "\f342"; +} +.ri-meta-line:before { + content: "\f343"; +} +.ri-microsoft-loop-fill:before { + content: "\f344"; +} +.ri-microsoft-loop-line:before { + content: "\f345"; +} +.ri-nft-fill:before { + content: "\f346"; +} +.ri-nft-line:before { + content: "\f347"; +} +.ri-notion-fill:before { + content: "\f348"; +} +.ri-notion-line:before { + content: "\f349"; +} +.ri-openai-fill:before { + content: "\f34a"; +} +.ri-openai-line:before { + content: "\f34b"; +} +.ri-overline:before { + content: "\f34c"; +} +.ri-p2p-fill:before { + content: "\f34d"; +} +.ri-p2p-line:before { + content: "\f34e"; +} +.ri-presentation-fill:before { + content: "\f34f"; +} +.ri-presentation-line:before { + content: "\f350"; +} +.ri-replay-10-fill:before { + content: "\f351"; +} +.ri-replay-10-line:before { + content: "\f352"; +} +.ri-replay-15-fill:before { + content: "\f353"; +} +.ri-replay-15-line:before { + content: "\f354"; +} +.ri-replay-30-fill:before { + content: "\f355"; +} +.ri-replay-30-line:before { + content: "\f356"; +} +.ri-replay-5-fill:before { + content: "\f357"; +} +.ri-replay-5-line:before { + content: "\f358"; +} +.ri-school-fill:before { + content: "\f359"; +} +.ri-school-line:before { + content: "\f35a"; +} +.ri-shining-2-fill:before { + content: "\f35b"; +} +.ri-shining-2-line:before { + content: "\f35c"; +} +.ri-shining-fill:before { + content: "\f35d"; +} +.ri-shining-line:before { + content: "\f35e"; +} +.ri-sketching:before { + content: "\f35f"; +} +.ri-skip-down-fill:before { + content: "\f360"; +} +.ri-skip-down-line:before { + content: "\f361"; +} +.ri-skip-left-fill:before { + content: "\f362"; +} +.ri-skip-left-line:before { + content: "\f363"; +} +.ri-skip-right-fill:before { + content: "\f364"; +} +.ri-skip-right-line:before { + content: "\f365"; +} +.ri-skip-up-fill:before { + content: "\f366"; +} +.ri-skip-up-line:before { + content: "\f367"; +} +.ri-slow-down-fill:before { + content: "\f368"; +} +.ri-slow-down-line:before { + content: "\f369"; +} +.ri-sparkling-2-fill:before { + content: "\f36a"; +} +.ri-sparkling-2-line:before { + content: "\f36b"; +} +.ri-sparkling-fill:before { + content: "\f36c"; +} +.ri-sparkling-line:before { + content: "\f36d"; +} +.ri-speak-fill:before { + content: "\f36e"; +} +.ri-speak-line:before { + content: "\f36f"; +} +.ri-speed-up-fill:before { + content: "\f370"; +} +.ri-speed-up-line:before { + content: "\f371"; +} +.ri-tiktok-fill:before { + content: "\f372"; +} +.ri-tiktok-line:before { + content: "\f373"; +} +.ri-token-swap-fill:before { + content: "\f374"; +} +.ri-token-swap-line:before { + content: "\f375"; +} +.ri-unpin-fill:before { + content: "\f376"; +} +.ri-unpin-line:before { + content: "\f377"; +} +.ri-wechat-channels-fill:before { + content: "\f378"; +} +.ri-wechat-channels-line:before { + content: "\f379"; +} +.ri-wordpress-fill:before { + content: "\f37a"; +} +.ri-wordpress-line:before { + content: "\f37b"; +} +.ri-blender-fill:before { + content: "\f37c"; +} +.ri-blender-line:before { + content: "\f37d"; +} +.ri-emoji-sticker-fill:before { + content: "\f37e"; +} +.ri-emoji-sticker-line:before { + content: "\f37f"; +} +.ri-git-close-pull-request-fill:before { + content: "\f380"; +} +.ri-git-close-pull-request-line:before { + content: "\f381"; +} +.ri-instance-fill:before { + content: "\f382"; +} +.ri-instance-line:before { + content: "\f383"; +} +.ri-megaphone-fill:before { + content: "\f384"; +} +.ri-megaphone-line:before { + content: "\f385"; +} +.ri-pass-expired-fill:before { + content: "\f386"; +} +.ri-pass-expired-line:before { + content: "\f387"; +} +.ri-pass-pending-fill:before { + content: "\f388"; +} +.ri-pass-pending-line:before { + content: "\f389"; +} +.ri-pass-valid-fill:before { + content: "\f38a"; +} +.ri-pass-valid-line:before { + content: "\f38b"; +} +.ri-ai-generate:before { + content: "\f38c"; +} +.ri-calendar-close-fill:before { + content: "\f38d"; +} +.ri-calendar-close-line:before { + content: "\f38e"; +} +.ri-draggable:before { + content: "\f38f"; +} +.ri-font-family:before { + content: "\f390"; +} +.ri-font-mono:before { + content: "\f391"; +} +.ri-font-sans-serif:before { + content: "\f392"; +} +.ri-font-sans:before { + content: "\f393"; +} +.ri-hard-drive-3-fill:before { + content: "\f394"; +} +.ri-hard-drive-3-line:before { + content: "\f395"; +} +.ri-kick-fill:before { + content: "\f396"; +} +.ri-kick-line:before { + content: "\f397"; +} +.ri-list-check-3:before { + content: "\f398"; +} +.ri-list-indefinite:before { + content: "\f399"; +} +.ri-list-ordered-2:before { + content: "\f39a"; +} +.ri-list-radio:before { + content: "\f39b"; +} +.ri-openbase-fill:before { + content: "\f39c"; +} +.ri-openbase-line:before { + content: "\f39d"; +} +.ri-planet-fill:before { + content: "\f39e"; +} +.ri-planet-line:before { + content: "\f39f"; +} +.ri-prohibited-fill:before { + content: "\f3a0"; +} +.ri-prohibited-line:before { + content: "\f3a1"; +} +.ri-quote-text:before { + content: "\f3a2"; +} +.ri-seo-fill:before { + content: "\f3a3"; +} +.ri-seo-line:before { + content: "\f3a4"; +} +.ri-slash-commands:before { + content: "\f3a5"; +} diff --git a/nummi/main/static/main/remixicon/remixicon.woff2 b/nummi/main/static/main/remixicon/remixicon.woff2 index 336375c04c6041ee63b9106e462c717e238a93f9..47444bc6bdd5615cbbcde6cb1b7a0c4abfbeb9d0 100644 GIT binary patch literal 139320 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 u>(9dms2_UunX`C#Wf$K^h zIE0v+b*i|_Jn5ZeVCLeOgQ;KKQt%U--ridgo(}qAptY`F^S}fb&+L9s|}8yeuJCWq|zVk=FLHHTJ*KKOn<+ zgN5Xmk$%R*P2L3!(bEJuibrQS7jpWk06SMT$tT89BWGC$w5T^9t`r4?9; zk@U6*pkkqT=)Ymc6zLC@yV3Z)U5$))wPoXQ+EMBeNz<8uc@HfA3x~D;l^`r_b_81qV``n+yM)hzeX}l$%McN#kk3NZ zcd&hwFB~)h_D-yvE!|5%Ak}FXmjQ3}Q1^<0EUPUN zJ2{ulWgU}rp`xOZ8Y>cFjpreGQUz7)(BPJqpe>T$j<$$8cv>d#4z|IBSfZkxR2Fqp zytdAD&I%E)3Ox%f=gYPL0i6geoERsd4Kk-Bi%fwrAcGozT2yxPddvcCUKN*JK=Ntu z4KHKK2}-kLA%8vZ>Pfw?f$&m}iW@G5sf|LX=5yA(oFMD_?pZHo0`Y5me+gasg|c^9 zN8#ysqg2LLM&c2UgTiV#@A;*@sI-jwMa}Smq*%Hd{p4|+Pk3<0P{fjopu`%fyx4p) zRsnCW66S>6itI$fe#M?1JBwR4r`LTWeH-U-Pzl&P$6dWf4O8(~ucy}!D(hAA;HVEK zIF1$zUNb8KwF79$%A2r>&Jb56B$$g9a31e1)X?m+tKRf|*+*gV;S?(N6}1pdpUr=H zXK=RPb#DPiMbA{ehNoXEI^3hmD;4TK4c{u$yFH`IyY~C=W9P&B+cqdQ9n(oLi;yo8 zk7M0@^>wl8KIy(GVDI*vs_)zHx*s|p-`|c0j1beSjmHX)q2rCFu~{_ReLNI`?r_caSON@H@f@ z4niB}K^Fy@zVSv7`@ky%sFUjgpgVW~H`iP8`hh)s$2mDwbk%|caWNO1dpS$cd9AmN zS4WgHG!zaI28^6a_+liV4?=@#iLNeGj%_&yV4Rv?Jvj^Qt6kU0#~IZ?U|hXIMd=s^ zA=HT$?))%V@$cGf%o4w+mA&aDns#$chx!|VZNX@)4dY*kVSP7j&de?n|GTaHEhjO3 zdjU`*u+1CwRnas4xminUlzrY??Uf=Lr&5cJ(QuN)U^{)vNE4Qn-Sf=viwfB1hWL|S zOWJ<%%I{^lH*daT63x5!eCMlr&)I+F{FbF&?__e*hIn(yKTXniFbg}!KjOlpqc15t zgoWy-w_S4asnnM1g7x_*MJ&dxB}u$9^G9ONPj3RcEHqN*m~?#SikG130yn*5uR)WT zwS4KU)-)u6UYqFYOfoK~KLRA2Wm`%UvJ~T~IF&8%l66`tH$`6+2+{ zSCkS-Ji$=jgBZ&oNj`y}T5v4+$OHpuHH$hsgbD5!wS^Vq>26XoO z-MAyAV%OTc8O?P?&x!8NF`p!Y$f!K{<( z=@>zc6-*+HiIts+GRYXZp1BT<8m6mhzwaATxbbPyNl&sdxJ9~|Xr(US?qUn75LIE$ zLaM+2C-Udmc;(-Yq-w$?2p^VdRR3eOQ^%jgwhZ4?#!UQYIJWh0xGzb6h73~-@E@B` ziftWIsAWpQo>BSRy>aP&VZ@mTLw2IA8V0v3?v&hPvsAjTmjdA`wU?e#yj#PP?y^p{JqACm75Z)fe1w1jy0tVI5mT){AhX*N%NAI}%w-Ro!Rg3&^ zPlcp6?KFRXZtG7Uj6+9iYESjZ|Hm6-2vLSy>-8+crz;2d?pe(DO8+m$IZXEm0)ycz zk$tS0tTW;3#b*gV-JSIN1`wVY=7;_-1R%pMYap)KbpK?AA@E|%puO^fpo!#`I}_Zn zLA$p8s9ThQvM?VH^}NF7f#KX^yZy#v;MpZp;_?izfiJ54GS1N_H`A0#klf)FC1N{~ ziokbWz~JlM7hcj;l-A2v&>K4=Ym{HbKpIJe-j^nCkcPvmeQc@$UvC?g;a!-pwM z3I$mdII~RU93(u!$1)(MC@Y8n@4{w0k3qvdq7?%t%S-a0U;!*4(FrXlf`iw)w1ZA^ zyf0DIe#bBJ{lY4I)*rd)N>Tb?3CI2L>@wO-WGcvr-Ksf{ddrz?g`)pls3Ln?&*<+h zcMLlxUOwrkxpt!r)dPltmEg6q=nfR+*19iyMxQ;EXMN=wurgZ4JI!XTi-BHq8D>@^6I7lRgW70khs=$K9)hFh}dluE#RzvvmpgZEVJEsjZwGuvrBtLFUo))WrRlfH5 zKJv#ocp&&)A6~+Y{+hz((FefEukS|O5#VR7K3{4JDZ+=Nz6m}@vl8Mt17cf*v*096c6h}98fkS zpkNQTRh=6l#LX)Qp0ophhzK$ceBVh5gd%ywcdtT44u_a3{>e*JSoDP#DJ4mwCNSLj z`Qa`V#Ei2|$jX;-Q1wQdF|-d*nD8R%z1U)IF$^6sSe8?`TuNs#VDNObx8x1KN2Y@n zD9rsJ<^e$`M8krHuaxl>7gK|eisK8y?D5cLG@xVw9=EDo+CKQ{Kula~`bqSW&vT7g`Q{p_F{%Dh8l>g4dLkYo=kufn#|Dag z&NUp_isA3oN2NN^(v@PWD_q((2C8nKHhB<3+QeWc>Choq z$+HYMt8atw7>1?n`{ENbw4Op15^~CCb+S&GAa9G*E5g5oC;GX-nkqjgj|$2J&?yge zqo;8ojF;XI0&>tQERmpk_R~&`*W9FSC)JMbla=z0TL#!g?HVB|$zH`b03$Y~!QbYq zWq31m-M4z}IXzNlY-}y}&veW!A?=xR%9dQkW>7d+-KHPwa84M*#1 zeg@Usm7(%oN|c;GCsjNkp>DS?ykXKy5vGmya3+uBVYCOX@m|bR6;2_2 zvVj^YEL=ma)3i`A(C%{$yd#c9DhVr7*(&~_g_yzUMI`sD;DHg z6PoiXQJxnF7FaidG3aO~NVQ;wrbSg>!QJh_Olr>)jf-vjRuM5v?ssna-*On1Y9XaZ z8w{|M%2N^TrE{E=>-pw?>zzV z9v2F@fB+#RA1LCG^d&|dM~z{0&c47vJH*h6;kWeA0?Fg~LDR-}nskfTa0sI!-Zwi~ zPyd7ltQN;SC{$QuQok~4Z@Z6D+jX!h5AGsi)86+e$7Se(lJ;4N%ZGi`+bUQl%{aUz zkA(|OC<>b2qj=}P#pEu}xUU3!V?g#d<7ctbASvCK)d3@#NOXN;mQK>x9InH`e>19j zz)5?TzdbC>$h8XEf4()_ZU%0S>@R=r6LQ%usyafdk#CapbQjBBd^{biYiNb!&4Uk% ztNKcbVQPPG*|@37uas*gD(}M|RP`@DXk6Oq43K9-};sV$CElH+-TmVs~+ zE=ow@?zc*S=JkZlTk@783yOeJ5>8i4u%|`HWLACKcH~yGB>m5d9E=SU0^dUIz0PqP z45?@2z4YK2PsZ*H0dY9D)9yR^b%4P;!!v&An|TEC3uxKReAUSKMp+~;Uh4J8zoed}38@m@m8&9tUR%mO zP&?nn%4821OYGI3Mlzvc(^J&OS)_h~_>jhJO3H|`K_ZiXRTcC3pUtXdPuTK9wBW}m z>v<{!pily-OK6i--4daB){ykrvhV4IiKxJCZD(Nth=xvvwxVp4;fz>TSq*DM;T^qo zTNKybI+vla74cPSVS=N|G+2|x&AeFJMALd6Yl1Ql@ei9xRKlCO*ByOq_Hy1{=<=;TM=M#k9bd3yyYIG9*vuUa+(5 zEU-T2cSNfkHt8U__n=)Wd;QgdZyhn<^VoV~HS_XpC@q>kK%BsG*s@kvMZljcm ze@wKwg~x&V8Q}2z=M+_k-w49KF;@1(lxQgKjnMiG)p}nL+l`C~B=N~Xs`)nifnK11 z2ui8G%Q1(Vaus=!EzvDQsftpBnJ6P2PvJC`QSFdxn~a-V<{lt0%$3QA_jaQHbSM$L zQuxtoCR+h;H-R|a;vcy1gm^Rkx;~}>;QR=E@*OYMjZ}LK)5DxQ5YKRxpW0UThV?xN!%PMD-ciMWLb}xx&bCrgfkZqTvr4_CO z!I)`EgN63IY(OeV4@!09n6|3(-Zi*9ykAAjWT0fJyDP#Vjch?Fn#jr|%(FcQ8s2#}t~Y!E0a+AckFSi^@n1CELE zhLR;B+ro4uNeC|hR<86BWa07&gg5cXS5mtC91u-#X_jXpel&(la@;ec&x7+4X;&vh zrm<2tvSn6)FjOmYqBj{XOww8!yF)@1W^>a`qHP`HR7=j!LjlNgHm4R16}nDxI)h8H zU=`?6m1~z7HM~`YS67|1D|BA6_VhoXR)Hr=Vx$0o1v#X_%H^G~*?C~ioMxnJqeOj> zevYnrPw|GbKaZt#!qaS^tG|g8=>G-tTn}T%C+rqd2-%uV`kaPXlpOgxOH_7E^QTxTlg+OrqGE9r>|#!zn4JV3JzF>U)0q!^lQgMlS54YL3ICFx@= z{Xg@e84Y3j*e`2mnH77^2fDf$h!`qWNAUq=58X6+on^JiWgq!ewKC!2A195J*uw4q z?1Y_TOIY=AOqyDOmr!-|JCo?cRB%%T9vLKMJ4%t80tRt zQbJUW20B;{kPOy$JT;KF-W;?Vh=_MQc%R}lzSz;FJjhhG>`;PRtQ5ECE@hDnDZ$>F z_HVywn=O3Yupq}SCC`kH1Oey)h27BxGh9^{HPTF-arYFH04N2?8KL;aflxBD?NGkcL^uls z?yc;hgfAH^vZPkPAYgdPr23{ha)vp8fC=9=N9aZUgMa5H30;aHvI;PpDxAy#k8t7sSxB6U7FQ}s4no1X@(RRFK#VNplLT$RTCBS z^|?wzf1p-H`ibMa6^jEcZ?-FJ?W?x7=wEx?j2PcamlbQEdRS1C@L#zJGLn>6bj*RtnX9*a6%c<7&BnU=r|7 zhb#JfA}2Q?h2Yr)xh{v$=lBsqhxIqa;bO8%;u! zJR${g3t^5FE#cszW(0P%7q}7x@ajrZ$kzi{4pSf+NK8v|gu-i)9opTL$%rhZ$g-&E z1bf0ZWdA4j1q`7cl2mWiZ8H-hs@7mCZWS5|ElmxPs;<^4r(oSH!1wp{N+N^+tp7Ob z#}k11B9hTCf|^DFls(H3mwFC&F{(eoKW< zH9z4+(M}UoIkR}_$Jx{$L`lR1XiY*=FS}Lg)@`$p{HLbpL2-VGmY9IJ&;~aa5yTgF zYLTMNYFrk;=i4tLn8Jk@v>bvPM^w_NU?)xxL3y)>>Wb=b5J@n%uv!p#fAf&JaV$yf zKH4OMbgihj&BWWc_o@1f#R_Fl$wj|3NPs+H=QjXdPJEywLFzp(2S@R0I72zQSIj0k zMpbc0z@|!UVK$MMk(HK!LZWTt5w5B<2L$Ds)+A7&G2SR;cE7P8N>iEz6w15P%x>ku z^Cb5>dUaIH{5(F#gj!`*b4tFU9x-Gc4G!`d`tju5j&5s=wwI{!c-Y@bw@(WTPz_$ZP*oi(Gde;vHOo?gunfj1uzu zLO1eC@Mc9-0mq{s11Doe&DK!4BFwioLRRBK*O2Wbbfv$GVl8|8 z$OSgwenof(Pz+#$FbZ$GgMtqdtHe+4)V^fG{I<3B}m@M1&MF?Au`$t&~3}qCV@tpmC~d&TL}Fc@{7D_c9?`L z6Y&s04X})iy`zBAE7I$`MKTiVz842)s6iF)M_1&_sDK)y`?{bmk`QeK&ZLFba!(JH zSz0HeMI_HiEmG-Fd=EaF%&m!IRY>yhPg$wtsWt3P;iXp;o98?6ydO^;4bP;0l~&yg zC(?QHWO{NxeEV#?%2IAFwU2N`(C-ZP3{g~w(wotUXWTCnw4#uY_?m}A9c-_+|9Om03baf_+Of|NvGO2Ht06UJOAK&Mb&TC9`ss{1jEqyhTI=`;aFeDb^rt1jT7nTHSK|eL2{KAp*EwiTnk~_wmT$OF#+~tr< z_Pqn!8jNizi`?7;s@Tzq9cIvUvsjxQHP&$VwDRV{&V3%fzQ}8Nl9#Q2ykmI!Jxeb( zBMlQ)!pSd~(Br?wr)ExItW+p%3NMGDY*caZH@(V4sK-}EnJK;;k;Cu_ogzZ=Q|DE7 zM_)F~N{{OE1|wb6_RPHoV2P=tdy-9I=?PA zT6tgI1qcwy7P(m?&o4gG;9BwuZ3V#H??A1eqZ>#MPal5H%Et|8#Bm!ZuM^VL3yQ7v zO++aTnV0$AFvvIsKqlM1Ne8q%rSt%^M}3~qk=p&6mT>S=19M0FVocFvqD=ynbMSJ; z)aMW>!K=ZTq+Xm}@sK5S_Yflm?9ryww(S1?_ov@lHIA@NeU0cJkB@57cCqtoqX?mKBU0b@YFe?|=cJEph}m&`b;zihE&YbiUoEg-64H zJe5f_N<7mkr1fiRvw8RI;9QENc03f19@7LdwTP|eTDdhYMB1ebx3ptiBehqkq6|pU z)9)aE!>HNQ@?_iyypc6&nKEm~6)`!Rcl(SVuEHf_RAdH%?c~Ieteuf+3$RBe<4GI~ z%|V$fws1kPInh)>7sKAree4ms5vU}9J&?jjm3XJQ=1}FD{R)x{3$Y2T>al_DY$sTj zZAf>4jjJMU|RYtq+_=^f(|Z7Ody>1hj4UU5>q41~yxAY9pe7lbs1xv(%TkuKbUTUc1(FH>x5V@WwH0WN@fn=UTVJ{{m50ouge^Oq6eEmPW4Igbyf$@L9Em>Ee#7Ro4Oe$ z6o6!)=xKRU9!CX3J^|4tL}&N8TjX#UQ%7cH

x{oikkGNb6@}P+}4OtQLMI zPAQ#-q}XOUxAJ)f2^;*NBsfIfgwqt))bLnd6--=dyQ13lT37BZLEO@^iN%M z6GLI@>?G#%edPPNcM8Bl!;YK-fQg9p4^>i$K^0u?n32PUN6OCmYo(dxv)uDD^@$iJ zTH+F;nKTX=+B-c}&^aW4-eoLwXFw5EA9QT!?@v*#7uC|*7~GH)U?aGQ6U#0&wo(*y z{VZ6KN(+FAWYbqByahpTwSdz|-m&Nb{Hh3qzk{h=t3XQ^d2SNA#si522R2OXQ>wC) zyaO@FcVZ8MxGf2`lM)(wi6A1Caf7!zj2*ZS zGhu09IaX)v-4|pQkZq3+e?HiqgN- zprL-R3+aIPkWr~fyB84{=@@IJ_T-Q|yQIwNT%h+|jwc2-t$$%;8Gz-sUNfIhoas$&=H^@il5flaU1x1?_2wb{p{>U>JT8!ON3x@U z&QD)q{6`;2Ek})6cZWc2ba$V9L;v!9U?g~o6@L;kV3yOUhHP%YEiN;vmYueZl(q^ zDV21p@Au#g=MsK)#P>y*7MaE!_%6&50f`SDL&nY5ghI%CZ?I;AkNnvK;v(7s9tZOe7Bpdxl18iO;B+TwX1xIeD> zf25U{u`?3f!2dA`_(mwR)`khIK}eOOOldhVO4)%Vy88=A;^s9Hk;c6&t|Ec|^P@PY zCk>jLfg@@BbnVqZ+YWeT-7Im5AiJ&6ygfRz+!{TN1TkML2y4Cn5DssCNjfG_nf|^GU|4#BuYmqCdX14y_a|=Yj}mQ z2awjE!FjZ*1lOnKCkmWLhR3pg=yDJ3N**y~r|E>~(5x+K8i^I(a<4GfgB{DBL43J& zOgj46q3FAwMEX|t(hKy+nsTvuqgX`ZuATKuHXn^iU)f4 z<}wD2()YZPJO4RVBbUQoU&7|S%c%IK3X0y?DCn*(Vk+Q_RFt@8ZLEAq{5&uAAMKF* znLS)A9F?|dMtB~A=IpPt*cORVT;RKOuA*Ff5^Oy~iC7Q*9)Lku zMMhJwEVfs3=9nRc;zP0?oq|UFUm*^uQ$;4vsizwzP?xBcQ zcHW}zUkkiF`upqN%~HM>tMvX|qZw8wfXMfYB^n6If=^=8{w@aN^&ti4m?dd0rvS(c z-lH~99=%}yVhepJB0~z_lrT;9A*}y}y93*I?D_F;s^6gd0^@h=J^UU0>mN1Dv<@qT zgy#!5mQyQkq~40Mag$5`(7q02M4}#+jQWP6b!~S=BAT|PS=Pb(&DT&C+Nl8z_l38b z?OCjsNR5FSK0||a?XU%+3<5`D`475HtASfEW1}OtUCTRW=Z4r8WT!^Mxkipz;=7`j z?>M2ctra}DR2ILAfg~|$m+Dy(E?aWdvO&#|mCpd98>iM)o>*^v_%5veHHF5fPG64T z*yQ+swZZ6XtZ+G_g=(7YyRmVA0J}%w5H9n1Yu+JQAk*O%yXFQA6$W8icH4mCJ8COC z04WNEX<4+I>S1W|YVevP-0@N*&wPe7T}}(Cb zn*e-}7_4;)YjxdM>*X*5oMGANzkx!_mwaY;AkdQPI@~HQNb={Q3lykmEK>1Eh|Kc4 zD0!@?yo5j8p(nMNUOR$rEkv8ihyOD}WVEfDI6}R~yn0%HH|d-Y4kVlNK_U78Kdi&rAn~&u`YSo6fejClpZRM?3ab$`{Zd`aW zD2rX3nt*A$_KvHpFsPwf>j#RNKT@vE9j1sOw|f;JTv`yu^;Sns?d6MOG_WLZBFxtf z)wwUzA#j~Q zvYf@bZXm?Ui^{!MCZqQVWLF@dU+^)uP#>i;dRTKYzIw#e@2~X%1ZD_J3_*!_s92_e zBvA!O`%h4~(rG62OMQX)bK_4TWjEx3NIGO;RExY33_~yV+xj6(1nrXO;+p=Zc{0mh+?vEMa}@V zOE}`_0T_~M%|TTfM3bS^s$N`P&k{_A2}DM=HYWP2h0S5_3{f@f-xuME>#=)T#5x?e z-S?)O8k$H+^3lmFnIjRoXkku+mPF-Ol8ZEpdXC>BteDk*T�$acwQ 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�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 G#@^~4+5fZSzec1 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 literal 984 zcmV;}11J15DhE>=Z3humlzn7>8r~2C)!tD|P78Xb zg4w{n`cl`f)hjV;$)Pa+QQO3#C(eg+4#5NM=ic4@4KdTUgm@^dl8BHk5sF&!z6yc1 z;q_Yxig=Vn0D^cN!jTEYgq(2`!jmk1Zg3g|l+ZE^GU*1}C=(30W85{4dcNw)1Kt6U zu;a?0-uHD{%9dsN!vb8{GT!yI?!w66cd~>FC23^;9{`2b+zSsTu zvM!v^EZS!gN%5)rK>7}3Q-+U9?D_}-Sc;cR?r+u2j5jUMGSO@+1s>Vr4r2oh69Y|T z3+4pOLrJL|8KVYX-U&!`2aPpTt4AHX;b1)|eq60e_* zL3s;BQ!JN(k_raQNrcs7c;o*RY!yNZ^YM=-DTp4EX$>G5I;F&f2QCEu3|vV38KWrB zLR99jk$Tu9)>|%iTNhk9_wH`@=7#oZxwVLUZTD6|s~2ta4T!s~cL4dy7x~^lo(t*C z55wJ^oPO3@V=c?0ZA)z}%{xRZqAmY`Q))_ASIYDr&QnvJ+M}u>D=H$ZqK*K7J3Mb` ze;&T27)tBwOB>4gBoGLky5!UlUJ_PR6jl;`Kp+s9*WeT%TUQs`Pv9SocN%u`JINhC z?Jr3O$DG`f63)jIrtHu02KcW~`v5KEC4l@NhzBq>c z)0yTgGUR^oxCrG}3H*PYOF%Uq+Xsg{BZuFq2nB?~73TNP&a6$bB|C=lQZq?Y>P;Bs zRw~Eyuf*P@fQ5R?R9S9tnSA8|-ZBO*VbsWcARS(8D@%Aga%nNuI$yian|k<$SnDhv zzBq>c)0yTEY~bs`#ziQrG6wk<$|ayb@Tm0=s?cZ<_oEOB5EQOp{&efi+90&vHBL0 zFLt$Hs&&5VcKlFO8cRs5&9N%>Kk;B#X8Y+nw#caHNVSriB5Q3VC|}&f?*C2}E37{p G0001@N5EwO diff --git a/nummi/main/templates/main/form/account.html b/nummi/main/templates/main/form/account.html index b9b94bc..f14da2d 100644 --- a/nummi/main/templates/main/form/account.html +++ b/nummi/main/templates/main/form/account.html @@ -16,7 +16,7 @@ type="text/css" /> {% endblock %} {% block body %} -

{{ form.instance.uicon }} {{ form.instance }}

+

{{ form.instance.icon|remix }}{{ form.instance }}

{% csrf_token %} {{ form }} diff --git a/nummi/main/templates/main/form/category.html b/nummi/main/templates/main/form/category.html index f2ecfb0..27ae5e9 100644 --- a/nummi/main/templates/main/form/category.html +++ b/nummi/main/templates/main/form/category.html @@ -16,7 +16,7 @@ type="text/css" /> {% endblock %} {% block body %} -

{{ form.instance.uicon }} {{ form.instance }}

+

{{ form.instance.icon|remix }}{{ form.instance }}

{% csrf_token %} {{ form }} diff --git a/nummi/main/templates/main/icons/checkmark.svg b/nummi/main/templates/main/icons/checkmark.svg deleted file mode 100644 index 5f87bac..0000000 --- a/nummi/main/templates/main/icons/checkmark.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - diff --git a/nummi/main/templates/main/icons/error.svg b/nummi/main/templates/main/icons/error.svg deleted file mode 100644 index f02b911..0000000 --- a/nummi/main/templates/main/icons/error.svg +++ /dev/null @@ -1 +0,0 @@ -error diff --git a/nummi/main/templates/main/index.html b/nummi/main/templates/main/index.html index 13d9e3d..57b1d7f 100644 --- a/nummi/main/templates/main/index.html +++ b/nummi/main/templates/main/index.html @@ -4,9 +4,6 @@ {% load i18n %} {% block link %} {{ block.super }} - @@ -20,7 +17,7 @@ {% spaceless %}

{% for acc in accounts %} - {{ acc.uicon }} {{ acc }} + {{ acc.icon|remix }}{{ acc }} {% endfor %}

{% endspaceless %} @@ -36,7 +33,7 @@ {% spaceless %}

{% for cat in categories %} - {{ cat.uicon }} {{ cat }} + {{ cat.icon|remix }}{{ cat }} {% endfor %}

{% endspaceless %} diff --git a/nummi/main/templates/main/plot/category.html b/nummi/main/templates/main/plot/category.html index 3dfb290..71cddaa 100644 --- a/nummi/main/templates/main/plot/category.html +++ b/nummi/main/templates/main/plot/category.html @@ -24,7 +24,7 @@ {% if cat.category %}{{ cat.category__name }}{% endif %} - {% if cat.category %}{{ cat.category__uicon }}{% endif %} + {% if cat.category %}{{ cat.category__icon|remix }}{% endif %} {{ cat.sum_m|pmrvalue }} diff --git a/nummi/main/templates/main/table/snapshot.html b/nummi/main/templates/main/table/snapshot.html index fb622c8..f731f45 100644 --- a/nummi/main/templates/main/table/snapshot.html +++ b/nummi/main/templates/main/table/snapshot.html @@ -17,8 +17,8 @@ - - + {{ "check"|remix }} + {{ "attachment"|remix }} {% translate "Date" %} {% if not account %} {% translate "Account" %} @@ -31,18 +31,18 @@ {% for snap in snapshots %} {% if snap.sum == snap.diff %} - + {{ "check"|remix }} {% else %} - + {{ "close"|remix }} {% endif %} - {% if snap.file %}{% endif %} + {% if snap.file %}{{ "attachment"|remix }}{% endif %} {{ snap.date|date:"Y-m-d" }} {% if not account %} - {{ snap.account.uicon }} + {{ snap.account.icon|remix }} {{ snap.account }} diff --git a/nummi/main/templates/main/table/transaction.html b/nummi/main/templates/main/table/transaction.html index 933bb86..e4611d9 100644 --- a/nummi/main/templates/main/table/transaction.html +++ b/nummi/main/templates/main/table/transaction.html @@ -23,7 +23,7 @@ {% endif %} - + {{ "attachment"|remix }} {% translate "Date" %} {% translate "Name" %} {% translate "Value" %} @@ -39,26 +39,26 @@ {% for trans in transactions %} - {% for invoice in trans.invoices %}{% endfor %} + {% for invoice in trans.invoices %}{{ "attachment"|remix }}{% endfor %} {{ trans.date|date:"Y-m-d" }} {{ trans.name }} {{ trans.value|pmvalue }} - {{ trans.trader|default_if_none:"–" }} + {{ trans.trader|default_if_none:"" }} {% if not category %} {% if trans.category %} - {{ trans.category.uicon }} + {{ trans.category.icon|remix }} {{ trans.category }} {% else %} - – + {% endif %} {% endif %} {% if not account %} - {{ trans.account.uicon }} + {{ trans.account.icon|remix }} {{ trans.account }} diff --git a/nummi/main/templatetags/main_extras.py b/nummi/main/templatetags/main_extras.py index acdcfe0..6cf7c9a 100644 --- a/nummi/main/templatetags/main_extras.py +++ b/nummi/main/templatetags/main_extras.py @@ -40,3 +40,8 @@ def form_buttons(instance): "adding": instance._state.adding, "del_url": f"del_{instance.__class__.__name__.lower()}", } + + +@register.filter +def remix(icon): + return mark_safe(f"""""") diff --git a/nummi/main/views.py b/nummi/main/views.py index 834053d..c81e778 100644 --- a/nummi/main/views.py +++ b/nummi/main/views.py @@ -295,7 +295,7 @@ class SnapshotUpdateView(NummiUpdateView): _transactions = snapshot.transaction_set.all() if _transactions: _categories = ( - _transactions.values("category", "category__name", "category__uicon") + _transactions.values("category", "category__name", "category__icon") .annotate( sum=models.Sum("value"), sum_m=models.Sum("value", filter=models.Q(value__lt=0)),