diff --git a/cli/fix-icon-dimensions.php b/cli/fix-icon-dimensions.php
new file mode 100755
index 0000000000000000000000000000000000000000..a7e595afe01139661f1794bbfb2dc046afee8cb3
--- /dev/null
+++ b/cli/fix-icon-dimensions.php
@@ -0,0 +1,22 @@
+#!/usr/bin/env php
+<?php
+require_once __DIR__ . '/studip_cli_env.inc.php';
+
+$folder = $GLOBALS['STUDIP_BASE_PATH'] . '/public/assets/images/icons';
+$iterator = new RecursiveDirectoryIterator($folder, FilesystemIterator::FOLLOW_SYMLINKS | FilesystemIterator::UNIX_PATHS);
+$iterator = new RecursiveIteratorIterator($iterator);
+$regexp_iterator = new RegexIterator($iterator, '/\.svg$/', RecursiveRegexIterator::MATCH);
+
+foreach ($regexp_iterator as $file) {
+    $contents = file_get_contents($file);
+
+    $xml = simplexml_load_string($contents);
+    $attr = $xml->attributes();
+    if ($attr->width && $attr->height) {
+        continue;
+    }
+    $contents = str_replace('<svg ', '<svg width="16" height="16" ', $contents);
+    file_put_contents($file, $contents);
+
+    echo "Adjusted $file\n";
+}
diff --git a/config/svgo.config.js b/config/svgo.config.js
index dd434bb82f9161cdc9b3f6559b9ee05169491b11..99409651ad2bc98aef11c83440e9da29b3c687e7 100644
--- a/config/svgo.config.js
+++ b/config/svgo.config.js
@@ -11,7 +11,6 @@ module.exports = {
                 "onlyMatchedOnce": false
             }
         },
-        'removeDimensions',
         'convertStyleToAttrs',
         'removeDoctype',
         'removeXMLProcInst',
diff --git a/public/assets/images/icons/black/60a.svg b/public/assets/images/icons/black/60a.svg
index 49608377452bef7b12ecd7463318b24fee028d17..704ea810366a66fae36a92d1834e1afd8de9fbca 100644
--- a/public/assets/images/icons/black/60a.svg
+++ b/public/assets/images/icons/black/60a.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.09 8.09c0-1.57.82-2.28 1.7-2.28A1.69 1.69 0 016 6.32l-.5.58a.93.93 0 00-.65-.3C4.37 6.6 4 7 4 8.09s.33 1.35.68 1.35.53-.2.53-.68-.21-.61-.57-.61a.76.76 0 00-.64.46L3.94 8a1.18 1.18 0 01.89-.5 1.16 1.16 0 011.25 1.26 1.35 1.35 0 01-1.4 1.41c-.81 0-1.59-.61-1.59-2.08zM6.56 8c0-1.43.6-2.16 1.5-2.16S9.57 6.55 9.57 8s-.6 2.2-1.51 2.2-1.5-.8-1.5-2.2zm2.09 0c0-1.14-.26-1.4-.59-1.4s-.58.26-.58 1.4.26 1.45.58 1.45.59-.33.59-1.45zm1.44 1.18c0-.69.55-1.06 1.85-1.2a.46.46 0 00-.52-.47 1.79 1.79 0 00-.87.29l-.35-.64a2.74 2.74 0 011.4-.43c.84 0 1.31.48 1.31 1.49v1.87h-.8L12 9.76a1.46 1.46 0 01-.95.41.94.94 0 01-.96-.99zm1.85 0v-.61c-.7.09-.92.29-.92.54s.14.31.37.31a.76.76 0 00.55-.28zM8 1a7 7 0 107 7 7 7 0 00-7-7zm0 12.61A5.61 5.61 0 1113.61 8 5.62 5.62 0 018 13.61z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.09 8.09c0-1.57.82-2.28 1.7-2.28A1.69 1.69 0 016 6.32l-.5.58a.93.93 0 00-.65-.3C4.37 6.6 4 7 4 8.09s.33 1.35.68 1.35.53-.2.53-.68-.21-.61-.57-.61a.76.76 0 00-.64.46L3.94 8a1.18 1.18 0 01.89-.5 1.16 1.16 0 011.25 1.26 1.35 1.35 0 01-1.4 1.41c-.81 0-1.59-.61-1.59-2.08zM6.56 8c0-1.43.6-2.16 1.5-2.16S9.57 6.55 9.57 8s-.6 2.2-1.51 2.2-1.5-.8-1.5-2.2zm2.09 0c0-1.14-.26-1.4-.59-1.4s-.58.26-.58 1.4.26 1.45.58 1.45.59-.33.59-1.45zm1.44 1.18c0-.69.55-1.06 1.85-1.2a.46.46 0 00-.52-.47 1.79 1.79 0 00-.87.29l-.35-.64a2.74 2.74 0 011.4-.43c.84 0 1.31.48 1.31 1.49v1.87h-.8L12 9.76a1.46 1.46 0 01-.95.41.94.94 0 01-.96-.99zm1.85 0v-.61c-.7.09-.92.29-.92.54s.14.31.37.31a.76.76 0 00.55-.28zM8 1a7 7 0 107 7 7 7 0 00-7-7zm0 12.61A5.61 5.61 0 1113.61 8 5.62 5.62 0 018 13.61z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/accept.svg b/public/assets/images/icons/black/accept.svg
index b861484c13057c28c72d99ff3abe91739aaa8c61..018d20b3a6b6a5234a3ee18cb833597002258502 100644
--- a/public/assets/images/icons/black/accept.svg
+++ b/public/assets/images/icons/black/accept.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/activity.svg b/public/assets/images/icons/black/activity.svg
index 7634ba8067807590a98e4f176355d7ec86157073..ce5cae6af543774d482c2824fd2498ad29daa4f4 100644
--- a/public/assets/images/icons/black/activity.svg
+++ b/public/assets/images/icons/black/activity.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
diff --git a/public/assets/images/icons/black/add-circle-full.svg b/public/assets/images/icons/black/add-circle-full.svg
index 2421cbcb5b2ce7cd9025b83d187d04fa4eefb18e..445de311a1945422a6a4cf3763dde2d335e195e2 100644
--- a/public/assets/images/icons/black/add-circle-full.svg
+++ b/public/assets/images/icons/black/add-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/add-circle.svg b/public/assets/images/icons/black/add-circle.svg
index 2421cbcb5b2ce7cd9025b83d187d04fa4eefb18e..445de311a1945422a6a4cf3763dde2d335e195e2 100644
--- a/public/assets/images/icons/black/add-circle.svg
+++ b/public/assets/images/icons/black/add-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/add.svg b/public/assets/images/icons/black/add.svg
index 0e0bb3a0d5f9cc25b6486e2a1c94074fdb502ae5..f3827ee98e2ba826f8b840be3508ef9d63bf1495 100644
--- a/public/assets/images/icons/black/add.svg
+++ b/public/assets/images/icons/black/add.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00000;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00000;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/admin.svg b/public/assets/images/icons/black/admin.svg
index 1d9bbfca159c152f3d4476bd5d0fc697483f858c..8238c3763c5272754edca0de643f1ca661245d97 100644
--- a/public/assets/images/icons/black/admin.svg
+++ b/public/assets/images/icons/black/admin.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/aladdin.svg b/public/assets/images/icons/black/aladdin.svg
index d305ce169e334f57371d90e3af2059b2cfd1034b..d75ecd1083e472e67ecc7d9a5191ea14abe833ca 100644
--- a/public/assets/images/icons/black/aladdin.svg
+++ b/public/assets/images/icons/black/aladdin.svg
@@ -1 +1 @@
-<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
+<svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
diff --git a/public/assets/images/icons/black/archive.svg b/public/assets/images/icons/black/archive.svg
index 49da16132185ec5457fa4e05061e618a2176189d..5a3fb0c3770bd2cc534bde1f647222722035e489 100644
--- a/public/assets/images/icons/black/archive.svg
+++ b/public/assets/images/icons/black/archive.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
diff --git a/public/assets/images/icons/black/arr_1down.svg b/public/assets/images/icons/black/arr_1down.svg
index fbf55d6e897e9aa58a2d12c21b06cc5340eb8ae3..749143b166563686bf39d00d365b2ef48842da0b 100644
--- a/public/assets/images/icons/black/arr_1down.svg
+++ b/public/assets/images/icons/black/arr_1down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/arr_1left.svg b/public/assets/images/icons/black/arr_1left.svg
index d0944fa93c7318f7df2c21ed085ebbd2c808e8b1..f569864129f3cbdfec649134c560d64cbe6aaec2 100644
--- a/public/assets/images/icons/black/arr_1left.svg
+++ b/public/assets/images/icons/black/arr_1left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/arr_1right.svg b/public/assets/images/icons/black/arr_1right.svg
index 1087be1c0db21aecbd5308c143f93db5c18e29ab..77f15d0aaba2bd8afd733b8eb0b6cf92228ab780 100644
--- a/public/assets/images/icons/black/arr_1right.svg
+++ b/public/assets/images/icons/black/arr_1right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/arr_1sort.svg b/public/assets/images/icons/black/arr_1sort.svg
index 8cef37695834f26fc46d86b59e03ed2f5676439b..b4f659da6a840545548d8db75f96e8d3ba781746 100755
--- a/public/assets/images/icons/black/arr_1sort.svg
+++ b/public/assets/images/icons/black/arr_1sort.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/arr_1up.svg b/public/assets/images/icons/black/arr_1up.svg
index 3e05d9c84071c3a23965d90ce6b82c11a9a8bcb4..a3c353bd34c2856b030bf10a1f6dc1f4c899841e 100644
--- a/public/assets/images/icons/black/arr_1up.svg
+++ b/public/assets/images/icons/black/arr_1up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/arr_2down.svg b/public/assets/images/icons/black/arr_2down.svg
index b51bd85919cdd0dfc6068f4b4d380b121179c0d6..9916dc4178660df08393ec3da949208fed58bbae 100644
--- a/public/assets/images/icons/black/arr_2down.svg
+++ b/public/assets/images/icons/black/arr_2down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/arr_2left.svg b/public/assets/images/icons/black/arr_2left.svg
index 989d9d82d272c75e60db640065009b924d324212..99f6051dbda4979bafa3db3087147d3106c93cdf 100644
--- a/public/assets/images/icons/black/arr_2left.svg
+++ b/public/assets/images/icons/black/arr_2left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/arr_2right.svg b/public/assets/images/icons/black/arr_2right.svg
index 29624ced8cfb95affcab270287e8443fc46ca0c7..7637168d79420e1b8725412753b83eb645ff287c 100644
--- a/public/assets/images/icons/black/arr_2right.svg
+++ b/public/assets/images/icons/black/arr_2right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/arr_2up.svg b/public/assets/images/icons/black/arr_2up.svg
index c9c008c29d28d1097c0948fc0db10a6438089c0f..10a9d414f0eae6c9faf3ba3022e52a3b35042100 100644
--- a/public/assets/images/icons/black/arr_2up.svg
+++ b/public/assets/images/icons/black/arr_2up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/arr_eol-down.svg b/public/assets/images/icons/black/arr_eol-down.svg
index 476c303ed008427710a25746d0a7a35eb54d0bc0..5afc46e510bffdf14d8aec5a1ad855e8ff381876 100644
--- a/public/assets/images/icons/black/arr_eol-down.svg
+++ b/public/assets/images/icons/black/arr_eol-down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="47.98 10.98 37.36 10.98 26.98 21.36 16.61 10.98 5.99 10.98 26.98 31.98 47.98 10.98"/><rect class="a" x="24.51" y="19.48" width="5" height="42" transform="translate(67.5 13.47) rotate(90)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="47.98 10.98 37.36 10.98 26.98 21.36 16.61 10.98 5.99 10.98 26.98 31.98 47.98 10.98"/><rect class="a" x="24.51" y="19.48" width="5" height="42" transform="translate(67.5 13.47) rotate(90)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/arr_eol-left.svg b/public/assets/images/icons/black/arr_eol-left.svg
index f9681a3b04c2969510d23a8b925be50b14d98b82..ddcf3d5817685125a69490b7cadf7d9e2f2144d4 100644
--- a/public/assets/images/icons/black/arr_eol-left.svg
+++ b/public/assets/images/icons/black/arr_eol-left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="43 6 43 16.63 32.63 27 43 37.37 43 48 22 27 43 6"/><rect class="a" x="11" y="5.97" width="5" height="42" transform="translate(27 53.94) rotate(-180)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="43 6 43 16.63 32.63 27 43 37.37 43 48 22 27 43 6"/><rect class="a" x="11" y="5.97" width="5" height="42" transform="translate(27 53.94) rotate(-180)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/arr_eol-right.svg b/public/assets/images/icons/black/arr_eol-right.svg
index d126a19c0aabf3589b41bec0ba418d916f5bcec6..c7135ca329e2251adb33f5eb396e3cf5b6ff2deb 100644
--- a/public/assets/images/icons/black/arr_eol-right.svg
+++ b/public/assets/images/icons/black/arr_eol-right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="11 6 11 16.63 21.37 27 11 37.37 11 48 32 27 11 6"/><rect class="a" x="38" y="5.97" width="5" height="42"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="11 6 11 16.63 21.37 27 11 37.37 11 48 32 27 11 6"/><rect class="a" x="38" y="5.97" width="5" height="42"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/arr_eol-up.svg b/public/assets/images/icons/black/arr_eol-up.svg
index 8bb29f8c79096b1ea6f0c62a54cdbbd4afea3d9d..c7aeef683e0a69b7d6ad8d00345281df174fea4f 100644
--- a/public/assets/images/icons/black/arr_eol-up.svg
+++ b/public/assets/images/icons/black/arr_eol-up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="6.01 42.98 16.64 42.98 27.02 32.61 37.39 42.98 48.02 42.98 27.02 21.98 6.01 42.98"/><rect class="a" x="24.48" y="-7.51" width="5" height="42" transform="translate(13.5 40.47) rotate(-90)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="6.01 42.98 16.64 42.98 27.02 32.61 37.39 42.98 48.02 42.98 27.02 21.98 6.01 42.98"/><rect class="a" x="24.48" y="-7.51" width="5" height="42" transform="translate(13.5 40.47) rotate(-90)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/audio.svg b/public/assets/images/icons/black/audio.svg
index 292bddb424cec57df50f3c5d02fc57fa7351f30a..33b78b7d6feeccaf362fb3dab816719f18dd3c84 100644
--- a/public/assets/images/icons/black/audio.svg
+++ b/public/assets/images/icons/black/audio.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/audio2.svg b/public/assets/images/icons/black/audio2.svg
index 292bddb424cec57df50f3c5d02fc57fa7351f30a..33b78b7d6feeccaf362fb3dab816719f18dd3c84 100644
--- a/public/assets/images/icons/black/audio2.svg
+++ b/public/assets/images/icons/black/audio2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/audio3.svg b/public/assets/images/icons/black/audio3.svg
index ed75912e537b21640d5ee38289400278fcb7085c..c2635bf08e6068d4b41842680b78361d611df5d8 100644
--- a/public/assets/images/icons/black/audio3.svg
+++ b/public/assets/images/icons/black/audio3.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="audio3"><path class="cls-1" d="M40.75,10H3.17V40.72a3.42,3.42,0,0,0,3.41,3.42h41A3.42,3.42,0,0,0,51,40.72V10Zm6.4,30.31H7V13.82h6.4v6.4H40.75v-6.4h6.4Z"/><path class="cls-1" d="M35.62,23.73a5.08,5.08,0,0,0-4.84,6.74H23.35a5.11,5.11,0,1,0-5.67,3.33v.09h17a5.64,5.64,0,0,0,.93.09,5.13,5.13,0,1,0,0-10.25Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="audio3"><path class="cls-1" d="M40.75,10H3.17V40.72a3.42,3.42,0,0,0,3.41,3.42h41A3.42,3.42,0,0,0,51,40.72V10Zm6.4,30.31H7V13.82h6.4v6.4H40.75v-6.4h6.4Z"/><path class="cls-1" d="M35.62,23.73a5.08,5.08,0,0,0-4.84,6.74H23.35a5.11,5.11,0,1,0-5.67,3.33v.09h17a5.64,5.64,0,0,0,.93.09,5.13,5.13,0,1,0,0-10.25Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/block-accordion.svg b/public/assets/images/icons/black/block-accordion.svg
index 461e74cd4e703b09716287f4c192dd50f3acfb99..42bf253c3ea594e3e994753d179ec6d20e342ef1 100644
--- a/public/assets/images/icons/black/block-accordion.svg
+++ b/public/assets/images/icons/black/block-accordion.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-accordion"><path class="cls-1" d="M18,7.5v39H48V7.5Zm27,36H21v-9H45Zm0-12H21v-9H45Zm-24-12v-9H45v9Z"/><polygon class="cls-1" points="12 10.5 9 10.5 9 13.5 6 13.5 6 16.5 9 16.5 9 19.5 12 19.5 12 16.5 15 16.5 15 13.5 12 13.5 12 10.5"/><polygon class="cls-1" points="12 22.49 9 22.49 9 25.49 6 25.49 6 28.49 9 28.49 9 31.49 12 31.49 12 28.49 15 28.49 15 25.49 12 25.49 12 22.49"/><polygon class="cls-1" points="12 34.49 9 34.49 9 37.49 6 37.49 6 40.48 9 40.48 9 43.48 12 43.48 12 40.48 15 40.48 15 37.49 12 37.49 12 34.49"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-accordion"><path class="cls-1" d="M18,7.5v39H48V7.5Zm27,36H21v-9H45Zm0-12H21v-9H45Zm-24-12v-9H45v9Z"/><polygon class="cls-1" points="12 10.5 9 10.5 9 13.5 6 13.5 6 16.5 9 16.5 9 19.5 12 19.5 12 16.5 15 16.5 15 13.5 12 13.5 12 10.5"/><polygon class="cls-1" points="12 22.49 9 22.49 9 25.49 6 25.49 6 28.49 9 28.49 9 31.49 12 31.49 12 28.49 15 28.49 15 25.49 12 25.49 12 22.49"/><polygon class="cls-1" points="12 34.49 9 34.49 9 37.49 6 37.49 6 40.48 9 40.48 9 43.48 12 43.48 12 40.48 15 40.48 15 37.49 12 37.49 12 34.49"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/block-canvas.svg b/public/assets/images/icons/black/block-canvas.svg
index 18c2683669352250e99a2bb1991bb7589cabd4d8..23d04ae86384d44df0098b0cda22ac112d5cd7bd 100644
--- a/public/assets/images/icons/black/block-canvas.svg
+++ b/public/assets/images/icons/black/block-canvas.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-canvas"><path class="cls-1" d="M48,8.91H6v30h31c2.48,4.54,5,8.6,5.87,8.24s0-4-1.12-8.24H48Zm-3,27H41c-1.64-5.56-3.55-11.1-3.55-11.1a3.38,3.38,0,0,0-6.28,2.52s2,4.1,4.32,8.58H9v-24H45Z"/><path class="cls-1" d="M28.29,16.91a3.29,3.29,0,0,1,.48,2.71s.05.05.07.08a2.31,2.31,0,0,0,.05.74,2.49,2.49,0,1,0,4.79-1.34A7.29,7.29,0,0,0,31,15.43c-1.84-1.26-4.83-1-4.86-.28S27.28,15.76,28.29,16.91Z"/><path class="cls-1" d="M16.33,24.14c.83-.06,1.42-1.34,1.31-2.86s-.86-2.72-1.69-2.66S14.53,20,14.64,21.48,15.5,24.2,16.33,24.14Z"/><path class="cls-1" d="M21.49,20.86c.66-.31.68-1.65.05-3S19.85,15.7,19.19,16s-.68,1.66,0,3S20.84,21.17,21.49,20.86Z"/><path class="cls-1" d="M15.47,31.66a9.41,9.41,0,0,0,6.31.26,8.64,8.64,0,0,0,4.94-4,8.5,8.5,0,0,0,.91-5.9c-1.56,3.58-3.73,6.22-6.76,7.08a10.41,10.41,0,0,1-4.77.34A16.91,16.91,0,0,1,11,27.7,8.46,8.46,0,0,0,15.47,31.66Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-canvas"><path class="cls-1" d="M48,8.91H6v30h31c2.48,4.54,5,8.6,5.87,8.24s0-4-1.12-8.24H48Zm-3,27H41c-1.64-5.56-3.55-11.1-3.55-11.1a3.38,3.38,0,0,0-6.28,2.52s2,4.1,4.32,8.58H9v-24H45Z"/><path class="cls-1" d="M28.29,16.91a3.29,3.29,0,0,1,.48,2.71s.05.05.07.08a2.31,2.31,0,0,0,.05.74,2.49,2.49,0,1,0,4.79-1.34A7.29,7.29,0,0,0,31,15.43c-1.84-1.26-4.83-1-4.86-.28S27.28,15.76,28.29,16.91Z"/><path class="cls-1" d="M16.33,24.14c.83-.06,1.42-1.34,1.31-2.86s-.86-2.72-1.69-2.66S14.53,20,14.64,21.48,15.5,24.2,16.33,24.14Z"/><path class="cls-1" d="M21.49,20.86c.66-.31.68-1.65.05-3S19.85,15.7,19.19,16s-.68,1.66,0,3S20.84,21.17,21.49,20.86Z"/><path class="cls-1" d="M15.47,31.66a9.41,9.41,0,0,0,6.31.26,8.64,8.64,0,0,0,4.94-4,8.5,8.5,0,0,0,.91-5.9c-1.56,3.58-3.73,6.22-6.76,7.08a10.41,10.41,0,0,1-4.77.34A16.91,16.91,0,0,1,11,27.7,8.46,8.46,0,0,0,15.47,31.66Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/block-comparison.svg b/public/assets/images/icons/black/block-comparison.svg
index e1c5183fcc695a7d97394e8b68c00f54bd3611af..23fbfc200d5e31d45c70726de73e57c1e3c3326b 100644
--- a/public/assets/images/icons/black/block-comparison.svg
+++ b/public/assets/images/icons/black/block-comparison.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-comparison"><polygon class="cls-1" points="30.8 31 32.88 33.08 38.96 26.99 32.88 20.9 30.8 22.98 34.8 26.99 30.8 31"/><polygon class="cls-1" points="23.2 22.98 21.12 20.9 15.03 27 21.12 33.08 23.2 31 19.2 26.99 23.2 22.98"/><path class="cls-1" d="M48,12H28.5V9h-3v3H6V42H25.5v3h3V42H48ZM9,39V15H25.5V39Zm36,0H28.5V15H45Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-comparison"><polygon class="cls-1" points="30.8 31 32.88 33.08 38.96 26.99 32.88 20.9 30.8 22.98 34.8 26.99 30.8 31"/><polygon class="cls-1" points="23.2 22.98 21.12 20.9 15.03 27 21.12 33.08 23.2 31 19.2 26.99 23.2 22.98"/><path class="cls-1" d="M48,12H28.5V9h-3v3H6V42H25.5v3h3V42H48ZM9,39V15H25.5V39Zm36,0H28.5V15H45Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/block-eyecatcher.svg b/public/assets/images/icons/black/block-eyecatcher.svg
index 783ff00426769d387fdb82696d35ec50f32dd24d..45f7323d48ea3122fb3ba83684deb2eaa6097593 100644
--- a/public/assets/images/icons/black/block-eyecatcher.svg
+++ b/public/assets/images/icons/black/block-eyecatcher.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-eyecatcher"><g id="visibility-visible"><path class="cls-1" d="M27,17A20.39,20.39,0,0,1,44.57,27,20.39,20.39,0,0,1,9.43,27,20.35,20.35,0,0,1,27,17m0-3A23.36,23.36,0,0,0,6.31,26.42L6,27l.3.58a23.4,23.4,0,0,0,41.37,0L48,27l-.31-.57A23.36,23.36,0,0,0,27,14Z"/><path class="cls-1" d="M27,19.08a7.9,7.9,0,0,0-2.19.35,3.6,3.6,0,0,1,1.58,2.93A3.67,3.67,0,0,1,22.72,26a3.6,3.6,0,0,1-3.1-1.83A7.9,7.9,0,1,0,27,19.08Z"/></g><rect class="cls-1" x="6" y="5.91" width="9" height="3"/><rect class="cls-1" x="6" y="5.91" width="3" height="9"/><rect class="cls-1" x="38.99" y="5.91" width="9" height="3"/><rect class="cls-1" x="44.99" y="8.91" width="3" height="6"/><rect class="cls-1" x="44.99" y="38.89" width="3" height="9"/><rect class="cls-1" x="38.99" y="44.89" width="9" height="3"/><rect class="cls-1" x="6" y="38.89" width="3" height="9"/><rect class="cls-1" x="6" y="44.89" width="9" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-eyecatcher"><g id="visibility-visible"><path class="cls-1" d="M27,17A20.39,20.39,0,0,1,44.57,27,20.39,20.39,0,0,1,9.43,27,20.35,20.35,0,0,1,27,17m0-3A23.36,23.36,0,0,0,6.31,26.42L6,27l.3.58a23.4,23.4,0,0,0,41.37,0L48,27l-.31-.57A23.36,23.36,0,0,0,27,14Z"/><path class="cls-1" d="M27,19.08a7.9,7.9,0,0,0-2.19.35,3.6,3.6,0,0,1,1.58,2.93A3.67,3.67,0,0,1,22.72,26a3.6,3.6,0,0,1-3.1-1.83A7.9,7.9,0,1,0,27,19.08Z"/></g><rect class="cls-1" x="6" y="5.91" width="9" height="3"/><rect class="cls-1" x="6" y="5.91" width="3" height="9"/><rect class="cls-1" x="38.99" y="5.91" width="9" height="3"/><rect class="cls-1" x="44.99" y="8.91" width="3" height="6"/><rect class="cls-1" x="44.99" y="38.89" width="3" height="9"/><rect class="cls-1" x="38.99" y="44.89" width="9" height="3"/><rect class="cls-1" x="6" y="38.89" width="3" height="9"/><rect class="cls-1" x="6" y="44.89" width="9" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/block-eyecatcher2.svg b/public/assets/images/icons/black/block-eyecatcher2.svg
index afe4a7a84d6da66dc75ce14cb978d255d730cd96..c22992c8831d525de20ba2a4d977ee6ea73b8f9f 100644
--- a/public/assets/images/icons/black/block-eyecatcher2.svg
+++ b/public/assets/images/icons/black/block-eyecatcher2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/block-gallery.svg b/public/assets/images/icons/black/block-gallery.svg
index be9bd19f5d31d5a53e0b9ae6589c8ed6039275ae..bd11bef4f7a85b10b4ddd7955f369608a6f5ae24 100644
--- a/public/assets/images/icons/black/block-gallery.svg
+++ b/public/assets/images/icons/black/block-gallery.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-gallery"><path class="cls-1" d="M36,11.91v12H48v-12Zm9,9H39v-6h6Z"/><path class="cls-1" d="M36,38.89H48v-12H36Zm3-9h6v6H39Z"/><path class="cls-1" d="M33,11.91H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M33,26.9H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M6,23.9H18v-12H6Zm3-9h6v6H9Z"/><path class="cls-1" d="M6,38.89H18v-12H6Zm3-9h6v6H9Z"/><rect class="cls-1" x="19.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="25.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="31.5" y="41.89" width="3" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-gallery"><path class="cls-1" d="M36,11.91v12H48v-12Zm9,9H39v-6h6Z"/><path class="cls-1" d="M36,38.89H48v-12H36Zm3-9h6v6H39Z"/><path class="cls-1" d="M33,11.91H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M33,26.9H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M6,23.9H18v-12H6Zm3-9h6v6H9Z"/><path class="cls-1" d="M6,38.89H18v-12H6Zm3-9h6v6H9Z"/><rect class="cls-1" x="19.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="25.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="31.5" y="41.89" width="3" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/block-gallery2.svg b/public/assets/images/icons/black/block-gallery2.svg
index 5d852cb56bc3293d1ccf1a8ad094bc65cf4f88ab..841406d775e5c835463205164b80d12871a948a0 100644
--- a/public/assets/images/icons/black/block-gallery2.svg
+++ b/public/assets/images/icons/black/block-gallery2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-gallery2"><polygon class="cls-1" points="44.87 20.9 42.79 22.98 46.8 26.99 42.79 31 44.87 33.08 50.96 26.99 44.87 20.9"/><polygon class="cls-1" points="9.13 20.9 3.04 27 9.13 33.08 11.21 31 7.2 26.99 11.21 22.98 9.13 20.9"/><path class="cls-1" d="M15,38.89H39v-24H15Zm3-21H36v18H18Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-gallery2"><polygon class="cls-1" points="44.87 20.9 42.79 22.98 46.8 26.99 42.79 31 44.87 33.08 50.96 26.99 44.87 20.9"/><polygon class="cls-1" points="9.13 20.9 3.04 27 9.13 33.08 11.21 31 7.2 26.99 11.21 22.98 9.13 20.9"/><path class="cls-1" d="M15,38.89H39v-24H15Zm3-21H36v18H18Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/block-imagemap.svg b/public/assets/images/icons/black/block-imagemap.svg
index 8d486ec2a40f9430dad625fc06a8e55a6056cd19..2302a67291e9160b511972c0bc30e5fcb94ee551 100644
--- a/public/assets/images/icons/black/block-imagemap.svg
+++ b/public/assets/images/icons/black/block-imagemap.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-imagemap"><rect class="cls-1" x="26.99" y="17.9" width="6" height="3"/><rect class="cls-1" x="18" y="17.9" width="6" height="3"/><rect class="cls-1" x="35.99" y="17.9" width="6" height="3"/><path class="cls-1" d="M51,17.9H48v-6H36v-3H33v3H6v6H3v3H6v21H33v3h3v-3H48v-21h3ZM45,35.05l-8.71-6.33-1.5,1.18H33v1.4l-3.33,2.61L19.9,25,9,35.09V20.9h6v-3H9v-3H33v3h3v-3h9v3h0v3h0Z"/><rect class="cls-1" x="32.99" y="20.9" width="3" height="6"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-imagemap"><rect class="cls-1" x="26.99" y="17.9" width="6" height="3"/><rect class="cls-1" x="18" y="17.9" width="6" height="3"/><rect class="cls-1" x="35.99" y="17.9" width="6" height="3"/><path class="cls-1" d="M51,17.9H48v-6H36v-3H33v3H6v6H3v3H6v21H33v3h3v-3H48v-21h3ZM45,35.05l-8.71-6.33-1.5,1.18H33v1.4l-3.33,2.61L19.9,25,9,35.09V20.9h6v-3H9v-3H33v3h3v-3h9v3h0v3h0Z"/><rect class="cls-1" x="32.99" y="20.9" width="3" height="6"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/block-imagemap2.svg b/public/assets/images/icons/black/block-imagemap2.svg
index afe4a7a84d6da66dc75ce14cb978d255d730cd96..c22992c8831d525de20ba2a4d977ee6ea73b8f9f 100644
--- a/public/assets/images/icons/black/block-imagemap2.svg
+++ b/public/assets/images/icons/black/block-imagemap2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/block-tabs.svg b/public/assets/images/icons/black/block-tabs.svg
index 066b2df6aee58185159af2f7560cbe862fc5a41e..cfa4c81936812ce02014dd801273a71cc334ee5b 100644
--- a/public/assets/images/icons/black/block-tabs.svg
+++ b/public/assets/images/icons/black/block-tabs.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-tabs"><path class="cls-1" d="M6,8.91v36H48v-36Zm18,3h9v6H24Zm21,30H9v-30H21v9H45Zm0-24H36v-6h9Z"/><path d="M48,8.91H6v36H48v-36Zm-12,9v-6h9v6Zm-12,0v-6h9v6Zm-15,24v-30H21v9H45v21Z"/><rect class="cls-1" x="12" y="26.9" width="29.99" height="3"/><polygon points="41.99 26.9 12 26.9 12 29.9 41.99 29.9 41.99 26.9 41.99 26.9"/><rect class="cls-1" x="12" y="32.9" width="29.99" height="3"/><polygon points="41.99 32.9 12 32.9 12 35.9 41.99 35.9 41.99 32.9 41.99 32.9"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-tabs"><path class="cls-1" d="M6,8.91v36H48v-36Zm18,3h9v6H24Zm21,30H9v-30H21v9H45Zm0-24H36v-6h9Z"/><path d="M48,8.91H6v36H48v-36Zm-12,9v-6h9v6Zm-12,0v-6h9v6Zm-15,24v-30H21v9H45v21Z"/><rect class="cls-1" x="12" y="26.9" width="29.99" height="3"/><polygon points="41.99 26.9 12 26.9 12 29.9 41.99 29.9 41.99 26.9 41.99 26.9"/><rect class="cls-1" x="12" y="32.9" width="29.99" height="3"/><polygon points="41.99 32.9 12 32.9 12 35.9 41.99 35.9 41.99 32.9 41.99 32.9"/></g></svg>
diff --git a/public/assets/images/icons/black/block-typewriter.svg b/public/assets/images/icons/black/block-typewriter.svg
index e038a9f229b02a7431527311ae0df80203e53943..7408fe5df993c17842cb3d323f499423a8dcea17 100644
--- a/public/assets/images/icons/black/block-typewriter.svg
+++ b/public/assets/images/icons/black/block-typewriter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-typewriter"><polygon class="cls-1" points="42.06 32.9 45.06 32.9 45.06 29.9 42.06 29.9 42.06 12 39.06 12 39.06 29.9 36.06 29.9 36.06 32.9 39.06 32.9 39.06 41.89 33.07 41.89 33.07 44.89 39.06 44.89 39.06 41.98 42.06 41.98 42.06 44.89 48.06 44.89 48.06 41.89 42.06 41.89 42.06 32.9"/><rect class="cls-1" x="33.07" y="8.91" width="6" height="3"/><rect class="cls-1" x="42.06" y="8.91" width="6" height="3"/><path class="cls-1" d="M20.8,14.91l-1-3H12v3h3.21L7,38.89H3v3H8.63a1.09,1.09,0,0,0,.76-.29,1.47,1.47,0,0,0,.41-.67l2.41-7.24H23.78l2.41,7.24a1.73,1.73,0,0,0,.43.69,1.07,1.07,0,0,0,.76.27H33v-3H29ZM13.18,30.76l4.05-12.18A25.75,25.75,0,0,0,18,15.76c.12.54.25,1,.38,1.54s.26.9.38,1.26l4,12.2Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="block-typewriter"><polygon class="cls-1" points="42.06 32.9 45.06 32.9 45.06 29.9 42.06 29.9 42.06 12 39.06 12 39.06 29.9 36.06 29.9 36.06 32.9 39.06 32.9 39.06 41.89 33.07 41.89 33.07 44.89 39.06 44.89 39.06 41.98 42.06 41.98 42.06 44.89 48.06 44.89 48.06 41.89 42.06 41.89 42.06 32.9"/><rect class="cls-1" x="33.07" y="8.91" width="6" height="3"/><rect class="cls-1" x="42.06" y="8.91" width="6" height="3"/><path class="cls-1" d="M20.8,14.91l-1-3H12v3h3.21L7,38.89H3v3H8.63a1.09,1.09,0,0,0,.76-.29,1.47,1.47,0,0,0,.41-.67l2.41-7.24H23.78l2.41,7.24a1.73,1.73,0,0,0,.43.69,1.07,1.07,0,0,0,.76.27H33v-3H29ZM13.18,30.76l4.05-12.18A25.75,25.75,0,0,0,18,15.76c.12.54.25,1,.38,1.54s.26.9.38,1.26l4,12.2Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/blubber-old.svg b/public/assets/images/icons/black/blubber-old.svg
index 32b39a0b2342c10d6f79ac26ce0a8befe50df6a8..b7f102587374f95e5d034f17c367911047a002d3 100644
--- a/public/assets/images/icons/black/blubber-old.svg
+++ b/public/assets/images/icons/black/blubber-old.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00000;}</style></defs><path class="a" d="M18,15A15,15,0,1,0,33,30,15,15,0,0,0,18,15Z"/><path class="a" d="M50.85,13.5a8.5,8.5,0,1,0-8.5,8.5A8.5,8.5,0,0,0,50.85,13.5Z"/><path class="a" d="M45,39a5,5,0,1,0,5,5A5,5,0,0,0,45,39Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00000;}</style></defs><path class="a" d="M18,15A15,15,0,1,0,33,30,15,15,0,0,0,18,15Z"/><path class="a" d="M50.85,13.5a8.5,8.5,0,1,0-8.5,8.5A8.5,8.5,0,0,0,50.85,13.5Z"/><path class="a" d="M45,39a5,5,0,1,0,5,5A5,5,0,0,0,45,39Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/blubber.svg b/public/assets/images/icons/black/blubber.svg
index 724b3a6f47e1cad635b8fd61d43ed18842c18a48..9f07d01ac5c69365d28fd56d96cf370b5bf7e667 100644
--- a/public/assets/images/icons/black/blubber.svg
+++ b/public/assets/images/icons/black/blubber.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M41,31A10,10,0,1,0,51,41,10,10,0,0,0,41,31Zm0,17a7,7,0,1,1,7-7A7,7,0,0,1,41,48Z"/><path class="a" d="M33,26.83A12,12,0,1,0,23.2,13,14.72,14.72,0,0,0,18,12,15,15,0,1,0,33,27C33,26.94,33,26.88,33,26.83ZM18,39A12,12,0,1,1,30,27,12,12,0,0,1,18,39Zm8-24.65A9,9,0,1,1,35,24a8.63,8.63,0,0,1-2.39-.34A15,15,0,0,0,26,14.35Z"/><path class="a" d="M22.21,17.06A10.71,10.71,0,0,0,18,16.2a10.87,10.87,0,0,0-9.78,6.25,1.29,1.29,0,0,0,.62,1.72,1.23,1.23,0,0,0,.55.13,1.3,1.3,0,0,0,1.18-.75A8.22,8.22,0,0,1,21.2,19.44a1.29,1.29,0,1,0,1-2.38Z"/><path class="a" d="M8.5,25.7A1.3,1.3,0,0,0,7.2,27a10.48,10.48,0,0,0,.14,1.68,1.3,1.3,0,0,0,1.27,1.1l.21,0A1.3,1.3,0,0,0,9.9,28.28,7.8,7.8,0,0,1,9.8,27,1.3,1.3,0,0,0,8.5,25.7Z"/><path class="a" d="M38.66,9.49A1.23,1.23,0,0,0,38,7.89a7.72,7.72,0,0,0-10.64,5.92,1.21,1.21,0,0,0,1,1.39l.19,0a1.21,1.21,0,0,0,1.2-1A5.33,5.33,0,0,1,35,9.72a5.23,5.23,0,0,1,2.06.42A1.23,1.23,0,0,0,38.66,9.49Z"/><path class="a" d="M43.19,35.82A5.62,5.62,0,0,0,35.37,41a6.52,6.52,0,0,0,.07.88,1.13,1.13,0,0,0,1.11.95l.18,0a1.13,1.13,0,0,0,.94-1.29,3,3,0,0,1-.05-.52A3.39,3.39,0,0,1,41,37.62a3.27,3.27,0,0,1,1.31.27,1.12,1.12,0,1,0,.88-2.07Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M41,31A10,10,0,1,0,51,41,10,10,0,0,0,41,31Zm0,17a7,7,0,1,1,7-7A7,7,0,0,1,41,48Z"/><path class="a" d="M33,26.83A12,12,0,1,0,23.2,13,14.72,14.72,0,0,0,18,12,15,15,0,1,0,33,27C33,26.94,33,26.88,33,26.83ZM18,39A12,12,0,1,1,30,27,12,12,0,0,1,18,39Zm8-24.65A9,9,0,1,1,35,24a8.63,8.63,0,0,1-2.39-.34A15,15,0,0,0,26,14.35Z"/><path class="a" d="M22.21,17.06A10.71,10.71,0,0,0,18,16.2a10.87,10.87,0,0,0-9.78,6.25,1.29,1.29,0,0,0,.62,1.72,1.23,1.23,0,0,0,.55.13,1.3,1.3,0,0,0,1.18-.75A8.22,8.22,0,0,1,21.2,19.44a1.29,1.29,0,1,0,1-2.38Z"/><path class="a" d="M8.5,25.7A1.3,1.3,0,0,0,7.2,27a10.48,10.48,0,0,0,.14,1.68,1.3,1.3,0,0,0,1.27,1.1l.21,0A1.3,1.3,0,0,0,9.9,28.28,7.8,7.8,0,0,1,9.8,27,1.3,1.3,0,0,0,8.5,25.7Z"/><path class="a" d="M38.66,9.49A1.23,1.23,0,0,0,38,7.89a7.72,7.72,0,0,0-10.64,5.92,1.21,1.21,0,0,0,1,1.39l.19,0a1.21,1.21,0,0,0,1.2-1A5.33,5.33,0,0,1,35,9.72a5.23,5.23,0,0,1,2.06.42A1.23,1.23,0,0,0,38.66,9.49Z"/><path class="a" d="M43.19,35.82A5.62,5.62,0,0,0,35.37,41a6.52,6.52,0,0,0,.07.88,1.13,1.13,0,0,0,1.11.95l.18,0a1.13,1.13,0,0,0,.94-1.29,3,3,0,0,1-.05-.52A3.39,3.39,0,0,1,41,37.62a3.27,3.27,0,0,1,1.31.27,1.12,1.12,0,1,0,.88-2.07Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/brainstorm.svg b/public/assets/images/icons/black/brainstorm.svg
index ede81242492f7d33ef371f195888281bb0680eaa..8451bc047d17298a3817312b85d0a96fe8368516 100644
--- a/public/assets/images/icons/black/brainstorm.svg
+++ b/public/assets/images/icons/black/brainstorm.svg
@@ -1 +1 @@
-<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="Brainstorm"><path d="M28.55,25.76c-11.46-1.2-20.19-7-19.5-12.87s10.55-9.72,22-8.53a39,39,0,0,1,5.18.93,40.5,40.5,0,0,0-9.56-2.17C14.38,1.84,3.82,5.93,3.07,12.27S11.69,24.78,24,26.06a40.05,40.05,0,0,0,9.83-.14A39.25,39.25,0,0,1,28.55,25.76Z"/><path d="M25.65,6.28c11.44,1.38,20.06,7.28,19.26,13.17S34.19,29,22.75,27.63a38.62,38.62,0,0,1-5.16-1,40,40,0,0,0,9.52,2.33C39.38,30.42,50,26.5,50.88,20.18S42.49,7.53,30.22,6.05a40.49,40.49,0,0,0-9.84,0A39.6,39.6,0,0,1,25.65,6.28Z"/><path d="M28.32,38.84c-10-1-17.57-6.05-17-11.19A5.46,5.46,0,0,1,12.59,25c-.65-.25-1.39-.55-2.22-.92S9,23.41,8.46,23.13a6.42,6.42,0,0,0-2.31,4c-.64,5.51,7.5,10.89,18.2,12A35.62,35.62,0,0,0,32.9,39,35.58,35.58,0,0,1,28.32,38.84Z"/><path d="M42.91,29.36c-.8.31-1.7.63-2.47.84a23.13,23.13,0,0,1-2.53.51,4.88,4.88,0,0,1,.67,1.4c1.35,5-5.45,11-15.18,13.27a33.74,33.74,0,0,1-4.52.74,35.45,35.45,0,0,0,8.5-1C37.81,42.65,45.1,36.27,43.66,30.9A5.5,5.5,0,0,0,42.91,29.36Z"/><path d="M14.59,43a5.56,5.56,0,0,1,2.72-4.15,15.4,15.4,0,0,1-1.51-.49l-1-.39c-2.1,1.24-3.47,2.93-3.57,4.87C11,47,16.46,50.58,23.45,50.91A19.82,19.82,0,0,0,29,50.4a19.44,19.44,0,0,1-3,.12C19.51,50.21,14.39,46.83,14.59,43Z"/><path d="M42.61,29.57c-.5,0-1.75.93-2.21.9s-1.87.42-2.33.34A4.56,4.56,0,0,1,38.28,32c-.12,2.62-4.69,4.65-10.41,4.15a18.66,18.66,0,0,1-2.59-.43,11.23,11.23,0,0,0,5,1.51c6.15.52,12.38-1.67,12.69-4.84A26.14,26.14,0,0,0,42.61,29.57Z"/><path d="M29.24,8.71c-8.34-2-16.16.32-17.46,5.17A6,6,0,0,0,12.25,18c0-.11,0-.23,0-.34.81-4.73,8.05-7.55,16.16-6.32s13.77,5.88,13.24,10.51a6.36,6.36,0,0,0,.33-.7C43.28,16.25,37.58,10.7,29.24,8.71Z"/></g></svg>
+<svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="Brainstorm"><path d="M28.55,25.76c-11.46-1.2-20.19-7-19.5-12.87s10.55-9.72,22-8.53a39,39,0,0,1,5.18.93,40.5,40.5,0,0,0-9.56-2.17C14.38,1.84,3.82,5.93,3.07,12.27S11.69,24.78,24,26.06a40.05,40.05,0,0,0,9.83-.14A39.25,39.25,0,0,1,28.55,25.76Z"/><path d="M25.65,6.28c11.44,1.38,20.06,7.28,19.26,13.17S34.19,29,22.75,27.63a38.62,38.62,0,0,1-5.16-1,40,40,0,0,0,9.52,2.33C39.38,30.42,50,26.5,50.88,20.18S42.49,7.53,30.22,6.05a40.49,40.49,0,0,0-9.84,0A39.6,39.6,0,0,1,25.65,6.28Z"/><path d="M28.32,38.84c-10-1-17.57-6.05-17-11.19A5.46,5.46,0,0,1,12.59,25c-.65-.25-1.39-.55-2.22-.92S9,23.41,8.46,23.13a6.42,6.42,0,0,0-2.31,4c-.64,5.51,7.5,10.89,18.2,12A35.62,35.62,0,0,0,32.9,39,35.58,35.58,0,0,1,28.32,38.84Z"/><path d="M42.91,29.36c-.8.31-1.7.63-2.47.84a23.13,23.13,0,0,1-2.53.51,4.88,4.88,0,0,1,.67,1.4c1.35,5-5.45,11-15.18,13.27a33.74,33.74,0,0,1-4.52.74,35.45,35.45,0,0,0,8.5-1C37.81,42.65,45.1,36.27,43.66,30.9A5.5,5.5,0,0,0,42.91,29.36Z"/><path d="M14.59,43a5.56,5.56,0,0,1,2.72-4.15,15.4,15.4,0,0,1-1.51-.49l-1-.39c-2.1,1.24-3.47,2.93-3.57,4.87C11,47,16.46,50.58,23.45,50.91A19.82,19.82,0,0,0,29,50.4a19.44,19.44,0,0,1-3,.12C19.51,50.21,14.39,46.83,14.59,43Z"/><path d="M42.61,29.57c-.5,0-1.75.93-2.21.9s-1.87.42-2.33.34A4.56,4.56,0,0,1,38.28,32c-.12,2.62-4.69,4.65-10.41,4.15a18.66,18.66,0,0,1-2.59-.43,11.23,11.23,0,0,0,5,1.51c6.15.52,12.38-1.67,12.69-4.84A26.14,26.14,0,0,0,42.61,29.57Z"/><path d="M29.24,8.71c-8.34-2-16.16.32-17.46,5.17A6,6,0,0,0,12.25,18c0-.11,0-.23,0-.34.81-4.73,8.05-7.55,16.16-6.32s13.77,5.88,13.24,10.51a6.36,6.36,0,0,0,.33-.7C43.28,16.25,37.58,10.7,29.24,8.71Z"/></g></svg>
diff --git a/public/assets/images/icons/black/chat.svg b/public/assets/images/icons/black/chat.svg
index f373ea07e716c40a083d20c82b3267a53e0f9846..3af5387fa17cd73db63d7410b8b16fb9153fcf38 100644
--- a/public/assets/images/icons/black/chat.svg
+++ b/public/assets/images/icons/black/chat.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/chat2.svg b/public/assets/images/icons/black/chat2.svg
index f373ea07e716c40a083d20c82b3267a53e0f9846..3af5387fa17cd73db63d7410b8b16fb9153fcf38 100644
--- a/public/assets/images/icons/black/chat2.svg
+++ b/public/assets/images/icons/black/chat2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/check-circle.svg b/public/assets/images/icons/black/check-circle.svg
index 2e78461c65b9fa617cde51322931aa7988f9c0e4..7f546c258f9a5a0e08ea056791534209fb32f352 100644
--- a/public/assets/images/icons/black/check-circle.svg
+++ b/public/assets/images/icons/black/check-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="check-circle"><path class="cls-1" d="M40.84,21.11,36,16.25,24.18,28,18,21.87l-4.84,4.85,11,11ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="check-circle"><path class="cls-1" d="M40.84,21.11,36,16.25,24.18,28,18,21.87l-4.84,4.85,11,11ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/clipboard.svg b/public/assets/images/icons/black/clipboard.svg
index a1f98a247156d50922bdcef7a09e79a0b140ba01..67db5dde6eb73603b1a0fbb78de6004b0fc58076 100644
--- a/public/assets/images/icons/black/clipboard.svg
+++ b/public/assets/images/icons/black/clipboard.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="clipboard"><path class="cls-1" d="M30,23.9v24H9v-24H30m3-3H6v30H33v-30Z"/><polygon class="cls-1" points="47.98 5.91 15 5.91 15 8.91 44.99 8.91 44.99 38.9 47.98 38.9 47.98 5.91 47.98 5.91"/><polygon class="cls-1" points="26.99 14.91 26.99 17.9 33.71 17.9 23.87 27.74 25.99 29.86 35.99 19.86 35.99 26.9 38.99 26.9 38.99 14.91 26.99 14.91"/><rect class="cls-1" x="27" y="3.05" width="8.99" height="5.86"/><rect class="cls-1" x="10.5" y="10.41" width="11.99" height="3" transform="translate(28.41 -4.59) rotate(90)"/><rect class="cls-1" x="35.99" y="38.89" width="11.99" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="clipboard"><path class="cls-1" d="M30,23.9v24H9v-24H30m3-3H6v30H33v-30Z"/><polygon class="cls-1" points="47.98 5.91 15 5.91 15 8.91 44.99 8.91 44.99 38.9 47.98 38.9 47.98 5.91 47.98 5.91"/><polygon class="cls-1" points="26.99 14.91 26.99 17.9 33.71 17.9 23.87 27.74 25.99 29.86 35.99 19.86 35.99 26.9 38.99 26.9 38.99 14.91 26.99 14.91"/><rect class="cls-1" x="27" y="3.05" width="8.99" height="5.86"/><rect class="cls-1" x="10.5" y="10.41" width="11.99" height="3" transform="translate(28.41 -4.59) rotate(90)"/><rect class="cls-1" x="35.99" y="38.89" width="11.99" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/cloud.svg b/public/assets/images/icons/black/cloud.svg
index e9b3e323232c04ed75c56bd40b3e64cd7fac9f63..418850482698ab7c35cb5c1ddc1b31b30ef4532a 100644
--- a/public/assets/images/icons/black/cloud.svg
+++ b/public/assets/images/icons/black/cloud.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><path id="cloud" d="M33.61,16.51a8.1,8.1,0,0,1,8.15,7.94l.06,2.31,2.23.54a5.15,5.15,0,0,1,3.94,5v.17a5.17,5.17,0,0,1-5.15,5H12.08a6.08,6.08,0,0,1,0-12.16,6.9,6.9,0,0,1,1.09.1l4.11.74L16.68,22a2.32,2.32,0,0,1,0-.46,3.26,3.26,0,0,1,5.84-2l2.35,3,2.39-3a8.1,8.1,0,0,1,6.39-3.1m0-3a11.14,11.14,0,0,0-8.76,4.25,6.26,6.26,0,0,0-11.21,3.83,6.44,6.44,0,0,0,.06.89,9.66,9.66,0,0,0-1.62-.14,9.09,9.09,0,0,0,0,18.17H42.84A8.18,8.18,0,0,0,51,32.32h0a8.17,8.17,0,0,0-6.24-7.94A11.16,11.16,0,0,0,33.61,13.5Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><path id="cloud" d="M33.61,16.51a8.1,8.1,0,0,1,8.15,7.94l.06,2.31,2.23.54a5.15,5.15,0,0,1,3.94,5v.17a5.17,5.17,0,0,1-5.15,5H12.08a6.08,6.08,0,0,1,0-12.16,6.9,6.9,0,0,1,1.09.1l4.11.74L16.68,22a2.32,2.32,0,0,1,0-.46,3.26,3.26,0,0,1,5.84-2l2.35,3,2.39-3a8.1,8.1,0,0,1,6.39-3.1m0-3a11.14,11.14,0,0,0-8.76,4.25,6.26,6.26,0,0,0-11.21,3.83,6.44,6.44,0,0,0,.06.89,9.66,9.66,0,0,0-1.62-.14,9.09,9.09,0,0,0,0,18.17H42.84A8.18,8.18,0,0,0,51,32.32h0a8.17,8.17,0,0,0-6.24-7.94A11.16,11.16,0,0,0,33.61,13.5Z"/></svg>
diff --git a/public/assets/images/icons/black/comment.svg b/public/assets/images/icons/black/comment.svg
index 2eccf64bc52c56c434201af42f93e3fac55b49dc..fd51126da100c253eceed4a626a5b05731ee216f 100644
--- a/public/assets/images/icons/black/comment.svg
+++ b/public/assets/images/icons/black/comment.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="comment"><path class="cls-1" d="M37.91,6.8A6.3,6.3,0,0,0,29.47,9l-1,1.72L26.9,13.27,13,36.47,13.13,48,23.7,42.42,37.6,19.23l1.54-2.58,1-1.72A5.83,5.83,0,0,0,37.91,6.8ZM21.46,40.21l-1.95,1-3.39-1.89,0-2.1L29.57,14.76l5.35,3Zm9.66-28,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06l-1,1.72Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="comment"><path class="cls-1" d="M37.91,6.8A6.3,6.3,0,0,0,29.47,9l-1,1.72L26.9,13.27,13,36.47,13.13,48,23.7,42.42,37.6,19.23l1.54-2.58,1-1.72A5.83,5.83,0,0,0,37.91,6.8ZM21.46,40.21l-1.95,1-3.39-1.89,0-2.1L29.57,14.76l5.35,3Zm9.66-28,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06l-1,1.72Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/comment2.svg b/public/assets/images/icons/black/comment2.svg
index 13df1d3e730a5b0f15ab9b62d1a5599114b46bb0..18afbc5d848b854930e29109cf5819958d945961 100644
--- a/public/assets/images/icons/black/comment2.svg
+++ b/public/assets/images/icons/black/comment2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="comment"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="comment"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/community.svg b/public/assets/images/icons/black/community.svg
index 8114cdb11ca0ed15b2de3be3eb377477cc17fd81..de2110d6cf253c8dcb9df9463344474bcd693dd9 100644
--- a/public/assets/images/icons/black/community.svg
+++ b/public/assets/images/icons/black/community.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M37,25a9,9,0,1,0-9-9A9,9,0,0,0,37,25Z"/><path class="a" d="M17,25a9,9,0,1,0-9-9A9,9,0,0,0,17,25Z"/><path class="a" d="M44.79,29H29.2a6.21,6.21,0,0,0-6.2,6.2V48H51V35.17A6.21,6.21,0,0,0,44.79,29Z"/><path class="a" d="M3,35.17V48H20V35.17A9.11,9.11,0,0,1,22.43,29H9.2A6.21,6.21,0,0,0,3,35.17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M37,25a9,9,0,1,0-9-9A9,9,0,0,0,37,25Z"/><path class="a" d="M17,25a9,9,0,1,0-9-9A9,9,0,0,0,17,25Z"/><path class="a" d="M44.79,29H29.2a6.21,6.21,0,0,0-6.2,6.2V48H51V35.17A6.21,6.21,0,0,0,44.79,29Z"/><path class="a" d="M3,35.17V48H20V35.17A9.11,9.11,0,0,1,22.43,29H9.2A6.21,6.21,0,0,0,3,35.17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/community2.svg b/public/assets/images/icons/black/community2.svg
index 33530a3e52f45f0ab3b66ddcf4036bbdfa6f29b0..5ab4c2fc00d6f2ebcb7f3b16a403a7a8f4ab2b3e 100644
--- a/public/assets/images/icons/black/community2.svg
+++ b/public/assets/images/icons/black/community2.svg
@@ -1 +1 @@
-<svg id="Icons" data-name="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="community2"><path d="M23,15a12.86,12.86,0,0,1,2.09-7,10,10,0,1,0,0,14.08A12.86,12.86,0,0,1,23,15Zm-5,4a4,4,0,1,1,4-4A4,4,0,0,1,18,19Z"/><path d="M36,25A10,10,0,1,1,46,15,10,10,0,0,1,36,25Zm0-14a4,4,0,1,0,4,4A4,4,0,0,0,36,11Z"/><path d="M9,43V36a2,2,0,0,1,2-2h5c0-2,2-6,5-6H11a8,8,0,0,0-8,8V49H16V43Z"/><path d="M51,49H19V36a8,8,0,0,1,8-8H43a8,8,0,0,1,8,8ZM25,43H45V36a2,2,0,0,0-2-2H27a2,2,0,0,0-2,2Z"/></g></svg>
+<svg width="16" height="16" id="Icons" data-name="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="community2"><path d="M23,15a12.86,12.86,0,0,1,2.09-7,10,10,0,1,0,0,14.08A12.86,12.86,0,0,1,23,15Zm-5,4a4,4,0,1,1,4-4A4,4,0,0,1,18,19Z"/><path d="M36,25A10,10,0,1,1,46,15,10,10,0,0,1,36,25Zm0-14a4,4,0,1,0,4,4A4,4,0,0,0,36,11Z"/><path d="M9,43V36a2,2,0,0,1,2-2h5c0-2,2-6,5-6H11a8,8,0,0,0-8,8V49H16V43Z"/><path d="M51,49H19V36a8,8,0,0,1,8-8H43a8,8,0,0,1,8,8ZM25,43H45V36a2,2,0,0,0-2-2H27a2,2,0,0,0-2,2Z"/></g></svg>
diff --git a/public/assets/images/icons/black/content.svg b/public/assets/images/icons/black/content.svg
index 3ad9cc0852898f6ab120b78878f5bbae93a2acb8..e8ea95f3f7f128987cd1040b7edee4c2be7b65cf 100644
--- a/public/assets/images/icons/black/content.svg
+++ b/public/assets/images/icons/black/content.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M44.94,9a6.44,6.44,0,0,1-.87,3.82L43.37,14H46V42H8V14H28L30.67,9.5,31,9H3V47H51V9Z"/><polygon class="a" points="26.26 16.97 10.96 16.97 10.96 38.97 20.08 38.97 20.06 36.99 19.96 28.21 19.96 27.65 20.24 27.17 26.26 16.97"/><polygon class="a" points="31.71 33.74 31.43 34.22 30.93 34.48 23.01 38.73 22.56 38.97 42.96 38.97 42.96 16.97 41.6 16.97 31.71 33.74"/><path class="a" d="M22.06,37,30,32.72,40.41,15.05l1.16-2,.77-1.31a4.48,4.48,0,0,0-1.69-6.19,4.69,4.69,0,0,0-6.33,1.66l-.77,1.31-1.16,2L22,28.19ZM36.32,8.37a2.36,2.36,0,0,1,3.17-.83,2.25,2.25,0,0,1,.85,3.1L39.56,12l-4-2.27Zm-1.93,3.28,4,2.26L28.31,31l-1.46.78L24.3,30.38v-1.6Z"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M44.94,9a6.44,6.44,0,0,1-.87,3.82L43.37,14H46V42H8V14H28L30.67,9.5,31,9H3V47H51V9Z"/><polygon class="a" points="26.26 16.97 10.96 16.97 10.96 38.97 20.08 38.97 20.06 36.99 19.96 28.21 19.96 27.65 20.24 27.17 26.26 16.97"/><polygon class="a" points="31.71 33.74 31.43 34.22 30.93 34.48 23.01 38.73 22.56 38.97 42.96 38.97 42.96 16.97 41.6 16.97 31.71 33.74"/><path class="a" d="M22.06,37,30,32.72,40.41,15.05l1.16-2,.77-1.31a4.48,4.48,0,0,0-1.69-6.19,4.69,4.69,0,0,0-6.33,1.66l-.77,1.31-1.16,2L22,28.19ZM36.32,8.37a2.36,2.36,0,0,1,3.17-.83,2.25,2.25,0,0,1,.85,3.1L39.56,12l-4-2.27Zm-1.93,3.28,4,2.26L28.31,31l-1.46.78L24.3,30.38v-1.6Z"/></svg>
diff --git a/public/assets/images/icons/black/courseware.svg b/public/assets/images/icons/black/courseware.svg
index 7f33af377700282a97664cc31415cd9467a57c23..972ff6a9e01c88521c8adcc8f9ebe7e4c962d979 100644
--- a/public/assets/images/icons/black/courseware.svg
+++ b/public/assets/images/icons/black/courseware.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="courseware"><polygon class="cls-1" points="30.85 9.37 27 6 23.14 9.37 27 11.16 30.85 9.37"/><polygon class="cls-1" points="37.56 15.24 33.71 11.87 27 15.22 20.28 11.87 16.43 15.24 27.05 21.56 37.56 15.24"/><polygon class="cls-1" points="44.27 21.12 40.42 17.75 27.05 26.97 13.57 17.75 9.72 21.12 27.05 34.5 44.27 21.12"/><polygon class="cls-1" points="47.13 23.62 27.05 40.33 6.86 23.62 3.01 26.99 27 47.98 50.98 26.99 47.13 23.62"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="courseware"><polygon class="cls-1" points="30.85 9.37 27 6 23.14 9.37 27 11.16 30.85 9.37"/><polygon class="cls-1" points="37.56 15.24 33.71 11.87 27 15.22 20.28 11.87 16.43 15.24 27.05 21.56 37.56 15.24"/><polygon class="cls-1" points="44.27 21.12 40.42 17.75 27.05 26.97 13.57 17.75 9.72 21.12 27.05 34.5 44.27 21.12"/><polygon class="cls-1" points="47.13 23.62 27.05 40.33 6.86 23.62 3.01 26.99 27 47.98 50.98 26.99 47.13 23.62"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/crop.svg b/public/assets/images/icons/black/crop.svg
index 9e0a553df522f9d2f3f74892f06291516a6383e9..25783c6d45c503d36fea49e212f4ad0e57a14d76 100644
--- a/public/assets/images/icons/black/crop.svg
+++ b/public/assets/images/icons/black/crop.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="crop"><path d="M3,3V51H51V3ZM48,33h-4.5v2.9H48V48H35.94v-4.5H33V48H6v-12H10.5V33H6V6H33v4.5h2.9V6H48Z"/><rect x="16" y="33.04" width="8.25" height="2.9"/><polygon points="35.94 29.74 33.04 29.74 33.04 33.04 29.75 33.04 29.75 35.94 33.04 35.94 33.04 37.99 35.94 37.99 35.94 35.94 37.99 35.94 37.99 33.04 35.94 33.04 35.94 29.74"/><rect x="33.04" y="16" width="2.9" height="8.25"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="crop"><path d="M3,3V51H51V3ZM48,33h-4.5v2.9H48V48H35.94v-4.5H33V48H6v-12H10.5V33H6V6H33v4.5h2.9V6H48Z"/><rect x="16" y="33.04" width="8.25" height="2.9"/><polygon points="35.94 29.74 33.04 29.74 33.04 33.04 29.75 33.04 29.75 35.94 33.04 35.94 33.04 37.99 35.94 37.99 35.94 35.94 37.99 35.94 37.99 33.04 35.94 33.04 35.94 29.74"/><rect x="33.04" y="16" width="2.9" height="8.25"/></g></svg>
diff --git a/public/assets/images/icons/black/crown.svg b/public/assets/images/icons/black/crown.svg
index bd7a984492fe7b6e786bbf80fc3be25136a0e86a..c619b7e70c6aae235c09755191327b8995bc1367 100644
--- a/public/assets/images/icons/black/crown.svg
+++ b/public/assets/images/icons/black/crown.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="crown"><path class="cls-1" d="M48,17a3,3,0,0,0-3,3,3,3,0,0,0,.31,1.31L37,26.53,29.88,14.76a4,4,0,1,0-5.76,0L17,26.53,8.21,21A2.94,2.94,0,0,0,9,19a3,3,0,1,0-3.23,3L12,46H42l6-23h0a3,3,0,0,0,0-6ZM14.32,43l-.78-3H40.46l-.78,3Zm26.92-6H12.76l-3-11.42,5.61,3.52L18,30.69l1.58-2.61L26.88,16h.24l7.31,12.09L36,30.69l2.59-1.62,5.6-3.52Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="crown"><path class="cls-1" d="M48,17a3,3,0,0,0-3,3,3,3,0,0,0,.31,1.31L37,26.53,29.88,14.76a4,4,0,1,0-5.76,0L17,26.53,8.21,21A2.94,2.94,0,0,0,9,19a3,3,0,1,0-3.23,3L12,46H42l6-23h0a3,3,0,0,0,0-6ZM14.32,43l-.78-3H40.46l-.78,3Zm26.92-6H12.76l-3-11.42,5.61,3.52L18,30.69l1.58-2.61L26.88,16h.24l7.31,12.09L36,30.69l2.59-1.62,5.6-3.52Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/date-block.svg b/public/assets/images/icons/black/date-block.svg
index 08dfb9926d8384315d6318621ff01f33d17906b8..4b16117cc21b30b7bb2d11ca7217b53f98e802c2 100644
--- a/public/assets/images/icons/black/date-block.svg
+++ b/public/assets/images/icons/black/date-block.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="date-block"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM6.77,27A14.86,14.86,0,1,1,21.63,41.84,14.88,14.88,0,0,1,6.77,27Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="date-block"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM6.77,27A14.86,14.86,0,1,1,21.63,41.84,14.88,14.88,0,0,1,6.77,27Z"/></g></svg>
diff --git a/public/assets/images/icons/black/date-cycle.svg b/public/assets/images/icons/black/date-cycle.svg
index 53da1969b8a733bf1996b8a93191d697bf48a57d..6f2e4ec936e793c6742f7fa11e88a46fc70f7dcf 100644
--- a/public/assets/images/icons/black/date-cycle.svg
+++ b/public/assets/images/icons/black/date-cycle.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="date-cycle"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM21.63,41.84A14.85,14.85,0,1,1,36.48,27,14.88,14.88,0,0,1,21.63,41.84Zm11.23,0a18.58,18.58,0,0,0,0-29.66,14.84,14.84,0,0,1,0,29.66Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="date-cycle"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM21.63,41.84A14.85,14.85,0,1,1,36.48,27,14.88,14.88,0,0,1,21.63,41.84Zm11.23,0a18.58,18.58,0,0,0,0-29.66,14.84,14.84,0,0,1,0,29.66Z"/></g></svg>
diff --git a/public/assets/images/icons/black/date-single.svg b/public/assets/images/icons/black/date-single.svg
index 94feb8eb7932c7a380441b7d5de2226580646aaf..996ddb8a7754efe4bb58f6243846633a7e64b104 100644
--- a/public/assets/images/icons/black/date-single.svg
+++ b/public/assets/images/icons/black/date-single.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="date-single"><path d="M27,8.37A18.62,18.62,0,1,0,45.62,27,18.63,18.63,0,0,0,27,8.37Zm0,33.47A14.85,14.85,0,1,1,41.85,27,14.86,14.86,0,0,1,27,41.84Z"/><polygon points="24.25 14.45 24.25 26 17.1 30.16 19.93 35.12 29.91 29.33 29.97 29.33 29.96 14.45 24.25 14.45"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="date-single"><path d="M27,8.37A18.62,18.62,0,1,0,45.62,27,18.63,18.63,0,0,0,27,8.37Zm0,33.47A14.85,14.85,0,1,1,41.85,27,14.86,14.86,0,0,1,27,41.84Z"/><polygon points="24.25 14.45 24.25 26 17.1 30.16 19.93 35.12 29.91 29.33 29.97 29.33 29.96 14.45 24.25 14.45"/></g></svg>
diff --git a/public/assets/images/icons/black/decline-circle.svg b/public/assets/images/icons/black/decline-circle.svg
index 6f679588d8fe17313dc1767e92fc4709d7bd802b..79a980aae6cd2b241067c624a9c1b46d11a3aefe 100644
--- a/public/assets/images/icons/black/decline-circle.svg
+++ b/public/assets/images/icons/black/decline-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="decline-circle"><path class="cls-1" d="M38.68,34l-7-7,7-7-4.94-5-7,7-7-7L14.75,20l7,7-7,7L19.7,39l7-7,7,7ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="decline-circle"><path class="cls-1" d="M38.68,34l-7-7,7-7-4.94-5-7,7-7-7L14.75,20l7,7-7,7L19.7,39l7-7,7,7ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/decline.svg b/public/assets/images/icons/black/decline.svg
index e279703dfc50a596e6aacc6876276f42a374dced..b216582a9b8ba8a3576985c7cae89e0571c455af 100644
--- a/public/assets/images/icons/black/decline.svg
+++ b/public/assets/images/icons/black/decline.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="decline"><polygon id="decline-2" data-name="decline" class="cls-1" points="47.32 38.91 35.4 26.99 47.32 15.07 38.93 6.67 27 18.59 15.07 6.67 6.68 15.06 18.61 26.98 6.67 38.91 15.08 47.32 27.01 35.39 38.93 47.31 47.32 38.91"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="decline"><polygon id="decline-2" data-name="decline" class="cls-1" points="47.32 38.91 35.4 26.99 47.32 15.07 38.93 6.67 27 18.59 15.07 6.67 6.68 15.06 18.61 26.98 6.67 38.91 15.08 47.32 27.01 35.39 38.93 47.31 47.32 38.91"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/door-enter.svg b/public/assets/images/icons/black/door-enter.svg
index a5498cd7a3b959365bec096308b5b2af22cacb7d..5b4253327bb1e071b8a22ace06ce0cd74a985d89 100644
--- a/public/assets/images/icons/black/door-enter.svg
+++ b/public/assets/images/icons/black/door-enter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="door-enter"><path class="cls-1" d="M22,3V45h3V6H37L29,8V51l20-6V3Zm10,7.34,14-3.5V42.74l-14,4.2Z"/><polygon class="cls-1" points="5 13 5 20.09 11.91 27 5 33.91 5 41 19 27 5 13"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="door-enter"><path class="cls-1" d="M22,3V45h3V6H37L29,8V51l20-6V3Zm10,7.34,14-3.5V42.74l-14,4.2Z"/><polygon class="cls-1" points="5 13 5 20.09 11.91 27 5 33.91 5 41 19 27 5 13"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/door-leave.svg b/public/assets/images/icons/black/door-leave.svg
index ac4d42d0ef987a4b0be3d2a5270c6552bf819b70..e91eea532b7769e534bf7c95d4c6db04ca60697b 100644
--- a/public/assets/images/icons/black/door-leave.svg
+++ b/public/assets/images/icons/black/door-leave.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="door-leave"><path class="cls-1" d="M5,45l20,6V8L17,6H29V45h3V3H5Zm3-3V6.81l14,3.5V46.94L8,42.74Z"/><polygon class="cls-1" points="35 13 35 20.09 41.91 27 35 33.91 35 41 49 27 35 13"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="door-leave"><path class="cls-1" d="M5,45l20,6V8L17,6H29V45h3V3H5Zm3-3V6.81l14,3.5V46.94L8,42.74Z"/><polygon class="cls-1" points="35 13 35 20.09 41.91 27 35 33.91 35 41 49 27 35 13"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/download.svg b/public/assets/images/icons/black/download.svg
index 5b56bc8dd305cf06c8fa33b5ad6784ee0a56f6e5..af64f6213e6c8ad39f32511526c9745eb3e4eb8c 100644
--- a/public/assets/images/icons/black/download.svg
+++ b/public/assets/images/icons/black/download.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/download2.svg b/public/assets/images/icons/black/download2.svg
index 5b56bc8dd305cf06c8fa33b5ad6784ee0a56f6e5..af64f6213e6c8ad39f32511526c9745eb3e4eb8c 100644
--- a/public/assets/images/icons/black/download2.svg
+++ b/public/assets/images/icons/black/download2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/edit-small.svg b/public/assets/images/icons/black/edit-small.svg
index 39117c113e8ede0ab3c3d99e3fa6acdf882d098b..fddea88c8868168a1e8e8e2492aab7beedca54cf 100644
--- a/public/assets/images/icons/black/edit-small.svg
+++ b/public/assets/images/icons/black/edit-small.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/edit.svg b/public/assets/images/icons/black/edit.svg
index 39117c113e8ede0ab3c3d99e3fa6acdf882d098b..fddea88c8868168a1e8e8e2492aab7beedca54cf 100644
--- a/public/assets/images/icons/black/edit.svg
+++ b/public/assets/images/icons/black/edit.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/exclaim-circle-full.svg b/public/assets/images/icons/black/exclaim-circle-full.svg
index 878b6e6f641cd74633f433e880879f247af3a5e6..fd7ce00dc150abcfa73f2444dc643452f41b1635 100644
--- a/public/assets/images/icons/black/exclaim-circle-full.svg
+++ b/public/assets/images/icons/black/exclaim-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/exclaim-circle.svg b/public/assets/images/icons/black/exclaim-circle.svg
index 878b6e6f641cd74633f433e880879f247af3a5e6..fd7ce00dc150abcfa73f2444dc643452f41b1635 100644
--- a/public/assets/images/icons/black/exclaim-circle.svg
+++ b/public/assets/images/icons/black/exclaim-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/export.svg b/public/assets/images/icons/black/export.svg
index 71b341e018b3659d7ded6c69f215b627dd168f84..02ba5a240060e804c2be169e8fea7715fb92f794 100644
--- a/public/assets/images/icons/black/export.svg
+++ b/public/assets/images/icons/black/export.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-archive.svg b/public/assets/images/icons/black/file-archive.svg
index 1c1fb24d5bd5e6f388ed4301c4f838ed4db10f2c..2e93424f82de5d34bb82a159110bb21195f2f09f 100644
--- a/public/assets/images/icons/black/file-archive.svg
+++ b/public/assets/images/icons/black/file-archive.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><rect class="a" x="27" y="14.97" width="3" height="3"/><rect class="a" x="27" y="20.97" width="3" height="3"/><rect class="a" x="24" y="23.97" width="3" height="3"/><rect class="a" x="27" y="26.97" width="3" height="3"/><rect class="a" x="27" y="32.97" width="3" height="3"/><rect class="a" x="24" y="29.97" width="3" height="3"/><rect class="a" x="24" y="35.97" width="3" height="3"/><rect class="a" x="27" y="38.97" width="3" height="3"/><rect class="a" x="24" y="41.97" width="3" height="3"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm16.45,8.13A1.44,1.44,0,0,1,24,9.65,1.42,1.42,0,0,1,25.24,9h.2a1.42,1.42,0,0,1,.51.18A1.45,1.45,0,0,1,26.45,11.13ZM35,46.71V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-2,2.81V45H27v2.94H13.09V6.1H23.93v2a2.65,2.65,0,0,0-.69.56h0l-3.5,4h0a3.81,3.81,0,0,0-.37.5,3.56,3.56,0,0,0,1.23,4.88,3.49,3.49,0,0,0,3.4.07V21h3V18H24.4a3.55,3.55,0,0,0,1.08-1.1,3.67,3.67,0,0,0,.27-.57h0L26.26,15H27V13c.12-.3.24-.63.4-1H30V6.1H40.91Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><rect class="a" x="27" y="14.97" width="3" height="3"/><rect class="a" x="27" y="20.97" width="3" height="3"/><rect class="a" x="24" y="23.97" width="3" height="3"/><rect class="a" x="27" y="26.97" width="3" height="3"/><rect class="a" x="27" y="32.97" width="3" height="3"/><rect class="a" x="24" y="29.97" width="3" height="3"/><rect class="a" x="24" y="35.97" width="3" height="3"/><rect class="a" x="27" y="38.97" width="3" height="3"/><rect class="a" x="24" y="41.97" width="3" height="3"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm16.45,8.13A1.44,1.44,0,0,1,24,9.65,1.42,1.42,0,0,1,25.24,9h.2a1.42,1.42,0,0,1,.51.18A1.45,1.45,0,0,1,26.45,11.13ZM35,46.71V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-2,2.81V45H27v2.94H13.09V6.1H23.93v2a2.65,2.65,0,0,0-.69.56h0l-3.5,4h0a3.81,3.81,0,0,0-.37.5,3.56,3.56,0,0,0,1.23,4.88,3.49,3.49,0,0,0,3.4.07V21h3V18H24.4a3.55,3.55,0,0,0,1.08-1.1,3.67,3.67,0,0,0,.27-.57h0L26.26,15H27V13c.12-.3.24-.63.4-1H30V6.1H40.91Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-audio.svg b/public/assets/images/icons/black/file-audio.svg
index e2c163334a165c53a4cd0f60aef38e022fadb028..50001ed6f88ff9522dd4ae179a758ef65461851d 100644
--- a/public/assets/images/icons/black/file-audio.svg
+++ b/public/assets/images/icons/black/file-audio.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="19.14 17.91 16 17.91 16 24.19 19.14 24.19 23.86 27.34 25.43 27.34 25.43 14.76 23.86 14.76 19.14 17.91"/><path class="a" d="M29.73,13.68l-2.06,2.06a7.4,7.4,0,0,1,0,10.46l2.06,2.06A10.3,10.3,0,0,0,29.73,13.68Z"/><path class="a" d="M33.44,10,31.38,12a12.63,12.63,0,0,1,0,17.88L33.44,32A15.55,15.55,0,0,0,33.44,10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="19.14 17.91 16 17.91 16 24.19 19.14 24.19 23.86 27.34 25.43 27.34 25.43 14.76 23.86 14.76 19.14 17.91"/><path class="a" d="M29.73,13.68l-2.06,2.06a7.4,7.4,0,0,1,0,10.46l2.06,2.06A10.3,10.3,0,0,0,29.73,13.68Z"/><path class="a" d="M33.44,10,31.38,12a12.63,12.63,0,0,1,0,17.88L33.44,32A15.55,15.55,0,0,0,33.44,10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-audio2.svg b/public/assets/images/icons/black/file-audio2.svg
index dab505c473478a5da877e832234b800649fecfe3..ab6de203ab415f9c2fd40f8b1d2aa77ca56b8fd8 100644
--- a/public/assets/images/icons/black/file-audio2.svg
+++ b/public/assets/images/icons/black/file-audio2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M21.75,34.72A5.25,5.25,0,0,0,27,29.47V17.22s.77-1.74,3.33.64c3.29,3.06,7.17.56,7.17.56s-4.77-1.15-5.75-4.26A5.25,5.25,0,0,0,27,10.22H23.5V24.54a5.32,5.32,0,0,0-1.75-.32,5.25,5.25,0,0,0,0,10.5Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M21.75,34.72A5.25,5.25,0,0,0,27,29.47V17.22s.77-1.74,3.33.64c3.29,3.06,7.17.56,7.17.56s-4.77-1.15-5.75-4.26A5.25,5.25,0,0,0,27,10.22H23.5V24.54a5.32,5.32,0,0,0-1.75-.32,5.25,5.25,0,0,0,0,10.5Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-big.svg b/public/assets/images/icons/black/file-big.svg
index bd03e37785ad5118a5b2d1cc56f4769d5edc3923..ada4ef08be8fc253e5ce9af4d1376ee40db182ca 100644
--- a/public/assets/images/icons/black/file-big.svg
+++ b/public/assets/images/icons/black/file-big.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-excel.svg b/public/assets/images/icons/black/file-excel.svg
index 414eae658797934ec9615000504fea8f16a1af81..3a7a1ac355a33c3903d4c3c9a9bd465ce3ce5d57 100644
--- a/public/assets/images/icons/black/file-excel.svg
+++ b/public/assets/images/icons/black/file-excel.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M31.41,32,27,24.31,22.6,32H17.5l7.08-11.28L18,10H23l4,7.11L31,10h5L29.39,20.69,36.5,32Z"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm3.09,3.1H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.71V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M31.41,32,27,24.31,22.6,32H17.5l7.08-11.28L18,10H23l4,7.11L31,10h5L29.39,20.69,36.5,32Z"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm3.09,3.1H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.71V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-generic.svg b/public/assets/images/icons/black/file-generic.svg
index bd03e37785ad5118a5b2d1cc56f4769d5edc3923..ada4ef08be8fc253e5ce9af4d1376ee40db182ca 100644
--- a/public/assets/images/icons/black/file-generic.svg
+++ b/public/assets/images/icons/black/file-generic.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-office.svg b/public/assets/images/icons/black/file-office.svg
index 15c25088bfaa2161932e4e7b3cc426488af9f4e8..519fe0799e7a9b84e54b9a3576e8a218a956c5a2 100644
--- a/public/assets/images/icons/black/file-office.svg
+++ b/public/assets/images/icons/black/file-office.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM35,46.68V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09V6.06H40.91Z"/><path class="a" d="M24.56,23H16v3h6.77l-.85,1.41L22,34l6-3.19L36,17.53l.88-1.48.59-1a3.34,3.34,0,0,0-1.29-4.64,3.61,3.61,0,0,0-4.25.54H16v3H30l-.1.16L28.16,17H16v3H26.36ZM35.27,11.9a1.66,1.66,0,0,1,.65,2.32l-.59,1-3.06-1.7.59-1A1.8,1.8,0,0,1,35.27,11.9ZM31.39,15l3.06,1.7-7.7,12.84-1.11.59L23.7,29v-1.2Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM35,46.68V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09V6.06H40.91Z"/><path class="a" d="M24.56,23H16v3h6.77l-.85,1.41L22,34l6-3.19L36,17.53l.88-1.48.59-1a3.34,3.34,0,0,0-1.29-4.64,3.61,3.61,0,0,0-4.25.54H16v3H30l-.1.16L28.16,17H16v3H26.36ZM35.27,11.9a1.66,1.66,0,0,1,.65,2.32l-.59,1-3.06-1.7.59-1A1.8,1.8,0,0,1,35.27,11.9ZM31.39,15l3.06,1.7-7.7,12.84-1.11.59L23.7,29v-1.2Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-pdf.svg b/public/assets/images/icons/black/file-pdf.svg
index 3e0ea78d2fa4c100110bdcca0b6e2474fcbc2a46..f14b9ecbb79b53e264cc421ca1cfe39b97210162 100644
--- a/public/assets/images/icons/black/file-pdf.svg
+++ b/public/assets/images/icons/black/file-pdf.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a,.b{fill:#000000;}.b{fill-rule:evenodd;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="b" d="M32.7,24.13c2.19,1.74,4,1,3.71.69C35.63,23.8,34.08,23.8,32.7,24.13Zm2.85-1a8.49,8.49,0,0,0-5,.09A7.88,7.88,0,0,1,26,18c-1.83-5.82,0-7.69.12-4.06l.37,2.47s1.27-3.08.45-5.33c-.71-2-2.77-1.66-2.89,2a20.45,20.45,0,0,0,.64,5.46,53.31,53.31,0,0,1-4.72,10c-2.74,4.27-2.91,2.83-2.24,1.41.79-1.7,2.12-2.58,2.57-3.29,0,0-2.08.16-3.69,2.93-1,1.76-1.14,6.11,3.21,1.39a21,21,0,0,0,2.65-4.08A45.49,45.49,0,0,1,31,24.56a11.5,11.5,0,0,0,3.74,1.68C37.4,26.85,40.1,24.69,35.55,23.15ZM23.18,25l2.2-5c1.46,3.1,3.52,3.73,3.52,3.73C28,23.78,23.18,25,23.18,25Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a,.b{fill:#000000;}.b{fill-rule:evenodd;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="b" d="M32.7,24.13c2.19,1.74,4,1,3.71.69C35.63,23.8,34.08,23.8,32.7,24.13Zm2.85-1a8.49,8.49,0,0,0-5,.09A7.88,7.88,0,0,1,26,18c-1.83-5.82,0-7.69.12-4.06l.37,2.47s1.27-3.08.45-5.33c-.71-2-2.77-1.66-2.89,2a20.45,20.45,0,0,0,.64,5.46,53.31,53.31,0,0,1-4.72,10c-2.74,4.27-2.91,2.83-2.24,1.41.79-1.7,2.12-2.58,2.57-3.29,0,0-2.08.16-3.69,2.93-1,1.76-1.14,6.11,3.21,1.39a21,21,0,0,0,2.65-4.08A45.49,45.49,0,0,1,31,24.56a11.5,11.5,0,0,0,3.74,1.68C37.4,26.85,40.1,24.69,35.55,23.15ZM23.18,25l2.2-5c1.46,3.1,3.52,3.73,3.52,3.73C28,23.78,23.18,25,23.18,25Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-pic.svg b/public/assets/images/icons/black/file-pic.svg
index 179a3e48fb3db0be9fac55cab3479b1b4b7cafca..9f0ef1a6a0ac7d05d5b3ddec109dc776733cd0ce 100644
--- a/public/assets/images/icons/black/file-pic.svg
+++ b/public/assets/images/icons/black/file-pic.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M31,16V14a2,2,0,0,0-2-2H25a2,2,0,0,0-2,2v2H18a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H36a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Zm-4,11.8a5,5,0,1,1,5-5A5,5,0,0,1,27,27.77ZM36,22H33V19h3Z"/><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="18" y="13.97" width="4" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M31,16V14a2,2,0,0,0-2-2H25a2,2,0,0,0-2,2v2H18a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H36a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Zm-4,11.8a5,5,0,1,1,5-5A5,5,0,0,1,27,27.77ZM36,22H33V19h3Z"/><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="18" y="13.97" width="4" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-pic2.svg b/public/assets/images/icons/black/file-pic2.svg
index 62ffeeef98f835090c3e02caead12a9eef6a0ce1..d057d95005e13aa6b3515ed8e5d6cf3720e0a4fb 100644
--- a/public/assets/images/icons/black/file-pic2.svg
+++ b/public/assets/images/icons/black/file-pic2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M38.91,24.39,34.5,21.5l-5.81,4.92L19.47,17l-4.38,5.3L12,26V32H42V26.42Z"/><circle class="a" cx="30" cy="13.97" r="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M38.91,24.39,34.5,21.5l-5.81,4.92L19.47,17l-4.38,5.3L12,26V32H42V26.42Z"/><circle class="a" cx="30" cy="13.97" r="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-ppt.svg b/public/assets/images/icons/black/file-ppt.svg
index 1e5ce43da7cd2259e7b3fc3ca49328ca3066d6eb..1a1a8ae7ba8855eef7729cf4332ea1b032014a04 100644
--- a/public/assets/images/icons/black/file-ppt.svg
+++ b/public/assets/images/icons/black/file-ppt.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M27.64,23.69H23.35V32H19V10h8.64c4.6,0,7.36,3.12,7.36,6.86S32.24,23.69,27.64,23.69Zm-.22-9.89H23.35v6h4.07a2.93,2.93,0,0,0,3.23-3A3,3,0,0,0,27.42,13.8Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M27.64,23.69H23.35V32H19V10h8.64c4.6,0,7.36,3.12,7.36,6.86S32.24,23.69,27.64,23.69Zm-.22-9.89H23.35v6h4.07a2.93,2.93,0,0,0,3.23-3A3,3,0,0,0,27.42,13.8Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-presentation.svg b/public/assets/images/icons/black/file-presentation.svg
index fcc3853ce3b741d91e7395ae425fbc6bf0a087f0..cf35eed5e56f932aa853d85d6277590f98250af9 100644
--- a/public/assets/images/icons/black/file-presentation.svg
+++ b/public/assets/images/icons/black/file-presentation.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM40.91,6.06V26H29.82a3.07,3.07,0,0,0-2.92-2H19.1a3.07,3.07,0,0,0-2.92,2H13.09V6.06ZM35,46.68V42h4.64ZM37.91,39H32v5.91a3,3,0,0,1-3,3H13.09V29H16v4H30V29H40.91v7A3,3,0,0,1,37.91,39Z"/><path class="a" d="M23,22a4.5,4.5,0,1,0-4.5-4.5A4.49,4.49,0,0,0,23,22Z"/><rect class="a" x="31" y="8.97" width="7" height="7"/><rect class="a" x="31" y="17.97" width="7" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM40.91,6.06V26H29.82a3.07,3.07,0,0,0-2.92-2H19.1a3.07,3.07,0,0,0-2.92,2H13.09V6.06ZM35,46.68V42h4.64ZM37.91,39H32v5.91a3,3,0,0,1-3,3H13.09V29H16v4H30V29H40.91v7A3,3,0,0,1,37.91,39Z"/><path class="a" d="M23,22a4.5,4.5,0,1,0-4.5-4.5A4.49,4.49,0,0,0,23,22Z"/><rect class="a" x="31" y="8.97" width="7" height="7"/><rect class="a" x="31" y="17.97" width="7" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-small.svg b/public/assets/images/icons/black/file-small.svg
index bd03e37785ad5118a5b2d1cc56f4769d5edc3923..ada4ef08be8fc253e5ce9af4d1376ee40db182ca 100644
--- a/public/assets/images/icons/black/file-small.svg
+++ b/public/assets/images/icons/black/file-small.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-sound.svg b/public/assets/images/icons/black/file-sound.svg
index 2621db4b9b1683332e570474b673469aba52227e..efbf8a98f25a3d37396a7f0f9ed92176d25cf064 100644
--- a/public/assets/images/icons/black/file-sound.svg
+++ b/public/assets/images/icons/black/file-sound.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.57 17.46 18 17.46 18 22.61 20.57 22.61 24.43 25.18 25.71 25.18 25.71 14.89 24.43 14.89 20.57 17.46"/><path class="a" d="M29.24,14l-1.69,1.68a6.06,6.06,0,0,1,0,8.56l1.69,1.68A8.43,8.43,0,0,0,29.24,14Z"/><path class="a" d="M32.27,11l-1.69,1.69a10.31,10.31,0,0,1,0,14.62L32.27,29A12.73,12.73,0,0,0,32.27,11Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.57 17.46 18 17.46 18 22.61 20.57 22.61 24.43 25.18 25.71 25.18 25.71 14.89 24.43 14.89 20.57 17.46"/><path class="a" d="M29.24,14l-1.69,1.68a6.06,6.06,0,0,1,0,8.56l1.69,1.68A8.43,8.43,0,0,0,29.24,14Z"/><path class="a" d="M32.27,11l-1.69,1.69a10.31,10.31,0,0,1,0,14.62L32.27,29A12.73,12.73,0,0,0,32.27,11Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-spreadsheet.svg b/public/assets/images/icons/black/file-spreadsheet.svg
index af1c0bb5aa811f15b7141855122e3707180f5e39..ff5b79024a8e53c5ba0f4b760fea90d161f7e6ad 100644
--- a/public/assets/images/icons/black/file-spreadsheet.svg
+++ b/public/assets/images/icons/black/file-spreadsheet.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="13.97" width="5" height="11"/><rect class="a" x="24.5" y="10.97" width="5" height="14"/><rect class="a" x="33" y="16.97" width="5" height="8"/><rect class="a" x="16" y="26.97" width="22" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="13.97" width="5" height="11"/><rect class="a" x="24.5" y="10.97" width="5" height="14"/><rect class="a" x="33" y="16.97" width="5" height="8"/><rect class="a" x="16" y="26.97" width="22" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-text.svg b/public/assets/images/icons/black/file-text.svg
index 32a9d6eaade8d211a3f7ac7290cb02f05460cc06..d3d63c609e43bc79cd4aa97351f75b50351ffa03 100644
--- a/public/assets/images/icons/black/file-text.svg
+++ b/public/assets/images/icons/black/file-text.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="10.97" width="9" height="9"/><rect class="a" x="28" y="10.97" width="10" height="3"/><rect class="a" x="28" y="16.97" width="10" height="3"/><rect class="a" x="16" y="22.97" width="22" height="3"/><rect class="a" x="16" y="28.97" width="22" height="3"/><rect class="a" x="16" y="34.97" width="13" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="10.97" width="9" height="9"/><rect class="a" x="28" y="10.97" width="10" height="3"/><rect class="a" x="28" y="16.97" width="10" height="3"/><rect class="a" x="16" y="22.97" width="22" height="3"/><rect class="a" x="16" y="28.97" width="22" height="3"/><rect class="a" x="16" y="34.97" width="13" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-video.svg b/public/assets/images/icons/black/file-video.svg
index dca473fa6451e51dc2ac8103bd0bc6835ffcbab8..97ad0093c446c915f4110cd33447a615e9f5a2eb 100644
--- a/public/assets/images/icons/black/file-video.svg
+++ b/public/assets/images/icons/black/file-video.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M36.62,15.42,32.5,18.17V15.73A1.69,1.69,0,0,0,30.82,14H17.68A1.69,1.69,0,0,0,16,15.73V26.11a1.68,1.68,0,0,0,1.68,1.68H30.82a1.68,1.68,0,0,0,1.68-1.68V23.67l4.12,2.75H38v-11ZM31,26.11a.14.14,0,0,1-.14.14H17.68a.14.14,0,0,1-.14-.14V15.73a.15.15,0,0,1,.14-.15H30.82a.15.15,0,0,1,.14.15Z"/><polygon class="a" points="21.5 25.04 27.69 20.92 21.5 16.79 21.5 25.04"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M36.62,15.42,32.5,18.17V15.73A1.69,1.69,0,0,0,30.82,14H17.68A1.69,1.69,0,0,0,16,15.73V26.11a1.68,1.68,0,0,0,1.68,1.68H30.82a1.68,1.68,0,0,0,1.68-1.68V23.67l4.12,2.75H38v-11ZM31,26.11a.14.14,0,0,1-.14.14H17.68a.14.14,0,0,1-.14-.14V15.73a.15.15,0,0,1,.14-.15H30.82a.15.15,0,0,1,.14.15Z"/><polygon class="a" points="21.5 25.04 27.69 20.92 21.5 16.79 21.5 25.04"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-video2.svg b/public/assets/images/icons/black/file-video2.svg
index 2a31bd38a978a8947d61c44c8fb517f714457a59..31f2b2b8e868b92e894096802ee747dbbd832c5c 100644
--- a/public/assets/images/icons/black/file-video2.svg
+++ b/public/assets/images/icons/black/file-video2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.12 30.47 35.88 19.97 20.13 9.47 20.12 30.47"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.12 30.47 35.88 19.97 20.13 9.47 20.12 30.47"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file-word.svg b/public/assets/images/icons/black/file-word.svg
index c5072531046e7f1464a5f47e0ce992edd739ca43..8ef97a7332a4774d10329061df96df09572398e5 100644
--- a/public/assets/images/icons/black/file-word.svg
+++ b/public/assets/images/icons/black/file-word.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M33.2,30H30.28L27,18.44,23.69,30H20.78L16,11h3.65l2.76,12,3.27-12h2.61l3.27,12,2.79-12H38Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M33.2,30H30.28L27,18.44,23.69,30H20.78L16,11h3.65l2.76,12,3.27-12h2.61l3.27,12,2.79-12H38Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file.svg b/public/assets/images/icons/black/file.svg
index bd03e37785ad5118a5b2d1cc56f4769d5edc3923..ada4ef08be8fc253e5ce9af4d1376ee40db182ca 100644
--- a/public/assets/images/icons/black/file.svg
+++ b/public/assets/images/icons/black/file.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/file2.svg b/public/assets/images/icons/black/file2.svg
index bd03e37785ad5118a5b2d1cc56f4769d5edc3923..ada4ef08be8fc253e5ce9af4d1376ee40db182ca 100644
--- a/public/assets/images/icons/black/file2.svg
+++ b/public/assets/images/icons/black/file2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/files.svg b/public/assets/images/icons/black/files.svg
index 600b7bc88ffb3441805c1a1b4748be306873cb75..a7d2426fa9f0818fbeabc41acfa08225d7781a95 100644
--- a/public/assets/images/icons/black/files.svg
+++ b/public/assets/images/icons/black/files.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="a" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="a" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/files2.svg b/public/assets/images/icons/black/files2.svg
index 1586064f672bd8dfcdfaddccc7737d35b457fc07..b20587ca9029227c5ddedb7806d747a63a23be47 100644
--- a/public/assets/images/icons/black/files2.svg
+++ b/public/assets/images/icons/black/files2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="docs"><g id="files"><path class="cls-1" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="cls-1" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="docs"><g id="files"><path class="cls-1" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="cls-1" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/filter.svg b/public/assets/images/icons/black/filter.svg
index 5eb7c972f267d9ce3f0255706e2284d9a6e65327..874238dd38f8bdfb9cbb6c90b03e8100e3ec98a0 100644
--- a/public/assets/images/icons/black/filter.svg
+++ b/public/assets/images/icons/black/filter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><path id="filter" d="M21.1,49.89v-20a1.91,1.91,0,0,0-.41-1.19L3,6.22H51L33.54,28.37a3.09,3.09,0,0,0-.65,1.89V43.39ZM9.33,9.29,23.1,26.78a5,5,0,0,1,1.07,3.09V44.69l5.64-3.12V30.26a6.1,6.1,0,0,1,1.32-3.78L44.66,9.29Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><path id="filter" d="M21.1,49.89v-20a1.91,1.91,0,0,0-.41-1.19L3,6.22H51L33.54,28.37a3.09,3.09,0,0,0-.65,1.89V43.39ZM9.33,9.29,23.1,26.78a5,5,0,0,1,1.07,3.09V44.69l5.64-3.12V30.26a6.1,6.1,0,0,1,1.32-3.78L44.66,9.29Z"/></svg>
diff --git a/public/assets/images/icons/black/filter2.svg b/public/assets/images/icons/black/filter2.svg
index a99e2fb0f9ea1bea41b11f59d5675ccb3615376a..79232f89c095ba8d78e40c1cd2f7b910a3466053 100644
--- a/public/assets/images/icons/black/filter2.svg
+++ b/public/assets/images/icons/black/filter2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="filter2"><polygon points="16.97 30.39 37.02 30.39 42.05 21.7 11.94 21.7 16.97 30.39"/><polygon points="3.01 6.22 8.32 15.41 45.67 15.41 50.98 6.22 3.01 6.22"/><polygon points="27 47.77 33.4 36.68 20.59 36.68 27 47.77"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="filter2"><polygon points="16.97 30.39 37.02 30.39 42.05 21.7 11.94 21.7 16.97 30.39"/><polygon points="3.01 6.22 8.32 15.41 45.67 15.41 50.98 6.22 3.01 6.22"/><polygon points="27 47.77 33.4 36.68 20.59 36.68 27 47.77"/></g></svg>
diff --git a/public/assets/images/icons/black/fishbowl.svg b/public/assets/images/icons/black/fishbowl.svg
index cbe87c953d090c52cca88b1ffdefc94bb567c74a..6e489f9f13ffe0c9cef058bc92755519c1cd723b 100644
--- a/public/assets/images/icons/black/fishbowl.svg
+++ b/public/assets/images/icons/black/fishbowl.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="fishbowl"><path class="cls-1" d="M51,27a23.69,23.69,0,0,0-4.25-13.58,1.61,1.61,0,0,0-2.23-.41,1.6,1.6,0,0,0-.41,2.22A20.47,20.47,0,0,1,47.8,27a21.51,21.51,0,0,1-.37,3.87,15,15,0,0,1-12,6.05A15.3,15.3,0,0,1,20.27,21.53c0-.07,0-.15,0-.22A25.31,25.31,0,0,0,7,32.57,20.19,20.19,0,0,1,6.2,27,20.51,20.51,0,0,1,10,15.17,1.59,1.59,0,0,0,9.57,13a1.62,1.62,0,0,0-2.23.39,23.77,23.77,0,0,0,6,33.29,3.21,3.21,0,0,0-.19.92A3.43,3.43,0,0,0,16.54,51H37.37a3.43,3.43,0,0,0,3.42-3.42,3.14,3.14,0,0,0-.18-.86A23.83,23.83,0,0,0,51,27Z"/><path class="cls-1" d="M26.88,16.28A14,14,0,0,0,34,12.43c4.47-4.9,3.31-9.53,3.31-9.53s-4.75-.71-9.22,4.19A13.88,13.88,0,0,0,25,14.54l-5.13,1.63,5.91,5.34Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="fishbowl"><path class="cls-1" d="M51,27a23.69,23.69,0,0,0-4.25-13.58,1.61,1.61,0,0,0-2.23-.41,1.6,1.6,0,0,0-.41,2.22A20.47,20.47,0,0,1,47.8,27a21.51,21.51,0,0,1-.37,3.87,15,15,0,0,1-12,6.05A15.3,15.3,0,0,1,20.27,21.53c0-.07,0-.15,0-.22A25.31,25.31,0,0,0,7,32.57,20.19,20.19,0,0,1,6.2,27,20.51,20.51,0,0,1,10,15.17,1.59,1.59,0,0,0,9.57,13a1.62,1.62,0,0,0-2.23.39,23.77,23.77,0,0,0,6,33.29,3.21,3.21,0,0,0-.19.92A3.43,3.43,0,0,0,16.54,51H37.37a3.43,3.43,0,0,0,3.42-3.42,3.14,3.14,0,0,0-.18-.86A23.83,23.83,0,0,0,51,27Z"/><path class="cls-1" d="M26.88,16.28A14,14,0,0,0,34,12.43c4.47-4.9,3.31-9.53,3.31-9.53s-4.75-.71-9.22,4.19A13.88,13.88,0,0,0,25,14.54l-5.13,1.63,5.91,5.34Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-broken.svg b/public/assets/images/icons/black/folder-broken.svg
index 40de38c943f07b80b3a9e8eb89955a7f5038fb22..7e154345d19a8a935e6978106f08e2f0029cab34 100644
--- a/public/assets/images/icons/black/folder-broken.svg
+++ b/public/assets/images/icons/black/folder-broken.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-broken2.svg b/public/assets/images/icons/black/folder-broken2.svg
index 40de38c943f07b80b3a9e8eb89955a7f5038fb22..7e154345d19a8a935e6978106f08e2f0029cab34 100644
--- a/public/assets/images/icons/black/folder-broken2.svg
+++ b/public/assets/images/icons/black/folder-broken2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-date-empty.svg b/public/assets/images/icons/black/folder-date-empty.svg
index ecfad4137073229b2c1d3b80d13a57fcdfd35635..0787d1f1139030c10fd8a2dd27cac384ba421dff 100644
--- a/public/assets/images/icons/black/folder-date-empty.svg
+++ b/public/assets/images/icons/black/folder-date-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-date-empty2.svg b/public/assets/images/icons/black/folder-date-empty2.svg
index ecfad4137073229b2c1d3b80d13a57fcdfd35635..0787d1f1139030c10fd8a2dd27cac384ba421dff 100644
--- a/public/assets/images/icons/black/folder-date-empty2.svg
+++ b/public/assets/images/icons/black/folder-date-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-date-full.svg b/public/assets/images/icons/black/folder-date-full.svg
index e1594755ed43cc067a5f6ab102ac319484635ed6..f84c71191899eff4bdf43194f67c1fe038395c79 100644
--- a/public/assets/images/icons/black/folder-date-full.svg
+++ b/public/assets/images/icons/black/folder-date-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-date-full2.svg b/public/assets/images/icons/black/folder-date-full2.svg
index e1594755ed43cc067a5f6ab102ac319484635ed6..f84c71191899eff4bdf43194f67c1fe038395c79 100644
--- a/public/assets/images/icons/black/folder-date-full2.svg
+++ b/public/assets/images/icons/black/folder-date-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-edit-empty.svg b/public/assets/images/icons/black/folder-edit-empty.svg
index cc19cebcb04d578ee16aefaa1c1afc98cab8b41c..e223305de31746ba4a9ff97eeddddae9e0edf399 100644
--- a/public/assets/images/icons/black/folder-edit-empty.svg
+++ b/public/assets/images/icons/black/folder-edit-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-edit-empty2.svg b/public/assets/images/icons/black/folder-edit-empty2.svg
index cc19cebcb04d578ee16aefaa1c1afc98cab8b41c..e223305de31746ba4a9ff97eeddddae9e0edf399 100644
--- a/public/assets/images/icons/black/folder-edit-empty2.svg
+++ b/public/assets/images/icons/black/folder-edit-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-edit-full.svg b/public/assets/images/icons/black/folder-edit-full.svg
index 1a65115f1e205d9116459ae410c66da96b4fbc38..fa18b20543c63958970a0fb176eb0a59ed851e3b 100644
--- a/public/assets/images/icons/black/folder-edit-full.svg
+++ b/public/assets/images/icons/black/folder-edit-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-edit-full2.svg b/public/assets/images/icons/black/folder-edit-full2.svg
index 1a65115f1e205d9116459ae410c66da96b4fbc38..fa18b20543c63958970a0fb176eb0a59ed851e3b 100644
--- a/public/assets/images/icons/black/folder-edit-full2.svg
+++ b/public/assets/images/icons/black/folder-edit-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-empty.svg b/public/assets/images/icons/black/folder-empty.svg
index 97cb0ddd412175c2d4d47afa24276ef266afb9b6..f253456c96ccb9b37d92a1bb131b90af81c607c8 100644
--- a/public/assets/images/icons/black/folder-empty.svg
+++ b/public/assets/images/icons/black/folder-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-empty2.svg b/public/assets/images/icons/black/folder-empty2.svg
index 97cb0ddd412175c2d4d47afa24276ef266afb9b6..f253456c96ccb9b37d92a1bb131b90af81c607c8 100644
--- a/public/assets/images/icons/black/folder-empty2.svg
+++ b/public/assets/images/icons/black/folder-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-full.svg b/public/assets/images/icons/black/folder-full.svg
index 9287f23aac14571c616447c8e8b96af552484c4d..072c444d484c04cca608699d65644fd3199f8d34 100644
--- a/public/assets/images/icons/black/folder-full.svg
+++ b/public/assets/images/icons/black/folder-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-full2.svg b/public/assets/images/icons/black/folder-full2.svg
index 9287f23aac14571c616447c8e8b96af552484c4d..072c444d484c04cca608699d65644fd3199f8d34 100644
--- a/public/assets/images/icons/black/folder-full2.svg
+++ b/public/assets/images/icons/black/folder-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-group-empty.svg b/public/assets/images/icons/black/folder-group-empty.svg
index 5115e5d95e845e3a661a3b5483b649682139f2ad..61493dedb7e584054026d5751eb22a14ba048833 100644
--- a/public/assets/images/icons/black/folder-group-empty.svg
+++ b/public/assets/images/icons/black/folder-group-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-group-empty2.svg b/public/assets/images/icons/black/folder-group-empty2.svg
index 5115e5d95e845e3a661a3b5483b649682139f2ad..61493dedb7e584054026d5751eb22a14ba048833 100644
--- a/public/assets/images/icons/black/folder-group-empty2.svg
+++ b/public/assets/images/icons/black/folder-group-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-group-full.svg b/public/assets/images/icons/black/folder-group-full.svg
index e00f8a868e069be86e80d8edd32f9a1ba444ccdc..29fdd06a5499c6ba012c28df354f2b83127e5dae 100644
--- a/public/assets/images/icons/black/folder-group-full.svg
+++ b/public/assets/images/icons/black/folder-group-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-group-full2.svg b/public/assets/images/icons/black/folder-group-full2.svg
index e00f8a868e069be86e80d8edd32f9a1ba444ccdc..29fdd06a5499c6ba012c28df354f2b83127e5dae 100644
--- a/public/assets/images/icons/black/folder-group-full2.svg
+++ b/public/assets/images/icons/black/folder-group-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-home-empty.svg b/public/assets/images/icons/black/folder-home-empty.svg
index 016dab2be093d61ce5a4f4ce60c55b4a252399e4..2e813cd676f0978e2587592a3fae742406a905bc 100644
--- a/public/assets/images/icons/black/folder-home-empty.svg
+++ b/public/assets/images/icons/black/folder-home-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><polygon class="a" points="26.97 17.47 16 28.45 19.21 28.45 27 20.64 34.8 28.43 38 28.45 26.97 17.47"/><polygon class="a" points="19.67 29.36 19.67 39.47 24.25 39.47 24.25 31.66 29.75 31.66 29.75 39.47 34.33 39.47 34.33 29.36 27 22.02 19.67 29.36"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><polygon class="a" points="26.97 17.47 16 28.45 19.21 28.45 27 20.64 34.8 28.43 38 28.45 26.97 17.47"/><polygon class="a" points="19.67 29.36 19.67 39.47 24.25 39.47 24.25 31.66 29.75 31.66 29.75 39.47 34.33 39.47 34.33 29.36 27 22.02 19.67 29.36"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-home-empty2.svg b/public/assets/images/icons/black/folder-home-empty2.svg
index 9f05b487c3dfa1919ef848e0cecf7820e9ad47a0..b85e76540d74c09b7cbeb530fcf630c1e2cd6f5e 100644
--- a/public/assets/images/icons/black/folder-home-empty2.svg
+++ b/public/assets/images/icons/black/folder-home-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="27 16.97 16 28.28 17.79 28.28 17.79 38.97 23.84 38.97 23.84 30.61 30.16 30.61 30.16 38.97 36.21 38.97 36.21 28.28 38 28.28 27 16.97"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="27 16.97 16 28.28 17.79 28.28 17.79 38.97 23.84 38.97 23.84 30.61 30.16 30.61 30.16 38.97 36.21 38.97 36.21 28.28 38 28.28 27 16.97"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-home-full.svg b/public/assets/images/icons/black/folder-home-full.svg
index 34e2e686a73e707376d8ccd1d77af3e61e03f640..fefa4ae8aadfa16b3912c4d58aa1715d60d108b0 100644
--- a/public/assets/images/icons/black/folder-home-full.svg
+++ b/public/assets/images/icons/black/folder-home-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="23.98 21.97 15 30.95 17.63 30.95 24 24.56 30.38 30.94 33 30.95 23.98 21.97"/><polygon class="a" points="18 31.7 18 39.97 21.75 39.97 21.75 33.58 26.25 33.58 26.25 39.97 30 39.97 30 31.7 24 25.69 18 31.7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="23.98 21.97 15 30.95 17.63 30.95 24 24.56 30.38 30.94 33 30.95 23.98 21.97"/><polygon class="a" points="18 31.7 18 39.97 21.75 39.97 21.75 33.58 26.25 33.58 26.25 39.97 30 39.97 30 31.7 24 25.69 18 31.7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-home-full2.svg b/public/assets/images/icons/black/folder-home-full2.svg
index 92eeb8de77fa2127f61c4505aa74a46e5b3750f5..d0a5086721535290e6355b63bc72598f0bcc1ef0 100644
--- a/public/assets/images/icons/black/folder-home-full2.svg
+++ b/public/assets/images/icons/black/folder-home-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="24 22.06 15.04 31.29 16.5 31.29 16.5 40.01 21.42 40.01 21.42 33.19 26.58 33.19 26.58 40.01 31.51 40.01 31.51 31.29 32.97 31.29 24 22.06"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="24 22.06 15.04 31.29 16.5 31.29 16.5 40.01 21.42 40.01 21.42 33.19 26.58 33.19 26.58 40.01 31.51 40.01 31.51 31.29 32.97 31.29 24 22.06"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-inbox-empty.svg b/public/assets/images/icons/black/folder-inbox-empty.svg
index 3e45d238658b75cb931ff1897190e873d5b2f0d2..7aba2b1296d5c778b33cbd0b5801d9975fb0874c 100644
--- a/public/assets/images/icons/black/folder-inbox-empty.svg
+++ b/public/assets/images/icons/black/folder-inbox-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M12,17.47v3.06L27,30.91,42,20.53V17.47Zm15,9.7-9.59-6.64H36.59Z"/><polygon class="a" points="38.88 36.41 15.13 36.41 15.1 25.12 12 22.97 12 39.47 42 39.47 42 22.97 38.9 25.12 38.88 36.41"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M12,17.47v3.06L27,30.91,42,20.53V17.47Zm15,9.7-9.59-6.64H36.59Z"/><polygon class="a" points="38.88 36.41 15.13 36.41 15.1 25.12 12 22.97 12 39.47 42 39.47 42 22.97 38.9 25.12 38.88 36.41"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-inbox-full.svg b/public/assets/images/icons/black/folder-inbox-full.svg
index 8ac431b92cd9d4ad2327a0ba01ae5b5e34aa0bb4..15ce7ea1f0f9a98feb2911ed0a5bf7db7b164d00 100644
--- a/public/assets/images/icons/black/folder-inbox-full.svg
+++ b/public/assets/images/icons/black/folder-inbox-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M12,22.41v2.5l12,8.5,12-8.5v-2.5Zm12,7.93-7.67-5.43H31.67Z"/><polygon class="a" points="33.5 37.91 14.5 37.91 14.48 28.66 12 26.91 12 40.41 36 40.41 36 26.91 33.52 28.66 33.5 37.91"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M12,22.41v2.5l12,8.5,12-8.5v-2.5Zm12,7.93-7.67-5.43H31.67Z"/><polygon class="a" points="33.5 37.91 14.5 37.91 14.48 28.66 12 26.91 12 40.41 36 40.41 36 26.91 33.52 28.66 33.5 37.91"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-lock-empty.svg b/public/assets/images/icons/black/folder-lock-empty.svg
index da285cf1912dc2679c203d0948ff1c542fc5d4bb..7679742a1082297fbf884e9458a18a116cc179e2 100644
--- a/public/assets/images/icons/black/folder-lock-empty.svg
+++ b/public/assets/images/icons/black/folder-lock-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-lock-empty2.svg b/public/assets/images/icons/black/folder-lock-empty2.svg
index da285cf1912dc2679c203d0948ff1c542fc5d4bb..7679742a1082297fbf884e9458a18a116cc179e2 100644
--- a/public/assets/images/icons/black/folder-lock-empty2.svg
+++ b/public/assets/images/icons/black/folder-lock-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-lock-full.svg b/public/assets/images/icons/black/folder-lock-full.svg
index dd1b9562de157c7025a193f1c3c95a272f552fad..f172c10a5131d7a8d00682740565582d40c79c12 100644
--- a/public/assets/images/icons/black/folder-lock-full.svg
+++ b/public/assets/images/icons/black/folder-lock-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-lock-full2.svg b/public/assets/images/icons/black/folder-lock-full2.svg
index dd1b9562de157c7025a193f1c3c95a272f552fad..f172c10a5131d7a8d00682740565582d40c79c12 100644
--- a/public/assets/images/icons/black/folder-lock-full2.svg
+++ b/public/assets/images/icons/black/folder-lock-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-parent.svg b/public/assets/images/icons/black/folder-parent.svg
index 4f9d31d1d887bae31f6347019e4fa4f46f15b48c..2fa50631baa7a6760fd768493c12e3558e1c5a93 100644
--- a/public/assets/images/icons/black/folder-parent.svg
+++ b/public/assets/images/icons/black/folder-parent.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="38 25 30.91 25 24 31.91 17.09 25 10 25 24 39 38 25"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="38 25 30.91 25 24 31.91 17.09 25 10 25 24 39 38 25"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-plugin-market-empty.svg b/public/assets/images/icons/black/folder-plugin-market-empty.svg
index 76fddd71a2eed02cd911f8900af8c1768926ef83..37da6fb439c9413c31fc3d588af354dda9d54ed9 100644
--- a/public/assets/images/icons/black/folder-plugin-market-empty.svg
+++ b/public/assets/images/icons/black/folder-plugin-market-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M31.46,33.48a.92.92,0,0,0-.45.12,6.34,6.34,0,0,1-3.09.8,6.42,6.42,0,0,1-1.07-12.75,7.82,7.82,0,0,1,1.07-.08,6.2,6.2,0,0,1,1.62.21,1,1,0,0,0,.24,0,.91.91,0,0,0,.9-1L30.21,17H16V39H33l-.59-4.69A.91.91,0,0,0,31.46,33.48ZM17.37,37.59V18.34H29l.25,2a7.37,7.37,0,0,0-1.32-.12,8,8,0,0,0-1.29.11,7.79,7.79,0,0,0,1.29,15.48,7.89,7.89,0,0,0,3.17-.68l.31,2.49Z"/><path class="a" d="M31.58,17l.76,6.1a.91.91,0,0,1-1.47.83A5,5,0,0,0,27.42,23a5,5,0,1,0,4.37,8.24.92.92,0,0,1,1.63.45c.4,3.19.91,7.31.91,7.31H38V17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M31.46,33.48a.92.92,0,0,0-.45.12,6.34,6.34,0,0,1-3.09.8,6.42,6.42,0,0,1-1.07-12.75,7.82,7.82,0,0,1,1.07-.08,6.2,6.2,0,0,1,1.62.21,1,1,0,0,0,.24,0,.91.91,0,0,0,.9-1L30.21,17H16V39H33l-.59-4.69A.91.91,0,0,0,31.46,33.48ZM17.37,37.59V18.34H29l.25,2a7.37,7.37,0,0,0-1.32-.12,8,8,0,0,0-1.29.11,7.79,7.79,0,0,0,1.29,15.48,7.89,7.89,0,0,0,3.17-.68l.31,2.49Z"/><path class="a" d="M31.58,17l.76,6.1a.91.91,0,0,1-1.47.83A5,5,0,0,0,27.42,23a5,5,0,1,0,4.37,8.24.92.92,0,0,1,1.63.45c.4,3.19.91,7.31.91,7.31H38V17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-plugin-market-full.svg b/public/assets/images/icons/black/folder-plugin-market-full.svg
index 420145feda43d110ffe37fdbab92c4dafd198d90..d998a164d7f8e73c1e59f50edbb4102c74765cd6 100644
--- a/public/assets/images/icons/black/folder-plugin-market-full.svg
+++ b/public/assets/images/icons/black/folder-plugin-market-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M27.65,35.48a.74.74,0,0,0-.37.1,5.25,5.25,0,1,1-3.4-9.78,5.1,5.1,0,0,1,.87-.07,5.33,5.33,0,0,1,1.33.17.63.63,0,0,0,.19,0,.74.74,0,0,0,.74-.84L26.63,22H15V40H28.87l-.47-3.84A.75.75,0,0,0,27.65,35.48ZM16.12,38.84V23.09h9.51l.2,1.61a6.47,6.47,0,0,0-1.08-.09,7.42,7.42,0,0,0-1.05.08A6.38,6.38,0,1,0,27.35,36.8l.25,2Z"/><path class="a" d="M27.75,22l.62,5a.75.75,0,0,1-1.2.68,4,4,0,0,0-2.82-.76,4.12,4.12,0,0,0,.4,8.23,4.09,4.09,0,0,0,3.17-1.49.75.75,0,0,1,1.33.37c.33,2.61.75,6,.75,6h3V22Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M27.65,35.48a.74.74,0,0,0-.37.1,5.25,5.25,0,1,1-3.4-9.78,5.1,5.1,0,0,1,.87-.07,5.33,5.33,0,0,1,1.33.17.63.63,0,0,0,.19,0,.74.74,0,0,0,.74-.84L26.63,22H15V40H28.87l-.47-3.84A.75.75,0,0,0,27.65,35.48ZM16.12,38.84V23.09h9.51l.2,1.61a6.47,6.47,0,0,0-1.08-.09,7.42,7.42,0,0,0-1.05.08A6.38,6.38,0,1,0,27.35,36.8l.25,2Z"/><path class="a" d="M27.75,22l.62,5a.75.75,0,0,1-1.2.68,4,4,0,0,0-2.82-.76,4.12,4.12,0,0,0,.4,8.23,4.09,4.09,0,0,0,3.17-1.49.75.75,0,0,1,1.33.37c.33,2.61.75,6,.75,6h3V22Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-public-empty.svg b/public/assets/images/icons/black/folder-public-empty.svg
index 4c9a2d6c991e0331388f6fac424b849571055091..edfead384f6fdd01460831c4590f71b16aead909 100644
--- a/public/assets/images/icons/black/folder-public-empty.svg
+++ b/public/assets/images/icons/black/folder-public-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-public-empty2.svg b/public/assets/images/icons/black/folder-public-empty2.svg
index 4c9a2d6c991e0331388f6fac424b849571055091..edfead384f6fdd01460831c4590f71b16aead909 100644
--- a/public/assets/images/icons/black/folder-public-empty2.svg
+++ b/public/assets/images/icons/black/folder-public-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-public-full.svg b/public/assets/images/icons/black/folder-public-full.svg
index c76a2012ac7b885b7c6532d8ec106d3770547dbf..3e7b19d3c4e266e4b82b4cf97181a8729a6cc8da 100644
--- a/public/assets/images/icons/black/folder-public-full.svg
+++ b/public/assets/images/icons/black/folder-public-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-public-full2.svg b/public/assets/images/icons/black/folder-public-full2.svg
index c76a2012ac7b885b7c6532d8ec106d3770547dbf..3e7b19d3c4e266e4b82b4cf97181a8729a6cc8da 100644
--- a/public/assets/images/icons/black/folder-public-full2.svg
+++ b/public/assets/images/icons/black/folder-public-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-topic-empty.svg b/public/assets/images/icons/black/folder-topic-empty.svg
index 02d87f3a45d9a1a38b5c9b5bdd24647c3de9ebf4..e166c0b91e9a5e9f5121632e269dffbc36a2731f 100644
--- a/public/assets/images/icons/black/folder-topic-empty.svg
+++ b/public/assets/images/icons/black/folder-topic-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M29.89,18.41V17H24v1.38H18.18V39H35.82V18.41Zm3.59,18.43h-13V20.6H24v.51h5.92V20.6h3.59Z"/><rect class="a" x="22.59" y="26.57" width="8.82" height="2.78"/><rect class="a" x="22.59" y="30.69" width="8.82" height="2.89"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M29.89,18.41V17H24v1.38H18.18V39H35.82V18.41Zm3.59,18.43h-13V20.6H24v.51h5.92V20.6h3.59Z"/><rect class="a" x="22.59" y="26.57" width="8.82" height="2.78"/><rect class="a" x="22.59" y="30.69" width="8.82" height="2.89"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/folder-topic-full.svg b/public/assets/images/icons/black/folder-topic-full.svg
index 6f499926254571a50a643e31be5122fc79f4d164..da416e1a58c3d8f7d3d61f4bd583b194d779bb37 100644
--- a/public/assets/images/icons/black/folder-topic-full.svg
+++ b/public/assets/images/icons/black/folder-topic-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M26.37,23.15V22H21.52v1.12H16.78V40H31.22V23.15ZM29.3,38.24H18.7V25h2.82v.42h4.85V25H29.3Z"/><rect class="a" x="20.39" y="29.83" width="7.22" height="2.27"/><rect class="a" x="20.39" y="33.21" width="7.22" height="2.36"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M26.37,23.15V22H21.52v1.12H16.78V40H31.22V23.15ZM29.3,38.24H18.7V25h2.82v.42h4.85V25H29.3Z"/><rect class="a" x="20.39" y="29.83" width="7.22" height="2.27"/><rect class="a" x="20.39" y="33.21" width="7.22" height="2.36"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/forum.svg b/public/assets/images/icons/black/forum.svg
index 6d8bac8c35c4b90d117d14184f570339e03719d7..731edf965d0150cf68a82f6ca57d91d7dda0955b 100644
--- a/public/assets/images/icons/black/forum.svg
+++ b/public/assets/images/icons/black/forum.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00000;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00000;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/fullscreen-off.svg b/public/assets/images/icons/black/fullscreen-off.svg
index c43aed39c79426be33d62a52c683d2816db49367..d7fe2e4a128660a56e1e1c5d9a4b2d5947992947 100644
--- a/public/assets/images/icons/black/fullscreen-off.svg
+++ b/public/assets/images/icons/black/fullscreen-off.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="fullscreen-off"><polygon points="51 20.13 33.87 20.13 33.87 2.99 37.29 2.99 37.29 16.7 51 16.7 51 20.13"/><polygon points="33.86 50.87 33.86 33.73 51 33.73 51 37.16 37.29 37.16 37.29 50.87 33.86 50.87"/><polygon points="20.16 50.97 16.73 50.97 16.73 37.26 3.02 37.26 3.02 33.84 20.16 33.84 20.16 50.97"/><polygon points="3.02 20.02 3.02 16.6 16.73 16.6 16.73 2.89 20.16 2.89 20.16 20.02 3.02 20.02"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="fullscreen-off"><polygon points="51 20.13 33.87 20.13 33.87 2.99 37.29 2.99 37.29 16.7 51 16.7 51 20.13"/><polygon points="33.86 50.87 33.86 33.73 51 33.73 51 37.16 37.29 37.16 37.29 50.87 33.86 50.87"/><polygon points="20.16 50.97 16.73 50.97 16.73 37.26 3.02 37.26 3.02 33.84 20.16 33.84 20.16 50.97"/><polygon points="3.02 20.02 3.02 16.6 16.73 16.6 16.73 2.89 20.16 2.89 20.16 20.02 3.02 20.02"/></g></svg>
diff --git a/public/assets/images/icons/black/fullscreen-on.svg b/public/assets/images/icons/black/fullscreen-on.svg
index be7d8fc399883f5b97eba44aa0430586e617b1e7..9f42af51f675c8b006c983bb95f6bf2bdc4aea1e 100644
--- a/public/assets/images/icons/black/fullscreen-on.svg
+++ b/public/assets/images/icons/black/fullscreen-on.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="zoom-in-3"><polygon points="51 20.12 47.57 20.12 47.57 6.42 33.86 6.42 33.86 2.99 51 2.99 51 20.12"/><polygon points="20.15 50.97 3.02 50.97 3.02 33.83 6.44 33.83 6.44 47.54 20.15 47.54 20.15 50.97"/><polygon points="33.86 50.97 33.86 47.54 47.57 47.54 47.57 33.83 51 33.83 51 50.97 33.86 50.97"/><polygon points="3.02 20.12 3.02 2.99 20.15 2.99 20.15 6.42 6.44 6.42 6.44 20.12 3.02 20.12"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="zoom-in-3"><polygon points="51 20.12 47.57 20.12 47.57 6.42 33.86 6.42 33.86 2.99 51 2.99 51 20.12"/><polygon points="20.15 50.97 3.02 50.97 3.02 33.83 6.44 33.83 6.44 47.54 20.15 47.54 20.15 50.97"/><polygon points="33.86 50.97 33.86 47.54 47.57 47.54 47.57 33.83 51 33.83 51 50.97 33.86 50.97"/><polygon points="3.02 20.12 3.02 2.99 20.15 2.99 20.15 6.42 6.44 6.42 6.44 20.12 3.02 20.12"/></g></svg>
diff --git a/public/assets/images/icons/black/graph.svg b/public/assets/images/icons/black/graph.svg
index bc6f96c63ef55fff80b633ee861d52055bb6f5bb..6dcdd1795eccfb15abcaaf9f4093cc73f9638bc9 100644
--- a/public/assets/images/icons/black/graph.svg
+++ b/public/assets/images/icons/black/graph.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><path id="graph" class="cls-1" d="M6,44V25.33l9.5,10.36,11.05-12,5.95,5.95L45.23,16.86A3.25,3.25,0,0,0,46,17a3,3,0,1,0-3-3,3.25,3.25,0,0,0,.11.77L32.5,25.35,26.45,19.3l-10.95,12L6,20.89V7H3V47H51V44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><path id="graph" class="cls-1" d="M6,44V25.33l9.5,10.36,11.05-12,5.95,5.95L45.23,16.86A3.25,3.25,0,0,0,46,17a3,3,0,1,0-3-3,3.25,3.25,0,0,0,.11.77L32.5,25.35,26.45,19.3l-10.95,12L6,20.89V7H3V47H51V44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/group.svg b/public/assets/images/icons/black/group.svg
index 50143edba7e27f1c0f806536477564d093ac36c7..b75969dddbbb5aa8133627720a810d07718de680 100644
--- a/public/assets/images/icons/black/group.svg
+++ b/public/assets/images/icons/black/group.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/group2.svg b/public/assets/images/icons/black/group2.svg
index 4ca08d315c05511c278a6e389db2abd1f533db77..d1814afdb72d7d3b791631820d43bc7dd1337605 100644
--- a/public/assets/images/icons/black/group2.svg
+++ b/public/assets/images/icons/black/group2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M11.72,24.63a6.16,6.16,0,1,0-6.15-6.16A6.15,6.15,0,0,0,11.72,24.63Z"/><path class="a" d="M14.51,27.55H8.9A5.94,5.94,0,0,0,3,33.49V41.2H20.43V33.49A6,6,0,0,0,14.51,27.55Z"/><path class="a" d="M42.28,31.92a6.16,6.16,0,1,0-6.14-6.15A6.15,6.15,0,0,0,42.28,31.92Z"/><path class="a" d="M45.08,34.85H39.47a5.92,5.92,0,0,0-5.9,5.93V48.5H51V40.78A6,6,0,0,0,45.08,34.85Z"/><path class="a" d="M25.3,17.82a6.16,6.16,0,1,0-6.14-6.16A6.15,6.15,0,0,0,25.3,17.82Z"/><path class="a" d="M34,34.39V26.67a6,6,0,0,0-5.92-5.93H22.49a5.91,5.91,0,0,0-5.88,5.7,7.38,7.38,0,0,1,5.28,7.05v.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M11.72,24.63a6.16,6.16,0,1,0-6.15-6.16A6.15,6.15,0,0,0,11.72,24.63Z"/><path class="a" d="M14.51,27.55H8.9A5.94,5.94,0,0,0,3,33.49V41.2H20.43V33.49A6,6,0,0,0,14.51,27.55Z"/><path class="a" d="M42.28,31.92a6.16,6.16,0,1,0-6.14-6.15A6.15,6.15,0,0,0,42.28,31.92Z"/><path class="a" d="M45.08,34.85H39.47a5.92,5.92,0,0,0-5.9,5.93V48.5H51V40.78A6,6,0,0,0,45.08,34.85Z"/><path class="a" d="M25.3,17.82a6.16,6.16,0,1,0-6.14-6.16A6.15,6.15,0,0,0,25.3,17.82Z"/><path class="a" d="M34,34.39V26.67a6,6,0,0,0-5.92-5.93H22.49a5.91,5.91,0,0,0-5.88,5.7,7.38,7.38,0,0,1,5.28,7.05v.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/group3.svg b/public/assets/images/icons/black/group3.svg
index 74dd3a920c23cac3f120f84a20d6bf689145349e..ee01dfa06b0fa2d8d464ecc0851a213dd9bbfac1 100644
--- a/public/assets/images/icons/black/group3.svg
+++ b/public/assets/images/icons/black/group3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M21.33,27.49a7.83,7.83,0,0,1-2.16,5.39H34.83A7.87,7.87,0,0,1,36.06,21a6.06,6.06,0,0,0-4.68-2.25H22.6A6,6,0,0,0,17.93,21,7.87,7.87,0,0,1,21.33,27.49Z"/><path class="a" d="M27,15.74a6.37,6.37,0,1,0-6.33-6.38A6.34,6.34,0,0,0,27,15.74Z"/><path class="a" d="M13.49,33.86a6.37,6.37,0,1,0-6.33-6.37A6.35,6.35,0,0,0,13.49,33.86Z"/><path class="a" d="M17.87,36.88H9.09A6.13,6.13,0,0,0,3,43v8H24V43A6.15,6.15,0,0,0,17.87,36.88Z"/><path class="a" d="M34.18,27.49a6.34,6.34,0,1,0,6.33-6.37A6.35,6.35,0,0,0,34.18,27.49Z"/><path class="a" d="M44.89,36.88H36.11A6.13,6.13,0,0,0,30,43v8H51V43A6.15,6.15,0,0,0,44.89,36.88Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M21.33,27.49a7.83,7.83,0,0,1-2.16,5.39H34.83A7.87,7.87,0,0,1,36.06,21a6.06,6.06,0,0,0-4.68-2.25H22.6A6,6,0,0,0,17.93,21,7.87,7.87,0,0,1,21.33,27.49Z"/><path class="a" d="M27,15.74a6.37,6.37,0,1,0-6.33-6.38A6.34,6.34,0,0,0,27,15.74Z"/><path class="a" d="M13.49,33.86a6.37,6.37,0,1,0-6.33-6.37A6.35,6.35,0,0,0,13.49,33.86Z"/><path class="a" d="M17.87,36.88H9.09A6.13,6.13,0,0,0,3,43v8H24V43A6.15,6.15,0,0,0,17.87,36.88Z"/><path class="a" d="M34.18,27.49a6.34,6.34,0,1,0,6.33-6.37A6.35,6.35,0,0,0,34.18,27.49Z"/><path class="a" d="M44.89,36.88H36.11A6.13,6.13,0,0,0,30,43v8H51V43A6.15,6.15,0,0,0,44.89,36.88Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/guestbook.svg b/public/assets/images/icons/black/guestbook.svg
index 0d506fb4c068f5fd0ffda7dce436b13583b329af..442816883c8d67385bc228ad6e48d9b47140711e 100644
--- a/public/assets/images/icons/black/guestbook.svg
+++ b/public/assets/images/icons/black/guestbook.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="guestbook"><path class="cls-1" d="M50,39.26l-1-1.72L47.46,35,33.57,11.77,23,6.19l-.13,11.53,13.89,23.2,1.55,2.57,1,1.72a6.3,6.3,0,0,0,8.44,2.18A5.84,5.84,0,0,0,50,39.26Zm-5.25-2.81-5.35,3L26,16.94l0-2.1L29.38,13l1.94,1ZM46.33,39l1,1.72a2.91,2.91,0,0,1-1.13,4.06A3.15,3.15,0,0,1,42,43.73L41,42ZM21,15H3V9H21Zm0,10H3V19H21ZM16,35H3V29H16Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="guestbook"><path class="cls-1" d="M50,39.26l-1-1.72L47.46,35,33.57,11.77,23,6.19l-.13,11.53,13.89,23.2,1.55,2.57,1,1.72a6.3,6.3,0,0,0,8.44,2.18A5.84,5.84,0,0,0,50,39.26Zm-5.25-2.81-5.35,3L26,16.94l0-2.1L29.38,13l1.94,1ZM46.33,39l1,1.72a2.91,2.91,0,0,1-1.13,4.06A3.15,3.15,0,0,1,42,43.73L41,42ZM21,15H3V9H21Zm0,10H3V19H21ZM16,35H3V29H16Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/home.svg b/public/assets/images/icons/black/home.svg
index 8570ae881cddfed68ad55c2b79109d19ebb4a3fa..faf014cddf9a229085f0fda349cd2a31390eb2b0 100644
--- a/public/assets/images/icons/black/home.svg
+++ b/public/assets/images/icons/black/home.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="26.93 3.07 3 26.97 10 26.97 27 9.97 44.02 26.93 51 26.97 26.93 3.07"/><polygon class="a" points="11 28.97 11 50.97 21 50.97 21 33.97 33 33.97 33 50.97 43 50.97 43 28.97 27 12.97 11 28.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="26.93 3.07 3 26.97 10 26.97 27 9.97 44.02 26.93 51 26.97 26.93 3.07"/><polygon class="a" points="11 28.97 11 50.97 21 50.97 21 33.97 33 33.97 33 50.97 43 50.97 43 28.97 27 12.97 11 28.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/home2.svg b/public/assets/images/icons/black/home2.svg
index 4f5e7caedcaf219a0f4c1ff17a0b243cc95fab22..37b9087bc18f411bbb8bc10ecfe27f9ee1ef3923 100644
--- a/public/assets/images/icons/black/home2.svg
+++ b/public/assets/images/icons/black/home2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="3 26.97 26.93 3.07 51 26.97 44.02 26.93 27 9.97 10 26.97 3 26.97"/><polygon class="a" points="15 50.97 10 50.97 10 29.97 15 24.97 15 50.97"/><polygon class="a" points="44 50.97 39 50.97 39 24.97 44 29.97 44 50.97"/><rect class="a" x="10" y="45.97" width="34" height="5"/><rect class="a" x="25" y="29.97" width="10" height="17"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="3 26.97 26.93 3.07 51 26.97 44.02 26.93 27 9.97 10 26.97 3 26.97"/><polygon class="a" points="15 50.97 10 50.97 10 29.97 15 24.97 15 50.97"/><polygon class="a" points="44 50.97 39 50.97 39 24.97 44 29.97 44 50.97"/><rect class="a" x="10" y="45.97" width="34" height="5"/><rect class="a" x="25" y="29.97" width="10" height="17"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/info-circle-full.svg b/public/assets/images/icons/black/info-circle-full.svg
index 6202877f62034cae37d663606a6cab994d6b7143..9eabd827f9c533ab920b3c3aa48e708e1a0a640d 100644
--- a/public/assets/images/icons/black/info-circle-full.svg
+++ b/public/assets/images/icons/black/info-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/info-circle.svg b/public/assets/images/icons/black/info-circle.svg
index 6202877f62034cae37d663606a6cab994d6b7143..9eabd827f9c533ab920b3c3aa48e708e1a0a640d 100644
--- a/public/assets/images/icons/black/info-circle.svg
+++ b/public/assets/images/icons/black/info-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/infopage.svg b/public/assets/images/icons/black/infopage.svg
index 9421f0b3262bdfbaa48906805775b18f184bb164..0e5224c6bd1911829a417a99f764457f915e48a7 100644
--- a/public/assets/images/icons/black/infopage.svg
+++ b/public/assets/images/icons/black/infopage.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/infopage2.svg b/public/assets/images/icons/black/infopage2.svg
index 9421f0b3262bdfbaa48906805775b18f184bb164..0e5224c6bd1911829a417a99f764457f915e48a7 100644
--- a/public/assets/images/icons/black/infopage2.svg
+++ b/public/assets/images/icons/black/infopage2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/install.svg b/public/assets/images/icons/black/install.svg
index dfe40ff27acbd2f3cadee6dd46a3cfe99d492917..626bdbb9fc37e88b3c37ed2d8d0f0c664cf3ef41 100644
--- a/public/assets/images/icons/black/install.svg
+++ b/public/assets/images/icons/black/install.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="43 5 34.9 5 27 12.9 19.1 5 11 5 27 21 43 5"/><path class="a" d="M38.29,16.6l0,0a16,16,0,1,1-22.62,0l-3.54-3.53a21,21,0,1,0,29.7,0l0,0Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="43 5 34.9 5 27 12.9 19.1 5 11 5 27 21 43 5"/><path class="a" d="M38.29,16.6l0,0a16,16,0,1,1-22.62,0l-3.54-3.53a21,21,0,1,0,29.7,0l0,0Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/institute.svg b/public/assets/images/icons/black/institute.svg
index 3939eca385bfcf0f3c1dfece3c8602567687406e..352f60a9c8fd1608796b2e11e7df3129d496e15d 100644
--- a/public/assets/images/icons/black/institute.svg
+++ b/public/assets/images/icons/black/institute.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="44 24.97 36 24.97 36 47.97 31 47.97 31 24.97 26.89 24.97 23 24.97 23 47.97 18 47.97 18 24.97 10 24.97 10 47.97 6 47.97 6 50.97 48 50.97 48 47.97 44 47.97 44 24.97"/><path class="a" d="M12,22H45v0l6,0L26.93,3.07,3,22h9ZM27,10l11.3,9H15.75Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="44 24.97 36 24.97 36 47.97 31 47.97 31 24.97 26.89 24.97 23 24.97 23 47.97 18 47.97 18 24.97 10 24.97 10 47.97 6 47.97 6 50.97 48 50.97 48 47.97 44 47.97 44 24.97"/><path class="a" d="M12,22H45v0l6,0L26.93,3.07,3,22h9ZM27,10l11.3,9H15.75Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/key.svg b/public/assets/images/icons/black/key.svg
index 0e7aaa0e1f7350d06e8ab81e8310509a788ba611..2b65a75c6a62e4a94fade5fe580d6f3702244219 100644
--- a/public/assets/images/icons/black/key.svg
+++ b/public/assets/images/icons/black/key.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="key"><path class="cls-1" d="M34.44,3A16.53,16.53,0,0,0,19.12,25.81L3,41.94V51h9.06V44.88h5.88V39h6.12V32.46A16.56,16.56,0,1,0,34.44,3Zm3.88,20.44a7.76,7.76,0,1,1,7.76-7.76A7.77,7.77,0,0,1,38.32,23.44Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="key"><path class="cls-1" d="M34.44,3A16.53,16.53,0,0,0,19.12,25.81L3,41.94V51h9.06V44.88h5.88V39h6.12V32.46A16.56,16.56,0,1,0,34.44,3Zm3.88,20.44a7.76,7.76,0,1,1,7.76-7.76A7.77,7.77,0,0,1,38.32,23.44Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/lightbulb.svg b/public/assets/images/icons/black/lightbulb.svg
index 0f01aa5a7532f51fd81bf95c7728b10393420d3e..b32393eafe10d3b16bd3740eaa9eeae2cb5eb4be 100644
--- a/public/assets/images/icons/black/lightbulb.svg
+++ b/public/assets/images/icons/black/lightbulb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M27,3a18.54,18.54,0,0,0-2,.11,17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,27,3Zm7.33,28.92A5,5,0,0,0,32,36.12V38H22V36.13a5,5,0,0,0-2.33-4.24,14,14,0,0,1,5.7-25.83A14.84,14.84,0,0,1,27,6a14,14,0,0,1,7.33,25.92Z"/><path class="a" d="M32.39,9.05A12.51,12.51,0,0,0,27.24,8a12.66,12.66,0,0,0-10.37,5.4,1.73,1.73,0,0,0,.42,2.41,1.69,1.69,0,0,0,1,.32,1.73,1.73,0,0,0,1.42-.74,9.21,9.21,0,0,1,7.54-3.93,9.08,9.08,0,0,1,3.74.8,1.73,1.73,0,1,0,1.41-3.16Z"/><path class="a" d="M17,16.31A1.73,1.73,0,0,0,15,17.58a12.38,12.38,0,0,0-.37,3,12.68,12.68,0,0,0,.28,2.67,1.74,1.74,0,0,0,1.69,1.36,1.55,1.55,0,0,0,.37,0,1.74,1.74,0,0,0,1.33-2.06A8.92,8.92,0,0,1,18,20.61a9.08,9.08,0,0,1,.27-2.2A1.74,1.74,0,0,0,17,16.31Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M27,3a18.54,18.54,0,0,0-2,.11,17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,27,3Zm7.33,28.92A5,5,0,0,0,32,36.12V38H22V36.13a5,5,0,0,0-2.33-4.24,14,14,0,0,1,5.7-25.83A14.84,14.84,0,0,1,27,6a14,14,0,0,1,7.33,25.92Z"/><path class="a" d="M32.39,9.05A12.51,12.51,0,0,0,27.24,8a12.66,12.66,0,0,0-10.37,5.4,1.73,1.73,0,0,0,.42,2.41,1.69,1.69,0,0,0,1,.32,1.73,1.73,0,0,0,1.42-.74,9.21,9.21,0,0,1,7.54-3.93,9.08,9.08,0,0,1,3.74.8,1.73,1.73,0,1,0,1.41-3.16Z"/><path class="a" d="M17,16.31A1.73,1.73,0,0,0,15,17.58a12.38,12.38,0,0,0-.37,3,12.68,12.68,0,0,0,.28,2.67,1.74,1.74,0,0,0,1.69,1.36,1.55,1.55,0,0,0,.37,0,1.74,1.74,0,0,0,1.33-2.06A8.92,8.92,0,0,1,18,20.61a9.08,9.08,0,0,1,.27-2.2A1.74,1.74,0,0,0,17,16.31Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/lightbulb2.svg b/public/assets/images/icons/black/lightbulb2.svg
index 19e5d48efa86cde0a0955d4c9622be6ab3331670..37bb167d4dbbdf7108b7373287fc612db7fb5804 100644
--- a/public/assets/images/icons/black/lightbulb2.svg
+++ b/public/assets/images/icons/black/lightbulb2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M25,3.08a17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,25,3.08ZM16.32,17.33A11.15,11.15,0,0,0,16,20a10.48,10.48,0,0,0,.25,2.31,1.51,1.51,0,0,1-1.15,1.79l-.32,0a1.51,1.51,0,0,1-1.47-1.18A14.63,14.63,0,0,1,13,20a14.11,14.11,0,0,1,.41-3.36,1.5,1.5,0,0,1,2.91.72ZM33.46,9.17a1.5,1.5,0,0,1-2,.75A11,11,0,0,0,18,13.66a1.49,1.49,0,0,1-1.23.64,1.5,1.5,0,0,1-1.23-2.36A14,14,0,0,1,32.7,7.18,1.51,1.51,0,0,1,33.46,9.17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M25,3.08a17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,25,3.08ZM16.32,17.33A11.15,11.15,0,0,0,16,20a10.48,10.48,0,0,0,.25,2.31,1.51,1.51,0,0,1-1.15,1.79l-.32,0a1.51,1.51,0,0,1-1.47-1.18A14.63,14.63,0,0,1,13,20a14.11,14.11,0,0,1,.41-3.36,1.5,1.5,0,0,1,2.91.72ZM33.46,9.17a1.5,1.5,0,0,1-2,.75A11,11,0,0,0,18,13.66a1.49,1.49,0,0,1-1.23.64,1.5,1.5,0,0,1-1.23-2.36A14,14,0,0,1,32.7,7.18,1.51,1.51,0,0,1,33.46,9.17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/link-extern.svg b/public/assets/images/icons/black/link-extern.svg
index 9aeb5acfac118cffbf1f1f66075d026968d0851a..4065d4644172dd5df78d05b6ffbb9838baa504cf 100644
--- a/public/assets/images/icons/black/link-extern.svg
+++ b/public/assets/images/icons/black/link-extern.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="17 17 22.06 22.06 31.94 22.06 31.94 31.94 37 37 37 17 17 17"/><path class="a" d="M27,46A19,19,0,0,1,27,8V3A24,24,0,1,0,51,27H46A19,19,0,0,1,27,46Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="17 17 22.06 22.06 31.94 22.06 31.94 31.94 37 37 37 17 17 17"/><path class="a" d="M27,46A19,19,0,0,1,27,8V3A24,24,0,1,0,51,27H46A19,19,0,0,1,27,46Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/link-intern.svg b/public/assets/images/icons/black/link-intern.svg
index 8e9e24cbde08a3678f34fc7b5477e3f959af88b8..61ce97219469f98dd9fab52a15e16ebe65aa912a 100644
--- a/public/assets/images/icons/black/link-intern.svg
+++ b/public/assets/images/icons/black/link-intern.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/><polygon class="a" points="22 13 22 20.09 28.91 27 22 33.91 22 41 36 27 22 13"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/><polygon class="a" points="22 13 22 20.09 28.91 27 22 33.91 22 41 36 27 22 13"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/link2.svg b/public/assets/images/icons/black/link2.svg
index 9bf39723413a508fbdf4e62fa8d5e03234a904c8..987b149ec5c614193f309fb3c6004a931e551d51 100644
--- a/public/assets/images/icons/black/link2.svg
+++ b/public/assets/images/icons/black/link2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM22,41V33.91L28.91,27,22,20.09V13L36,27Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM22,41V33.91L28.91,27,22,20.09V13L36,27Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/link3.svg b/public/assets/images/icons/black/link3.svg
index 4424b3f5e12b8ff65574b4f71496f145a0a41805..b478a20c80f70eb9bafe542f2918082bf583c942 100644
--- a/public/assets/images/icons/black/link3.svg
+++ b/public/assets/images/icons/black/link3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M27,51A24,24,0,1,0,3,27,24,24,0,0,0,27,51Zm5-38v7.09L25.09,27,32,33.88V41L18,27Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M27,51A24,24,0,1,0,3,27,24,24,0,0,0,27,51Zm5-38v7.09L25.09,27,32,33.88V41L18,27Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/literature.svg b/public/assets/images/icons/black/literature.svg
index 2bc5f4721d08553a69ab19ea6dbe8bdb3abd39a5..8c9d0cfa676b5cfa020a48e01fabba8bc81427fe 100644
--- a/public/assets/images/icons/black/literature.svg
+++ b/public/assets/images/icons/black/literature.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42h3V3Zm0,17.9H33v3H15Zm0,6H33v3H15Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42h3V3Zm0,17.9H33v3H15Zm0,6H33v3H15Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/literature2.svg b/public/assets/images/icons/black/literature2.svg
index a6161619b4341bb00c08812ed58fd9e5e13c84a5..4b55ddb5bc1e84149f910360dc651dc86fb639ae 100644
--- a/public/assets/images/icons/black/literature2.svg
+++ b/public/assets/images/icons/black/literature2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42.08h3V3Zm0,12H36V48H15a3,3,0,0,1-3-3V13.94A4.14,4.14,0,0,0,15,15Z"/><rect class="a" x="15" y="20.9" width="17.99" height="3"/><rect class="a" x="15" y="26.9" width="17.99" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42.08h3V3Zm0,12H36V48H15a3,3,0,0,1-3-3V13.94A4.14,4.14,0,0,0,15,15Z"/><rect class="a" x="15" y="20.9" width="17.99" height="3"/><rect class="a" x="15" y="26.9" width="17.99" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/lock-locked.svg b/public/assets/images/icons/black/lock-locked.svg
index 290b031fd43dc8ec1b21289ba17bf20c645f2e7d..7290884739c11eb981ad500669c54833dffbf396 100644
--- a/public/assets/images/icons/black/lock-locked.svg
+++ b/public/assets/images/icons/black/lock-locked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="lock-locked2"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM18,19a9,9,0,0,1,18,0v3H18ZM42,46H12V25H42Z"/><path class="cls-1" d="M24,40a3,3,0,0,0,6,0V35.62a4,4,0,1,0-6,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="lock-locked2"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM18,19a9,9,0,0,1,18,0v3H18ZM42,46H12V25H42Z"/><path class="cls-1" d="M24,40a3,3,0,0,0,6,0V35.62a4,4,0,1,0-6,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/lock-locked2.svg b/public/assets/images/icons/black/lock-locked2.svg
index 7e1bd737e16180d210df461e3a63ae4f6d6e2597..072ce71025847498f87bd4085089f7fafb766ef6 100644
--- a/public/assets/images/icons/black/lock-locked2.svg
+++ b/public/assets/images/icons/black/lock-locked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="lock-locked"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM30,35.59V40a3,3,0,0,1-6,0V35.59A3.93,3.93,0,0,1,23,33a4,4,0,1,1,7,2.62ZM36,22H18V19a9,9,0,0,1,18,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="lock-locked"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM30,35.59V40a3,3,0,0,1-6,0V35.59A3.93,3.93,0,0,1,23,33a4,4,0,1,1,7,2.62ZM36,22H18V19a9,9,0,0,1,18,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/lock-unlocked.svg b/public/assets/images/icons/black/lock-unlocked.svg
index 1c9152a50e0156993b9e8ebff5a22b6e60f96aaa..0c008997874a4a2a7fb2679908e884d81f92d587 100644
--- a/public/assets/images/icons/black/lock-unlocked.svg
+++ b/public/assets/images/icons/black/lock-unlocked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="lock-unlocked2"><path class="cls-1" d="M24,42a3,3,0,0,0,6,0V37.62a4,4,0,1,0-6,0Z"/><path class="cls-1" d="M18,24V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM42,48H12V27H42Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="lock-unlocked2"><path class="cls-1" d="M24,42a3,3,0,0,0,6,0V37.62a4,4,0,1,0-6,0Z"/><path class="cls-1" d="M18,24V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM42,48H12V27H42Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/lock-unlocked2.svg b/public/assets/images/icons/black/lock-unlocked2.svg
index 741b66fcb8816bc96efd925c3768576aa7c5d617..c5081614f1a1d31b296d045cf97543f61ecec0fe 100644
--- a/public/assets/images/icons/black/lock-unlocked2.svg
+++ b/public/assets/images/icons/black/lock-unlocked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="lock-unlocked"><path class="cls-1" d="M41,24H18V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM30,36.62V42a3,3,0,0,1-6,0V36.62a4,4,0,1,1,6,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="lock-unlocked"><path class="cls-1" d="M41,24H18V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM30,36.62V42a3,3,0,0,1-6,0V36.62a4,4,0,1,1,6,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/log.svg b/public/assets/images/icons/black/log.svg
index 63a3cdce9d8022bb7adff8675e57396e4f461275..2ba845d409fb2661bc80d0ad5845ae3a019f34da 100644
--- a/public/assets/images/icons/black/log.svg
+++ b/public/assets/images/icons/black/log.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="log"><path class="cls-1" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><rect class="cls-1" x="15" y="10.97" width="24" height="4"/><rect class="cls-1" x="15" y="17.97" width="23" height="4"/><rect class="cls-1" x="15" y="24.97" width="22" height="4"/><rect class="cls-1" x="15" y="31.97" width="24" height="4"/><rect class="cls-1" x="15" y="38.97" width="19" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="log"><path class="cls-1" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><rect class="cls-1" x="15" y="10.97" width="24" height="4"/><rect class="cls-1" x="15" y="17.97" width="23" height="4"/><rect class="cls-1" x="15" y="24.97" width="22" height="4"/><rect class="cls-1" x="15" y="31.97" width="24" height="4"/><rect class="cls-1" x="15" y="38.97" width="19" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/mail.svg b/public/assets/images/icons/black/mail.svg
index 7df21d62d96325a08276385e7469cd7e0565e180..fbd3b60516274630a53b7126a0be094a16838ccb 100644
--- a/public/assets/images/icons/black/mail.svg
+++ b/public/assets/images/icons/black/mail.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="3 17.92 3 45 51 45 51 17.83 26.93 37.18 3 17.92"/><polygon class="a" points="3 9 3 12 3 12.06 26.93 31.42 51 12.09 51 12 51 9 3 9"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="3 17.92 3 45 51 45 51 17.83 26.93 37.18 3 17.92"/><polygon class="a" points="3 9 3 12 3 12.06 26.93 31.42 51 12.09 51 12 51 9 3 9"/></svg>
diff --git a/public/assets/images/icons/black/mail2.svg b/public/assets/images/icons/black/mail2.svg
index 75ec5c1a82326d42b51f8223f328ce6e53f8800f..1119f0673ae7be7217f71f88565428589b72a35c 100644
--- a/public/assets/images/icons/black/mail2.svg
+++ b/public/assets/images/icons/black/mail2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,9v5L27,31,51,14V9ZM27,24.84,11.65,14h30.7Z"/><polygon class="a" points="46 39.97 8 39.97 7.96 21.48 3 17.97 3 44.97 51 44.97 51 17.97 46.03 21.49 46 39.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,9v5L27,31,51,14V9ZM27,24.84,11.65,14h30.7Z"/><polygon class="a" points="46 39.97 8 39.97 7.96 21.48 3 17.97 3 44.97 51 44.97 51 17.97 46.03 21.49 46 39.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/maximize.svg b/public/assets/images/icons/black/maximize.svg
index 5d3d687192889039d5fa1137359646d90412c2f9..1f1f0541f6c22b197e1a8c29d29726ad89f7b670 100644
--- a/public/assets/images/icons/black/maximize.svg
+++ b/public/assets/images/icons/black/maximize.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="maximise-1"><polygon points="27 39.03 27 48.03 6 48.03 6 27.03 15 27.03 15 24.03 3 24.03 3 51.03 30 51.03 30 39.03 27 39.03"/><path d="M15,3V39H51V3ZM48,36H18V11.94H48Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="maximise-1"><polygon points="27 39.03 27 48.03 6 48.03 6 27.03 15 27.03 15 24.03 3 24.03 3 51.03 30 51.03 30 39.03 27 39.03"/><path d="M15,3V39H51V3ZM48,36H18V11.94H48Z"/></g></svg>
diff --git a/public/assets/images/icons/black/microphone.svg b/public/assets/images/icons/black/microphone.svg
index 978c99936d1cbcc2f100ec56c5b17ca90a98b323..b20ba38ed2de6704fecd8d372f5205b663927108 100644
--- a/public/assets/images/icons/black/microphone.svg
+++ b/public/assets/images/icons/black/microphone.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M27,36a7,7,0,0,0,7-7V10a7,7,0,1,0-14,0V29A7,7,0,0,0,27,36Z"/><path class="a" d="M40,29V27a3,3,0,0,0-3-3v4.65A10.24,10.24,0,0,1,27.68,39,10,10,0,0,1,17,29V24a3,3,0,0,0-3,3v2A13,13,0,0,0,25.5,41.88V46H20a3,3,0,0,0-3,3v2H37V49a3,3,0,0,0-3-3H28.5V41.88A13,13,0,0,0,40,29Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M27,36a7,7,0,0,0,7-7V10a7,7,0,1,0-14,0V29A7,7,0,0,0,27,36Z"/><path class="a" d="M40,29V27a3,3,0,0,0-3-3v4.65A10.24,10.24,0,0,1,27.68,39,10,10,0,0,1,17,29V24a3,3,0,0,0-3,3v2A13,13,0,0,0,25.5,41.88V46H20a3,3,0,0,0-3,3v2H37V49a3,3,0,0,0-3-3H28.5V41.88A13,13,0,0,0,40,29Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/module.svg b/public/assets/images/icons/black/module.svg
index a712c0a9689c70fb5617af6f5a77713266cdc5cd..0fe50f1aa60f44c3a1bf4cd2ae24e18cd1d4642d 100644
--- a/public/assets/images/icons/black/module.svg
+++ b/public/assets/images/icons/black/module.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="module"><path d="M8.94,26.08a14,14,0,0,1,14-14h0V6.17h0A19.92,19.92,0,0,0,3,26.08H8.94Zm19,12.46a7.48,7.48,0,0,0,0-14.95v7.48H20.44A7.49,7.49,0,0,0,27.93,38.54Zm0-27.39v5.93a14,14,0,1,1-14,14H8A19.91,19.91,0,1,0,27.93,11.15Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="module"><path d="M8.94,26.08a14,14,0,0,1,14-14h0V6.17h0A19.92,19.92,0,0,0,3,26.08H8.94Zm19,12.46a7.48,7.48,0,0,0,0-14.95v7.48H20.44A7.49,7.49,0,0,0,27.93,38.54Zm0-27.39v5.93a14,14,0,1,1-14,14H8A19.91,19.91,0,1,0,27.93,11.15Z"/></g></svg>
diff --git a/public/assets/images/icons/black/network.svg b/public/assets/images/icons/black/network.svg
index e3e800bf6d6d6d99cf057c0cd135b30ff88573c5..febdb6c9d8ff44499c7774791e8e331e25f8e21a 100644
--- a/public/assets/images/icons/black/network.svg
+++ b/public/assets/images/icons/black/network.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="network"><path class="cls-1" d="M51,30.43A3.42,3.42,0,0,0,47.57,27a3.36,3.36,0,0,0-2.91,1.73H28.71V23.05a3.39,3.39,0,0,0,1.72-2.91A3.44,3.44,0,0,0,27,16.71a3.36,3.36,0,0,0-2.9,1.72H18.41V9.34a3.36,3.36,0,0,0,1.73-2.91,3.43,3.43,0,1,0-6.85,0A3.38,3.38,0,0,0,15,9.32v9.11H9.33a3.38,3.38,0,0,0-2.9-1.72,3.43,3.43,0,0,0,0,6.86,3.39,3.39,0,0,0,2.9-1.71H15v5.68a3.38,3.38,0,0,0-1.69,2.89,3.43,3.43,0,0,0,3.42,3.43,3.38,3.38,0,0,0,2.9-1.7h5.68V44.67a3.38,3.38,0,0,0-1.72,2.9,3.43,3.43,0,0,0,6.86,0,3.38,3.38,0,0,0-1.72-2.9V32.16H39v9.07a3.36,3.36,0,0,0-1.73,2.91,3.43,3.43,0,1,0,6.85,0,3.37,3.37,0,0,0-1.7-2.89V32.16h2.24a3.37,3.37,0,0,0,2.89,1.7A3.43,3.43,0,0,0,51,30.43Zm-25.71-1.7H19.63a3.29,3.29,0,0,0-1.22-1.21V21.86H24.1a3.39,3.39,0,0,0,1.19,1.19Z"/><circle class="cls-1" cx="35.57" cy="11.57" r="5.14"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="network"><path class="cls-1" d="M51,30.43A3.42,3.42,0,0,0,47.57,27a3.36,3.36,0,0,0-2.91,1.73H28.71V23.05a3.39,3.39,0,0,0,1.72-2.91A3.44,3.44,0,0,0,27,16.71a3.36,3.36,0,0,0-2.9,1.72H18.41V9.34a3.36,3.36,0,0,0,1.73-2.91,3.43,3.43,0,1,0-6.85,0A3.38,3.38,0,0,0,15,9.32v9.11H9.33a3.38,3.38,0,0,0-2.9-1.72,3.43,3.43,0,0,0,0,6.86,3.39,3.39,0,0,0,2.9-1.71H15v5.68a3.38,3.38,0,0,0-1.69,2.89,3.43,3.43,0,0,0,3.42,3.43,3.38,3.38,0,0,0,2.9-1.7h5.68V44.67a3.38,3.38,0,0,0-1.72,2.9,3.43,3.43,0,0,0,6.86,0,3.38,3.38,0,0,0-1.72-2.9V32.16H39v9.07a3.36,3.36,0,0,0-1.73,2.91,3.43,3.43,0,1,0,6.85,0,3.37,3.37,0,0,0-1.7-2.89V32.16h2.24a3.37,3.37,0,0,0,2.89,1.7A3.43,3.43,0,0,0,51,30.43Zm-25.71-1.7H19.63a3.29,3.29,0,0,0-1.22-1.21V21.86H24.1a3.39,3.39,0,0,0,1.19,1.19Z"/><circle class="cls-1" cx="35.57" cy="11.57" r="5.14"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/news.svg b/public/assets/images/icons/black/news.svg
index 4f68bf113b76bf66022597ddc567875af4e1f34f..03982dc763aecfe93e22c548974081c804c2ac5c 100644
--- a/public/assets/images/icons/black/news.svg
+++ b/public/assets/images/icons/black/news.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00000;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00000;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/no-activity.svg b/public/assets/images/icons/black/no-activity.svg
index 429e9c5350d99099147afac86a987c4a78f289c3..60a1a39a263c318e3610a057b7e580180a6b8dd9 100644
--- a/public/assets/images/icons/black/no-activity.svg
+++ b/public/assets/images/icons/black/no-activity.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><path id="no-activity" d="M3,3V51H51V3ZM48,6V26.62H19.23l-4-7.87-3.84,7.87H6V6ZM6,48V29.62H13.3l2-4.13,3.39,6.66,1.73-2.53H48V48Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><path id="no-activity" d="M3,3V51H51V3ZM48,6V26.62H19.23l-4-7.87-3.84,7.87H6V6ZM6,48V29.62H13.3l2-4.13,3.39,6.66,1.73-2.53H48V48Z"/></svg>
diff --git a/public/assets/images/icons/black/oer-campus.svg b/public/assets/images/icons/black/oer-campus.svg
index 44a44d558355354eca1d841c32627c10c31c4ff9..6a01a146bd96ceefae016af8dda2797fe416b184 100644
--- a/public/assets/images/icons/black/oer-campus.svg
+++ b/public/assets/images/icons/black/oer-campus.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M17,22.07A12.38,12.38,0,1,1,34.58,33.55l1.41.57,8.28-2.83A17.37,17.37,0,1,0,12,22.34c0,.12,0,.23,0,.36Z"/><path class="a" d="M50.78,35.93a3.72,3.72,0,0,0-3.5-2.51,3.62,3.62,0,0,0-1.25.22L35.82,37.19,22.13,31.56l8.73-1.19A3.71,3.71,0,0,0,30.4,23l-.46,0L10.08,25.56a3.68,3.68,0,0,0-1.51.57A2.25,2.25,0,0,0,7.33,27.4l-.18.49c-.05.13-.1.25-.14.38L3.14,38.76a2.22,2.22,0,0,0,.18,1.92c.91,2,5.16,4.86,9.09,6.35l9.44,1.79a8.64,8.64,0,0,0,1.4.12l.45,0a3.81,3.81,0,0,0,.59,0,3.37,3.37,0,0,0,1.2-.21L27,48.23c.4-.12.82-.25,1.29-.41,5.15-1.66,10.9-3.7,13-4.56l.07,0,7.08-2.47A3.79,3.79,0,0,0,50.78,35.93Z"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M17,22.07A12.38,12.38,0,1,1,34.58,33.55l1.41.57,8.28-2.83A17.37,17.37,0,1,0,12,22.34c0,.12,0,.23,0,.36Z"/><path class="a" d="M50.78,35.93a3.72,3.72,0,0,0-3.5-2.51,3.62,3.62,0,0,0-1.25.22L35.82,37.19,22.13,31.56l8.73-1.19A3.71,3.71,0,0,0,30.4,23l-.46,0L10.08,25.56a3.68,3.68,0,0,0-1.51.57A2.25,2.25,0,0,0,7.33,27.4l-.18.49c-.05.13-.1.25-.14.38L3.14,38.76a2.22,2.22,0,0,0,.18,1.92c.91,2,5.16,4.86,9.09,6.35l9.44,1.79a8.64,8.64,0,0,0,1.4.12l.45,0a3.81,3.81,0,0,0,.59,0,3.37,3.37,0,0,0,1.2-.21L27,48.23c.4-.12.82-.25,1.29-.41,5.15-1.66,10.9-3.7,13-4.56l.07,0,7.08-2.47A3.79,3.79,0,0,0,50.78,35.93Z"/></svg>
diff --git a/public/assets/images/icons/black/oer-campus2.svg b/public/assets/images/icons/black/oer-campus2.svg
index bea1071c2ce0b4f0bc558e9199e2a9446966a9d5..65c02dd33587ca3805f6acce5a8cd73c9efeabd2 100644
--- a/public/assets/images/icons/black/oer-campus2.svg
+++ b/public/assets/images/icons/black/oer-campus2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00000;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00000;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/opencast.svg b/public/assets/images/icons/black/opencast.svg
index 6b26ced8da6d3e96f46c2d87ac5141c31bfad878..3af154a613e2db964ea51d39ac78934d33eb1bdd 100644
--- a/public/assets/images/icons/black/opencast.svg
+++ b/public/assets/images/icons/black/opencast.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M20,10,3,27,20,44,37,27ZM10.08,27,20,17.05,29.9,27,20,36.89Z"/><polygon class="a" points="34.01 9.97 30.5 13.48 43.99 26.97 30.5 40.46 34.01 43.97 51 26.97 34.01 9.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M20,10,3,27,20,44,37,27ZM10.08,27,20,17.05,29.9,27,20,36.89Z"/><polygon class="a" points="34.01 9.97 30.5 13.48 43.99 26.97 30.5 40.46 34.01 43.97 51 26.97 34.01 9.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/opencast2.svg b/public/assets/images/icons/black/opencast2.svg
index 1fc90995daf2144a66e19a38f8333ff2e752aee8..1c8d6f69337e002e1f806c94e23541a26456c222 100644
--- a/public/assets/images/icons/black/opencast2.svg
+++ b/public/assets/images/icons/black/opencast2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="31.02 6.97 29 8.99 46.96 26.97 29 44.95 31.02 46.97 51 26.97 31.02 6.97"/><path class="a" d="M23,7,3,27,23,47,43,27ZM7.29,27,23,11.26,38.71,27,23,42.68Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="31.02 6.97 29 8.99 46.96 26.97 29 44.95 31.02 46.97 51 26.97 31.02 6.97"/><path class="a" d="M23,7,3,27,23,47,43,27ZM7.29,27,23,11.26,38.71,27,23,42.68Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/pause.svg b/public/assets/images/icons/black/pause.svg
index 730a71aca139ee19651fa1e7346b847a28a40936..3781d15dda977de79069bd8fe39cfdf3e0e3a633 100644
--- a/public/assets/images/icons/black/pause.svg
+++ b/public/assets/images/icons/black/pause.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="12.01 45.99 23.99 46 24 8 12 8 12.01 45.99"/><polygon class="a" points="30.01 45.99 41.99 46 42 8 30 8 30.01 45.99"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="12.01 45.99 23.99 46 24 8 12 8 12.01 45.99"/><polygon class="a" points="30.01 45.99 41.99 46 42 8 30 8 30.01 45.99"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/permalink.svg b/public/assets/images/icons/black/permalink.svg
index 50143edba7e27f1c0f806536477564d093ac36c7..b75969dddbbb5aa8133627720a810d07718de680 100644
--- a/public/assets/images/icons/black/permalink.svg
+++ b/public/assets/images/icons/black/permalink.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/person.svg b/public/assets/images/icons/black/person.svg
index d85452ceebf8fdd4558310791e9500040f734985..7c59fcab32fc7321fdaa36bfb8254f1ae17495c1 100644
--- a/public/assets/images/icons/black/person.svg
+++ b/public/assets/images/icons/black/person.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M4.5,49.5V4.5h45v45Zm14.71-22a7.71,7.71,0,0,0-7.71,7.7v12.3h31V35.22a7.71,7.71,0,0,0-7.7-7.7ZM27,5.55A10.5,10.5,0,1,0,37.5,16,10.5,10.5,0,0,0,27,5.55Z"/><path class="a" d="M48,6V48H44V35.22A9.21,9.21,0,0,0,34.8,26H33.67a12,12,0,0,0-.11-20H48M20.44,6a12,12,0,0,0-.11,20H19.21A9.21,9.21,0,0,0,10,35.22V48H6V6H20.44M51,3H3V51H51V3ZM27,25.05a9,9,0,1,1,9-9,9,9,0,0,1-9,9ZM13,46V35.22A6.2,6.2,0,0,1,19.21,29H34.8a6.2,6.2,0,0,1,6.2,6.2V46Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M4.5,49.5V4.5h45v45Zm14.71-22a7.71,7.71,0,0,0-7.71,7.7v12.3h31V35.22a7.71,7.71,0,0,0-7.7-7.7ZM27,5.55A10.5,10.5,0,1,0,37.5,16,10.5,10.5,0,0,0,27,5.55Z"/><path class="a" d="M48,6V48H44V35.22A9.21,9.21,0,0,0,34.8,26H33.67a12,12,0,0,0-.11-20H48M20.44,6a12,12,0,0,0-.11,20H19.21A9.21,9.21,0,0,0,10,35.22V48H6V6H20.44M51,3H3V51H51V3ZM27,25.05a9,9,0,1,1,9-9,9,9,0,0,1-9,9ZM13,46V35.22A6.2,6.2,0,0,1,19.21,29H34.8a6.2,6.2,0,0,1,6.2,6.2V46Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/person2.svg b/public/assets/images/icons/black/person2.svg
index d8f44597aec8ecdf691d95ad1122671f852a1bf9..6ec24f8829c95d083998abb8be915c0ac08378b2 100644
--- a/public/assets/images/icons/black/person2.svg
+++ b/public/assets/images/icons/black/person2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M27,27.05a9,9,0,1,0-9-9A9,9,0,0,0,27,27.05Z"/><path class="a" d="M3,3V51H51V3ZM48,48H41V37.22A6.2,6.2,0,0,0,34.8,31H19.21A6.2,6.2,0,0,0,13,37.22V48H6V6H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M27,27.05a9,9,0,1,0-9-9A9,9,0,0,0,27,27.05Z"/><path class="a" d="M3,3V51H51V3ZM48,48H41V37.22A6.2,6.2,0,0,0,34.8,31H19.21A6.2,6.2,0,0,0,13,37.22V48H6V6H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/persons.svg b/public/assets/images/icons/black/persons.svg
index 59743dfe74c3b96feae8b30d941d88a3a8cb1c98..a5a5c0add49782195a996dc6a45fb07ab73057a2 100644
--- a/public/assets/images/icons/black/persons.svg
+++ b/public/assets/images/icons/black/persons.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,51H45V9H3ZM24,12a9,9,0,1,1-9,9A9,9,0,0,1,24,12ZM10,40.17A6.21,6.21,0,0,1,16.2,34H31.79A6.21,6.21,0,0,1,38,40.17V46H10Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,51H45V9H3ZM24,12a9,9,0,1,1-9,9A9,9,0,0,1,24,12ZM10,40.17A6.21,6.21,0,0,1,16.2,34H31.79A6.21,6.21,0,0,1,38,40.17V46H10Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/persons2.svg b/public/assets/images/icons/black/persons2.svg
index b12fe865d2014c6b108ff500f0608ad004c60600..01f14102237b55c20e82329208086143dad19ed8 100644
--- a/public/assets/images/icons/black/persons2.svg
+++ b/public/assets/images/icons/black/persons2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,51H45V9H3ZM6,12H42V48H38v-4.8A6.21,6.21,0,0,0,31.79,37H16.2a6.21,6.21,0,0,0-6.2,6.2V48H6Z"/><path class="a" d="M24,33a9,9,0,1,0-9-9A9,9,0,0,0,24,33Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,51H45V9H3ZM6,12H42V48H38v-4.8A6.21,6.21,0,0,0,31.79,37H16.2a6.21,6.21,0,0,0-6.2,6.2V48H6Z"/><path class="a" d="M24,33a9,9,0,1,0-9-9A9,9,0,0,0,24,33Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/play.svg b/public/assets/images/icons/black/play.svg
index 56f54c50cf0d6ecd91f95b219daf0e7b43810405..b08a9a53205dc55c820cf4b3883daaf3d5617ea9 100644
--- a/public/assets/images/icons/black/play.svg
+++ b/public/assets/images/icons/black/play.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="arrows"><g id="play"><polygon class="cls-1" points="14.99 44.91 42 26.91 15 8.91 14.99 44.91"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="arrows"><g id="play"><polygon class="cls-1" points="14.99 44.91 42 26.91 15 8.91 14.99 44.91"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/plugin.svg b/public/assets/images/icons/black/plugin.svg
index 7d1e1ab8129fedc8f57f1fddc0f2664fb2de4da8..b7428c573c3026329b40f10b46b0d1f74524cf82 100644
--- a/public/assets/images/icons/black/plugin.svg
+++ b/public/assets/images/icons/black/plugin.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M31.35,6l.54,4.28A16.51,16.51,0,0,0,29,10a17.75,17.75,0,0,0-2.81.23,17,17,0,1,0,9.73,32.29L36.6,48H6V6H31.35M34,3H3V51H40L38.72,40.74a2,2,0,0,0-2-1.74,2,2,0,0,0-1,.26A13.82,13.82,0,0,1,29,41a14,14,0,0,1-2.33-27.81A14.35,14.35,0,0,1,29,13a13.74,13.74,0,0,1,3.54.46,2.4,2.4,0,0,0,.52.07,2,2,0,0,0,2-2.25L34,3Z"/><path class="a" d="M37,3l1.66,13.3a2,2,0,0,1-3.21,1.82,11,11,0,0,0-7.53-2A11,11,0,0,0,29,38a11,11,0,0,0,8.46-4A2,2,0,0,1,41,35C41.88,42,43,51,43,51h8V3Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M31.35,6l.54,4.28A16.51,16.51,0,0,0,29,10a17.75,17.75,0,0,0-2.81.23,17,17,0,1,0,9.73,32.29L36.6,48H6V6H31.35M34,3H3V51H40L38.72,40.74a2,2,0,0,0-2-1.74,2,2,0,0,0-1,.26A13.82,13.82,0,0,1,29,41a14,14,0,0,1-2.33-27.81A14.35,14.35,0,0,1,29,13a13.74,13.74,0,0,1,3.54.46,2.4,2.4,0,0,0,.52.07,2,2,0,0,0,2-2.25L34,3Z"/><path class="a" d="M37,3l1.66,13.3a2,2,0,0,1-3.21,1.82,11,11,0,0,0-7.53-2A11,11,0,0,0,29,38a11,11,0,0,0,8.46-4A2,2,0,0,1,41,35C41.88,42,43,51,43,51h8V3Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/plugin2.svg b/public/assets/images/icons/black/plugin2.svg
index 4b7f38e2c199ab520e4e292d532fa7d42bad0eea..42a91a472426e584b4e8efc8ec5146ceb89ef815 100644
--- a/public/assets/images/icons/black/plugin2.svg
+++ b/public/assets/images/icons/black/plugin2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M38.75,24.61a7,7,0,0,1,4.6,1.76A1,1,0,0,0,45,25.62v-9.8H33.58a1,1,0,0,1-.75-1.65,6.6,6.6,0,0,0,1.66-4.31,7,7,0,0,0-14-.13,6.61,6.61,0,0,0,1.66,4.45,1,1,0,0,1-.75,1.64H9V51h7.49a1,1,0,0,0,.76-1.64,6.72,6.72,0,0,1-1.67-4.49,7,7,0,0,1,14,.14,6.7,6.7,0,0,1-1.67,4.34A1,1,0,0,0,28.64,51H45V37.27a1,1,0,0,0-1.64-.77,7.05,7.05,0,0,1-4.75,1.76,6.83,6.83,0,1,1,.14-13.65Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M38.75,24.61a7,7,0,0,1,4.6,1.76A1,1,0,0,0,45,25.62v-9.8H33.58a1,1,0,0,1-.75-1.65,6.6,6.6,0,0,0,1.66-4.31,7,7,0,0,0-14-.13,6.61,6.61,0,0,0,1.66,4.45,1,1,0,0,1-.75,1.64H9V51h7.49a1,1,0,0,0,.76-1.64,6.72,6.72,0,0,1-1.67-4.49,7,7,0,0,1,14,.14,6.7,6.7,0,0,1-1.67,4.34A1,1,0,0,0,28.64,51H45V37.27a1,1,0,0,0-1.64-.77,7.05,7.05,0,0,1-4.75,1.76,6.83,6.83,0,1,1,.14-13.65Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/privacy.svg b/public/assets/images/icons/black/privacy.svg
index ac2890f371f9ace1ddb87bc808cd9fbb58776c21..d911d6d909ba32e9c2b224ee430b6ce71575ba56 100644
--- a/public/assets/images/icons/black/privacy.svg
+++ b/public/assets/images/icons/black/privacy.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="privacy"><path d="M27.87,14.51H23V24.75h5.13a6.47,6.47,0,0,0,4.4-1.35,4.84,4.84,0,0,0,1.55-3.86Q34.1,14.52,27.87,14.51Z"/><path d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM37.52,24.72a8.21,8.21,0,0,1-3.91,3.2,20,20,0,0,1-7.12,1H23V43.11H18.31V10.34H28.69a10.68,10.68,0,0,1,7.47,2.53A8.71,8.71,0,0,1,39,19.66,9.1,9.1,0,0,1,37.52,24.72Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="privacy"><path d="M27.87,14.51H23V24.75h5.13a6.47,6.47,0,0,0,4.4-1.35,4.84,4.84,0,0,0,1.55-3.86Q34.1,14.52,27.87,14.51Z"/><path d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM37.52,24.72a8.21,8.21,0,0,1-3.91,3.2,20,20,0,0,1-7.12,1H23V43.11H18.31V10.34H28.69a10.68,10.68,0,0,1,7.47,2.53A8.71,8.71,0,0,1,39,19.66,9.1,9.1,0,0,1,37.52,24.72Z"/></g></svg>
diff --git a/public/assets/images/icons/black/question-circle-full.svg b/public/assets/images/icons/black/question-circle-full.svg
index 74dd49566007a8a28defdc240f489b818261ae0a..0f7739e36003af1665453d45b4212a6ccda37343 100644
--- a/public/assets/images/icons/black/question-circle-full.svg
+++ b/public/assets/images/icons/black/question-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/question-circle.svg b/public/assets/images/icons/black/question-circle.svg
index 74dd49566007a8a28defdc240f489b818261ae0a..0f7739e36003af1665453d45b4212a6ccda37343 100644
--- a/public/assets/images/icons/black/question-circle.svg
+++ b/public/assets/images/icons/black/question-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/refresh.svg b/public/assets/images/icons/black/refresh.svg
index 3df8a33938f6f47cdeb59656c51bcb22409efa4e..e38e44b2f9cee5efba51ce8a14e1fc9cf5263b51 100644
--- a/public/assets/images/icons/black/refresh.svg
+++ b/public/assets/images/icons/black/refresh.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00000;}</style></defs><g id="refresh"><path class="cls-1" d="M27,44A17,17,0,0,1,10.63,31.46l4.88,1.31,4.24-2.45L6.54,26.77,3,40l4.24-2.45,1-3.76A19.93,19.93,0,0,0,46.33,32l-2.9-.75A17,17,0,0,1,27,44Z"/><path class="cls-1" d="M46.76,16.51l-1,3.72a19.93,19.93,0,0,0-38.1,1.82l2.9.75a16.95,16.95,0,0,1,32.81-.2l-4.89-1.31-4.24,2.45,13.21,3.55L51,14.06Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00000;}</style></defs><g id="refresh"><path class="cls-1" d="M27,44A17,17,0,0,1,10.63,31.46l4.88,1.31,4.24-2.45L6.54,26.77,3,40l4.24-2.45,1-3.76A19.93,19.93,0,0,0,46.33,32l-2.9-.75A17,17,0,0,1,27,44Z"/><path class="cls-1" d="M46.76,16.51l-1,3.72a19.93,19.93,0,0,0-38.1,1.82l2.9.75a16.95,16.95,0,0,1,32.81-.2l-4.89-1.31-4.24,2.45,13.21,3.55L51,14.06Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/remove-circle-full.svg b/public/assets/images/icons/black/remove-circle-full.svg
index bf3a3e5396b869113e6f2b58c74dd60938e0afdb..6f231b9e3f917af5d24633439f08cfc9571c07c6 100644
--- a/public/assets/images/icons/black/remove-circle-full.svg
+++ b/public/assets/images/icons/black/remove-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/remove-circle.svg b/public/assets/images/icons/black/remove-circle.svg
index bf3a3e5396b869113e6f2b58c74dd60938e0afdb..6f231b9e3f917af5d24633439f08cfc9571c07c6 100644
--- a/public/assets/images/icons/black/remove-circle.svg
+++ b/public/assets/images/icons/black/remove-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/remove.svg b/public/assets/images/icons/black/remove.svg
index f9439a8e40aa5446f415a8727def1dcb0030a5b4..e4bad424d0ca4ff33be6b3028ff27e795fac7806 100644
--- a/public/assets/images/icons/black/remove.svg
+++ b/public/assets/images/icons/black/remove.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="48 32 48 22 6 22 6 32 48 32"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="48 32 48 22 6 22 6 32 48 32"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/resources-broken.svg b/public/assets/images/icons/black/resources-broken.svg
index acc17bdeaecc19682978c94645edbc632d16b685..2bb6c4828076bf6ca4b7202e12c192178d539846 100644
--- a/public/assets/images/icons/black/resources-broken.svg
+++ b/public/assets/images/icons/black/resources-broken.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="resources-broken"><polygon class="cls-1" points="24.93 49.54 24.93 36.7 22.46 49.54 24.93 49.54"/><polygon class="cls-1" points="37.76 4.43 31.82 4.43 30.57 10.91 32.8 8.65 36.05 11.94 28.99 19.09 27.54 26.65 37.76 26.65 37.76 4.43"/><path class="cls-1" d="M28.76,31V53H50.69V31Zm14.1,11h0l4.45,4.47L44.18,49.6l-4.45-4.47L35.28,49.6l-3.14-3.15L36.59,42h0l-4.44-4.47L33.7,36l1.58-1.58,4.45,4.47,4.45-4.47,3.13,3.15L42.86,42Z"/><polygon class="cls-1" points="3 27.51 3 49.54 18.82 49.54 19.47 46.14 16.1 46.14 16.1 40.35 11.83 40.35 11.83 46.14 7.76 46.14 7.76 38.74 6.55 38.74 13.97 30.91 20.98 38.31 23.06 27.51 3 27.51"/><polygon class="cls-1" points="20.18 42.47 20.89 38.74 20.18 38.74 20.18 42.47"/><polygon class="cls-1" points="15.86 0.97 15.86 23.19 23.89 23.19 24.61 19.43 17.57 12.29 20.81 9 24.92 13.18 26.04 12.05 28.17 0.97 15.86 0.97"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="resources-broken"><polygon class="cls-1" points="24.93 49.54 24.93 36.7 22.46 49.54 24.93 49.54"/><polygon class="cls-1" points="37.76 4.43 31.82 4.43 30.57 10.91 32.8 8.65 36.05 11.94 28.99 19.09 27.54 26.65 37.76 26.65 37.76 4.43"/><path class="cls-1" d="M28.76,31V53H50.69V31Zm14.1,11h0l4.45,4.47L44.18,49.6l-4.45-4.47L35.28,49.6l-3.14-3.15L36.59,42h0l-4.44-4.47L33.7,36l1.58-1.58,4.45,4.47,4.45-4.47,3.13,3.15L42.86,42Z"/><polygon class="cls-1" points="3 27.51 3 49.54 18.82 49.54 19.47 46.14 16.1 46.14 16.1 40.35 11.83 40.35 11.83 46.14 7.76 46.14 7.76 38.74 6.55 38.74 13.97 30.91 20.98 38.31 23.06 27.51 3 27.51"/><polygon class="cls-1" points="20.18 42.47 20.89 38.74 20.18 38.74 20.18 42.47"/><polygon class="cls-1" points="15.86 0.97 15.86 23.19 23.89 23.19 24.61 19.43 17.57 12.29 20.81 9 24.92 13.18 26.04 12.05 28.17 0.97 15.86 0.97"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/resources.svg b/public/assets/images/icons/black/resources.svg
index 50e4b0794bfd29ada44b50f16ffb9a184e605ae9..098305512cad6895b0b4448954364b85aeb621d5 100644
--- a/public/assets/images/icons/black/resources.svg
+++ b/public/assets/images/icons/black/resources.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="resources"><path class="cls-1" d="M29,29V51H51V29ZM47.61,44.46,44.46,47.6,40,43.14,35.54,47.6l-3.15-3.14L36.86,40,32.4,35.53l3.14-3.14L40,36.86l4.46-4.47,3.15,3.15L43.14,40Z"/><path class="cls-1" d="M16,3V25H38V3Zm9.12,18.6-7.4-7.4L21,11l4.14,4.14L33,7.18l3.26,3.25Z"/><path class="cls-1" d="M3,29V51H25V29ZM20.23,40.21V47.6H16.14V41.82H11.86V47.6H7.77V40.21H6.56L14,32.39l7.44,7.82Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="resources"><path class="cls-1" d="M29,29V51H51V29ZM47.61,44.46,44.46,47.6,40,43.14,35.54,47.6l-3.15-3.14L36.86,40,32.4,35.53l3.14-3.14L40,36.86l4.46-4.47,3.15,3.15L43.14,40Z"/><path class="cls-1" d="M16,3V25H38V3Zm9.12,18.6-7.4-7.4L21,11l4.14,4.14L33,7.18l3.26,3.25Z"/><path class="cls-1" d="M3,29V51H25V29ZM20.23,40.21V47.6H16.14V41.82H11.86V47.6H7.77V40.21H6.56L14,32.39l7.44,7.82Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/roles2.svg b/public/assets/images/icons/black/roles2.svg
index 9806de364e836f2efa2dcf84c0188c69d2827bf2..a7b16e353b60acbb080d699abb3f2e9ba9ce3d5b 100644
--- a/public/assets/images/icons/black/roles2.svg
+++ b/public/assets/images/icons/black/roles2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="roles2"><path class="cls-1" d="M19,10a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-5A10,10,0,1,0,29,15,10,10,0,0,0,19,5Z"/><path class="cls-1" d="M30,44v0H8V36a3,3,0,0,1,3-3H22.86L26,28H11a8,8,0,0,0-8,8V49H35V44Z"/><path class="cls-1" d="M48.35,5.68a5.4,5.4,0,0,0-7.22,1.87L40.25,9l-1.33,2.21L27,31.1,27.13,41l9.05-4.78L48.09,16.33l1.32-2.21.88-1.47A5,5,0,0,0,48.35,5.68ZM34.26,34.3l-1.66.88-2.91-1.62,0-1.79L41.21,12.5l4.59,2.55Zm8.28-24,.88-1.48A2.71,2.71,0,0,1,47,7.89a2.5,2.5,0,0,1,1,3.48l-.88,1.48Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="roles2"><path class="cls-1" d="M19,10a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-5A10,10,0,1,0,29,15,10,10,0,0,0,19,5Z"/><path class="cls-1" d="M30,44v0H8V36a3,3,0,0,1,3-3H22.86L26,28H11a8,8,0,0,0-8,8V49H35V44Z"/><path class="cls-1" d="M48.35,5.68a5.4,5.4,0,0,0-7.22,1.87L40.25,9l-1.33,2.21L27,31.1,27.13,41l9.05-4.78L48.09,16.33l1.32-2.21.88-1.47A5,5,0,0,0,48.35,5.68ZM34.26,34.3l-1.66.88-2.91-1.62,0-1.79L41.21,12.5l4.59,2.55Zm8.28-24,.88-1.48A2.71,2.71,0,0,1,47,7.89a2.5,2.5,0,0,1,1,3.48l-.88,1.48Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/room-clear.svg b/public/assets/images/icons/black/room-clear.svg
index d032d5389f9db6eeb94e7ed69f56bf1140d2e6e2..b57a792182ab1392e38428b360b05c47a9d0c171 100644
--- a/public/assets/images/icons/black/room-clear.svg
+++ b/public/assets/images/icons/black/room-clear.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.7.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4.6 8.5l-2.3-2.3 1-1 1.3 1.3L9.9 9l1 1-3.5 3.5z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.7.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4.6 8.5l-2.3-2.3 1-1 1.3 1.3L9.9 9l1 1-3.5 3.5z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/room-occupied.svg b/public/assets/images/icons/black/room-occupied.svg
index 3295e4ec034b09c3b2144f03594857072eea92c4..d1033cb2e31e031419546f2d76700dbcb60b1656 100644
--- a/public/assets/images/icons/black/room-occupied.svg
+++ b/public/assets/images/icons/black/room-occupied.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.7.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-1.5 7.9l-1 1L8 12.5 6.5 14l-1-1L7 11.4 5.5 10l1-1L8 10.4 9.5 9l1 1L9 11.4l1.5 1.5z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.7.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-1.5 7.9l-1 1L8 12.5 6.5 14l-1-1L7 11.4 5.5 10l1-1L8 10.4 9.5 9l1 1L9 11.4l1.5 1.5z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/room-request.svg b/public/assets/images/icons/black/room-request.svg
index da156b75b9ec94334eedc09514e072d05e99f1f9..2f725059f7791ac836af53b5ce72989140ae55ab 100644
--- a/public/assets/images/icons/black/room-request.svg
+++ b/public/assets/images/icons/black/room-request.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1.1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.8.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4 8.7c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7zm1-2.8c-.3.3-.4.6-.4.9v.1h-1v-.2c0-.4.1-.8.4-1.2.2-.3.4-.5.4-.8 0-.3-.2-.4-.6-.5-.3 0-.6.1-.8.2l-.1-.7c.3-.2.7-.3 1.3-.3 1 0 1.5.6 1.5 1.2-.1.6-.5.9-.7 1.3z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1.1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.8.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4 8.7c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7zm1-2.8c-.3.3-.4.6-.4.9v.1h-1v-.2c0-.4.1-.8.4-1.2.2-.3.4-.5.4-.8 0-.3-.2-.4-.6-.5-.3 0-.6.1-.8.2l-.1-.7c.3-.2.7-.3 1.3-.3 1 0 1.5.6 1.5 1.2-.1.6-.5.9-.7 1.3z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/room.svg b/public/assets/images/icons/black/room.svg
index 5cce3a7339831951bfde0866289e8b28e7f27b70..8e6bd1ec10c9ed97621882b2736dc51a35a9165b 100644
--- a/public/assets/images/icons/black/room.svg
+++ b/public/assets/images/icons/black/room.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="room"><polygon points="51 37.2 44.14 37.2 44.14 43.94 9.86 43.94 9.86 9.65 44.14 9.77 44.14 16.62 51 16.62 51 2.79 3 2.79 3 50.79 51 50.79 51 37.2"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="room"><polygon points="51 37.2 44.14 37.2 44.14 43.94 9.86 43.94 9.86 9.65 44.14 9.77 44.14 16.62 51 16.62 51 2.79 3 2.79 3 50.79 51 50.79 51 37.2"/></g></svg>
diff --git a/public/assets/images/icons/black/rotate-left.svg b/public/assets/images/icons/black/rotate-left.svg
index cb0876c7c7fb5993c1083cb49a70259fc9875a2f..249826f69c7deefe35ca3e022841c38c4ebdb88a 100644
--- a/public/assets/images/icons/black/rotate-left.svg
+++ b/public/assets/images/icons/black/rotate-left.svg
@@ -1 +1 @@
-<svg data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15 11.15L11.25.94 1 4.66l3.75 10.21L11 12.59a5.78 5.78 0 01-.23 2.18l1 .29a7.11 7.11 0 00.23-2.82zm-9.65 2.44l-3-8.33 8.33-3 3 8.33-1.87.68c-.06-.23-.11-.46-.19-.69a7.2 7.2 0 00-4.1-4.2l3-1.08-.35-.94-4.81 1.71 1.75 4.79.94-.34-1.23-3.37a6.2 6.2 0 013.86 3.74c.08.23.13.46.19.69z" fill="#010101"/></svg>
\ No newline at end of file
+<svg width="16" height="16" data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15 11.15L11.25.94 1 4.66l3.75 10.21L11 12.59a5.78 5.78 0 01-.23 2.18l1 .29a7.11 7.11 0 00.23-2.82zm-9.65 2.44l-3-8.33 8.33-3 3 8.33-1.87.68c-.06-.23-.11-.46-.19-.69a7.2 7.2 0 00-4.1-4.2l3-1.08-.35-.94-4.81 1.71 1.75 4.79.94-.34-1.23-3.37a6.2 6.2 0 013.86 3.74c.08.23.13.46.19.69z" fill="#010101"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/rotate-right.svg b/public/assets/images/icons/black/rotate-right.svg
index 1f32b0177efa0b0d798e140bf4aae5c4ac5c40ac..a02e46d224e18d21e540b717279da8dbb186af30 100644
--- a/public/assets/images/icons/black/rotate-right.svg
+++ b/public/assets/images/icons/black/rotate-right.svg
@@ -1 +1 @@
-<svg data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.25 14.87L15 4.66 4.75.94 1 11.15l3 1.09a7.11 7.11 0 00.24 2.82l1-.29A6 6 0 015 12.59zm-8.93-4.31l3-8.33 8.33 3-3 8.33-5.52-2c.06-.23.11-.46.19-.69a6.2 6.2 0 013.86-3.72L8 10.52l.94.34 1.75-4.79-4.84-1.74-.35.94 3 1.08a7.2 7.2 0 00-4.1 4.2c-.08.23-.13.46-.19.69z" fill="#010101"/></svg>
\ No newline at end of file
+<svg width="16" height="16" data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.25 14.87L15 4.66 4.75.94 1 11.15l3 1.09a7.11 7.11 0 00.24 2.82l1-.29A6 6 0 015 12.59zm-8.93-4.31l3-8.33 8.33 3-3 8.33-5.52-2c.06-.23.11-.46.19-.69a6.2 6.2 0 013.86-3.72L8 10.52l.94.34 1.75-4.79-4.84-1.74-.35.94 3 1.08a7.2 7.2 0 00-4.1 4.2c-.08.23-.13.46-.19.69z" fill="#010101"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/schedule.svg b/public/assets/images/icons/black/schedule.svg
index 06385b02f887992d62a4fc7ddde018a69c10e75f..09c03b252c8138c50b73d796429f2d603ec3fa1c 100644
--- a/public/assets/images/icons/black/schedule.svg
+++ b/public/assets/images/icons/black/schedule.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M18.68,37.5V31.66L14.35,37.5Zm18-21.06a2.83,2.83,0,0,0,2.83-2.82V5.82a2.83,2.83,0,0,0-5.65,0v7.8A2.82,2.82,0,0,0,36.73,16.44Zm-19.46,0a2.82,2.82,0,0,0,2.82-2.82V5.82a2.82,2.82,0,0,0-5.64,0v7.8A2.82,2.82,0,0,0,17.27,16.44ZM43,12.05v1.89a6.3,6.3,0,0,1-12.6,0V12.05H23.57v1.89a6.3,6.3,0,0,1-12.6,0V12.05H3V51H51V12.05ZM25.36,41.2a3.35,3.35,0,0,1-1.87.46h-.31v2a2.76,2.76,0,0,1-.6,1.93,2.13,2.13,0,0,1-1.62.7h0a2.12,2.12,0,0,1-1.64-.71,2.79,2.79,0,0,1-.61-1.92v-2H12.3A3.38,3.38,0,0,1,10,40.93a2.63,2.63,0,0,1-.83-2,1.94,1.94,0,0,1,.13-.71,3.6,3.6,0,0,1,.34-.68c.13-.2.28-.41.42-.59s.31-.41.51-.68l7.29-9.76A13.23,13.23,0,0,1,19.08,25a2.08,2.08,0,0,1,1.48-.57,2.49,2.49,0,0,1,2,.78,3.26,3.26,0,0,1,.66,2.14V37.51h.06a4.62,4.62,0,0,1,1.92.33,1.77,1.77,0,0,1,.95,1.75A1.83,1.83,0,0,1,25.36,41.2Zm16.35,4.13A2.3,2.3,0,0,1,40,46H29.8a2.71,2.71,0,0,1-1.95-.72,2.36,2.36,0,0,1-.74-1.72A4.06,4.06,0,0,1,27.53,42a5.32,5.32,0,0,1,.92-1.44q1.83-1.9,3.33-3.27a21.23,21.23,0,0,1,2.15-1.83,11.55,11.55,0,0,0,1.8-1.53,6.26,6.26,0,0,0,1.05-1.51A3.46,3.46,0,0,0,37.12,31a2.44,2.44,0,0,0-.34-1.31,2.41,2.41,0,0,0-.94-.88,3,3,0,0,0-1.32-.33,2.72,2.72,0,0,0-2.4,1.35,7.69,7.69,0,0,0-.4,1,5.19,5.19,0,0,1-.82,1.58,2,2,0,0,1-1.6.69,2.11,2.11,0,0,1-1.52-.61,2.24,2.24,0,0,1-.61-1.62,5.64,5.64,0,0,1,.47-2.18A6.06,6.06,0,0,1,29,26.62a6.83,6.83,0,0,1,2.32-1.47,8.85,8.85,0,0,1,3.25-.56,9.35,9.35,0,0,1,3.81.71A6.19,6.19,0,0,1,42,30.88,6.37,6.37,0,0,1,41,34.26a10.22,10.22,0,0,1-1.82,2.31c-.6.54-1.59,1.37-3,2.5a22.87,22.87,0,0,0-2.78,2.57h6.12a3.14,3.14,0,0,1,2,.55,2,2,0,0,1,.77,1.62A2.15,2.15,0,0,1,41.71,45.33Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M18.68,37.5V31.66L14.35,37.5Zm18-21.06a2.83,2.83,0,0,0,2.83-2.82V5.82a2.83,2.83,0,0,0-5.65,0v7.8A2.82,2.82,0,0,0,36.73,16.44Zm-19.46,0a2.82,2.82,0,0,0,2.82-2.82V5.82a2.82,2.82,0,0,0-5.64,0v7.8A2.82,2.82,0,0,0,17.27,16.44ZM43,12.05v1.89a6.3,6.3,0,0,1-12.6,0V12.05H23.57v1.89a6.3,6.3,0,0,1-12.6,0V12.05H3V51H51V12.05ZM25.36,41.2a3.35,3.35,0,0,1-1.87.46h-.31v2a2.76,2.76,0,0,1-.6,1.93,2.13,2.13,0,0,1-1.62.7h0a2.12,2.12,0,0,1-1.64-.71,2.79,2.79,0,0,1-.61-1.92v-2H12.3A3.38,3.38,0,0,1,10,40.93a2.63,2.63,0,0,1-.83-2,1.94,1.94,0,0,1,.13-.71,3.6,3.6,0,0,1,.34-.68c.13-.2.28-.41.42-.59s.31-.41.51-.68l7.29-9.76A13.23,13.23,0,0,1,19.08,25a2.08,2.08,0,0,1,1.48-.57,2.49,2.49,0,0,1,2,.78,3.26,3.26,0,0,1,.66,2.14V37.51h.06a4.62,4.62,0,0,1,1.92.33,1.77,1.77,0,0,1,.95,1.75A1.83,1.83,0,0,1,25.36,41.2Zm16.35,4.13A2.3,2.3,0,0,1,40,46H29.8a2.71,2.71,0,0,1-1.95-.72,2.36,2.36,0,0,1-.74-1.72A4.06,4.06,0,0,1,27.53,42a5.32,5.32,0,0,1,.92-1.44q1.83-1.9,3.33-3.27a21.23,21.23,0,0,1,2.15-1.83,11.55,11.55,0,0,0,1.8-1.53,6.26,6.26,0,0,0,1.05-1.51A3.46,3.46,0,0,0,37.12,31a2.44,2.44,0,0,0-.34-1.31,2.41,2.41,0,0,0-.94-.88,3,3,0,0,0-1.32-.33,2.72,2.72,0,0,0-2.4,1.35,7.69,7.69,0,0,0-.4,1,5.19,5.19,0,0,1-.82,1.58,2,2,0,0,1-1.6.69,2.11,2.11,0,0,1-1.52-.61,2.24,2.24,0,0,1-.61-1.62,5.64,5.64,0,0,1,.47-2.18A6.06,6.06,0,0,1,29,26.62a6.83,6.83,0,0,1,2.32-1.47,8.85,8.85,0,0,1,3.25-.56,9.35,9.35,0,0,1,3.81.71A6.19,6.19,0,0,1,42,30.88,6.37,6.37,0,0,1,41,34.26a10.22,10.22,0,0,1-1.82,2.31c-.6.54-1.59,1.37-3,2.5a22.87,22.87,0,0,0-2.78,2.57h6.12a3.14,3.14,0,0,1,2,.55,2,2,0,0,1,.77,1.62A2.15,2.15,0,0,1,41.71,45.33Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/schedule2.svg b/public/assets/images/icons/black/schedule2.svg
index 7be300b4ed72cbfb01fc7bcf5082a7bdefc0415a..13d4c4c98c953bcd8157fe4e09c4af632cad0376 100644
--- a/public/assets/images/icons/black/schedule2.svg
+++ b/public/assets/images/icons/black/schedule2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><rect class="a" x="17.93" y="6.97" width="18.09" height="5"/><polygon class="a" points="40.93 6.97 40.93 11.97 46 11.97 46 45.97 8 45.97 8 11.97 13.02 11.97 13.02 6.97 3 6.97 3 50.97 51 50.97 51 6.97 40.93 6.97"/><path class="a" d="M35.47,16A2.62,2.62,0,0,0,38,13.24V5.69a2.51,2.51,0,1,0-5,0v7.55A2.63,2.63,0,0,0,35.47,16Z"/><path class="a" d="M18.52,16A2.63,2.63,0,0,0,21,13.24V5.69A2.63,2.63,0,0,0,18.52,3,2.62,2.62,0,0,0,16,5.69v7.55A2.62,2.62,0,0,0,18.52,16Z"/><path class="a" d="M20.45,36H14a1.92,1.92,0,0,1-2-2,2.77,2.77,0,0,1,.49-1.71l8-11.46A1.87,1.87,0,0,1,22.14,20c1.39,0,1.93.84,1.93,2.09V32.64h1.3a1.67,1.67,0,0,1,0,3.31h-1.3v3c0,1.22-.46,2-1.81,2s-1.81-.81-1.81-2Zm0-10.82H20.4l-5,7.51h5Z"/><path class="a" d="M40.29,36.94A1.59,1.59,0,0,1,42,38.77c0,1.3-.72,1.82-1.91,1.82h-9.7a2,2,0,0,1-2.12-2.14c0-2.06,1.63-4.36,4.86-6.65,3.6-2.55,4.84-3.07,4.84-5.42a2.72,2.72,0,0,0-2.72-2.93c-1.65,0-2.76.75-3.33,3.07-.26,1.08-.6,1.63-1.63,1.63a1.71,1.71,0,0,1-1.89-1.94c0-3.54,3.1-6.24,6.9-6.24,4.14,0,6.6,3.05,6.6,5.71,0,3.86-1.58,5.37-4.32,7.11-2.92,1.86-4.71,3.05-5,4.15Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><rect class="a" x="17.93" y="6.97" width="18.09" height="5"/><polygon class="a" points="40.93 6.97 40.93 11.97 46 11.97 46 45.97 8 45.97 8 11.97 13.02 11.97 13.02 6.97 3 6.97 3 50.97 51 50.97 51 6.97 40.93 6.97"/><path class="a" d="M35.47,16A2.62,2.62,0,0,0,38,13.24V5.69a2.51,2.51,0,1,0-5,0v7.55A2.63,2.63,0,0,0,35.47,16Z"/><path class="a" d="M18.52,16A2.63,2.63,0,0,0,21,13.24V5.69A2.63,2.63,0,0,0,18.52,3,2.62,2.62,0,0,0,16,5.69v7.55A2.62,2.62,0,0,0,18.52,16Z"/><path class="a" d="M20.45,36H14a1.92,1.92,0,0,1-2-2,2.77,2.77,0,0,1,.49-1.71l8-11.46A1.87,1.87,0,0,1,22.14,20c1.39,0,1.93.84,1.93,2.09V32.64h1.3a1.67,1.67,0,0,1,0,3.31h-1.3v3c0,1.22-.46,2-1.81,2s-1.81-.81-1.81-2Zm0-10.82H20.4l-5,7.51h5Z"/><path class="a" d="M40.29,36.94A1.59,1.59,0,0,1,42,38.77c0,1.3-.72,1.82-1.91,1.82h-9.7a2,2,0,0,1-2.12-2.14c0-2.06,1.63-4.36,4.86-6.65,3.6-2.55,4.84-3.07,4.84-5.42a2.72,2.72,0,0,0-2.72-2.93c-1.65,0-2.76.75-3.33,3.07-.26,1.08-.6,1.63-1.63,1.63a1.71,1.71,0,0,1-1.89-1.94c0-3.54,3.1-6.24,6.9-6.24,4.14,0,6.6,3.05,6.6,5.71,0,3.86-1.58,5.37-4.32,7.11-2.92,1.86-4.71,3.05-5,4.15Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/search.svg b/public/assets/images/icons/black/search.svg
index 26deb4577704abc4bb33da7f457860c275f9900b..6ecd1ea30712ef436beceb8ac95d9730e29711f3 100644
--- a/public/assets/images/icons/black/search.svg
+++ b/public/assets/images/icons/black/search.svg
@@ -1 +1 @@
-<svg id="Icons_NEUES_LAYOUT_2021" data-name="Icons – NEUES LAYOUT 2021" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="search2"><path class="cls-1" d="M49.54,42.46,38,31c-.14-.13-.3-.24-.45-.36a18.54,18.54,0,1,0-7,7c.12.15.23.31.36.45l11.5,11.5a5,5,0,0,0,7.08-7.08ZM9,21.5A12.5,12.5,0,1,1,21.5,34,12.52,12.52,0,0,1,9,21.5Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="Icons_NEUES_LAYOUT_2021" data-name="Icons – NEUES LAYOUT 2021" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="search2"><path class="cls-1" d="M49.54,42.46,38,31c-.14-.13-.3-.24-.45-.36a18.54,18.54,0,1,0-7,7c.12.15.23.31.36.45l11.5,11.5a5,5,0,0,0,7.08-7.08ZM9,21.5A12.5,12.5,0,1,1,21.5,34,12.52,12.52,0,0,1,9,21.5Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/service.svg b/public/assets/images/icons/black/service.svg
index b7f33c8822d4b0dd3c9def5f2a6e4034ac5ad024..077ab5f08aaf62c4f1c629341b9c85ca503e516c 100644
--- a/public/assets/images/icons/black/service.svg
+++ b/public/assets/images/icons/black/service.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/share.svg b/public/assets/images/icons/black/share.svg
index 71b341e018b3659d7ded6c69f215b627dd168f84..02ba5a240060e804c2be169e8fea7715fb92f794 100644
--- a/public/assets/images/icons/black/share.svg
+++ b/public/assets/images/icons/black/share.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/smiley.svg b/public/assets/images/icons/black/smiley.svg
index fc4387e7a69b1d89529efabb65d37dce0ee0e856..9c2a2c82c5f54ee1f15d406a63bff34920f1b986 100644
--- a/public/assets/images/icons/black/smiley.svg
+++ b/public/assets/images/icons/black/smiley.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00000;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3Zm0,45A21,21,0,1,1,48,27,21,21,0,0,1,27,48Z"/><path class="a" d="M32.24,25.23c2.18-.15,3.81-2.53,3.63-5.3s-2.11-4.91-4.3-4.77-3.82,2.53-3.63,5.3S30.05,25.37,32.24,25.23Z"/><path class="a" d="M21.26,25.83c2.18-.15,3.81-2.52,3.63-5.3s-2.11-4.91-4.3-4.76S16.77,18.29,17,21.06,19.07,26,21.26,25.83Z"/><path class="a" d="M44.25,23.67a1.5,1.5,0,1,0-3,.42,14.5,14.5,0,0,1-28.72,4.05,1.49,1.49,0,0,0-1.69-1.27A1.51,1.51,0,0,0,9.6,28.58a17.58,17.58,0,0,0,17.32,15,17,17,0,0,0,2.46-.17A17.52,17.52,0,0,0,44.25,23.67Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00000;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3Zm0,45A21,21,0,1,1,48,27,21,21,0,0,1,27,48Z"/><path class="a" d="M32.24,25.23c2.18-.15,3.81-2.53,3.63-5.3s-2.11-4.91-4.3-4.77-3.82,2.53-3.63,5.3S30.05,25.37,32.24,25.23Z"/><path class="a" d="M21.26,25.83c2.18-.15,3.81-2.52,3.63-5.3s-2.11-4.91-4.3-4.76S16.77,18.29,17,21.06,19.07,26,21.26,25.83Z"/><path class="a" d="M44.25,23.67a1.5,1.5,0,1,0-3,.42,14.5,14.5,0,0,1-28.72,4.05,1.49,1.49,0,0,0-1.69-1.27A1.51,1.51,0,0,0,9.6,28.58a17.58,17.58,0,0,0,17.32,15,17,17,0,0,0,2.46-.17A17.52,17.52,0,0,0,44.25,23.67Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/spiral.svg b/public/assets/images/icons/black/spiral.svg
index 46d8fa79a3c519c72c14a83a5bd19119b885ecdb..15c4babdaa9f2df2d31d52667d091e7e1476ff81 100644
--- a/public/assets/images/icons/black/spiral.svg
+++ b/public/assets/images/icons/black/spiral.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="spiral"><path class="cls-1" d="M3,27A24,24,0,1,0,27,3,24,24,0,0,0,3,27ZM44.57,16.35a20.42,20.42,0,0,1-8.48,27A16.06,16.06,0,0,1,14.31,37a12.49,12.49,0,0,1,4.93-17,9.67,9.67,0,0,1,13.12,3.81A7.33,7.33,0,0,1,33,29.47a7.41,7.41,0,0,1-3.55,4.42,5.59,5.59,0,0,1-7.58-2.21,4.13,4.13,0,0,1,1.63-5.61,3,3,0,0,1,4,1.17,1.67,1.67,0,1,0,2.93-1.61,6.33,6.33,0,0,0-8.58-2.49,7.49,7.49,0,0,0-2.95,10.15,8.94,8.94,0,0,0,12.12,3.52,10.73,10.73,0,0,0,4.24-14.58A13,13,0,0,0,17.63,17.1a15.84,15.84,0,0,0-6.25,21.51,19.26,19.26,0,0,0,5.8,6.46A20.56,20.56,0,1,1,44.57,16.35Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="spiral"><path class="cls-1" d="M3,27A24,24,0,1,0,27,3,24,24,0,0,0,3,27ZM44.57,16.35a20.42,20.42,0,0,1-8.48,27A16.06,16.06,0,0,1,14.31,37a12.49,12.49,0,0,1,4.93-17,9.67,9.67,0,0,1,13.12,3.81A7.33,7.33,0,0,1,33,29.47a7.41,7.41,0,0,1-3.55,4.42,5.59,5.59,0,0,1-7.58-2.21,4.13,4.13,0,0,1,1.63-5.61,3,3,0,0,1,4,1.17,1.67,1.67,0,1,0,2.93-1.61,6.33,6.33,0,0,0-8.58-2.49,7.49,7.49,0,0,0-2.95,10.15,8.94,8.94,0,0,0,12.12,3.52,10.73,10.73,0,0,0,4.24-14.58A13,13,0,0,0,17.63,17.1a15.84,15.84,0,0,0-6.25,21.51,19.26,19.26,0,0,0,5.8,6.46A20.56,20.56,0,1,1,44.57,16.35Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/staple.svg b/public/assets/images/icons/black/staple.svg
index d988cdadac45cf20d2125467030cccf8cf62472e..bdd2f925126ac18fc28d9654f762c5318cbafb4d 100644
--- a/public/assets/images/icons/black/staple.svg
+++ b/public/assets/images/icons/black/staple.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="staple"><path class="cls-1" d="M43.22,9.22a14.61,14.61,0,0,0-20.58,0L6.5,25.27l2.89,2.86,16.13-16a10.51,10.51,0,0,1,14.83,0,10.4,10.4,0,0,1,0,14.75l-16.14,16a7.24,7.24,0,0,1-10.18,0,7.16,7.16,0,0,1,0-10.13l14.13-14h0a3.93,3.93,0,0,1,5.54,0,3.88,3.88,0,0,1,0,5.5l-14.13,14,2.87,2.85,14.14-14a7.9,7.9,0,0,0,0-11.23,8,8,0,0,0-11.24,0h0L11.15,29.89a11.16,11.16,0,0,0,0,15.85,11.34,11.34,0,0,0,15.94,0l16.14-16A14.39,14.39,0,0,0,43.22,9.22Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="staple"><path class="cls-1" d="M43.22,9.22a14.61,14.61,0,0,0-20.58,0L6.5,25.27l2.89,2.86,16.13-16a10.51,10.51,0,0,1,14.83,0,10.4,10.4,0,0,1,0,14.75l-16.14,16a7.24,7.24,0,0,1-10.18,0,7.16,7.16,0,0,1,0-10.13l14.13-14h0a3.93,3.93,0,0,1,5.54,0,3.88,3.88,0,0,1,0,5.5l-14.13,14,2.87,2.85,14.14-14a7.9,7.9,0,0,0,0-11.23,8,8,0,0,0-11.24,0h0L11.15,29.89a11.16,11.16,0,0,0,0,15.85,11.34,11.34,0,0,0,15.94,0l16.14-16A14.39,14.39,0,0,0,43.22,9.22Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/stop.svg b/public/assets/images/icons/black/stop.svg
index f316686b32d6655a83ab51ed5aa62f84f0fca105..1d5fe98eec137ad68af136a553e8959e4d294f3b 100644
--- a/public/assets/images/icons/black/stop.svg
+++ b/public/assets/images/icons/black/stop.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><rect class="a" x="10" y="8" width="34" height="38"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><rect class="a" x="10" y="8" width="34" height="38"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/table-of-contents.svg b/public/assets/images/icons/black/table-of-contents.svg
index 95fc95d9d9002e5ae718efdaeb1a74d710dc32f9..004c9ecab397ebe8fc356fd17c4c15d88572cedd 100644
--- a/public/assets/images/icons/black/table-of-contents.svg
+++ b/public/assets/images/icons/black/table-of-contents.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="table-of-contents"><rect class="cls-1" x="40.71" y="2.89" width="10.29" height="6.86"/><rect class="cls-1" x="3" y="2.89" width="30.86" height="6.86"/><rect class="cls-1" x="3" y="16.61" width="30.86" height="6.86"/><rect class="cls-1" x="13.29" y="30.32" width="20.57" height="6.86"/><rect class="cls-1" x="3" y="44.04" width="30.86" height="6.86"/><rect class="cls-1" x="40.71" y="16.61" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="30.32" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="44.04" width="10.29" height="6.86"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="table-of-contents"><rect class="cls-1" x="40.71" y="2.89" width="10.29" height="6.86"/><rect class="cls-1" x="3" y="2.89" width="30.86" height="6.86"/><rect class="cls-1" x="3" y="16.61" width="30.86" height="6.86"/><rect class="cls-1" x="13.29" y="30.32" width="20.57" height="6.86"/><rect class="cls-1" x="3" y="44.04" width="30.86" height="6.86"/><rect class="cls-1" x="40.71" y="16.61" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="30.32" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="44.04" width="10.29" height="6.86"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/test.svg b/public/assets/images/icons/black/test.svg
index 8641b69627945e68b456005aaee048f2ca6b8782..5d3ac10f93cc30077d905d6245665ea4a683071a 100644
--- a/public/assets/images/icons/black/test.svg
+++ b/public/assets/images/icons/black/test.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="test"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><polygon class="cls-1" points="49 8.99 46.54 6.5 40.58 12.53 37.45 9.38 35 11.86 40.58 17.5 49 8.99"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="test"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><polygon class="cls-1" points="49 8.99 46.54 6.5 40.58 12.53 37.45 9.38 35 11.86 40.58 17.5 49 8.99"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/tools.svg b/public/assets/images/icons/black/tools.svg
index 9d25add9e6a4caf6e6ceb15aca3228c02d984671..4128b790f3b43265c0ffe76aab449cd77fb937e4 100644
--- a/public/assets/images/icons/black/tools.svg
+++ b/public/assets/images/icons/black/tools.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="tools"><path class="cls-1" d="M49.32,40.2,37.15,28,28,37.15,40.18,49.31a6.47,6.47,0,0,0,9.14-9.11Z"/><path class="cls-1" d="M26.08,16.94A11.61,11.61,0,0,0,11.28,3.51l6.35,6.36-1.84,5.72L9.86,17.64,3.5,11.27A11.63,11.63,0,0,0,16.93,26.09Z"/><g id="Edit"><polygon class="cls-1" points="3.12 50.72 8.73 48.99 4.91 45.16 3.12 50.72"/><polygon class="cls-1" points="6.53 39.85 14.02 47.39 44.34 17.21 36.85 9.67 6.53 39.85"/><path class="cls-1" d="M49.44,4.65A5.31,5.31,0,0,0,42,4.6l-3,3,7.49,7.55,3-3h0A5.31,5.31,0,0,0,49.44,4.65Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="tools"><path class="cls-1" d="M49.32,40.2,37.15,28,28,37.15,40.18,49.31a6.47,6.47,0,0,0,9.14-9.11Z"/><path class="cls-1" d="M26.08,16.94A11.61,11.61,0,0,0,11.28,3.51l6.35,6.36-1.84,5.72L9.86,17.64,3.5,11.27A11.63,11.63,0,0,0,16.93,26.09Z"/><g id="Edit"><polygon class="cls-1" points="3.12 50.72 8.73 48.99 4.91 45.16 3.12 50.72"/><polygon class="cls-1" points="6.53 39.85 14.02 47.39 44.34 17.21 36.85 9.67 6.53 39.85"/><path class="cls-1" d="M49.44,4.65A5.31,5.31,0,0,0,42,4.6l-3,3,7.49,7.55,3-3h0A5.31,5.31,0,0,0,49.44,4.65Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/topic.svg b/public/assets/images/icons/black/topic.svg
index 0e9b98045e6eb9843fd95880ee08606851835606..b0de716112abd640864beba8c647b730d73c287c 100644
--- a/public/assets/images/icons/black/topic.svg
+++ b/public/assets/images/icons/black/topic.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="topic"><path d="M42,9V48H12V9H42m3-3H9V51H45V6Z"/><rect x="20.81" y="3" width="12.09" height="8.9"/><rect x="18" y="23.81" width="17.99" height="6.06"/><rect x="18" y="32.8" width="17.99" height="6.3"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="topic"><path d="M42,9V48H12V9H42m3-3H9V51H45V6Z"/><rect x="20.81" y="3" width="12.09" height="8.9"/><rect x="18" y="23.81" width="17.99" height="6.06"/><rect x="18" y="32.8" width="17.99" height="6.3"/></g></svg>
diff --git a/public/assets/images/icons/black/trash.svg b/public/assets/images/icons/black/trash.svg
index 9a217b19751d8e197ff2bc046217a3cb58b1b391..267d7ef43793cf25f3b8d56ce86d19edbeaf1011 100644
--- a/public/assets/images/icons/black/trash.svg
+++ b/public/assets/images/icons/black/trash.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00000;}</style></defs><path class="a" d="M43,8H34.88a6.22,6.22,0,0,0-6.1-5H25.22a6.22,6.22,0,0,0-6.1,5H11a3,3,0,0,0-3,3v2H46V11A3,3,0,0,0,43,8ZM25.22,6h3.56a3.22,3.22,0,0,1,3,2H22.24A3.22,3.22,0,0,1,25.22,6Z"/><path class="a" d="M11,48a3,3,0,0,0,3,3H40a3,3,0,0,0,3-3V15H11Zm3-30H40V48H14Z"/><rect class="a" x="17" y="19.97" width="4" height="26"/><rect class="a" x="25" y="19.97" width="4" height="26"/><rect class="a" x="33" y="19.97" width="4" height="26"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00000;}</style></defs><path class="a" d="M43,8H34.88a6.22,6.22,0,0,0-6.1-5H25.22a6.22,6.22,0,0,0-6.1,5H11a3,3,0,0,0-3,3v2H46V11A3,3,0,0,0,43,8ZM25.22,6h3.56a3.22,3.22,0,0,1,3,2H22.24A3.22,3.22,0,0,1,25.22,6Z"/><path class="a" d="M11,48a3,3,0,0,0,3,3H40a3,3,0,0,0,3-3V15H11Zm3-30H40V48H14Z"/><rect class="a" x="17" y="19.97" width="4" height="26"/><rect class="a" x="25" y="19.97" width="4" height="26"/><rect class="a" x="33" y="19.97" width="4" height="26"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/upload.svg b/public/assets/images/icons/black/upload.svg
index 44b67063231c7a911509c52d05e0e5c48567e8a3..2a95b5625922e447c18016fa79d239b510a1f5ae 100644
--- a/public/assets/images/icons/black/upload.svg
+++ b/public/assets/images/icons/black/upload.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/upload2.svg b/public/assets/images/icons/black/upload2.svg
index 44b67063231c7a911509c52d05e0e5c48567e8a3..2a95b5625922e447c18016fa79d239b510a1f5ae 100644
--- a/public/assets/images/icons/black/upload2.svg
+++ b/public/assets/images/icons/black/upload2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/vcard.svg b/public/assets/images/icons/black/vcard.svg
index c82331297a4167655f0315b0a7053bbdc194a9c5..3a788055d9321890c003f9617c4b806e369ff635 100644
--- a/public/assets/images/icons/black/vcard.svg
+++ b/public/assets/images/icons/black/vcard.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,10V44H51V10Zm8,31V36.21A1.23,1.23,0,0,1,12.24,35H23.76A1.24,1.24,0,0,1,25,36.21V41Zm37,0H28V36.21A4.24,4.24,0,0,0,23.76,32H12.24A4.24,4.24,0,0,0,8,36.21V41H6V13H48Z"/><path class="a" d="M18.1,31a7,7,0,1,0-7-7A7,7,0,0,0,18.1,31Zm0-10.91A3.91,3.91,0,1,1,14.2,24,3.92,3.92,0,0,1,18.1,20.06Z"/><rect class="a" x="31" y="17.97" width="14" height="4"/><rect class="a" x="31" y="24.97" width="14" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><path class="a" d="M3,10V44H51V10Zm8,31V36.21A1.23,1.23,0,0,1,12.24,35H23.76A1.24,1.24,0,0,1,25,36.21V41Zm37,0H28V36.21A4.24,4.24,0,0,0,23.76,32H12.24A4.24,4.24,0,0,0,8,36.21V41H6V13H48Z"/><path class="a" d="M18.1,31a7,7,0,1,0-7-7A7,7,0,0,0,18.1,31Zm0-10.91A3.91,3.91,0,1,1,14.2,24,3.92,3.92,0,0,1,18.1,20.06Z"/><rect class="a" x="31" y="17.97" width="14" height="4"/><rect class="a" x="31" y="24.97" width="14" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/video.svg b/public/assets/images/icons/black/video.svg
index eeda2ff08d151922e9acb6fe7688415eac7dcd73..8621fdf930dbf64fe0c5a12bc83cc37afef17f2c 100644
--- a/public/assets/images/icons/black/video.svg
+++ b/public/assets/images/icons/black/video.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="video"><path class="cls-1" d="M48,15l-9,6V15.67A3.68,3.68,0,0,0,35.33,12H6.67A3.68,3.68,0,0,0,3,15.67V38.33A3.68,3.68,0,0,0,6.67,42H35.33A3.68,3.68,0,0,0,39,38.33V33l9,6h3V15ZM35.65,38.33a.33.33,0,0,1-.32.32H6.67a.33.33,0,0,1-.32-.32V15.67a.33.33,0,0,1,.32-.32H35.33a.33.33,0,0,1,.32.32Z"/><polygon class="cls-1" points="15 36 28.5 27 15 18 15 36"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="video"><path class="cls-1" d="M48,15l-9,6V15.67A3.68,3.68,0,0,0,35.33,12H6.67A3.68,3.68,0,0,0,3,15.67V38.33A3.68,3.68,0,0,0,6.67,42H35.33A3.68,3.68,0,0,0,39,38.33V33l9,6h3V15ZM35.65,38.33a.33.33,0,0,1-.32.32H6.67a.33.33,0,0,1-.32-.32V15.67a.33.33,0,0,1,.32-.32H35.33a.33.33,0,0,1,.32.32Z"/><polygon class="cls-1" points="15 36 28.5 27 15 18 15 36"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/video2.svg b/public/assets/images/icons/black/video2.svg
index 25a1e6794882a76adca706e72957b03bc56676f9..43505f16142033e1033d51b49f60c9040cfe23d5 100644
--- a/public/assets/images/icons/black/video2.svg
+++ b/public/assets/images/icons/black/video2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="video2"><path class="cls-1" d="M4.76,17.82,50.48,13l-.54-5.17a2.07,2.07,0,0,0-2-1.85h-.22L5.09,10.49a2.07,2.07,0,0,0-1.84,2.27l.55,5.16h0V43.79A4.2,4.2,0,0,0,8,48H46.55a4.2,4.2,0,0,0,4.21-4.21v-26Zm5.94,3.36L7.17,24.71V21.18ZM46.55,44.65H8a.86.86,0,0,1-.85-.86V27.88H8.73l6.71-6.7h3.19l-6.7,6.7h4.74l6.71-6.7h3.19l-6.71,6.7H24.6l6.71-6.7h3.2l-6.71,6.7h4.74l6.71-6.7h3.19l-6.71,6.7h4.75l6.7-6.7h.23v3l-3.74,3.73h3.74V43.79A.87.87,0,0,1,46.55,44.65Z"/><polygon class="cls-1" points="22.26 43.02 32.32 36.31 22.26 29.6 22.26 43.02"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="video2"><path class="cls-1" d="M4.76,17.82,50.48,13l-.54-5.17a2.07,2.07,0,0,0-2-1.85h-.22L5.09,10.49a2.07,2.07,0,0,0-1.84,2.27l.55,5.16h0V43.79A4.2,4.2,0,0,0,8,48H46.55a4.2,4.2,0,0,0,4.21-4.21v-26Zm5.94,3.36L7.17,24.71V21.18ZM46.55,44.65H8a.86.86,0,0,1-.85-.86V27.88H8.73l6.71-6.7h3.19l-6.7,6.7h4.74l6.71-6.7h3.19l-6.71,6.7H24.6l6.71-6.7h3.2l-6.71,6.7h4.74l6.71-6.7h3.19l-6.71,6.7h4.75l6.7-6.7h.23v3l-3.74,3.73h3.74V43.79A.87.87,0,0,1,46.55,44.65Z"/><polygon class="cls-1" points="22.26 43.02 32.32 36.31 22.26 29.6 22.26 43.02"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/visibility-checked.svg b/public/assets/images/icons/black/visibility-checked.svg
index 989044e470411bcf45d852486d27a3ff53d891f9..b725159fd008e3794b91f251d31e3a4eb9683c50 100644
--- a/public/assets/images/icons/black/visibility-checked.svg
+++ b/public/assets/images/icons/black/visibility-checked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
diff --git a/public/assets/images/icons/black/visibility-checked2.svg b/public/assets/images/icons/black/visibility-checked2.svg
index 989044e470411bcf45d852486d27a3ff53d891f9..b725159fd008e3794b91f251d31e3a4eb9683c50 100644
--- a/public/assets/images/icons/black/visibility-checked2.svg
+++ b/public/assets/images/icons/black/visibility-checked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
diff --git a/public/assets/images/icons/black/visibility-invisible.svg b/public/assets/images/icons/black/visibility-invisible.svg
index 1d74310a57e30674c452a7bd5016b4de4a7cb9ae..8a1dcb9c224e8ac1f8de8b3fd137478f7ef34340 100644
--- a/public/assets/images/icons/black/visibility-invisible.svg
+++ b/public/assets/images/icons/black/visibility-invisible.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g></svg>
diff --git a/public/assets/images/icons/black/visibility-visible.svg b/public/assets/images/icons/black/visibility-visible.svg
index 2b32f6d23672db785c2e0a920293ecea50b94b85..f3b7ad2fd478a483f4157998f7cb9c436277944a 100644
--- a/public/assets/images/icons/black/visibility-visible.svg
+++ b/public/assets/images/icons/black/visibility-visible.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="visibility-visible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/><path d="M27,18a9.08,9.08,0,0,0-2.51.39A4.11,4.11,0,0,1,26.3,21.7a4.18,4.18,0,0,1-4.19,4.19,4.13,4.13,0,0,1-3.54-2.08A8.82,8.82,0,0,0,18,27a9,9,0,1,0,9-9Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="visibility-visible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/><path d="M27,18a9.08,9.08,0,0,0-2.51.39A4.11,4.11,0,0,1,26.3,21.7a4.18,4.18,0,0,1-4.19,4.19,4.13,4.13,0,0,1-3.54-2.08A8.82,8.82,0,0,0,18,27a9,9,0,1,0,9-9Z"/></g></svg>
diff --git a/public/assets/images/icons/black/vote-stopped.svg b/public/assets/images/icons/black/vote-stopped.svg
index 2c206360bfac61cf73494f4ca7131785d7e169dd..4027c5dd0ccd6647964d4503ba490f4a3b7c33dc 100644
--- a/public/assets/images/icons/black/vote-stopped.svg
+++ b/public/assets/images/icons/black/vote-stopped.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="vote-stopped"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><rect class="cls-1" x="-1.53" y="25.22" width="57.55" height="3" transform="translate(-10.76 23.33) rotate(-39.35)"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="vote-stopped"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><rect class="cls-1" x="-1.53" y="25.22" width="57.55" height="3" transform="translate(-10.76 23.33) rotate(-39.35)"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/vote.svg b/public/assets/images/icons/black/vote.svg
index c2ed8d0e8ac1499a2224cede8a3ef22e11f9d95f..d7f9be1aac8c175b2e9bc5ccd10e0b933fbded59 100644
--- a/public/assets/images/icons/black/vote.svg
+++ b/public/assets/images/icons/black/vote.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="vote"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="vote"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/wiki.svg b/public/assets/images/icons/black/wiki.svg
index 1af51c340f70919a5aea338fdda19a77ffcacf03..4c365e427e725225b4c4bd25643eb226185105b5 100644
--- a/public/assets/images/icons/black/wiki.svg
+++ b/public/assets/images/icons/black/wiki.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="wiki"><path class="cls-1" d="M49.83,15a15.17,15.17,0,0,1-10.17,7.9,31.41,31.41,0,0,1,3.45,11.38C46.63,32.05,53.82,25.94,49.83,15ZM4.17,15c-4,10.94,3.2,17,6.72,19.28A31.41,31.41,0,0,1,14.34,22.9,15.17,15.17,0,0,1,4.17,15ZM27,16c-7.1,0-12.85,10.31-12.85,23h25.7C39.85,26.29,34.1,16,27,16Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="wiki"><path class="cls-1" d="M49.83,15a15.17,15.17,0,0,1-10.17,7.9,31.41,31.41,0,0,1,3.45,11.38C46.63,32.05,53.82,25.94,49.83,15ZM4.17,15c-4,10.94,3.2,17,6.72,19.28A31.41,31.41,0,0,1,14.34,22.9,15.17,15.17,0,0,1,4.17,15ZM27,16c-7.1,0-12.85,10.31-12.85,23h25.7C39.85,26.29,34.1,16,27,16Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/black/zoom-in.svg b/public/assets/images/icons/black/zoom-in.svg
index 1065353493c94ee16c7411edc4ca74ed9a6196c8..198b6a261e80b18f4db3f3fa5bb4a1377ba935dd 100644
--- a/public/assets/images/icons/black/zoom-in.svg
+++ b/public/assets/images/icons/black/zoom-in.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="zoom-in"><polygon points="30.44 2.99 30.44 6.42 47.57 6.42 47.57 23.55 51 23.55 51 2.99 30.44 2.99"/><polygon points="6.44 30.41 3.02 30.41 3.02 50.97 23.58 50.97 23.58 47.54 6.44 47.54 6.44 30.41"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="zoom-in"><polygon points="30.44 2.99 30.44 6.42 47.57 6.42 47.57 23.55 51 23.55 51 2.99 30.44 2.99"/><polygon points="6.44 30.41 3.02 30.41 3.02 50.97 23.58 50.97 23.58 47.54 6.44 47.54 6.44 30.41"/></g></svg>
diff --git a/public/assets/images/icons/black/zoom-in2.svg b/public/assets/images/icons/black/zoom-in2.svg
index a36a7c3fe8b5f65bddc3deb521322499a64c32f7..4ff8e3249f90d260092de1260f5c267ed008fbdc 100644
--- a/public/assets/images/icons/black/zoom-in2.svg
+++ b/public/assets/images/icons/black/zoom-in2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="zoom-in2"><path d="M39,15V39H15V15H39m3-3H12V42H42V12Z"/><polygon points="50.98 20.99 47.99 20.99 47.99 6 32.99 6 32.99 3 50.98 3 50.98 20.99"/><polygon points="21 50.98 3.01 50.98 3.01 32.99 6 32.99 6 47.98 21 47.98 21 50.98"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="zoom-in2"><path d="M39,15V39H15V15H39m3-3H12V42H42V12Z"/><polygon points="50.98 20.99 47.99 20.99 47.99 6 32.99 6 32.99 3 50.98 3 50.98 20.99"/><polygon points="21 50.98 3.01 50.98 3.01 32.99 6 32.99 6 47.98 21 47.98 21 50.98"/></g></svg>
diff --git a/public/assets/images/icons/black/zoom-out.svg b/public/assets/images/icons/black/zoom-out.svg
index 93892b0a215e8f50772b5d4acfb0a5d521506131..ab1903dc6e72b790c84c08d45a85c460c46bee2d 100644
--- a/public/assets/images/icons/black/zoom-out.svg
+++ b/public/assets/images/icons/black/zoom-out.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="zoom-out"><polygon points="51 23.55 30.44 23.55 30.44 2.99 33.86 2.99 33.86 20.12 51 20.12 51 23.55"/><polygon points="23.58 50.97 20.15 50.97 20.15 33.83 3.02 33.83 3.02 30.41 23.58 30.41 23.58 50.97"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="zoom-out"><polygon points="51 23.55 30.44 23.55 30.44 2.99 33.86 2.99 33.86 20.12 51 20.12 51 23.55"/><polygon points="23.58 50.97 20.15 50.97 20.15 33.83 3.02 33.83 3.02 30.41 23.58 30.41 23.58 50.97"/></g></svg>
diff --git a/public/assets/images/icons/black/zoom-out2.svg b/public/assets/images/icons/black/zoom-out2.svg
index 3a7fef7a2bafcd4d8bee9d96bcb73afe53b3805d..21d5813ff4129ff147eb812b0d100f1dd6688b65 100644
--- a/public/assets/images/icons/black/zoom-out2.svg
+++ b/public/assets/images/icons/black/zoom-out2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="zoom-out2"><path d="M51,18H42V12H36V3H33v9H12V33H3v3h9v6h6v9h3V42H42V21h9ZM39,15v3H36V15ZM15,39V36h3v3Zm24,0H21V33H15V15H33v6h6Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="zoom-out2"><path d="M51,18H42V12H36V3H33v9H12V33H3v3h9v6h6v9h3V42H42V21h9ZM39,15v3H36V15ZM15,39V36h3v3Zm24,0H21V33H15V15H33v6h6Z"/></g></svg>
diff --git a/public/assets/images/icons/blue/60a.svg b/public/assets/images/icons/blue/60a.svg
index b95953ad1017dccd52cad30d74b5ff11bb59cf07..b56ae3f1fbbeb0646bf881ae032b519223ef44ce 100644
--- a/public/assets/images/icons/blue/60a.svg
+++ b/public/assets/images/icons/blue/60a.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.09 8.09c0-1.57.82-2.28 1.7-2.28A1.69 1.69 0 016 6.32l-.5.58a.93.93 0 00-.65-.3C4.37 6.6 4 7 4 8.09s.33 1.35.68 1.35.53-.2.53-.68-.21-.61-.57-.61a.76.76 0 00-.64.46L3.94 8a1.18 1.18 0 01.89-.5 1.16 1.16 0 011.25 1.26 1.35 1.35 0 01-1.4 1.41c-.81 0-1.59-.61-1.59-2.08zM6.56 8c0-1.43.6-2.16 1.5-2.16S9.57 6.55 9.57 8s-.6 2.2-1.51 2.2-1.5-.8-1.5-2.2zm2.09 0c0-1.14-.26-1.4-.59-1.4s-.58.26-.58 1.4.26 1.45.58 1.45.59-.33.59-1.45zm1.44 1.18c0-.69.55-1.06 1.85-1.2a.46.46 0 00-.52-.47 1.79 1.79 0 00-.87.29l-.35-.64a2.74 2.74 0 011.4-.43c.84 0 1.31.48 1.31 1.49v1.87h-.8L12 9.76a1.46 1.46 0 01-.95.41.94.94 0 01-.96-.99zm1.85 0v-.61c-.7.09-.92.29-.92.54s.14.31.37.31a.76.76 0 00.55-.28zM8 1a7 7 0 107 7 7 7 0 00-7-7zm0 12.61A5.61 5.61 0 1113.61 8 5.62 5.62 0 018 13.61z" fill="#24437c"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.09 8.09c0-1.57.82-2.28 1.7-2.28A1.69 1.69 0 016 6.32l-.5.58a.93.93 0 00-.65-.3C4.37 6.6 4 7 4 8.09s.33 1.35.68 1.35.53-.2.53-.68-.21-.61-.57-.61a.76.76 0 00-.64.46L3.94 8a1.18 1.18 0 01.89-.5 1.16 1.16 0 011.25 1.26 1.35 1.35 0 01-1.4 1.41c-.81 0-1.59-.61-1.59-2.08zM6.56 8c0-1.43.6-2.16 1.5-2.16S9.57 6.55 9.57 8s-.6 2.2-1.51 2.2-1.5-.8-1.5-2.2zm2.09 0c0-1.14-.26-1.4-.59-1.4s-.58.26-.58 1.4.26 1.45.58 1.45.59-.33.59-1.45zm1.44 1.18c0-.69.55-1.06 1.85-1.2a.46.46 0 00-.52-.47 1.79 1.79 0 00-.87.29l-.35-.64a2.74 2.74 0 011.4-.43c.84 0 1.31.48 1.31 1.49v1.87h-.8L12 9.76a1.46 1.46 0 01-.95.41.94.94 0 01-.96-.99zm1.85 0v-.61c-.7.09-.92.29-.92.54s.14.31.37.31a.76.76 0 00.55-.28zM8 1a7 7 0 107 7 7 7 0 00-7-7zm0 12.61A5.61 5.61 0 1113.61 8 5.62 5.62 0 018 13.61z" fill="#24437c"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/accept.svg b/public/assets/images/icons/blue/accept.svg
index 40e7b08333de7c7fcd7fb435b4d2b8a15301d07f..80955297c980b8a8b825547357bcaddfd181ed84 100644
--- a/public/assets/images/icons/blue/accept.svg
+++ b/public/assets/images/icons/blue/accept.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/activity.svg b/public/assets/images/icons/blue/activity.svg
index aa1d0323d4e98c39e6a5ac6ca69707092fcacd41..49a51407bd2fbefec87f77ad92a9bbb44cc182bf 100644
--- a/public/assets/images/icons/blue/activity.svg
+++ b/public/assets/images/icons/blue/activity.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
diff --git a/public/assets/images/icons/blue/add-circle-full.svg b/public/assets/images/icons/blue/add-circle-full.svg
index a3a17954ebf82cc7d714c32ee299ffa0d241fa5f..e450f2b31e3f18ff40b7373e47906cbbc806faa5 100644
--- a/public/assets/images/icons/blue/add-circle-full.svg
+++ b/public/assets/images/icons/blue/add-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/add-circle.svg b/public/assets/images/icons/blue/add-circle.svg
index a3a17954ebf82cc7d714c32ee299ffa0d241fa5f..e450f2b31e3f18ff40b7373e47906cbbc806faa5 100644
--- a/public/assets/images/icons/blue/add-circle.svg
+++ b/public/assets/images/icons/blue/add-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/add.svg b/public/assets/images/icons/blue/add.svg
index 42702b9cbacd7b0511f81057b4249e9c067ba3d5..dac5e80503b522686ca7ba0f78a36119a387dcfd 100644
--- a/public/assets/images/icons/blue/add.svg
+++ b/public/assets/images/icons/blue/add.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/admin.svg b/public/assets/images/icons/blue/admin.svg
index e8d9a63a132e9d039f6badcdaa6f3a565cc6139a..323e15843511b0907036d132a99dd0caf19ae455 100644
--- a/public/assets/images/icons/blue/admin.svg
+++ b/public/assets/images/icons/blue/admin.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/aladdin.svg b/public/assets/images/icons/blue/aladdin.svg
index 2d783799a7754fdb14184e01abfdddc0efe6d2d8..8142d7c904d260f39d1ce113f080c58c38595b4c 100644
--- a/public/assets/images/icons/blue/aladdin.svg
+++ b/public/assets/images/icons/blue/aladdin.svg
@@ -1 +1 @@
-<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
+<svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
diff --git a/public/assets/images/icons/blue/archive.svg b/public/assets/images/icons/blue/archive.svg
index 628886b1f8aa567671cbfde437ea1260537dfc57..2539bf2ed4ae3c1f17b0288f84299c096eb53430 100644
--- a/public/assets/images/icons/blue/archive.svg
+++ b/public/assets/images/icons/blue/archive.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
diff --git a/public/assets/images/icons/blue/arr_1down.svg b/public/assets/images/icons/blue/arr_1down.svg
index d28f5c140528fa203618ec914c37a175ccbe1b78..2cbeab9970f48dd8b6de1367bf2406a9340b9658 100644
--- a/public/assets/images/icons/blue/arr_1down.svg
+++ b/public/assets/images/icons/blue/arr_1down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/arr_1left.svg b/public/assets/images/icons/blue/arr_1left.svg
index 66579dc0533dff7d475092976799e6a3e1ea0f97..196cf451f5fefe1c5b51a41e8f3956d8359a839d 100644
--- a/public/assets/images/icons/blue/arr_1left.svg
+++ b/public/assets/images/icons/blue/arr_1left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/arr_1right.svg b/public/assets/images/icons/blue/arr_1right.svg
index 6741ab1b0d2ad4bf86d467380c6ab34424e3944c..dbe9b870c26329a5da5134a324083ed9f78339e0 100644
--- a/public/assets/images/icons/blue/arr_1right.svg
+++ b/public/assets/images/icons/blue/arr_1right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/arr_1sort.svg b/public/assets/images/icons/blue/arr_1sort.svg
index 377b892bb6fdefa24433334a104f7f3d8ddb4ca3..3e7eee9abdd09c52024ea6c67b8f56ecb2e70b34 100755
--- a/public/assets/images/icons/blue/arr_1sort.svg
+++ b/public/assets/images/icons/blue/arr_1sort.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/arr_1up.svg b/public/assets/images/icons/blue/arr_1up.svg
index e2799ee31b31bc527ef1efdcf3b456ce51591539..169040af53ebbb0bc79f37fa101a4cc37d3e1068 100644
--- a/public/assets/images/icons/blue/arr_1up.svg
+++ b/public/assets/images/icons/blue/arr_1up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/arr_2down.svg b/public/assets/images/icons/blue/arr_2down.svg
index bc267dbed7cf9b7f8a65307fe9c5670dbe06aad1..752aa4c29b4e21bd00839fddcb0bbc3b38a72f96 100644
--- a/public/assets/images/icons/blue/arr_2down.svg
+++ b/public/assets/images/icons/blue/arr_2down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/arr_2left.svg b/public/assets/images/icons/blue/arr_2left.svg
index 6bf2aad03e1f8ebaa41a534cd50c9a6593e5a43b..996b9794af0cf73a378458a2c1d445dbce19f16b 100644
--- a/public/assets/images/icons/blue/arr_2left.svg
+++ b/public/assets/images/icons/blue/arr_2left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/arr_2right.svg b/public/assets/images/icons/blue/arr_2right.svg
index fa1a0dbdc26c58b9c45cb6d0f9afcc89c823397e..e527c991e6ad46875a6b83f39f7a8ce6c6d5a52f 100644
--- a/public/assets/images/icons/blue/arr_2right.svg
+++ b/public/assets/images/icons/blue/arr_2right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/arr_2up.svg b/public/assets/images/icons/blue/arr_2up.svg
index 7aeee5e4db6ec2ea8a851acd478909d9fc664363..8668dfecb78638591076fa964aa670d5cab6ac0d 100644
--- a/public/assets/images/icons/blue/arr_2up.svg
+++ b/public/assets/images/icons/blue/arr_2up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/arr_eol-down.svg b/public/assets/images/icons/blue/arr_eol-down.svg
index 282810c1adcdf3f2ed4a4adb89fd4e4a051597d9..050246f232004e0e26be15a835abecf9645236fc 100644
--- a/public/assets/images/icons/blue/arr_eol-down.svg
+++ b/public/assets/images/icons/blue/arr_eol-down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="47.98 10.98 37.36 10.98 26.98 21.36 16.61 10.98 5.99 10.98 26.98 31.98 47.98 10.98"/><rect class="a" x="24.51" y="19.48" width="5" height="42" transform="translate(67.5 13.47) rotate(90)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="47.98 10.98 37.36 10.98 26.98 21.36 16.61 10.98 5.99 10.98 26.98 31.98 47.98 10.98"/><rect class="a" x="24.51" y="19.48" width="5" height="42" transform="translate(67.5 13.47) rotate(90)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/arr_eol-left.svg b/public/assets/images/icons/blue/arr_eol-left.svg
index 0a9a0f5a41d7a11f98be13b181b968840e0ffcde..fba0c7a233f4d27cd5de723dd2f269ba372bfa83 100644
--- a/public/assets/images/icons/blue/arr_eol-left.svg
+++ b/public/assets/images/icons/blue/arr_eol-left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="43 6 43 16.63 32.63 27 43 37.37 43 48 22 27 43 6"/><rect class="a" x="11" y="5.97" width="5" height="42" transform="translate(27 53.94) rotate(-180)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="43 6 43 16.63 32.63 27 43 37.37 43 48 22 27 43 6"/><rect class="a" x="11" y="5.97" width="5" height="42" transform="translate(27 53.94) rotate(-180)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/arr_eol-right.svg b/public/assets/images/icons/blue/arr_eol-right.svg
index 1a88c4bc8ea59b46d5daab43dc0f8a56ef9a43a0..4a8c41cd59ce8deb5b9822e57a122ddb1042309c 100644
--- a/public/assets/images/icons/blue/arr_eol-right.svg
+++ b/public/assets/images/icons/blue/arr_eol-right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="11 6 11 16.63 21.37 27 11 37.37 11 48 32 27 11 6"/><rect class="a" x="38" y="5.97" width="5" height="42"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="11 6 11 16.63 21.37 27 11 37.37 11 48 32 27 11 6"/><rect class="a" x="38" y="5.97" width="5" height="42"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/arr_eol-up.svg b/public/assets/images/icons/blue/arr_eol-up.svg
index ad33f22e113b671292255dc2626137f8e0006822..a518ee18cdb8e0349e9647c1a9b5b3dc95b82fe7 100644
--- a/public/assets/images/icons/blue/arr_eol-up.svg
+++ b/public/assets/images/icons/blue/arr_eol-up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="6.01 42.98 16.64 42.98 27.02 32.61 37.39 42.98 48.02 42.98 27.02 21.98 6.01 42.98"/><rect class="a" x="24.48" y="-7.51" width="5" height="42" transform="translate(13.5 40.47) rotate(-90)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="6.01 42.98 16.64 42.98 27.02 32.61 37.39 42.98 48.02 42.98 27.02 21.98 6.01 42.98"/><rect class="a" x="24.48" y="-7.51" width="5" height="42" transform="translate(13.5 40.47) rotate(-90)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/audio.svg b/public/assets/images/icons/blue/audio.svg
index 27f7623456a705d7176c5cc7f3186c8e0e028de0..292bbd0f67ec8704564835e02e75b5f75940d93c 100644
--- a/public/assets/images/icons/blue/audio.svg
+++ b/public/assets/images/icons/blue/audio.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/audio2.svg b/public/assets/images/icons/blue/audio2.svg
index 27f7623456a705d7176c5cc7f3186c8e0e028de0..292bbd0f67ec8704564835e02e75b5f75940d93c 100644
--- a/public/assets/images/icons/blue/audio2.svg
+++ b/public/assets/images/icons/blue/audio2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/audio3.svg b/public/assets/images/icons/blue/audio3.svg
index ac9754e28eae004ba0499b1f056604e30c9b64a0..ac290ea1e9349f217c28d8494024b75bf4806098 100644
--- a/public/assets/images/icons/blue/audio3.svg
+++ b/public/assets/images/icons/blue/audio3.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="audio3"><path class="cls-1" d="M40.75,10H3.17V40.72a3.42,3.42,0,0,0,3.41,3.42h41A3.42,3.42,0,0,0,51,40.72V10Zm6.4,30.31H7V13.82h6.4v6.4H40.75v-6.4h6.4Z"/><path class="cls-1" d="M35.62,23.73a5.08,5.08,0,0,0-4.84,6.74H23.35a5.11,5.11,0,1,0-5.67,3.33v.09h17a5.64,5.64,0,0,0,.93.09,5.13,5.13,0,1,0,0-10.25Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="audio3"><path class="cls-1" d="M40.75,10H3.17V40.72a3.42,3.42,0,0,0,3.41,3.42h41A3.42,3.42,0,0,0,51,40.72V10Zm6.4,30.31H7V13.82h6.4v6.4H40.75v-6.4h6.4Z"/><path class="cls-1" d="M35.62,23.73a5.08,5.08,0,0,0-4.84,6.74H23.35a5.11,5.11,0,1,0-5.67,3.33v.09h17a5.64,5.64,0,0,0,.93.09,5.13,5.13,0,1,0,0-10.25Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/block-accordion.svg b/public/assets/images/icons/blue/block-accordion.svg
index 827a00e14419fee5edccb28d80fba0e2780ab6bc..7ac005aa3b89eb26c7c0a86e7dfb32c8177c6b7d 100644
--- a/public/assets/images/icons/blue/block-accordion.svg
+++ b/public/assets/images/icons/blue/block-accordion.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-accordion"><path class="cls-1" d="M18,7.5v39H48V7.5Zm27,36H21v-9H45Zm0-12H21v-9H45Zm-24-12v-9H45v9Z"/><polygon class="cls-1" points="12 10.5 9 10.5 9 13.5 6 13.5 6 16.5 9 16.5 9 19.5 12 19.5 12 16.5 15 16.5 15 13.5 12 13.5 12 10.5"/><polygon class="cls-1" points="12 22.49 9 22.49 9 25.49 6 25.49 6 28.49 9 28.49 9 31.49 12 31.49 12 28.49 15 28.49 15 25.49 12 25.49 12 22.49"/><polygon class="cls-1" points="12 34.49 9 34.49 9 37.49 6 37.49 6 40.48 9 40.48 9 43.48 12 43.48 12 40.48 15 40.48 15 37.49 12 37.49 12 34.49"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-accordion"><path class="cls-1" d="M18,7.5v39H48V7.5Zm27,36H21v-9H45Zm0-12H21v-9H45Zm-24-12v-9H45v9Z"/><polygon class="cls-1" points="12 10.5 9 10.5 9 13.5 6 13.5 6 16.5 9 16.5 9 19.5 12 19.5 12 16.5 15 16.5 15 13.5 12 13.5 12 10.5"/><polygon class="cls-1" points="12 22.49 9 22.49 9 25.49 6 25.49 6 28.49 9 28.49 9 31.49 12 31.49 12 28.49 15 28.49 15 25.49 12 25.49 12 22.49"/><polygon class="cls-1" points="12 34.49 9 34.49 9 37.49 6 37.49 6 40.48 9 40.48 9 43.48 12 43.48 12 40.48 15 40.48 15 37.49 12 37.49 12 34.49"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/block-canvas.svg b/public/assets/images/icons/blue/block-canvas.svg
index c208298bf4629c0f34b1fcc4f6085df870151cde..3f3a807240f4daf4306cb4307034840a465170e5 100644
--- a/public/assets/images/icons/blue/block-canvas.svg
+++ b/public/assets/images/icons/blue/block-canvas.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-canvas"><path class="cls-1" d="M48,8.91H6v30h31c2.48,4.54,5,8.6,5.87,8.24s0-4-1.12-8.24H48Zm-3,27H41c-1.64-5.56-3.55-11.1-3.55-11.1a3.38,3.38,0,0,0-6.28,2.52s2,4.1,4.32,8.58H9v-24H45Z"/><path class="cls-1" d="M28.29,16.91a3.29,3.29,0,0,1,.48,2.71s.05.05.07.08a2.31,2.31,0,0,0,.05.74,2.49,2.49,0,1,0,4.79-1.34A7.29,7.29,0,0,0,31,15.43c-1.84-1.26-4.83-1-4.86-.28S27.28,15.76,28.29,16.91Z"/><path class="cls-1" d="M16.33,24.14c.83-.06,1.42-1.34,1.31-2.86s-.86-2.72-1.69-2.66S14.53,20,14.64,21.48,15.5,24.2,16.33,24.14Z"/><path class="cls-1" d="M21.49,20.86c.66-.31.68-1.65.05-3S19.85,15.7,19.19,16s-.68,1.66,0,3S20.84,21.17,21.49,20.86Z"/><path class="cls-1" d="M15.47,31.66a9.41,9.41,0,0,0,6.31.26,8.64,8.64,0,0,0,4.94-4,8.5,8.5,0,0,0,.91-5.9c-1.56,3.58-3.73,6.22-6.76,7.08a10.41,10.41,0,0,1-4.77.34A16.91,16.91,0,0,1,11,27.7,8.46,8.46,0,0,0,15.47,31.66Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-canvas"><path class="cls-1" d="M48,8.91H6v30h31c2.48,4.54,5,8.6,5.87,8.24s0-4-1.12-8.24H48Zm-3,27H41c-1.64-5.56-3.55-11.1-3.55-11.1a3.38,3.38,0,0,0-6.28,2.52s2,4.1,4.32,8.58H9v-24H45Z"/><path class="cls-1" d="M28.29,16.91a3.29,3.29,0,0,1,.48,2.71s.05.05.07.08a2.31,2.31,0,0,0,.05.74,2.49,2.49,0,1,0,4.79-1.34A7.29,7.29,0,0,0,31,15.43c-1.84-1.26-4.83-1-4.86-.28S27.28,15.76,28.29,16.91Z"/><path class="cls-1" d="M16.33,24.14c.83-.06,1.42-1.34,1.31-2.86s-.86-2.72-1.69-2.66S14.53,20,14.64,21.48,15.5,24.2,16.33,24.14Z"/><path class="cls-1" d="M21.49,20.86c.66-.31.68-1.65.05-3S19.85,15.7,19.19,16s-.68,1.66,0,3S20.84,21.17,21.49,20.86Z"/><path class="cls-1" d="M15.47,31.66a9.41,9.41,0,0,0,6.31.26,8.64,8.64,0,0,0,4.94-4,8.5,8.5,0,0,0,.91-5.9c-1.56,3.58-3.73,6.22-6.76,7.08a10.41,10.41,0,0,1-4.77.34A16.91,16.91,0,0,1,11,27.7,8.46,8.46,0,0,0,15.47,31.66Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/block-comparison.svg b/public/assets/images/icons/blue/block-comparison.svg
index e588b2070913ae90b7d3318d498e041b615b1444..c90e78fe8bef470e18a9b16f7602c332f80d42dd 100644
--- a/public/assets/images/icons/blue/block-comparison.svg
+++ b/public/assets/images/icons/blue/block-comparison.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-comparison"><polygon class="cls-1" points="30.8 31 32.88 33.08 38.96 26.99 32.88 20.9 30.8 22.98 34.8 26.99 30.8 31"/><polygon class="cls-1" points="23.2 22.98 21.12 20.9 15.03 27 21.12 33.08 23.2 31 19.2 26.99 23.2 22.98"/><path class="cls-1" d="M48,12H28.5V9h-3v3H6V42H25.5v3h3V42H48ZM9,39V15H25.5V39Zm36,0H28.5V15H45Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-comparison"><polygon class="cls-1" points="30.8 31 32.88 33.08 38.96 26.99 32.88 20.9 30.8 22.98 34.8 26.99 30.8 31"/><polygon class="cls-1" points="23.2 22.98 21.12 20.9 15.03 27 21.12 33.08 23.2 31 19.2 26.99 23.2 22.98"/><path class="cls-1" d="M48,12H28.5V9h-3v3H6V42H25.5v3h3V42H48ZM9,39V15H25.5V39Zm36,0H28.5V15H45Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/block-eyecatcher.svg b/public/assets/images/icons/blue/block-eyecatcher.svg
index 1bea858a695ce0bde90219b7cb09d3e7983960e1..8b85de59953998abdbbdc8ca339f55a6d97ffa73 100644
--- a/public/assets/images/icons/blue/block-eyecatcher.svg
+++ b/public/assets/images/icons/blue/block-eyecatcher.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-eyecatcher"><g id="visibility-visible"><path class="cls-1" d="M27,17A20.39,20.39,0,0,1,44.57,27,20.39,20.39,0,0,1,9.43,27,20.35,20.35,0,0,1,27,17m0-3A23.36,23.36,0,0,0,6.31,26.42L6,27l.3.58a23.4,23.4,0,0,0,41.37,0L48,27l-.31-.57A23.36,23.36,0,0,0,27,14Z"/><path class="cls-1" d="M27,19.08a7.9,7.9,0,0,0-2.19.35,3.6,3.6,0,0,1,1.58,2.93A3.67,3.67,0,0,1,22.72,26a3.6,3.6,0,0,1-3.1-1.83A7.9,7.9,0,1,0,27,19.08Z"/></g><rect class="cls-1" x="6" y="5.91" width="9" height="3"/><rect class="cls-1" x="6" y="5.91" width="3" height="9"/><rect class="cls-1" x="38.99" y="5.91" width="9" height="3"/><rect class="cls-1" x="44.99" y="8.91" width="3" height="6"/><rect class="cls-1" x="44.99" y="38.89" width="3" height="9"/><rect class="cls-1" x="38.99" y="44.89" width="9" height="3"/><rect class="cls-1" x="6" y="38.89" width="3" height="9"/><rect class="cls-1" x="6" y="44.89" width="9" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-eyecatcher"><g id="visibility-visible"><path class="cls-1" d="M27,17A20.39,20.39,0,0,1,44.57,27,20.39,20.39,0,0,1,9.43,27,20.35,20.35,0,0,1,27,17m0-3A23.36,23.36,0,0,0,6.31,26.42L6,27l.3.58a23.4,23.4,0,0,0,41.37,0L48,27l-.31-.57A23.36,23.36,0,0,0,27,14Z"/><path class="cls-1" d="M27,19.08a7.9,7.9,0,0,0-2.19.35,3.6,3.6,0,0,1,1.58,2.93A3.67,3.67,0,0,1,22.72,26a3.6,3.6,0,0,1-3.1-1.83A7.9,7.9,0,1,0,27,19.08Z"/></g><rect class="cls-1" x="6" y="5.91" width="9" height="3"/><rect class="cls-1" x="6" y="5.91" width="3" height="9"/><rect class="cls-1" x="38.99" y="5.91" width="9" height="3"/><rect class="cls-1" x="44.99" y="8.91" width="3" height="6"/><rect class="cls-1" x="44.99" y="38.89" width="3" height="9"/><rect class="cls-1" x="38.99" y="44.89" width="9" height="3"/><rect class="cls-1" x="6" y="38.89" width="3" height="9"/><rect class="cls-1" x="6" y="44.89" width="9" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/block-eyecatcher2.svg b/public/assets/images/icons/blue/block-eyecatcher2.svg
index 10072dfb2481b49ce32234b7aca1987ff7f9067a..8d597017e314c1d77262db3f0c71ce09468f1f1a 100644
--- a/public/assets/images/icons/blue/block-eyecatcher2.svg
+++ b/public/assets/images/icons/blue/block-eyecatcher2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/block-gallery.svg b/public/assets/images/icons/blue/block-gallery.svg
index 560cffd13bc4ff2a30d032b8e03b41932817a3e2..00fd0911380a33237cb3de162a8a58d4b2c4e0ac 100644
--- a/public/assets/images/icons/blue/block-gallery.svg
+++ b/public/assets/images/icons/blue/block-gallery.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-gallery"><path class="cls-1" d="M36,11.91v12H48v-12Zm9,9H39v-6h6Z"/><path class="cls-1" d="M36,38.89H48v-12H36Zm3-9h6v6H39Z"/><path class="cls-1" d="M33,11.91H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M33,26.9H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M6,23.9H18v-12H6Zm3-9h6v6H9Z"/><path class="cls-1" d="M6,38.89H18v-12H6Zm3-9h6v6H9Z"/><rect class="cls-1" x="19.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="25.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="31.5" y="41.89" width="3" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-gallery"><path class="cls-1" d="M36,11.91v12H48v-12Zm9,9H39v-6h6Z"/><path class="cls-1" d="M36,38.89H48v-12H36Zm3-9h6v6H39Z"/><path class="cls-1" d="M33,11.91H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M33,26.9H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M6,23.9H18v-12H6Zm3-9h6v6H9Z"/><path class="cls-1" d="M6,38.89H18v-12H6Zm3-9h6v6H9Z"/><rect class="cls-1" x="19.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="25.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="31.5" y="41.89" width="3" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/block-gallery2.svg b/public/assets/images/icons/blue/block-gallery2.svg
index 0f8fa2806c0b306fdeba74b68aa79e4ff43d024a..453024ae1af43e6b5700b491da54bb89ccfd1014 100644
--- a/public/assets/images/icons/blue/block-gallery2.svg
+++ b/public/assets/images/icons/blue/block-gallery2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-gallery2"><polygon class="cls-1" points="44.87 20.9 42.79 22.98 46.8 26.99 42.79 31 44.87 33.08 50.96 26.99 44.87 20.9"/><polygon class="cls-1" points="9.13 20.9 3.04 27 9.13 33.08 11.21 31 7.2 26.99 11.21 22.98 9.13 20.9"/><path class="cls-1" d="M15,38.89H39v-24H15Zm3-21H36v18H18Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-gallery2"><polygon class="cls-1" points="44.87 20.9 42.79 22.98 46.8 26.99 42.79 31 44.87 33.08 50.96 26.99 44.87 20.9"/><polygon class="cls-1" points="9.13 20.9 3.04 27 9.13 33.08 11.21 31 7.2 26.99 11.21 22.98 9.13 20.9"/><path class="cls-1" d="M15,38.89H39v-24H15Zm3-21H36v18H18Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/block-imagemap.svg b/public/assets/images/icons/blue/block-imagemap.svg
index 22bc2de573fb92e4f8f56cd77cc0d289248f2568..cab36108e63b0aa2068e4bd974324c0cd1ab9e31 100644
--- a/public/assets/images/icons/blue/block-imagemap.svg
+++ b/public/assets/images/icons/blue/block-imagemap.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-imagemap"><rect class="cls-1" x="26.99" y="17.9" width="6" height="3"/><rect class="cls-1" x="18" y="17.9" width="6" height="3"/><rect class="cls-1" x="35.99" y="17.9" width="6" height="3"/><path class="cls-1" d="M51,17.9H48v-6H36v-3H33v3H6v6H3v3H6v21H33v3h3v-3H48v-21h3ZM45,35.05l-8.71-6.33-1.5,1.18H33v1.4l-3.33,2.61L19.9,25,9,35.09V20.9h6v-3H9v-3H33v3h3v-3h9v3h0v3h0Z"/><rect class="cls-1" x="32.99" y="20.9" width="3" height="6"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-imagemap"><rect class="cls-1" x="26.99" y="17.9" width="6" height="3"/><rect class="cls-1" x="18" y="17.9" width="6" height="3"/><rect class="cls-1" x="35.99" y="17.9" width="6" height="3"/><path class="cls-1" d="M51,17.9H48v-6H36v-3H33v3H6v6H3v3H6v21H33v3h3v-3H48v-21h3ZM45,35.05l-8.71-6.33-1.5,1.18H33v1.4l-3.33,2.61L19.9,25,9,35.09V20.9h6v-3H9v-3H33v3h3v-3h9v3h0v3h0Z"/><rect class="cls-1" x="32.99" y="20.9" width="3" height="6"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/block-imagemap2.svg b/public/assets/images/icons/blue/block-imagemap2.svg
index 10072dfb2481b49ce32234b7aca1987ff7f9067a..8d597017e314c1d77262db3f0c71ce09468f1f1a 100644
--- a/public/assets/images/icons/blue/block-imagemap2.svg
+++ b/public/assets/images/icons/blue/block-imagemap2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/block-tabs.svg b/public/assets/images/icons/blue/block-tabs.svg
index 5d6dd87a94b84561e4c59e037d8cd1317ce39b9e..f08345b512af2be4f3d6a91306e8ff5d1fdf0127 100644
--- a/public/assets/images/icons/blue/block-tabs.svg
+++ b/public/assets/images/icons/blue/block-tabs.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-tabs"><path class="cls-1" d="M6,8.91v36H48v-36Zm18,3h9v6H24Zm21,30H9v-30H21v9H45Zm0-24H36v-6h9Z"/><path d="M48,8.91H6v36H48v-36Zm-12,9v-6h9v6Zm-12,0v-6h9v6Zm-15,24v-30H21v9H45v21Z"/><rect class="cls-1" x="12" y="26.9" width="29.99" height="3"/><polygon points="41.99 26.9 12 26.9 12 29.9 41.99 29.9 41.99 26.9 41.99 26.9"/><rect class="cls-1" x="12" y="32.9" width="29.99" height="3"/><polygon points="41.99 32.9 12 32.9 12 35.9 41.99 35.9 41.99 32.9 41.99 32.9"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-tabs"><path class="cls-1" d="M6,8.91v36H48v-36Zm18,3h9v6H24Zm21,30H9v-30H21v9H45Zm0-24H36v-6h9Z"/><path d="M48,8.91H6v36H48v-36Zm-12,9v-6h9v6Zm-12,0v-6h9v6Zm-15,24v-30H21v9H45v21Z"/><rect class="cls-1" x="12" y="26.9" width="29.99" height="3"/><polygon points="41.99 26.9 12 26.9 12 29.9 41.99 29.9 41.99 26.9 41.99 26.9"/><rect class="cls-1" x="12" y="32.9" width="29.99" height="3"/><polygon points="41.99 32.9 12 32.9 12 35.9 41.99 35.9 41.99 32.9 41.99 32.9"/></g></svg>
diff --git a/public/assets/images/icons/blue/block-typewriter.svg b/public/assets/images/icons/blue/block-typewriter.svg
index 4769c9763d2978170801d7d252d3085f4ee34c18..dfa2b1568c9898f1604a6361480db925e4ba6cc1 100644
--- a/public/assets/images/icons/blue/block-typewriter.svg
+++ b/public/assets/images/icons/blue/block-typewriter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-typewriter"><polygon class="cls-1" points="42.06 32.9 45.06 32.9 45.06 29.9 42.06 29.9 42.06 12 39.06 12 39.06 29.9 36.06 29.9 36.06 32.9 39.06 32.9 39.06 41.89 33.07 41.89 33.07 44.89 39.06 44.89 39.06 41.98 42.06 41.98 42.06 44.89 48.06 44.89 48.06 41.89 42.06 41.89 42.06 32.9"/><rect class="cls-1" x="33.07" y="8.91" width="6" height="3"/><rect class="cls-1" x="42.06" y="8.91" width="6" height="3"/><path class="cls-1" d="M20.8,14.91l-1-3H12v3h3.21L7,38.89H3v3H8.63a1.09,1.09,0,0,0,.76-.29,1.47,1.47,0,0,0,.41-.67l2.41-7.24H23.78l2.41,7.24a1.73,1.73,0,0,0,.43.69,1.07,1.07,0,0,0,.76.27H33v-3H29ZM13.18,30.76l4.05-12.18A25.75,25.75,0,0,0,18,15.76c.12.54.25,1,.38,1.54s.26.9.38,1.26l4,12.2Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="block-typewriter"><polygon class="cls-1" points="42.06 32.9 45.06 32.9 45.06 29.9 42.06 29.9 42.06 12 39.06 12 39.06 29.9 36.06 29.9 36.06 32.9 39.06 32.9 39.06 41.89 33.07 41.89 33.07 44.89 39.06 44.89 39.06 41.98 42.06 41.98 42.06 44.89 48.06 44.89 48.06 41.89 42.06 41.89 42.06 32.9"/><rect class="cls-1" x="33.07" y="8.91" width="6" height="3"/><rect class="cls-1" x="42.06" y="8.91" width="6" height="3"/><path class="cls-1" d="M20.8,14.91l-1-3H12v3h3.21L7,38.89H3v3H8.63a1.09,1.09,0,0,0,.76-.29,1.47,1.47,0,0,0,.41-.67l2.41-7.24H23.78l2.41,7.24a1.73,1.73,0,0,0,.43.69,1.07,1.07,0,0,0,.76.27H33v-3H29ZM13.18,30.76l4.05-12.18A25.75,25.75,0,0,0,18,15.76c.12.54.25,1,.38,1.54s.26.9.38,1.26l4,12.2Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/blubber-old.svg b/public/assets/images/icons/blue/blubber-old.svg
index 1ebc209a37582e2372dfef9d1b6144debb96d7a4..4e120981b375ae3c25e63d983248fd6874a3602d 100644
--- a/public/assets/images/icons/blue/blubber-old.svg
+++ b/public/assets/images/icons/blue/blubber-old.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M18,15A15,15,0,1,0,33,30,15,15,0,0,0,18,15Z"/><path class="a" d="M50.85,13.5a8.5,8.5,0,1,0-8.5,8.5A8.5,8.5,0,0,0,50.85,13.5Z"/><path class="a" d="M45,39a5,5,0,1,0,5,5A5,5,0,0,0,45,39Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M18,15A15,15,0,1,0,33,30,15,15,0,0,0,18,15Z"/><path class="a" d="M50.85,13.5a8.5,8.5,0,1,0-8.5,8.5A8.5,8.5,0,0,0,50.85,13.5Z"/><path class="a" d="M45,39a5,5,0,1,0,5,5A5,5,0,0,0,45,39Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/blubber.svg b/public/assets/images/icons/blue/blubber.svg
index 60c11fe1fa62a8a853de60da764d4acdc6a209a6..e2d46443a8c46020b01ef46b18257865b282a55f 100644
--- a/public/assets/images/icons/blue/blubber.svg
+++ b/public/assets/images/icons/blue/blubber.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M41,31A10,10,0,1,0,51,41,10,10,0,0,0,41,31Zm0,17a7,7,0,1,1,7-7A7,7,0,0,1,41,48Z"/><path class="a" d="M33,26.83A12,12,0,1,0,23.2,13,14.72,14.72,0,0,0,18,12,15,15,0,1,0,33,27C33,26.94,33,26.88,33,26.83ZM18,39A12,12,0,1,1,30,27,12,12,0,0,1,18,39Zm8-24.65A9,9,0,1,1,35,24a8.63,8.63,0,0,1-2.39-.34A15,15,0,0,0,26,14.35Z"/><path class="a" d="M22.21,17.06A10.71,10.71,0,0,0,18,16.2a10.87,10.87,0,0,0-9.78,6.25,1.29,1.29,0,0,0,.62,1.72,1.23,1.23,0,0,0,.55.13,1.3,1.3,0,0,0,1.18-.75A8.22,8.22,0,0,1,21.2,19.44a1.29,1.29,0,1,0,1-2.38Z"/><path class="a" d="M8.5,25.7A1.3,1.3,0,0,0,7.2,27a10.48,10.48,0,0,0,.14,1.68,1.3,1.3,0,0,0,1.27,1.1l.21,0A1.3,1.3,0,0,0,9.9,28.28,7.8,7.8,0,0,1,9.8,27,1.3,1.3,0,0,0,8.5,25.7Z"/><path class="a" d="M38.66,9.49A1.23,1.23,0,0,0,38,7.89a7.72,7.72,0,0,0-10.64,5.92,1.21,1.21,0,0,0,1,1.39l.19,0a1.21,1.21,0,0,0,1.2-1A5.33,5.33,0,0,1,35,9.72a5.23,5.23,0,0,1,2.06.42A1.23,1.23,0,0,0,38.66,9.49Z"/><path class="a" d="M43.19,35.82A5.62,5.62,0,0,0,35.37,41a6.52,6.52,0,0,0,.07.88,1.13,1.13,0,0,0,1.11.95l.18,0a1.13,1.13,0,0,0,.94-1.29,3,3,0,0,1-.05-.52A3.39,3.39,0,0,1,41,37.62a3.27,3.27,0,0,1,1.31.27,1.12,1.12,0,1,0,.88-2.07Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M41,31A10,10,0,1,0,51,41,10,10,0,0,0,41,31Zm0,17a7,7,0,1,1,7-7A7,7,0,0,1,41,48Z"/><path class="a" d="M33,26.83A12,12,0,1,0,23.2,13,14.72,14.72,0,0,0,18,12,15,15,0,1,0,33,27C33,26.94,33,26.88,33,26.83ZM18,39A12,12,0,1,1,30,27,12,12,0,0,1,18,39Zm8-24.65A9,9,0,1,1,35,24a8.63,8.63,0,0,1-2.39-.34A15,15,0,0,0,26,14.35Z"/><path class="a" d="M22.21,17.06A10.71,10.71,0,0,0,18,16.2a10.87,10.87,0,0,0-9.78,6.25,1.29,1.29,0,0,0,.62,1.72,1.23,1.23,0,0,0,.55.13,1.3,1.3,0,0,0,1.18-.75A8.22,8.22,0,0,1,21.2,19.44a1.29,1.29,0,1,0,1-2.38Z"/><path class="a" d="M8.5,25.7A1.3,1.3,0,0,0,7.2,27a10.48,10.48,0,0,0,.14,1.68,1.3,1.3,0,0,0,1.27,1.1l.21,0A1.3,1.3,0,0,0,9.9,28.28,7.8,7.8,0,0,1,9.8,27,1.3,1.3,0,0,0,8.5,25.7Z"/><path class="a" d="M38.66,9.49A1.23,1.23,0,0,0,38,7.89a7.72,7.72,0,0,0-10.64,5.92,1.21,1.21,0,0,0,1,1.39l.19,0a1.21,1.21,0,0,0,1.2-1A5.33,5.33,0,0,1,35,9.72a5.23,5.23,0,0,1,2.06.42A1.23,1.23,0,0,0,38.66,9.49Z"/><path class="a" d="M43.19,35.82A5.62,5.62,0,0,0,35.37,41a6.52,6.52,0,0,0,.07.88,1.13,1.13,0,0,0,1.11.95l.18,0a1.13,1.13,0,0,0,.94-1.29,3,3,0,0,1-.05-.52A3.39,3.39,0,0,1,41,37.62a3.27,3.27,0,0,1,1.31.27,1.12,1.12,0,1,0,.88-2.07Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/brainstorm.svg b/public/assets/images/icons/blue/brainstorm.svg
index 007136cddb2cf2d4bf35868840a2241aca967476..c9f60b6a3dda128b79436134e2c03eb10f8f5fba 100644
--- a/public/assets/images/icons/blue/brainstorm.svg
+++ b/public/assets/images/icons/blue/brainstorm.svg
@@ -1 +1 @@
-<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="Brainstorm"><path d="M28.55,25.76c-11.46-1.2-20.19-7-19.5-12.87s10.55-9.72,22-8.53a39,39,0,0,1,5.18.93,40.5,40.5,0,0,0-9.56-2.17C14.38,1.84,3.82,5.93,3.07,12.27S11.69,24.78,24,26.06a40.05,40.05,0,0,0,9.83-.14A39.25,39.25,0,0,1,28.55,25.76Z"/><path d="M25.65,6.28c11.44,1.38,20.06,7.28,19.26,13.17S34.19,29,22.75,27.63a38.62,38.62,0,0,1-5.16-1,40,40,0,0,0,9.52,2.33C39.38,30.42,50,26.5,50.88,20.18S42.49,7.53,30.22,6.05a40.49,40.49,0,0,0-9.84,0A39.6,39.6,0,0,1,25.65,6.28Z"/><path d="M28.32,38.84c-10-1-17.57-6.05-17-11.19A5.46,5.46,0,0,1,12.59,25c-.65-.25-1.39-.55-2.22-.92S9,23.41,8.46,23.13a6.42,6.42,0,0,0-2.31,4c-.64,5.51,7.5,10.89,18.2,12A35.62,35.62,0,0,0,32.9,39,35.58,35.58,0,0,1,28.32,38.84Z"/><path d="M42.91,29.36c-.8.31-1.7.63-2.47.84a23.13,23.13,0,0,1-2.53.51,4.88,4.88,0,0,1,.67,1.4c1.35,5-5.45,11-15.18,13.27a33.74,33.74,0,0,1-4.52.74,35.45,35.45,0,0,0,8.5-1C37.81,42.65,45.1,36.27,43.66,30.9A5.5,5.5,0,0,0,42.91,29.36Z"/><path d="M14.59,43a5.56,5.56,0,0,1,2.72-4.15,15.4,15.4,0,0,1-1.51-.49l-1-.39c-2.1,1.24-3.47,2.93-3.57,4.87C11,47,16.46,50.58,23.45,50.91A19.82,19.82,0,0,0,29,50.4a19.44,19.44,0,0,1-3,.12C19.51,50.21,14.39,46.83,14.59,43Z"/><path d="M42.61,29.57c-.5,0-1.75.93-2.21.9s-1.87.42-2.33.34A4.56,4.56,0,0,1,38.28,32c-.12,2.62-4.69,4.65-10.41,4.15a18.66,18.66,0,0,1-2.59-.43,11.23,11.23,0,0,0,5,1.51c6.15.52,12.38-1.67,12.69-4.84A26.14,26.14,0,0,0,42.61,29.57Z"/><path d="M29.24,8.71c-8.34-2-16.16.32-17.46,5.17A6,6,0,0,0,12.25,18c0-.11,0-.23,0-.34.81-4.73,8.05-7.55,16.16-6.32s13.77,5.88,13.24,10.51a6.36,6.36,0,0,0,.33-.7C43.28,16.25,37.58,10.7,29.24,8.71Z"/></g></svg>
+<svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="Brainstorm"><path d="M28.55,25.76c-11.46-1.2-20.19-7-19.5-12.87s10.55-9.72,22-8.53a39,39,0,0,1,5.18.93,40.5,40.5,0,0,0-9.56-2.17C14.38,1.84,3.82,5.93,3.07,12.27S11.69,24.78,24,26.06a40.05,40.05,0,0,0,9.83-.14A39.25,39.25,0,0,1,28.55,25.76Z"/><path d="M25.65,6.28c11.44,1.38,20.06,7.28,19.26,13.17S34.19,29,22.75,27.63a38.62,38.62,0,0,1-5.16-1,40,40,0,0,0,9.52,2.33C39.38,30.42,50,26.5,50.88,20.18S42.49,7.53,30.22,6.05a40.49,40.49,0,0,0-9.84,0A39.6,39.6,0,0,1,25.65,6.28Z"/><path d="M28.32,38.84c-10-1-17.57-6.05-17-11.19A5.46,5.46,0,0,1,12.59,25c-.65-.25-1.39-.55-2.22-.92S9,23.41,8.46,23.13a6.42,6.42,0,0,0-2.31,4c-.64,5.51,7.5,10.89,18.2,12A35.62,35.62,0,0,0,32.9,39,35.58,35.58,0,0,1,28.32,38.84Z"/><path d="M42.91,29.36c-.8.31-1.7.63-2.47.84a23.13,23.13,0,0,1-2.53.51,4.88,4.88,0,0,1,.67,1.4c1.35,5-5.45,11-15.18,13.27a33.74,33.74,0,0,1-4.52.74,35.45,35.45,0,0,0,8.5-1C37.81,42.65,45.1,36.27,43.66,30.9A5.5,5.5,0,0,0,42.91,29.36Z"/><path d="M14.59,43a5.56,5.56,0,0,1,2.72-4.15,15.4,15.4,0,0,1-1.51-.49l-1-.39c-2.1,1.24-3.47,2.93-3.57,4.87C11,47,16.46,50.58,23.45,50.91A19.82,19.82,0,0,0,29,50.4a19.44,19.44,0,0,1-3,.12C19.51,50.21,14.39,46.83,14.59,43Z"/><path d="M42.61,29.57c-.5,0-1.75.93-2.21.9s-1.87.42-2.33.34A4.56,4.56,0,0,1,38.28,32c-.12,2.62-4.69,4.65-10.41,4.15a18.66,18.66,0,0,1-2.59-.43,11.23,11.23,0,0,0,5,1.51c6.15.52,12.38-1.67,12.69-4.84A26.14,26.14,0,0,0,42.61,29.57Z"/><path d="M29.24,8.71c-8.34-2-16.16.32-17.46,5.17A6,6,0,0,0,12.25,18c0-.11,0-.23,0-.34.81-4.73,8.05-7.55,16.16-6.32s13.77,5.88,13.24,10.51a6.36,6.36,0,0,0,.33-.7C43.28,16.25,37.58,10.7,29.24,8.71Z"/></g></svg>
diff --git a/public/assets/images/icons/blue/chat.svg b/public/assets/images/icons/blue/chat.svg
index c2a82e2b593cafaa66121e1d6d04ed75bd851c86..190976dd6acf0afed0dc897c84a1e38fb5181751 100644
--- a/public/assets/images/icons/blue/chat.svg
+++ b/public/assets/images/icons/blue/chat.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/chat2.svg b/public/assets/images/icons/blue/chat2.svg
index c2a82e2b593cafaa66121e1d6d04ed75bd851c86..190976dd6acf0afed0dc897c84a1e38fb5181751 100644
--- a/public/assets/images/icons/blue/chat2.svg
+++ b/public/assets/images/icons/blue/chat2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/check-circle.svg b/public/assets/images/icons/blue/check-circle.svg
index 49327d84a7682bb782db137e49cd7f5e23656632..b805f41900b55a291da54e0d1be188a151cd523e 100644
--- a/public/assets/images/icons/blue/check-circle.svg
+++ b/public/assets/images/icons/blue/check-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="check-circle"><path class="cls-1" d="M40.84,21.11,36,16.25,24.18,28,18,21.87l-4.84,4.85,11,11ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="check-circle"><path class="cls-1" d="M40.84,21.11,36,16.25,24.18,28,18,21.87l-4.84,4.85,11,11ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/clipboard.svg b/public/assets/images/icons/blue/clipboard.svg
index f79a70c0232966a8fb5ec68534b849f375493c5f..51202b111b07c6ac86a76cb519f101824eeb58c1 100644
--- a/public/assets/images/icons/blue/clipboard.svg
+++ b/public/assets/images/icons/blue/clipboard.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="clipboard"><path class="cls-1" d="M30,23.9v24H9v-24H30m3-3H6v30H33v-30Z"/><polygon class="cls-1" points="47.98 5.91 15 5.91 15 8.91 44.99 8.91 44.99 38.9 47.98 38.9 47.98 5.91 47.98 5.91"/><polygon class="cls-1" points="26.99 14.91 26.99 17.9 33.71 17.9 23.87 27.74 25.99 29.86 35.99 19.86 35.99 26.9 38.99 26.9 38.99 14.91 26.99 14.91"/><rect class="cls-1" x="27" y="3.05" width="8.99" height="5.86"/><rect class="cls-1" x="10.5" y="10.41" width="11.99" height="3" transform="translate(28.41 -4.59) rotate(90)"/><rect class="cls-1" x="35.99" y="38.89" width="11.99" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="clipboard"><path class="cls-1" d="M30,23.9v24H9v-24H30m3-3H6v30H33v-30Z"/><polygon class="cls-1" points="47.98 5.91 15 5.91 15 8.91 44.99 8.91 44.99 38.9 47.98 38.9 47.98 5.91 47.98 5.91"/><polygon class="cls-1" points="26.99 14.91 26.99 17.9 33.71 17.9 23.87 27.74 25.99 29.86 35.99 19.86 35.99 26.9 38.99 26.9 38.99 14.91 26.99 14.91"/><rect class="cls-1" x="27" y="3.05" width="8.99" height="5.86"/><rect class="cls-1" x="10.5" y="10.41" width="11.99" height="3" transform="translate(28.41 -4.59) rotate(90)"/><rect class="cls-1" x="35.99" y="38.89" width="11.99" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/cloud.svg b/public/assets/images/icons/blue/cloud.svg
index b614306bb7b0e13e6460195cc5a791bc7a4c1f82..9c086b940fb0d0f4c53ef30131f4e57e2a8f317a 100644
--- a/public/assets/images/icons/blue/cloud.svg
+++ b/public/assets/images/icons/blue/cloud.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><path id="cloud" d="M33.61,16.51a8.1,8.1,0,0,1,8.15,7.94l.06,2.31,2.23.54a5.15,5.15,0,0,1,3.94,5v.17a5.17,5.17,0,0,1-5.15,5H12.08a6.08,6.08,0,0,1,0-12.16,6.9,6.9,0,0,1,1.09.1l4.11.74L16.68,22a2.32,2.32,0,0,1,0-.46,3.26,3.26,0,0,1,5.84-2l2.35,3,2.39-3a8.1,8.1,0,0,1,6.39-3.1m0-3a11.14,11.14,0,0,0-8.76,4.25,6.26,6.26,0,0,0-11.21,3.83,6.44,6.44,0,0,0,.06.89,9.66,9.66,0,0,0-1.62-.14,9.09,9.09,0,0,0,0,18.17H42.84A8.18,8.18,0,0,0,51,32.32h0a8.17,8.17,0,0,0-6.24-7.94A11.16,11.16,0,0,0,33.61,13.5Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><path id="cloud" d="M33.61,16.51a8.1,8.1,0,0,1,8.15,7.94l.06,2.31,2.23.54a5.15,5.15,0,0,1,3.94,5v.17a5.17,5.17,0,0,1-5.15,5H12.08a6.08,6.08,0,0,1,0-12.16,6.9,6.9,0,0,1,1.09.1l4.11.74L16.68,22a2.32,2.32,0,0,1,0-.46,3.26,3.26,0,0,1,5.84-2l2.35,3,2.39-3a8.1,8.1,0,0,1,6.39-3.1m0-3a11.14,11.14,0,0,0-8.76,4.25,6.26,6.26,0,0,0-11.21,3.83,6.44,6.44,0,0,0,.06.89,9.66,9.66,0,0,0-1.62-.14,9.09,9.09,0,0,0,0,18.17H42.84A8.18,8.18,0,0,0,51,32.32h0a8.17,8.17,0,0,0-6.24-7.94A11.16,11.16,0,0,0,33.61,13.5Z"/></svg>
diff --git a/public/assets/images/icons/blue/comment.svg b/public/assets/images/icons/blue/comment.svg
index e279c350b32ad349260781af32f08eb0b450fc72..a9d5ec1122f0491bb68d2732190b83f13b739a14 100644
--- a/public/assets/images/icons/blue/comment.svg
+++ b/public/assets/images/icons/blue/comment.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="comment"><path class="cls-1" d="M37.91,6.8A6.3,6.3,0,0,0,29.47,9l-1,1.72L26.9,13.27,13,36.47,13.13,48,23.7,42.42,37.6,19.23l1.54-2.58,1-1.72A5.83,5.83,0,0,0,37.91,6.8ZM21.46,40.21l-1.95,1-3.39-1.89,0-2.1L29.57,14.76l5.35,3Zm9.66-28,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06l-1,1.72Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="comment"><path class="cls-1" d="M37.91,6.8A6.3,6.3,0,0,0,29.47,9l-1,1.72L26.9,13.27,13,36.47,13.13,48,23.7,42.42,37.6,19.23l1.54-2.58,1-1.72A5.83,5.83,0,0,0,37.91,6.8ZM21.46,40.21l-1.95,1-3.39-1.89,0-2.1L29.57,14.76l5.35,3Zm9.66-28,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06l-1,1.72Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/comment2.svg b/public/assets/images/icons/blue/comment2.svg
index 4d4973f268d00f23276a9f4fb7e30d70c2c1107f..85016e7a178f16b0f24b4cb05943a7ab1f2b0a03 100644
--- a/public/assets/images/icons/blue/comment2.svg
+++ b/public/assets/images/icons/blue/comment2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="comment"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="comment"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/community.svg b/public/assets/images/icons/blue/community.svg
index c7505761ce1031444b21ff7b8ed7ef84720c22d8..8a75cdc09368956be31c174373b11cbf82af33e3 100644
--- a/public/assets/images/icons/blue/community.svg
+++ b/public/assets/images/icons/blue/community.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M37,25a9,9,0,1,0-9-9A9,9,0,0,0,37,25Z"/><path class="a" d="M17,25a9,9,0,1,0-9-9A9,9,0,0,0,17,25Z"/><path class="a" d="M44.79,29H29.2a6.21,6.21,0,0,0-6.2,6.2V48H51V35.17A6.21,6.21,0,0,0,44.79,29Z"/><path class="a" d="M3,35.17V48H20V35.17A9.11,9.11,0,0,1,22.43,29H9.2A6.21,6.21,0,0,0,3,35.17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M37,25a9,9,0,1,0-9-9A9,9,0,0,0,37,25Z"/><path class="a" d="M17,25a9,9,0,1,0-9-9A9,9,0,0,0,17,25Z"/><path class="a" d="M44.79,29H29.2a6.21,6.21,0,0,0-6.2,6.2V48H51V35.17A6.21,6.21,0,0,0,44.79,29Z"/><path class="a" d="M3,35.17V48H20V35.17A9.11,9.11,0,0,1,22.43,29H9.2A6.21,6.21,0,0,0,3,35.17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/community2.svg b/public/assets/images/icons/blue/community2.svg
index e9f48ab7488da4e88f80b4af86a876ffacc389d6..c82898ad469b9d77efb78fcab17784562d6c7d34 100644
--- a/public/assets/images/icons/blue/community2.svg
+++ b/public/assets/images/icons/blue/community2.svg
@@ -1 +1 @@
-<svg id="Icons" data-name="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="community2"><path d="M23,15a12.86,12.86,0,0,1,2.09-7,10,10,0,1,0,0,14.08A12.86,12.86,0,0,1,23,15Zm-5,4a4,4,0,1,1,4-4A4,4,0,0,1,18,19Z"/><path d="M36,25A10,10,0,1,1,46,15,10,10,0,0,1,36,25Zm0-14a4,4,0,1,0,4,4A4,4,0,0,0,36,11Z"/><path d="M9,43V36a2,2,0,0,1,2-2h5c0-2,2-6,5-6H11a8,8,0,0,0-8,8V49H16V43Z"/><path d="M51,49H19V36a8,8,0,0,1,8-8H43a8,8,0,0,1,8,8ZM25,43H45V36a2,2,0,0,0-2-2H27a2,2,0,0,0-2,2Z"/></g></svg>
+<svg width="16" height="16" id="Icons" data-name="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="community2"><path d="M23,15a12.86,12.86,0,0,1,2.09-7,10,10,0,1,0,0,14.08A12.86,12.86,0,0,1,23,15Zm-5,4a4,4,0,1,1,4-4A4,4,0,0,1,18,19Z"/><path d="M36,25A10,10,0,1,1,46,15,10,10,0,0,1,36,25Zm0-14a4,4,0,1,0,4,4A4,4,0,0,0,36,11Z"/><path d="M9,43V36a2,2,0,0,1,2-2h5c0-2,2-6,5-6H11a8,8,0,0,0-8,8V49H16V43Z"/><path d="M51,49H19V36a8,8,0,0,1,8-8H43a8,8,0,0,1,8,8ZM25,43H45V36a2,2,0,0,0-2-2H27a2,2,0,0,0-2,2Z"/></g></svg>
diff --git a/public/assets/images/icons/blue/content.svg b/public/assets/images/icons/blue/content.svg
index 5fb41e58594b425cb2eac6df408d7ced80523e64..621d6fe16ef72f77a39e2c813e1c6296ff9f5ba9 100644
--- a/public/assets/images/icons/blue/content.svg
+++ b/public/assets/images/icons/blue/content.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M44.94,9a6.44,6.44,0,0,1-.87,3.82L43.37,14H46V42H8V14H28L30.67,9.5,31,9H3V47H51V9Z"/><polygon class="a" points="26.26 16.97 10.96 16.97 10.96 38.97 20.08 38.97 20.06 36.99 19.96 28.21 19.96 27.65 20.24 27.17 26.26 16.97"/><polygon class="a" points="31.71 33.74 31.43 34.22 30.93 34.48 23.01 38.73 22.56 38.97 42.96 38.97 42.96 16.97 41.6 16.97 31.71 33.74"/><path class="a" d="M22.06,37,30,32.72,40.41,15.05l1.16-2,.77-1.31a4.48,4.48,0,0,0-1.69-6.19,4.69,4.69,0,0,0-6.33,1.66l-.77,1.31-1.16,2L22,28.19ZM36.32,8.37a2.36,2.36,0,0,1,3.17-.83,2.25,2.25,0,0,1,.85,3.1L39.56,12l-4-2.27Zm-1.93,3.28,4,2.26L28.31,31l-1.46.78L24.3,30.38v-1.6Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M44.94,9a6.44,6.44,0,0,1-.87,3.82L43.37,14H46V42H8V14H28L30.67,9.5,31,9H3V47H51V9Z"/><polygon class="a" points="26.26 16.97 10.96 16.97 10.96 38.97 20.08 38.97 20.06 36.99 19.96 28.21 19.96 27.65 20.24 27.17 26.26 16.97"/><polygon class="a" points="31.71 33.74 31.43 34.22 30.93 34.48 23.01 38.73 22.56 38.97 42.96 38.97 42.96 16.97 41.6 16.97 31.71 33.74"/><path class="a" d="M22.06,37,30,32.72,40.41,15.05l1.16-2,.77-1.31a4.48,4.48,0,0,0-1.69-6.19,4.69,4.69,0,0,0-6.33,1.66l-.77,1.31-1.16,2L22,28.19ZM36.32,8.37a2.36,2.36,0,0,1,3.17-.83,2.25,2.25,0,0,1,.85,3.1L39.56,12l-4-2.27Zm-1.93,3.28,4,2.26L28.31,31l-1.46.78L24.3,30.38v-1.6Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/content2.svg b/public/assets/images/icons/blue/content2.svg
index 0c414387f3c083925a0eada229f474314966d519..9d8d7123c5588814eae04c5037ffc8ffef840fb3 100644
--- a/public/assets/images/icons/blue/content2.svg
+++ b/public/assets/images/icons/blue/content2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="content"><rect class="cls-1" x="3" y="29.9" width="21.07" height="21.07"/><polygon class="cls-1" points="36.95 33.41 36.95 17.02 20.56 17.02 20.56 25.21 28.75 25.21 28.75 33.41 36.95 33.41"/><polygon class="cls-1" points="6.51 2.97 6.51 25.21 13.54 25.21 13.54 9.99 43.98 9.99 43.98 40.43 28.75 40.43 28.75 47.46 51 47.46 51 2.97 6.51 2.97"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="content"><rect class="cls-1" x="3" y="29.9" width="21.07" height="21.07"/><polygon class="cls-1" points="36.95 33.41 36.95 17.02 20.56 17.02 20.56 25.21 28.75 25.21 28.75 33.41 36.95 33.41"/><polygon class="cls-1" points="6.51 2.97 6.51 25.21 13.54 25.21 13.54 9.99 43.98 9.99 43.98 40.43 28.75 40.43 28.75 47.46 51 47.46 51 2.97 6.51 2.97"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/courseware.svg b/public/assets/images/icons/blue/courseware.svg
index 5b2991d83c585c345511e0100396a7be95c8fbfc..3de01854166b8dc630d2d927e14df5cb774b01fe 100644
--- a/public/assets/images/icons/blue/courseware.svg
+++ b/public/assets/images/icons/blue/courseware.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="courseware"><polygon class="cls-1" points="30.85 9.37 27 6 23.14 9.37 27 11.16 30.85 9.37"/><polygon class="cls-1" points="37.56 15.24 33.71 11.87 27 15.22 20.28 11.87 16.43 15.24 27.05 21.56 37.56 15.24"/><polygon class="cls-1" points="44.27 21.12 40.42 17.75 27.05 26.97 13.57 17.75 9.72 21.12 27.05 34.5 44.27 21.12"/><polygon class="cls-1" points="47.13 23.62 27.05 40.33 6.86 23.62 3.01 26.99 27 47.98 50.98 26.99 47.13 23.62"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="courseware"><polygon class="cls-1" points="30.85 9.37 27 6 23.14 9.37 27 11.16 30.85 9.37"/><polygon class="cls-1" points="37.56 15.24 33.71 11.87 27 15.22 20.28 11.87 16.43 15.24 27.05 21.56 37.56 15.24"/><polygon class="cls-1" points="44.27 21.12 40.42 17.75 27.05 26.97 13.57 17.75 9.72 21.12 27.05 34.5 44.27 21.12"/><polygon class="cls-1" points="47.13 23.62 27.05 40.33 6.86 23.62 3.01 26.99 27 47.98 50.98 26.99 47.13 23.62"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/crop.svg b/public/assets/images/icons/blue/crop.svg
index af31332b017b456e9e2b1c7cd3f1901430c2626c..08cbcb21f0914865d90e6954c7ed56a384c146d5 100644
--- a/public/assets/images/icons/blue/crop.svg
+++ b/public/assets/images/icons/blue/crop.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="crop"><path d="M3,3V51H51V3ZM48,33h-4.5v2.9H48V48H35.94v-4.5H33V48H6v-12H10.5V33H6V6H33v4.5h2.9V6H48Z"/><rect x="16" y="33.04" width="8.25" height="2.9"/><polygon points="35.94 29.74 33.04 29.74 33.04 33.04 29.75 33.04 29.75 35.94 33.04 35.94 33.04 37.99 35.94 37.99 35.94 35.94 37.99 35.94 37.99 33.04 35.94 33.04 35.94 29.74"/><rect x="33.04" y="16" width="2.9" height="8.25"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="crop"><path d="M3,3V51H51V3ZM48,33h-4.5v2.9H48V48H35.94v-4.5H33V48H6v-12H10.5V33H6V6H33v4.5h2.9V6H48Z"/><rect x="16" y="33.04" width="8.25" height="2.9"/><polygon points="35.94 29.74 33.04 29.74 33.04 33.04 29.75 33.04 29.75 35.94 33.04 35.94 33.04 37.99 35.94 37.99 35.94 35.94 37.99 35.94 37.99 33.04 35.94 33.04 35.94 29.74"/><rect x="33.04" y="16" width="2.9" height="8.25"/></g></svg>
diff --git a/public/assets/images/icons/blue/crown.svg b/public/assets/images/icons/blue/crown.svg
index bd4b9b6eec86f60535634dd936a59170b9cf2661..dbadfacc6d4858281ae1c735b5047df42f5b0584 100644
--- a/public/assets/images/icons/blue/crown.svg
+++ b/public/assets/images/icons/blue/crown.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="crown"><path class="cls-1" d="M48,17a3,3,0,0,0-3,3,3,3,0,0,0,.31,1.31L37,26.53,29.88,14.76a4,4,0,1,0-5.76,0L17,26.53,8.21,21A2.94,2.94,0,0,0,9,19a3,3,0,1,0-3.23,3L12,46H42l6-23h0a3,3,0,0,0,0-6ZM14.32,43l-.78-3H40.46l-.78,3Zm26.92-6H12.76l-3-11.42,5.61,3.52L18,30.69l1.58-2.61L26.88,16h.24l7.31,12.09L36,30.69l2.59-1.62,5.6-3.52Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="crown"><path class="cls-1" d="M48,17a3,3,0,0,0-3,3,3,3,0,0,0,.31,1.31L37,26.53,29.88,14.76a4,4,0,1,0-5.76,0L17,26.53,8.21,21A2.94,2.94,0,0,0,9,19a3,3,0,1,0-3.23,3L12,46H42l6-23h0a3,3,0,0,0,0-6ZM14.32,43l-.78-3H40.46l-.78,3Zm26.92-6H12.76l-3-11.42,5.61,3.52L18,30.69l1.58-2.61L26.88,16h.24l7.31,12.09L36,30.69l2.59-1.62,5.6-3.52Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/date-block.svg b/public/assets/images/icons/blue/date-block.svg
index 4d7cc40734de4b0580747a6546cc2ec210bb842a..77ae47f9e0b2e48649dfd30b333d3d1b90fe5f9c 100644
--- a/public/assets/images/icons/blue/date-block.svg
+++ b/public/assets/images/icons/blue/date-block.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="date-block"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM6.77,27A14.86,14.86,0,1,1,21.63,41.84,14.88,14.88,0,0,1,6.77,27Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="date-block"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM6.77,27A14.86,14.86,0,1,1,21.63,41.84,14.88,14.88,0,0,1,6.77,27Z"/></g></svg>
diff --git a/public/assets/images/icons/blue/date-cycle.svg b/public/assets/images/icons/blue/date-cycle.svg
index 16c27abb7a273dbc8d1d78e0a1a05e0c03dd8271..a994fed4f714efe275b629f9f4fb1976d04904b5 100644
--- a/public/assets/images/icons/blue/date-cycle.svg
+++ b/public/assets/images/icons/blue/date-cycle.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="date-cycle"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM21.63,41.84A14.85,14.85,0,1,1,36.48,27,14.88,14.88,0,0,1,21.63,41.84Zm11.23,0a18.58,18.58,0,0,0,0-29.66,14.84,14.84,0,0,1,0,29.66Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="date-cycle"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM21.63,41.84A14.85,14.85,0,1,1,36.48,27,14.88,14.88,0,0,1,21.63,41.84Zm11.23,0a18.58,18.58,0,0,0,0-29.66,14.84,14.84,0,0,1,0,29.66Z"/></g></svg>
diff --git a/public/assets/images/icons/blue/date-single.svg b/public/assets/images/icons/blue/date-single.svg
index a034afabdde87b49e469b16e92c48c0f1478c469..8753d84d9e07a384654e5a0c32fc4c13c1c220cf 100644
--- a/public/assets/images/icons/blue/date-single.svg
+++ b/public/assets/images/icons/blue/date-single.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="date-single"><path d="M27,8.37A18.62,18.62,0,1,0,45.62,27,18.63,18.63,0,0,0,27,8.37Zm0,33.47A14.85,14.85,0,1,1,41.85,27,14.86,14.86,0,0,1,27,41.84Z"/><polygon points="24.25 14.45 24.25 26 17.1 30.16 19.93 35.12 29.91 29.33 29.97 29.33 29.96 14.45 24.25 14.45"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="date-single"><path d="M27,8.37A18.62,18.62,0,1,0,45.62,27,18.63,18.63,0,0,0,27,8.37Zm0,33.47A14.85,14.85,0,1,1,41.85,27,14.86,14.86,0,0,1,27,41.84Z"/><polygon points="24.25 14.45 24.25 26 17.1 30.16 19.93 35.12 29.91 29.33 29.97 29.33 29.96 14.45 24.25 14.45"/></g></svg>
diff --git a/public/assets/images/icons/blue/decline-circle.svg b/public/assets/images/icons/blue/decline-circle.svg
index 6482b677cd10bc390914368b4f4d9fb8570c41a0..cfd87dc08dbb7cbde1c5afe842c35ee87b63b593 100644
--- a/public/assets/images/icons/blue/decline-circle.svg
+++ b/public/assets/images/icons/blue/decline-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="decline-circle"><path class="cls-1" d="M38.68,34l-7-7,7-7-4.94-5-7,7-7-7L14.75,20l7,7-7,7L19.7,39l7-7,7,7ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="decline-circle"><path class="cls-1" d="M38.68,34l-7-7,7-7-4.94-5-7,7-7-7L14.75,20l7,7-7,7L19.7,39l7-7,7,7ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/decline.svg b/public/assets/images/icons/blue/decline.svg
index 138ff6cca0f4e3c07a7ac2e8edb8d9e13b2d301b..c6f714ec9b06a9e24386e8fd47baf769c6f441ad 100644
--- a/public/assets/images/icons/blue/decline.svg
+++ b/public/assets/images/icons/blue/decline.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="decline"><polygon id="decline-2" data-name="decline" class="cls-1" points="47.32 38.91 35.4 26.99 47.32 15.07 38.93 6.67 27 18.59 15.07 6.67 6.68 15.06 18.61 26.98 6.67 38.91 15.08 47.32 27.01 35.39 38.93 47.31 47.32 38.91"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="decline"><polygon id="decline-2" data-name="decline" class="cls-1" points="47.32 38.91 35.4 26.99 47.32 15.07 38.93 6.67 27 18.59 15.07 6.67 6.68 15.06 18.61 26.98 6.67 38.91 15.08 47.32 27.01 35.39 38.93 47.31 47.32 38.91"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/dialog-cards.svg b/public/assets/images/icons/blue/dialog-cards.svg
index 4fa4452d9e49488ad18b90953981580ede0edf70..adce4d08d74627be4f958721abc4f6a1a030c299 100755
--- a/public/assets/images/icons/blue/dialog-cards.svg
+++ b/public/assets/images/icons/blue/dialog-cards.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#24437c}</style></defs><g id="dialog-cards"><path class="cls-1" d="M13.13 5.5v8h-12v-8h12m1-1h-14v10h14v-10z"/><path class="cls-1" d="M1.38 3v1h13.5v9.49h1V3H1.38zM2.6 7.58h2.14v3.82H2.6z"/><path class="cls-1" d="M9.4 10.16h2.14v1.24H9.4zm-3.4 0h2.14v1.24H6zm0-2.58h5.53v1.25H6z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#24437c}</style></defs><g id="dialog-cards"><path class="cls-1" d="M13.13 5.5v8h-12v-8h12m1-1h-14v10h14v-10z"/><path class="cls-1" d="M1.38 3v1h13.5v9.49h1V3H1.38zM2.6 7.58h2.14v3.82H2.6z"/><path class="cls-1" d="M9.4 10.16h2.14v1.24H9.4zm-3.4 0h2.14v1.24H6zm0-2.58h5.53v1.25H6z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/door-enter.svg b/public/assets/images/icons/blue/door-enter.svg
index c6513e308bdfdd3846734eab97e8e9933825b516..9277b10a5e6815253ad3d53e4daaac58759f332a 100644
--- a/public/assets/images/icons/blue/door-enter.svg
+++ b/public/assets/images/icons/blue/door-enter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="door-enter"><path class="cls-1" d="M22,3V45h3V6H37L29,8V51l20-6V3Zm10,7.34,14-3.5V42.74l-14,4.2Z"/><polygon class="cls-1" points="5 13 5 20.09 11.91 27 5 33.91 5 41 19 27 5 13"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="door-enter"><path class="cls-1" d="M22,3V45h3V6H37L29,8V51l20-6V3Zm10,7.34,14-3.5V42.74l-14,4.2Z"/><polygon class="cls-1" points="5 13 5 20.09 11.91 27 5 33.91 5 41 19 27 5 13"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/door-leave.svg b/public/assets/images/icons/blue/door-leave.svg
index 8e71519eadb9308c2d8be946fe11eda5af3ddcc7..affb167ac71c1aa84485632f7e1900f6ee1e3c5f 100644
--- a/public/assets/images/icons/blue/door-leave.svg
+++ b/public/assets/images/icons/blue/door-leave.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="door-leave"><path class="cls-1" d="M5,45l20,6V8L17,6H29V45h3V3H5Zm3-3V6.81l14,3.5V46.94L8,42.74Z"/><polygon class="cls-1" points="35 13 35 20.09 41.91 27 35 33.91 35 41 49 27 35 13"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="door-leave"><path class="cls-1" d="M5,45l20,6V8L17,6H29V45h3V3H5Zm3-3V6.81l14,3.5V46.94L8,42.74Z"/><polygon class="cls-1" points="35 13 35 20.09 41.91 27 35 33.91 35 41 49 27 35 13"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/download.svg b/public/assets/images/icons/blue/download.svg
index a23d904f8ee0183f4b8fb647bf6989cf39db0e90..3851c0bcb7ae13b40d095dcd95de16d71ba82c34 100644
--- a/public/assets/images/icons/blue/download.svg
+++ b/public/assets/images/icons/blue/download.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/download2.svg b/public/assets/images/icons/blue/download2.svg
index a23d904f8ee0183f4b8fb647bf6989cf39db0e90..3851c0bcb7ae13b40d095dcd95de16d71ba82c34 100644
--- a/public/assets/images/icons/blue/download2.svg
+++ b/public/assets/images/icons/blue/download2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/edit-small.svg b/public/assets/images/icons/blue/edit-small.svg
index e6621c574b13ee030b53afaf74cd7b069db4a569..36947b7a1e9ec5a543cb59797986af6c4fbe941e 100644
--- a/public/assets/images/icons/blue/edit-small.svg
+++ b/public/assets/images/icons/blue/edit-small.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/edit.svg b/public/assets/images/icons/blue/edit.svg
index e6621c574b13ee030b53afaf74cd7b069db4a569..36947b7a1e9ec5a543cb59797986af6c4fbe941e 100644
--- a/public/assets/images/icons/blue/edit.svg
+++ b/public/assets/images/icons/blue/edit.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/exclaim-circle-full.svg b/public/assets/images/icons/blue/exclaim-circle-full.svg
index d5fbfee159f8d69034f8fc573099bd3619e457a1..5d1e387353e6c5f43f45cfef0abf3e959b9bf20c 100644
--- a/public/assets/images/icons/blue/exclaim-circle-full.svg
+++ b/public/assets/images/icons/blue/exclaim-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/exclaim-circle.svg b/public/assets/images/icons/blue/exclaim-circle.svg
index d5fbfee159f8d69034f8fc573099bd3619e457a1..5d1e387353e6c5f43f45cfef0abf3e959b9bf20c 100644
--- a/public/assets/images/icons/blue/exclaim-circle.svg
+++ b/public/assets/images/icons/blue/exclaim-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/export.svg b/public/assets/images/icons/blue/export.svg
index 82a6db0a4e39badf24aa1e906743a1e622e90804..6c0d3f6386a57c12efa860cc0718e9ea43410ee3 100644
--- a/public/assets/images/icons/blue/export.svg
+++ b/public/assets/images/icons/blue/export.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-archive.svg b/public/assets/images/icons/blue/file-archive.svg
index 6e45db9ddfbdc99e02f7005966fa7f20efc49a91..3bcf27059dc9d864ff146d63cb787e9f967f0129 100644
--- a/public/assets/images/icons/blue/file-archive.svg
+++ b/public/assets/images/icons/blue/file-archive.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><rect class="a" x="27" y="14.97" width="3" height="3"/><rect class="a" x="27" y="20.97" width="3" height="3"/><rect class="a" x="24" y="23.97" width="3" height="3"/><rect class="a" x="27" y="26.97" width="3" height="3"/><rect class="a" x="27" y="32.97" width="3" height="3"/><rect class="a" x="24" y="29.97" width="3" height="3"/><rect class="a" x="24" y="35.97" width="3" height="3"/><rect class="a" x="27" y="38.97" width="3" height="3"/><rect class="a" x="24" y="41.97" width="3" height="3"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm16.45,8.13A1.44,1.44,0,0,1,24,9.65,1.42,1.42,0,0,1,25.24,9h.2a1.42,1.42,0,0,1,.51.18A1.45,1.45,0,0,1,26.45,11.13ZM35,46.71V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-2,2.81V45H27v2.94H13.09V6.1H23.93v2a2.65,2.65,0,0,0-.69.56h0l-3.5,4h0a3.81,3.81,0,0,0-.37.5,3.56,3.56,0,0,0,1.23,4.88,3.49,3.49,0,0,0,3.4.07V21h3V18H24.4a3.55,3.55,0,0,0,1.08-1.1,3.67,3.67,0,0,0,.27-.57h0L26.26,15H27V13c.12-.3.24-.63.4-1H30V6.1H40.91Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><rect class="a" x="27" y="14.97" width="3" height="3"/><rect class="a" x="27" y="20.97" width="3" height="3"/><rect class="a" x="24" y="23.97" width="3" height="3"/><rect class="a" x="27" y="26.97" width="3" height="3"/><rect class="a" x="27" y="32.97" width="3" height="3"/><rect class="a" x="24" y="29.97" width="3" height="3"/><rect class="a" x="24" y="35.97" width="3" height="3"/><rect class="a" x="27" y="38.97" width="3" height="3"/><rect class="a" x="24" y="41.97" width="3" height="3"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm16.45,8.13A1.44,1.44,0,0,1,24,9.65,1.42,1.42,0,0,1,25.24,9h.2a1.42,1.42,0,0,1,.51.18A1.45,1.45,0,0,1,26.45,11.13ZM35,46.71V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-2,2.81V45H27v2.94H13.09V6.1H23.93v2a2.65,2.65,0,0,0-.69.56h0l-3.5,4h0a3.81,3.81,0,0,0-.37.5,3.56,3.56,0,0,0,1.23,4.88,3.49,3.49,0,0,0,3.4.07V21h3V18H24.4a3.55,3.55,0,0,0,1.08-1.1,3.67,3.67,0,0,0,.27-.57h0L26.26,15H27V13c.12-.3.24-.63.4-1H30V6.1H40.91Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-audio.svg b/public/assets/images/icons/blue/file-audio.svg
index 7e57c73b02e953253a508d2027045e658ebe8bb6..2874a1c535a7ccb1308e4c0a9af75439420b0dd6 100644
--- a/public/assets/images/icons/blue/file-audio.svg
+++ b/public/assets/images/icons/blue/file-audio.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="19.14 17.91 16 17.91 16 24.19 19.14 24.19 23.86 27.34 25.43 27.34 25.43 14.76 23.86 14.76 19.14 17.91"/><path class="a" d="M29.73,13.68l-2.06,2.06a7.4,7.4,0,0,1,0,10.46l2.06,2.06A10.3,10.3,0,0,0,29.73,13.68Z"/><path class="a" d="M33.44,10,31.38,12a12.63,12.63,0,0,1,0,17.88L33.44,32A15.55,15.55,0,0,0,33.44,10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="19.14 17.91 16 17.91 16 24.19 19.14 24.19 23.86 27.34 25.43 27.34 25.43 14.76 23.86 14.76 19.14 17.91"/><path class="a" d="M29.73,13.68l-2.06,2.06a7.4,7.4,0,0,1,0,10.46l2.06,2.06A10.3,10.3,0,0,0,29.73,13.68Z"/><path class="a" d="M33.44,10,31.38,12a12.63,12.63,0,0,1,0,17.88L33.44,32A15.55,15.55,0,0,0,33.44,10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-audio2.svg b/public/assets/images/icons/blue/file-audio2.svg
index 10a52849fb1f3d4f515ff58957e3b6082d52ff09..c21f667e13fca4b0fcc86162878d73dafbd34e5b 100644
--- a/public/assets/images/icons/blue/file-audio2.svg
+++ b/public/assets/images/icons/blue/file-audio2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M21.75,34.72A5.25,5.25,0,0,0,27,29.47V17.22s.77-1.74,3.33.64c3.29,3.06,7.17.56,7.17.56s-4.77-1.15-5.75-4.26A5.25,5.25,0,0,0,27,10.22H23.5V24.54a5.32,5.32,0,0,0-1.75-.32,5.25,5.25,0,0,0,0,10.5Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M21.75,34.72A5.25,5.25,0,0,0,27,29.47V17.22s.77-1.74,3.33.64c3.29,3.06,7.17.56,7.17.56s-4.77-1.15-5.75-4.26A5.25,5.25,0,0,0,27,10.22H23.5V24.54a5.32,5.32,0,0,0-1.75-.32,5.25,5.25,0,0,0,0,10.5Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-big.svg b/public/assets/images/icons/blue/file-big.svg
index 858059926e4af41397de6daeb613954d7c2cd6fd..bca44ffa750aeae3691205e1514b16b5ecccab7b 100644
--- a/public/assets/images/icons/blue/file-big.svg
+++ b/public/assets/images/icons/blue/file-big.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-excel.svg b/public/assets/images/icons/blue/file-excel.svg
index e19e5ff1c4015e3a5bae8dc29b5477f446dd297b..d49976750d79d552c7d9382809f7c07c1ddb1d00 100644
--- a/public/assets/images/icons/blue/file-excel.svg
+++ b/public/assets/images/icons/blue/file-excel.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M31.41,32,27,24.31,22.6,32H17.5l7.08-11.28L18,10H23l4,7.11L31,10h5L29.39,20.69,36.5,32Z"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm3.09,3.1H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.71V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M31.41,32,27,24.31,22.6,32H17.5l7.08-11.28L18,10H23l4,7.11L31,10h5L29.39,20.69,36.5,32Z"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm3.09,3.1H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.71V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-generic.svg b/public/assets/images/icons/blue/file-generic.svg
index 858059926e4af41397de6daeb613954d7c2cd6fd..bca44ffa750aeae3691205e1514b16b5ecccab7b 100644
--- a/public/assets/images/icons/blue/file-generic.svg
+++ b/public/assets/images/icons/blue/file-generic.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-office.svg b/public/assets/images/icons/blue/file-office.svg
index 4dc9072a489a43c2afb8d3298df71dd222ebc56d..8f3af08be165485e10177d5b679b07b5fbeb370f 100644
--- a/public/assets/images/icons/blue/file-office.svg
+++ b/public/assets/images/icons/blue/file-office.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM35,46.68V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09V6.06H40.91Z"/><path class="a" d="M24.56,23H16v3h6.77l-.85,1.41L22,34l6-3.19L36,17.53l.88-1.48.59-1a3.34,3.34,0,0,0-1.29-4.64,3.61,3.61,0,0,0-4.25.54H16v3H30l-.1.16L28.16,17H16v3H26.36ZM35.27,11.9a1.66,1.66,0,0,1,.65,2.32l-.59,1-3.06-1.7.59-1A1.8,1.8,0,0,1,35.27,11.9ZM31.39,15l3.06,1.7-7.7,12.84-1.11.59L23.7,29v-1.2Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM35,46.68V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09V6.06H40.91Z"/><path class="a" d="M24.56,23H16v3h6.77l-.85,1.41L22,34l6-3.19L36,17.53l.88-1.48.59-1a3.34,3.34,0,0,0-1.29-4.64,3.61,3.61,0,0,0-4.25.54H16v3H30l-.1.16L28.16,17H16v3H26.36ZM35.27,11.9a1.66,1.66,0,0,1,.65,2.32l-.59,1-3.06-1.7.59-1A1.8,1.8,0,0,1,35.27,11.9ZM31.39,15l3.06,1.7-7.7,12.84-1.11.59L23.7,29v-1.2Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-pdf.svg b/public/assets/images/icons/blue/file-pdf.svg
index 4a4fad0284f1238f75fd645053a8cd1b8de29b93..d64d6e6ac8a74e1533a466bc70f3e50eaee1f265 100644
--- a/public/assets/images/icons/blue/file-pdf.svg
+++ b/public/assets/images/icons/blue/file-pdf.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a,.b{fill:#28497c;}.b{fill-rule:evenodd;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="b" d="M32.7,24.13c2.19,1.74,4,1,3.71.69C35.63,23.8,34.08,23.8,32.7,24.13Zm2.85-1a8.49,8.49,0,0,0-5,.09A7.88,7.88,0,0,1,26,18c-1.83-5.82,0-7.69.12-4.06l.37,2.47s1.27-3.08.45-5.33c-.71-2-2.77-1.66-2.89,2a20.45,20.45,0,0,0,.64,5.46,53.31,53.31,0,0,1-4.72,10c-2.74,4.27-2.91,2.83-2.24,1.41.79-1.7,2.12-2.58,2.57-3.29,0,0-2.08.16-3.69,2.93-1,1.76-1.14,6.11,3.21,1.39a21,21,0,0,0,2.65-4.08A45.49,45.49,0,0,1,31,24.56a11.5,11.5,0,0,0,3.74,1.68C37.4,26.85,40.1,24.69,35.55,23.15ZM23.18,25l2.2-5c1.46,3.1,3.52,3.73,3.52,3.73C28,23.78,23.18,25,23.18,25Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a,.b{fill:#28497c;}.b{fill-rule:evenodd;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="b" d="M32.7,24.13c2.19,1.74,4,1,3.71.69C35.63,23.8,34.08,23.8,32.7,24.13Zm2.85-1a8.49,8.49,0,0,0-5,.09A7.88,7.88,0,0,1,26,18c-1.83-5.82,0-7.69.12-4.06l.37,2.47s1.27-3.08.45-5.33c-.71-2-2.77-1.66-2.89,2a20.45,20.45,0,0,0,.64,5.46,53.31,53.31,0,0,1-4.72,10c-2.74,4.27-2.91,2.83-2.24,1.41.79-1.7,2.12-2.58,2.57-3.29,0,0-2.08.16-3.69,2.93-1,1.76-1.14,6.11,3.21,1.39a21,21,0,0,0,2.65-4.08A45.49,45.49,0,0,1,31,24.56a11.5,11.5,0,0,0,3.74,1.68C37.4,26.85,40.1,24.69,35.55,23.15ZM23.18,25l2.2-5c1.46,3.1,3.52,3.73,3.52,3.73C28,23.78,23.18,25,23.18,25Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-pic.svg b/public/assets/images/icons/blue/file-pic.svg
index 5fc6174308f7a161a5195d6ad01933b6b217b3f2..f46f3955b34e15af388b2dfce788d7402bcb3be1 100644
--- a/public/assets/images/icons/blue/file-pic.svg
+++ b/public/assets/images/icons/blue/file-pic.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M31,16V14a2,2,0,0,0-2-2H25a2,2,0,0,0-2,2v2H18a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H36a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Zm-4,11.8a5,5,0,1,1,5-5A5,5,0,0,1,27,27.77ZM36,22H33V19h3Z"/><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="18" y="13.97" width="4" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M31,16V14a2,2,0,0,0-2-2H25a2,2,0,0,0-2,2v2H18a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H36a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Zm-4,11.8a5,5,0,1,1,5-5A5,5,0,0,1,27,27.77ZM36,22H33V19h3Z"/><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="18" y="13.97" width="4" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-pic2.svg b/public/assets/images/icons/blue/file-pic2.svg
index 5fa351debda4fe1fe9eb90030a8664161d9e3106..5dd656429d5e4e26ab925ba78ee1a0d712194616 100644
--- a/public/assets/images/icons/blue/file-pic2.svg
+++ b/public/assets/images/icons/blue/file-pic2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M38.91,24.39,34.5,21.5l-5.81,4.92L19.47,17l-4.38,5.3L12,26V32H42V26.42Z"/><circle class="a" cx="30" cy="13.97" r="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M38.91,24.39,34.5,21.5l-5.81,4.92L19.47,17l-4.38,5.3L12,26V32H42V26.42Z"/><circle class="a" cx="30" cy="13.97" r="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-ppt.svg b/public/assets/images/icons/blue/file-ppt.svg
index d58bfffef6a5ae68a482dcfe61bc56cb806ecbc8..24155ec37c4b8833f95af8b676670f9a6f1787ff 100644
--- a/public/assets/images/icons/blue/file-ppt.svg
+++ b/public/assets/images/icons/blue/file-ppt.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M27.64,23.69H23.35V32H19V10h8.64c4.6,0,7.36,3.12,7.36,6.86S32.24,23.69,27.64,23.69Zm-.22-9.89H23.35v6h4.07a2.93,2.93,0,0,0,3.23-3A3,3,0,0,0,27.42,13.8Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M27.64,23.69H23.35V32H19V10h8.64c4.6,0,7.36,3.12,7.36,6.86S32.24,23.69,27.64,23.69Zm-.22-9.89H23.35v6h4.07a2.93,2.93,0,0,0,3.23-3A3,3,0,0,0,27.42,13.8Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-presentation.svg b/public/assets/images/icons/blue/file-presentation.svg
index dd4d4038a68f2803343fe9be560d5c2f768ca2d5..6cb3bd2a55a014f651901c4ab27b1f97adcd2e68 100644
--- a/public/assets/images/icons/blue/file-presentation.svg
+++ b/public/assets/images/icons/blue/file-presentation.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM40.91,6.06V26H29.82a3.07,3.07,0,0,0-2.92-2H19.1a3.07,3.07,0,0,0-2.92,2H13.09V6.06ZM35,46.68V42h4.64ZM37.91,39H32v5.91a3,3,0,0,1-3,3H13.09V29H16v4H30V29H40.91v7A3,3,0,0,1,37.91,39Z"/><path class="a" d="M23,22a4.5,4.5,0,1,0-4.5-4.5A4.49,4.49,0,0,0,23,22Z"/><rect class="a" x="31" y="8.97" width="7" height="7"/><rect class="a" x="31" y="17.97" width="7" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM40.91,6.06V26H29.82a3.07,3.07,0,0,0-2.92-2H19.1a3.07,3.07,0,0,0-2.92,2H13.09V6.06ZM35,46.68V42h4.64ZM37.91,39H32v5.91a3,3,0,0,1-3,3H13.09V29H16v4H30V29H40.91v7A3,3,0,0,1,37.91,39Z"/><path class="a" d="M23,22a4.5,4.5,0,1,0-4.5-4.5A4.49,4.49,0,0,0,23,22Z"/><rect class="a" x="31" y="8.97" width="7" height="7"/><rect class="a" x="31" y="17.97" width="7" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-small.svg b/public/assets/images/icons/blue/file-small.svg
index 858059926e4af41397de6daeb613954d7c2cd6fd..bca44ffa750aeae3691205e1514b16b5ecccab7b 100644
--- a/public/assets/images/icons/blue/file-small.svg
+++ b/public/assets/images/icons/blue/file-small.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-sound.svg b/public/assets/images/icons/blue/file-sound.svg
index 12d7c1b33dae29ec80c9da71c78180ea2935e6a3..f253d0822ad1db3005a7f79bb235706973130e7c 100644
--- a/public/assets/images/icons/blue/file-sound.svg
+++ b/public/assets/images/icons/blue/file-sound.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.57 17.46 18 17.46 18 22.61 20.57 22.61 24.43 25.18 25.71 25.18 25.71 14.89 24.43 14.89 20.57 17.46"/><path class="a" d="M29.24,14l-1.69,1.68a6.06,6.06,0,0,1,0,8.56l1.69,1.68A8.43,8.43,0,0,0,29.24,14Z"/><path class="a" d="M32.27,11l-1.69,1.69a10.31,10.31,0,0,1,0,14.62L32.27,29A12.73,12.73,0,0,0,32.27,11Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.57 17.46 18 17.46 18 22.61 20.57 22.61 24.43 25.18 25.71 25.18 25.71 14.89 24.43 14.89 20.57 17.46"/><path class="a" d="M29.24,14l-1.69,1.68a6.06,6.06,0,0,1,0,8.56l1.69,1.68A8.43,8.43,0,0,0,29.24,14Z"/><path class="a" d="M32.27,11l-1.69,1.69a10.31,10.31,0,0,1,0,14.62L32.27,29A12.73,12.73,0,0,0,32.27,11Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-spreadsheet.svg b/public/assets/images/icons/blue/file-spreadsheet.svg
index 43078a1d63c504806f33c9debb47b69aef5765b2..c24e4662af3d632d0391eb082f6faca5cef12193 100644
--- a/public/assets/images/icons/blue/file-spreadsheet.svg
+++ b/public/assets/images/icons/blue/file-spreadsheet.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="13.97" width="5" height="11"/><rect class="a" x="24.5" y="10.97" width="5" height="14"/><rect class="a" x="33" y="16.97" width="5" height="8"/><rect class="a" x="16" y="26.97" width="22" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="13.97" width="5" height="11"/><rect class="a" x="24.5" y="10.97" width="5" height="14"/><rect class="a" x="33" y="16.97" width="5" height="8"/><rect class="a" x="16" y="26.97" width="22" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-text.svg b/public/assets/images/icons/blue/file-text.svg
index 72e172d8a18a721ab51284d9f34953484678119f..7cc16e1fae20828364062ca3fefba4bca4031204 100644
--- a/public/assets/images/icons/blue/file-text.svg
+++ b/public/assets/images/icons/blue/file-text.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="10.97" width="9" height="9"/><rect class="a" x="28" y="10.97" width="10" height="3"/><rect class="a" x="28" y="16.97" width="10" height="3"/><rect class="a" x="16" y="22.97" width="22" height="3"/><rect class="a" x="16" y="28.97" width="22" height="3"/><rect class="a" x="16" y="34.97" width="13" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="10.97" width="9" height="9"/><rect class="a" x="28" y="10.97" width="10" height="3"/><rect class="a" x="28" y="16.97" width="10" height="3"/><rect class="a" x="16" y="22.97" width="22" height="3"/><rect class="a" x="16" y="28.97" width="22" height="3"/><rect class="a" x="16" y="34.97" width="13" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-video.svg b/public/assets/images/icons/blue/file-video.svg
index 68b44c87f525b7711a577ae14576dbd793aa34a8..81871371c05d3f7bae2d16c88af082e64db9fac5 100644
--- a/public/assets/images/icons/blue/file-video.svg
+++ b/public/assets/images/icons/blue/file-video.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M36.62,15.42,32.5,18.17V15.73A1.69,1.69,0,0,0,30.82,14H17.68A1.69,1.69,0,0,0,16,15.73V26.11a1.68,1.68,0,0,0,1.68,1.68H30.82a1.68,1.68,0,0,0,1.68-1.68V23.67l4.12,2.75H38v-11ZM31,26.11a.14.14,0,0,1-.14.14H17.68a.14.14,0,0,1-.14-.14V15.73a.15.15,0,0,1,.14-.15H30.82a.15.15,0,0,1,.14.15Z"/><polygon class="a" points="21.5 25.04 27.69 20.92 21.5 16.79 21.5 25.04"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M36.62,15.42,32.5,18.17V15.73A1.69,1.69,0,0,0,30.82,14H17.68A1.69,1.69,0,0,0,16,15.73V26.11a1.68,1.68,0,0,0,1.68,1.68H30.82a1.68,1.68,0,0,0,1.68-1.68V23.67l4.12,2.75H38v-11ZM31,26.11a.14.14,0,0,1-.14.14H17.68a.14.14,0,0,1-.14-.14V15.73a.15.15,0,0,1,.14-.15H30.82a.15.15,0,0,1,.14.15Z"/><polygon class="a" points="21.5 25.04 27.69 20.92 21.5 16.79 21.5 25.04"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-video2.svg b/public/assets/images/icons/blue/file-video2.svg
index 4a0429188d562991ab1bd6d1e84ca8f6d7b61362..3799633d16277a47498fbedd27aa56aeff33edbc 100644
--- a/public/assets/images/icons/blue/file-video2.svg
+++ b/public/assets/images/icons/blue/file-video2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.12 30.47 35.88 19.97 20.13 9.47 20.12 30.47"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.12 30.47 35.88 19.97 20.13 9.47 20.12 30.47"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file-word.svg b/public/assets/images/icons/blue/file-word.svg
index 2cb6d7e4f702e0b985ec0aaef6ee8154b1f301f7..2221e62523df25b0809286781c399ba3bf26d330 100644
--- a/public/assets/images/icons/blue/file-word.svg
+++ b/public/assets/images/icons/blue/file-word.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M33.2,30H30.28L27,18.44,23.69,30H20.78L16,11h3.65l2.76,12,3.27-12h2.61l3.27,12,2.79-12H38Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M33.2,30H30.28L27,18.44,23.69,30H20.78L16,11h3.65l2.76,12,3.27-12h2.61l3.27,12,2.79-12H38Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file.svg b/public/assets/images/icons/blue/file.svg
index 858059926e4af41397de6daeb613954d7c2cd6fd..bca44ffa750aeae3691205e1514b16b5ecccab7b 100644
--- a/public/assets/images/icons/blue/file.svg
+++ b/public/assets/images/icons/blue/file.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/file2.svg b/public/assets/images/icons/blue/file2.svg
index 858059926e4af41397de6daeb613954d7c2cd6fd..bca44ffa750aeae3691205e1514b16b5ecccab7b 100644
--- a/public/assets/images/icons/blue/file2.svg
+++ b/public/assets/images/icons/blue/file2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/files.svg b/public/assets/images/icons/blue/files.svg
index 2911ad22b3a55cbbb3e2a45a1e98a6848e18c69c..349615b5f06279c02a35cda76f711123807c955e 100644
--- a/public/assets/images/icons/blue/files.svg
+++ b/public/assets/images/icons/blue/files.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="a" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="a" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/files2.svg b/public/assets/images/icons/blue/files2.svg
index bc0a4a33bafa81fbc7a9ffbaaeadfa3bc1de304d..597b40cdaad0abb5840daae8d4cfdbbef14b3b94 100644
--- a/public/assets/images/icons/blue/files2.svg
+++ b/public/assets/images/icons/blue/files2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="docs"><g id="files"><path class="cls-1" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="cls-1" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="docs"><g id="files"><path class="cls-1" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="cls-1" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/filter.svg b/public/assets/images/icons/blue/filter.svg
index 7ecbfb76c0a4f1f6faf61d7ff5dfdab925657bb4..51167eec560848117471db7be15e33d49e6ed233 100644
--- a/public/assets/images/icons/blue/filter.svg
+++ b/public/assets/images/icons/blue/filter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><path id="filter" d="M21.1,49.89v-20a1.91,1.91,0,0,0-.41-1.19L3,6.22H51L33.54,28.37a3.09,3.09,0,0,0-.65,1.89V43.39ZM9.33,9.29,23.1,26.78a5,5,0,0,1,1.07,3.09V44.69l5.64-3.12V30.26a6.1,6.1,0,0,1,1.32-3.78L44.66,9.29Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><path id="filter" d="M21.1,49.89v-20a1.91,1.91,0,0,0-.41-1.19L3,6.22H51L33.54,28.37a3.09,3.09,0,0,0-.65,1.89V43.39ZM9.33,9.29,23.1,26.78a5,5,0,0,1,1.07,3.09V44.69l5.64-3.12V30.26a6.1,6.1,0,0,1,1.32-3.78L44.66,9.29Z"/></svg>
diff --git a/public/assets/images/icons/blue/filter2.svg b/public/assets/images/icons/blue/filter2.svg
index d857a48c42c26b3f514f7b47ecf8b4fe224fc13b..0e80963d2dc54cc7155de8dd1ca5a6b39e2eddd6 100644
--- a/public/assets/images/icons/blue/filter2.svg
+++ b/public/assets/images/icons/blue/filter2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="filter2"><polygon points="16.97 30.39 37.02 30.39 42.05 21.7 11.94 21.7 16.97 30.39"/><polygon points="3.01 6.22 8.32 15.41 45.67 15.41 50.98 6.22 3.01 6.22"/><polygon points="27 47.77 33.4 36.68 20.59 36.68 27 47.77"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="filter2"><polygon points="16.97 30.39 37.02 30.39 42.05 21.7 11.94 21.7 16.97 30.39"/><polygon points="3.01 6.22 8.32 15.41 45.67 15.41 50.98 6.22 3.01 6.22"/><polygon points="27 47.77 33.4 36.68 20.59 36.68 27 47.77"/></g></svg>
diff --git a/public/assets/images/icons/blue/fishbowl.svg b/public/assets/images/icons/blue/fishbowl.svg
index e66e5ee25ddad1e314b354e1720a9f66447f6f44..1336fdb9f4963b1baa0f58ea4ea434399b22dbc6 100644
--- a/public/assets/images/icons/blue/fishbowl.svg
+++ b/public/assets/images/icons/blue/fishbowl.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="fishbowl"><path class="cls-1" d="M51,27a23.69,23.69,0,0,0-4.25-13.58,1.61,1.61,0,0,0-2.23-.41,1.6,1.6,0,0,0-.41,2.22A20.47,20.47,0,0,1,47.8,27a21.51,21.51,0,0,1-.37,3.87,15,15,0,0,1-12,6.05A15.3,15.3,0,0,1,20.27,21.53c0-.07,0-.15,0-.22A25.31,25.31,0,0,0,7,32.57,20.19,20.19,0,0,1,6.2,27,20.51,20.51,0,0,1,10,15.17,1.59,1.59,0,0,0,9.57,13a1.62,1.62,0,0,0-2.23.39,23.77,23.77,0,0,0,6,33.29,3.21,3.21,0,0,0-.19.92A3.43,3.43,0,0,0,16.54,51H37.37a3.43,3.43,0,0,0,3.42-3.42,3.14,3.14,0,0,0-.18-.86A23.83,23.83,0,0,0,51,27Z"/><path class="cls-1" d="M26.88,16.28A14,14,0,0,0,34,12.43c4.47-4.9,3.31-9.53,3.31-9.53s-4.75-.71-9.22,4.19A13.88,13.88,0,0,0,25,14.54l-5.13,1.63,5.91,5.34Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="fishbowl"><path class="cls-1" d="M51,27a23.69,23.69,0,0,0-4.25-13.58,1.61,1.61,0,0,0-2.23-.41,1.6,1.6,0,0,0-.41,2.22A20.47,20.47,0,0,1,47.8,27a21.51,21.51,0,0,1-.37,3.87,15,15,0,0,1-12,6.05A15.3,15.3,0,0,1,20.27,21.53c0-.07,0-.15,0-.22A25.31,25.31,0,0,0,7,32.57,20.19,20.19,0,0,1,6.2,27,20.51,20.51,0,0,1,10,15.17,1.59,1.59,0,0,0,9.57,13a1.62,1.62,0,0,0-2.23.39,23.77,23.77,0,0,0,6,33.29,3.21,3.21,0,0,0-.19.92A3.43,3.43,0,0,0,16.54,51H37.37a3.43,3.43,0,0,0,3.42-3.42,3.14,3.14,0,0,0-.18-.86A23.83,23.83,0,0,0,51,27Z"/><path class="cls-1" d="M26.88,16.28A14,14,0,0,0,34,12.43c4.47-4.9,3.31-9.53,3.31-9.53s-4.75-.71-9.22,4.19A13.88,13.88,0,0,0,25,14.54l-5.13,1.63,5.91,5.34Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-broken.svg b/public/assets/images/icons/blue/folder-broken.svg
index 4f1dbcfca8b848c38c3467041c52cc38a0987e98..d1336d15f84b04e8b58b8c8f5ad0746382e8ec5a 100644
--- a/public/assets/images/icons/blue/folder-broken.svg
+++ b/public/assets/images/icons/blue/folder-broken.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-broken2.svg b/public/assets/images/icons/blue/folder-broken2.svg
index 4f1dbcfca8b848c38c3467041c52cc38a0987e98..d1336d15f84b04e8b58b8c8f5ad0746382e8ec5a 100644
--- a/public/assets/images/icons/blue/folder-broken2.svg
+++ b/public/assets/images/icons/blue/folder-broken2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-date-empty.svg b/public/assets/images/icons/blue/folder-date-empty.svg
index 0e4b88003943152b97ab57ca3a3f3ac725c4a424..dbc6ca08ead6142de5ce24edcf3350459d3646a2 100644
--- a/public/assets/images/icons/blue/folder-date-empty.svg
+++ b/public/assets/images/icons/blue/folder-date-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-date-empty2.svg b/public/assets/images/icons/blue/folder-date-empty2.svg
index 0e4b88003943152b97ab57ca3a3f3ac725c4a424..dbc6ca08ead6142de5ce24edcf3350459d3646a2 100644
--- a/public/assets/images/icons/blue/folder-date-empty2.svg
+++ b/public/assets/images/icons/blue/folder-date-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-date-full.svg b/public/assets/images/icons/blue/folder-date-full.svg
index 13ba5932690a73af0ee7d51bb245259e782a4f7e..de2b29dfdbeb6e188c00627fe9a4403a07f518e3 100644
--- a/public/assets/images/icons/blue/folder-date-full.svg
+++ b/public/assets/images/icons/blue/folder-date-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-date-full2.svg b/public/assets/images/icons/blue/folder-date-full2.svg
index 13ba5932690a73af0ee7d51bb245259e782a4f7e..de2b29dfdbeb6e188c00627fe9a4403a07f518e3 100644
--- a/public/assets/images/icons/blue/folder-date-full2.svg
+++ b/public/assets/images/icons/blue/folder-date-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-edit-empty.svg b/public/assets/images/icons/blue/folder-edit-empty.svg
index 69333d398893023e250af600fd1e185d97190165..b129648ec8376b1a996b87258839f0c7c61074b6 100644
--- a/public/assets/images/icons/blue/folder-edit-empty.svg
+++ b/public/assets/images/icons/blue/folder-edit-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-edit-empty2.svg b/public/assets/images/icons/blue/folder-edit-empty2.svg
index 69333d398893023e250af600fd1e185d97190165..b129648ec8376b1a996b87258839f0c7c61074b6 100644
--- a/public/assets/images/icons/blue/folder-edit-empty2.svg
+++ b/public/assets/images/icons/blue/folder-edit-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-edit-full.svg b/public/assets/images/icons/blue/folder-edit-full.svg
index 0ad945e6a5c630d0abefee3ea667e8951648ef47..390cd88880bfb8daf71a49a81b84a5afbc4dd595 100644
--- a/public/assets/images/icons/blue/folder-edit-full.svg
+++ b/public/assets/images/icons/blue/folder-edit-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-edit-full2.svg b/public/assets/images/icons/blue/folder-edit-full2.svg
index 0ad945e6a5c630d0abefee3ea667e8951648ef47..390cd88880bfb8daf71a49a81b84a5afbc4dd595 100644
--- a/public/assets/images/icons/blue/folder-edit-full2.svg
+++ b/public/assets/images/icons/blue/folder-edit-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-empty.svg b/public/assets/images/icons/blue/folder-empty.svg
index 2e194581f232b6094a4c5a697cb7db6a200fced2..1215b424f80b3950de59e8b4a11249cca9b589f6 100644
--- a/public/assets/images/icons/blue/folder-empty.svg
+++ b/public/assets/images/icons/blue/folder-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-empty2.svg b/public/assets/images/icons/blue/folder-empty2.svg
index 2e194581f232b6094a4c5a697cb7db6a200fced2..1215b424f80b3950de59e8b4a11249cca9b589f6 100644
--- a/public/assets/images/icons/blue/folder-empty2.svg
+++ b/public/assets/images/icons/blue/folder-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-full.svg b/public/assets/images/icons/blue/folder-full.svg
index d3c7014a18be1c9cb9f29bf3ff93e5c788738ded..924f02f6c00ecdab3df0c5e7b7377a1caa63be6a 100644
--- a/public/assets/images/icons/blue/folder-full.svg
+++ b/public/assets/images/icons/blue/folder-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-full2.svg b/public/assets/images/icons/blue/folder-full2.svg
index d3c7014a18be1c9cb9f29bf3ff93e5c788738ded..924f02f6c00ecdab3df0c5e7b7377a1caa63be6a 100644
--- a/public/assets/images/icons/blue/folder-full2.svg
+++ b/public/assets/images/icons/blue/folder-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-group-empty.svg b/public/assets/images/icons/blue/folder-group-empty.svg
index 61246b56dcf6e8dbec7a2640fac2b5352da46457..20e3c18ba6f7c81fc88527154b1bbc7e10ff2343 100644
--- a/public/assets/images/icons/blue/folder-group-empty.svg
+++ b/public/assets/images/icons/blue/folder-group-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-group-empty2.svg b/public/assets/images/icons/blue/folder-group-empty2.svg
index 61246b56dcf6e8dbec7a2640fac2b5352da46457..20e3c18ba6f7c81fc88527154b1bbc7e10ff2343 100644
--- a/public/assets/images/icons/blue/folder-group-empty2.svg
+++ b/public/assets/images/icons/blue/folder-group-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-group-full.svg b/public/assets/images/icons/blue/folder-group-full.svg
index b5d27dfb67ecad1b5c61ea767332f21fa106cfc8..1e74a954517af14694c59afe8fa5e75a15c89078 100644
--- a/public/assets/images/icons/blue/folder-group-full.svg
+++ b/public/assets/images/icons/blue/folder-group-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-group-full2.svg b/public/assets/images/icons/blue/folder-group-full2.svg
index b5d27dfb67ecad1b5c61ea767332f21fa106cfc8..1e74a954517af14694c59afe8fa5e75a15c89078 100644
--- a/public/assets/images/icons/blue/folder-group-full2.svg
+++ b/public/assets/images/icons/blue/folder-group-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-home-empty.svg b/public/assets/images/icons/blue/folder-home-empty.svg
index 5ee0f74d7e268e6e7a6218a6751e33eec9f86fe2..eab23efcce0fb0c6da9507ea409ff1e875ebffcd 100644
--- a/public/assets/images/icons/blue/folder-home-empty.svg
+++ b/public/assets/images/icons/blue/folder-home-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><polygon class="a" points="26.97 17.47 16 28.45 19.21 28.45 27 20.64 34.8 28.43 38 28.45 26.97 17.47"/><polygon class="a" points="19.67 29.36 19.67 39.47 24.25 39.47 24.25 31.66 29.75 31.66 29.75 39.47 34.33 39.47 34.33 29.36 27 22.02 19.67 29.36"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><polygon class="a" points="26.97 17.47 16 28.45 19.21 28.45 27 20.64 34.8 28.43 38 28.45 26.97 17.47"/><polygon class="a" points="19.67 29.36 19.67 39.47 24.25 39.47 24.25 31.66 29.75 31.66 29.75 39.47 34.33 39.47 34.33 29.36 27 22.02 19.67 29.36"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-home-empty2.svg b/public/assets/images/icons/blue/folder-home-empty2.svg
index 26ac59d1abd06903af60c7af01c18b25fb3c09cc..03654b21f728dcd8af97cbf0cf9b8c76cc0570ce 100644
--- a/public/assets/images/icons/blue/folder-home-empty2.svg
+++ b/public/assets/images/icons/blue/folder-home-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="27 16.97 16 28.28 17.79 28.28 17.79 38.97 23.84 38.97 23.84 30.61 30.16 30.61 30.16 38.97 36.21 38.97 36.21 28.28 38 28.28 27 16.97"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="27 16.97 16 28.28 17.79 28.28 17.79 38.97 23.84 38.97 23.84 30.61 30.16 30.61 30.16 38.97 36.21 38.97 36.21 28.28 38 28.28 27 16.97"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-home-full.svg b/public/assets/images/icons/blue/folder-home-full.svg
index bb865c44eafb922981b16c7c757ccc88bd41345c..76060463ee2a69d8d3b616e2834c94c92f2d414b 100644
--- a/public/assets/images/icons/blue/folder-home-full.svg
+++ b/public/assets/images/icons/blue/folder-home-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="23.98 21.97 15 30.95 17.63 30.95 24 24.56 30.38 30.94 33 30.95 23.98 21.97"/><polygon class="a" points="18 31.7 18 39.97 21.75 39.97 21.75 33.58 26.25 33.58 26.25 39.97 30 39.97 30 31.7 24 25.69 18 31.7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="23.98 21.97 15 30.95 17.63 30.95 24 24.56 30.38 30.94 33 30.95 23.98 21.97"/><polygon class="a" points="18 31.7 18 39.97 21.75 39.97 21.75 33.58 26.25 33.58 26.25 39.97 30 39.97 30 31.7 24 25.69 18 31.7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-home-full2.svg b/public/assets/images/icons/blue/folder-home-full2.svg
index c73338b689ef679c0ab969798b700bfa1a5bf60e..363b97665249843ff98a95106ea59882e9535763 100644
--- a/public/assets/images/icons/blue/folder-home-full2.svg
+++ b/public/assets/images/icons/blue/folder-home-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="24 22.06 15.04 31.29 16.5 31.29 16.5 40.01 21.42 40.01 21.42 33.19 26.58 33.19 26.58 40.01 31.51 40.01 31.51 31.29 32.97 31.29 24 22.06"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="24 22.06 15.04 31.29 16.5 31.29 16.5 40.01 21.42 40.01 21.42 33.19 26.58 33.19 26.58 40.01 31.51 40.01 31.51 31.29 32.97 31.29 24 22.06"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-inbox-empty.svg b/public/assets/images/icons/blue/folder-inbox-empty.svg
index df531996142ec7103c572803d1b03c498b3feac3..a10f48f1c9a85859ac6c24d0a7b8727d8282aa79 100644
--- a/public/assets/images/icons/blue/folder-inbox-empty.svg
+++ b/public/assets/images/icons/blue/folder-inbox-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M12,17.47v3.06L27,30.91,42,20.53V17.47Zm15,9.7-9.59-6.64H36.59Z"/><polygon class="a" points="38.88 36.41 15.13 36.41 15.1 25.12 12 22.97 12 39.47 42 39.47 42 22.97 38.9 25.12 38.88 36.41"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M12,17.47v3.06L27,30.91,42,20.53V17.47Zm15,9.7-9.59-6.64H36.59Z"/><polygon class="a" points="38.88 36.41 15.13 36.41 15.1 25.12 12 22.97 12 39.47 42 39.47 42 22.97 38.9 25.12 38.88 36.41"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-inbox-full.svg b/public/assets/images/icons/blue/folder-inbox-full.svg
index a17411262dafb1dbe327809cb3bee123982f6bb2..92976288b9daa9760fec63417169ade3f5241df8 100644
--- a/public/assets/images/icons/blue/folder-inbox-full.svg
+++ b/public/assets/images/icons/blue/folder-inbox-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M12,22.41v2.5l12,8.5,12-8.5v-2.5Zm12,7.93-7.67-5.43H31.67Z"/><polygon class="a" points="33.5 37.91 14.5 37.91 14.48 28.66 12 26.91 12 40.41 36 40.41 36 26.91 33.52 28.66 33.5 37.91"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M12,22.41v2.5l12,8.5,12-8.5v-2.5Zm12,7.93-7.67-5.43H31.67Z"/><polygon class="a" points="33.5 37.91 14.5 37.91 14.48 28.66 12 26.91 12 40.41 36 40.41 36 26.91 33.52 28.66 33.5 37.91"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-lock-empty.svg b/public/assets/images/icons/blue/folder-lock-empty.svg
index cbd49d744edc9b16c7e1948b80483a5020825139..52321e8c93e92c439545f5e5f683ac8129346352 100644
--- a/public/assets/images/icons/blue/folder-lock-empty.svg
+++ b/public/assets/images/icons/blue/folder-lock-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-lock-empty2.svg b/public/assets/images/icons/blue/folder-lock-empty2.svg
index cbd49d744edc9b16c7e1948b80483a5020825139..52321e8c93e92c439545f5e5f683ac8129346352 100644
--- a/public/assets/images/icons/blue/folder-lock-empty2.svg
+++ b/public/assets/images/icons/blue/folder-lock-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-lock-full.svg b/public/assets/images/icons/blue/folder-lock-full.svg
index 1fb5ed34cfddd0a6860cd419dffaef00c325aaf0..8913a6d0d6350226fe6bd8f818dc49846d45a32a 100644
--- a/public/assets/images/icons/blue/folder-lock-full.svg
+++ b/public/assets/images/icons/blue/folder-lock-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-lock-full2.svg b/public/assets/images/icons/blue/folder-lock-full2.svg
index 1fb5ed34cfddd0a6860cd419dffaef00c325aaf0..8913a6d0d6350226fe6bd8f818dc49846d45a32a 100644
--- a/public/assets/images/icons/blue/folder-lock-full2.svg
+++ b/public/assets/images/icons/blue/folder-lock-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-parent.svg b/public/assets/images/icons/blue/folder-parent.svg
index d240fc417b8649ef2c69a3f28dbd3594e11b8941..a1d2d73fac95d31ffa77dbf73c38214f4f5fed22 100644
--- a/public/assets/images/icons/blue/folder-parent.svg
+++ b/public/assets/images/icons/blue/folder-parent.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="38 25 30.91 25 24 31.91 17.09 25 10 25 24 39 38 25"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="38 25 30.91 25 24 31.91 17.09 25 10 25 24 39 38 25"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-plugin-market-empty.svg b/public/assets/images/icons/blue/folder-plugin-market-empty.svg
index 76e73256d40dfe1a56355b3af9668ba1648c67fe..35bb72eec2be8da2a52c20dff6b3d694cef39aa1 100644
--- a/public/assets/images/icons/blue/folder-plugin-market-empty.svg
+++ b/public/assets/images/icons/blue/folder-plugin-market-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M31.46,33.48a.92.92,0,0,0-.45.12,6.34,6.34,0,0,1-3.09.8,6.42,6.42,0,0,1-1.07-12.75,7.82,7.82,0,0,1,1.07-.08,6.2,6.2,0,0,1,1.62.21,1,1,0,0,0,.24,0,.91.91,0,0,0,.9-1L30.21,17H16V39H33l-.59-4.69A.91.91,0,0,0,31.46,33.48ZM17.37,37.59V18.34H29l.25,2a7.37,7.37,0,0,0-1.32-.12,8,8,0,0,0-1.29.11,7.79,7.79,0,0,0,1.29,15.48,7.89,7.89,0,0,0,3.17-.68l.31,2.49Z"/><path class="a" d="M31.58,17l.76,6.1a.91.91,0,0,1-1.47.83A5,5,0,0,0,27.42,23a5,5,0,1,0,4.37,8.24.92.92,0,0,1,1.63.45c.4,3.19.91,7.31.91,7.31H38V17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M31.46,33.48a.92.92,0,0,0-.45.12,6.34,6.34,0,0,1-3.09.8,6.42,6.42,0,0,1-1.07-12.75,7.82,7.82,0,0,1,1.07-.08,6.2,6.2,0,0,1,1.62.21,1,1,0,0,0,.24,0,.91.91,0,0,0,.9-1L30.21,17H16V39H33l-.59-4.69A.91.91,0,0,0,31.46,33.48ZM17.37,37.59V18.34H29l.25,2a7.37,7.37,0,0,0-1.32-.12,8,8,0,0,0-1.29.11,7.79,7.79,0,0,0,1.29,15.48,7.89,7.89,0,0,0,3.17-.68l.31,2.49Z"/><path class="a" d="M31.58,17l.76,6.1a.91.91,0,0,1-1.47.83A5,5,0,0,0,27.42,23a5,5,0,1,0,4.37,8.24.92.92,0,0,1,1.63.45c.4,3.19.91,7.31.91,7.31H38V17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-plugin-market-full.svg b/public/assets/images/icons/blue/folder-plugin-market-full.svg
index 4942c2acff90b974c913ddaa202ee740f30111bf..6d7e49bf6a75dbff4fcc28d7e42eb6a1d7a14591 100644
--- a/public/assets/images/icons/blue/folder-plugin-market-full.svg
+++ b/public/assets/images/icons/blue/folder-plugin-market-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M27.65,35.48a.74.74,0,0,0-.37.1,5.25,5.25,0,1,1-3.4-9.78,5.1,5.1,0,0,1,.87-.07,5.33,5.33,0,0,1,1.33.17.63.63,0,0,0,.19,0,.74.74,0,0,0,.74-.84L26.63,22H15V40H28.87l-.47-3.84A.75.75,0,0,0,27.65,35.48ZM16.12,38.84V23.09h9.51l.2,1.61a6.47,6.47,0,0,0-1.08-.09,7.42,7.42,0,0,0-1.05.08A6.38,6.38,0,1,0,27.35,36.8l.25,2Z"/><path class="a" d="M27.75,22l.62,5a.75.75,0,0,1-1.2.68,4,4,0,0,0-2.82-.76,4.12,4.12,0,0,0,.4,8.23,4.09,4.09,0,0,0,3.17-1.49.75.75,0,0,1,1.33.37c.33,2.61.75,6,.75,6h3V22Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M27.65,35.48a.74.74,0,0,0-.37.1,5.25,5.25,0,1,1-3.4-9.78,5.1,5.1,0,0,1,.87-.07,5.33,5.33,0,0,1,1.33.17.63.63,0,0,0,.19,0,.74.74,0,0,0,.74-.84L26.63,22H15V40H28.87l-.47-3.84A.75.75,0,0,0,27.65,35.48ZM16.12,38.84V23.09h9.51l.2,1.61a6.47,6.47,0,0,0-1.08-.09,7.42,7.42,0,0,0-1.05.08A6.38,6.38,0,1,0,27.35,36.8l.25,2Z"/><path class="a" d="M27.75,22l.62,5a.75.75,0,0,1-1.2.68,4,4,0,0,0-2.82-.76,4.12,4.12,0,0,0,.4,8.23,4.09,4.09,0,0,0,3.17-1.49.75.75,0,0,1,1.33.37c.33,2.61.75,6,.75,6h3V22Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-public-empty.svg b/public/assets/images/icons/blue/folder-public-empty.svg
index e8afaf6d3a964584df7bfa1854038e605ba8010d..3fc4896c8d9604f7d45671d35240f3405df26c20 100644
--- a/public/assets/images/icons/blue/folder-public-empty.svg
+++ b/public/assets/images/icons/blue/folder-public-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-public-empty2.svg b/public/assets/images/icons/blue/folder-public-empty2.svg
index e8afaf6d3a964584df7bfa1854038e605ba8010d..3fc4896c8d9604f7d45671d35240f3405df26c20 100644
--- a/public/assets/images/icons/blue/folder-public-empty2.svg
+++ b/public/assets/images/icons/blue/folder-public-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-public-full.svg b/public/assets/images/icons/blue/folder-public-full.svg
index 00bf778e416591ec92f979548dd58e30136054fe..2e6f6de42235548dac741c2459e0e02cb3b19cea 100644
--- a/public/assets/images/icons/blue/folder-public-full.svg
+++ b/public/assets/images/icons/blue/folder-public-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-public-full2.svg b/public/assets/images/icons/blue/folder-public-full2.svg
index 00bf778e416591ec92f979548dd58e30136054fe..2e6f6de42235548dac741c2459e0e02cb3b19cea 100644
--- a/public/assets/images/icons/blue/folder-public-full2.svg
+++ b/public/assets/images/icons/blue/folder-public-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-topic-empty.svg b/public/assets/images/icons/blue/folder-topic-empty.svg
index 50cd999c0a5b0bf507da84ff46facb250a71f3a0..b9915fe997835b64c10b3af446660dcaaa1aa085 100644
--- a/public/assets/images/icons/blue/folder-topic-empty.svg
+++ b/public/assets/images/icons/blue/folder-topic-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M29.89,18.41V17H24v1.38H18.18V39H35.82V18.41Zm3.59,18.43h-13V20.6H24v.51h5.92V20.6h3.59Z"/><rect class="a" x="22.59" y="26.57" width="8.82" height="2.78"/><rect class="a" x="22.59" y="30.69" width="8.82" height="2.89"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M29.89,18.41V17H24v1.38H18.18V39H35.82V18.41Zm3.59,18.43h-13V20.6H24v.51h5.92V20.6h3.59Z"/><rect class="a" x="22.59" y="26.57" width="8.82" height="2.78"/><rect class="a" x="22.59" y="30.69" width="8.82" height="2.89"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/folder-topic-full.svg b/public/assets/images/icons/blue/folder-topic-full.svg
index 97292225f39bbaa3abd7add1f50845718536e4ec..1b6ca9fa433e37bf65fbb0f89c93feea26d79659 100644
--- a/public/assets/images/icons/blue/folder-topic-full.svg
+++ b/public/assets/images/icons/blue/folder-topic-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M26.37,23.15V22H21.52v1.12H16.78V40H31.22V23.15ZM29.3,38.24H18.7V25h2.82v.42h4.85V25H29.3Z"/><rect class="a" x="20.39" y="29.83" width="7.22" height="2.27"/><rect class="a" x="20.39" y="33.21" width="7.22" height="2.36"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M26.37,23.15V22H21.52v1.12H16.78V40H31.22V23.15ZM29.3,38.24H18.7V25h2.82v.42h4.85V25H29.3Z"/><rect class="a" x="20.39" y="29.83" width="7.22" height="2.27"/><rect class="a" x="20.39" y="33.21" width="7.22" height="2.36"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/forum.svg b/public/assets/images/icons/blue/forum.svg
index 7e7360d240235792a8c694b215ab9f275ef18759..2ae7a65b938af568b01512db96f75047ad951fcf 100644
--- a/public/assets/images/icons/blue/forum.svg
+++ b/public/assets/images/icons/blue/forum.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/forum2.svg b/public/assets/images/icons/blue/forum2.svg
index 7e7360d240235792a8c694b215ab9f275ef18759..2ae7a65b938af568b01512db96f75047ad951fcf 100644
--- a/public/assets/images/icons/blue/forum2.svg
+++ b/public/assets/images/icons/blue/forum2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/fullscreen-off.svg b/public/assets/images/icons/blue/fullscreen-off.svg
index 0d99978df182a2ef9b4a9ad6b3fa6f50bf7397c5..9f60e1a73973b709c1c13bab41cd9b1ea422b01d 100644
--- a/public/assets/images/icons/blue/fullscreen-off.svg
+++ b/public/assets/images/icons/blue/fullscreen-off.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="fullscreen-off"><polygon points="51 20.13 33.87 20.13 33.87 2.99 37.29 2.99 37.29 16.7 51 16.7 51 20.13"/><polygon points="33.86 50.87 33.86 33.73 51 33.73 51 37.16 37.29 37.16 37.29 50.87 33.86 50.87"/><polygon points="20.16 50.97 16.73 50.97 16.73 37.26 3.02 37.26 3.02 33.84 20.16 33.84 20.16 50.97"/><polygon points="3.02 20.02 3.02 16.6 16.73 16.6 16.73 2.89 20.16 2.89 20.16 20.02 3.02 20.02"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="fullscreen-off"><polygon points="51 20.13 33.87 20.13 33.87 2.99 37.29 2.99 37.29 16.7 51 16.7 51 20.13"/><polygon points="33.86 50.87 33.86 33.73 51 33.73 51 37.16 37.29 37.16 37.29 50.87 33.86 50.87"/><polygon points="20.16 50.97 16.73 50.97 16.73 37.26 3.02 37.26 3.02 33.84 20.16 33.84 20.16 50.97"/><polygon points="3.02 20.02 3.02 16.6 16.73 16.6 16.73 2.89 20.16 2.89 20.16 20.02 3.02 20.02"/></g></svg>
diff --git a/public/assets/images/icons/blue/fullscreen-on.svg b/public/assets/images/icons/blue/fullscreen-on.svg
index 51a13c37f43ef82a2d28c6a9fe4707a2d9a159c4..0ecc3e6a2752a74e7b0ef478de013f95512b6fc7 100644
--- a/public/assets/images/icons/blue/fullscreen-on.svg
+++ b/public/assets/images/icons/blue/fullscreen-on.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="zoom-in-3"><polygon points="51 20.12 47.57 20.12 47.57 6.42 33.86 6.42 33.86 2.99 51 2.99 51 20.12"/><polygon points="20.15 50.97 3.02 50.97 3.02 33.83 6.44 33.83 6.44 47.54 20.15 47.54 20.15 50.97"/><polygon points="33.86 50.97 33.86 47.54 47.57 47.54 47.57 33.83 51 33.83 51 50.97 33.86 50.97"/><polygon points="3.02 20.12 3.02 2.99 20.15 2.99 20.15 6.42 6.44 6.42 6.44 20.12 3.02 20.12"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="zoom-in-3"><polygon points="51 20.12 47.57 20.12 47.57 6.42 33.86 6.42 33.86 2.99 51 2.99 51 20.12"/><polygon points="20.15 50.97 3.02 50.97 3.02 33.83 6.44 33.83 6.44 47.54 20.15 47.54 20.15 50.97"/><polygon points="33.86 50.97 33.86 47.54 47.57 47.54 47.57 33.83 51 33.83 51 50.97 33.86 50.97"/><polygon points="3.02 20.12 3.02 2.99 20.15 2.99 20.15 6.42 6.44 6.42 6.44 20.12 3.02 20.12"/></g></svg>
diff --git a/public/assets/images/icons/blue/graph.svg b/public/assets/images/icons/blue/graph.svg
index e83f223be37a3fab3d79181c1fe95f822eb436fd..d247f3aa46c7e175fcbed70bcae010e59877f62e 100644
--- a/public/assets/images/icons/blue/graph.svg
+++ b/public/assets/images/icons/blue/graph.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><path id="graph" class="cls-1" d="M6,44V25.33l9.5,10.36,11.05-12,5.95,5.95L45.23,16.86A3.25,3.25,0,0,0,46,17a3,3,0,1,0-3-3,3.25,3.25,0,0,0,.11.77L32.5,25.35,26.45,19.3l-10.95,12L6,20.89V7H3V47H51V44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><path id="graph" class="cls-1" d="M6,44V25.33l9.5,10.36,11.05-12,5.95,5.95L45.23,16.86A3.25,3.25,0,0,0,46,17a3,3,0,1,0-3-3,3.25,3.25,0,0,0,.11.77L32.5,25.35,26.45,19.3l-10.95,12L6,20.89V7H3V47H51V44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/group.svg b/public/assets/images/icons/blue/group.svg
index 2d847466fc0e7e6893eda645fd59a978bab78c2b..d76afc76f7ee8f007928164263cd8973a9202454 100644
--- a/public/assets/images/icons/blue/group.svg
+++ b/public/assets/images/icons/blue/group.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/group2.svg b/public/assets/images/icons/blue/group2.svg
index dc83d5e9af2b115bf8a942ebf8745c70e0297585..7faeb11e483611e86a069eed6ecd2766bc4fcca4 100644
--- a/public/assets/images/icons/blue/group2.svg
+++ b/public/assets/images/icons/blue/group2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M11.72,24.63a6.16,6.16,0,1,0-6.15-6.16A6.15,6.15,0,0,0,11.72,24.63Z"/><path class="a" d="M14.51,27.55H8.9A5.94,5.94,0,0,0,3,33.49V41.2H20.43V33.49A6,6,0,0,0,14.51,27.55Z"/><path class="a" d="M42.28,31.92a6.16,6.16,0,1,0-6.14-6.15A6.15,6.15,0,0,0,42.28,31.92Z"/><path class="a" d="M45.08,34.85H39.47a5.92,5.92,0,0,0-5.9,5.93V48.5H51V40.78A6,6,0,0,0,45.08,34.85Z"/><path class="a" d="M25.3,17.82a6.16,6.16,0,1,0-6.14-6.16A6.15,6.15,0,0,0,25.3,17.82Z"/><path class="a" d="M34,34.39V26.67a6,6,0,0,0-5.92-5.93H22.49a5.91,5.91,0,0,0-5.88,5.7,7.38,7.38,0,0,1,5.28,7.05v.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M11.72,24.63a6.16,6.16,0,1,0-6.15-6.16A6.15,6.15,0,0,0,11.72,24.63Z"/><path class="a" d="M14.51,27.55H8.9A5.94,5.94,0,0,0,3,33.49V41.2H20.43V33.49A6,6,0,0,0,14.51,27.55Z"/><path class="a" d="M42.28,31.92a6.16,6.16,0,1,0-6.14-6.15A6.15,6.15,0,0,0,42.28,31.92Z"/><path class="a" d="M45.08,34.85H39.47a5.92,5.92,0,0,0-5.9,5.93V48.5H51V40.78A6,6,0,0,0,45.08,34.85Z"/><path class="a" d="M25.3,17.82a6.16,6.16,0,1,0-6.14-6.16A6.15,6.15,0,0,0,25.3,17.82Z"/><path class="a" d="M34,34.39V26.67a6,6,0,0,0-5.92-5.93H22.49a5.91,5.91,0,0,0-5.88,5.7,7.38,7.38,0,0,1,5.28,7.05v.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/group3.svg b/public/assets/images/icons/blue/group3.svg
index f478927d88004a7f050d883242dd2be05d513dc7..b5c4027605e420c3c226cfd6ffb364dff548fc53 100644
--- a/public/assets/images/icons/blue/group3.svg
+++ b/public/assets/images/icons/blue/group3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M21.33,27.49a7.83,7.83,0,0,1-2.16,5.39H34.83A7.87,7.87,0,0,1,36.06,21a6.06,6.06,0,0,0-4.68-2.25H22.6A6,6,0,0,0,17.93,21,7.87,7.87,0,0,1,21.33,27.49Z"/><path class="a" d="M27,15.74a6.37,6.37,0,1,0-6.33-6.38A6.34,6.34,0,0,0,27,15.74Z"/><path class="a" d="M13.49,33.86a6.37,6.37,0,1,0-6.33-6.37A6.35,6.35,0,0,0,13.49,33.86Z"/><path class="a" d="M17.87,36.88H9.09A6.13,6.13,0,0,0,3,43v8H24V43A6.15,6.15,0,0,0,17.87,36.88Z"/><path class="a" d="M34.18,27.49a6.34,6.34,0,1,0,6.33-6.37A6.35,6.35,0,0,0,34.18,27.49Z"/><path class="a" d="M44.89,36.88H36.11A6.13,6.13,0,0,0,30,43v8H51V43A6.15,6.15,0,0,0,44.89,36.88Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M21.33,27.49a7.83,7.83,0,0,1-2.16,5.39H34.83A7.87,7.87,0,0,1,36.06,21a6.06,6.06,0,0,0-4.68-2.25H22.6A6,6,0,0,0,17.93,21,7.87,7.87,0,0,1,21.33,27.49Z"/><path class="a" d="M27,15.74a6.37,6.37,0,1,0-6.33-6.38A6.34,6.34,0,0,0,27,15.74Z"/><path class="a" d="M13.49,33.86a6.37,6.37,0,1,0-6.33-6.37A6.35,6.35,0,0,0,13.49,33.86Z"/><path class="a" d="M17.87,36.88H9.09A6.13,6.13,0,0,0,3,43v8H24V43A6.15,6.15,0,0,0,17.87,36.88Z"/><path class="a" d="M34.18,27.49a6.34,6.34,0,1,0,6.33-6.37A6.35,6.35,0,0,0,34.18,27.49Z"/><path class="a" d="M44.89,36.88H36.11A6.13,6.13,0,0,0,30,43v8H51V43A6.15,6.15,0,0,0,44.89,36.88Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/guestbook.svg b/public/assets/images/icons/blue/guestbook.svg
index 7331efba71959d96a49bf92f0a36a2b27715d4d0..5e0151b698bffcf2435a2c751a6577cf59d2c48f 100644
--- a/public/assets/images/icons/blue/guestbook.svg
+++ b/public/assets/images/icons/blue/guestbook.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="guestbook"><path class="cls-1" d="M50,39.26l-1-1.72L47.46,35,33.57,11.77,23,6.19l-.13,11.53,13.89,23.2,1.55,2.57,1,1.72a6.3,6.3,0,0,0,8.44,2.18A5.84,5.84,0,0,0,50,39.26Zm-5.25-2.81-5.35,3L26,16.94l0-2.1L29.38,13l1.94,1ZM46.33,39l1,1.72a2.91,2.91,0,0,1-1.13,4.06A3.15,3.15,0,0,1,42,43.73L41,42ZM21,15H3V9H21Zm0,10H3V19H21ZM16,35H3V29H16Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="guestbook"><path class="cls-1" d="M50,39.26l-1-1.72L47.46,35,33.57,11.77,23,6.19l-.13,11.53,13.89,23.2,1.55,2.57,1,1.72a6.3,6.3,0,0,0,8.44,2.18A5.84,5.84,0,0,0,50,39.26Zm-5.25-2.81-5.35,3L26,16.94l0-2.1L29.38,13l1.94,1ZM46.33,39l1,1.72a2.91,2.91,0,0,1-1.13,4.06A3.15,3.15,0,0,1,42,43.73L41,42ZM21,15H3V9H21Zm0,10H3V19H21ZM16,35H3V29H16Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/home.svg b/public/assets/images/icons/blue/home.svg
index 09c07a61dce4613b6e5135d9fb0ac8e8bbad9a30..59a825864d1de896ed3e7b1ccf95c99523d48963 100644
--- a/public/assets/images/icons/blue/home.svg
+++ b/public/assets/images/icons/blue/home.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="26.93 3.07 3 26.97 10 26.97 27 9.97 44.02 26.93 51 26.97 26.93 3.07"/><polygon class="a" points="11 28.97 11 50.97 21 50.97 21 33.97 33 33.97 33 50.97 43 50.97 43 28.97 27 12.97 11 28.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="26.93 3.07 3 26.97 10 26.97 27 9.97 44.02 26.93 51 26.97 26.93 3.07"/><polygon class="a" points="11 28.97 11 50.97 21 50.97 21 33.97 33 33.97 33 50.97 43 50.97 43 28.97 27 12.97 11 28.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/home2.svg b/public/assets/images/icons/blue/home2.svg
index 6aa2730b13f3267e0f6ba951e8ff924e01d3acff..bad991cfaccec73e0d0d1f1abb1e10a185c1eca6 100644
--- a/public/assets/images/icons/blue/home2.svg
+++ b/public/assets/images/icons/blue/home2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="3 26.97 26.93 3.07 51 26.97 44.02 26.93 27 9.97 10 26.97 3 26.97"/><polygon class="a" points="15 50.97 10 50.97 10 29.97 15 24.97 15 50.97"/><polygon class="a" points="44 50.97 39 50.97 39 24.97 44 29.97 44 50.97"/><rect class="a" x="10" y="45.97" width="34" height="5"/><rect class="a" x="25" y="29.97" width="10" height="17"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="3 26.97 26.93 3.07 51 26.97 44.02 26.93 27 9.97 10 26.97 3 26.97"/><polygon class="a" points="15 50.97 10 50.97 10 29.97 15 24.97 15 50.97"/><polygon class="a" points="44 50.97 39 50.97 39 24.97 44 29.97 44 50.97"/><rect class="a" x="10" y="45.97" width="34" height="5"/><rect class="a" x="25" y="29.97" width="10" height="17"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/ilias.svg b/public/assets/images/icons/blue/ilias.svg
index aa359bdd6b3a3fb8e0f228db23330bfbd5ae5a20..22758ba20935b9cce3b4f644ac5c36246f4144a9 100644
--- a/public/assets/images/icons/blue/ilias.svg
+++ b/public/assets/images/icons/blue/ilias.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M46.36,33.87h-.08v.47h.08a.49.49,0,0,0,.27-.06.19.19,0,0,0,.1-.18.2.2,0,0,0-.09-.18A.52.52,0,0,0,46.36,33.87Z"/><polygon class="a" points="29.29 39.62 32.07 39.62 30.68 35.46 29.29 39.62"/><path class="a" d="M47.46,33.59a1.31,1.31,0,0,0-1-.41,1.27,1.27,0,0,0-.52.11,1.15,1.15,0,0,0-.44.3,1.31,1.31,0,0,0-.31.44,1.46,1.46,0,0,0-.1.52,1.5,1.5,0,0,0,.1.52,1.38,1.38,0,0,0,.31.43,1.12,1.12,0,0,0,.43.3,1.35,1.35,0,0,0,.53.1,1.3,1.3,0,0,0,.52-.1,1.23,1.23,0,0,0,.44-.3,1.52,1.52,0,0,0,.3-.43,1.5,1.5,0,0,0,.1-.52,1.46,1.46,0,0,0-.1-.52A1.43,1.43,0,0,0,47.46,33.59Zm-.61,1.89L46.6,35a1,1,0,0,0-.16-.25.17.17,0,0,0-.13-.08h0v.83h-.49V33.55h.66a1,1,0,0,1,.61.14.46.46,0,0,1,.2.41.44.44,0,0,1-.13.33.64.64,0,0,1-.34.17.59.59,0,0,1,.18.14,1.53,1.53,0,0,1,.15.23l.25.51Z"/><path class="a" d="M3,3V51H51V3ZM11.42,43.6H9.23V32.94h2.19Zm9.4,0H13.53V32.94h2.19v8.83h5.1Zm3.58,0H22.21V32.94H24.4Zm9,0-.71-2.15h-4L28,43.6H25.72l3.79-10.66h2.42L35.62,43.6Zm7.41.33c-2.71,0-4.28-1.24-4.41-3.52H38.5c.08,1.14.91,1.77,2.4,1.77,1.33,0,2.15-.54,2.15-1.43s-.54-1.27-2-1.55l-1.49-.29c-2.17-.41-3-1.22-3-2.87,0-2.07,1.48-3.27,4-3.27A4.5,4.5,0,0,1,44,34a3,3,0,0,1,.74,2.21h-2c-.08-1.08-.85-1.67-2.24-1.67-1.12,0-1.84.51-1.84,1.32s.45,1.08,2,1.39l1.66.32c2,.38,2.82,1.25,2.82,2.93C45.15,42.65,43.53,43.93,40.78,43.93Zm7.3-8.73a1.65,1.65,0,0,1-.38.55,1.7,1.7,0,0,1-.55.38,1.72,1.72,0,0,1-1.31,0,1.7,1.7,0,0,1-.55-.38,1.65,1.65,0,0,1-.38-.55,1.85,1.85,0,0,1,0-1.31,1.69,1.69,0,0,1,.38-.56,1.67,1.67,0,0,1,.55-.37,1.72,1.72,0,0,1,1.31,0,1.67,1.67,0,0,1,.55.37,1.69,1.69,0,0,1,.38.56,1.72,1.72,0,0,1,0,1.31Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M46.36,33.87h-.08v.47h.08a.49.49,0,0,0,.27-.06.19.19,0,0,0,.1-.18.2.2,0,0,0-.09-.18A.52.52,0,0,0,46.36,33.87Z"/><polygon class="a" points="29.29 39.62 32.07 39.62 30.68 35.46 29.29 39.62"/><path class="a" d="M47.46,33.59a1.31,1.31,0,0,0-1-.41,1.27,1.27,0,0,0-.52.11,1.15,1.15,0,0,0-.44.3,1.31,1.31,0,0,0-.31.44,1.46,1.46,0,0,0-.1.52,1.5,1.5,0,0,0,.1.52,1.38,1.38,0,0,0,.31.43,1.12,1.12,0,0,0,.43.3,1.35,1.35,0,0,0,.53.1,1.3,1.3,0,0,0,.52-.1,1.23,1.23,0,0,0,.44-.3,1.52,1.52,0,0,0,.3-.43,1.5,1.5,0,0,0,.1-.52,1.46,1.46,0,0,0-.1-.52A1.43,1.43,0,0,0,47.46,33.59Zm-.61,1.89L46.6,35a1,1,0,0,0-.16-.25.17.17,0,0,0-.13-.08h0v.83h-.49V33.55h.66a1,1,0,0,1,.61.14.46.46,0,0,1,.2.41.44.44,0,0,1-.13.33.64.64,0,0,1-.34.17.59.59,0,0,1,.18.14,1.53,1.53,0,0,1,.15.23l.25.51Z"/><path class="a" d="M3,3V51H51V3ZM11.42,43.6H9.23V32.94h2.19Zm9.4,0H13.53V32.94h2.19v8.83h5.1Zm3.58,0H22.21V32.94H24.4Zm9,0-.71-2.15h-4L28,43.6H25.72l3.79-10.66h2.42L35.62,43.6Zm7.41.33c-2.71,0-4.28-1.24-4.41-3.52H38.5c.08,1.14.91,1.77,2.4,1.77,1.33,0,2.15-.54,2.15-1.43s-.54-1.27-2-1.55l-1.49-.29c-2.17-.41-3-1.22-3-2.87,0-2.07,1.48-3.27,4-3.27A4.5,4.5,0,0,1,44,34a3,3,0,0,1,.74,2.21h-2c-.08-1.08-.85-1.67-2.24-1.67-1.12,0-1.84.51-1.84,1.32s.45,1.08,2,1.39l1.66.32c2,.38,2.82,1.25,2.82,2.93C45.15,42.65,43.53,43.93,40.78,43.93Zm7.3-8.73a1.65,1.65,0,0,1-.38.55,1.7,1.7,0,0,1-.55.38,1.72,1.72,0,0,1-1.31,0,1.7,1.7,0,0,1-.55-.38,1.65,1.65,0,0,1-.38-.55,1.85,1.85,0,0,1,0-1.31,1.69,1.69,0,0,1,.38-.56,1.67,1.67,0,0,1,.55-.37,1.72,1.72,0,0,1,1.31,0,1.67,1.67,0,0,1,.55.37,1.69,1.69,0,0,1,.38.56,1.72,1.72,0,0,1,0,1.31Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/info-circle-full.svg b/public/assets/images/icons/blue/info-circle-full.svg
index 88ac802bf9fb20d5bd4e8db5535d1bfb59513d97..e69df8272b87c2cd3de0918e33c36b9159e1f14c 100644
--- a/public/assets/images/icons/blue/info-circle-full.svg
+++ b/public/assets/images/icons/blue/info-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/info-circle.svg b/public/assets/images/icons/blue/info-circle.svg
index 88ac802bf9fb20d5bd4e8db5535d1bfb59513d97..e69df8272b87c2cd3de0918e33c36b9159e1f14c 100644
--- a/public/assets/images/icons/blue/info-circle.svg
+++ b/public/assets/images/icons/blue/info-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/infopage.svg b/public/assets/images/icons/blue/infopage.svg
index 44fdc1b9b9d4d786633107b92c85e525a210c6db..31b162f6479b7d514e561357f40a6bf253384d62 100644
--- a/public/assets/images/icons/blue/infopage.svg
+++ b/public/assets/images/icons/blue/infopage.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/infopage2.svg b/public/assets/images/icons/blue/infopage2.svg
index 44fdc1b9b9d4d786633107b92c85e525a210c6db..31b162f6479b7d514e561357f40a6bf253384d62 100644
--- a/public/assets/images/icons/blue/infopage2.svg
+++ b/public/assets/images/icons/blue/infopage2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/install.svg b/public/assets/images/icons/blue/install.svg
index f41702cf1dec4bf1139c1ce31e6da54e3a99b7d8..8bd5b8984a00f643ae26115feb80391946fc3e53 100644
--- a/public/assets/images/icons/blue/install.svg
+++ b/public/assets/images/icons/blue/install.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="43 5 34.9 5 27 12.9 19.1 5 11 5 27 21 43 5"/><path class="a" d="M38.29,16.6l0,0a16,16,0,1,1-22.62,0l-3.54-3.53a21,21,0,1,0,29.7,0l0,0Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="43 5 34.9 5 27 12.9 19.1 5 11 5 27 21 43 5"/><path class="a" d="M38.29,16.6l0,0a16,16,0,1,1-22.62,0l-3.54-3.53a21,21,0,1,0,29.7,0l0,0Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/institute.svg b/public/assets/images/icons/blue/institute.svg
index fb5c3a24250bf88922c32db713b7adfd719086dd..e94b75d077967b1581d730fcc09f4b041e1b43fc 100644
--- a/public/assets/images/icons/blue/institute.svg
+++ b/public/assets/images/icons/blue/institute.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="44 24.97 36 24.97 36 47.97 31 47.97 31 24.97 26.89 24.97 23 24.97 23 47.97 18 47.97 18 24.97 10 24.97 10 47.97 6 47.97 6 50.97 48 50.97 48 47.97 44 47.97 44 24.97"/><path class="a" d="M12,22H45v0l6,0L26.93,3.07,3,22h9ZM27,10l11.3,9H15.75Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="44 24.97 36 24.97 36 47.97 31 47.97 31 24.97 26.89 24.97 23 24.97 23 47.97 18 47.97 18 24.97 10 24.97 10 47.97 6 47.97 6 50.97 48 50.97 48 47.97 44 47.97 44 24.97"/><path class="a" d="M12,22H45v0l6,0L26.93,3.07,3,22h9ZM27,10l11.3,9H15.75Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/key.svg b/public/assets/images/icons/blue/key.svg
index cc4879d9e5309a0898def7b643c9dafcc00f3da9..2288e9bb79b9a8f28897e96b491db5353ed82f02 100644
--- a/public/assets/images/icons/blue/key.svg
+++ b/public/assets/images/icons/blue/key.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="key"><path class="cls-1" d="M34.44,3A16.53,16.53,0,0,0,19.12,25.81L3,41.94V51h9.06V44.88h5.88V39h6.12V32.46A16.56,16.56,0,1,0,34.44,3Zm3.88,20.44a7.76,7.76,0,1,1,7.76-7.76A7.77,7.77,0,0,1,38.32,23.44Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="key"><path class="cls-1" d="M34.44,3A16.53,16.53,0,0,0,19.12,25.81L3,41.94V51h9.06V44.88h5.88V39h6.12V32.46A16.56,16.56,0,1,0,34.44,3Zm3.88,20.44a7.76,7.76,0,1,1,7.76-7.76A7.77,7.77,0,0,1,38.32,23.44Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/lightbulb.svg b/public/assets/images/icons/blue/lightbulb.svg
index 342934be449d48d54425b765fdab63df5422d104..d9a21ab2be7e8189f35c6814102745f689a24bd9 100644
--- a/public/assets/images/icons/blue/lightbulb.svg
+++ b/public/assets/images/icons/blue/lightbulb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M27,3a18.54,18.54,0,0,0-2,.11,17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,27,3Zm7.33,28.92A5,5,0,0,0,32,36.12V38H22V36.13a5,5,0,0,0-2.33-4.24,14,14,0,0,1,5.7-25.83A14.84,14.84,0,0,1,27,6a14,14,0,0,1,7.33,25.92Z"/><path class="a" d="M32.39,9.05A12.51,12.51,0,0,0,27.24,8a12.66,12.66,0,0,0-10.37,5.4,1.73,1.73,0,0,0,.42,2.41,1.69,1.69,0,0,0,1,.32,1.73,1.73,0,0,0,1.42-.74,9.21,9.21,0,0,1,7.54-3.93,9.08,9.08,0,0,1,3.74.8,1.73,1.73,0,1,0,1.41-3.16Z"/><path class="a" d="M17,16.31A1.73,1.73,0,0,0,15,17.58a12.38,12.38,0,0,0-.37,3,12.68,12.68,0,0,0,.28,2.67,1.74,1.74,0,0,0,1.69,1.36,1.55,1.55,0,0,0,.37,0,1.74,1.74,0,0,0,1.33-2.06A8.92,8.92,0,0,1,18,20.61a9.08,9.08,0,0,1,.27-2.2A1.74,1.74,0,0,0,17,16.31Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M27,3a18.54,18.54,0,0,0-2,.11,17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,27,3Zm7.33,28.92A5,5,0,0,0,32,36.12V38H22V36.13a5,5,0,0,0-2.33-4.24,14,14,0,0,1,5.7-25.83A14.84,14.84,0,0,1,27,6a14,14,0,0,1,7.33,25.92Z"/><path class="a" d="M32.39,9.05A12.51,12.51,0,0,0,27.24,8a12.66,12.66,0,0,0-10.37,5.4,1.73,1.73,0,0,0,.42,2.41,1.69,1.69,0,0,0,1,.32,1.73,1.73,0,0,0,1.42-.74,9.21,9.21,0,0,1,7.54-3.93,9.08,9.08,0,0,1,3.74.8,1.73,1.73,0,1,0,1.41-3.16Z"/><path class="a" d="M17,16.31A1.73,1.73,0,0,0,15,17.58a12.38,12.38,0,0,0-.37,3,12.68,12.68,0,0,0,.28,2.67,1.74,1.74,0,0,0,1.69,1.36,1.55,1.55,0,0,0,.37,0,1.74,1.74,0,0,0,1.33-2.06A8.92,8.92,0,0,1,18,20.61a9.08,9.08,0,0,1,.27-2.2A1.74,1.74,0,0,0,17,16.31Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/lightbulb2.svg b/public/assets/images/icons/blue/lightbulb2.svg
index 4ba0d485c11683c779ce8c062be2c9bfcef05895..2e3d4845c54dfc1aac5570c3ba0ebc46cbb5b443 100644
--- a/public/assets/images/icons/blue/lightbulb2.svg
+++ b/public/assets/images/icons/blue/lightbulb2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M25,3.08a17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,25,3.08ZM16.32,17.33A11.15,11.15,0,0,0,16,20a10.48,10.48,0,0,0,.25,2.31,1.51,1.51,0,0,1-1.15,1.79l-.32,0a1.51,1.51,0,0,1-1.47-1.18A14.63,14.63,0,0,1,13,20a14.11,14.11,0,0,1,.41-3.36,1.5,1.5,0,0,1,2.91.72ZM33.46,9.17a1.5,1.5,0,0,1-2,.75A11,11,0,0,0,18,13.66a1.49,1.49,0,0,1-1.23.64,1.5,1.5,0,0,1-1.23-2.36A14,14,0,0,1,32.7,7.18,1.51,1.51,0,0,1,33.46,9.17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M25,3.08a17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,25,3.08ZM16.32,17.33A11.15,11.15,0,0,0,16,20a10.48,10.48,0,0,0,.25,2.31,1.51,1.51,0,0,1-1.15,1.79l-.32,0a1.51,1.51,0,0,1-1.47-1.18A14.63,14.63,0,0,1,13,20a14.11,14.11,0,0,1,.41-3.36,1.5,1.5,0,0,1,2.91.72ZM33.46,9.17a1.5,1.5,0,0,1-2,.75A11,11,0,0,0,18,13.66a1.49,1.49,0,0,1-1.23.64,1.5,1.5,0,0,1-1.23-2.36A14,14,0,0,1,32.7,7.18,1.51,1.51,0,0,1,33.46,9.17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/link-extern.svg b/public/assets/images/icons/blue/link-extern.svg
index 40cc5a7118d7ab08f262f361d4eae68d457db7bd..18ece055b5ba08d4ad130b9b993e7d374b98e98b 100644
--- a/public/assets/images/icons/blue/link-extern.svg
+++ b/public/assets/images/icons/blue/link-extern.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="17 17 22.06 22.06 31.94 22.06 31.94 31.94 37 37 37 17 17 17"/><path class="a" d="M27,46A19,19,0,0,1,27,8V3A24,24,0,1,0,51,27H46A19,19,0,0,1,27,46Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="17 17 22.06 22.06 31.94 22.06 31.94 31.94 37 37 37 17 17 17"/><path class="a" d="M27,46A19,19,0,0,1,27,8V3A24,24,0,1,0,51,27H46A19,19,0,0,1,27,46Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/link-intern.svg b/public/assets/images/icons/blue/link-intern.svg
index 93ad143f6823f0744d54d99cce084b3241889101..fc170fb7e943f4643cd6823a48cd63b24b8ad8b7 100644
--- a/public/assets/images/icons/blue/link-intern.svg
+++ b/public/assets/images/icons/blue/link-intern.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/><polygon class="a" points="22 13 22 20.09 28.91 27 22 33.91 22 41 36 27 22 13"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/><polygon class="a" points="22 13 22 20.09 28.91 27 22 33.91 22 41 36 27 22 13"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/link2.svg b/public/assets/images/icons/blue/link2.svg
index 01403c28d8893d7ffbca7f4d17bb36d69b9b3b6a..9a119b56e1bd1cafbdfc489d5edc712f8d0b143e 100644
--- a/public/assets/images/icons/blue/link2.svg
+++ b/public/assets/images/icons/blue/link2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM22,41V33.91L28.91,27,22,20.09V13L36,27Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM22,41V33.91L28.91,27,22,20.09V13L36,27Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/link3.svg b/public/assets/images/icons/blue/link3.svg
index a2bfe864137f4dea0fb0454da88601a310dc8026..5a76dd00ec35b98dd7a041b83f19bb3f953bfd7d 100644
--- a/public/assets/images/icons/blue/link3.svg
+++ b/public/assets/images/icons/blue/link3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,51A24,24,0,1,0,3,27,24,24,0,0,0,27,51Zm5-38v7.09L25.09,27,32,33.88V41L18,27Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,51A24,24,0,1,0,3,27,24,24,0,0,0,27,51Zm5-38v7.09L25.09,27,32,33.88V41L18,27Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/literature.svg b/public/assets/images/icons/blue/literature.svg
index 1a7ba19e2c5843b4924049309b953af141ba0195..3deaea863856cfbe36cc19f96de5ee5c47306077 100644
--- a/public/assets/images/icons/blue/literature.svg
+++ b/public/assets/images/icons/blue/literature.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42h3V3Zm0,17.9H33v3H15Zm0,6H33v3H15Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42h3V3Zm0,17.9H33v3H15Zm0,6H33v3H15Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/literature2.svg b/public/assets/images/icons/blue/literature2.svg
index 5d4f0bdacae98deeb1627b13b253adc3eb8b8ff0..9f9612ef7feb68bfd7017ac1ec48d0ed9bbe06aa 100644
--- a/public/assets/images/icons/blue/literature2.svg
+++ b/public/assets/images/icons/blue/literature2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42.08h3V3Zm0,12H36V48H15a3,3,0,0,1-3-3V13.94A4.14,4.14,0,0,0,15,15Z"/><rect class="a" x="15" y="20.9" width="17.99" height="3"/><rect class="a" x="15" y="26.9" width="17.99" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42.08h3V3Zm0,12H36V48H15a3,3,0,0,1-3-3V13.94A4.14,4.14,0,0,0,15,15Z"/><rect class="a" x="15" y="20.9" width="17.99" height="3"/><rect class="a" x="15" y="26.9" width="17.99" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/lock-locked.svg b/public/assets/images/icons/blue/lock-locked.svg
index 252ebc615289afc7ff717d8f10fb23788300d7af..420d3be5774006f03babe5e7334f8fccebda1222 100644
--- a/public/assets/images/icons/blue/lock-locked.svg
+++ b/public/assets/images/icons/blue/lock-locked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="lock-locked2"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM18,19a9,9,0,0,1,18,0v3H18ZM42,46H12V25H42Z"/><path class="cls-1" d="M24,40a3,3,0,0,0,6,0V35.62a4,4,0,1,0-6,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="lock-locked2"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM18,19a9,9,0,0,1,18,0v3H18ZM42,46H12V25H42Z"/><path class="cls-1" d="M24,40a3,3,0,0,0,6,0V35.62a4,4,0,1,0-6,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/lock-locked2.svg b/public/assets/images/icons/blue/lock-locked2.svg
index d3f44bffec91c49ce845875640c3ab660977a4d0..aca8646d670e1d60eb3db735350c0c955b6e501b 100644
--- a/public/assets/images/icons/blue/lock-locked2.svg
+++ b/public/assets/images/icons/blue/lock-locked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="lock-locked"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM30,35.59V40a3,3,0,0,1-6,0V35.59A3.93,3.93,0,0,1,23,33a4,4,0,1,1,7,2.62ZM36,22H18V19a9,9,0,0,1,18,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="lock-locked"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM30,35.59V40a3,3,0,0,1-6,0V35.59A3.93,3.93,0,0,1,23,33a4,4,0,1,1,7,2.62ZM36,22H18V19a9,9,0,0,1,18,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/lock-unlocked.svg b/public/assets/images/icons/blue/lock-unlocked.svg
index 9e0649da0b7b1c9dfb3648cdf97ea5dceb2ffa24..d7148e8c7c3bb1e808afb42f76a05ace88d85956 100644
--- a/public/assets/images/icons/blue/lock-unlocked.svg
+++ b/public/assets/images/icons/blue/lock-unlocked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="lock-unlocked2"><path class="cls-1" d="M24,42a3,3,0,0,0,6,0V37.62a4,4,0,1,0-6,0Z"/><path class="cls-1" d="M18,24V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM42,48H12V27H42Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="lock-unlocked2"><path class="cls-1" d="M24,42a3,3,0,0,0,6,0V37.62a4,4,0,1,0-6,0Z"/><path class="cls-1" d="M18,24V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM42,48H12V27H42Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/lock-unlocked2.svg b/public/assets/images/icons/blue/lock-unlocked2.svg
index 9e6c4fe4da57440e9702cf6c36febf4d52ea9af1..47ecd5676a38e4a855f6456f6b166837d52979ff 100644
--- a/public/assets/images/icons/blue/lock-unlocked2.svg
+++ b/public/assets/images/icons/blue/lock-unlocked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="lock-unlocked"><path class="cls-1" d="M41,24H18V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM30,36.62V42a3,3,0,0,1-6,0V36.62a4,4,0,1,1,6,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="lock-unlocked"><path class="cls-1" d="M41,24H18V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM30,36.62V42a3,3,0,0,1-6,0V36.62a4,4,0,1,1,6,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/log.svg b/public/assets/images/icons/blue/log.svg
index 5752db136fce6b725244d86acbb230c5c3bb9252..4f55ecbc8c3a9447b4bbb198040576e2b076aa05 100644
--- a/public/assets/images/icons/blue/log.svg
+++ b/public/assets/images/icons/blue/log.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="log"><path class="cls-1" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><rect class="cls-1" x="15" y="10.97" width="24" height="4"/><rect class="cls-1" x="15" y="17.97" width="23" height="4"/><rect class="cls-1" x="15" y="24.97" width="22" height="4"/><rect class="cls-1" x="15" y="31.97" width="24" height="4"/><rect class="cls-1" x="15" y="38.97" width="19" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="log"><path class="cls-1" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><rect class="cls-1" x="15" y="10.97" width="24" height="4"/><rect class="cls-1" x="15" y="17.97" width="23" height="4"/><rect class="cls-1" x="15" y="24.97" width="22" height="4"/><rect class="cls-1" x="15" y="31.97" width="24" height="4"/><rect class="cls-1" x="15" y="38.97" width="19" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/mail.svg b/public/assets/images/icons/blue/mail.svg
index 3437a7d4a144ee20e1fb36ddc5eb408ae9d06767..da08a04e0cdc2b00005967f1d3ca6c5049c65356 100644
--- a/public/assets/images/icons/blue/mail.svg
+++ b/public/assets/images/icons/blue/mail.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="3 17.92 3 45 51 45 51 17.83 26.93 37.18 3 17.92"/><polygon class="a" points="3 9 3 12 3 12.06 26.93 31.42 51 12.09 51 12 51 9 3 9"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="3 17.92 3 45 51 45 51 17.83 26.93 37.18 3 17.92"/><polygon class="a" points="3 9 3 12 3 12.06 26.93 31.42 51 12.09 51 12 51 9 3 9"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/mail2.svg b/public/assets/images/icons/blue/mail2.svg
index a1a07a74d4bb055364c22af6684e84d2f2799e65..2eb1504563bcb8246571ad68a0487cc6f12dfff9 100644
--- a/public/assets/images/icons/blue/mail2.svg
+++ b/public/assets/images/icons/blue/mail2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,9v5L27,31,51,14V9ZM27,24.84,11.65,14h30.7Z"/><polygon class="a" points="46 39.97 8 39.97 7.96 21.48 3 17.97 3 44.97 51 44.97 51 17.97 46.03 21.49 46 39.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,9v5L27,31,51,14V9ZM27,24.84,11.65,14h30.7Z"/><polygon class="a" points="46 39.97 8 39.97 7.96 21.48 3 17.97 3 44.97 51 44.97 51 17.97 46.03 21.49 46 39.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/maximize.svg b/public/assets/images/icons/blue/maximize.svg
index 225fcf648db1b9fcdc960f4daee8f663b47168de..6d807c60bd9f7730793d40bb493b41bf06f48af9 100644
--- a/public/assets/images/icons/blue/maximize.svg
+++ b/public/assets/images/icons/blue/maximize.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="maximise-1"><polygon points="27 39.03 27 48.03 6 48.03 6 27.03 15 27.03 15 24.03 3 24.03 3 51.03 30 51.03 30 39.03 27 39.03"/><path d="M15,3V39H51V3ZM48,36H18V11.94H48Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="maximise-1"><polygon points="27 39.03 27 48.03 6 48.03 6 27.03 15 27.03 15 24.03 3 24.03 3 51.03 30 51.03 30 39.03 27 39.03"/><path d="M15,3V39H51V3ZM48,36H18V11.94H48Z"/></g></svg>
diff --git a/public/assets/images/icons/blue/microphone.svg b/public/assets/images/icons/blue/microphone.svg
index c9820ffbf02e2cbca7693db1806fe98f93daaf0b..c7103510e4a5facc8ae4c6f20dbbc88ecacff5e3 100644
--- a/public/assets/images/icons/blue/microphone.svg
+++ b/public/assets/images/icons/blue/microphone.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,36a7,7,0,0,0,7-7V10a7,7,0,1,0-14,0V29A7,7,0,0,0,27,36Z"/><path class="a" d="M40,29V27a3,3,0,0,0-3-3v4.65A10.24,10.24,0,0,1,27.68,39,10,10,0,0,1,17,29V24a3,3,0,0,0-3,3v2A13,13,0,0,0,25.5,41.88V46H20a3,3,0,0,0-3,3v2H37V49a3,3,0,0,0-3-3H28.5V41.88A13,13,0,0,0,40,29Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,36a7,7,0,0,0,7-7V10a7,7,0,1,0-14,0V29A7,7,0,0,0,27,36Z"/><path class="a" d="M40,29V27a3,3,0,0,0-3-3v4.65A10.24,10.24,0,0,1,27.68,39,10,10,0,0,1,17,29V24a3,3,0,0,0-3,3v2A13,13,0,0,0,25.5,41.88V46H20a3,3,0,0,0-3,3v2H37V49a3,3,0,0,0-3-3H28.5V41.88A13,13,0,0,0,40,29Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/module.svg b/public/assets/images/icons/blue/module.svg
index 1bba52a2fa671e6ab49ca093259c3e7cad0976c0..06a8a561bf58596f6846b2f55781edadc88aee91 100644
--- a/public/assets/images/icons/blue/module.svg
+++ b/public/assets/images/icons/blue/module.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="module"><path d="M8.94,26.08a14,14,0,0,1,14-14h0V6.17h0A19.92,19.92,0,0,0,3,26.08H8.94Zm19,12.46a7.48,7.48,0,0,0,0-14.95v7.48H20.44A7.49,7.49,0,0,0,27.93,38.54Zm0-27.39v5.93a14,14,0,1,1-14,14H8A19.91,19.91,0,1,0,27.93,11.15Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="module"><path d="M8.94,26.08a14,14,0,0,1,14-14h0V6.17h0A19.92,19.92,0,0,0,3,26.08H8.94Zm19,12.46a7.48,7.48,0,0,0,0-14.95v7.48H20.44A7.49,7.49,0,0,0,27.93,38.54Zm0-27.39v5.93a14,14,0,1,1-14,14H8A19.91,19.91,0,1,0,27.93,11.15Z"/></g></svg>
diff --git a/public/assets/images/icons/blue/network.svg b/public/assets/images/icons/blue/network.svg
index 44ffcd8a7dd358b3a933d87d125aa38869eb7011..a4c729a72f57748c50ffde0da8e79f0d439d3b67 100644
--- a/public/assets/images/icons/blue/network.svg
+++ b/public/assets/images/icons/blue/network.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="network"><path class="cls-1" d="M51,30.43A3.42,3.42,0,0,0,47.57,27a3.36,3.36,0,0,0-2.91,1.73H28.71V23.05a3.39,3.39,0,0,0,1.72-2.91A3.44,3.44,0,0,0,27,16.71a3.36,3.36,0,0,0-2.9,1.72H18.41V9.34a3.36,3.36,0,0,0,1.73-2.91,3.43,3.43,0,1,0-6.85,0A3.38,3.38,0,0,0,15,9.32v9.11H9.33a3.38,3.38,0,0,0-2.9-1.72,3.43,3.43,0,0,0,0,6.86,3.39,3.39,0,0,0,2.9-1.71H15v5.68a3.38,3.38,0,0,0-1.69,2.89,3.43,3.43,0,0,0,3.42,3.43,3.38,3.38,0,0,0,2.9-1.7h5.68V44.67a3.38,3.38,0,0,0-1.72,2.9,3.43,3.43,0,0,0,6.86,0,3.38,3.38,0,0,0-1.72-2.9V32.16H39v9.07a3.36,3.36,0,0,0-1.73,2.91,3.43,3.43,0,1,0,6.85,0,3.37,3.37,0,0,0-1.7-2.89V32.16h2.24a3.37,3.37,0,0,0,2.89,1.7A3.43,3.43,0,0,0,51,30.43Zm-25.71-1.7H19.63a3.29,3.29,0,0,0-1.22-1.21V21.86H24.1a3.39,3.39,0,0,0,1.19,1.19Z"/><circle class="cls-1" cx="35.57" cy="11.57" r="5.14"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="network"><path class="cls-1" d="M51,30.43A3.42,3.42,0,0,0,47.57,27a3.36,3.36,0,0,0-2.91,1.73H28.71V23.05a3.39,3.39,0,0,0,1.72-2.91A3.44,3.44,0,0,0,27,16.71a3.36,3.36,0,0,0-2.9,1.72H18.41V9.34a3.36,3.36,0,0,0,1.73-2.91,3.43,3.43,0,1,0-6.85,0A3.38,3.38,0,0,0,15,9.32v9.11H9.33a3.38,3.38,0,0,0-2.9-1.72,3.43,3.43,0,0,0,0,6.86,3.39,3.39,0,0,0,2.9-1.71H15v5.68a3.38,3.38,0,0,0-1.69,2.89,3.43,3.43,0,0,0,3.42,3.43,3.38,3.38,0,0,0,2.9-1.7h5.68V44.67a3.38,3.38,0,0,0-1.72,2.9,3.43,3.43,0,0,0,6.86,0,3.38,3.38,0,0,0-1.72-2.9V32.16H39v9.07a3.36,3.36,0,0,0-1.73,2.91,3.43,3.43,0,1,0,6.85,0,3.37,3.37,0,0,0-1.7-2.89V32.16h2.24a3.37,3.37,0,0,0,2.89,1.7A3.43,3.43,0,0,0,51,30.43Zm-25.71-1.7H19.63a3.29,3.29,0,0,0-1.22-1.21V21.86H24.1a3.39,3.39,0,0,0,1.19,1.19Z"/><circle class="cls-1" cx="35.57" cy="11.57" r="5.14"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/news.svg b/public/assets/images/icons/blue/news.svg
index 071667eb3e89271d54ee9155d5efbb8c38e5ada1..86f5688db0cddc29762a5e825aee92d7dfee4ebe 100644
--- a/public/assets/images/icons/blue/news.svg
+++ b/public/assets/images/icons/blue/news.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/news2.svg b/public/assets/images/icons/blue/news2.svg
index 071667eb3e89271d54ee9155d5efbb8c38e5ada1..86f5688db0cddc29762a5e825aee92d7dfee4ebe 100644
--- a/public/assets/images/icons/blue/news2.svg
+++ b/public/assets/images/icons/blue/news2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/no-activity.svg b/public/assets/images/icons/blue/no-activity.svg
index 42153ba67be1414de1348872ee45e508f8341626..adef15a713675d18a9b4885b044cccaf627a7881 100644
--- a/public/assets/images/icons/blue/no-activity.svg
+++ b/public/assets/images/icons/blue/no-activity.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><path id="no-activity" d="M3,3V51H51V3ZM48,6V26.62H19.23l-4-7.87-3.84,7.87H6V6ZM6,48V29.62H13.3l2-4.13,3.39,6.66,1.73-2.53H48V48Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><path id="no-activity" d="M3,3V51H51V3ZM48,6V26.62H19.23l-4-7.87-3.84,7.87H6V6ZM6,48V29.62H13.3l2-4.13,3.39,6.66,1.73-2.53H48V48Z"/></svg>
diff --git a/public/assets/images/icons/blue/oer-campus.svg b/public/assets/images/icons/blue/oer-campus.svg
index c6c0a255375533a5a314a98b662b5886f56049eb..297c322336e7d962d86cbd54166c0bc23a7ffb3f 100644
--- a/public/assets/images/icons/blue/oer-campus.svg
+++ b/public/assets/images/icons/blue/oer-campus.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M17,22.07A12.38,12.38,0,1,1,34.58,33.55l1.41.57,8.28-2.83A17.37,17.37,0,1,0,12,22.34c0,.12,0,.23,0,.36Z"/><path class="a" d="M50.78,35.93a3.72,3.72,0,0,0-3.5-2.51,3.62,3.62,0,0,0-1.25.22L35.82,37.19,22.13,31.56l8.73-1.19A3.71,3.71,0,0,0,30.4,23l-.46,0L10.08,25.56a3.68,3.68,0,0,0-1.51.57A2.25,2.25,0,0,0,7.33,27.4l-.18.49c-.05.13-.1.25-.14.38L3.14,38.76a2.22,2.22,0,0,0,.18,1.92c.91,2,5.16,4.86,9.09,6.35l9.44,1.79a8.64,8.64,0,0,0,1.4.12l.45,0a3.81,3.81,0,0,0,.59,0,3.37,3.37,0,0,0,1.2-.21L27,48.23c.4-.12.82-.25,1.29-.41,5.15-1.66,10.9-3.7,13-4.56l.07,0,7.08-2.47A3.79,3.79,0,0,0,50.78,35.93Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M17,22.07A12.38,12.38,0,1,1,34.58,33.55l1.41.57,8.28-2.83A17.37,17.37,0,1,0,12,22.34c0,.12,0,.23,0,.36Z"/><path class="a" d="M50.78,35.93a3.72,3.72,0,0,0-3.5-2.51,3.62,3.62,0,0,0-1.25.22L35.82,37.19,22.13,31.56l8.73-1.19A3.71,3.71,0,0,0,30.4,23l-.46,0L10.08,25.56a3.68,3.68,0,0,0-1.51.57A2.25,2.25,0,0,0,7.33,27.4l-.18.49c-.05.13-.1.25-.14.38L3.14,38.76a2.22,2.22,0,0,0,.18,1.92c.91,2,5.16,4.86,9.09,6.35l9.44,1.79a8.64,8.64,0,0,0,1.4.12l.45,0a3.81,3.81,0,0,0,.59,0,3.37,3.37,0,0,0,1.2-.21L27,48.23c.4-.12.82-.25,1.29-.41,5.15-1.66,10.9-3.7,13-4.56l.07,0,7.08-2.47A3.79,3.79,0,0,0,50.78,35.93Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/oer-campus2.svg b/public/assets/images/icons/blue/oer-campus2.svg
index cbc96f3876786793ee6d440078f4d5368c9a6cd7..4fcf3a2e62b19ed5f0e284823081670739f7a742 100644
--- a/public/assets/images/icons/blue/oer-campus2.svg
+++ b/public/assets/images/icons/blue/oer-campus2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/oer_audio.svg b/public/assets/images/icons/blue/oer_audio.svg
index f776a539d43e0d5903bb7dd3abdcda3a8300f1c8..2071b00ee4e5a4e1e03d424892ca11996f89151d 100644
--- a/public/assets/images/icons/blue/oer_audio.svg
+++ b/public/assets/images/icons/blue/oer_audio.svg
@@ -1 +1 @@
-<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M37.46 40.06a1 1 0 00-1-1h-9.75a1 1 0 00-1 1v18.89a1 1 0 001 1h9.75a1 1 0 001-1V40.06z" fill="#24437c"/><path d="M55.74 73L41.38 61.26c-.7.001-1.283-.56-1.31-1.26V39.06c.005-.715.595-1.3 1.31-1.3L55.74 24.7c.715 0 1.305.585 1.31 1.3v45.7a1.316 1.316 0 01-1.31 1.3zM61 61.26a1.344 1.344 0 01-.78-.26 1.326 1.326 0 01-.26-1.83 20.744 20.744 0 003.65-11A14.503 14.503 0 0060 38.68a1.31 1.31 0 01-.336-.876c0-.718.592-1.31 1.31-1.31.324 0 .636.12.876.336a16.925 16.925 0 014.3 11.37A22.938 22.938 0 0162 60.73c-.235.32-.603.515-1 .53z" fill="#24437c" fill-rule="nonzero"/><path d="M65.53 65.83a1.26 1.26 0 01-.83-.31 1.29 1.29 0 01-.17-1.83c.06-.08 6.23-7.58 6.23-14.84s-6.09-13.37-6.15-13.44a1.304 1.304 0 01-.38-.92c0-.716.589-1.305 1.305-1.305.347 0 .68.139.925.385.28.28 6.91 7 6.91 15.28S66.81 65 66.54 65.36c-.25.299-.62.471-1.01.47z" fill="#24437c" fill-rule="nonzero"/><path d="M69.45 69.74a1.302 1.302 0 01-.92-2.22c.07-.08 7.47-7.63 7.47-18.67a23.818 23.818 0 00-7.37-17.27 1.312 1.312 0 01-.392-.934c0-.719.592-1.31 1.31-1.31.274 0 .54.085.762.244a26.123 26.123 0 018.3 19.28 31.007 31.007 0 01-8.22 20.51 1.27 1.27 0 01-.94.37z" fill="#24437c" fill-rule="nonzero"/><path d="M49.9 88c-14.13 0-29.35-1.1-30.66-1.19-9.871.011-18.026-8.05-18.13-17.92C1.05 68 .5 59.11.5 49.3S1 32 1.11 31.09c.141-9.853 8.296-17.877 18.15-17.86C20.82 13.15 41.57 12 49.8 12s29.37 1.11 30.94 1.19c9.867-.023 18.03 8.023 18.15 17.89.08.94.61 7.4.61 18.62S99 68 98.89 68.91c-.136 9.848-8.281 17.872-18.13 17.86C79.45 86.86 64 88 49.9 88zM19.33 18.09C12.087 18.046 6.082 23.948 6 31.19v.19c0 .08-.6 7.8-.6 17.92 0 10.12.6 19.26.6 19.35v.16c.082 7.254 6.106 13.161 13.36 13.1h.18c.16 0 15.88 1.19 30.39 1.19s30.43-1.17 30.59-1.19h.18c7.231.028 13.218-5.869 13.3-13.1v-.2c0-.08.6-7.23.6-18.91s-.59-18.22-.6-18.29v-.22c-.082-7.254-6.106-13.161-13.36-13.1h-.13c-.22 0-22.5-1.19-30.74-1.19-8.24 0-30.12 1.18-30.34 1.19h-.1z" fill="#24437c" fill-rule="nonzero"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M37.46 40.06a1 1 0 00-1-1h-9.75a1 1 0 00-1 1v18.89a1 1 0 001 1h9.75a1 1 0 001-1V40.06z" fill="#24437c"/><path d="M55.74 73L41.38 61.26c-.7.001-1.283-.56-1.31-1.26V39.06c.005-.715.595-1.3 1.31-1.3L55.74 24.7c.715 0 1.305.585 1.31 1.3v45.7a1.316 1.316 0 01-1.31 1.3zM61 61.26a1.344 1.344 0 01-.78-.26 1.326 1.326 0 01-.26-1.83 20.744 20.744 0 003.65-11A14.503 14.503 0 0060 38.68a1.31 1.31 0 01-.336-.876c0-.718.592-1.31 1.31-1.31.324 0 .636.12.876.336a16.925 16.925 0 014.3 11.37A22.938 22.938 0 0162 60.73c-.235.32-.603.515-1 .53z" fill="#24437c" fill-rule="nonzero"/><path d="M65.53 65.83a1.26 1.26 0 01-.83-.31 1.29 1.29 0 01-.17-1.83c.06-.08 6.23-7.58 6.23-14.84s-6.09-13.37-6.15-13.44a1.304 1.304 0 01-.38-.92c0-.716.589-1.305 1.305-1.305.347 0 .68.139.925.385.28.28 6.91 7 6.91 15.28S66.81 65 66.54 65.36c-.25.299-.62.471-1.01.47z" fill="#24437c" fill-rule="nonzero"/><path d="M69.45 69.74a1.302 1.302 0 01-.92-2.22c.07-.08 7.47-7.63 7.47-18.67a23.818 23.818 0 00-7.37-17.27 1.312 1.312 0 01-.392-.934c0-.719.592-1.31 1.31-1.31.274 0 .54.085.762.244a26.123 26.123 0 018.3 19.28 31.007 31.007 0 01-8.22 20.51 1.27 1.27 0 01-.94.37z" fill="#24437c" fill-rule="nonzero"/><path d="M49.9 88c-14.13 0-29.35-1.1-30.66-1.19-9.871.011-18.026-8.05-18.13-17.92C1.05 68 .5 59.11.5 49.3S1 32 1.11 31.09c.141-9.853 8.296-17.877 18.15-17.86C20.82 13.15 41.57 12 49.8 12s29.37 1.11 30.94 1.19c9.867-.023 18.03 8.023 18.15 17.89.08.94.61 7.4.61 18.62S99 68 98.89 68.91c-.136 9.848-8.281 17.872-18.13 17.86C79.45 86.86 64 88 49.9 88zM19.33 18.09C12.087 18.046 6.082 23.948 6 31.19v.19c0 .08-.6 7.8-.6 17.92 0 10.12.6 19.26.6 19.35v.16c.082 7.254 6.106 13.161 13.36 13.1h.18c.16 0 15.88 1.19 30.39 1.19s30.43-1.17 30.59-1.19h.18c7.231.028 13.218-5.869 13.3-13.1v-.2c0-.08.6-7.23.6-18.91s-.59-18.22-.6-18.29v-.22c-.082-7.254-6.106-13.161-13.36-13.1h-.13c-.22 0-22.5-1.19-30.74-1.19-8.24 0-30.12 1.18-30.34 1.19h-.1z" fill="#24437c" fill-rule="nonzero"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/oer_dateien.svg b/public/assets/images/icons/blue/oer_dateien.svg
index c9c7ad7ae83f7013443ae5c1746cbc702528c0bf..6fa51b90a1cbdd94e3f1ebc1fd3492e4f56c5efc 100644
--- a/public/assets/images/icons/blue/oer_dateien.svg
+++ b/public/assets/images/icons/blue/oer_dateien.svg
@@ -1 +1 @@
-<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M97.54 31.73H87.32V13.66c0-1.097-.903-2-2-2h-2.71V6.59c0-1.097-.903-2-2-2H13.86c-1.097 0-2 .903-2 2v36.93h-9.4c-1.097 0-2 .903-2 2v47.89c0 1.097.903 2 2 2h95.08c1.097 0 2-.903 2-2V33.7a2.009 2.009 0 00-2-1.97zm-14.15 0H59.82a2.001 2.001 0 00-1.39.58L47.22 43.52H22.11V15.63h61.28v16.1zM15.82 8.55h62.86v3.15H20.14c-1.097 0-2 .903-2 2v29.82h-2.32V8.55zm79.75 82.9H4.43v-44H48c.519 0 1.017-.209 1.38-.58l11.26-11.21h34.93v55.79z" fill="#24437c" fill-rule="nonzero"/><path fill="#24437c" d="M31.14 21.13H72v3.93H31.14zM31.14 28.98h14.14v3.93H31.14z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M97.54 31.73H87.32V13.66c0-1.097-.903-2-2-2h-2.71V6.59c0-1.097-.903-2-2-2H13.86c-1.097 0-2 .903-2 2v36.93h-9.4c-1.097 0-2 .903-2 2v47.89c0 1.097.903 2 2 2h95.08c1.097 0 2-.903 2-2V33.7a2.009 2.009 0 00-2-1.97zm-14.15 0H59.82a2.001 2.001 0 00-1.39.58L47.22 43.52H22.11V15.63h61.28v16.1zM15.82 8.55h62.86v3.15H20.14c-1.097 0-2 .903-2 2v29.82h-2.32V8.55zm79.75 82.9H4.43v-44H48c.519 0 1.017-.209 1.38-.58l11.26-11.21h34.93v55.79z" fill="#24437c" fill-rule="nonzero"/><path fill="#24437c" d="M31.14 21.13H72v3.93H31.14zM31.14 28.98h14.14v3.93H31.14z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/oer_elearning.svg b/public/assets/images/icons/blue/oer_elearning.svg
index 09dbdd92124a8287bb99bdb533d50bc8cc575dda..aec24329cd0962cab9a2e4d4de04da03250b215d 100644
--- a/public/assets/images/icons/blue/oer_elearning.svg
+++ b/public/assets/images/icons/blue/oer_elearning.svg
@@ -1 +1 @@
-<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-miterlimit="10"><path d="M94.8 66.7V22.5c0-3.5-2.8-6.3-6.3-6.3h-77c-3.5 0-6.3 2.8-6.3 6.3v44.2c-2.7.7-4.7 3.1-4.7 6.1v4.7c0 3.5 2.8 6.3 6.3 6.3h86.4c3.5 0 6.3-2.8 6.3-6.3v-4.7c0-2.9-2-5.4-4.7-6.1zM8.4 22.5c0-1.7 1.4-3.1 3.1-3.1h77c1.7 0 3.1 1.4 3.1 3.1v44H8.4v-44zm88 55c0 1.7-1.4 3.1-3.1 3.1H6.8c-1.7 0-3.1-1.4-3.1-3.1v-4.7c0-1.7 1.4-3.1 3.1-3.1h86.4c1.7 0 3.1 1.4 3.1 3.1v4.7h.1z" fill="#24437c" fill-rule="nonzero"/><path d="M58.6 77.5H41.4c-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6h17.3c.9 0 1.6.7 1.6 1.6 0 .9-.8 1.6-1.7 1.6z" fill="#24437c" fill-rule="nonzero"/><path d="M15.4 28h28.1M15.4 33.5h25.3M15.4 39.8H28M15.4 44.5h14.7" fill="none" stroke="#24437c"/><circle cx="74.9" cy="30.3" r="7" fill="#24437c" transform="rotate(-80.514 74.904 30.259)"/><path d="M89 62.7V45.8s0-5.6-7-5.6h-2.8l-5.6 7-3.1-6.6s-6.8-.4-8.2 3.8c-1.4 4.2-2.8 5.6-2.8 5.6h-9.9l-12.7-8.5 11.3 10v4.1h14.1l4.2-7v14.1H89z" fill="#24437c" fill-rule="nonzero"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-miterlimit="10"><path d="M94.8 66.7V22.5c0-3.5-2.8-6.3-6.3-6.3h-77c-3.5 0-6.3 2.8-6.3 6.3v44.2c-2.7.7-4.7 3.1-4.7 6.1v4.7c0 3.5 2.8 6.3 6.3 6.3h86.4c3.5 0 6.3-2.8 6.3-6.3v-4.7c0-2.9-2-5.4-4.7-6.1zM8.4 22.5c0-1.7 1.4-3.1 3.1-3.1h77c1.7 0 3.1 1.4 3.1 3.1v44H8.4v-44zm88 55c0 1.7-1.4 3.1-3.1 3.1H6.8c-1.7 0-3.1-1.4-3.1-3.1v-4.7c0-1.7 1.4-3.1 3.1-3.1h86.4c1.7 0 3.1 1.4 3.1 3.1v4.7h.1z" fill="#24437c" fill-rule="nonzero"/><path d="M58.6 77.5H41.4c-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6h17.3c.9 0 1.6.7 1.6 1.6 0 .9-.8 1.6-1.7 1.6z" fill="#24437c" fill-rule="nonzero"/><path d="M15.4 28h28.1M15.4 33.5h25.3M15.4 39.8H28M15.4 44.5h14.7" fill="none" stroke="#24437c"/><circle cx="74.9" cy="30.3" r="7" fill="#24437c" transform="rotate(-80.514 74.904 30.259)"/><path d="M89 62.7V45.8s0-5.6-7-5.6h-2.8l-5.6 7-3.1-6.6s-6.8-.4-8.2 3.8c-1.4 4.2-2.8 5.6-2.8 5.6h-9.9l-12.7-8.5 11.3 10v4.1h14.1l4.2-7v14.1H89z" fill="#24437c" fill-rule="nonzero"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/oer_presentation.svg b/public/assets/images/icons/blue/oer_presentation.svg
index b7eb73315335afa786081effc3dae03b40ff66c6..ca0c779d035e433dc43787016d077d9e4a7ea28b 100644
--- a/public/assets/images/icons/blue/oer_presentation.svg
+++ b/public/assets/images/icons/blue/oer_presentation.svg
@@ -1 +1 @@
-<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M94.6 6.17H61.91v-.45C61.856 3.079 59.641.95 57 1H42.53l-.091-.001c-2.605 0-4.761 2.116-4.809 4.721v.45H5.4C2.763 6.126.554 8.253.5 10.89V77c.054 2.637 2.263 4.764 4.9 4.72h23l-10 14.14a1.999 1.999 0 00.55 2.82c.352.227.761.348 1.18.35a2.144 2.144 0 001.74-.88l11.65-16.46h33l11.17 16.4a2.17 2.17 0 002.91.58 2.003 2.003 0 00.61-2.8l-9.69-14.18H94.6c2.626.045 4.83-2.065 4.9-4.69V10.89c-.054-2.637-2.263-4.764-4.9-4.72zm-52.77-.45a.693.693 0 01.7-.67H57a.703.703 0 01.71.67v5.39a.714.714 0 01-.71.68H42.53a.703.703 0 01-.7-.68V5.72zM95.3 77a.703.703 0 01-.7.68H5.4a.703.703 0 01-.7-.68V10.89a.693.693 0 01.7-.67h32.23v.89c.048 2.605 2.204 4.721 4.809 4.721l.091-.001H57c2.641.05 4.856-2.079 4.91-4.72v-.89H94.6a.693.693 0 01.7.67V77z" fill="#24437c" fill-rule="nonzero"/><path d="M78.15 37.92l-4.35-13.1-13.63 3.68a2.006 2.006 0 00-1.45 2.5 2.12 2.12 0 002.59 1.4l6.55-1.76-15.78 27.04-23-14.63L20.37 53a1.998 1.998 0 00.26 2.85 2.16 2.16 0 003-.25l6.27-7.16 23.67 15 18.24-31.32 2.34 7a2.104 2.104 0 002 1.41c.217.002.434-.032.64-.1a2.004 2.004 0 001.36-2.51z" fill="#24437c" fill-rule="nonzero"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M94.6 6.17H61.91v-.45C61.856 3.079 59.641.95 57 1H42.53l-.091-.001c-2.605 0-4.761 2.116-4.809 4.721v.45H5.4C2.763 6.126.554 8.253.5 10.89V77c.054 2.637 2.263 4.764 4.9 4.72h23l-10 14.14a1.999 1.999 0 00.55 2.82c.352.227.761.348 1.18.35a2.144 2.144 0 001.74-.88l11.65-16.46h33l11.17 16.4a2.17 2.17 0 002.91.58 2.003 2.003 0 00.61-2.8l-9.69-14.18H94.6c2.626.045 4.83-2.065 4.9-4.69V10.89c-.054-2.637-2.263-4.764-4.9-4.72zm-52.77-.45a.693.693 0 01.7-.67H57a.703.703 0 01.71.67v5.39a.714.714 0 01-.71.68H42.53a.703.703 0 01-.7-.68V5.72zM95.3 77a.703.703 0 01-.7.68H5.4a.703.703 0 01-.7-.68V10.89a.693.693 0 01.7-.67h32.23v.89c.048 2.605 2.204 4.721 4.809 4.721l.091-.001H57c2.641.05 4.856-2.079 4.91-4.72v-.89H94.6a.693.693 0 01.7.67V77z" fill="#24437c" fill-rule="nonzero"/><path d="M78.15 37.92l-4.35-13.1-13.63 3.68a2.006 2.006 0 00-1.45 2.5 2.12 2.12 0 002.59 1.4l6.55-1.76-15.78 27.04-23-14.63L20.37 53a1.998 1.998 0 00.26 2.85 2.16 2.16 0 003-.25l6.27-7.16 23.67 15 18.24-31.32 2.34 7a2.104 2.104 0 002 1.41c.217.002.434-.032.64-.1a2.004 2.004 0 001.36-2.51z" fill="#24437c" fill-rule="nonzero"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/oer_video.svg b/public/assets/images/icons/blue/oer_video.svg
index 806d7a469a2654853a91dced8875059185242e2e..701abbcbf8fc5fab3dd769c417823369ad8f67e3 100644
--- a/public/assets/images/icons/blue/oer_video.svg
+++ b/public/assets/images/icons/blue/oer_video.svg
@@ -1 +1 @@
-<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M49.9 88c-14.13 0-29.35-1.1-30.66-1.19-9.871.011-18.026-8.05-18.13-17.92C1.05 68 .5 59.11.5 49.3S1 32 1.11 31.09c.141-9.853 8.296-17.877 18.15-17.86C20.82 13.15 41.57 12 49.8 12s29.37 1.11 30.94 1.19c9.867-.023 18.03 8.023 18.15 17.89.08.94.61 7.4.61 18.62S99 68 98.89 68.91c-.136 9.848-8.281 17.872-18.13 17.86C79.45 86.86 64 88 49.9 88zM19.33 18.09C12.087 18.046 6.082 23.948 6 31.19v.19c0 .08-.6 7.8-.6 17.92 0 10.12.6 19.26.6 19.35v.16c.082 7.254 6.106 13.161 13.36 13.1h.18c.16 0 15.88 1.19 30.39 1.19s30.43-1.17 30.59-1.19h.18c7.231.028 13.218-5.869 13.3-13.1v-.2c0-.08.6-7.23.6-18.91s-.59-18.22-.6-18.29v-.22c-.082-7.254-6.106-13.161-13.36-13.1h-.13c-.22 0-22.5-1.19-30.74-1.19-8.24 0-30.12 1.18-30.34 1.19h-.1z" fill="#24437c" fill-rule="nonzero"/><path d="M36.94 70.65h-.01a2.12 2.12 0 01-2.11-2.11V31.52l-.001-.065a2.13 2.13 0 012.12-2.12c.373 0 .739.099 1.061.285l31.56 17.61a2.132 2.132 0 01.08 3.67L38.06 70.33a2.16 2.16 0 01-1.12.32z" fill="#24437c" fill-rule="nonzero"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M49.9 88c-14.13 0-29.35-1.1-30.66-1.19-9.871.011-18.026-8.05-18.13-17.92C1.05 68 .5 59.11.5 49.3S1 32 1.11 31.09c.141-9.853 8.296-17.877 18.15-17.86C20.82 13.15 41.57 12 49.8 12s29.37 1.11 30.94 1.19c9.867-.023 18.03 8.023 18.15 17.89.08.94.61 7.4.61 18.62S99 68 98.89 68.91c-.136 9.848-8.281 17.872-18.13 17.86C79.45 86.86 64 88 49.9 88zM19.33 18.09C12.087 18.046 6.082 23.948 6 31.19v.19c0 .08-.6 7.8-.6 17.92 0 10.12.6 19.26.6 19.35v.16c.082 7.254 6.106 13.161 13.36 13.1h.18c.16 0 15.88 1.19 30.39 1.19s30.43-1.17 30.59-1.19h.18c7.231.028 13.218-5.869 13.3-13.1v-.2c0-.08.6-7.23.6-18.91s-.59-18.22-.6-18.29v-.22c-.082-7.254-6.106-13.161-13.36-13.1h-.13c-.22 0-22.5-1.19-30.74-1.19-8.24 0-30.12 1.18-30.34 1.19h-.1z" fill="#24437c" fill-rule="nonzero"/><path d="M36.94 70.65h-.01a2.12 2.12 0 01-2.11-2.11V31.52l-.001-.065a2.13 2.13 0 012.12-2.12c.373 0 .739.099 1.061.285l31.56 17.61a2.132 2.132 0 01.08 3.67L38.06 70.33a2.16 2.16 0 01-1.12.32z" fill="#24437c" fill-rule="nonzero"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/opencast.svg b/public/assets/images/icons/blue/opencast.svg
index 3635658b88257a4d83fdff0c43df2d640cf6ac34..f659efad865e99643f53e668f1e1265cf6cf97a5 100644
--- a/public/assets/images/icons/blue/opencast.svg
+++ b/public/assets/images/icons/blue/opencast.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M20,10,3,27,20,44,37,27ZM10.08,27,20,17.05,29.9,27,20,36.89Z"/><polygon class="a" points="34.01 9.97 30.5 13.48 43.99 26.97 30.5 40.46 34.01 43.97 51 26.97 34.01 9.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M20,10,3,27,20,44,37,27ZM10.08,27,20,17.05,29.9,27,20,36.89Z"/><polygon class="a" points="34.01 9.97 30.5 13.48 43.99 26.97 30.5 40.46 34.01 43.97 51 26.97 34.01 9.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/opencast2.svg b/public/assets/images/icons/blue/opencast2.svg
index b51f9860f0d51aa7c1f59a1e8fe80ab46d90ad2f..acfdae35562beb799c2424f2c198c0a43fe9aad7 100644
--- a/public/assets/images/icons/blue/opencast2.svg
+++ b/public/assets/images/icons/blue/opencast2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="31.02 6.97 29 8.99 46.96 26.97 29 44.95 31.02 46.97 51 26.97 31.02 6.97"/><path class="a" d="M23,7,3,27,23,47,43,27ZM7.29,27,23,11.26,38.71,27,23,42.68Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="31.02 6.97 29 8.99 46.96 26.97 29 44.95 31.02 46.97 51 26.97 31.02 6.97"/><path class="a" d="M23,7,3,27,23,47,43,27ZM7.29,27,23,11.26,38.71,27,23,42.68Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/pause.svg b/public/assets/images/icons/blue/pause.svg
index d07a72d05fcfa234886d26e6802a69006418c8c4..de4d83fbbc193524e25025d2eaf4d241cb418e8d 100644
--- a/public/assets/images/icons/blue/pause.svg
+++ b/public/assets/images/icons/blue/pause.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="12.01 45.99 23.99 46 24 8 12 8 12.01 45.99"/><polygon class="a" points="30.01 45.99 41.99 46 42 8 30 8 30.01 45.99"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="12.01 45.99 23.99 46 24 8 12 8 12.01 45.99"/><polygon class="a" points="30.01 45.99 41.99 46 42 8 30 8 30.01 45.99"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/permalink.svg b/public/assets/images/icons/blue/permalink.svg
index 2d847466fc0e7e6893eda645fd59a978bab78c2b..d76afc76f7ee8f007928164263cd8973a9202454 100644
--- a/public/assets/images/icons/blue/permalink.svg
+++ b/public/assets/images/icons/blue/permalink.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/person.svg b/public/assets/images/icons/blue/person.svg
index 9e2b6bde0fcd164bcff27f509c19e776cc760fdb..a86ab8547792eca1e217f52bd27e481830ed5dce 100644
--- a/public/assets/images/icons/blue/person.svg
+++ b/public/assets/images/icons/blue/person.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M4.5,49.5V4.5h45v45Zm14.71-22a7.71,7.71,0,0,0-7.71,7.7v12.3h31V35.22a7.71,7.71,0,0,0-7.7-7.7ZM27,5.55A10.5,10.5,0,1,0,37.5,16,10.5,10.5,0,0,0,27,5.55Z"/><path class="a" d="M48,6V48H44V35.22A9.21,9.21,0,0,0,34.8,26H33.67a12,12,0,0,0-.11-20H48M20.44,6a12,12,0,0,0-.11,20H19.21A9.21,9.21,0,0,0,10,35.22V48H6V6H20.44M51,3H3V51H51V3ZM27,25.05a9,9,0,1,1,9-9,9,9,0,0,1-9,9ZM13,46V35.22A6.2,6.2,0,0,1,19.21,29H34.8a6.2,6.2,0,0,1,6.2,6.2V46Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M4.5,49.5V4.5h45v45Zm14.71-22a7.71,7.71,0,0,0-7.71,7.7v12.3h31V35.22a7.71,7.71,0,0,0-7.7-7.7ZM27,5.55A10.5,10.5,0,1,0,37.5,16,10.5,10.5,0,0,0,27,5.55Z"/><path class="a" d="M48,6V48H44V35.22A9.21,9.21,0,0,0,34.8,26H33.67a12,12,0,0,0-.11-20H48M20.44,6a12,12,0,0,0-.11,20H19.21A9.21,9.21,0,0,0,10,35.22V48H6V6H20.44M51,3H3V51H51V3ZM27,25.05a9,9,0,1,1,9-9,9,9,0,0,1-9,9ZM13,46V35.22A6.2,6.2,0,0,1,19.21,29H34.8a6.2,6.2,0,0,1,6.2,6.2V46Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/person2.svg b/public/assets/images/icons/blue/person2.svg
index 7b2f6431258cbd9e5436c3234f36b34c318cc9d4..28d0d8f9085cff7418679eb14ba7bd5dde82b81e 100644
--- a/public/assets/images/icons/blue/person2.svg
+++ b/public/assets/images/icons/blue/person2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,27.05a9,9,0,1,0-9-9A9,9,0,0,0,27,27.05Z"/><path class="a" d="M3,3V51H51V3ZM48,48H41V37.22A6.2,6.2,0,0,0,34.8,31H19.21A6.2,6.2,0,0,0,13,37.22V48H6V6H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,27.05a9,9,0,1,0-9-9A9,9,0,0,0,27,27.05Z"/><path class="a" d="M3,3V51H51V3ZM48,48H41V37.22A6.2,6.2,0,0,0,34.8,31H19.21A6.2,6.2,0,0,0,13,37.22V48H6V6H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/persons.svg b/public/assets/images/icons/blue/persons.svg
index 86efce56ab03774b80a88cb4b225f41ac60bb209..f29efc9e5e7a97ff2a54c2dbddd7fbb40f49cb1e 100644
--- a/public/assets/images/icons/blue/persons.svg
+++ b/public/assets/images/icons/blue/persons.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,51H45V9H3ZM24,12a9,9,0,1,1-9,9A9,9,0,0,1,24,12ZM10,40.17A6.21,6.21,0,0,1,16.2,34H31.79A6.21,6.21,0,0,1,38,40.17V46H10Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,51H45V9H3ZM24,12a9,9,0,1,1-9,9A9,9,0,0,1,24,12ZM10,40.17A6.21,6.21,0,0,1,16.2,34H31.79A6.21,6.21,0,0,1,38,40.17V46H10Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/persons2.svg b/public/assets/images/icons/blue/persons2.svg
index 59ae6a670268cd93103884bf1d05608cd89aaaf5..b0be2d38cc9fd2fb5151cf42b8a4850ebc159b6b 100644
--- a/public/assets/images/icons/blue/persons2.svg
+++ b/public/assets/images/icons/blue/persons2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,51H45V9H3ZM6,12H42V48H38v-4.8A6.21,6.21,0,0,0,31.79,37H16.2a6.21,6.21,0,0,0-6.2,6.2V48H6Z"/><path class="a" d="M24,33a9,9,0,1,0-9-9A9,9,0,0,0,24,33Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,51H45V9H3ZM6,12H42V48H38v-4.8A6.21,6.21,0,0,0,31.79,37H16.2a6.21,6.21,0,0,0-6.2,6.2V48H6Z"/><path class="a" d="M24,33a9,9,0,1,0-9-9A9,9,0,0,0,24,33Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/play.svg b/public/assets/images/icons/blue/play.svg
index 4438bde4860539afffee0102e47fae152b1352aa..aff409bfbdbcfb131c057a2a74bb3e93d57c6c01 100644
--- a/public/assets/images/icons/blue/play.svg
+++ b/public/assets/images/icons/blue/play.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="arrows"><g id="play"><polygon class="cls-1" points="14.99 44.91 42 26.91 15 8.91 14.99 44.91"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="arrows"><g id="play"><polygon class="cls-1" points="14.99 44.91 42 26.91 15 8.91 14.99 44.91"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/plugin.svg b/public/assets/images/icons/blue/plugin.svg
index a7ac61072ad9cb0db9cb60ea8340b3c355b499a3..145853e2382fd9af81134b016df83b5f15bf1d79 100644
--- a/public/assets/images/icons/blue/plugin.svg
+++ b/public/assets/images/icons/blue/plugin.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M31.35,6l.54,4.28A16.51,16.51,0,0,0,29,10a17.75,17.75,0,0,0-2.81.23,17,17,0,1,0,9.73,32.29L36.6,48H6V6H31.35M34,3H3V51H40L38.72,40.74a2,2,0,0,0-2-1.74,2,2,0,0,0-1,.26A13.82,13.82,0,0,1,29,41a14,14,0,0,1-2.33-27.81A14.35,14.35,0,0,1,29,13a13.74,13.74,0,0,1,3.54.46,2.4,2.4,0,0,0,.52.07,2,2,0,0,0,2-2.25L34,3Z"/><path class="a" d="M37,3l1.66,13.3a2,2,0,0,1-3.21,1.82,11,11,0,0,0-7.53-2A11,11,0,0,0,29,38a11,11,0,0,0,8.46-4A2,2,0,0,1,41,35C41.88,42,43,51,43,51h8V3Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M31.35,6l.54,4.28A16.51,16.51,0,0,0,29,10a17.75,17.75,0,0,0-2.81.23,17,17,0,1,0,9.73,32.29L36.6,48H6V6H31.35M34,3H3V51H40L38.72,40.74a2,2,0,0,0-2-1.74,2,2,0,0,0-1,.26A13.82,13.82,0,0,1,29,41a14,14,0,0,1-2.33-27.81A14.35,14.35,0,0,1,29,13a13.74,13.74,0,0,1,3.54.46,2.4,2.4,0,0,0,.52.07,2,2,0,0,0,2-2.25L34,3Z"/><path class="a" d="M37,3l1.66,13.3a2,2,0,0,1-3.21,1.82,11,11,0,0,0-7.53-2A11,11,0,0,0,29,38a11,11,0,0,0,8.46-4A2,2,0,0,1,41,35C41.88,42,43,51,43,51h8V3Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/plugin2.svg b/public/assets/images/icons/blue/plugin2.svg
index 5bc927f10c3d5592ff91053b02b24e8692a89796..b7e29fe2eb268b09b277e410e94824f25d372fb5 100644
--- a/public/assets/images/icons/blue/plugin2.svg
+++ b/public/assets/images/icons/blue/plugin2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M38.75,24.61a7,7,0,0,1,4.6,1.76A1,1,0,0,0,45,25.62v-9.8H33.58a1,1,0,0,1-.75-1.65,6.6,6.6,0,0,0,1.66-4.31,7,7,0,0,0-14-.13,6.61,6.61,0,0,0,1.66,4.45,1,1,0,0,1-.75,1.64H9V51h7.49a1,1,0,0,0,.76-1.64,6.72,6.72,0,0,1-1.67-4.49,7,7,0,0,1,14,.14,6.7,6.7,0,0,1-1.67,4.34A1,1,0,0,0,28.64,51H45V37.27a1,1,0,0,0-1.64-.77,7.05,7.05,0,0,1-4.75,1.76,6.83,6.83,0,1,1,.14-13.65Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M38.75,24.61a7,7,0,0,1,4.6,1.76A1,1,0,0,0,45,25.62v-9.8H33.58a1,1,0,0,1-.75-1.65,6.6,6.6,0,0,0,1.66-4.31,7,7,0,0,0-14-.13,6.61,6.61,0,0,0,1.66,4.45,1,1,0,0,1-.75,1.64H9V51h7.49a1,1,0,0,0,.76-1.64,6.72,6.72,0,0,1-1.67-4.49,7,7,0,0,1,14,.14,6.7,6.7,0,0,1-1.67,4.34A1,1,0,0,0,28.64,51H45V37.27a1,1,0,0,0-1.64-.77,7.05,7.05,0,0,1-4.75,1.76,6.83,6.83,0,1,1,.14-13.65Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/privacy.svg b/public/assets/images/icons/blue/privacy.svg
index 6c54b27ba5e95467bd0b75a439d4bb97dfac7769..430cd0a6bee3bffc320c57816bde0ab8feeab19a 100644
--- a/public/assets/images/icons/blue/privacy.svg
+++ b/public/assets/images/icons/blue/privacy.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="privacy"><path d="M27.87,14.51H23V24.75h5.13a6.47,6.47,0,0,0,4.4-1.35,4.84,4.84,0,0,0,1.55-3.86Q34.1,14.52,27.87,14.51Z"/><path d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM37.52,24.72a8.21,8.21,0,0,1-3.91,3.2,20,20,0,0,1-7.12,1H23V43.11H18.31V10.34H28.69a10.68,10.68,0,0,1,7.47,2.53A8.71,8.71,0,0,1,39,19.66,9.1,9.1,0,0,1,37.52,24.72Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="privacy"><path d="M27.87,14.51H23V24.75h5.13a6.47,6.47,0,0,0,4.4-1.35,4.84,4.84,0,0,0,1.55-3.86Q34.1,14.52,27.87,14.51Z"/><path d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM37.52,24.72a8.21,8.21,0,0,1-3.91,3.2,20,20,0,0,1-7.12,1H23V43.11H18.31V10.34H28.69a10.68,10.68,0,0,1,7.47,2.53A8.71,8.71,0,0,1,39,19.66,9.1,9.1,0,0,1,37.52,24.72Z"/></g></svg>
diff --git a/public/assets/images/icons/blue/question-circle-full.svg b/public/assets/images/icons/blue/question-circle-full.svg
index 5ab728d777e1398b21a614dfb75bb85849a6266f..10c19d24c238e1e3c2ab0fef00683ce02c9ccb4b 100644
--- a/public/assets/images/icons/blue/question-circle-full.svg
+++ b/public/assets/images/icons/blue/question-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/question-circle.svg b/public/assets/images/icons/blue/question-circle.svg
index 5ab728d777e1398b21a614dfb75bb85849a6266f..10c19d24c238e1e3c2ab0fef00683ce02c9ccb4b 100644
--- a/public/assets/images/icons/blue/question-circle.svg
+++ b/public/assets/images/icons/blue/question-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/refresh.svg b/public/assets/images/icons/blue/refresh.svg
index 2251c0ac7f41e10d65c4bdd1cf5df071601a4c5b..0c1234f260ed58ce6affba7201b377e4657b5035 100644
--- a/public/assets/images/icons/blue/refresh.svg
+++ b/public/assets/images/icons/blue/refresh.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="refresh"><path class="cls-1" d="M27,44A17,17,0,0,1,10.63,31.46l4.88,1.31,4.24-2.45L6.54,26.77,3,40l4.24-2.45,1-3.76A19.93,19.93,0,0,0,46.33,32l-2.9-.75A17,17,0,0,1,27,44Z"/><path class="cls-1" d="M46.76,16.51l-1,3.72a19.93,19.93,0,0,0-38.1,1.82l2.9.75a16.95,16.95,0,0,1,32.81-.2l-4.89-1.31-4.24,2.45,13.21,3.55L51,14.06Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="refresh"><path class="cls-1" d="M27,44A17,17,0,0,1,10.63,31.46l4.88,1.31,4.24-2.45L6.54,26.77,3,40l4.24-2.45,1-3.76A19.93,19.93,0,0,0,46.33,32l-2.9-.75A17,17,0,0,1,27,44Z"/><path class="cls-1" d="M46.76,16.51l-1,3.72a19.93,19.93,0,0,0-38.1,1.82l2.9.75a16.95,16.95,0,0,1,32.81-.2l-4.89-1.31-4.24,2.45,13.21,3.55L51,14.06Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/remove-circle-full.svg b/public/assets/images/icons/blue/remove-circle-full.svg
index 09f5cb03fff4b8be06a6d049b37ab0dead5495b0..e1811bf01211a91e1dafcb992323d5a9f726dbfc 100644
--- a/public/assets/images/icons/blue/remove-circle-full.svg
+++ b/public/assets/images/icons/blue/remove-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/remove-circle.svg b/public/assets/images/icons/blue/remove-circle.svg
index 09f5cb03fff4b8be06a6d049b37ab0dead5495b0..e1811bf01211a91e1dafcb992323d5a9f726dbfc 100644
--- a/public/assets/images/icons/blue/remove-circle.svg
+++ b/public/assets/images/icons/blue/remove-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/remove.svg b/public/assets/images/icons/blue/remove.svg
index 452e84b7c93c8191be4aabc121fab3b4550405b6..3070e0f7a86b6103a3d7db8a28c6a2a0891c5b10 100644
--- a/public/assets/images/icons/blue/remove.svg
+++ b/public/assets/images/icons/blue/remove.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="48 32 48 22 6 22 6 32 48 32"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="48 32 48 22 6 22 6 32 48 32"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/resources-broken.svg b/public/assets/images/icons/blue/resources-broken.svg
index a15690b37340c51c2887902686c2d3b03304eb76..3e41a0dcf32cf6516f3a9e937687ae7e4ef0fc22 100644
--- a/public/assets/images/icons/blue/resources-broken.svg
+++ b/public/assets/images/icons/blue/resources-broken.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="resources-broken"><polygon class="cls-1" points="24.93 49.54 24.93 36.7 22.46 49.54 24.93 49.54"/><polygon class="cls-1" points="37.76 4.43 31.82 4.43 30.57 10.91 32.8 8.65 36.05 11.94 28.99 19.09 27.54 26.65 37.76 26.65 37.76 4.43"/><path class="cls-1" d="M28.76,31V53H50.69V31Zm14.1,11h0l4.45,4.47L44.18,49.6l-4.45-4.47L35.28,49.6l-3.14-3.15L36.59,42h0l-4.44-4.47L33.7,36l1.58-1.58,4.45,4.47,4.45-4.47,3.13,3.15L42.86,42Z"/><polygon class="cls-1" points="3 27.51 3 49.54 18.82 49.54 19.47 46.14 16.1 46.14 16.1 40.35 11.83 40.35 11.83 46.14 7.76 46.14 7.76 38.74 6.55 38.74 13.97 30.91 20.98 38.31 23.06 27.51 3 27.51"/><polygon class="cls-1" points="20.18 42.47 20.89 38.74 20.18 38.74 20.18 42.47"/><polygon class="cls-1" points="15.86 0.97 15.86 23.19 23.89 23.19 24.61 19.43 17.57 12.29 20.81 9 24.92 13.18 26.04 12.05 28.17 0.97 15.86 0.97"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="resources-broken"><polygon class="cls-1" points="24.93 49.54 24.93 36.7 22.46 49.54 24.93 49.54"/><polygon class="cls-1" points="37.76 4.43 31.82 4.43 30.57 10.91 32.8 8.65 36.05 11.94 28.99 19.09 27.54 26.65 37.76 26.65 37.76 4.43"/><path class="cls-1" d="M28.76,31V53H50.69V31Zm14.1,11h0l4.45,4.47L44.18,49.6l-4.45-4.47L35.28,49.6l-3.14-3.15L36.59,42h0l-4.44-4.47L33.7,36l1.58-1.58,4.45,4.47,4.45-4.47,3.13,3.15L42.86,42Z"/><polygon class="cls-1" points="3 27.51 3 49.54 18.82 49.54 19.47 46.14 16.1 46.14 16.1 40.35 11.83 40.35 11.83 46.14 7.76 46.14 7.76 38.74 6.55 38.74 13.97 30.91 20.98 38.31 23.06 27.51 3 27.51"/><polygon class="cls-1" points="20.18 42.47 20.89 38.74 20.18 38.74 20.18 42.47"/><polygon class="cls-1" points="15.86 0.97 15.86 23.19 23.89 23.19 24.61 19.43 17.57 12.29 20.81 9 24.92 13.18 26.04 12.05 28.17 0.97 15.86 0.97"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/resources.svg b/public/assets/images/icons/blue/resources.svg
index 23ddd96b4d4002e3e601458129044e326854c464..ba411ac2d9c71a73f5816a5c344893e39639101d 100644
--- a/public/assets/images/icons/blue/resources.svg
+++ b/public/assets/images/icons/blue/resources.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="resources"><path class="cls-1" d="M29,29V51H51V29ZM47.61,44.46,44.46,47.6,40,43.14,35.54,47.6l-3.15-3.14L36.86,40,32.4,35.53l3.14-3.14L40,36.86l4.46-4.47,3.15,3.15L43.14,40Z"/><path class="cls-1" d="M16,3V25H38V3Zm9.12,18.6-7.4-7.4L21,11l4.14,4.14L33,7.18l3.26,3.25Z"/><path class="cls-1" d="M3,29V51H25V29ZM20.23,40.21V47.6H16.14V41.82H11.86V47.6H7.77V40.21H6.56L14,32.39l7.44,7.82Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="resources"><path class="cls-1" d="M29,29V51H51V29ZM47.61,44.46,44.46,47.6,40,43.14,35.54,47.6l-3.15-3.14L36.86,40,32.4,35.53l3.14-3.14L40,36.86l4.46-4.47,3.15,3.15L43.14,40Z"/><path class="cls-1" d="M16,3V25H38V3Zm9.12,18.6-7.4-7.4L21,11l4.14,4.14L33,7.18l3.26,3.25Z"/><path class="cls-1" d="M3,29V51H25V29ZM20.23,40.21V47.6H16.14V41.82H11.86V47.6H7.77V40.21H6.56L14,32.39l7.44,7.82Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/roles2.svg b/public/assets/images/icons/blue/roles2.svg
index 966ea97fa9f185653701b1d0bff3fdb32ec1945d..fc9df115f9e16b16e1aa581bc4033c4f738658c7 100644
--- a/public/assets/images/icons/blue/roles2.svg
+++ b/public/assets/images/icons/blue/roles2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="roles2"><path class="cls-1" d="M19,10a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-5A10,10,0,1,0,29,15,10,10,0,0,0,19,5Z"/><path class="cls-1" d="M30,44v0H8V36a3,3,0,0,1,3-3H22.86L26,28H11a8,8,0,0,0-8,8V49H35V44Z"/><path class="cls-1" d="M48.35,5.68a5.4,5.4,0,0,0-7.22,1.87L40.25,9l-1.33,2.21L27,31.1,27.13,41l9.05-4.78L48.09,16.33l1.32-2.21.88-1.47A5,5,0,0,0,48.35,5.68ZM34.26,34.3l-1.66.88-2.91-1.62,0-1.79L41.21,12.5l4.59,2.55Zm8.28-24,.88-1.48A2.71,2.71,0,0,1,47,7.89a2.5,2.5,0,0,1,1,3.48l-.88,1.48Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="roles2"><path class="cls-1" d="M19,10a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-5A10,10,0,1,0,29,15,10,10,0,0,0,19,5Z"/><path class="cls-1" d="M30,44v0H8V36a3,3,0,0,1,3-3H22.86L26,28H11a8,8,0,0,0-8,8V49H35V44Z"/><path class="cls-1" d="M48.35,5.68a5.4,5.4,0,0,0-7.22,1.87L40.25,9l-1.33,2.21L27,31.1,27.13,41l9.05-4.78L48.09,16.33l1.32-2.21.88-1.47A5,5,0,0,0,48.35,5.68ZM34.26,34.3l-1.66.88-2.91-1.62,0-1.79L41.21,12.5l4.59,2.55Zm8.28-24,.88-1.48A2.71,2.71,0,0,1,47,7.89a2.5,2.5,0,0,1,1,3.48l-.88,1.48Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/room-clear.svg b/public/assets/images/icons/blue/room-clear.svg
index c6383262a3cbec7077159286f176f9e7e2864683..2976a23df99a1e2f77f19c63a17b1af5fcc2db5d 100644
--- a/public/assets/images/icons/blue/room-clear.svg
+++ b/public/assets/images/icons/blue/room-clear.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.7.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4.6 8.5l-2.3-2.3 1-1 1.3 1.3L9.9 9l1 1-3.5 3.5z" fill="#24437c"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.7.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4.6 8.5l-2.3-2.3 1-1 1.3 1.3L9.9 9l1 1-3.5 3.5z" fill="#24437c"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/room-occupied.svg b/public/assets/images/icons/blue/room-occupied.svg
index 1752311b878b851265e916dd7e83c62c121fd3b5..9a2c07d320abfbd6a2f63e30584325048c552643 100644
--- a/public/assets/images/icons/blue/room-occupied.svg
+++ b/public/assets/images/icons/blue/room-occupied.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1.1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.8.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-1.5 7.9l-1 1L8 12.5 6.5 14l-1-1L7 11.5 5.5 10l1-1L8 10.4 9.5 9l1 1L9 11.5l1.5 1.4z" fill="#24437c"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1.1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.8.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-1.5 7.9l-1 1L8 12.5 6.5 14l-1-1L7 11.5 5.5 10l1-1L8 10.4 9.5 9l1 1L9 11.5l1.5 1.4z" fill="#24437c"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/room-request.svg b/public/assets/images/icons/blue/room-request.svg
index cb6b1ada9c7da988ff04a42f1820be308fa6c008..d6a89cc7ba78eefa2d21ae4fc5986a96952deda5 100644
--- a/public/assets/images/icons/blue/room-request.svg
+++ b/public/assets/images/icons/blue/room-request.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1.1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.8.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4 8.7c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7zm1-2.8c-.3.3-.4.6-.4.9v.1h-1v-.2c0-.4.1-.8.4-1.2.2-.3.4-.5.4-.8 0-.3-.2-.4-.6-.5-.3 0-.6.1-.8.2l-.1-.7c.3-.2.7-.3 1.3-.3 1 0 1.5.6 1.5 1.2-.1.6-.5.9-.7 1.3z" fill="#24437c"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1.1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.8.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4 8.7c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7zm1-2.8c-.3.3-.4.6-.4.9v.1h-1v-.2c0-.4.1-.8.4-1.2.2-.3.4-.5.4-.8 0-.3-.2-.4-.6-.5-.3 0-.6.1-.8.2l-.1-.7c.3-.2.7-.3 1.3-.3 1 0 1.5.6 1.5 1.2-.1.6-.5.9-.7 1.3z" fill="#24437c"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/room.svg b/public/assets/images/icons/blue/room.svg
index 37ba3bd37832e481fc95c96379415bd247b58464..51933fab6bf8774e3ee1dc82ff1138245f919c2d 100644
--- a/public/assets/images/icons/blue/room.svg
+++ b/public/assets/images/icons/blue/room.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="room"><polygon points="51 37.2 44.14 37.2 44.14 43.94 9.86 43.94 9.86 9.65 44.14 9.77 44.14 16.62 51 16.62 51 2.79 3 2.79 3 50.79 51 50.79 51 37.2"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="room"><polygon points="51 37.2 44.14 37.2 44.14 43.94 9.86 43.94 9.86 9.65 44.14 9.77 44.14 16.62 51 16.62 51 2.79 3 2.79 3 50.79 51 50.79 51 37.2"/></g></svg>
diff --git a/public/assets/images/icons/blue/rotate-left.svg b/public/assets/images/icons/blue/rotate-left.svg
index 7e4daf373732c8b18e178dc8394f92f1d868392a..706d8cc1968a4da4402b073497b3d69e2b0f5764 100644
--- a/public/assets/images/icons/blue/rotate-left.svg
+++ b/public/assets/images/icons/blue/rotate-left.svg
@@ -1 +1 @@
-<svg data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15 11.15L11.25.94 1 4.66l3.75 10.21L11 12.59a5.78 5.78 0 01-.23 2.18l1 .29a7.11 7.11 0 00.23-2.82zm-9.65 2.44l-3-8.33 8.33-3 3 8.33-1.87.68c-.06-.23-.11-.46-.19-.69a7.2 7.2 0 00-4.1-4.2l3-1.08-.35-.94-4.81 1.71 1.75 4.79.94-.34-1.23-3.37a6.2 6.2 0 013.86 3.74c.08.23.13.46.19.69z" fill="#25437c"/></svg>
\ No newline at end of file
+<svg width="16" height="16" data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15 11.15L11.25.94 1 4.66l3.75 10.21L11 12.59a5.78 5.78 0 01-.23 2.18l1 .29a7.11 7.11 0 00.23-2.82zm-9.65 2.44l-3-8.33 8.33-3 3 8.33-1.87.68c-.06-.23-.11-.46-.19-.69a7.2 7.2 0 00-4.1-4.2l3-1.08-.35-.94-4.81 1.71 1.75 4.79.94-.34-1.23-3.37a6.2 6.2 0 013.86 3.74c.08.23.13.46.19.69z" fill="#25437c"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/rotate-right.svg b/public/assets/images/icons/blue/rotate-right.svg
index 247778b8dd6f6214822305df9f3599c939fe449f..a37701b0390e434ed2f2e78f323a237828b6c22f 100644
--- a/public/assets/images/icons/blue/rotate-right.svg
+++ b/public/assets/images/icons/blue/rotate-right.svg
@@ -1 +1 @@
-<svg data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.25 14.87L15 4.66 4.75.94 1 11.15l3 1.09a7.11 7.11 0 00.24 2.82l1-.29A6 6 0 015 12.59zm-8.93-4.31l3-8.33 8.33 3-3 8.33-5.52-2c.06-.23.11-.46.19-.69a6.2 6.2 0 013.86-3.72L8 10.52l.94.34 1.75-4.79-4.84-1.74-.35.94 3 1.08a7.2 7.2 0 00-4.1 4.2c-.08.23-.13.46-.19.69z" fill="#25437c"/></svg>
\ No newline at end of file
+<svg width="16" height="16" data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.25 14.87L15 4.66 4.75.94 1 11.15l3 1.09a7.11 7.11 0 00.24 2.82l1-.29A6 6 0 015 12.59zm-8.93-4.31l3-8.33 8.33 3-3 8.33-5.52-2c.06-.23.11-.46.19-.69a6.2 6.2 0 013.86-3.72L8 10.52l.94.34 1.75-4.79-4.84-1.74-.35.94 3 1.08a7.2 7.2 0 00-4.1 4.2c-.08.23-.13.46-.19.69z" fill="#25437c"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/schedule.svg b/public/assets/images/icons/blue/schedule.svg
index 23a5eb999707cd4cc4e755787104daf716f6370b..c7452ed1b76b8b9450295aa44a3c1445c59993cf 100644
--- a/public/assets/images/icons/blue/schedule.svg
+++ b/public/assets/images/icons/blue/schedule.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M18.68,37.5V31.66L14.35,37.5Zm18-21.06a2.83,2.83,0,0,0,2.83-2.82V5.82a2.83,2.83,0,0,0-5.65,0v7.8A2.82,2.82,0,0,0,36.73,16.44Zm-19.46,0a2.82,2.82,0,0,0,2.82-2.82V5.82a2.82,2.82,0,0,0-5.64,0v7.8A2.82,2.82,0,0,0,17.27,16.44ZM43,12.05v1.89a6.3,6.3,0,0,1-12.6,0V12.05H23.57v1.89a6.3,6.3,0,0,1-12.6,0V12.05H3V51H51V12.05ZM25.36,41.2a3.35,3.35,0,0,1-1.87.46h-.31v2a2.76,2.76,0,0,1-.6,1.93,2.13,2.13,0,0,1-1.62.7h0a2.12,2.12,0,0,1-1.64-.71,2.79,2.79,0,0,1-.61-1.92v-2H12.3A3.38,3.38,0,0,1,10,40.93a2.63,2.63,0,0,1-.83-2,1.94,1.94,0,0,1,.13-.71,3.6,3.6,0,0,1,.34-.68c.13-.2.28-.41.42-.59s.31-.41.51-.68l7.29-9.76A13.23,13.23,0,0,1,19.08,25a2.08,2.08,0,0,1,1.48-.57,2.49,2.49,0,0,1,2,.78,3.26,3.26,0,0,1,.66,2.14V37.51h.06a4.62,4.62,0,0,1,1.92.33,1.77,1.77,0,0,1,.95,1.75A1.83,1.83,0,0,1,25.36,41.2Zm16.35,4.13A2.3,2.3,0,0,1,40,46H29.8a2.71,2.71,0,0,1-1.95-.72,2.36,2.36,0,0,1-.74-1.72A4.06,4.06,0,0,1,27.53,42a5.32,5.32,0,0,1,.92-1.44q1.83-1.9,3.33-3.27a21.23,21.23,0,0,1,2.15-1.83,11.55,11.55,0,0,0,1.8-1.53,6.26,6.26,0,0,0,1.05-1.51A3.46,3.46,0,0,0,37.12,31a2.44,2.44,0,0,0-.34-1.31,2.41,2.41,0,0,0-.94-.88,3,3,0,0,0-1.32-.33,2.72,2.72,0,0,0-2.4,1.35,7.69,7.69,0,0,0-.4,1,5.19,5.19,0,0,1-.82,1.58,2,2,0,0,1-1.6.69,2.11,2.11,0,0,1-1.52-.61,2.24,2.24,0,0,1-.61-1.62,5.64,5.64,0,0,1,.47-2.18A6.06,6.06,0,0,1,29,26.62a6.83,6.83,0,0,1,2.32-1.47,8.85,8.85,0,0,1,3.25-.56,9.35,9.35,0,0,1,3.81.71A6.19,6.19,0,0,1,42,30.88,6.37,6.37,0,0,1,41,34.26a10.22,10.22,0,0,1-1.82,2.31c-.6.54-1.59,1.37-3,2.5a22.87,22.87,0,0,0-2.78,2.57h6.12a3.14,3.14,0,0,1,2,.55,2,2,0,0,1,.77,1.62A2.15,2.15,0,0,1,41.71,45.33Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M18.68,37.5V31.66L14.35,37.5Zm18-21.06a2.83,2.83,0,0,0,2.83-2.82V5.82a2.83,2.83,0,0,0-5.65,0v7.8A2.82,2.82,0,0,0,36.73,16.44Zm-19.46,0a2.82,2.82,0,0,0,2.82-2.82V5.82a2.82,2.82,0,0,0-5.64,0v7.8A2.82,2.82,0,0,0,17.27,16.44ZM43,12.05v1.89a6.3,6.3,0,0,1-12.6,0V12.05H23.57v1.89a6.3,6.3,0,0,1-12.6,0V12.05H3V51H51V12.05ZM25.36,41.2a3.35,3.35,0,0,1-1.87.46h-.31v2a2.76,2.76,0,0,1-.6,1.93,2.13,2.13,0,0,1-1.62.7h0a2.12,2.12,0,0,1-1.64-.71,2.79,2.79,0,0,1-.61-1.92v-2H12.3A3.38,3.38,0,0,1,10,40.93a2.63,2.63,0,0,1-.83-2,1.94,1.94,0,0,1,.13-.71,3.6,3.6,0,0,1,.34-.68c.13-.2.28-.41.42-.59s.31-.41.51-.68l7.29-9.76A13.23,13.23,0,0,1,19.08,25a2.08,2.08,0,0,1,1.48-.57,2.49,2.49,0,0,1,2,.78,3.26,3.26,0,0,1,.66,2.14V37.51h.06a4.62,4.62,0,0,1,1.92.33,1.77,1.77,0,0,1,.95,1.75A1.83,1.83,0,0,1,25.36,41.2Zm16.35,4.13A2.3,2.3,0,0,1,40,46H29.8a2.71,2.71,0,0,1-1.95-.72,2.36,2.36,0,0,1-.74-1.72A4.06,4.06,0,0,1,27.53,42a5.32,5.32,0,0,1,.92-1.44q1.83-1.9,3.33-3.27a21.23,21.23,0,0,1,2.15-1.83,11.55,11.55,0,0,0,1.8-1.53,6.26,6.26,0,0,0,1.05-1.51A3.46,3.46,0,0,0,37.12,31a2.44,2.44,0,0,0-.34-1.31,2.41,2.41,0,0,0-.94-.88,3,3,0,0,0-1.32-.33,2.72,2.72,0,0,0-2.4,1.35,7.69,7.69,0,0,0-.4,1,5.19,5.19,0,0,1-.82,1.58,2,2,0,0,1-1.6.69,2.11,2.11,0,0,1-1.52-.61,2.24,2.24,0,0,1-.61-1.62,5.64,5.64,0,0,1,.47-2.18A6.06,6.06,0,0,1,29,26.62a6.83,6.83,0,0,1,2.32-1.47,8.85,8.85,0,0,1,3.25-.56,9.35,9.35,0,0,1,3.81.71A6.19,6.19,0,0,1,42,30.88,6.37,6.37,0,0,1,41,34.26a10.22,10.22,0,0,1-1.82,2.31c-.6.54-1.59,1.37-3,2.5a22.87,22.87,0,0,0-2.78,2.57h6.12a3.14,3.14,0,0,1,2,.55,2,2,0,0,1,.77,1.62A2.15,2.15,0,0,1,41.71,45.33Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/schedule2.svg b/public/assets/images/icons/blue/schedule2.svg
index 1f2d5554a3c83b12b9c10ec5c1f940f4ece7e096..bff24f4f4e926cf5a4c5fe9aefdd4072f9e396cf 100644
--- a/public/assets/images/icons/blue/schedule2.svg
+++ b/public/assets/images/icons/blue/schedule2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><rect class="a" x="17.93" y="6.97" width="18.09" height="5"/><polygon class="a" points="40.93 6.97 40.93 11.97 46 11.97 46 45.97 8 45.97 8 11.97 13.02 11.97 13.02 6.97 3 6.97 3 50.97 51 50.97 51 6.97 40.93 6.97"/><path class="a" d="M35.47,16A2.62,2.62,0,0,0,38,13.24V5.69a2.51,2.51,0,1,0-5,0v7.55A2.63,2.63,0,0,0,35.47,16Z"/><path class="a" d="M18.52,16A2.63,2.63,0,0,0,21,13.24V5.69A2.63,2.63,0,0,0,18.52,3,2.62,2.62,0,0,0,16,5.69v7.55A2.62,2.62,0,0,0,18.52,16Z"/><path class="a" d="M20.45,36H14a1.92,1.92,0,0,1-2-2,2.77,2.77,0,0,1,.49-1.71l8-11.46A1.87,1.87,0,0,1,22.14,20c1.39,0,1.93.84,1.93,2.09V32.64h1.3a1.67,1.67,0,0,1,0,3.31h-1.3v3c0,1.22-.46,2-1.81,2s-1.81-.81-1.81-2Zm0-10.82H20.4l-5,7.51h5Z"/><path class="a" d="M40.29,36.94A1.59,1.59,0,0,1,42,38.77c0,1.3-.72,1.82-1.91,1.82h-9.7a2,2,0,0,1-2.12-2.14c0-2.06,1.63-4.36,4.86-6.65,3.6-2.55,4.84-3.07,4.84-5.42a2.72,2.72,0,0,0-2.72-2.93c-1.65,0-2.76.75-3.33,3.07-.26,1.08-.6,1.63-1.63,1.63a1.71,1.71,0,0,1-1.89-1.94c0-3.54,3.1-6.24,6.9-6.24,4.14,0,6.6,3.05,6.6,5.71,0,3.86-1.58,5.37-4.32,7.11-2.92,1.86-4.71,3.05-5,4.15Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><rect class="a" x="17.93" y="6.97" width="18.09" height="5"/><polygon class="a" points="40.93 6.97 40.93 11.97 46 11.97 46 45.97 8 45.97 8 11.97 13.02 11.97 13.02 6.97 3 6.97 3 50.97 51 50.97 51 6.97 40.93 6.97"/><path class="a" d="M35.47,16A2.62,2.62,0,0,0,38,13.24V5.69a2.51,2.51,0,1,0-5,0v7.55A2.63,2.63,0,0,0,35.47,16Z"/><path class="a" d="M18.52,16A2.63,2.63,0,0,0,21,13.24V5.69A2.63,2.63,0,0,0,18.52,3,2.62,2.62,0,0,0,16,5.69v7.55A2.62,2.62,0,0,0,18.52,16Z"/><path class="a" d="M20.45,36H14a1.92,1.92,0,0,1-2-2,2.77,2.77,0,0,1,.49-1.71l8-11.46A1.87,1.87,0,0,1,22.14,20c1.39,0,1.93.84,1.93,2.09V32.64h1.3a1.67,1.67,0,0,1,0,3.31h-1.3v3c0,1.22-.46,2-1.81,2s-1.81-.81-1.81-2Zm0-10.82H20.4l-5,7.51h5Z"/><path class="a" d="M40.29,36.94A1.59,1.59,0,0,1,42,38.77c0,1.3-.72,1.82-1.91,1.82h-9.7a2,2,0,0,1-2.12-2.14c0-2.06,1.63-4.36,4.86-6.65,3.6-2.55,4.84-3.07,4.84-5.42a2.72,2.72,0,0,0-2.72-2.93c-1.65,0-2.76.75-3.33,3.07-.26,1.08-.6,1.63-1.63,1.63a1.71,1.71,0,0,1-1.89-1.94c0-3.54,3.1-6.24,6.9-6.24,4.14,0,6.6,3.05,6.6,5.71,0,3.86-1.58,5.37-4.32,7.11-2.92,1.86-4.71,3.05-5,4.15Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/search.svg b/public/assets/images/icons/blue/search.svg
index 1e1f6a701344b42754d2fef26739c1c9fc47b4c7..3a73d9805c0e95400a0e5039e2feb2c735859c50 100644
--- a/public/assets/images/icons/blue/search.svg
+++ b/public/assets/images/icons/blue/search.svg
@@ -1 +1 @@
-<svg id="Icons_NEUES_LAYOUT_2021" data-name="Icons – NEUES LAYOUT 2021" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="search2"><path class="cls-1" d="M49.54,42.46,38,31c-.14-.13-.3-.24-.45-.36a18.54,18.54,0,1,0-7,7c.12.15.23.31.36.45l11.5,11.5a5,5,0,0,0,7.08-7.08ZM9,21.5A12.5,12.5,0,1,1,21.5,34,12.52,12.52,0,0,1,9,21.5Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="Icons_NEUES_LAYOUT_2021" data-name="Icons – NEUES LAYOUT 2021" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="search2"><path class="cls-1" d="M49.54,42.46,38,31c-.14-.13-.3-.24-.45-.36a18.54,18.54,0,1,0-7,7c.12.15.23.31.36.45l11.5,11.5a5,5,0,0,0,7.08-7.08ZM9,21.5A12.5,12.5,0,1,1,21.5,34,12.52,12.52,0,0,1,9,21.5Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/service.svg b/public/assets/images/icons/blue/service.svg
index cbc96f3876786793ee6d440078f4d5368c9a6cd7..4fcf3a2e62b19ed5f0e284823081670739f7a742 100644
--- a/public/assets/images/icons/blue/service.svg
+++ b/public/assets/images/icons/blue/service.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/share.svg b/public/assets/images/icons/blue/share.svg
index 82a6db0a4e39badf24aa1e906743a1e622e90804..6c0d3f6386a57c12efa860cc0718e9ea43410ee3 100644
--- a/public/assets/images/icons/blue/share.svg
+++ b/public/assets/images/icons/blue/share.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/smiley.svg b/public/assets/images/icons/blue/smiley.svg
index bf298b82f317c2e753d28bba407323c18d1249ac..b010eebaf664db032cba5d886c0332e0afd80bef 100644
--- a/public/assets/images/icons/blue/smiley.svg
+++ b/public/assets/images/icons/blue/smiley.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3Zm0,45A21,21,0,1,1,48,27,21,21,0,0,1,27,48Z"/><path class="a" d="M32.24,25.23c2.18-.15,3.81-2.53,3.63-5.3s-2.11-4.91-4.3-4.77-3.82,2.53-3.63,5.3S30.05,25.37,32.24,25.23Z"/><path class="a" d="M21.26,25.83c2.18-.15,3.81-2.52,3.63-5.3s-2.11-4.91-4.3-4.76S16.77,18.29,17,21.06,19.07,26,21.26,25.83Z"/><path class="a" d="M44.25,23.67a1.5,1.5,0,1,0-3,.42,14.5,14.5,0,0,1-28.72,4.05,1.49,1.49,0,0,0-1.69-1.27A1.51,1.51,0,0,0,9.6,28.58a17.58,17.58,0,0,0,17.32,15,17,17,0,0,0,2.46-.17A17.52,17.52,0,0,0,44.25,23.67Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3Zm0,45A21,21,0,1,1,48,27,21,21,0,0,1,27,48Z"/><path class="a" d="M32.24,25.23c2.18-.15,3.81-2.53,3.63-5.3s-2.11-4.91-4.3-4.77-3.82,2.53-3.63,5.3S30.05,25.37,32.24,25.23Z"/><path class="a" d="M21.26,25.83c2.18-.15,3.81-2.52,3.63-5.3s-2.11-4.91-4.3-4.76S16.77,18.29,17,21.06,19.07,26,21.26,25.83Z"/><path class="a" d="M44.25,23.67a1.5,1.5,0,1,0-3,.42,14.5,14.5,0,0,1-28.72,4.05,1.49,1.49,0,0,0-1.69-1.27A1.51,1.51,0,0,0,9.6,28.58a17.58,17.58,0,0,0,17.32,15,17,17,0,0,0,2.46-.17A17.52,17.52,0,0,0,44.25,23.67Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/spiral.svg b/public/assets/images/icons/blue/spiral.svg
index 4b2c2910b03f251759e1e18a793c2cd8c4b87613..b322860609c66a0f5a4447e2affc9547d8022a04 100644
--- a/public/assets/images/icons/blue/spiral.svg
+++ b/public/assets/images/icons/blue/spiral.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="spiral"><path class="cls-1" d="M3,27A24,24,0,1,0,27,3,24,24,0,0,0,3,27ZM44.57,16.35a20.42,20.42,0,0,1-8.48,27A16.06,16.06,0,0,1,14.31,37a12.49,12.49,0,0,1,4.93-17,9.67,9.67,0,0,1,13.12,3.81A7.33,7.33,0,0,1,33,29.47a7.41,7.41,0,0,1-3.55,4.42,5.59,5.59,0,0,1-7.58-2.21,4.13,4.13,0,0,1,1.63-5.61,3,3,0,0,1,4,1.17,1.67,1.67,0,1,0,2.93-1.61,6.33,6.33,0,0,0-8.58-2.49,7.49,7.49,0,0,0-2.95,10.15,8.94,8.94,0,0,0,12.12,3.52,10.73,10.73,0,0,0,4.24-14.58A13,13,0,0,0,17.63,17.1a15.84,15.84,0,0,0-6.25,21.51,19.26,19.26,0,0,0,5.8,6.46A20.56,20.56,0,1,1,44.57,16.35Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="spiral"><path class="cls-1" d="M3,27A24,24,0,1,0,27,3,24,24,0,0,0,3,27ZM44.57,16.35a20.42,20.42,0,0,1-8.48,27A16.06,16.06,0,0,1,14.31,37a12.49,12.49,0,0,1,4.93-17,9.67,9.67,0,0,1,13.12,3.81A7.33,7.33,0,0,1,33,29.47a7.41,7.41,0,0,1-3.55,4.42,5.59,5.59,0,0,1-7.58-2.21,4.13,4.13,0,0,1,1.63-5.61,3,3,0,0,1,4,1.17,1.67,1.67,0,1,0,2.93-1.61,6.33,6.33,0,0,0-8.58-2.49,7.49,7.49,0,0,0-2.95,10.15,8.94,8.94,0,0,0,12.12,3.52,10.73,10.73,0,0,0,4.24-14.58A13,13,0,0,0,17.63,17.1a15.84,15.84,0,0,0-6.25,21.51,19.26,19.26,0,0,0,5.8,6.46A20.56,20.56,0,1,1,44.57,16.35Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/staple.svg b/public/assets/images/icons/blue/staple.svg
index b0754e54c33a61b0b0298771e764dda8bbe27fb6..0918d20727863db43a8d816f1eb8850c2a08c862 100644
--- a/public/assets/images/icons/blue/staple.svg
+++ b/public/assets/images/icons/blue/staple.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="staple"><path class="cls-1" d="M43.22,9.22a14.61,14.61,0,0,0-20.58,0L6.5,25.27l2.89,2.86,16.13-16a10.51,10.51,0,0,1,14.83,0,10.4,10.4,0,0,1,0,14.75l-16.14,16a7.24,7.24,0,0,1-10.18,0,7.16,7.16,0,0,1,0-10.13l14.13-14h0a3.93,3.93,0,0,1,5.54,0,3.88,3.88,0,0,1,0,5.5l-14.13,14,2.87,2.85,14.14-14a7.9,7.9,0,0,0,0-11.23,8,8,0,0,0-11.24,0h0L11.15,29.89a11.16,11.16,0,0,0,0,15.85,11.34,11.34,0,0,0,15.94,0l16.14-16A14.39,14.39,0,0,0,43.22,9.22Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="staple"><path class="cls-1" d="M43.22,9.22a14.61,14.61,0,0,0-20.58,0L6.5,25.27l2.89,2.86,16.13-16a10.51,10.51,0,0,1,14.83,0,10.4,10.4,0,0,1,0,14.75l-16.14,16a7.24,7.24,0,0,1-10.18,0,7.16,7.16,0,0,1,0-10.13l14.13-14h0a3.93,3.93,0,0,1,5.54,0,3.88,3.88,0,0,1,0,5.5l-14.13,14,2.87,2.85,14.14-14a7.9,7.9,0,0,0,0-11.23,8,8,0,0,0-11.24,0h0L11.15,29.89a11.16,11.16,0,0,0,0,15.85,11.34,11.34,0,0,0,15.94,0l16.14-16A14.39,14.39,0,0,0,43.22,9.22Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/star-empty.svg b/public/assets/images/icons/blue/star-empty.svg
index 18e321bde2492d92c60cc0dab6f1a497a89d5047..b16082dc63d770bc3b588d8639921d0390a77c2b 100644
--- a/public/assets/images/icons/blue/star-empty.svg
+++ b/public/assets/images/icons/blue/star-empty.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M10.707 9.59l4.38-3.18H9.672L8.001 1.26 6.328 6.41H.913l4.38 3.18-1.67 5.15 4.378-3.183 4.376 3.183-1.67-5.15zm-1.173-.395l2.481-1.802H8.947l-.946-2.917-.948 2.917H3.985l2.481 1.802-.946 2.918 2.481-1.803 2.479 1.803-.946-2.918z" fill="#24437c"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M10.707 9.59l4.38-3.18H9.672L8.001 1.26 6.328 6.41H.913l4.38 3.18-1.67 5.15 4.378-3.183 4.376 3.183-1.67-5.15zm-1.173-.395l2.481-1.802H8.947l-.946-2.917-.948 2.917H3.985l2.481 1.802-.946 2.918 2.481-1.803 2.479 1.803-.946-2.918z" fill="#24437c"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/star-halffull.svg b/public/assets/images/icons/blue/star-halffull.svg
index 35dd45f5b033a4b8845c18e4b808b2ae829bf41d..a7569e942107681b3c7b01f16b425002623c8287 100644
--- a/public/assets/images/icons/blue/star-halffull.svg
+++ b/public/assets/images/icons/blue/star-halffull.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M8 11.558L3.623 14.74l1.67-5.151-4.38-3.18h5.415L8.001 1.26l1.671 5.149h5.415l-4.38 3.18 1.67 5.151-4.376-3.183-.001.001.001-1.248 2.479 1.803-.946-2.918 2.481-1.802H8.947l-.946-2.917L8 4.478v7.08z" fill="#24437c"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M8 11.558L3.623 14.74l1.67-5.151-4.38-3.18h5.415L8.001 1.26l1.671 5.149h5.415l-4.38 3.18 1.67 5.151-4.376-3.183-.001.001.001-1.248 2.479 1.803-.946-2.918 2.481-1.802H8.947l-.946-2.917L8 4.478v7.08z" fill="#24437c"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/stop.svg b/public/assets/images/icons/blue/stop.svg
index f2a9a0c23f6b6ffdb8fc2bbf636821c0dd959e00..228402ed65b0a6fec40d13aa5a9e5ec9fc58153c 100644
--- a/public/assets/images/icons/blue/stop.svg
+++ b/public/assets/images/icons/blue/stop.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><rect class="a" x="10" y="8" width="34" height="38"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><rect class="a" x="10" y="8" width="34" height="38"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/table-of-contents.svg b/public/assets/images/icons/blue/table-of-contents.svg
index 6d716160c7a8b0d4e27da74280c4fa30cf64820a..61c6776ce7e8540a018f669691f482635d6945d7 100644
--- a/public/assets/images/icons/blue/table-of-contents.svg
+++ b/public/assets/images/icons/blue/table-of-contents.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="table-of-contents"><rect class="cls-1" x="40.71" y="2.89" width="10.29" height="6.86"/><rect class="cls-1" x="3" y="2.89" width="30.86" height="6.86"/><rect class="cls-1" x="3" y="16.61" width="30.86" height="6.86"/><rect class="cls-1" x="13.29" y="30.32" width="20.57" height="6.86"/><rect class="cls-1" x="3" y="44.04" width="30.86" height="6.86"/><rect class="cls-1" x="40.71" y="16.61" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="30.32" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="44.04" width="10.29" height="6.86"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="table-of-contents"><rect class="cls-1" x="40.71" y="2.89" width="10.29" height="6.86"/><rect class="cls-1" x="3" y="2.89" width="30.86" height="6.86"/><rect class="cls-1" x="3" y="16.61" width="30.86" height="6.86"/><rect class="cls-1" x="13.29" y="30.32" width="20.57" height="6.86"/><rect class="cls-1" x="3" y="44.04" width="30.86" height="6.86"/><rect class="cls-1" x="40.71" y="16.61" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="30.32" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="44.04" width="10.29" height="6.86"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/test.svg b/public/assets/images/icons/blue/test.svg
index cceabd76d0f8a00e262725ef22de954bb5cfc4a4..3e0d11947106654bf3185943b0e6d776bf05647f 100644
--- a/public/assets/images/icons/blue/test.svg
+++ b/public/assets/images/icons/blue/test.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="test"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><polygon class="cls-1" points="49 8.99 46.54 6.5 40.58 12.53 37.45 9.38 35 11.86 40.58 17.5 49 8.99"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="test"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><polygon class="cls-1" points="49 8.99 46.54 6.5 40.58 12.53 37.45 9.38 35 11.86 40.58 17.5 49 8.99"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/tools.svg b/public/assets/images/icons/blue/tools.svg
index c3fe36f317d97c1ef1d6f375eef45704ad0d2297..3be261ecb04a7bf1cfbe5ecb57baf29ff682f4d6 100644
--- a/public/assets/images/icons/blue/tools.svg
+++ b/public/assets/images/icons/blue/tools.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="tools"><path class="cls-1" d="M49.32,40.2,37.15,28,28,37.15,40.18,49.31a6.47,6.47,0,0,0,9.14-9.11Z"/><path class="cls-1" d="M26.08,16.94A11.61,11.61,0,0,0,11.28,3.51l6.35,6.36-1.84,5.72L9.86,17.64,3.5,11.27A11.63,11.63,0,0,0,16.93,26.09Z"/><g id="Edit"><polygon class="cls-1" points="3.12 50.72 8.73 48.99 4.91 45.16 3.12 50.72"/><polygon class="cls-1" points="6.53 39.85 14.02 47.39 44.34 17.21 36.85 9.67 6.53 39.85"/><path class="cls-1" d="M49.44,4.65A5.31,5.31,0,0,0,42,4.6l-3,3,7.49,7.55,3-3h0A5.31,5.31,0,0,0,49.44,4.65Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="tools"><path class="cls-1" d="M49.32,40.2,37.15,28,28,37.15,40.18,49.31a6.47,6.47,0,0,0,9.14-9.11Z"/><path class="cls-1" d="M26.08,16.94A11.61,11.61,0,0,0,11.28,3.51l6.35,6.36-1.84,5.72L9.86,17.64,3.5,11.27A11.63,11.63,0,0,0,16.93,26.09Z"/><g id="Edit"><polygon class="cls-1" points="3.12 50.72 8.73 48.99 4.91 45.16 3.12 50.72"/><polygon class="cls-1" points="6.53 39.85 14.02 47.39 44.34 17.21 36.85 9.67 6.53 39.85"/><path class="cls-1" d="M49.44,4.65A5.31,5.31,0,0,0,42,4.6l-3,3,7.49,7.55,3-3h0A5.31,5.31,0,0,0,49.44,4.65Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/topic.svg b/public/assets/images/icons/blue/topic.svg
index 9fe04e9cd341f8227d24a2f3d1e5c5a0850ffb9d..13d32229eb5962773d7c210ab64e2b29ce86f64e 100644
--- a/public/assets/images/icons/blue/topic.svg
+++ b/public/assets/images/icons/blue/topic.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="topic"><path d="M42,9V48H12V9H42m3-3H9V51H45V6Z"/><rect x="20.81" y="3" width="12.09" height="8.9"/><rect x="18" y="23.81" width="17.99" height="6.06"/><rect x="18" y="32.8" width="17.99" height="6.3"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="topic"><path d="M42,9V48H12V9H42m3-3H9V51H45V6Z"/><rect x="20.81" y="3" width="12.09" height="8.9"/><rect x="18" y="23.81" width="17.99" height="6.06"/><rect x="18" y="32.8" width="17.99" height="6.3"/></g></svg>
diff --git a/public/assets/images/icons/blue/trash.svg b/public/assets/images/icons/blue/trash.svg
index 614209986d2b72283b99d3375f7afab6a81afa8e..418d0c32cdbc54294eceb71de01711bb482f9a29 100644
--- a/public/assets/images/icons/blue/trash.svg
+++ b/public/assets/images/icons/blue/trash.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M43,8H34.88a6.22,6.22,0,0,0-6.1-5H25.22a6.22,6.22,0,0,0-6.1,5H11a3,3,0,0,0-3,3v2H46V11A3,3,0,0,0,43,8ZM25.22,6h3.56a3.22,3.22,0,0,1,3,2H22.24A3.22,3.22,0,0,1,25.22,6Z"/><path class="a" d="M11,48a3,3,0,0,0,3,3H40a3,3,0,0,0,3-3V15H11Zm3-30H40V48H14Z"/><rect class="a" x="17" y="19.97" width="4" height="26"/><rect class="a" x="25" y="19.97" width="4" height="26"/><rect class="a" x="33" y="19.97" width="4" height="26"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M43,8H34.88a6.22,6.22,0,0,0-6.1-5H25.22a6.22,6.22,0,0,0-6.1,5H11a3,3,0,0,0-3,3v2H46V11A3,3,0,0,0,43,8ZM25.22,6h3.56a3.22,3.22,0,0,1,3,2H22.24A3.22,3.22,0,0,1,25.22,6Z"/><path class="a" d="M11,48a3,3,0,0,0,3,3H40a3,3,0,0,0,3-3V15H11Zm3-30H40V48H14Z"/><rect class="a" x="17" y="19.97" width="4" height="26"/><rect class="a" x="25" y="19.97" width="4" height="26"/><rect class="a" x="33" y="19.97" width="4" height="26"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/upload.svg b/public/assets/images/icons/blue/upload.svg
index 250f09a5611b456afaa4ad69255b94f66dbd3b86..a970c94665cb4561cde5ba63580ffec9011d3fab 100644
--- a/public/assets/images/icons/blue/upload.svg
+++ b/public/assets/images/icons/blue/upload.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/upload2.svg b/public/assets/images/icons/blue/upload2.svg
index 250f09a5611b456afaa4ad69255b94f66dbd3b86..a970c94665cb4561cde5ba63580ffec9011d3fab 100644
--- a/public/assets/images/icons/blue/upload2.svg
+++ b/public/assets/images/icons/blue/upload2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/vcard.svg b/public/assets/images/icons/blue/vcard.svg
index 2e8426e2fb292019079ba66d257f04d8ec3174ca..78f0bf4cd2eca0f8407d375c128cb943be833b80 100644
--- a/public/assets/images/icons/blue/vcard.svg
+++ b/public/assets/images/icons/blue/vcard.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,10V44H51V10Zm8,31V36.21A1.23,1.23,0,0,1,12.24,35H23.76A1.24,1.24,0,0,1,25,36.21V41Zm37,0H28V36.21A4.24,4.24,0,0,0,23.76,32H12.24A4.24,4.24,0,0,0,8,36.21V41H6V13H48Z"/><path class="a" d="M18.1,31a7,7,0,1,0-7-7A7,7,0,0,0,18.1,31Zm0-10.91A3.91,3.91,0,1,1,14.2,24,3.92,3.92,0,0,1,18.1,20.06Z"/><rect class="a" x="31" y="17.97" width="14" height="4"/><rect class="a" x="31" y="24.97" width="14" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#28497c;}</style></defs><path class="a" d="M3,10V44H51V10Zm8,31V36.21A1.23,1.23,0,0,1,12.24,35H23.76A1.24,1.24,0,0,1,25,36.21V41Zm37,0H28V36.21A4.24,4.24,0,0,0,23.76,32H12.24A4.24,4.24,0,0,0,8,36.21V41H6V13H48Z"/><path class="a" d="M18.1,31a7,7,0,1,0-7-7A7,7,0,0,0,18.1,31Zm0-10.91A3.91,3.91,0,1,1,14.2,24,3.92,3.92,0,0,1,18.1,20.06Z"/><rect class="a" x="31" y="17.97" width="14" height="4"/><rect class="a" x="31" y="24.97" width="14" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/video.svg b/public/assets/images/icons/blue/video.svg
index 798372799237b1b3044b39ce2c2e29d71fb8a200..a62d1686826301cd013795eee0a57851342bb109 100644
--- a/public/assets/images/icons/blue/video.svg
+++ b/public/assets/images/icons/blue/video.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="video"><path class="cls-1" d="M48,15l-9,6V15.67A3.68,3.68,0,0,0,35.33,12H6.67A3.68,3.68,0,0,0,3,15.67V38.33A3.68,3.68,0,0,0,6.67,42H35.33A3.68,3.68,0,0,0,39,38.33V33l9,6h3V15ZM35.65,38.33a.33.33,0,0,1-.32.32H6.67a.33.33,0,0,1-.32-.32V15.67a.33.33,0,0,1,.32-.32H35.33a.33.33,0,0,1,.32.32Z"/><polygon class="cls-1" points="15 36 28.5 27 15 18 15 36"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="video"><path class="cls-1" d="M48,15l-9,6V15.67A3.68,3.68,0,0,0,35.33,12H6.67A3.68,3.68,0,0,0,3,15.67V38.33A3.68,3.68,0,0,0,6.67,42H35.33A3.68,3.68,0,0,0,39,38.33V33l9,6h3V15ZM35.65,38.33a.33.33,0,0,1-.32.32H6.67a.33.33,0,0,1-.32-.32V15.67a.33.33,0,0,1,.32-.32H35.33a.33.33,0,0,1,.32.32Z"/><polygon class="cls-1" points="15 36 28.5 27 15 18 15 36"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/video2.svg b/public/assets/images/icons/blue/video2.svg
index de6d491edb08242ca93020e2283834752d72908a..266b92af6a9b597eafdd5ab367ffc1ea0d83f008 100644
--- a/public/assets/images/icons/blue/video2.svg
+++ b/public/assets/images/icons/blue/video2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="video2"><path class="cls-1" d="M4.76,17.82,50.48,13l-.54-5.17a2.07,2.07,0,0,0-2-1.85h-.22L5.09,10.49a2.07,2.07,0,0,0-1.84,2.27l.55,5.16h0V43.79A4.2,4.2,0,0,0,8,48H46.55a4.2,4.2,0,0,0,4.21-4.21v-26Zm5.94,3.36L7.17,24.71V21.18ZM46.55,44.65H8a.86.86,0,0,1-.85-.86V27.88H8.73l6.71-6.7h3.19l-6.7,6.7h4.74l6.71-6.7h3.19l-6.71,6.7H24.6l6.71-6.7h3.2l-6.71,6.7h4.74l6.71-6.7h3.19l-6.71,6.7h4.75l6.7-6.7h.23v3l-3.74,3.73h3.74V43.79A.87.87,0,0,1,46.55,44.65Z"/><polygon class="cls-1" points="22.26 43.02 32.32 36.31 22.26 29.6 22.26 43.02"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="video2"><path class="cls-1" d="M4.76,17.82,50.48,13l-.54-5.17a2.07,2.07,0,0,0-2-1.85h-.22L5.09,10.49a2.07,2.07,0,0,0-1.84,2.27l.55,5.16h0V43.79A4.2,4.2,0,0,0,8,48H46.55a4.2,4.2,0,0,0,4.21-4.21v-26Zm5.94,3.36L7.17,24.71V21.18ZM46.55,44.65H8a.86.86,0,0,1-.85-.86V27.88H8.73l6.71-6.7h3.19l-6.7,6.7h4.74l6.71-6.7h3.19l-6.71,6.7H24.6l6.71-6.7h3.2l-6.71,6.7h4.74l6.71-6.7h3.19l-6.71,6.7h4.75l6.7-6.7h.23v3l-3.74,3.73h3.74V43.79A.87.87,0,0,1,46.55,44.65Z"/><polygon class="cls-1" points="22.26 43.02 32.32 36.31 22.26 29.6 22.26 43.02"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/visibility-checked.svg b/public/assets/images/icons/blue/visibility-checked.svg
index d8d8ba1052464259628e29ef2b21bc954c72b03b..ed0cf144d4466c5103d4187b035546d29e08b41c 100644
--- a/public/assets/images/icons/blue/visibility-checked.svg
+++ b/public/assets/images/icons/blue/visibility-checked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
diff --git a/public/assets/images/icons/blue/visibility-checked2.svg b/public/assets/images/icons/blue/visibility-checked2.svg
index d8d8ba1052464259628e29ef2b21bc954c72b03b..ed0cf144d4466c5103d4187b035546d29e08b41c 100644
--- a/public/assets/images/icons/blue/visibility-checked2.svg
+++ b/public/assets/images/icons/blue/visibility-checked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
diff --git a/public/assets/images/icons/blue/visibility-invisible.svg b/public/assets/images/icons/blue/visibility-invisible.svg
index 2cb821bd961874cbec8542b9ee2accac4af20658..b7593192e113234b9fdc4c383ddf27391eae669e 100644
--- a/public/assets/images/icons/blue/visibility-invisible.svg
+++ b/public/assets/images/icons/blue/visibility-invisible.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g></svg>
diff --git a/public/assets/images/icons/blue/visibility-visible.svg b/public/assets/images/icons/blue/visibility-visible.svg
index 33902eed8fc5e13897de9962f944649a1938314c..2683180eaf5f7bca771755fed563488f50e02e42 100644
--- a/public/assets/images/icons/blue/visibility-visible.svg
+++ b/public/assets/images/icons/blue/visibility-visible.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="visibility-visible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/><path d="M27,18a9.08,9.08,0,0,0-2.51.39A4.11,4.11,0,0,1,26.3,21.7a4.18,4.18,0,0,1-4.19,4.19,4.13,4.13,0,0,1-3.54-2.08A8.82,8.82,0,0,0,18,27a9,9,0,1,0,9-9Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="visibility-visible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/><path d="M27,18a9.08,9.08,0,0,0-2.51.39A4.11,4.11,0,0,1,26.3,21.7a4.18,4.18,0,0,1-4.19,4.19,4.13,4.13,0,0,1-3.54-2.08A8.82,8.82,0,0,0,18,27a9,9,0,1,0,9-9Z"/></g></svg>
diff --git a/public/assets/images/icons/blue/vote-stopped.svg b/public/assets/images/icons/blue/vote-stopped.svg
index bf644ee7618d563913ef9e692819dbe33d8c9374..e111a4ae1a20ed8f95230153c25f81ce560fe249 100644
--- a/public/assets/images/icons/blue/vote-stopped.svg
+++ b/public/assets/images/icons/blue/vote-stopped.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="vote-stopped"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><rect class="cls-1" x="-1.53" y="25.22" width="57.55" height="3" transform="translate(-10.76 23.33) rotate(-39.35)"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="vote-stopped"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><rect class="cls-1" x="-1.53" y="25.22" width="57.55" height="3" transform="translate(-10.76 23.33) rotate(-39.35)"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/vote.svg b/public/assets/images/icons/blue/vote.svg
index 12ccf13657d0f65d382da2c5905e96c58c092383..44a1eeade19ea701939ef519fee0e7b273aadc38 100644
--- a/public/assets/images/icons/blue/vote.svg
+++ b/public/assets/images/icons/blue/vote.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="vote"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="vote"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/wiki.svg b/public/assets/images/icons/blue/wiki.svg
index 267e7266fdc450986b1fd727bf30a562608313d3..6e44fa74dd1579ceb16b83a007497a6e1f3ce2e4 100644
--- a/public/assets/images/icons/blue/wiki.svg
+++ b/public/assets/images/icons/blue/wiki.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="wiki"><path class="cls-1" d="M49.83,15a15.17,15.17,0,0,1-10.17,7.9,31.41,31.41,0,0,1,3.45,11.38C46.63,32.05,53.82,25.94,49.83,15ZM4.17,15c-4,10.94,3.2,17,6.72,19.28A31.41,31.41,0,0,1,14.34,22.9,15.17,15.17,0,0,1,4.17,15ZM27,16c-7.1,0-12.85,10.31-12.85,23h25.7C39.85,26.29,34.1,16,27,16Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#28497c;}</style></defs><g id="wiki"><path class="cls-1" d="M49.83,15a15.17,15.17,0,0,1-10.17,7.9,31.41,31.41,0,0,1,3.45,11.38C46.63,32.05,53.82,25.94,49.83,15ZM4.17,15c-4,10.94,3.2,17,6.72,19.28A31.41,31.41,0,0,1,14.34,22.9,15.17,15.17,0,0,1,4.17,15ZM27,16c-7.1,0-12.85,10.31-12.85,23h25.7C39.85,26.29,34.1,16,27,16Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/blue/zoom-in.svg b/public/assets/images/icons/blue/zoom-in.svg
index b7493d16b4079a7a30d4d6c833bcf68d641f6110..36f054e2c40e885069a0be0d0627d4415c78a377 100644
--- a/public/assets/images/icons/blue/zoom-in.svg
+++ b/public/assets/images/icons/blue/zoom-in.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="zoom-in"><polygon points="30.44 2.99 30.44 6.42 47.57 6.42 47.57 23.55 51 23.55 51 2.99 30.44 2.99"/><polygon points="6.44 30.41 3.02 30.41 3.02 50.97 23.58 50.97 23.58 47.54 6.44 47.54 6.44 30.41"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="zoom-in"><polygon points="30.44 2.99 30.44 6.42 47.57 6.42 47.57 23.55 51 23.55 51 2.99 30.44 2.99"/><polygon points="6.44 30.41 3.02 30.41 3.02 50.97 23.58 50.97 23.58 47.54 6.44 47.54 6.44 30.41"/></g></svg>
diff --git a/public/assets/images/icons/blue/zoom-in2.svg b/public/assets/images/icons/blue/zoom-in2.svg
index 9b5953c2ea4896fff3b084a26af569a41a0e3198..3056bc405b23621ab32a31e4c47b3cfdf9670c3b 100644
--- a/public/assets/images/icons/blue/zoom-in2.svg
+++ b/public/assets/images/icons/blue/zoom-in2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="zoom-in2"><path d="M39,15V39H15V15H39m3-3H12V42H42V12Z"/><polygon points="50.98 20.99 47.99 20.99 47.99 6 32.99 6 32.99 3 50.98 3 50.98 20.99"/><polygon points="21 50.98 3.01 50.98 3.01 32.99 6 32.99 6 47.98 21 47.98 21 50.98"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="zoom-in2"><path d="M39,15V39H15V15H39m3-3H12V42H42V12Z"/><polygon points="50.98 20.99 47.99 20.99 47.99 6 32.99 6 32.99 3 50.98 3 50.98 20.99"/><polygon points="21 50.98 3.01 50.98 3.01 32.99 6 32.99 6 47.98 21 47.98 21 50.98"/></g></svg>
diff --git a/public/assets/images/icons/blue/zoom-out.svg b/public/assets/images/icons/blue/zoom-out.svg
index 3c0029359dc903086c1042df44d0d4c4474d124b..ef38c356fba1112d32997f5aedf5673be4e7abec 100644
--- a/public/assets/images/icons/blue/zoom-out.svg
+++ b/public/assets/images/icons/blue/zoom-out.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="zoom-out"><polygon points="51 23.55 30.44 23.55 30.44 2.99 33.86 2.99 33.86 20.12 51 20.12 51 23.55"/><polygon points="23.58 50.97 20.15 50.97 20.15 33.83 3.02 33.83 3.02 30.41 23.58 30.41 23.58 50.97"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="zoom-out"><polygon points="51 23.55 30.44 23.55 30.44 2.99 33.86 2.99 33.86 20.12 51 20.12 51 23.55"/><polygon points="23.58 50.97 20.15 50.97 20.15 33.83 3.02 33.83 3.02 30.41 23.58 30.41 23.58 50.97"/></g></svg>
diff --git a/public/assets/images/icons/blue/zoom-out2.svg b/public/assets/images/icons/blue/zoom-out2.svg
index b46eb92ba2235592c13c9dfaad41177c33313b44..67e11b3da432224e1a97490ac7dc0c8bcfacd387 100644
--- a/public/assets/images/icons/blue/zoom-out2.svg
+++ b/public/assets/images/icons/blue/zoom-out2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="zoom-out2"><path d="M51,18H42V12H36V3H33v9H12V33H3v3h9v6h6v9h3V42H42V21h9ZM39,15v3H36V15ZM15,39V36h3v3Zm24,0H21V33H15V15H33v6h6Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#28497c"><g id="zoom-out2"><path d="M51,18H42V12H36V3H33v9H12V33H3v3h9v6h6v9h3V42H42V21h9ZM39,15v3H36V15ZM15,39V36h3v3Zm24,0H21V33H15V15H33v6h6Z"/></g></svg>
diff --git a/public/assets/images/icons/green/accept.svg b/public/assets/images/icons/green/accept.svg
index 8b1c9dfc8154f09c29d7d34c6d03b81c23ba78e4..4a4303793f00e2698fcbf30086fe1be7210d2b39 100644
--- a/public/assets/images/icons/green/accept.svg
+++ b/public/assets/images/icons/green/accept.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/activity.svg b/public/assets/images/icons/green/activity.svg
index 47fd77661181954f4f2a1566ed4c3c66d1eacfcf..7234041c068942966da4498442684b34989ae75f 100644
--- a/public/assets/images/icons/green/activity.svg
+++ b/public/assets/images/icons/green/activity.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
diff --git a/public/assets/images/icons/green/add-circle-full.svg b/public/assets/images/icons/green/add-circle-full.svg
index a083a8e931876b58856a5cee40120e01a5f143fe..2b4a976dcac79d1a9143c4f47a99bbbfad6dfa74 100644
--- a/public/assets/images/icons/green/add-circle-full.svg
+++ b/public/assets/images/icons/green/add-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/add-circle.svg b/public/assets/images/icons/green/add-circle.svg
index a083a8e931876b58856a5cee40120e01a5f143fe..2b4a976dcac79d1a9143c4f47a99bbbfad6dfa74 100644
--- a/public/assets/images/icons/green/add-circle.svg
+++ b/public/assets/images/icons/green/add-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/add.svg b/public/assets/images/icons/green/add.svg
index 2a9d12066cff1467c59af44012ba55b81bda097e..eae2c8316d564b02295fe4a75ffbadec050c4f39 100644
--- a/public/assets/images/icons/green/add.svg
+++ b/public/assets/images/icons/green/add.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/admin.svg b/public/assets/images/icons/green/admin.svg
index 48a697b833ae514ac5447336c57fcd0c89958f9d..68c4dd8e942fe79ad25b68ae654f5ab543c158d6 100644
--- a/public/assets/images/icons/green/admin.svg
+++ b/public/assets/images/icons/green/admin.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/aladdin.svg b/public/assets/images/icons/green/aladdin.svg
index 44591aba2d435493bc96f1295f90fbcc7ce7fc38..745ef0bc5138cd83f159c228d0187e7428ec937c 100644
--- a/public/assets/images/icons/green/aladdin.svg
+++ b/public/assets/images/icons/green/aladdin.svg
@@ -1 +1 @@
-<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
+<svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
diff --git a/public/assets/images/icons/green/archive.svg b/public/assets/images/icons/green/archive.svg
index 804e5c3d9146eebddb692920917edfbaa09f0ab5..d2f8a01ae32e3e6299f76e6ce5779fa1114fe7e6 100644
--- a/public/assets/images/icons/green/archive.svg
+++ b/public/assets/images/icons/green/archive.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
diff --git a/public/assets/images/icons/green/arr_1down.svg b/public/assets/images/icons/green/arr_1down.svg
index ca75accf2f80914cb4a08f09eb05acd12bb8e0a9..2e4feb5c6c09a78a3e39c580d435d9b53ce69d75 100644
--- a/public/assets/images/icons/green/arr_1down.svg
+++ b/public/assets/images/icons/green/arr_1down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/arr_1left.svg b/public/assets/images/icons/green/arr_1left.svg
index 8d53e46e44a9b6dcd609392dd16c8369c33e6ac8..d5b0e5b8252ba74842b5119f6f2e92d4e39087cc 100644
--- a/public/assets/images/icons/green/arr_1left.svg
+++ b/public/assets/images/icons/green/arr_1left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/arr_1right.svg b/public/assets/images/icons/green/arr_1right.svg
index 635e677dc93c4361aa922a1185228220f50448d1..89e348cb7454913421165e686aeea1cbc54636a8 100644
--- a/public/assets/images/icons/green/arr_1right.svg
+++ b/public/assets/images/icons/green/arr_1right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/arr_1sort.svg b/public/assets/images/icons/green/arr_1sort.svg
index fc4c193771a06740a1741dafde9ea8682fdf9ce7..859a030131ec8f93ddbba1803dbc592aaa7175a1 100755
--- a/public/assets/images/icons/green/arr_1sort.svg
+++ b/public/assets/images/icons/green/arr_1sort.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/arr_1up.svg b/public/assets/images/icons/green/arr_1up.svg
index ba103ee11e3a10c51c384b26cb0346f549d804a8..c4e476d170f2800521e93a3e5964c4aebeaa39fb 100644
--- a/public/assets/images/icons/green/arr_1up.svg
+++ b/public/assets/images/icons/green/arr_1up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/arr_2down.svg b/public/assets/images/icons/green/arr_2down.svg
index e2bdc5d74df45bb9aae251b9fb0d7d8665c58279..938f8a7a4013fe4938fc1e5cd33947e1632c8ba7 100644
--- a/public/assets/images/icons/green/arr_2down.svg
+++ b/public/assets/images/icons/green/arr_2down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/arr_2left.svg b/public/assets/images/icons/green/arr_2left.svg
index 463c6d1fb4d74cbb09ee1a2ab600be14d31c62c7..c96df69641dd04bbd616fc825679ca9cf178ce24 100644
--- a/public/assets/images/icons/green/arr_2left.svg
+++ b/public/assets/images/icons/green/arr_2left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/arr_2right.svg b/public/assets/images/icons/green/arr_2right.svg
index f49f5917b605f06082c96578b58d25509a092ff8..1c93a4d6bf26fc3cbfb876da6f45879bd1d0e2fa 100644
--- a/public/assets/images/icons/green/arr_2right.svg
+++ b/public/assets/images/icons/green/arr_2right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/arr_2up.svg b/public/assets/images/icons/green/arr_2up.svg
index edab673b5e31daecbe48295a26082ae78e6c999d..84c436a0331dfff5cfd85dca0e49ec6aec043d1b 100644
--- a/public/assets/images/icons/green/arr_2up.svg
+++ b/public/assets/images/icons/green/arr_2up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/arr_eol-down.svg b/public/assets/images/icons/green/arr_eol-down.svg
index 0f2001dd95f98ac47234da348cf20f0990746da9..21efba302bdd02081f246d75dadce437dbe9faa1 100644
--- a/public/assets/images/icons/green/arr_eol-down.svg
+++ b/public/assets/images/icons/green/arr_eol-down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="47.98 10.98 37.36 10.98 26.98 21.36 16.61 10.98 5.99 10.98 26.98 31.98 47.98 10.98"/><rect class="a" x="24.51" y="19.48" width="5" height="42" transform="translate(67.5 13.47) rotate(90)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="47.98 10.98 37.36 10.98 26.98 21.36 16.61 10.98 5.99 10.98 26.98 31.98 47.98 10.98"/><rect class="a" x="24.51" y="19.48" width="5" height="42" transform="translate(67.5 13.47) rotate(90)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/arr_eol-left.svg b/public/assets/images/icons/green/arr_eol-left.svg
index 4011bca77c5caab79de116bca32a303f255e107b..187567b46f42e54eb3844fa399bc3d26dcd6cc26 100644
--- a/public/assets/images/icons/green/arr_eol-left.svg
+++ b/public/assets/images/icons/green/arr_eol-left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="43 6 43 16.63 32.63 27 43 37.37 43 48 22 27 43 6"/><rect class="a" x="11" y="5.97" width="5" height="42" transform="translate(27 53.94) rotate(-180)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="43 6 43 16.63 32.63 27 43 37.37 43 48 22 27 43 6"/><rect class="a" x="11" y="5.97" width="5" height="42" transform="translate(27 53.94) rotate(-180)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/arr_eol-right.svg b/public/assets/images/icons/green/arr_eol-right.svg
index e92143a663dafe25435dc44dca3aa7d9b2cffb8d..7eb4e5f3ed5207fa2bed355dff106ac14af0589d 100644
--- a/public/assets/images/icons/green/arr_eol-right.svg
+++ b/public/assets/images/icons/green/arr_eol-right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="11 6 11 16.63 21.37 27 11 37.37 11 48 32 27 11 6"/><rect class="a" x="38" y="5.97" width="5" height="42"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="11 6 11 16.63 21.37 27 11 37.37 11 48 32 27 11 6"/><rect class="a" x="38" y="5.97" width="5" height="42"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/arr_eol-up.svg b/public/assets/images/icons/green/arr_eol-up.svg
index 05491dca6e06f3f4a1eb9d63ae19fde6b6ff076f..34b926a9a099a1cca2ca9103a6ea68f61afd395d 100644
--- a/public/assets/images/icons/green/arr_eol-up.svg
+++ b/public/assets/images/icons/green/arr_eol-up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="6.01 42.98 16.64 42.98 27.02 32.61 37.39 42.98 48.02 42.98 27.02 21.98 6.01 42.98"/><rect class="a" x="24.48" y="-7.51" width="5" height="42" transform="translate(13.5 40.47) rotate(-90)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="6.01 42.98 16.64 42.98 27.02 32.61 37.39 42.98 48.02 42.98 27.02 21.98 6.01 42.98"/><rect class="a" x="24.48" y="-7.51" width="5" height="42" transform="translate(13.5 40.47) rotate(-90)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/audio.svg b/public/assets/images/icons/green/audio.svg
index 5d7b1577113405d4472348780e075e13805be6a2..ab8ba03d677d792c84887cada38e5da94f7cb3f3 100644
--- a/public/assets/images/icons/green/audio.svg
+++ b/public/assets/images/icons/green/audio.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/audio2.svg b/public/assets/images/icons/green/audio2.svg
index 5d7b1577113405d4472348780e075e13805be6a2..ab8ba03d677d792c84887cada38e5da94f7cb3f3 100644
--- a/public/assets/images/icons/green/audio2.svg
+++ b/public/assets/images/icons/green/audio2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/audio3.svg b/public/assets/images/icons/green/audio3.svg
index d2316e7de288021006a2aba0d50d1af448b3731e..7da0b481dea217d79011d63786e9804a78c8e23a 100644
--- a/public/assets/images/icons/green/audio3.svg
+++ b/public/assets/images/icons/green/audio3.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="audio3"><path class="cls-1" d="M40.75,10H3.17V40.72a3.42,3.42,0,0,0,3.41,3.42h41A3.42,3.42,0,0,0,51,40.72V10Zm6.4,30.31H7V13.82h6.4v6.4H40.75v-6.4h6.4Z"/><path class="cls-1" d="M35.62,23.73a5.08,5.08,0,0,0-4.84,6.74H23.35a5.11,5.11,0,1,0-5.67,3.33v.09h17a5.64,5.64,0,0,0,.93.09,5.13,5.13,0,1,0,0-10.25Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="audio3"><path class="cls-1" d="M40.75,10H3.17V40.72a3.42,3.42,0,0,0,3.41,3.42h41A3.42,3.42,0,0,0,51,40.72V10Zm6.4,30.31H7V13.82h6.4v6.4H40.75v-6.4h6.4Z"/><path class="cls-1" d="M35.62,23.73a5.08,5.08,0,0,0-4.84,6.74H23.35a5.11,5.11,0,1,0-5.67,3.33v.09h17a5.64,5.64,0,0,0,.93.09,5.13,5.13,0,1,0,0-10.25Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/block-accordion.svg b/public/assets/images/icons/green/block-accordion.svg
index 89cea60772c72de88783ed9a41463f3250a49251..4b61f90c6b7a7beae913bf718fce9edc55e18e81 100644
--- a/public/assets/images/icons/green/block-accordion.svg
+++ b/public/assets/images/icons/green/block-accordion.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-accordion"><path class="cls-1" d="M18,7.5v39H48V7.5Zm27,36H21v-9H45Zm0-12H21v-9H45Zm-24-12v-9H45v9Z"/><polygon class="cls-1" points="12 10.5 9 10.5 9 13.5 6 13.5 6 16.5 9 16.5 9 19.5 12 19.5 12 16.5 15 16.5 15 13.5 12 13.5 12 10.5"/><polygon class="cls-1" points="12 22.49 9 22.49 9 25.49 6 25.49 6 28.49 9 28.49 9 31.49 12 31.49 12 28.49 15 28.49 15 25.49 12 25.49 12 22.49"/><polygon class="cls-1" points="12 34.49 9 34.49 9 37.49 6 37.49 6 40.48 9 40.48 9 43.48 12 43.48 12 40.48 15 40.48 15 37.49 12 37.49 12 34.49"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-accordion"><path class="cls-1" d="M18,7.5v39H48V7.5Zm27,36H21v-9H45Zm0-12H21v-9H45Zm-24-12v-9H45v9Z"/><polygon class="cls-1" points="12 10.5 9 10.5 9 13.5 6 13.5 6 16.5 9 16.5 9 19.5 12 19.5 12 16.5 15 16.5 15 13.5 12 13.5 12 10.5"/><polygon class="cls-1" points="12 22.49 9 22.49 9 25.49 6 25.49 6 28.49 9 28.49 9 31.49 12 31.49 12 28.49 15 28.49 15 25.49 12 25.49 12 22.49"/><polygon class="cls-1" points="12 34.49 9 34.49 9 37.49 6 37.49 6 40.48 9 40.48 9 43.48 12 43.48 12 40.48 15 40.48 15 37.49 12 37.49 12 34.49"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/block-canvas.svg b/public/assets/images/icons/green/block-canvas.svg
index 08906693ae063927666f105a8724a8122d50896f..e38c0cd226c90a91c3e9cde8a55fe1adeb56e8a1 100644
--- a/public/assets/images/icons/green/block-canvas.svg
+++ b/public/assets/images/icons/green/block-canvas.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-canvas"><path class="cls-1" d="M48,8.91H6v30h31c2.48,4.54,5,8.6,5.87,8.24s0-4-1.12-8.24H48Zm-3,27H41c-1.64-5.56-3.55-11.1-3.55-11.1a3.38,3.38,0,0,0-6.28,2.52s2,4.1,4.32,8.58H9v-24H45Z"/><path class="cls-1" d="M28.29,16.91a3.29,3.29,0,0,1,.48,2.71s.05.05.07.08a2.31,2.31,0,0,0,.05.74,2.49,2.49,0,1,0,4.79-1.34A7.29,7.29,0,0,0,31,15.43c-1.84-1.26-4.83-1-4.86-.28S27.28,15.76,28.29,16.91Z"/><path class="cls-1" d="M16.33,24.14c.83-.06,1.42-1.34,1.31-2.86s-.86-2.72-1.69-2.66S14.53,20,14.64,21.48,15.5,24.2,16.33,24.14Z"/><path class="cls-1" d="M21.49,20.86c.66-.31.68-1.65.05-3S19.85,15.7,19.19,16s-.68,1.66,0,3S20.84,21.17,21.49,20.86Z"/><path class="cls-1" d="M15.47,31.66a9.41,9.41,0,0,0,6.31.26,8.64,8.64,0,0,0,4.94-4,8.5,8.5,0,0,0,.91-5.9c-1.56,3.58-3.73,6.22-6.76,7.08a10.41,10.41,0,0,1-4.77.34A16.91,16.91,0,0,1,11,27.7,8.46,8.46,0,0,0,15.47,31.66Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-canvas"><path class="cls-1" d="M48,8.91H6v30h31c2.48,4.54,5,8.6,5.87,8.24s0-4-1.12-8.24H48Zm-3,27H41c-1.64-5.56-3.55-11.1-3.55-11.1a3.38,3.38,0,0,0-6.28,2.52s2,4.1,4.32,8.58H9v-24H45Z"/><path class="cls-1" d="M28.29,16.91a3.29,3.29,0,0,1,.48,2.71s.05.05.07.08a2.31,2.31,0,0,0,.05.74,2.49,2.49,0,1,0,4.79-1.34A7.29,7.29,0,0,0,31,15.43c-1.84-1.26-4.83-1-4.86-.28S27.28,15.76,28.29,16.91Z"/><path class="cls-1" d="M16.33,24.14c.83-.06,1.42-1.34,1.31-2.86s-.86-2.72-1.69-2.66S14.53,20,14.64,21.48,15.5,24.2,16.33,24.14Z"/><path class="cls-1" d="M21.49,20.86c.66-.31.68-1.65.05-3S19.85,15.7,19.19,16s-.68,1.66,0,3S20.84,21.17,21.49,20.86Z"/><path class="cls-1" d="M15.47,31.66a9.41,9.41,0,0,0,6.31.26,8.64,8.64,0,0,0,4.94-4,8.5,8.5,0,0,0,.91-5.9c-1.56,3.58-3.73,6.22-6.76,7.08a10.41,10.41,0,0,1-4.77.34A16.91,16.91,0,0,1,11,27.7,8.46,8.46,0,0,0,15.47,31.66Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/block-comparison.svg b/public/assets/images/icons/green/block-comparison.svg
index b4a24f095281541f6211caff9f68852e3efc6279..10da736327751697519644ca05c31c0c9789b442 100644
--- a/public/assets/images/icons/green/block-comparison.svg
+++ b/public/assets/images/icons/green/block-comparison.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-comparison"><polygon class="cls-1" points="30.8 31 32.88 33.08 38.96 26.99 32.88 20.9 30.8 22.98 34.8 26.99 30.8 31"/><polygon class="cls-1" points="23.2 22.98 21.12 20.9 15.03 27 21.12 33.08 23.2 31 19.2 26.99 23.2 22.98"/><path class="cls-1" d="M48,12H28.5V9h-3v3H6V42H25.5v3h3V42H48ZM9,39V15H25.5V39Zm36,0H28.5V15H45Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-comparison"><polygon class="cls-1" points="30.8 31 32.88 33.08 38.96 26.99 32.88 20.9 30.8 22.98 34.8 26.99 30.8 31"/><polygon class="cls-1" points="23.2 22.98 21.12 20.9 15.03 27 21.12 33.08 23.2 31 19.2 26.99 23.2 22.98"/><path class="cls-1" d="M48,12H28.5V9h-3v3H6V42H25.5v3h3V42H48ZM9,39V15H25.5V39Zm36,0H28.5V15H45Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/block-eyecatcher.svg b/public/assets/images/icons/green/block-eyecatcher.svg
index 4a0e8de34f20201102a48ca4b5fdfeae8e275451..accef80580f3baaf5c056278cdf5ffe77b533834 100644
--- a/public/assets/images/icons/green/block-eyecatcher.svg
+++ b/public/assets/images/icons/green/block-eyecatcher.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-eyecatcher"><g id="visibility-visible"><path class="cls-1" d="M27,17A20.39,20.39,0,0,1,44.57,27,20.39,20.39,0,0,1,9.43,27,20.35,20.35,0,0,1,27,17m0-3A23.36,23.36,0,0,0,6.31,26.42L6,27l.3.58a23.4,23.4,0,0,0,41.37,0L48,27l-.31-.57A23.36,23.36,0,0,0,27,14Z"/><path class="cls-1" d="M27,19.08a7.9,7.9,0,0,0-2.19.35,3.6,3.6,0,0,1,1.58,2.93A3.67,3.67,0,0,1,22.72,26a3.6,3.6,0,0,1-3.1-1.83A7.9,7.9,0,1,0,27,19.08Z"/></g><rect class="cls-1" x="6" y="5.91" width="9" height="3"/><rect class="cls-1" x="6" y="5.91" width="3" height="9"/><rect class="cls-1" x="38.99" y="5.91" width="9" height="3"/><rect class="cls-1" x="44.99" y="8.91" width="3" height="6"/><rect class="cls-1" x="44.99" y="38.89" width="3" height="9"/><rect class="cls-1" x="38.99" y="44.89" width="9" height="3"/><rect class="cls-1" x="6" y="38.89" width="3" height="9"/><rect class="cls-1" x="6" y="44.89" width="9" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-eyecatcher"><g id="visibility-visible"><path class="cls-1" d="M27,17A20.39,20.39,0,0,1,44.57,27,20.39,20.39,0,0,1,9.43,27,20.35,20.35,0,0,1,27,17m0-3A23.36,23.36,0,0,0,6.31,26.42L6,27l.3.58a23.4,23.4,0,0,0,41.37,0L48,27l-.31-.57A23.36,23.36,0,0,0,27,14Z"/><path class="cls-1" d="M27,19.08a7.9,7.9,0,0,0-2.19.35,3.6,3.6,0,0,1,1.58,2.93A3.67,3.67,0,0,1,22.72,26a3.6,3.6,0,0,1-3.1-1.83A7.9,7.9,0,1,0,27,19.08Z"/></g><rect class="cls-1" x="6" y="5.91" width="9" height="3"/><rect class="cls-1" x="6" y="5.91" width="3" height="9"/><rect class="cls-1" x="38.99" y="5.91" width="9" height="3"/><rect class="cls-1" x="44.99" y="8.91" width="3" height="6"/><rect class="cls-1" x="44.99" y="38.89" width="3" height="9"/><rect class="cls-1" x="38.99" y="44.89" width="9" height="3"/><rect class="cls-1" x="6" y="38.89" width="3" height="9"/><rect class="cls-1" x="6" y="44.89" width="9" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/block-eyecatcher2.svg b/public/assets/images/icons/green/block-eyecatcher2.svg
index 8cacfc4be7821f232258485cd9da7fc59ede8673..9e427e0c8acb618242c2ba9ce1db6d3718a9eed0 100644
--- a/public/assets/images/icons/green/block-eyecatcher2.svg
+++ b/public/assets/images/icons/green/block-eyecatcher2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/block-gallery.svg b/public/assets/images/icons/green/block-gallery.svg
index b6fa60c6452fa262ce457902bf13068ea1d29880..01d76e38e08a0e850d31cfefc20e05960c16ead3 100644
--- a/public/assets/images/icons/green/block-gallery.svg
+++ b/public/assets/images/icons/green/block-gallery.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-gallery"><path class="cls-1" d="M36,11.91v12H48v-12Zm9,9H39v-6h6Z"/><path class="cls-1" d="M36,38.89H48v-12H36Zm3-9h6v6H39Z"/><path class="cls-1" d="M33,11.91H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M33,26.9H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M6,23.9H18v-12H6Zm3-9h6v6H9Z"/><path class="cls-1" d="M6,38.89H18v-12H6Zm3-9h6v6H9Z"/><rect class="cls-1" x="19.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="25.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="31.5" y="41.89" width="3" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-gallery"><path class="cls-1" d="M36,11.91v12H48v-12Zm9,9H39v-6h6Z"/><path class="cls-1" d="M36,38.89H48v-12H36Zm3-9h6v6H39Z"/><path class="cls-1" d="M33,11.91H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M33,26.9H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M6,23.9H18v-12H6Zm3-9h6v6H9Z"/><path class="cls-1" d="M6,38.89H18v-12H6Zm3-9h6v6H9Z"/><rect class="cls-1" x="19.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="25.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="31.5" y="41.89" width="3" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/block-gallery2.svg b/public/assets/images/icons/green/block-gallery2.svg
index 0abb9533b63c1674faa7e916da67fb807d2c2851..c4ff0b83447ae18056f38d92c4d7f0a254fbea0c 100644
--- a/public/assets/images/icons/green/block-gallery2.svg
+++ b/public/assets/images/icons/green/block-gallery2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-gallery2"><polygon class="cls-1" points="44.87 20.9 42.79 22.98 46.8 26.99 42.79 31 44.87 33.08 50.96 26.99 44.87 20.9"/><polygon class="cls-1" points="9.13 20.9 3.04 27 9.13 33.08 11.21 31 7.2 26.99 11.21 22.98 9.13 20.9"/><path class="cls-1" d="M15,38.89H39v-24H15Zm3-21H36v18H18Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-gallery2"><polygon class="cls-1" points="44.87 20.9 42.79 22.98 46.8 26.99 42.79 31 44.87 33.08 50.96 26.99 44.87 20.9"/><polygon class="cls-1" points="9.13 20.9 3.04 27 9.13 33.08 11.21 31 7.2 26.99 11.21 22.98 9.13 20.9"/><path class="cls-1" d="M15,38.89H39v-24H15Zm3-21H36v18H18Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/block-imagemap.svg b/public/assets/images/icons/green/block-imagemap.svg
index e3eabd366c47d9a769817b7b7105b607bbf814ab..83202821aa97cfc2e029ed3f17ca16fcf0efa30a 100644
--- a/public/assets/images/icons/green/block-imagemap.svg
+++ b/public/assets/images/icons/green/block-imagemap.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-imagemap"><rect class="cls-1" x="26.99" y="17.9" width="6" height="3"/><rect class="cls-1" x="18" y="17.9" width="6" height="3"/><rect class="cls-1" x="35.99" y="17.9" width="6" height="3"/><path class="cls-1" d="M51,17.9H48v-6H36v-3H33v3H6v6H3v3H6v21H33v3h3v-3H48v-21h3ZM45,35.05l-8.71-6.33-1.5,1.18H33v1.4l-3.33,2.61L19.9,25,9,35.09V20.9h6v-3H9v-3H33v3h3v-3h9v3h0v3h0Z"/><rect class="cls-1" x="32.99" y="20.9" width="3" height="6"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-imagemap"><rect class="cls-1" x="26.99" y="17.9" width="6" height="3"/><rect class="cls-1" x="18" y="17.9" width="6" height="3"/><rect class="cls-1" x="35.99" y="17.9" width="6" height="3"/><path class="cls-1" d="M51,17.9H48v-6H36v-3H33v3H6v6H3v3H6v21H33v3h3v-3H48v-21h3ZM45,35.05l-8.71-6.33-1.5,1.18H33v1.4l-3.33,2.61L19.9,25,9,35.09V20.9h6v-3H9v-3H33v3h3v-3h9v3h0v3h0Z"/><rect class="cls-1" x="32.99" y="20.9" width="3" height="6"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/block-imagemap2.svg b/public/assets/images/icons/green/block-imagemap2.svg
index 8cacfc4be7821f232258485cd9da7fc59ede8673..9e427e0c8acb618242c2ba9ce1db6d3718a9eed0 100644
--- a/public/assets/images/icons/green/block-imagemap2.svg
+++ b/public/assets/images/icons/green/block-imagemap2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/block-tabs.svg b/public/assets/images/icons/green/block-tabs.svg
index 244362839da1f58171f9cb1f78f5cb871b224118..fc09143a53ba02bdce52850cba3b66511f163bb9 100644
--- a/public/assets/images/icons/green/block-tabs.svg
+++ b/public/assets/images/icons/green/block-tabs.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-tabs"><path class="cls-1" d="M6,8.91v36H48v-36Zm18,3h9v6H24Zm21,30H9v-30H21v9H45Zm0-24H36v-6h9Z"/><path d="M48,8.91H6v36H48v-36Zm-12,9v-6h9v6Zm-12,0v-6h9v6Zm-15,24v-30H21v9H45v21Z"/><rect class="cls-1" x="12" y="26.9" width="29.99" height="3"/><polygon points="41.99 26.9 12 26.9 12 29.9 41.99 29.9 41.99 26.9 41.99 26.9"/><rect class="cls-1" x="12" y="32.9" width="29.99" height="3"/><polygon points="41.99 32.9 12 32.9 12 35.9 41.99 35.9 41.99 32.9 41.99 32.9"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-tabs"><path class="cls-1" d="M6,8.91v36H48v-36Zm18,3h9v6H24Zm21,30H9v-30H21v9H45Zm0-24H36v-6h9Z"/><path d="M48,8.91H6v36H48v-36Zm-12,9v-6h9v6Zm-12,0v-6h9v6Zm-15,24v-30H21v9H45v21Z"/><rect class="cls-1" x="12" y="26.9" width="29.99" height="3"/><polygon points="41.99 26.9 12 26.9 12 29.9 41.99 29.9 41.99 26.9 41.99 26.9"/><rect class="cls-1" x="12" y="32.9" width="29.99" height="3"/><polygon points="41.99 32.9 12 32.9 12 35.9 41.99 35.9 41.99 32.9 41.99 32.9"/></g></svg>
diff --git a/public/assets/images/icons/green/block-typewriter.svg b/public/assets/images/icons/green/block-typewriter.svg
index 6bd62c5b62a98f93274912ee1abd160c7f11af26..b65c29227626373de8847c5c5795421850f1e4ea 100644
--- a/public/assets/images/icons/green/block-typewriter.svg
+++ b/public/assets/images/icons/green/block-typewriter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-typewriter"><polygon class="cls-1" points="42.06 32.9 45.06 32.9 45.06 29.9 42.06 29.9 42.06 12 39.06 12 39.06 29.9 36.06 29.9 36.06 32.9 39.06 32.9 39.06 41.89 33.07 41.89 33.07 44.89 39.06 44.89 39.06 41.98 42.06 41.98 42.06 44.89 48.06 44.89 48.06 41.89 42.06 41.89 42.06 32.9"/><rect class="cls-1" x="33.07" y="8.91" width="6" height="3"/><rect class="cls-1" x="42.06" y="8.91" width="6" height="3"/><path class="cls-1" d="M20.8,14.91l-1-3H12v3h3.21L7,38.89H3v3H8.63a1.09,1.09,0,0,0,.76-.29,1.47,1.47,0,0,0,.41-.67l2.41-7.24H23.78l2.41,7.24a1.73,1.73,0,0,0,.43.69,1.07,1.07,0,0,0,.76.27H33v-3H29ZM13.18,30.76l4.05-12.18A25.75,25.75,0,0,0,18,15.76c.12.54.25,1,.38,1.54s.26.9.38,1.26l4,12.2Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="block-typewriter"><polygon class="cls-1" points="42.06 32.9 45.06 32.9 45.06 29.9 42.06 29.9 42.06 12 39.06 12 39.06 29.9 36.06 29.9 36.06 32.9 39.06 32.9 39.06 41.89 33.07 41.89 33.07 44.89 39.06 44.89 39.06 41.98 42.06 41.98 42.06 44.89 48.06 44.89 48.06 41.89 42.06 41.89 42.06 32.9"/><rect class="cls-1" x="33.07" y="8.91" width="6" height="3"/><rect class="cls-1" x="42.06" y="8.91" width="6" height="3"/><path class="cls-1" d="M20.8,14.91l-1-3H12v3h3.21L7,38.89H3v3H8.63a1.09,1.09,0,0,0,.76-.29,1.47,1.47,0,0,0,.41-.67l2.41-7.24H23.78l2.41,7.24a1.73,1.73,0,0,0,.43.69,1.07,1.07,0,0,0,.76.27H33v-3H29ZM13.18,30.76l4.05-12.18A25.75,25.75,0,0,0,18,15.76c.12.54.25,1,.38,1.54s.26.9.38,1.26l4,12.2Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/blubber-old.svg b/public/assets/images/icons/green/blubber-old.svg
index fad8ac50bf3d01a80b0bcf47e2ff74711dfd1528..21e957ef7d58f2f14f68969c039b29f3dbe3c869 100644
--- a/public/assets/images/icons/green/blubber-old.svg
+++ b/public/assets/images/icons/green/blubber-old.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M18,15A15,15,0,1,0,33,30,15,15,0,0,0,18,15Z"/><path class="a" d="M50.85,13.5a8.5,8.5,0,1,0-8.5,8.5A8.5,8.5,0,0,0,50.85,13.5Z"/><path class="a" d="M45,39a5,5,0,1,0,5,5A5,5,0,0,0,45,39Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M18,15A15,15,0,1,0,33,30,15,15,0,0,0,18,15Z"/><path class="a" d="M50.85,13.5a8.5,8.5,0,1,0-8.5,8.5A8.5,8.5,0,0,0,50.85,13.5Z"/><path class="a" d="M45,39a5,5,0,1,0,5,5A5,5,0,0,0,45,39Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/blubber.svg b/public/assets/images/icons/green/blubber.svg
index d2876b2768e8e26d485bf4c0b0ef250154812233..1e1d7eabf0d63aeb37cc5a7a5f4b1bc97ccd2aa9 100644
--- a/public/assets/images/icons/green/blubber.svg
+++ b/public/assets/images/icons/green/blubber.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M41,31A10,10,0,1,0,51,41,10,10,0,0,0,41,31Zm0,17a7,7,0,1,1,7-7A7,7,0,0,1,41,48Z"/><path class="a" d="M33,26.83A12,12,0,1,0,23.2,13,14.72,14.72,0,0,0,18,12,15,15,0,1,0,33,27C33,26.94,33,26.88,33,26.83ZM18,39A12,12,0,1,1,30,27,12,12,0,0,1,18,39Zm8-24.65A9,9,0,1,1,35,24a8.63,8.63,0,0,1-2.39-.34A15,15,0,0,0,26,14.35Z"/><path class="a" d="M22.21,17.06A10.71,10.71,0,0,0,18,16.2a10.87,10.87,0,0,0-9.78,6.25,1.29,1.29,0,0,0,.62,1.72,1.23,1.23,0,0,0,.55.13,1.3,1.3,0,0,0,1.18-.75A8.22,8.22,0,0,1,21.2,19.44a1.29,1.29,0,1,0,1-2.38Z"/><path class="a" d="M8.5,25.7A1.3,1.3,0,0,0,7.2,27a10.48,10.48,0,0,0,.14,1.68,1.3,1.3,0,0,0,1.27,1.1l.21,0A1.3,1.3,0,0,0,9.9,28.28,7.8,7.8,0,0,1,9.8,27,1.3,1.3,0,0,0,8.5,25.7Z"/><path class="a" d="M38.66,9.49A1.23,1.23,0,0,0,38,7.89a7.72,7.72,0,0,0-10.64,5.92,1.21,1.21,0,0,0,1,1.39l.19,0a1.21,1.21,0,0,0,1.2-1A5.33,5.33,0,0,1,35,9.72a5.23,5.23,0,0,1,2.06.42A1.23,1.23,0,0,0,38.66,9.49Z"/><path class="a" d="M43.19,35.82A5.62,5.62,0,0,0,35.37,41a6.52,6.52,0,0,0,.07.88,1.13,1.13,0,0,0,1.11.95l.18,0a1.13,1.13,0,0,0,.94-1.29,3,3,0,0,1-.05-.52A3.39,3.39,0,0,1,41,37.62a3.27,3.27,0,0,1,1.31.27,1.12,1.12,0,1,0,.88-2.07Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M41,31A10,10,0,1,0,51,41,10,10,0,0,0,41,31Zm0,17a7,7,0,1,1,7-7A7,7,0,0,1,41,48Z"/><path class="a" d="M33,26.83A12,12,0,1,0,23.2,13,14.72,14.72,0,0,0,18,12,15,15,0,1,0,33,27C33,26.94,33,26.88,33,26.83ZM18,39A12,12,0,1,1,30,27,12,12,0,0,1,18,39Zm8-24.65A9,9,0,1,1,35,24a8.63,8.63,0,0,1-2.39-.34A15,15,0,0,0,26,14.35Z"/><path class="a" d="M22.21,17.06A10.71,10.71,0,0,0,18,16.2a10.87,10.87,0,0,0-9.78,6.25,1.29,1.29,0,0,0,.62,1.72,1.23,1.23,0,0,0,.55.13,1.3,1.3,0,0,0,1.18-.75A8.22,8.22,0,0,1,21.2,19.44a1.29,1.29,0,1,0,1-2.38Z"/><path class="a" d="M8.5,25.7A1.3,1.3,0,0,0,7.2,27a10.48,10.48,0,0,0,.14,1.68,1.3,1.3,0,0,0,1.27,1.1l.21,0A1.3,1.3,0,0,0,9.9,28.28,7.8,7.8,0,0,1,9.8,27,1.3,1.3,0,0,0,8.5,25.7Z"/><path class="a" d="M38.66,9.49A1.23,1.23,0,0,0,38,7.89a7.72,7.72,0,0,0-10.64,5.92,1.21,1.21,0,0,0,1,1.39l.19,0a1.21,1.21,0,0,0,1.2-1A5.33,5.33,0,0,1,35,9.72a5.23,5.23,0,0,1,2.06.42A1.23,1.23,0,0,0,38.66,9.49Z"/><path class="a" d="M43.19,35.82A5.62,5.62,0,0,0,35.37,41a6.52,6.52,0,0,0,.07.88,1.13,1.13,0,0,0,1.11.95l.18,0a1.13,1.13,0,0,0,.94-1.29,3,3,0,0,1-.05-.52A3.39,3.39,0,0,1,41,37.62a3.27,3.27,0,0,1,1.31.27,1.12,1.12,0,1,0,.88-2.07Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/brainstorm.svg b/public/assets/images/icons/green/brainstorm.svg
index feb2e233d22390b134e41b9b4ddb4f5fd999a3d2..2095a43085653bd067b0845308093a28e090a80c 100644
--- a/public/assets/images/icons/green/brainstorm.svg
+++ b/public/assets/images/icons/green/brainstorm.svg
@@ -1 +1 @@
-<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="Brainstorm"><path d="M28.55,25.76c-11.46-1.2-20.19-7-19.5-12.87s10.55-9.72,22-8.53a39,39,0,0,1,5.18.93,40.5,40.5,0,0,0-9.56-2.17C14.38,1.84,3.82,5.93,3.07,12.27S11.69,24.78,24,26.06a40.05,40.05,0,0,0,9.83-.14A39.25,39.25,0,0,1,28.55,25.76Z"/><path d="M25.65,6.28c11.44,1.38,20.06,7.28,19.26,13.17S34.19,29,22.75,27.63a38.62,38.62,0,0,1-5.16-1,40,40,0,0,0,9.52,2.33C39.38,30.42,50,26.5,50.88,20.18S42.49,7.53,30.22,6.05a40.49,40.49,0,0,0-9.84,0A39.6,39.6,0,0,1,25.65,6.28Z"/><path d="M28.32,38.84c-10-1-17.57-6.05-17-11.19A5.46,5.46,0,0,1,12.59,25c-.65-.25-1.39-.55-2.22-.92S9,23.41,8.46,23.13a6.42,6.42,0,0,0-2.31,4c-.64,5.51,7.5,10.89,18.2,12A35.62,35.62,0,0,0,32.9,39,35.58,35.58,0,0,1,28.32,38.84Z"/><path d="M42.91,29.36c-.8.31-1.7.63-2.47.84a23.13,23.13,0,0,1-2.53.51,4.88,4.88,0,0,1,.67,1.4c1.35,5-5.45,11-15.18,13.27a33.74,33.74,0,0,1-4.52.74,35.45,35.45,0,0,0,8.5-1C37.81,42.65,45.1,36.27,43.66,30.9A5.5,5.5,0,0,0,42.91,29.36Z"/><path d="M14.59,43a5.56,5.56,0,0,1,2.72-4.15,15.4,15.4,0,0,1-1.51-.49l-1-.39c-2.1,1.24-3.47,2.93-3.57,4.87C11,47,16.46,50.58,23.45,50.91A19.82,19.82,0,0,0,29,50.4a19.44,19.44,0,0,1-3,.12C19.51,50.21,14.39,46.83,14.59,43Z"/><path d="M42.61,29.57c-.5,0-1.75.93-2.21.9s-1.87.42-2.33.34A4.56,4.56,0,0,1,38.28,32c-.12,2.62-4.69,4.65-10.41,4.15a18.66,18.66,0,0,1-2.59-.43,11.23,11.23,0,0,0,5,1.51c6.15.52,12.38-1.67,12.69-4.84A26.14,26.14,0,0,0,42.61,29.57Z"/><path d="M29.24,8.71c-8.34-2-16.16.32-17.46,5.17A6,6,0,0,0,12.25,18c0-.11,0-.23,0-.34.81-4.73,8.05-7.55,16.16-6.32s13.77,5.88,13.24,10.51a6.36,6.36,0,0,0,.33-.7C43.28,16.25,37.58,10.7,29.24,8.71Z"/></g></svg>
+<svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="Brainstorm"><path d="M28.55,25.76c-11.46-1.2-20.19-7-19.5-12.87s10.55-9.72,22-8.53a39,39,0,0,1,5.18.93,40.5,40.5,0,0,0-9.56-2.17C14.38,1.84,3.82,5.93,3.07,12.27S11.69,24.78,24,26.06a40.05,40.05,0,0,0,9.83-.14A39.25,39.25,0,0,1,28.55,25.76Z"/><path d="M25.65,6.28c11.44,1.38,20.06,7.28,19.26,13.17S34.19,29,22.75,27.63a38.62,38.62,0,0,1-5.16-1,40,40,0,0,0,9.52,2.33C39.38,30.42,50,26.5,50.88,20.18S42.49,7.53,30.22,6.05a40.49,40.49,0,0,0-9.84,0A39.6,39.6,0,0,1,25.65,6.28Z"/><path d="M28.32,38.84c-10-1-17.57-6.05-17-11.19A5.46,5.46,0,0,1,12.59,25c-.65-.25-1.39-.55-2.22-.92S9,23.41,8.46,23.13a6.42,6.42,0,0,0-2.31,4c-.64,5.51,7.5,10.89,18.2,12A35.62,35.62,0,0,0,32.9,39,35.58,35.58,0,0,1,28.32,38.84Z"/><path d="M42.91,29.36c-.8.31-1.7.63-2.47.84a23.13,23.13,0,0,1-2.53.51,4.88,4.88,0,0,1,.67,1.4c1.35,5-5.45,11-15.18,13.27a33.74,33.74,0,0,1-4.52.74,35.45,35.45,0,0,0,8.5-1C37.81,42.65,45.1,36.27,43.66,30.9A5.5,5.5,0,0,0,42.91,29.36Z"/><path d="M14.59,43a5.56,5.56,0,0,1,2.72-4.15,15.4,15.4,0,0,1-1.51-.49l-1-.39c-2.1,1.24-3.47,2.93-3.57,4.87C11,47,16.46,50.58,23.45,50.91A19.82,19.82,0,0,0,29,50.4a19.44,19.44,0,0,1-3,.12C19.51,50.21,14.39,46.83,14.59,43Z"/><path d="M42.61,29.57c-.5,0-1.75.93-2.21.9s-1.87.42-2.33.34A4.56,4.56,0,0,1,38.28,32c-.12,2.62-4.69,4.65-10.41,4.15a18.66,18.66,0,0,1-2.59-.43,11.23,11.23,0,0,0,5,1.51c6.15.52,12.38-1.67,12.69-4.84A26.14,26.14,0,0,0,42.61,29.57Z"/><path d="M29.24,8.71c-8.34-2-16.16.32-17.46,5.17A6,6,0,0,0,12.25,18c0-.11,0-.23,0-.34.81-4.73,8.05-7.55,16.16-6.32s13.77,5.88,13.24,10.51a6.36,6.36,0,0,0,.33-.7C43.28,16.25,37.58,10.7,29.24,8.71Z"/></g></svg>
diff --git a/public/assets/images/icons/green/chat.svg b/public/assets/images/icons/green/chat.svg
index bd984bd69f3dacddc44161c465c3c60c00eb5cfe..3794db6e6c1c5ab5fbb4f37767def19a6aba6dc6 100644
--- a/public/assets/images/icons/green/chat.svg
+++ b/public/assets/images/icons/green/chat.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/chat2.svg b/public/assets/images/icons/green/chat2.svg
index bd984bd69f3dacddc44161c465c3c60c00eb5cfe..3794db6e6c1c5ab5fbb4f37767def19a6aba6dc6 100644
--- a/public/assets/images/icons/green/chat2.svg
+++ b/public/assets/images/icons/green/chat2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/check-circle.svg b/public/assets/images/icons/green/check-circle.svg
index 249a3b401e3fa6d75a71c3566e3ed14ad481da4b..63077624ce71a7682cee239f1045516144614c8b 100644
--- a/public/assets/images/icons/green/check-circle.svg
+++ b/public/assets/images/icons/green/check-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="check-circle"><path class="cls-1" d="M40.84,21.11,36,16.25,24.18,28,18,21.87l-4.84,4.85,11,11ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="check-circle"><path class="cls-1" d="M40.84,21.11,36,16.25,24.18,28,18,21.87l-4.84,4.85,11,11ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/clipboard.svg b/public/assets/images/icons/green/clipboard.svg
index 4f7f11d38ef565559e678f4a82415bf0228c8ffb..66275365f14d49448a0d5db8a8e0f6dbadd16173 100644
--- a/public/assets/images/icons/green/clipboard.svg
+++ b/public/assets/images/icons/green/clipboard.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="clipboard"><path class="cls-1" d="M30,23.9v24H9v-24H30m3-3H6v30H33v-30Z"/><polygon class="cls-1" points="47.98 5.91 15 5.91 15 8.91 44.99 8.91 44.99 38.9 47.98 38.9 47.98 5.91 47.98 5.91"/><polygon class="cls-1" points="26.99 14.91 26.99 17.9 33.71 17.9 23.87 27.74 25.99 29.86 35.99 19.86 35.99 26.9 38.99 26.9 38.99 14.91 26.99 14.91"/><rect class="cls-1" x="27" y="3.05" width="8.99" height="5.86"/><rect class="cls-1" x="10.5" y="10.41" width="11.99" height="3" transform="translate(28.41 -4.59) rotate(90)"/><rect class="cls-1" x="35.99" y="38.89" width="11.99" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="clipboard"><path class="cls-1" d="M30,23.9v24H9v-24H30m3-3H6v30H33v-30Z"/><polygon class="cls-1" points="47.98 5.91 15 5.91 15 8.91 44.99 8.91 44.99 38.9 47.98 38.9 47.98 5.91 47.98 5.91"/><polygon class="cls-1" points="26.99 14.91 26.99 17.9 33.71 17.9 23.87 27.74 25.99 29.86 35.99 19.86 35.99 26.9 38.99 26.9 38.99 14.91 26.99 14.91"/><rect class="cls-1" x="27" y="3.05" width="8.99" height="5.86"/><rect class="cls-1" x="10.5" y="10.41" width="11.99" height="3" transform="translate(28.41 -4.59) rotate(90)"/><rect class="cls-1" x="35.99" y="38.89" width="11.99" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/cloud.svg b/public/assets/images/icons/green/cloud.svg
index 4fe66954ef0f5b7bd0992204ecf7556bc1f552ce..d2fbbd2c1eff0a43e6ddd13362c8e02609f24052 100644
--- a/public/assets/images/icons/green/cloud.svg
+++ b/public/assets/images/icons/green/cloud.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><path id="cloud" d="M33.61,16.51a8.1,8.1,0,0,1,8.15,7.94l.06,2.31,2.23.54a5.15,5.15,0,0,1,3.94,5v.17a5.17,5.17,0,0,1-5.15,5H12.08a6.08,6.08,0,0,1,0-12.16,6.9,6.9,0,0,1,1.09.1l4.11.74L16.68,22a2.32,2.32,0,0,1,0-.46,3.26,3.26,0,0,1,5.84-2l2.35,3,2.39-3a8.1,8.1,0,0,1,6.39-3.1m0-3a11.14,11.14,0,0,0-8.76,4.25,6.26,6.26,0,0,0-11.21,3.83,6.44,6.44,0,0,0,.06.89,9.66,9.66,0,0,0-1.62-.14,9.09,9.09,0,0,0,0,18.17H42.84A8.18,8.18,0,0,0,51,32.32h0a8.17,8.17,0,0,0-6.24-7.94A11.16,11.16,0,0,0,33.61,13.5Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><path id="cloud" d="M33.61,16.51a8.1,8.1,0,0,1,8.15,7.94l.06,2.31,2.23.54a5.15,5.15,0,0,1,3.94,5v.17a5.17,5.17,0,0,1-5.15,5H12.08a6.08,6.08,0,0,1,0-12.16,6.9,6.9,0,0,1,1.09.1l4.11.74L16.68,22a2.32,2.32,0,0,1,0-.46,3.26,3.26,0,0,1,5.84-2l2.35,3,2.39-3a8.1,8.1,0,0,1,6.39-3.1m0-3a11.14,11.14,0,0,0-8.76,4.25,6.26,6.26,0,0,0-11.21,3.83,6.44,6.44,0,0,0,.06.89,9.66,9.66,0,0,0-1.62-.14,9.09,9.09,0,0,0,0,18.17H42.84A8.18,8.18,0,0,0,51,32.32h0a8.17,8.17,0,0,0-6.24-7.94A11.16,11.16,0,0,0,33.61,13.5Z"/></svg>
diff --git a/public/assets/images/icons/green/comment.svg b/public/assets/images/icons/green/comment.svg
index 7c40c20473cbba7f60f4453f5ab97e7016711f13..bfdea72891e6ff6d0a7bf3dc9177793b50006de7 100644
--- a/public/assets/images/icons/green/comment.svg
+++ b/public/assets/images/icons/green/comment.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="comment"><path class="cls-1" d="M37.91,6.8A6.3,6.3,0,0,0,29.47,9l-1,1.72L26.9,13.27,13,36.47,13.13,48,23.7,42.42,37.6,19.23l1.54-2.58,1-1.72A5.83,5.83,0,0,0,37.91,6.8ZM21.46,40.21l-1.95,1-3.39-1.89,0-2.1L29.57,14.76l5.35,3Zm9.66-28,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06l-1,1.72Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="comment"><path class="cls-1" d="M37.91,6.8A6.3,6.3,0,0,0,29.47,9l-1,1.72L26.9,13.27,13,36.47,13.13,48,23.7,42.42,37.6,19.23l1.54-2.58,1-1.72A5.83,5.83,0,0,0,37.91,6.8ZM21.46,40.21l-1.95,1-3.39-1.89,0-2.1L29.57,14.76l5.35,3Zm9.66-28,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06l-1,1.72Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/comment2.svg b/public/assets/images/icons/green/comment2.svg
index 20133139859a56cfeecae75d8219ae67b7578021..c71ee1667b3ff78290d6cad2b578321a4fd5e2fc 100644
--- a/public/assets/images/icons/green/comment2.svg
+++ b/public/assets/images/icons/green/comment2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="comment"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="comment"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/community.svg b/public/assets/images/icons/green/community.svg
index 5d08ffbf6f17e8863c06734e35cf11e9e5e85ac6..40f8379b45c537c7c0f9fa8dacb17ad4ae2b661d 100644
--- a/public/assets/images/icons/green/community.svg
+++ b/public/assets/images/icons/green/community.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M37,25a9,9,0,1,0-9-9A9,9,0,0,0,37,25Z"/><path class="a" d="M17,25a9,9,0,1,0-9-9A9,9,0,0,0,17,25Z"/><path class="a" d="M44.79,29H29.2a6.21,6.21,0,0,0-6.2,6.2V48H51V35.17A6.21,6.21,0,0,0,44.79,29Z"/><path class="a" d="M3,35.17V48H20V35.17A9.11,9.11,0,0,1,22.43,29H9.2A6.21,6.21,0,0,0,3,35.17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M37,25a9,9,0,1,0-9-9A9,9,0,0,0,37,25Z"/><path class="a" d="M17,25a9,9,0,1,0-9-9A9,9,0,0,0,17,25Z"/><path class="a" d="M44.79,29H29.2a6.21,6.21,0,0,0-6.2,6.2V48H51V35.17A6.21,6.21,0,0,0,44.79,29Z"/><path class="a" d="M3,35.17V48H20V35.17A9.11,9.11,0,0,1,22.43,29H9.2A6.21,6.21,0,0,0,3,35.17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/community2.svg b/public/assets/images/icons/green/community2.svg
index 6d1f4db64135d2d0a6da0d2297c0f6f2ac193963..67897e742e8db84cd82b38068bba4fcc21feb0f3 100644
--- a/public/assets/images/icons/green/community2.svg
+++ b/public/assets/images/icons/green/community2.svg
@@ -1 +1 @@
-<svg id="Icons" data-name="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="community2"><path d="M23,15a12.86,12.86,0,0,1,2.09-7,10,10,0,1,0,0,14.08A12.86,12.86,0,0,1,23,15Zm-5,4a4,4,0,1,1,4-4A4,4,0,0,1,18,19Z"/><path d="M36,25A10,10,0,1,1,46,15,10,10,0,0,1,36,25Zm0-14a4,4,0,1,0,4,4A4,4,0,0,0,36,11Z"/><path d="M9,43V36a2,2,0,0,1,2-2h5c0-2,2-6,5-6H11a8,8,0,0,0-8,8V49H16V43Z"/><path d="M51,49H19V36a8,8,0,0,1,8-8H43a8,8,0,0,1,8,8ZM25,43H45V36a2,2,0,0,0-2-2H27a2,2,0,0,0-2,2Z"/></g></svg>
+<svg width="16" height="16" id="Icons" data-name="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="community2"><path d="M23,15a12.86,12.86,0,0,1,2.09-7,10,10,0,1,0,0,14.08A12.86,12.86,0,0,1,23,15Zm-5,4a4,4,0,1,1,4-4A4,4,0,0,1,18,19Z"/><path d="M36,25A10,10,0,1,1,46,15,10,10,0,0,1,36,25Zm0-14a4,4,0,1,0,4,4A4,4,0,0,0,36,11Z"/><path d="M9,43V36a2,2,0,0,1,2-2h5c0-2,2-6,5-6H11a8,8,0,0,0-8,8V49H16V43Z"/><path d="M51,49H19V36a8,8,0,0,1,8-8H43a8,8,0,0,1,8,8ZM25,43H45V36a2,2,0,0,0-2-2H27a2,2,0,0,0-2,2Z"/></g></svg>
diff --git a/public/assets/images/icons/green/content.svg b/public/assets/images/icons/green/content.svg
index 0c71d5ba9d3d612ee6f235e564ede6381495c5b1..29d901bbae493169c4e4d767b98216db3eb4916d 100644
--- a/public/assets/images/icons/green/content.svg
+++ b/public/assets/images/icons/green/content.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M44.94,9a6.44,6.44,0,0,1-.87,3.82L43.37,14H46V42H8V14H28L30.67,9.5,31,9H3V47H51V9Z"/><polygon class="a" points="26.26 16.97 10.96 16.97 10.96 38.97 20.08 38.97 20.06 36.99 19.96 28.21 19.96 27.65 20.24 27.17 26.26 16.97"/><polygon class="a" points="31.71 33.74 31.43 34.22 30.93 34.48 23.01 38.73 22.56 38.97 42.96 38.97 42.96 16.97 41.6 16.97 31.71 33.74"/><path class="a" d="M22.06,37,30,32.72,40.41,15.05l1.16-2,.77-1.31a4.48,4.48,0,0,0-1.69-6.19,4.69,4.69,0,0,0-6.33,1.66l-.77,1.31-1.16,2L22,28.19ZM36.32,8.37a2.36,2.36,0,0,1,3.17-.83,2.25,2.25,0,0,1,.85,3.1L39.56,12l-4-2.27Zm-1.93,3.28,4,2.26L28.31,31l-1.46.78L24.3,30.38v-1.6Z"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M44.94,9a6.44,6.44,0,0,1-.87,3.82L43.37,14H46V42H8V14H28L30.67,9.5,31,9H3V47H51V9Z"/><polygon class="a" points="26.26 16.97 10.96 16.97 10.96 38.97 20.08 38.97 20.06 36.99 19.96 28.21 19.96 27.65 20.24 27.17 26.26 16.97"/><polygon class="a" points="31.71 33.74 31.43 34.22 30.93 34.48 23.01 38.73 22.56 38.97 42.96 38.97 42.96 16.97 41.6 16.97 31.71 33.74"/><path class="a" d="M22.06,37,30,32.72,40.41,15.05l1.16-2,.77-1.31a4.48,4.48,0,0,0-1.69-6.19,4.69,4.69,0,0,0-6.33,1.66l-.77,1.31-1.16,2L22,28.19ZM36.32,8.37a2.36,2.36,0,0,1,3.17-.83,2.25,2.25,0,0,1,.85,3.1L39.56,12l-4-2.27Zm-1.93,3.28,4,2.26L28.31,31l-1.46.78L24.3,30.38v-1.6Z"/></svg>
diff --git a/public/assets/images/icons/green/courseware.svg b/public/assets/images/icons/green/courseware.svg
index 6fec8a6b9c2618f5774387937809b48d19b3c032..764dcce2451b087c91adfff6c23f16b2646e3210 100644
--- a/public/assets/images/icons/green/courseware.svg
+++ b/public/assets/images/icons/green/courseware.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="courseware"><polygon class="cls-1" points="30.85 9.37 27 6 23.14 9.37 27 11.16 30.85 9.37"/><polygon class="cls-1" points="37.56 15.24 33.71 11.87 27 15.22 20.28 11.87 16.43 15.24 27.05 21.56 37.56 15.24"/><polygon class="cls-1" points="44.27 21.12 40.42 17.75 27.05 26.97 13.57 17.75 9.72 21.12 27.05 34.5 44.27 21.12"/><polygon class="cls-1" points="47.13 23.62 27.05 40.33 6.86 23.62 3.01 26.99 27 47.98 50.98 26.99 47.13 23.62"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="courseware"><polygon class="cls-1" points="30.85 9.37 27 6 23.14 9.37 27 11.16 30.85 9.37"/><polygon class="cls-1" points="37.56 15.24 33.71 11.87 27 15.22 20.28 11.87 16.43 15.24 27.05 21.56 37.56 15.24"/><polygon class="cls-1" points="44.27 21.12 40.42 17.75 27.05 26.97 13.57 17.75 9.72 21.12 27.05 34.5 44.27 21.12"/><polygon class="cls-1" points="47.13 23.62 27.05 40.33 6.86 23.62 3.01 26.99 27 47.98 50.98 26.99 47.13 23.62"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/crop.svg b/public/assets/images/icons/green/crop.svg
index 0d2f546143191af5ccd25a6872f2765699b004fb..21f2a010e3c0d9ad5dfcaac15521163446e6a554 100644
--- a/public/assets/images/icons/green/crop.svg
+++ b/public/assets/images/icons/green/crop.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="crop"><path d="M3,3V51H51V3ZM48,33h-4.5v2.9H48V48H35.94v-4.5H33V48H6v-12H10.5V33H6V6H33v4.5h2.9V6H48Z"/><rect x="16" y="33.04" width="8.25" height="2.9"/><polygon points="35.94 29.74 33.04 29.74 33.04 33.04 29.75 33.04 29.75 35.94 33.04 35.94 33.04 37.99 35.94 37.99 35.94 35.94 37.99 35.94 37.99 33.04 35.94 33.04 35.94 29.74"/><rect x="33.04" y="16" width="2.9" height="8.25"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="crop"><path d="M3,3V51H51V3ZM48,33h-4.5v2.9H48V48H35.94v-4.5H33V48H6v-12H10.5V33H6V6H33v4.5h2.9V6H48Z"/><rect x="16" y="33.04" width="8.25" height="2.9"/><polygon points="35.94 29.74 33.04 29.74 33.04 33.04 29.75 33.04 29.75 35.94 33.04 35.94 33.04 37.99 35.94 37.99 35.94 35.94 37.99 35.94 37.99 33.04 35.94 33.04 35.94 29.74"/><rect x="33.04" y="16" width="2.9" height="8.25"/></g></svg>
diff --git a/public/assets/images/icons/green/crown.svg b/public/assets/images/icons/green/crown.svg
index 444edc47f05be0ce85a55fb1a77fefe1e2e39739..7e7ef45b06835dac81fd0b208410542ae9b90074 100644
--- a/public/assets/images/icons/green/crown.svg
+++ b/public/assets/images/icons/green/crown.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="crown"><path class="cls-1" d="M48,17a3,3,0,0,0-3,3,3,3,0,0,0,.31,1.31L37,26.53,29.88,14.76a4,4,0,1,0-5.76,0L17,26.53,8.21,21A2.94,2.94,0,0,0,9,19a3,3,0,1,0-3.23,3L12,46H42l6-23h0a3,3,0,0,0,0-6ZM14.32,43l-.78-3H40.46l-.78,3Zm26.92-6H12.76l-3-11.42,5.61,3.52L18,30.69l1.58-2.61L26.88,16h.24l7.31,12.09L36,30.69l2.59-1.62,5.6-3.52Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="crown"><path class="cls-1" d="M48,17a3,3,0,0,0-3,3,3,3,0,0,0,.31,1.31L37,26.53,29.88,14.76a4,4,0,1,0-5.76,0L17,26.53,8.21,21A2.94,2.94,0,0,0,9,19a3,3,0,1,0-3.23,3L12,46H42l6-23h0a3,3,0,0,0,0-6ZM14.32,43l-.78-3H40.46l-.78,3Zm26.92-6H12.76l-3-11.42,5.61,3.52L18,30.69l1.58-2.61L26.88,16h.24l7.31,12.09L36,30.69l2.59-1.62,5.6-3.52Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/date-block.svg b/public/assets/images/icons/green/date-block.svg
index a1db2d22393f50b057583b15a443316c92fe5b7f..7e0c925e7f8310b86ad941b9aefe5a1575c56852 100644
--- a/public/assets/images/icons/green/date-block.svg
+++ b/public/assets/images/icons/green/date-block.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="date-block"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM6.77,27A14.86,14.86,0,1,1,21.63,41.84,14.88,14.88,0,0,1,6.77,27Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="date-block"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM6.77,27A14.86,14.86,0,1,1,21.63,41.84,14.88,14.88,0,0,1,6.77,27Z"/></g></svg>
diff --git a/public/assets/images/icons/green/date-cycle.svg b/public/assets/images/icons/green/date-cycle.svg
index 048ddbdbf7039ce2f6e5c6d8e8a221d9934347ed..c6b27c9ebbdd4d65501a01a9c9d27e966423877a 100644
--- a/public/assets/images/icons/green/date-cycle.svg
+++ b/public/assets/images/icons/green/date-cycle.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="date-cycle"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM21.63,41.84A14.85,14.85,0,1,1,36.48,27,14.88,14.88,0,0,1,21.63,41.84Zm11.23,0a18.58,18.58,0,0,0,0-29.66,14.84,14.84,0,0,1,0,29.66Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="date-cycle"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM21.63,41.84A14.85,14.85,0,1,1,36.48,27,14.88,14.88,0,0,1,21.63,41.84Zm11.23,0a18.58,18.58,0,0,0,0-29.66,14.84,14.84,0,0,1,0,29.66Z"/></g></svg>
diff --git a/public/assets/images/icons/green/date-single.svg b/public/assets/images/icons/green/date-single.svg
index 8044c083437a2fa238513ce492a775b044da474e..b20f6c987769d445a4b79453eeb2c7f28a17bc57 100644
--- a/public/assets/images/icons/green/date-single.svg
+++ b/public/assets/images/icons/green/date-single.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="date-single"><path d="M27,8.37A18.62,18.62,0,1,0,45.62,27,18.63,18.63,0,0,0,27,8.37Zm0,33.47A14.85,14.85,0,1,1,41.85,27,14.86,14.86,0,0,1,27,41.84Z"/><polygon points="24.25 14.45 24.25 26 17.1 30.16 19.93 35.12 29.91 29.33 29.97 29.33 29.96 14.45 24.25 14.45"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="date-single"><path d="M27,8.37A18.62,18.62,0,1,0,45.62,27,18.63,18.63,0,0,0,27,8.37Zm0,33.47A14.85,14.85,0,1,1,41.85,27,14.86,14.86,0,0,1,27,41.84Z"/><polygon points="24.25 14.45 24.25 26 17.1 30.16 19.93 35.12 29.91 29.33 29.97 29.33 29.96 14.45 24.25 14.45"/></g></svg>
diff --git a/public/assets/images/icons/green/decline-circle.svg b/public/assets/images/icons/green/decline-circle.svg
index cf16ae18a4bbf852636dcc81b9d63ced2dc87180..efca664086d989a7e2a611928fef680bd54cb579 100644
--- a/public/assets/images/icons/green/decline-circle.svg
+++ b/public/assets/images/icons/green/decline-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="decline-circle"><path class="cls-1" d="M38.68,34l-7-7,7-7-4.94-5-7,7-7-7L14.75,20l7,7-7,7L19.7,39l7-7,7,7ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="decline-circle"><path class="cls-1" d="M38.68,34l-7-7,7-7-4.94-5-7,7-7-7L14.75,20l7,7-7,7L19.7,39l7-7,7,7ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/decline.svg b/public/assets/images/icons/green/decline.svg
index cbbe3afa35b9115181a935c3fef18af7f70cca59..cdf3f429fba3b3555fc17643139df523bb4d5a86 100644
--- a/public/assets/images/icons/green/decline.svg
+++ b/public/assets/images/icons/green/decline.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="decline"><polygon id="decline-2" data-name="decline" class="cls-1" points="47.32 38.91 35.4 26.99 47.32 15.07 38.93 6.67 27 18.59 15.07 6.67 6.68 15.06 18.61 26.98 6.67 38.91 15.08 47.32 27.01 35.39 38.93 47.31 47.32 38.91"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="decline"><polygon id="decline-2" data-name="decline" class="cls-1" points="47.32 38.91 35.4 26.99 47.32 15.07 38.93 6.67 27 18.59 15.07 6.67 6.68 15.06 18.61 26.98 6.67 38.91 15.08 47.32 27.01 35.39 38.93 47.31 47.32 38.91"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/door-enter.svg b/public/assets/images/icons/green/door-enter.svg
index 8cf1222ad78c010f77c28983974334df8bbce431..3a3c6f5bac4a10fa659664efd5b3d65f30a32b85 100644
--- a/public/assets/images/icons/green/door-enter.svg
+++ b/public/assets/images/icons/green/door-enter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="door-enter"><path class="cls-1" d="M22,3V45h3V6H37L29,8V51l20-6V3Zm10,7.34,14-3.5V42.74l-14,4.2Z"/><polygon class="cls-1" points="5 13 5 20.09 11.91 27 5 33.91 5 41 19 27 5 13"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="door-enter"><path class="cls-1" d="M22,3V45h3V6H37L29,8V51l20-6V3Zm10,7.34,14-3.5V42.74l-14,4.2Z"/><polygon class="cls-1" points="5 13 5 20.09 11.91 27 5 33.91 5 41 19 27 5 13"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/door-leave.svg b/public/assets/images/icons/green/door-leave.svg
index c36ae67ad90d61f38f5469bb7ee88ee461f18376..35f9b9f8370433dbf0bd028bc67f28d6199a7bc1 100644
--- a/public/assets/images/icons/green/door-leave.svg
+++ b/public/assets/images/icons/green/door-leave.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="door-leave"><path class="cls-1" d="M5,45l20,6V8L17,6H29V45h3V3H5Zm3-3V6.81l14,3.5V46.94L8,42.74Z"/><polygon class="cls-1" points="35 13 35 20.09 41.91 27 35 33.91 35 41 49 27 35 13"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="door-leave"><path class="cls-1" d="M5,45l20,6V8L17,6H29V45h3V3H5Zm3-3V6.81l14,3.5V46.94L8,42.74Z"/><polygon class="cls-1" points="35 13 35 20.09 41.91 27 35 33.91 35 41 49 27 35 13"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/download.svg b/public/assets/images/icons/green/download.svg
index ddb04b58e9784230958dd4903ebeacee3dc969f9..cb537477d3ebbd5c00ef60b0b041bdde015be6c0 100644
--- a/public/assets/images/icons/green/download.svg
+++ b/public/assets/images/icons/green/download.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/download2.svg b/public/assets/images/icons/green/download2.svg
index ddb04b58e9784230958dd4903ebeacee3dc969f9..cb537477d3ebbd5c00ef60b0b041bdde015be6c0 100644
--- a/public/assets/images/icons/green/download2.svg
+++ b/public/assets/images/icons/green/download2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/edit.svg b/public/assets/images/icons/green/edit.svg
index 6eec59d47996d4c768470cccd033537f40e403b1..78509c96ee8bccdc553235f9b1e6c504217b356d 100644
--- a/public/assets/images/icons/green/edit.svg
+++ b/public/assets/images/icons/green/edit.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/exclaim-circle-full.svg b/public/assets/images/icons/green/exclaim-circle-full.svg
index 5115f68ea430a4c40d4c07b1207f4f6aa7a8f7a7..d137c7b6375e31ab092da625ec11a78102cd169c 100644
--- a/public/assets/images/icons/green/exclaim-circle-full.svg
+++ b/public/assets/images/icons/green/exclaim-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/exclaim-circle.svg b/public/assets/images/icons/green/exclaim-circle.svg
index 5115f68ea430a4c40d4c07b1207f4f6aa7a8f7a7..d137c7b6375e31ab092da625ec11a78102cd169c 100644
--- a/public/assets/images/icons/green/exclaim-circle.svg
+++ b/public/assets/images/icons/green/exclaim-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/export.svg b/public/assets/images/icons/green/export.svg
index da4c2a5f31ff1f2d890c138ee5ece3a7fbed2a08..707323e29a200e06bf8eb049e0422f50866d090e 100644
--- a/public/assets/images/icons/green/export.svg
+++ b/public/assets/images/icons/green/export.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-archive.svg b/public/assets/images/icons/green/file-archive.svg
index 5d9f740d5cb9505bfb4c192b597c5a321887cb79..91605d55294d55933c3a0699aa1c45a50db325c9 100644
--- a/public/assets/images/icons/green/file-archive.svg
+++ b/public/assets/images/icons/green/file-archive.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><rect class="a" x="27" y="14.97" width="3" height="3"/><rect class="a" x="27" y="20.97" width="3" height="3"/><rect class="a" x="24" y="23.97" width="3" height="3"/><rect class="a" x="27" y="26.97" width="3" height="3"/><rect class="a" x="27" y="32.97" width="3" height="3"/><rect class="a" x="24" y="29.97" width="3" height="3"/><rect class="a" x="24" y="35.97" width="3" height="3"/><rect class="a" x="27" y="38.97" width="3" height="3"/><rect class="a" x="24" y="41.97" width="3" height="3"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm16.45,8.13A1.44,1.44,0,0,1,24,9.65,1.42,1.42,0,0,1,25.24,9h.2a1.42,1.42,0,0,1,.51.18A1.45,1.45,0,0,1,26.45,11.13ZM35,46.71V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-2,2.81V45H27v2.94H13.09V6.1H23.93v2a2.65,2.65,0,0,0-.69.56h0l-3.5,4h0a3.81,3.81,0,0,0-.37.5,3.56,3.56,0,0,0,1.23,4.88,3.49,3.49,0,0,0,3.4.07V21h3V18H24.4a3.55,3.55,0,0,0,1.08-1.1,3.67,3.67,0,0,0,.27-.57h0L26.26,15H27V13c.12-.3.24-.63.4-1H30V6.1H40.91Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><rect class="a" x="27" y="14.97" width="3" height="3"/><rect class="a" x="27" y="20.97" width="3" height="3"/><rect class="a" x="24" y="23.97" width="3" height="3"/><rect class="a" x="27" y="26.97" width="3" height="3"/><rect class="a" x="27" y="32.97" width="3" height="3"/><rect class="a" x="24" y="29.97" width="3" height="3"/><rect class="a" x="24" y="35.97" width="3" height="3"/><rect class="a" x="27" y="38.97" width="3" height="3"/><rect class="a" x="24" y="41.97" width="3" height="3"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm16.45,8.13A1.44,1.44,0,0,1,24,9.65,1.42,1.42,0,0,1,25.24,9h.2a1.42,1.42,0,0,1,.51.18A1.45,1.45,0,0,1,26.45,11.13ZM35,46.71V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-2,2.81V45H27v2.94H13.09V6.1H23.93v2a2.65,2.65,0,0,0-.69.56h0l-3.5,4h0a3.81,3.81,0,0,0-.37.5,3.56,3.56,0,0,0,1.23,4.88,3.49,3.49,0,0,0,3.4.07V21h3V18H24.4a3.55,3.55,0,0,0,1.08-1.1,3.67,3.67,0,0,0,.27-.57h0L26.26,15H27V13c.12-.3.24-.63.4-1H30V6.1H40.91Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-audio.svg b/public/assets/images/icons/green/file-audio.svg
index b4bd44cee8307202545ca958599640487e2b2d6c..472549ca7dcb69be33ed85e6c21f8c602d2806de 100644
--- a/public/assets/images/icons/green/file-audio.svg
+++ b/public/assets/images/icons/green/file-audio.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="19.14 17.91 16 17.91 16 24.19 19.14 24.19 23.86 27.34 25.43 27.34 25.43 14.76 23.86 14.76 19.14 17.91"/><path class="a" d="M29.73,13.68l-2.06,2.06a7.4,7.4,0,0,1,0,10.46l2.06,2.06A10.3,10.3,0,0,0,29.73,13.68Z"/><path class="a" d="M33.44,10,31.38,12a12.63,12.63,0,0,1,0,17.88L33.44,32A15.55,15.55,0,0,0,33.44,10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="19.14 17.91 16 17.91 16 24.19 19.14 24.19 23.86 27.34 25.43 27.34 25.43 14.76 23.86 14.76 19.14 17.91"/><path class="a" d="M29.73,13.68l-2.06,2.06a7.4,7.4,0,0,1,0,10.46l2.06,2.06A10.3,10.3,0,0,0,29.73,13.68Z"/><path class="a" d="M33.44,10,31.38,12a12.63,12.63,0,0,1,0,17.88L33.44,32A15.55,15.55,0,0,0,33.44,10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-audio2.svg b/public/assets/images/icons/green/file-audio2.svg
index c30e27dcba6fe8f3f492fb752bd65796ed581064..038e8d21e008c3a28be0fa852e01510661652487 100644
--- a/public/assets/images/icons/green/file-audio2.svg
+++ b/public/assets/images/icons/green/file-audio2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M21.75,34.72A5.25,5.25,0,0,0,27,29.47V17.22s.77-1.74,3.33.64c3.29,3.06,7.17.56,7.17.56s-4.77-1.15-5.75-4.26A5.25,5.25,0,0,0,27,10.22H23.5V24.54a5.32,5.32,0,0,0-1.75-.32,5.25,5.25,0,0,0,0,10.5Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M21.75,34.72A5.25,5.25,0,0,0,27,29.47V17.22s.77-1.74,3.33.64c3.29,3.06,7.17.56,7.17.56s-4.77-1.15-5.75-4.26A5.25,5.25,0,0,0,27,10.22H23.5V24.54a5.32,5.32,0,0,0-1.75-.32,5.25,5.25,0,0,0,0,10.5Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-big.svg b/public/assets/images/icons/green/file-big.svg
index 61229868f973ca57172fc235e97765d3818ae1a7..e1f6551cf0b9aceabd6f957c1101667f1633f457 100644
--- a/public/assets/images/icons/green/file-big.svg
+++ b/public/assets/images/icons/green/file-big.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-excel.svg b/public/assets/images/icons/green/file-excel.svg
index 3daae8e3f851b04183c9bf8bcd84c61f8fbde9fa..ef8082df4d7a5a9012125cf4aeba185b1317f9ca 100644
--- a/public/assets/images/icons/green/file-excel.svg
+++ b/public/assets/images/icons/green/file-excel.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M31.41,32,27,24.31,22.6,32H17.5l7.08-11.28L18,10H23l4,7.11L31,10h5L29.39,20.69,36.5,32Z"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm3.09,3.1H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.71V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M31.41,32,27,24.31,22.6,32H17.5l7.08-11.28L18,10H23l4,7.11L31,10h5L29.39,20.69,36.5,32Z"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm3.09,3.1H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.71V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-generic.svg b/public/assets/images/icons/green/file-generic.svg
index 61229868f973ca57172fc235e97765d3818ae1a7..e1f6551cf0b9aceabd6f957c1101667f1633f457 100644
--- a/public/assets/images/icons/green/file-generic.svg
+++ b/public/assets/images/icons/green/file-generic.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-office.svg b/public/assets/images/icons/green/file-office.svg
index 0c4a6e169c7a18b48c4cbe1bde804ce47ae892c2..62ecf1d7d5456db475595f927bff4ee3535bf841 100644
--- a/public/assets/images/icons/green/file-office.svg
+++ b/public/assets/images/icons/green/file-office.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM35,46.68V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09V6.06H40.91Z"/><path class="a" d="M24.56,23H16v3h6.77l-.85,1.41L22,34l6-3.19L36,17.53l.88-1.48.59-1a3.34,3.34,0,0,0-1.29-4.64,3.61,3.61,0,0,0-4.25.54H16v3H30l-.1.16L28.16,17H16v3H26.36ZM35.27,11.9a1.66,1.66,0,0,1,.65,2.32l-.59,1-3.06-1.7.59-1A1.8,1.8,0,0,1,35.27,11.9ZM31.39,15l3.06,1.7-7.7,12.84-1.11.59L23.7,29v-1.2Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM35,46.68V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09V6.06H40.91Z"/><path class="a" d="M24.56,23H16v3h6.77l-.85,1.41L22,34l6-3.19L36,17.53l.88-1.48.59-1a3.34,3.34,0,0,0-1.29-4.64,3.61,3.61,0,0,0-4.25.54H16v3H30l-.1.16L28.16,17H16v3H26.36ZM35.27,11.9a1.66,1.66,0,0,1,.65,2.32l-.59,1-3.06-1.7.59-1A1.8,1.8,0,0,1,35.27,11.9ZM31.39,15l3.06,1.7-7.7,12.84-1.11.59L23.7,29v-1.2Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-pdf.svg b/public/assets/images/icons/green/file-pdf.svg
index 50b18e7be30dbff64315cd89db88033f59dde7b2..a9bd17a3425509f1f608cc86694d278fc5d0d62b 100644
--- a/public/assets/images/icons/green/file-pdf.svg
+++ b/public/assets/images/icons/green/file-pdf.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a,.b{fill:#00962d;}.b{fill-rule:evenodd;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="b" d="M32.7,24.13c2.19,1.74,4,1,3.71.69C35.63,23.8,34.08,23.8,32.7,24.13Zm2.85-1a8.49,8.49,0,0,0-5,.09A7.88,7.88,0,0,1,26,18c-1.83-5.82,0-7.69.12-4.06l.37,2.47s1.27-3.08.45-5.33c-.71-2-2.77-1.66-2.89,2a20.45,20.45,0,0,0,.64,5.46,53.31,53.31,0,0,1-4.72,10c-2.74,4.27-2.91,2.83-2.24,1.41.79-1.7,2.12-2.58,2.57-3.29,0,0-2.08.16-3.69,2.93-1,1.76-1.14,6.11,3.21,1.39a21,21,0,0,0,2.65-4.08A45.49,45.49,0,0,1,31,24.56a11.5,11.5,0,0,0,3.74,1.68C37.4,26.85,40.1,24.69,35.55,23.15ZM23.18,25l2.2-5c1.46,3.1,3.52,3.73,3.52,3.73C28,23.78,23.18,25,23.18,25Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a,.b{fill:#00962d;}.b{fill-rule:evenodd;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="b" d="M32.7,24.13c2.19,1.74,4,1,3.71.69C35.63,23.8,34.08,23.8,32.7,24.13Zm2.85-1a8.49,8.49,0,0,0-5,.09A7.88,7.88,0,0,1,26,18c-1.83-5.82,0-7.69.12-4.06l.37,2.47s1.27-3.08.45-5.33c-.71-2-2.77-1.66-2.89,2a20.45,20.45,0,0,0,.64,5.46,53.31,53.31,0,0,1-4.72,10c-2.74,4.27-2.91,2.83-2.24,1.41.79-1.7,2.12-2.58,2.57-3.29,0,0-2.08.16-3.69,2.93-1,1.76-1.14,6.11,3.21,1.39a21,21,0,0,0,2.65-4.08A45.49,45.49,0,0,1,31,24.56a11.5,11.5,0,0,0,3.74,1.68C37.4,26.85,40.1,24.69,35.55,23.15ZM23.18,25l2.2-5c1.46,3.1,3.52,3.73,3.52,3.73C28,23.78,23.18,25,23.18,25Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-pic.svg b/public/assets/images/icons/green/file-pic.svg
index 2387e5e002e386464c4b2859055d96a427f7b57c..cffd5efdb0003da29afe9b8e4166de2a9e1004da 100644
--- a/public/assets/images/icons/green/file-pic.svg
+++ b/public/assets/images/icons/green/file-pic.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M31,16V14a2,2,0,0,0-2-2H25a2,2,0,0,0-2,2v2H18a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H36a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Zm-4,11.8a5,5,0,1,1,5-5A5,5,0,0,1,27,27.77ZM36,22H33V19h3Z"/><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="18" y="13.97" width="4" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M31,16V14a2,2,0,0,0-2-2H25a2,2,0,0,0-2,2v2H18a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H36a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Zm-4,11.8a5,5,0,1,1,5-5A5,5,0,0,1,27,27.77ZM36,22H33V19h3Z"/><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="18" y="13.97" width="4" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-pic2.svg b/public/assets/images/icons/green/file-pic2.svg
index 3ee887f7534d71f1013104d13d6bf1a036cd1575..5ff831013603e741da40c656dba554038bde9295 100644
--- a/public/assets/images/icons/green/file-pic2.svg
+++ b/public/assets/images/icons/green/file-pic2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M38.91,24.39,34.5,21.5l-5.81,4.92L19.47,17l-4.38,5.3L12,26V32H42V26.42Z"/><circle class="a" cx="30" cy="13.97" r="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M38.91,24.39,34.5,21.5l-5.81,4.92L19.47,17l-4.38,5.3L12,26V32H42V26.42Z"/><circle class="a" cx="30" cy="13.97" r="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-ppt.svg b/public/assets/images/icons/green/file-ppt.svg
index ed82d67c9d7fc6edd4b226ab40deb680a606b8be..9958cfc4ea371a9785efc5392b6a9afff00459d2 100644
--- a/public/assets/images/icons/green/file-ppt.svg
+++ b/public/assets/images/icons/green/file-ppt.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M27.64,23.69H23.35V32H19V10h8.64c4.6,0,7.36,3.12,7.36,6.86S32.24,23.69,27.64,23.69Zm-.22-9.89H23.35v6h4.07a2.93,2.93,0,0,0,3.23-3A3,3,0,0,0,27.42,13.8Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M27.64,23.69H23.35V32H19V10h8.64c4.6,0,7.36,3.12,7.36,6.86S32.24,23.69,27.64,23.69Zm-.22-9.89H23.35v6h4.07a2.93,2.93,0,0,0,3.23-3A3,3,0,0,0,27.42,13.8Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-presentation.svg b/public/assets/images/icons/green/file-presentation.svg
index 5b7ed99335465fb00e931f455e7fb5d38416f063..70bd33d21277d966e372df87c362542aa5de7651 100644
--- a/public/assets/images/icons/green/file-presentation.svg
+++ b/public/assets/images/icons/green/file-presentation.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM40.91,6.06V26H29.82a3.07,3.07,0,0,0-2.92-2H19.1a3.07,3.07,0,0,0-2.92,2H13.09V6.06ZM35,46.68V42h4.64ZM37.91,39H32v5.91a3,3,0,0,1-3,3H13.09V29H16v4H30V29H40.91v7A3,3,0,0,1,37.91,39Z"/><path class="a" d="M23,22a4.5,4.5,0,1,0-4.5-4.5A4.49,4.49,0,0,0,23,22Z"/><rect class="a" x="31" y="8.97" width="7" height="7"/><rect class="a" x="31" y="17.97" width="7" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM40.91,6.06V26H29.82a3.07,3.07,0,0,0-2.92-2H19.1a3.07,3.07,0,0,0-2.92,2H13.09V6.06ZM35,46.68V42h4.64ZM37.91,39H32v5.91a3,3,0,0,1-3,3H13.09V29H16v4H30V29H40.91v7A3,3,0,0,1,37.91,39Z"/><path class="a" d="M23,22a4.5,4.5,0,1,0-4.5-4.5A4.49,4.49,0,0,0,23,22Z"/><rect class="a" x="31" y="8.97" width="7" height="7"/><rect class="a" x="31" y="17.97" width="7" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-small.svg b/public/assets/images/icons/green/file-small.svg
index 61229868f973ca57172fc235e97765d3818ae1a7..e1f6551cf0b9aceabd6f957c1101667f1633f457 100644
--- a/public/assets/images/icons/green/file-small.svg
+++ b/public/assets/images/icons/green/file-small.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-sound.svg b/public/assets/images/icons/green/file-sound.svg
index c66fbc5d60cdb38fccdd3137ea7d23d93a9348ea..5e3a9f856b773059f01be7c023d6dab241263046 100644
--- a/public/assets/images/icons/green/file-sound.svg
+++ b/public/assets/images/icons/green/file-sound.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.57 17.46 18 17.46 18 22.61 20.57 22.61 24.43 25.18 25.71 25.18 25.71 14.89 24.43 14.89 20.57 17.46"/><path class="a" d="M29.24,14l-1.69,1.68a6.06,6.06,0,0,1,0,8.56l1.69,1.68A8.43,8.43,0,0,0,29.24,14Z"/><path class="a" d="M32.27,11l-1.69,1.69a10.31,10.31,0,0,1,0,14.62L32.27,29A12.73,12.73,0,0,0,32.27,11Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.57 17.46 18 17.46 18 22.61 20.57 22.61 24.43 25.18 25.71 25.18 25.71 14.89 24.43 14.89 20.57 17.46"/><path class="a" d="M29.24,14l-1.69,1.68a6.06,6.06,0,0,1,0,8.56l1.69,1.68A8.43,8.43,0,0,0,29.24,14Z"/><path class="a" d="M32.27,11l-1.69,1.69a10.31,10.31,0,0,1,0,14.62L32.27,29A12.73,12.73,0,0,0,32.27,11Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-spreadsheet.svg b/public/assets/images/icons/green/file-spreadsheet.svg
index d1ba6e05df98d34493ba4ae2e4c6109c3035c1bc..7f9196839d11ba5520ec1b0fc11b02a807526343 100644
--- a/public/assets/images/icons/green/file-spreadsheet.svg
+++ b/public/assets/images/icons/green/file-spreadsheet.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="13.97" width="5" height="11"/><rect class="a" x="24.5" y="10.97" width="5" height="14"/><rect class="a" x="33" y="16.97" width="5" height="8"/><rect class="a" x="16" y="26.97" width="22" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="13.97" width="5" height="11"/><rect class="a" x="24.5" y="10.97" width="5" height="14"/><rect class="a" x="33" y="16.97" width="5" height="8"/><rect class="a" x="16" y="26.97" width="22" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-text.svg b/public/assets/images/icons/green/file-text.svg
index 950b3e50a414707d35531dad9b9cf4d4d7a5c618..18a4df17a4dc09be1ea983b9497359998543a26d 100644
--- a/public/assets/images/icons/green/file-text.svg
+++ b/public/assets/images/icons/green/file-text.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="10.97" width="9" height="9"/><rect class="a" x="28" y="10.97" width="10" height="3"/><rect class="a" x="28" y="16.97" width="10" height="3"/><rect class="a" x="16" y="22.97" width="22" height="3"/><rect class="a" x="16" y="28.97" width="22" height="3"/><rect class="a" x="16" y="34.97" width="13" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="10.97" width="9" height="9"/><rect class="a" x="28" y="10.97" width="10" height="3"/><rect class="a" x="28" y="16.97" width="10" height="3"/><rect class="a" x="16" y="22.97" width="22" height="3"/><rect class="a" x="16" y="28.97" width="22" height="3"/><rect class="a" x="16" y="34.97" width="13" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-video.svg b/public/assets/images/icons/green/file-video.svg
index 583e433b0020edaf1037ba855d1598ce71a2a87b..01b995fe1d83952d9100ec4e27658c05b59e9c04 100644
--- a/public/assets/images/icons/green/file-video.svg
+++ b/public/assets/images/icons/green/file-video.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M36.62,15.42,32.5,18.17V15.73A1.69,1.69,0,0,0,30.82,14H17.68A1.69,1.69,0,0,0,16,15.73V26.11a1.68,1.68,0,0,0,1.68,1.68H30.82a1.68,1.68,0,0,0,1.68-1.68V23.67l4.12,2.75H38v-11ZM31,26.11a.14.14,0,0,1-.14.14H17.68a.14.14,0,0,1-.14-.14V15.73a.15.15,0,0,1,.14-.15H30.82a.15.15,0,0,1,.14.15Z"/><polygon class="a" points="21.5 25.04 27.69 20.92 21.5 16.79 21.5 25.04"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M36.62,15.42,32.5,18.17V15.73A1.69,1.69,0,0,0,30.82,14H17.68A1.69,1.69,0,0,0,16,15.73V26.11a1.68,1.68,0,0,0,1.68,1.68H30.82a1.68,1.68,0,0,0,1.68-1.68V23.67l4.12,2.75H38v-11ZM31,26.11a.14.14,0,0,1-.14.14H17.68a.14.14,0,0,1-.14-.14V15.73a.15.15,0,0,1,.14-.15H30.82a.15.15,0,0,1,.14.15Z"/><polygon class="a" points="21.5 25.04 27.69 20.92 21.5 16.79 21.5 25.04"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-video2.svg b/public/assets/images/icons/green/file-video2.svg
index a2c10643cd5a1d60042fb63e0301f92914c2e054..f52c469bdeb8d56041557c3a5aa3e08b64b6c085 100644
--- a/public/assets/images/icons/green/file-video2.svg
+++ b/public/assets/images/icons/green/file-video2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.12 30.47 35.88 19.97 20.13 9.47 20.12 30.47"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.12 30.47 35.88 19.97 20.13 9.47 20.12 30.47"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file-word.svg b/public/assets/images/icons/green/file-word.svg
index 5b28e2e4ca26668d52d4772dead575eadf25c168..0829423120bcce56345ed9d60c9aae7d24e40e96 100644
--- a/public/assets/images/icons/green/file-word.svg
+++ b/public/assets/images/icons/green/file-word.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M33.2,30H30.28L27,18.44,23.69,30H20.78L16,11h3.65l2.76,12,3.27-12h2.61l3.27,12,2.79-12H38Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M33.2,30H30.28L27,18.44,23.69,30H20.78L16,11h3.65l2.76,12,3.27-12h2.61l3.27,12,2.79-12H38Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file.svg b/public/assets/images/icons/green/file.svg
index 61229868f973ca57172fc235e97765d3818ae1a7..e1f6551cf0b9aceabd6f957c1101667f1633f457 100644
--- a/public/assets/images/icons/green/file.svg
+++ b/public/assets/images/icons/green/file.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/file2.svg b/public/assets/images/icons/green/file2.svg
index 61229868f973ca57172fc235e97765d3818ae1a7..e1f6551cf0b9aceabd6f957c1101667f1633f457 100644
--- a/public/assets/images/icons/green/file2.svg
+++ b/public/assets/images/icons/green/file2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/files.svg b/public/assets/images/icons/green/files.svg
index f06a2afb42281e1aac64b3da8648f17a843944f8..c8ccfa30d6f33b4e369d468d0a0d7e7926b06133 100644
--- a/public/assets/images/icons/green/files.svg
+++ b/public/assets/images/icons/green/files.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="a" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="a" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/files2.svg b/public/assets/images/icons/green/files2.svg
index f8291f1eb1004f267e3239b09be63d6cc3ee4400..086adbf175e94137e5b089d6d9b9545b441e495c 100644
--- a/public/assets/images/icons/green/files2.svg
+++ b/public/assets/images/icons/green/files2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="docs"><g id="files"><path class="cls-1" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="cls-1" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="docs"><g id="files"><path class="cls-1" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="cls-1" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/filter.svg b/public/assets/images/icons/green/filter.svg
index a7a18cc5db4b1bf3dfb55ea3d72f88862f7aef3a..042d0e5a3c46c4f8433d8fa98096b8cacb5a8806 100644
--- a/public/assets/images/icons/green/filter.svg
+++ b/public/assets/images/icons/green/filter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><path id="filter" d="M21.1,49.89v-20a1.91,1.91,0,0,0-.41-1.19L3,6.22H51L33.54,28.37a3.09,3.09,0,0,0-.65,1.89V43.39ZM9.33,9.29,23.1,26.78a5,5,0,0,1,1.07,3.09V44.69l5.64-3.12V30.26a6.1,6.1,0,0,1,1.32-3.78L44.66,9.29Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><path id="filter" d="M21.1,49.89v-20a1.91,1.91,0,0,0-.41-1.19L3,6.22H51L33.54,28.37a3.09,3.09,0,0,0-.65,1.89V43.39ZM9.33,9.29,23.1,26.78a5,5,0,0,1,1.07,3.09V44.69l5.64-3.12V30.26a6.1,6.1,0,0,1,1.32-3.78L44.66,9.29Z"/></svg>
diff --git a/public/assets/images/icons/green/filter2.svg b/public/assets/images/icons/green/filter2.svg
index 28e7c861b388cf5799220880fdb71c4458db8ef6..43bc900331012374c2c2cac716bc91a346568a8b 100644
--- a/public/assets/images/icons/green/filter2.svg
+++ b/public/assets/images/icons/green/filter2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="filter2"><polygon points="16.97 30.39 37.02 30.39 42.05 21.7 11.94 21.7 16.97 30.39"/><polygon points="3.01 6.22 8.32 15.41 45.67 15.41 50.98 6.22 3.01 6.22"/><polygon points="27 47.77 33.4 36.68 20.59 36.68 27 47.77"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="filter2"><polygon points="16.97 30.39 37.02 30.39 42.05 21.7 11.94 21.7 16.97 30.39"/><polygon points="3.01 6.22 8.32 15.41 45.67 15.41 50.98 6.22 3.01 6.22"/><polygon points="27 47.77 33.4 36.68 20.59 36.68 27 47.77"/></g></svg>
diff --git a/public/assets/images/icons/green/fishbowl.svg b/public/assets/images/icons/green/fishbowl.svg
index 85db7f8187836cdedfa451b3868fd983e44f0567..bfee43fb4ae5d808217e4b6ce054e1cab0e0a63c 100644
--- a/public/assets/images/icons/green/fishbowl.svg
+++ b/public/assets/images/icons/green/fishbowl.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="fishbowl"><path class="cls-1" d="M51,27a23.69,23.69,0,0,0-4.25-13.58,1.61,1.61,0,0,0-2.23-.41,1.6,1.6,0,0,0-.41,2.22A20.47,20.47,0,0,1,47.8,27a21.51,21.51,0,0,1-.37,3.87,15,15,0,0,1-12,6.05A15.3,15.3,0,0,1,20.27,21.53c0-.07,0-.15,0-.22A25.31,25.31,0,0,0,7,32.57,20.19,20.19,0,0,1,6.2,27,20.51,20.51,0,0,1,10,15.17,1.59,1.59,0,0,0,9.57,13a1.62,1.62,0,0,0-2.23.39,23.77,23.77,0,0,0,6,33.29,3.21,3.21,0,0,0-.19.92A3.43,3.43,0,0,0,16.54,51H37.37a3.43,3.43,0,0,0,3.42-3.42,3.14,3.14,0,0,0-.18-.86A23.83,23.83,0,0,0,51,27Z"/><path class="cls-1" d="M26.88,16.28A14,14,0,0,0,34,12.43c4.47-4.9,3.31-9.53,3.31-9.53s-4.75-.71-9.22,4.19A13.88,13.88,0,0,0,25,14.54l-5.13,1.63,5.91,5.34Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="fishbowl"><path class="cls-1" d="M51,27a23.69,23.69,0,0,0-4.25-13.58,1.61,1.61,0,0,0-2.23-.41,1.6,1.6,0,0,0-.41,2.22A20.47,20.47,0,0,1,47.8,27a21.51,21.51,0,0,1-.37,3.87,15,15,0,0,1-12,6.05A15.3,15.3,0,0,1,20.27,21.53c0-.07,0-.15,0-.22A25.31,25.31,0,0,0,7,32.57,20.19,20.19,0,0,1,6.2,27,20.51,20.51,0,0,1,10,15.17,1.59,1.59,0,0,0,9.57,13a1.62,1.62,0,0,0-2.23.39,23.77,23.77,0,0,0,6,33.29,3.21,3.21,0,0,0-.19.92A3.43,3.43,0,0,0,16.54,51H37.37a3.43,3.43,0,0,0,3.42-3.42,3.14,3.14,0,0,0-.18-.86A23.83,23.83,0,0,0,51,27Z"/><path class="cls-1" d="M26.88,16.28A14,14,0,0,0,34,12.43c4.47-4.9,3.31-9.53,3.31-9.53s-4.75-.71-9.22,4.19A13.88,13.88,0,0,0,25,14.54l-5.13,1.63,5.91,5.34Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-broken.svg b/public/assets/images/icons/green/folder-broken.svg
index da087c014d61418c9f0ce992106cafcae5b19fda..2051ecfcf38af124f860af9556635dde91d7e70a 100644
--- a/public/assets/images/icons/green/folder-broken.svg
+++ b/public/assets/images/icons/green/folder-broken.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-broken2.svg b/public/assets/images/icons/green/folder-broken2.svg
index da087c014d61418c9f0ce992106cafcae5b19fda..2051ecfcf38af124f860af9556635dde91d7e70a 100644
--- a/public/assets/images/icons/green/folder-broken2.svg
+++ b/public/assets/images/icons/green/folder-broken2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-date-empty.svg b/public/assets/images/icons/green/folder-date-empty.svg
index 846de4c7a865b7221a5dc1e23e2f8f5512c79c50..4c47b255f0d402bf4210074762930781870c3646 100644
--- a/public/assets/images/icons/green/folder-date-empty.svg
+++ b/public/assets/images/icons/green/folder-date-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-date-empty2.svg b/public/assets/images/icons/green/folder-date-empty2.svg
index 846de4c7a865b7221a5dc1e23e2f8f5512c79c50..4c47b255f0d402bf4210074762930781870c3646 100644
--- a/public/assets/images/icons/green/folder-date-empty2.svg
+++ b/public/assets/images/icons/green/folder-date-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-date-full.svg b/public/assets/images/icons/green/folder-date-full.svg
index 915dd299d891c3eb1ea0c7280b66b39b50dfcd82..a3f788cdd190722a1336e2cc52b7676f3a5d91a1 100644
--- a/public/assets/images/icons/green/folder-date-full.svg
+++ b/public/assets/images/icons/green/folder-date-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-date-full2.svg b/public/assets/images/icons/green/folder-date-full2.svg
index 915dd299d891c3eb1ea0c7280b66b39b50dfcd82..a3f788cdd190722a1336e2cc52b7676f3a5d91a1 100644
--- a/public/assets/images/icons/green/folder-date-full2.svg
+++ b/public/assets/images/icons/green/folder-date-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-edit-empty.svg b/public/assets/images/icons/green/folder-edit-empty.svg
index a2e35f83c7b7bc896ae43c285d6576b30a53c54b..474b83849b452b6f00cce11189681e329f039c6b 100644
--- a/public/assets/images/icons/green/folder-edit-empty.svg
+++ b/public/assets/images/icons/green/folder-edit-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-edit-empty2.svg b/public/assets/images/icons/green/folder-edit-empty2.svg
index a2e35f83c7b7bc896ae43c285d6576b30a53c54b..474b83849b452b6f00cce11189681e329f039c6b 100644
--- a/public/assets/images/icons/green/folder-edit-empty2.svg
+++ b/public/assets/images/icons/green/folder-edit-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-edit-full.svg b/public/assets/images/icons/green/folder-edit-full.svg
index 27e8de0424946eeaeb9aa3d1c276007252989481..d3b6e6ffe6199164ca51d3b57306219784946716 100644
--- a/public/assets/images/icons/green/folder-edit-full.svg
+++ b/public/assets/images/icons/green/folder-edit-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-edit-full2.svg b/public/assets/images/icons/green/folder-edit-full2.svg
index 27e8de0424946eeaeb9aa3d1c276007252989481..d3b6e6ffe6199164ca51d3b57306219784946716 100644
--- a/public/assets/images/icons/green/folder-edit-full2.svg
+++ b/public/assets/images/icons/green/folder-edit-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-empty.svg b/public/assets/images/icons/green/folder-empty.svg
index 2b7deb4baafdac69bf6d5eece91cb1b9dbc2da1d..dfaf80cdd4eb7847065c2a1e00aadb7df89d768b 100644
--- a/public/assets/images/icons/green/folder-empty.svg
+++ b/public/assets/images/icons/green/folder-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-empty2.svg b/public/assets/images/icons/green/folder-empty2.svg
index 2b7deb4baafdac69bf6d5eece91cb1b9dbc2da1d..dfaf80cdd4eb7847065c2a1e00aadb7df89d768b 100644
--- a/public/assets/images/icons/green/folder-empty2.svg
+++ b/public/assets/images/icons/green/folder-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-full.svg b/public/assets/images/icons/green/folder-full.svg
index a09a5571fcf3ec15d619c34ce3fe8cdf55f9029d..f6175a49df4d7e981d2ff6200123e86047f0598b 100644
--- a/public/assets/images/icons/green/folder-full.svg
+++ b/public/assets/images/icons/green/folder-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-full2.svg b/public/assets/images/icons/green/folder-full2.svg
index a09a5571fcf3ec15d619c34ce3fe8cdf55f9029d..f6175a49df4d7e981d2ff6200123e86047f0598b 100644
--- a/public/assets/images/icons/green/folder-full2.svg
+++ b/public/assets/images/icons/green/folder-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-group-empty.svg b/public/assets/images/icons/green/folder-group-empty.svg
index 20d898c319a8118441bc8afb7b6bb8d59961eba8..55bd50d085297ba9f5c4a392b3b992c3b90b323b 100644
--- a/public/assets/images/icons/green/folder-group-empty.svg
+++ b/public/assets/images/icons/green/folder-group-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-group-empty2.svg b/public/assets/images/icons/green/folder-group-empty2.svg
index 20d898c319a8118441bc8afb7b6bb8d59961eba8..55bd50d085297ba9f5c4a392b3b992c3b90b323b 100644
--- a/public/assets/images/icons/green/folder-group-empty2.svg
+++ b/public/assets/images/icons/green/folder-group-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-group-full.svg b/public/assets/images/icons/green/folder-group-full.svg
index 7f57c412a006a746311a6ca90ba4d3b149d8b983..8b39494836708eb3445db28b163687025a8cd388 100644
--- a/public/assets/images/icons/green/folder-group-full.svg
+++ b/public/assets/images/icons/green/folder-group-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-group-full2.svg b/public/assets/images/icons/green/folder-group-full2.svg
index 7f57c412a006a746311a6ca90ba4d3b149d8b983..8b39494836708eb3445db28b163687025a8cd388 100644
--- a/public/assets/images/icons/green/folder-group-full2.svg
+++ b/public/assets/images/icons/green/folder-group-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-home-empty.svg b/public/assets/images/icons/green/folder-home-empty.svg
index 0d35927379e833a0bcee2a52a37d8b86f79754cf..671ba2a32f4d44a3934adb234fdc2c835f20dc57 100644
--- a/public/assets/images/icons/green/folder-home-empty.svg
+++ b/public/assets/images/icons/green/folder-home-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><polygon class="a" points="26.97 17.47 16 28.45 19.21 28.45 27 20.64 34.8 28.43 38 28.45 26.97 17.47"/><polygon class="a" points="19.67 29.36 19.67 39.47 24.25 39.47 24.25 31.66 29.75 31.66 29.75 39.47 34.33 39.47 34.33 29.36 27 22.02 19.67 29.36"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><polygon class="a" points="26.97 17.47 16 28.45 19.21 28.45 27 20.64 34.8 28.43 38 28.45 26.97 17.47"/><polygon class="a" points="19.67 29.36 19.67 39.47 24.25 39.47 24.25 31.66 29.75 31.66 29.75 39.47 34.33 39.47 34.33 29.36 27 22.02 19.67 29.36"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-home-empty2.svg b/public/assets/images/icons/green/folder-home-empty2.svg
index b471ca4576c37e9fd3c7af45be4204357207bfc9..ae83701d08e22cdada1ed2f28ce8f891389f3393 100644
--- a/public/assets/images/icons/green/folder-home-empty2.svg
+++ b/public/assets/images/icons/green/folder-home-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="27 16.97 16 28.28 17.79 28.28 17.79 38.97 23.84 38.97 23.84 30.61 30.16 30.61 30.16 38.97 36.21 38.97 36.21 28.28 38 28.28 27 16.97"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="27 16.97 16 28.28 17.79 28.28 17.79 38.97 23.84 38.97 23.84 30.61 30.16 30.61 30.16 38.97 36.21 38.97 36.21 28.28 38 28.28 27 16.97"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-home-full.svg b/public/assets/images/icons/green/folder-home-full.svg
index 57f64003f1c4f7fd7a1627f680eef0b96e8e27c3..e2bff160b92aeaaec5026597106659e70f858710 100644
--- a/public/assets/images/icons/green/folder-home-full.svg
+++ b/public/assets/images/icons/green/folder-home-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="23.98 21.97 15 30.95 17.63 30.95 24 24.56 30.38 30.94 33 30.95 23.98 21.97"/><polygon class="a" points="18 31.7 18 39.97 21.75 39.97 21.75 33.58 26.25 33.58 26.25 39.97 30 39.97 30 31.7 24 25.69 18 31.7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="23.98 21.97 15 30.95 17.63 30.95 24 24.56 30.38 30.94 33 30.95 23.98 21.97"/><polygon class="a" points="18 31.7 18 39.97 21.75 39.97 21.75 33.58 26.25 33.58 26.25 39.97 30 39.97 30 31.7 24 25.69 18 31.7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-home-full2.svg b/public/assets/images/icons/green/folder-home-full2.svg
index 64c6a278d5178df19e9a5a999e78aa0091edb65b..d20bc9f7d17d92182c0320c993098a7ee6429217 100644
--- a/public/assets/images/icons/green/folder-home-full2.svg
+++ b/public/assets/images/icons/green/folder-home-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="24 22.06 15.04 31.29 16.5 31.29 16.5 40.01 21.42 40.01 21.42 33.19 26.58 33.19 26.58 40.01 31.51 40.01 31.51 31.29 32.97 31.29 24 22.06"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="24 22.06 15.04 31.29 16.5 31.29 16.5 40.01 21.42 40.01 21.42 33.19 26.58 33.19 26.58 40.01 31.51 40.01 31.51 31.29 32.97 31.29 24 22.06"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-inbox-empty.svg b/public/assets/images/icons/green/folder-inbox-empty.svg
index 16e0a89c0a7c765d236f21464b646b6cfd77b4c8..d5611ddfb4ef6be4eb4440b4c4b7fd760307186e 100644
--- a/public/assets/images/icons/green/folder-inbox-empty.svg
+++ b/public/assets/images/icons/green/folder-inbox-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M12,17.47v3.06L27,30.91,42,20.53V17.47Zm15,9.7-9.59-6.64H36.59Z"/><polygon class="a" points="38.88 36.41 15.13 36.41 15.1 25.12 12 22.97 12 39.47 42 39.47 42 22.97 38.9 25.12 38.88 36.41"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M12,17.47v3.06L27,30.91,42,20.53V17.47Zm15,9.7-9.59-6.64H36.59Z"/><polygon class="a" points="38.88 36.41 15.13 36.41 15.1 25.12 12 22.97 12 39.47 42 39.47 42 22.97 38.9 25.12 38.88 36.41"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-inbox-full.svg b/public/assets/images/icons/green/folder-inbox-full.svg
index 4410139cbe48f5fbefaa11a613d832785a51d225..3c003427a6735394a1079abc5d6bf96bca1fcbc4 100644
--- a/public/assets/images/icons/green/folder-inbox-full.svg
+++ b/public/assets/images/icons/green/folder-inbox-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M12,22.41v2.5l12,8.5,12-8.5v-2.5Zm12,7.93-7.67-5.43H31.67Z"/><polygon class="a" points="33.5 37.91 14.5 37.91 14.48 28.66 12 26.91 12 40.41 36 40.41 36 26.91 33.52 28.66 33.5 37.91"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M12,22.41v2.5l12,8.5,12-8.5v-2.5Zm12,7.93-7.67-5.43H31.67Z"/><polygon class="a" points="33.5 37.91 14.5 37.91 14.48 28.66 12 26.91 12 40.41 36 40.41 36 26.91 33.52 28.66 33.5 37.91"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-lock-empty.svg b/public/assets/images/icons/green/folder-lock-empty.svg
index 50985e2b5cc3866a686b8836f18e47e75c0132c8..4911e053315288212a9fc1e6deb399cfb1e9e6e8 100644
--- a/public/assets/images/icons/green/folder-lock-empty.svg
+++ b/public/assets/images/icons/green/folder-lock-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-lock-empty2.svg b/public/assets/images/icons/green/folder-lock-empty2.svg
index 50985e2b5cc3866a686b8836f18e47e75c0132c8..4911e053315288212a9fc1e6deb399cfb1e9e6e8 100644
--- a/public/assets/images/icons/green/folder-lock-empty2.svg
+++ b/public/assets/images/icons/green/folder-lock-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-lock-full.svg b/public/assets/images/icons/green/folder-lock-full.svg
index 8134d15a8085dde381da3b5c5b856add79c334cb..c819ce76b166f1818b34d81fb2114d5a1f8e2b00 100644
--- a/public/assets/images/icons/green/folder-lock-full.svg
+++ b/public/assets/images/icons/green/folder-lock-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-lock-full2.svg b/public/assets/images/icons/green/folder-lock-full2.svg
index 8134d15a8085dde381da3b5c5b856add79c334cb..c819ce76b166f1818b34d81fb2114d5a1f8e2b00 100644
--- a/public/assets/images/icons/green/folder-lock-full2.svg
+++ b/public/assets/images/icons/green/folder-lock-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-parent.svg b/public/assets/images/icons/green/folder-parent.svg
index c6ad3d81614e9838e44cfd4993f759d4ea900bd0..7f29d7da62f92d7d2948ca557a822556c8dba61a 100644
--- a/public/assets/images/icons/green/folder-parent.svg
+++ b/public/assets/images/icons/green/folder-parent.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="38 25 30.91 25 24 31.91 17.09 25 10 25 24 39 38 25"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="38 25 30.91 25 24 31.91 17.09 25 10 25 24 39 38 25"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-plugin-market-empty.svg b/public/assets/images/icons/green/folder-plugin-market-empty.svg
index ac1c0bf131c3c2335595527f44beea99bef32f3f..7baff5141c3abf733aed71a065a5a5b5f3a0d284 100644
--- a/public/assets/images/icons/green/folder-plugin-market-empty.svg
+++ b/public/assets/images/icons/green/folder-plugin-market-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M31.46,33.48a.92.92,0,0,0-.45.12,6.34,6.34,0,0,1-3.09.8,6.42,6.42,0,0,1-1.07-12.75,7.82,7.82,0,0,1,1.07-.08,6.2,6.2,0,0,1,1.62.21,1,1,0,0,0,.24,0,.91.91,0,0,0,.9-1L30.21,17H16V39H33l-.59-4.69A.91.91,0,0,0,31.46,33.48ZM17.37,37.59V18.34H29l.25,2a7.37,7.37,0,0,0-1.32-.12,8,8,0,0,0-1.29.11,7.79,7.79,0,0,0,1.29,15.48,7.89,7.89,0,0,0,3.17-.68l.31,2.49Z"/><path class="a" d="M31.58,17l.76,6.1a.91.91,0,0,1-1.47.83A5,5,0,0,0,27.42,23a5,5,0,1,0,4.37,8.24.92.92,0,0,1,1.63.45c.4,3.19.91,7.31.91,7.31H38V17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M31.46,33.48a.92.92,0,0,0-.45.12,6.34,6.34,0,0,1-3.09.8,6.42,6.42,0,0,1-1.07-12.75,7.82,7.82,0,0,1,1.07-.08,6.2,6.2,0,0,1,1.62.21,1,1,0,0,0,.24,0,.91.91,0,0,0,.9-1L30.21,17H16V39H33l-.59-4.69A.91.91,0,0,0,31.46,33.48ZM17.37,37.59V18.34H29l.25,2a7.37,7.37,0,0,0-1.32-.12,8,8,0,0,0-1.29.11,7.79,7.79,0,0,0,1.29,15.48,7.89,7.89,0,0,0,3.17-.68l.31,2.49Z"/><path class="a" d="M31.58,17l.76,6.1a.91.91,0,0,1-1.47.83A5,5,0,0,0,27.42,23a5,5,0,1,0,4.37,8.24.92.92,0,0,1,1.63.45c.4,3.19.91,7.31.91,7.31H38V17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-plugin-market-full.svg b/public/assets/images/icons/green/folder-plugin-market-full.svg
index 952b951ed015073e45cdb74c6db27fbf9a1c21be..08b1e0fcee70c541e92366294b464b32d8a55ec9 100644
--- a/public/assets/images/icons/green/folder-plugin-market-full.svg
+++ b/public/assets/images/icons/green/folder-plugin-market-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M27.65,35.48a.74.74,0,0,0-.37.1,5.25,5.25,0,1,1-3.4-9.78,5.1,5.1,0,0,1,.87-.07,5.33,5.33,0,0,1,1.33.17.63.63,0,0,0,.19,0,.74.74,0,0,0,.74-.84L26.63,22H15V40H28.87l-.47-3.84A.75.75,0,0,0,27.65,35.48ZM16.12,38.84V23.09h9.51l.2,1.61a6.47,6.47,0,0,0-1.08-.09,7.42,7.42,0,0,0-1.05.08A6.38,6.38,0,1,0,27.35,36.8l.25,2Z"/><path class="a" d="M27.75,22l.62,5a.75.75,0,0,1-1.2.68,4,4,0,0,0-2.82-.76,4.12,4.12,0,0,0,.4,8.23,4.09,4.09,0,0,0,3.17-1.49.75.75,0,0,1,1.33.37c.33,2.61.75,6,.75,6h3V22Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M27.65,35.48a.74.74,0,0,0-.37.1,5.25,5.25,0,1,1-3.4-9.78,5.1,5.1,0,0,1,.87-.07,5.33,5.33,0,0,1,1.33.17.63.63,0,0,0,.19,0,.74.74,0,0,0,.74-.84L26.63,22H15V40H28.87l-.47-3.84A.75.75,0,0,0,27.65,35.48ZM16.12,38.84V23.09h9.51l.2,1.61a6.47,6.47,0,0,0-1.08-.09,7.42,7.42,0,0,0-1.05.08A6.38,6.38,0,1,0,27.35,36.8l.25,2Z"/><path class="a" d="M27.75,22l.62,5a.75.75,0,0,1-1.2.68,4,4,0,0,0-2.82-.76,4.12,4.12,0,0,0,.4,8.23,4.09,4.09,0,0,0,3.17-1.49.75.75,0,0,1,1.33.37c.33,2.61.75,6,.75,6h3V22Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-public-empty.svg b/public/assets/images/icons/green/folder-public-empty.svg
index cd213df836bfa8049c3bd81b3a0c68f5f916026c..7ff2b093cc8f0be58abf938f6e42fa0a889e87b5 100644
--- a/public/assets/images/icons/green/folder-public-empty.svg
+++ b/public/assets/images/icons/green/folder-public-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-public-empty2.svg b/public/assets/images/icons/green/folder-public-empty2.svg
index cd213df836bfa8049c3bd81b3a0c68f5f916026c..7ff2b093cc8f0be58abf938f6e42fa0a889e87b5 100644
--- a/public/assets/images/icons/green/folder-public-empty2.svg
+++ b/public/assets/images/icons/green/folder-public-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-public-full.svg b/public/assets/images/icons/green/folder-public-full.svg
index c42b3129d5b0d0925a6d1c8b8eba388ffedf4087..6efdc6328de1eb67e67a4bd12dda255b6a64c838 100644
--- a/public/assets/images/icons/green/folder-public-full.svg
+++ b/public/assets/images/icons/green/folder-public-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-public-full2.svg b/public/assets/images/icons/green/folder-public-full2.svg
index c42b3129d5b0d0925a6d1c8b8eba388ffedf4087..6efdc6328de1eb67e67a4bd12dda255b6a64c838 100644
--- a/public/assets/images/icons/green/folder-public-full2.svg
+++ b/public/assets/images/icons/green/folder-public-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-topic-empty.svg b/public/assets/images/icons/green/folder-topic-empty.svg
index 5f32d25186dde038943b489b1e34d69781500847..02c06a6416987c0fb139a6974ded39229b44243f 100644
--- a/public/assets/images/icons/green/folder-topic-empty.svg
+++ b/public/assets/images/icons/green/folder-topic-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M29.89,18.41V17H24v1.38H18.18V39H35.82V18.41Zm3.59,18.43h-13V20.6H24v.51h5.92V20.6h3.59Z"/><rect class="a" x="22.59" y="26.57" width="8.82" height="2.78"/><rect class="a" x="22.59" y="30.69" width="8.82" height="2.89"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M29.89,18.41V17H24v1.38H18.18V39H35.82V18.41Zm3.59,18.43h-13V20.6H24v.51h5.92V20.6h3.59Z"/><rect class="a" x="22.59" y="26.57" width="8.82" height="2.78"/><rect class="a" x="22.59" y="30.69" width="8.82" height="2.89"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/folder-topic-full.svg b/public/assets/images/icons/green/folder-topic-full.svg
index 13dc437ec2b11619f405939d7c0ca55132ef73f4..8421c0607ced1e02ba88bf244f2631d8c6fd8039 100644
--- a/public/assets/images/icons/green/folder-topic-full.svg
+++ b/public/assets/images/icons/green/folder-topic-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M26.37,23.15V22H21.52v1.12H16.78V40H31.22V23.15ZM29.3,38.24H18.7V25h2.82v.42h4.85V25H29.3Z"/><rect class="a" x="20.39" y="29.83" width="7.22" height="2.27"/><rect class="a" x="20.39" y="33.21" width="7.22" height="2.36"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M26.37,23.15V22H21.52v1.12H16.78V40H31.22V23.15ZM29.3,38.24H18.7V25h2.82v.42h4.85V25H29.3Z"/><rect class="a" x="20.39" y="29.83" width="7.22" height="2.27"/><rect class="a" x="20.39" y="33.21" width="7.22" height="2.36"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/forum.svg b/public/assets/images/icons/green/forum.svg
index c197b48a9a61158be06c9fd63c1968024fcb5ccf..83bad8c893fbac6bfc343544a5dbe4f9c8a0c49a 100644
--- a/public/assets/images/icons/green/forum.svg
+++ b/public/assets/images/icons/green/forum.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/fullscreen-off.svg b/public/assets/images/icons/green/fullscreen-off.svg
index 86a94bd6ee23fec36ba27c47dc42b1edd6927362..b5aa40664b356d80b3cceb47679cbdbd3866651f 100644
--- a/public/assets/images/icons/green/fullscreen-off.svg
+++ b/public/assets/images/icons/green/fullscreen-off.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="fullscreen-off"><polygon points="51 20.13 33.87 20.13 33.87 2.99 37.29 2.99 37.29 16.7 51 16.7 51 20.13"/><polygon points="33.86 50.87 33.86 33.73 51 33.73 51 37.16 37.29 37.16 37.29 50.87 33.86 50.87"/><polygon points="20.16 50.97 16.73 50.97 16.73 37.26 3.02 37.26 3.02 33.84 20.16 33.84 20.16 50.97"/><polygon points="3.02 20.02 3.02 16.6 16.73 16.6 16.73 2.89 20.16 2.89 20.16 20.02 3.02 20.02"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="fullscreen-off"><polygon points="51 20.13 33.87 20.13 33.87 2.99 37.29 2.99 37.29 16.7 51 16.7 51 20.13"/><polygon points="33.86 50.87 33.86 33.73 51 33.73 51 37.16 37.29 37.16 37.29 50.87 33.86 50.87"/><polygon points="20.16 50.97 16.73 50.97 16.73 37.26 3.02 37.26 3.02 33.84 20.16 33.84 20.16 50.97"/><polygon points="3.02 20.02 3.02 16.6 16.73 16.6 16.73 2.89 20.16 2.89 20.16 20.02 3.02 20.02"/></g></svg>
diff --git a/public/assets/images/icons/green/fullscreen-on.svg b/public/assets/images/icons/green/fullscreen-on.svg
index 1104b3860cf86ab6f591075f87ce1eb852c386bb..38c011b2843ec8f3b7df79162734f9c71a95f2e4 100644
--- a/public/assets/images/icons/green/fullscreen-on.svg
+++ b/public/assets/images/icons/green/fullscreen-on.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="zoom-in-3"><polygon points="51 20.12 47.57 20.12 47.57 6.42 33.86 6.42 33.86 2.99 51 2.99 51 20.12"/><polygon points="20.15 50.97 3.02 50.97 3.02 33.83 6.44 33.83 6.44 47.54 20.15 47.54 20.15 50.97"/><polygon points="33.86 50.97 33.86 47.54 47.57 47.54 47.57 33.83 51 33.83 51 50.97 33.86 50.97"/><polygon points="3.02 20.12 3.02 2.99 20.15 2.99 20.15 6.42 6.44 6.42 6.44 20.12 3.02 20.12"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="zoom-in-3"><polygon points="51 20.12 47.57 20.12 47.57 6.42 33.86 6.42 33.86 2.99 51 2.99 51 20.12"/><polygon points="20.15 50.97 3.02 50.97 3.02 33.83 6.44 33.83 6.44 47.54 20.15 47.54 20.15 50.97"/><polygon points="33.86 50.97 33.86 47.54 47.57 47.54 47.57 33.83 51 33.83 51 50.97 33.86 50.97"/><polygon points="3.02 20.12 3.02 2.99 20.15 2.99 20.15 6.42 6.44 6.42 6.44 20.12 3.02 20.12"/></g></svg>
diff --git a/public/assets/images/icons/green/graph.svg b/public/assets/images/icons/green/graph.svg
index 4cc636bd544d49dc9317b612ed198f48ab16b119..cb18ea46649b47aa5fc788fabbbc89b47ef12175 100644
--- a/public/assets/images/icons/green/graph.svg
+++ b/public/assets/images/icons/green/graph.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><path id="graph" class="cls-1" d="M6,44V25.33l9.5,10.36,11.05-12,5.95,5.95L45.23,16.86A3.25,3.25,0,0,0,46,17a3,3,0,1,0-3-3,3.25,3.25,0,0,0,.11.77L32.5,25.35,26.45,19.3l-10.95,12L6,20.89V7H3V47H51V44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><path id="graph" class="cls-1" d="M6,44V25.33l9.5,10.36,11.05-12,5.95,5.95L45.23,16.86A3.25,3.25,0,0,0,46,17a3,3,0,1,0-3-3,3.25,3.25,0,0,0,.11.77L32.5,25.35,26.45,19.3l-10.95,12L6,20.89V7H3V47H51V44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/group.svg b/public/assets/images/icons/green/group.svg
index 4c8ed4726337f0fff591504842dd5e112f029b27..75af98b61a5e686c9381d5af7d474a3fc1e2bf69 100644
--- a/public/assets/images/icons/green/group.svg
+++ b/public/assets/images/icons/green/group.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/group2.svg b/public/assets/images/icons/green/group2.svg
index 1abdbbb233f33474e1de926891bbafce363da870..6be36d7e4648bc189db3441e2d516f59eff1e9b2 100644
--- a/public/assets/images/icons/green/group2.svg
+++ b/public/assets/images/icons/green/group2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M11.72,24.63a6.16,6.16,0,1,0-6.15-6.16A6.15,6.15,0,0,0,11.72,24.63Z"/><path class="a" d="M14.51,27.55H8.9A5.94,5.94,0,0,0,3,33.49V41.2H20.43V33.49A6,6,0,0,0,14.51,27.55Z"/><path class="a" d="M42.28,31.92a6.16,6.16,0,1,0-6.14-6.15A6.15,6.15,0,0,0,42.28,31.92Z"/><path class="a" d="M45.08,34.85H39.47a5.92,5.92,0,0,0-5.9,5.93V48.5H51V40.78A6,6,0,0,0,45.08,34.85Z"/><path class="a" d="M25.3,17.82a6.16,6.16,0,1,0-6.14-6.16A6.15,6.15,0,0,0,25.3,17.82Z"/><path class="a" d="M34,34.39V26.67a6,6,0,0,0-5.92-5.93H22.49a5.91,5.91,0,0,0-5.88,5.7,7.38,7.38,0,0,1,5.28,7.05v.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M11.72,24.63a6.16,6.16,0,1,0-6.15-6.16A6.15,6.15,0,0,0,11.72,24.63Z"/><path class="a" d="M14.51,27.55H8.9A5.94,5.94,0,0,0,3,33.49V41.2H20.43V33.49A6,6,0,0,0,14.51,27.55Z"/><path class="a" d="M42.28,31.92a6.16,6.16,0,1,0-6.14-6.15A6.15,6.15,0,0,0,42.28,31.92Z"/><path class="a" d="M45.08,34.85H39.47a5.92,5.92,0,0,0-5.9,5.93V48.5H51V40.78A6,6,0,0,0,45.08,34.85Z"/><path class="a" d="M25.3,17.82a6.16,6.16,0,1,0-6.14-6.16A6.15,6.15,0,0,0,25.3,17.82Z"/><path class="a" d="M34,34.39V26.67a6,6,0,0,0-5.92-5.93H22.49a5.91,5.91,0,0,0-5.88,5.7,7.38,7.38,0,0,1,5.28,7.05v.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/group3.svg b/public/assets/images/icons/green/group3.svg
index 0d497e8224c4e5a0f4515276f9b5e6dbf042e176..dec812eec94f65f06ed833a9969fa7fcb7de9627 100644
--- a/public/assets/images/icons/green/group3.svg
+++ b/public/assets/images/icons/green/group3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M21.33,27.49a7.83,7.83,0,0,1-2.16,5.39H34.83A7.87,7.87,0,0,1,36.06,21a6.06,6.06,0,0,0-4.68-2.25H22.6A6,6,0,0,0,17.93,21,7.87,7.87,0,0,1,21.33,27.49Z"/><path class="a" d="M27,15.74a6.37,6.37,0,1,0-6.33-6.38A6.34,6.34,0,0,0,27,15.74Z"/><path class="a" d="M13.49,33.86a6.37,6.37,0,1,0-6.33-6.37A6.35,6.35,0,0,0,13.49,33.86Z"/><path class="a" d="M17.87,36.88H9.09A6.13,6.13,0,0,0,3,43v8H24V43A6.15,6.15,0,0,0,17.87,36.88Z"/><path class="a" d="M34.18,27.49a6.34,6.34,0,1,0,6.33-6.37A6.35,6.35,0,0,0,34.18,27.49Z"/><path class="a" d="M44.89,36.88H36.11A6.13,6.13,0,0,0,30,43v8H51V43A6.15,6.15,0,0,0,44.89,36.88Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M21.33,27.49a7.83,7.83,0,0,1-2.16,5.39H34.83A7.87,7.87,0,0,1,36.06,21a6.06,6.06,0,0,0-4.68-2.25H22.6A6,6,0,0,0,17.93,21,7.87,7.87,0,0,1,21.33,27.49Z"/><path class="a" d="M27,15.74a6.37,6.37,0,1,0-6.33-6.38A6.34,6.34,0,0,0,27,15.74Z"/><path class="a" d="M13.49,33.86a6.37,6.37,0,1,0-6.33-6.37A6.35,6.35,0,0,0,13.49,33.86Z"/><path class="a" d="M17.87,36.88H9.09A6.13,6.13,0,0,0,3,43v8H24V43A6.15,6.15,0,0,0,17.87,36.88Z"/><path class="a" d="M34.18,27.49a6.34,6.34,0,1,0,6.33-6.37A6.35,6.35,0,0,0,34.18,27.49Z"/><path class="a" d="M44.89,36.88H36.11A6.13,6.13,0,0,0,30,43v8H51V43A6.15,6.15,0,0,0,44.89,36.88Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/guestbook.svg b/public/assets/images/icons/green/guestbook.svg
index 63022eb61dc789dc83b14724534f28442e876058..bba62990102053c256820b11dc76f645ce4bd74e 100644
--- a/public/assets/images/icons/green/guestbook.svg
+++ b/public/assets/images/icons/green/guestbook.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="guestbook"><path class="cls-1" d="M50,39.26l-1-1.72L47.46,35,33.57,11.77,23,6.19l-.13,11.53,13.89,23.2,1.55,2.57,1,1.72a6.3,6.3,0,0,0,8.44,2.18A5.84,5.84,0,0,0,50,39.26Zm-5.25-2.81-5.35,3L26,16.94l0-2.1L29.38,13l1.94,1ZM46.33,39l1,1.72a2.91,2.91,0,0,1-1.13,4.06A3.15,3.15,0,0,1,42,43.73L41,42ZM21,15H3V9H21Zm0,10H3V19H21ZM16,35H3V29H16Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="guestbook"><path class="cls-1" d="M50,39.26l-1-1.72L47.46,35,33.57,11.77,23,6.19l-.13,11.53,13.89,23.2,1.55,2.57,1,1.72a6.3,6.3,0,0,0,8.44,2.18A5.84,5.84,0,0,0,50,39.26Zm-5.25-2.81-5.35,3L26,16.94l0-2.1L29.38,13l1.94,1ZM46.33,39l1,1.72a2.91,2.91,0,0,1-1.13,4.06A3.15,3.15,0,0,1,42,43.73L41,42ZM21,15H3V9H21Zm0,10H3V19H21ZM16,35H3V29H16Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/home.svg b/public/assets/images/icons/green/home.svg
index a3743696eda912137eba0fa976cd4b1205291e3d..e80c94895bd5d18340114f01f2b3c05e8d7a4943 100644
--- a/public/assets/images/icons/green/home.svg
+++ b/public/assets/images/icons/green/home.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="26.93 3.07 3 26.97 10 26.97 27 9.97 44.02 26.93 51 26.97 26.93 3.07"/><polygon class="a" points="11 28.97 11 50.97 21 50.97 21 33.97 33 33.97 33 50.97 43 50.97 43 28.97 27 12.97 11 28.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="26.93 3.07 3 26.97 10 26.97 27 9.97 44.02 26.93 51 26.97 26.93 3.07"/><polygon class="a" points="11 28.97 11 50.97 21 50.97 21 33.97 33 33.97 33 50.97 43 50.97 43 28.97 27 12.97 11 28.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/home2.svg b/public/assets/images/icons/green/home2.svg
index e2b4fd9439132047b84679189dea806b5999e0f9..c036b0c9d9a237d012f5e413471c3d2039dea266 100644
--- a/public/assets/images/icons/green/home2.svg
+++ b/public/assets/images/icons/green/home2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="3 26.97 26.93 3.07 51 26.97 44.02 26.93 27 9.97 10 26.97 3 26.97"/><polygon class="a" points="15 50.97 10 50.97 10 29.97 15 24.97 15 50.97"/><polygon class="a" points="44 50.97 39 50.97 39 24.97 44 29.97 44 50.97"/><rect class="a" x="10" y="45.97" width="34" height="5"/><rect class="a" x="25" y="29.97" width="10" height="17"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="3 26.97 26.93 3.07 51 26.97 44.02 26.93 27 9.97 10 26.97 3 26.97"/><polygon class="a" points="15 50.97 10 50.97 10 29.97 15 24.97 15 50.97"/><polygon class="a" points="44 50.97 39 50.97 39 24.97 44 29.97 44 50.97"/><rect class="a" x="10" y="45.97" width="34" height="5"/><rect class="a" x="25" y="29.97" width="10" height="17"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/info-circle-full.svg b/public/assets/images/icons/green/info-circle-full.svg
index 23513eeee5a23dcea9da0634a2fa6d78005083e7..ca5e54c981f630f0b697f8109f343b93dec6e27d 100644
--- a/public/assets/images/icons/green/info-circle-full.svg
+++ b/public/assets/images/icons/green/info-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/info-circle.svg b/public/assets/images/icons/green/info-circle.svg
index 23513eeee5a23dcea9da0634a2fa6d78005083e7..ca5e54c981f630f0b697f8109f343b93dec6e27d 100644
--- a/public/assets/images/icons/green/info-circle.svg
+++ b/public/assets/images/icons/green/info-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/infopage.svg b/public/assets/images/icons/green/infopage.svg
index 768760d26b2bf6c5cc5a80bf873df50463402a97..04c797b8c54fbeab47d5a3a857571afcd7d43996 100644
--- a/public/assets/images/icons/green/infopage.svg
+++ b/public/assets/images/icons/green/infopage.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/infopage2.svg b/public/assets/images/icons/green/infopage2.svg
index 768760d26b2bf6c5cc5a80bf873df50463402a97..04c797b8c54fbeab47d5a3a857571afcd7d43996 100644
--- a/public/assets/images/icons/green/infopage2.svg
+++ b/public/assets/images/icons/green/infopage2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/install.svg b/public/assets/images/icons/green/install.svg
index 763ade8e745cdda2af7be96bb40b8ad99deac29b..1efebd173f12358968cfbb4792aebd86f772a530 100644
--- a/public/assets/images/icons/green/install.svg
+++ b/public/assets/images/icons/green/install.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="43 5 34.9 5 27 12.9 19.1 5 11 5 27 21 43 5"/><path class="a" d="M38.29,16.6l0,0a16,16,0,1,1-22.62,0l-3.54-3.53a21,21,0,1,0,29.7,0l0,0Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="43 5 34.9 5 27 12.9 19.1 5 11 5 27 21 43 5"/><path class="a" d="M38.29,16.6l0,0a16,16,0,1,1-22.62,0l-3.54-3.53a21,21,0,1,0,29.7,0l0,0Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/institute.svg b/public/assets/images/icons/green/institute.svg
index 6a6f6e035b34974c7d9c8d2fa5cff3b8235d0e7a..cc7e5002712214140074ea48a2a2b802ed729884 100644
--- a/public/assets/images/icons/green/institute.svg
+++ b/public/assets/images/icons/green/institute.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="44 24.97 36 24.97 36 47.97 31 47.97 31 24.97 26.89 24.97 23 24.97 23 47.97 18 47.97 18 24.97 10 24.97 10 47.97 6 47.97 6 50.97 48 50.97 48 47.97 44 47.97 44 24.97"/><path class="a" d="M12,22H45v0l6,0L26.93,3.07,3,22h9ZM27,10l11.3,9H15.75Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="44 24.97 36 24.97 36 47.97 31 47.97 31 24.97 26.89 24.97 23 24.97 23 47.97 18 47.97 18 24.97 10 24.97 10 47.97 6 47.97 6 50.97 48 50.97 48 47.97 44 47.97 44 24.97"/><path class="a" d="M12,22H45v0l6,0L26.93,3.07,3,22h9ZM27,10l11.3,9H15.75Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/key.svg b/public/assets/images/icons/green/key.svg
index 848ff6437224895cbd413adc4d66fd4f523766cf..c11f99e6addeca089fc46527da764089a3ab2194 100644
--- a/public/assets/images/icons/green/key.svg
+++ b/public/assets/images/icons/green/key.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="key"><path class="cls-1" d="M34.44,3A16.53,16.53,0,0,0,19.12,25.81L3,41.94V51h9.06V44.88h5.88V39h6.12V32.46A16.56,16.56,0,1,0,34.44,3Zm3.88,20.44a7.76,7.76,0,1,1,7.76-7.76A7.77,7.77,0,0,1,38.32,23.44Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="key"><path class="cls-1" d="M34.44,3A16.53,16.53,0,0,0,19.12,25.81L3,41.94V51h9.06V44.88h5.88V39h6.12V32.46A16.56,16.56,0,1,0,34.44,3Zm3.88,20.44a7.76,7.76,0,1,1,7.76-7.76A7.77,7.77,0,0,1,38.32,23.44Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/lightbulb.svg b/public/assets/images/icons/green/lightbulb.svg
index b6fce257ffe04aa91c721f21c1e6e2b4f86d950f..5d96dbfc52930ba42af9b1844b5dad8d45e689d1 100644
--- a/public/assets/images/icons/green/lightbulb.svg
+++ b/public/assets/images/icons/green/lightbulb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M27,3a18.54,18.54,0,0,0-2,.11,17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,27,3Zm7.33,28.92A5,5,0,0,0,32,36.12V38H22V36.13a5,5,0,0,0-2.33-4.24,14,14,0,0,1,5.7-25.83A14.84,14.84,0,0,1,27,6a14,14,0,0,1,7.33,25.92Z"/><path class="a" d="M32.39,9.05A12.51,12.51,0,0,0,27.24,8a12.66,12.66,0,0,0-10.37,5.4,1.73,1.73,0,0,0,.42,2.41,1.69,1.69,0,0,0,1,.32,1.73,1.73,0,0,0,1.42-.74,9.21,9.21,0,0,1,7.54-3.93,9.08,9.08,0,0,1,3.74.8,1.73,1.73,0,1,0,1.41-3.16Z"/><path class="a" d="M17,16.31A1.73,1.73,0,0,0,15,17.58a12.38,12.38,0,0,0-.37,3,12.68,12.68,0,0,0,.28,2.67,1.74,1.74,0,0,0,1.69,1.36,1.55,1.55,0,0,0,.37,0,1.74,1.74,0,0,0,1.33-2.06A8.92,8.92,0,0,1,18,20.61a9.08,9.08,0,0,1,.27-2.2A1.74,1.74,0,0,0,17,16.31Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M27,3a18.54,18.54,0,0,0-2,.11,17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,27,3Zm7.33,28.92A5,5,0,0,0,32,36.12V38H22V36.13a5,5,0,0,0-2.33-4.24,14,14,0,0,1,5.7-25.83A14.84,14.84,0,0,1,27,6a14,14,0,0,1,7.33,25.92Z"/><path class="a" d="M32.39,9.05A12.51,12.51,0,0,0,27.24,8a12.66,12.66,0,0,0-10.37,5.4,1.73,1.73,0,0,0,.42,2.41,1.69,1.69,0,0,0,1,.32,1.73,1.73,0,0,0,1.42-.74,9.21,9.21,0,0,1,7.54-3.93,9.08,9.08,0,0,1,3.74.8,1.73,1.73,0,1,0,1.41-3.16Z"/><path class="a" d="M17,16.31A1.73,1.73,0,0,0,15,17.58a12.38,12.38,0,0,0-.37,3,12.68,12.68,0,0,0,.28,2.67,1.74,1.74,0,0,0,1.69,1.36,1.55,1.55,0,0,0,.37,0,1.74,1.74,0,0,0,1.33-2.06A8.92,8.92,0,0,1,18,20.61a9.08,9.08,0,0,1,.27-2.2A1.74,1.74,0,0,0,17,16.31Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/lightbulb2.svg b/public/assets/images/icons/green/lightbulb2.svg
index f099f6052f790b8216e90e0dbe0cbe6032b5f7fa..5d8accbb1b69c217b574064b93babf9e419df53c 100644
--- a/public/assets/images/icons/green/lightbulb2.svg
+++ b/public/assets/images/icons/green/lightbulb2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M25,3.08a17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,25,3.08ZM16.32,17.33A11.15,11.15,0,0,0,16,20a10.48,10.48,0,0,0,.25,2.31,1.51,1.51,0,0,1-1.15,1.79l-.32,0a1.51,1.51,0,0,1-1.47-1.18A14.63,14.63,0,0,1,13,20a14.11,14.11,0,0,1,.41-3.36,1.5,1.5,0,0,1,2.91.72ZM33.46,9.17a1.5,1.5,0,0,1-2,.75A11,11,0,0,0,18,13.66a1.49,1.49,0,0,1-1.23.64,1.5,1.5,0,0,1-1.23-2.36A14,14,0,0,1,32.7,7.18,1.51,1.51,0,0,1,33.46,9.17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M25,3.08a17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,25,3.08ZM16.32,17.33A11.15,11.15,0,0,0,16,20a10.48,10.48,0,0,0,.25,2.31,1.51,1.51,0,0,1-1.15,1.79l-.32,0a1.51,1.51,0,0,1-1.47-1.18A14.63,14.63,0,0,1,13,20a14.11,14.11,0,0,1,.41-3.36,1.5,1.5,0,0,1,2.91.72ZM33.46,9.17a1.5,1.5,0,0,1-2,.75A11,11,0,0,0,18,13.66a1.49,1.49,0,0,1-1.23.64,1.5,1.5,0,0,1-1.23-2.36A14,14,0,0,1,32.7,7.18,1.51,1.51,0,0,1,33.46,9.17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/link-extern.svg b/public/assets/images/icons/green/link-extern.svg
index 50463c4358dc84bb44993ee1eaf7bb2d56869d83..738c6da4129bb1c29e3c8a52f0ae734031aa0c62 100644
--- a/public/assets/images/icons/green/link-extern.svg
+++ b/public/assets/images/icons/green/link-extern.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="17 17 22.06 22.06 31.94 22.06 31.94 31.94 37 37 37 17 17 17"/><path class="a" d="M27,46A19,19,0,0,1,27,8V3A24,24,0,1,0,51,27H46A19,19,0,0,1,27,46Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="17 17 22.06 22.06 31.94 22.06 31.94 31.94 37 37 37 17 17 17"/><path class="a" d="M27,46A19,19,0,0,1,27,8V3A24,24,0,1,0,51,27H46A19,19,0,0,1,27,46Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/link-intern.svg b/public/assets/images/icons/green/link-intern.svg
index d7b0c282e0f1c127c2df9efdd26607dc8ac4a09a..e815967195f5bff6f7b7c081494d4f3e862eeb3e 100644
--- a/public/assets/images/icons/green/link-intern.svg
+++ b/public/assets/images/icons/green/link-intern.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/><polygon class="a" points="22 13 22 20.09 28.91 27 22 33.91 22 41 36 27 22 13"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/><polygon class="a" points="22 13 22 20.09 28.91 27 22 33.91 22 41 36 27 22 13"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/link2.svg b/public/assets/images/icons/green/link2.svg
index aa1974a3aedaa482d1bbca60a1e9701ce011de60..de30f80542408cfa47ea0e1b029001d63755729e 100644
--- a/public/assets/images/icons/green/link2.svg
+++ b/public/assets/images/icons/green/link2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM22,41V33.91L28.91,27,22,20.09V13L36,27Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM22,41V33.91L28.91,27,22,20.09V13L36,27Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/link3.svg b/public/assets/images/icons/green/link3.svg
index 346516ac870174f45e78fbd9bdeb59ce7b0b6096..ac3a983ce9237f4b8730713a6cf38896836c4b69 100644
--- a/public/assets/images/icons/green/link3.svg
+++ b/public/assets/images/icons/green/link3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,51A24,24,0,1,0,3,27,24,24,0,0,0,27,51Zm5-38v7.09L25.09,27,32,33.88V41L18,27Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,51A24,24,0,1,0,3,27,24,24,0,0,0,27,51Zm5-38v7.09L25.09,27,32,33.88V41L18,27Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/literature.svg b/public/assets/images/icons/green/literature.svg
index ab99db92f0dd6c9391f4679319a36c66fed47995..a5dd347e1d574d82a67cda3d08a517e717cf4f1c 100644
--- a/public/assets/images/icons/green/literature.svg
+++ b/public/assets/images/icons/green/literature.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42h3V3Zm0,17.9H33v3H15Zm0,6H33v3H15Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42h3V3Zm0,17.9H33v3H15Zm0,6H33v3H15Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/literature2.svg b/public/assets/images/icons/green/literature2.svg
index 77676514e63be1f72656a9b04e1bae0c38c65354..ed4e0baf161908605f73e208db67ffec13145276 100644
--- a/public/assets/images/icons/green/literature2.svg
+++ b/public/assets/images/icons/green/literature2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42.08h3V3Zm0,12H36V48H15a3,3,0,0,1-3-3V13.94A4.14,4.14,0,0,0,15,15Z"/><rect class="a" x="15" y="20.9" width="17.99" height="3"/><rect class="a" x="15" y="26.9" width="17.99" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42.08h3V3Zm0,12H36V48H15a3,3,0,0,1-3-3V13.94A4.14,4.14,0,0,0,15,15Z"/><rect class="a" x="15" y="20.9" width="17.99" height="3"/><rect class="a" x="15" y="26.9" width="17.99" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/lock-locked.svg b/public/assets/images/icons/green/lock-locked.svg
index 91a3b7af331c2c3291dbde4ada18dabedc87751c..e4698db836b2dd6e3f3faee3b6b3def3f7f870e9 100644
--- a/public/assets/images/icons/green/lock-locked.svg
+++ b/public/assets/images/icons/green/lock-locked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="lock-locked2"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM18,19a9,9,0,0,1,18,0v3H18ZM42,46H12V25H42Z"/><path class="cls-1" d="M24,40a3,3,0,0,0,6,0V35.62a4,4,0,1,0-6,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="lock-locked2"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM18,19a9,9,0,0,1,18,0v3H18ZM42,46H12V25H42Z"/><path class="cls-1" d="M24,40a3,3,0,0,0,6,0V35.62a4,4,0,1,0-6,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/lock-locked2.svg b/public/assets/images/icons/green/lock-locked2.svg
index 6dd3d53e974c0b71b18b0e11ba1b4b285a7d1cc9..70a25cb028bed21f7126db0ffea16e9de7c2fcab 100644
--- a/public/assets/images/icons/green/lock-locked2.svg
+++ b/public/assets/images/icons/green/lock-locked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="lock-locked"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM30,35.59V40a3,3,0,0,1-6,0V35.59A3.93,3.93,0,0,1,23,33a4,4,0,1,1,7,2.62ZM36,22H18V19a9,9,0,0,1,18,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="lock-locked"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM30,35.59V40a3,3,0,0,1-6,0V35.59A3.93,3.93,0,0,1,23,33a4,4,0,1,1,7,2.62ZM36,22H18V19a9,9,0,0,1,18,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/lock-unlocked.svg b/public/assets/images/icons/green/lock-unlocked.svg
index a25a4e511e673072b069c3336d9be4c7fbfc7345..2aa987db9b59e291cde6af71e128b4090b47c4e2 100644
--- a/public/assets/images/icons/green/lock-unlocked.svg
+++ b/public/assets/images/icons/green/lock-unlocked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="lock-unlocked2"><path class="cls-1" d="M24,42a3,3,0,0,0,6,0V37.62a4,4,0,1,0-6,0Z"/><path class="cls-1" d="M18,24V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM42,48H12V27H42Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="lock-unlocked2"><path class="cls-1" d="M24,42a3,3,0,0,0,6,0V37.62a4,4,0,1,0-6,0Z"/><path class="cls-1" d="M18,24V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM42,48H12V27H42Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/lock-unlocked2.svg b/public/assets/images/icons/green/lock-unlocked2.svg
index 36150efe4e531f04c88be9483deb8e245531bff4..09d30147ec3cf9600d3e22c482c41f8346f1b8c3 100644
--- a/public/assets/images/icons/green/lock-unlocked2.svg
+++ b/public/assets/images/icons/green/lock-unlocked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="lock-unlocked"><path class="cls-1" d="M41,24H18V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM30,36.62V42a3,3,0,0,1-6,0V36.62a4,4,0,1,1,6,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="lock-unlocked"><path class="cls-1" d="M41,24H18V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM30,36.62V42a3,3,0,0,1-6,0V36.62a4,4,0,1,1,6,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/log.svg b/public/assets/images/icons/green/log.svg
index 33d3ce598f0d2298f4ef84708e1bcf584cbcfa90..e785d135ed7132e656340637079f75e07511e081 100644
--- a/public/assets/images/icons/green/log.svg
+++ b/public/assets/images/icons/green/log.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="log"><path class="cls-1" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><rect class="cls-1" x="15" y="10.97" width="24" height="4"/><rect class="cls-1" x="15" y="17.97" width="23" height="4"/><rect class="cls-1" x="15" y="24.97" width="22" height="4"/><rect class="cls-1" x="15" y="31.97" width="24" height="4"/><rect class="cls-1" x="15" y="38.97" width="19" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="log"><path class="cls-1" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><rect class="cls-1" x="15" y="10.97" width="24" height="4"/><rect class="cls-1" x="15" y="17.97" width="23" height="4"/><rect class="cls-1" x="15" y="24.97" width="22" height="4"/><rect class="cls-1" x="15" y="31.97" width="24" height="4"/><rect class="cls-1" x="15" y="38.97" width="19" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/mail.svg b/public/assets/images/icons/green/mail.svg
index c829ef34de1052060afd3812de99fbab3ad8ae24..00f7099aeb1b1bef1ed314a2cf18c7d535952317 100644
--- a/public/assets/images/icons/green/mail.svg
+++ b/public/assets/images/icons/green/mail.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="3 17.92 3 45 51 45 51 17.83 26.93 37.18 3 17.92"/><polygon class="a" points="3 9 3 12 3 12.06 26.93 31.42 51 12.09 51 12 51 9 3 9"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="3 17.92 3 45 51 45 51 17.83 26.93 37.18 3 17.92"/><polygon class="a" points="3 9 3 12 3 12.06 26.93 31.42 51 12.09 51 12 51 9 3 9"/></svg>
diff --git a/public/assets/images/icons/green/mail2.svg b/public/assets/images/icons/green/mail2.svg
index 32f2c7a3615ffb124a0a9f66053ee436e0053431..933f842d6b0919e5a69d47143eacf519c84f7d70 100644
--- a/public/assets/images/icons/green/mail2.svg
+++ b/public/assets/images/icons/green/mail2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,9v5L27,31,51,14V9ZM27,24.84,11.65,14h30.7Z"/><polygon class="a" points="46 39.97 8 39.97 7.96 21.48 3 17.97 3 44.97 51 44.97 51 17.97 46.03 21.49 46 39.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,9v5L27,31,51,14V9ZM27,24.84,11.65,14h30.7Z"/><polygon class="a" points="46 39.97 8 39.97 7.96 21.48 3 17.97 3 44.97 51 44.97 51 17.97 46.03 21.49 46 39.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/maximize.svg b/public/assets/images/icons/green/maximize.svg
index d8da3d85bfdf2297fc9e493b940b72107c3d511a..e3283b35603c91e1d435e1e7c03b557a2a376ade 100644
--- a/public/assets/images/icons/green/maximize.svg
+++ b/public/assets/images/icons/green/maximize.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="maximise-1"><polygon points="27 39.03 27 48.03 6 48.03 6 27.03 15 27.03 15 24.03 3 24.03 3 51.03 30 51.03 30 39.03 27 39.03"/><path d="M15,3V39H51V3ZM48,36H18V11.94H48Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="maximise-1"><polygon points="27 39.03 27 48.03 6 48.03 6 27.03 15 27.03 15 24.03 3 24.03 3 51.03 30 51.03 30 39.03 27 39.03"/><path d="M15,3V39H51V3ZM48,36H18V11.94H48Z"/></g></svg>
diff --git a/public/assets/images/icons/green/microphone.svg b/public/assets/images/icons/green/microphone.svg
index ecfe7782f106c915b54b1dd479217a56d0b30482..b825b5781f733867ec725283fc4d5f40d4ac81c3 100644
--- a/public/assets/images/icons/green/microphone.svg
+++ b/public/assets/images/icons/green/microphone.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,36a7,7,0,0,0,7-7V10a7,7,0,1,0-14,0V29A7,7,0,0,0,27,36Z"/><path class="a" d="M40,29V27a3,3,0,0,0-3-3v4.65A10.24,10.24,0,0,1,27.68,39,10,10,0,0,1,17,29V24a3,3,0,0,0-3,3v2A13,13,0,0,0,25.5,41.88V46H20a3,3,0,0,0-3,3v2H37V49a3,3,0,0,0-3-3H28.5V41.88A13,13,0,0,0,40,29Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,36a7,7,0,0,0,7-7V10a7,7,0,1,0-14,0V29A7,7,0,0,0,27,36Z"/><path class="a" d="M40,29V27a3,3,0,0,0-3-3v4.65A10.24,10.24,0,0,1,27.68,39,10,10,0,0,1,17,29V24a3,3,0,0,0-3,3v2A13,13,0,0,0,25.5,41.88V46H20a3,3,0,0,0-3,3v2H37V49a3,3,0,0,0-3-3H28.5V41.88A13,13,0,0,0,40,29Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/module.svg b/public/assets/images/icons/green/module.svg
index 32dbc2b1416b2d90ff497b9b7070206f928f9be1..fe695659a1be9bc9e653e44d7aef43f35f86f7c7 100644
--- a/public/assets/images/icons/green/module.svg
+++ b/public/assets/images/icons/green/module.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="module"><path d="M8.94,26.08a14,14,0,0,1,14-14h0V6.17h0A19.92,19.92,0,0,0,3,26.08H8.94Zm19,12.46a7.48,7.48,0,0,0,0-14.95v7.48H20.44A7.49,7.49,0,0,0,27.93,38.54Zm0-27.39v5.93a14,14,0,1,1-14,14H8A19.91,19.91,0,1,0,27.93,11.15Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="module"><path d="M8.94,26.08a14,14,0,0,1,14-14h0V6.17h0A19.92,19.92,0,0,0,3,26.08H8.94Zm19,12.46a7.48,7.48,0,0,0,0-14.95v7.48H20.44A7.49,7.49,0,0,0,27.93,38.54Zm0-27.39v5.93a14,14,0,1,1-14,14H8A19.91,19.91,0,1,0,27.93,11.15Z"/></g></svg>
diff --git a/public/assets/images/icons/green/network.svg b/public/assets/images/icons/green/network.svg
index 109873cd1726c78b2328d9a59c0d28d8e6674da5..2fd4b14f812f5f1ada577a60b7b296276eed2ece 100644
--- a/public/assets/images/icons/green/network.svg
+++ b/public/assets/images/icons/green/network.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="network"><path class="cls-1" d="M51,30.43A3.42,3.42,0,0,0,47.57,27a3.36,3.36,0,0,0-2.91,1.73H28.71V23.05a3.39,3.39,0,0,0,1.72-2.91A3.44,3.44,0,0,0,27,16.71a3.36,3.36,0,0,0-2.9,1.72H18.41V9.34a3.36,3.36,0,0,0,1.73-2.91,3.43,3.43,0,1,0-6.85,0A3.38,3.38,0,0,0,15,9.32v9.11H9.33a3.38,3.38,0,0,0-2.9-1.72,3.43,3.43,0,0,0,0,6.86,3.39,3.39,0,0,0,2.9-1.71H15v5.68a3.38,3.38,0,0,0-1.69,2.89,3.43,3.43,0,0,0,3.42,3.43,3.38,3.38,0,0,0,2.9-1.7h5.68V44.67a3.38,3.38,0,0,0-1.72,2.9,3.43,3.43,0,0,0,6.86,0,3.38,3.38,0,0,0-1.72-2.9V32.16H39v9.07a3.36,3.36,0,0,0-1.73,2.91,3.43,3.43,0,1,0,6.85,0,3.37,3.37,0,0,0-1.7-2.89V32.16h2.24a3.37,3.37,0,0,0,2.89,1.7A3.43,3.43,0,0,0,51,30.43Zm-25.71-1.7H19.63a3.29,3.29,0,0,0-1.22-1.21V21.86H24.1a3.39,3.39,0,0,0,1.19,1.19Z"/><circle class="cls-1" cx="35.57" cy="11.57" r="5.14"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="network"><path class="cls-1" d="M51,30.43A3.42,3.42,0,0,0,47.57,27a3.36,3.36,0,0,0-2.91,1.73H28.71V23.05a3.39,3.39,0,0,0,1.72-2.91A3.44,3.44,0,0,0,27,16.71a3.36,3.36,0,0,0-2.9,1.72H18.41V9.34a3.36,3.36,0,0,0,1.73-2.91,3.43,3.43,0,1,0-6.85,0A3.38,3.38,0,0,0,15,9.32v9.11H9.33a3.38,3.38,0,0,0-2.9-1.72,3.43,3.43,0,0,0,0,6.86,3.39,3.39,0,0,0,2.9-1.71H15v5.68a3.38,3.38,0,0,0-1.69,2.89,3.43,3.43,0,0,0,3.42,3.43,3.38,3.38,0,0,0,2.9-1.7h5.68V44.67a3.38,3.38,0,0,0-1.72,2.9,3.43,3.43,0,0,0,6.86,0,3.38,3.38,0,0,0-1.72-2.9V32.16H39v9.07a3.36,3.36,0,0,0-1.73,2.91,3.43,3.43,0,1,0,6.85,0,3.37,3.37,0,0,0-1.7-2.89V32.16h2.24a3.37,3.37,0,0,0,2.89,1.7A3.43,3.43,0,0,0,51,30.43Zm-25.71-1.7H19.63a3.29,3.29,0,0,0-1.22-1.21V21.86H24.1a3.39,3.39,0,0,0,1.19,1.19Z"/><circle class="cls-1" cx="35.57" cy="11.57" r="5.14"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/news.svg b/public/assets/images/icons/green/news.svg
index cd3bfe04874b8708158e8b9b2030f399eee6d573..81da285d8a8cfad03bd91c913f924da5034920cf 100644
--- a/public/assets/images/icons/green/news.svg
+++ b/public/assets/images/icons/green/news.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/no-activity.svg b/public/assets/images/icons/green/no-activity.svg
index 23e9649c4855fd657c70008f64ba82b668159bbe..2366039ed886d1e79ec3fd231f3f8b2d43343ab7 100644
--- a/public/assets/images/icons/green/no-activity.svg
+++ b/public/assets/images/icons/green/no-activity.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><path id="no-activity" d="M3,3V51H51V3ZM48,6V26.62H19.23l-4-7.87-3.84,7.87H6V6ZM6,48V29.62H13.3l2-4.13,3.39,6.66,1.73-2.53H48V48Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><path id="no-activity" d="M3,3V51H51V3ZM48,6V26.62H19.23l-4-7.87-3.84,7.87H6V6ZM6,48V29.62H13.3l2-4.13,3.39,6.66,1.73-2.53H48V48Z"/></svg>
diff --git a/public/assets/images/icons/green/oer-campus.svg b/public/assets/images/icons/green/oer-campus.svg
index 039a938b546e59d10dea8da7ca480b688e9e6825..08d09f2a44296983ad91d124da09f55841a398d2 100644
--- a/public/assets/images/icons/green/oer-campus.svg
+++ b/public/assets/images/icons/green/oer-campus.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M17,22.07A12.38,12.38,0,1,1,34.58,33.55l1.41.57,8.28-2.83A17.37,17.37,0,1,0,12,22.34c0,.12,0,.23,0,.36Z"/><path class="a" d="M50.78,35.93a3.72,3.72,0,0,0-3.5-2.51,3.62,3.62,0,0,0-1.25.22L35.82,37.19,22.13,31.56l8.73-1.19A3.71,3.71,0,0,0,30.4,23l-.46,0L10.08,25.56a3.68,3.68,0,0,0-1.51.57A2.25,2.25,0,0,0,7.33,27.4l-.18.49c-.05.13-.1.25-.14.38L3.14,38.76a2.22,2.22,0,0,0,.18,1.92c.91,2,5.16,4.86,9.09,6.35l9.44,1.79a8.64,8.64,0,0,0,1.4.12l.45,0a3.81,3.81,0,0,0,.59,0,3.37,3.37,0,0,0,1.2-.21L27,48.23c.4-.12.82-.25,1.29-.41,5.15-1.66,10.9-3.7,13-4.56l.07,0,7.08-2.47A3.79,3.79,0,0,0,50.78,35.93Z"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M17,22.07A12.38,12.38,0,1,1,34.58,33.55l1.41.57,8.28-2.83A17.37,17.37,0,1,0,12,22.34c0,.12,0,.23,0,.36Z"/><path class="a" d="M50.78,35.93a3.72,3.72,0,0,0-3.5-2.51,3.62,3.62,0,0,0-1.25.22L35.82,37.19,22.13,31.56l8.73-1.19A3.71,3.71,0,0,0,30.4,23l-.46,0L10.08,25.56a3.68,3.68,0,0,0-1.51.57A2.25,2.25,0,0,0,7.33,27.4l-.18.49c-.05.13-.1.25-.14.38L3.14,38.76a2.22,2.22,0,0,0,.18,1.92c.91,2,5.16,4.86,9.09,6.35l9.44,1.79a8.64,8.64,0,0,0,1.4.12l.45,0a3.81,3.81,0,0,0,.59,0,3.37,3.37,0,0,0,1.2-.21L27,48.23c.4-.12.82-.25,1.29-.41,5.15-1.66,10.9-3.7,13-4.56l.07,0,7.08-2.47A3.79,3.79,0,0,0,50.78,35.93Z"/></svg>
diff --git a/public/assets/images/icons/green/oer-campus2.svg b/public/assets/images/icons/green/oer-campus2.svg
index ae6b32c88b710ec27ee42c788c7e723bd1258c0e..094ebd824b4ebf9f2814f327dade326ed7dfc4b3 100644
--- a/public/assets/images/icons/green/oer-campus2.svg
+++ b/public/assets/images/icons/green/oer-campus2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/opencast.svg b/public/assets/images/icons/green/opencast.svg
index a2786ebb0da9e690bb6b453015ce57f74a7b32d5..a78241bd4dbb6f5806a8a00e4c8d6b9b0006f1f1 100644
--- a/public/assets/images/icons/green/opencast.svg
+++ b/public/assets/images/icons/green/opencast.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M20,10,3,27,20,44,37,27ZM10.08,27,20,17.05,29.9,27,20,36.89Z"/><polygon class="a" points="34.01 9.97 30.5 13.48 43.99 26.97 30.5 40.46 34.01 43.97 51 26.97 34.01 9.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M20,10,3,27,20,44,37,27ZM10.08,27,20,17.05,29.9,27,20,36.89Z"/><polygon class="a" points="34.01 9.97 30.5 13.48 43.99 26.97 30.5 40.46 34.01 43.97 51 26.97 34.01 9.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/opencast2.svg b/public/assets/images/icons/green/opencast2.svg
index 85c2deba131ff34c3833e38b2204266018e6b86f..26c713299ad31f7ef6ff7ff8db054b7fe1ae0eca 100644
--- a/public/assets/images/icons/green/opencast2.svg
+++ b/public/assets/images/icons/green/opencast2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="31.02 6.97 29 8.99 46.96 26.97 29 44.95 31.02 46.97 51 26.97 31.02 6.97"/><path class="a" d="M23,7,3,27,23,47,43,27ZM7.29,27,23,11.26,38.71,27,23,42.68Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="31.02 6.97 29 8.99 46.96 26.97 29 44.95 31.02 46.97 51 26.97 31.02 6.97"/><path class="a" d="M23,7,3,27,23,47,43,27ZM7.29,27,23,11.26,38.71,27,23,42.68Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/pause.svg b/public/assets/images/icons/green/pause.svg
index 9f6da6412b2236c31f1211dc9d9484cccd3aae89..299111edc5283cbc47dd63faae8853ad5cc9a576 100644
--- a/public/assets/images/icons/green/pause.svg
+++ b/public/assets/images/icons/green/pause.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="12.01 45.99 23.99 46 24 8 12 8 12.01 45.99"/><polygon class="a" points="30.01 45.99 41.99 46 42 8 30 8 30.01 45.99"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="12.01 45.99 23.99 46 24 8 12 8 12.01 45.99"/><polygon class="a" points="30.01 45.99 41.99 46 42 8 30 8 30.01 45.99"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/permalink.svg b/public/assets/images/icons/green/permalink.svg
index 4c8ed4726337f0fff591504842dd5e112f029b27..75af98b61a5e686c9381d5af7d474a3fc1e2bf69 100644
--- a/public/assets/images/icons/green/permalink.svg
+++ b/public/assets/images/icons/green/permalink.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/person.svg b/public/assets/images/icons/green/person.svg
index b3fe9e758b33025c997f3178d7392f4477b7c168..5e407f8d520c0b80d0235299e58585d47fc2447c 100644
--- a/public/assets/images/icons/green/person.svg
+++ b/public/assets/images/icons/green/person.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M4.5,49.5V4.5h45v45Zm14.71-22a7.71,7.71,0,0,0-7.71,7.7v12.3h31V35.22a7.71,7.71,0,0,0-7.7-7.7ZM27,5.55A10.5,10.5,0,1,0,37.5,16,10.5,10.5,0,0,0,27,5.55Z"/><path class="a" d="M48,6V48H44V35.22A9.21,9.21,0,0,0,34.8,26H33.67a12,12,0,0,0-.11-20H48M20.44,6a12,12,0,0,0-.11,20H19.21A9.21,9.21,0,0,0,10,35.22V48H6V6H20.44M51,3H3V51H51V3ZM27,25.05a9,9,0,1,1,9-9,9,9,0,0,1-9,9ZM13,46V35.22A6.2,6.2,0,0,1,19.21,29H34.8a6.2,6.2,0,0,1,6.2,6.2V46Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M4.5,49.5V4.5h45v45Zm14.71-22a7.71,7.71,0,0,0-7.71,7.7v12.3h31V35.22a7.71,7.71,0,0,0-7.7-7.7ZM27,5.55A10.5,10.5,0,1,0,37.5,16,10.5,10.5,0,0,0,27,5.55Z"/><path class="a" d="M48,6V48H44V35.22A9.21,9.21,0,0,0,34.8,26H33.67a12,12,0,0,0-.11-20H48M20.44,6a12,12,0,0,0-.11,20H19.21A9.21,9.21,0,0,0,10,35.22V48H6V6H20.44M51,3H3V51H51V3ZM27,25.05a9,9,0,1,1,9-9,9,9,0,0,1-9,9ZM13,46V35.22A6.2,6.2,0,0,1,19.21,29H34.8a6.2,6.2,0,0,1,6.2,6.2V46Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/person2.svg b/public/assets/images/icons/green/person2.svg
index 352a548462d4f6e38ed4628b2ee7c00d8ae59c55..78f84b0ae5b39691070dde72e65d63392f31f989 100644
--- a/public/assets/images/icons/green/person2.svg
+++ b/public/assets/images/icons/green/person2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,27.05a9,9,0,1,0-9-9A9,9,0,0,0,27,27.05Z"/><path class="a" d="M3,3V51H51V3ZM48,48H41V37.22A6.2,6.2,0,0,0,34.8,31H19.21A6.2,6.2,0,0,0,13,37.22V48H6V6H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,27.05a9,9,0,1,0-9-9A9,9,0,0,0,27,27.05Z"/><path class="a" d="M3,3V51H51V3ZM48,48H41V37.22A6.2,6.2,0,0,0,34.8,31H19.21A6.2,6.2,0,0,0,13,37.22V48H6V6H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/persons.svg b/public/assets/images/icons/green/persons.svg
index 78621174184b9b439a12c94dfd4af29c4c6cafc6..dc023adbbbdbbe4ddea32237622bf668edb8dd56 100644
--- a/public/assets/images/icons/green/persons.svg
+++ b/public/assets/images/icons/green/persons.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,51H45V9H3ZM24,12a9,9,0,1,1-9,9A9,9,0,0,1,24,12ZM10,40.17A6.21,6.21,0,0,1,16.2,34H31.79A6.21,6.21,0,0,1,38,40.17V46H10Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,51H45V9H3ZM24,12a9,9,0,1,1-9,9A9,9,0,0,1,24,12ZM10,40.17A6.21,6.21,0,0,1,16.2,34H31.79A6.21,6.21,0,0,1,38,40.17V46H10Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/persons2.svg b/public/assets/images/icons/green/persons2.svg
index 5d4ecfd382275239fb3a669de107b06ac9df408b..f343b5f3c750445e8f3f015dd0af3c869155ae75 100644
--- a/public/assets/images/icons/green/persons2.svg
+++ b/public/assets/images/icons/green/persons2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,51H45V9H3ZM6,12H42V48H38v-4.8A6.21,6.21,0,0,0,31.79,37H16.2a6.21,6.21,0,0,0-6.2,6.2V48H6Z"/><path class="a" d="M24,33a9,9,0,1,0-9-9A9,9,0,0,0,24,33Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,51H45V9H3ZM6,12H42V48H38v-4.8A6.21,6.21,0,0,0,31.79,37H16.2a6.21,6.21,0,0,0-6.2,6.2V48H6Z"/><path class="a" d="M24,33a9,9,0,1,0-9-9A9,9,0,0,0,24,33Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/play.svg b/public/assets/images/icons/green/play.svg
index d7f047e7cf728fbe4887aec3f481b06fe714992f..f627dca9df6d8d45c1d530750ba700ff47ac10dd 100644
--- a/public/assets/images/icons/green/play.svg
+++ b/public/assets/images/icons/green/play.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="arrows"><g id="play"><polygon class="cls-1" points="14.99 44.91 42 26.91 15 8.91 14.99 44.91"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="arrows"><g id="play"><polygon class="cls-1" points="14.99 44.91 42 26.91 15 8.91 14.99 44.91"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/plugin.svg b/public/assets/images/icons/green/plugin.svg
index 37acdf4dde6213df043c81af4a7fd110a9672bd7..51f4647767ed33b064ed895265c33c5d0cc5bad4 100644
--- a/public/assets/images/icons/green/plugin.svg
+++ b/public/assets/images/icons/green/plugin.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M31.35,6l.54,4.28A16.51,16.51,0,0,0,29,10a17.75,17.75,0,0,0-2.81.23,17,17,0,1,0,9.73,32.29L36.6,48H6V6H31.35M34,3H3V51H40L38.72,40.74a2,2,0,0,0-2-1.74,2,2,0,0,0-1,.26A13.82,13.82,0,0,1,29,41a14,14,0,0,1-2.33-27.81A14.35,14.35,0,0,1,29,13a13.74,13.74,0,0,1,3.54.46,2.4,2.4,0,0,0,.52.07,2,2,0,0,0,2-2.25L34,3Z"/><path class="a" d="M37,3l1.66,13.3a2,2,0,0,1-3.21,1.82,11,11,0,0,0-7.53-2A11,11,0,0,0,29,38a11,11,0,0,0,8.46-4A2,2,0,0,1,41,35C41.88,42,43,51,43,51h8V3Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M31.35,6l.54,4.28A16.51,16.51,0,0,0,29,10a17.75,17.75,0,0,0-2.81.23,17,17,0,1,0,9.73,32.29L36.6,48H6V6H31.35M34,3H3V51H40L38.72,40.74a2,2,0,0,0-2-1.74,2,2,0,0,0-1,.26A13.82,13.82,0,0,1,29,41a14,14,0,0,1-2.33-27.81A14.35,14.35,0,0,1,29,13a13.74,13.74,0,0,1,3.54.46,2.4,2.4,0,0,0,.52.07,2,2,0,0,0,2-2.25L34,3Z"/><path class="a" d="M37,3l1.66,13.3a2,2,0,0,1-3.21,1.82,11,11,0,0,0-7.53-2A11,11,0,0,0,29,38a11,11,0,0,0,8.46-4A2,2,0,0,1,41,35C41.88,42,43,51,43,51h8V3Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/plugin2.svg b/public/assets/images/icons/green/plugin2.svg
index 9d35c87e0793b931d339f7a6df49a39357692827..eca8d798dcbad4f99a90a0f31181f5ff8f9fb17a 100644
--- a/public/assets/images/icons/green/plugin2.svg
+++ b/public/assets/images/icons/green/plugin2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M38.75,24.61a7,7,0,0,1,4.6,1.76A1,1,0,0,0,45,25.62v-9.8H33.58a1,1,0,0,1-.75-1.65,6.6,6.6,0,0,0,1.66-4.31,7,7,0,0,0-14-.13,6.61,6.61,0,0,0,1.66,4.45,1,1,0,0,1-.75,1.64H9V51h7.49a1,1,0,0,0,.76-1.64,6.72,6.72,0,0,1-1.67-4.49,7,7,0,0,1,14,.14,6.7,6.7,0,0,1-1.67,4.34A1,1,0,0,0,28.64,51H45V37.27a1,1,0,0,0-1.64-.77,7.05,7.05,0,0,1-4.75,1.76,6.83,6.83,0,1,1,.14-13.65Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M38.75,24.61a7,7,0,0,1,4.6,1.76A1,1,0,0,0,45,25.62v-9.8H33.58a1,1,0,0,1-.75-1.65,6.6,6.6,0,0,0,1.66-4.31,7,7,0,0,0-14-.13,6.61,6.61,0,0,0,1.66,4.45,1,1,0,0,1-.75,1.64H9V51h7.49a1,1,0,0,0,.76-1.64,6.72,6.72,0,0,1-1.67-4.49,7,7,0,0,1,14,.14,6.7,6.7,0,0,1-1.67,4.34A1,1,0,0,0,28.64,51H45V37.27a1,1,0,0,0-1.64-.77,7.05,7.05,0,0,1-4.75,1.76,6.83,6.83,0,1,1,.14-13.65Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/privacy.svg b/public/assets/images/icons/green/privacy.svg
index b6dfe9461b9f264c352ac66a034e8b745cf4c084..850b7d68b2a2403a6b425bf96d02c646f7404bac 100644
--- a/public/assets/images/icons/green/privacy.svg
+++ b/public/assets/images/icons/green/privacy.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="privacy"><path d="M27.87,14.51H23V24.75h5.13a6.47,6.47,0,0,0,4.4-1.35,4.84,4.84,0,0,0,1.55-3.86Q34.1,14.52,27.87,14.51Z"/><path d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM37.52,24.72a8.21,8.21,0,0,1-3.91,3.2,20,20,0,0,1-7.12,1H23V43.11H18.31V10.34H28.69a10.68,10.68,0,0,1,7.47,2.53A8.71,8.71,0,0,1,39,19.66,9.1,9.1,0,0,1,37.52,24.72Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="privacy"><path d="M27.87,14.51H23V24.75h5.13a6.47,6.47,0,0,0,4.4-1.35,4.84,4.84,0,0,0,1.55-3.86Q34.1,14.52,27.87,14.51Z"/><path d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM37.52,24.72a8.21,8.21,0,0,1-3.91,3.2,20,20,0,0,1-7.12,1H23V43.11H18.31V10.34H28.69a10.68,10.68,0,0,1,7.47,2.53A8.71,8.71,0,0,1,39,19.66,9.1,9.1,0,0,1,37.52,24.72Z"/></g></svg>
diff --git a/public/assets/images/icons/green/question-circle-full.svg b/public/assets/images/icons/green/question-circle-full.svg
index e729a7facca82e6b94d937516e2a894591c2b4f3..27107790f9754e082d35d5b4bc0cda26832c923b 100644
--- a/public/assets/images/icons/green/question-circle-full.svg
+++ b/public/assets/images/icons/green/question-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/question-circle.svg b/public/assets/images/icons/green/question-circle.svg
index e729a7facca82e6b94d937516e2a894591c2b4f3..27107790f9754e082d35d5b4bc0cda26832c923b 100644
--- a/public/assets/images/icons/green/question-circle.svg
+++ b/public/assets/images/icons/green/question-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/refresh.svg b/public/assets/images/icons/green/refresh.svg
index ebfef3aaeead7dea1b3f283e413f169592c0f03d..22868f925f1a32d503a88253de2ee11e26d4f8d1 100644
--- a/public/assets/images/icons/green/refresh.svg
+++ b/public/assets/images/icons/green/refresh.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="refresh"><path class="cls-1" d="M27,44A17,17,0,0,1,10.63,31.46l4.88,1.31,4.24-2.45L6.54,26.77,3,40l4.24-2.45,1-3.76A19.93,19.93,0,0,0,46.33,32l-2.9-.75A17,17,0,0,1,27,44Z"/><path class="cls-1" d="M46.76,16.51l-1,3.72a19.93,19.93,0,0,0-38.1,1.82l2.9.75a16.95,16.95,0,0,1,32.81-.2l-4.89-1.31-4.24,2.45,13.21,3.55L51,14.06Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="refresh"><path class="cls-1" d="M27,44A17,17,0,0,1,10.63,31.46l4.88,1.31,4.24-2.45L6.54,26.77,3,40l4.24-2.45,1-3.76A19.93,19.93,0,0,0,46.33,32l-2.9-.75A17,17,0,0,1,27,44Z"/><path class="cls-1" d="M46.76,16.51l-1,3.72a19.93,19.93,0,0,0-38.1,1.82l2.9.75a16.95,16.95,0,0,1,32.81-.2l-4.89-1.31-4.24,2.45,13.21,3.55L51,14.06Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/remove-circle-full.svg b/public/assets/images/icons/green/remove-circle-full.svg
index f3ce30146300baae352d09833d5b290f754265db..7911a06b5a73d22a2ff05281fe476846dd84ea74 100644
--- a/public/assets/images/icons/green/remove-circle-full.svg
+++ b/public/assets/images/icons/green/remove-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/remove-circle.svg b/public/assets/images/icons/green/remove-circle.svg
index f3ce30146300baae352d09833d5b290f754265db..7911a06b5a73d22a2ff05281fe476846dd84ea74 100644
--- a/public/assets/images/icons/green/remove-circle.svg
+++ b/public/assets/images/icons/green/remove-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/remove.svg b/public/assets/images/icons/green/remove.svg
index 878c3fecbc0ebabdcad9808f2ae3fa7fda56594e..e8ea08e45e62e2464d29168e46e739997bb1216d 100644
--- a/public/assets/images/icons/green/remove.svg
+++ b/public/assets/images/icons/green/remove.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="48 32 48 22 6 22 6 32 48 32"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="48 32 48 22 6 22 6 32 48 32"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/resources-broken.svg b/public/assets/images/icons/green/resources-broken.svg
index 7cd9c4b81eb921b1257a8b876d48645a8b1742c2..bde02348085f67b3f4f83f2143bcdd9cd374b2f3 100644
--- a/public/assets/images/icons/green/resources-broken.svg
+++ b/public/assets/images/icons/green/resources-broken.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="resources-broken"><polygon class="cls-1" points="24.93 49.54 24.93 36.7 22.46 49.54 24.93 49.54"/><polygon class="cls-1" points="37.76 4.43 31.82 4.43 30.57 10.91 32.8 8.65 36.05 11.94 28.99 19.09 27.54 26.65 37.76 26.65 37.76 4.43"/><path class="cls-1" d="M28.76,31V53H50.69V31Zm14.1,11h0l4.45,4.47L44.18,49.6l-4.45-4.47L35.28,49.6l-3.14-3.15L36.59,42h0l-4.44-4.47L33.7,36l1.58-1.58,4.45,4.47,4.45-4.47,3.13,3.15L42.86,42Z"/><polygon class="cls-1" points="3 27.51 3 49.54 18.82 49.54 19.47 46.14 16.1 46.14 16.1 40.35 11.83 40.35 11.83 46.14 7.76 46.14 7.76 38.74 6.55 38.74 13.97 30.91 20.98 38.31 23.06 27.51 3 27.51"/><polygon class="cls-1" points="20.18 42.47 20.89 38.74 20.18 38.74 20.18 42.47"/><polygon class="cls-1" points="15.86 0.97 15.86 23.19 23.89 23.19 24.61 19.43 17.57 12.29 20.81 9 24.92 13.18 26.04 12.05 28.17 0.97 15.86 0.97"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="resources-broken"><polygon class="cls-1" points="24.93 49.54 24.93 36.7 22.46 49.54 24.93 49.54"/><polygon class="cls-1" points="37.76 4.43 31.82 4.43 30.57 10.91 32.8 8.65 36.05 11.94 28.99 19.09 27.54 26.65 37.76 26.65 37.76 4.43"/><path class="cls-1" d="M28.76,31V53H50.69V31Zm14.1,11h0l4.45,4.47L44.18,49.6l-4.45-4.47L35.28,49.6l-3.14-3.15L36.59,42h0l-4.44-4.47L33.7,36l1.58-1.58,4.45,4.47,4.45-4.47,3.13,3.15L42.86,42Z"/><polygon class="cls-1" points="3 27.51 3 49.54 18.82 49.54 19.47 46.14 16.1 46.14 16.1 40.35 11.83 40.35 11.83 46.14 7.76 46.14 7.76 38.74 6.55 38.74 13.97 30.91 20.98 38.31 23.06 27.51 3 27.51"/><polygon class="cls-1" points="20.18 42.47 20.89 38.74 20.18 38.74 20.18 42.47"/><polygon class="cls-1" points="15.86 0.97 15.86 23.19 23.89 23.19 24.61 19.43 17.57 12.29 20.81 9 24.92 13.18 26.04 12.05 28.17 0.97 15.86 0.97"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/resources.svg b/public/assets/images/icons/green/resources.svg
index cdfea9c7c91092859965f963d2483e53d30fd34b..a881b0d7b495e3770a9c59bb8b08b6349576d183 100644
--- a/public/assets/images/icons/green/resources.svg
+++ b/public/assets/images/icons/green/resources.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="resources"><path class="cls-1" d="M29,29V51H51V29ZM47.61,44.46,44.46,47.6,40,43.14,35.54,47.6l-3.15-3.14L36.86,40,32.4,35.53l3.14-3.14L40,36.86l4.46-4.47,3.15,3.15L43.14,40Z"/><path class="cls-1" d="M16,3V25H38V3Zm9.12,18.6-7.4-7.4L21,11l4.14,4.14L33,7.18l3.26,3.25Z"/><path class="cls-1" d="M3,29V51H25V29ZM20.23,40.21V47.6H16.14V41.82H11.86V47.6H7.77V40.21H6.56L14,32.39l7.44,7.82Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="resources"><path class="cls-1" d="M29,29V51H51V29ZM47.61,44.46,44.46,47.6,40,43.14,35.54,47.6l-3.15-3.14L36.86,40,32.4,35.53l3.14-3.14L40,36.86l4.46-4.47,3.15,3.15L43.14,40Z"/><path class="cls-1" d="M16,3V25H38V3Zm9.12,18.6-7.4-7.4L21,11l4.14,4.14L33,7.18l3.26,3.25Z"/><path class="cls-1" d="M3,29V51H25V29ZM20.23,40.21V47.6H16.14V41.82H11.86V47.6H7.77V40.21H6.56L14,32.39l7.44,7.82Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/roles2.svg b/public/assets/images/icons/green/roles2.svg
index 53cfa93127b64550bfd87bdfaffa08430bb274dd..9aa29a32abe6c9d62fbd14aafad040497e7a67c2 100644
--- a/public/assets/images/icons/green/roles2.svg
+++ b/public/assets/images/icons/green/roles2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="roles2"><path class="cls-1" d="M19,10a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-5A10,10,0,1,0,29,15,10,10,0,0,0,19,5Z"/><path class="cls-1" d="M30,44v0H8V36a3,3,0,0,1,3-3H22.86L26,28H11a8,8,0,0,0-8,8V49H35V44Z"/><path class="cls-1" d="M48.35,5.68a5.4,5.4,0,0,0-7.22,1.87L40.25,9l-1.33,2.21L27,31.1,27.13,41l9.05-4.78L48.09,16.33l1.32-2.21.88-1.47A5,5,0,0,0,48.35,5.68ZM34.26,34.3l-1.66.88-2.91-1.62,0-1.79L41.21,12.5l4.59,2.55Zm8.28-24,.88-1.48A2.71,2.71,0,0,1,47,7.89a2.5,2.5,0,0,1,1,3.48l-.88,1.48Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="roles2"><path class="cls-1" d="M19,10a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-5A10,10,0,1,0,29,15,10,10,0,0,0,19,5Z"/><path class="cls-1" d="M30,44v0H8V36a3,3,0,0,1,3-3H22.86L26,28H11a8,8,0,0,0-8,8V49H35V44Z"/><path class="cls-1" d="M48.35,5.68a5.4,5.4,0,0,0-7.22,1.87L40.25,9l-1.33,2.21L27,31.1,27.13,41l9.05-4.78L48.09,16.33l1.32-2.21.88-1.47A5,5,0,0,0,48.35,5.68ZM34.26,34.3l-1.66.88-2.91-1.62,0-1.79L41.21,12.5l4.59,2.55Zm8.28-24,.88-1.48A2.71,2.71,0,0,1,47,7.89a2.5,2.5,0,0,1,1,3.48l-.88,1.48Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/room.svg b/public/assets/images/icons/green/room.svg
index f122bb17ba659d64999fe847d65fdb2c0700e846..fe87e392eaa16693c77cc52489aef932a73d2486 100644
--- a/public/assets/images/icons/green/room.svg
+++ b/public/assets/images/icons/green/room.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="room"><polygon points="51 37.2 44.14 37.2 44.14 43.94 9.86 43.94 9.86 9.65 44.14 9.77 44.14 16.62 51 16.62 51 2.79 3 2.79 3 50.79 51 50.79 51 37.2"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="room"><polygon points="51 37.2 44.14 37.2 44.14 43.94 9.86 43.94 9.86 9.65 44.14 9.77 44.14 16.62 51 16.62 51 2.79 3 2.79 3 50.79 51 50.79 51 37.2"/></g></svg>
diff --git a/public/assets/images/icons/green/schedule.svg b/public/assets/images/icons/green/schedule.svg
index 1dd1dc6927b78f046d5f5bd10834c3b64c048b54..924144d9d83302d4ab20553c0584fd1524ac8681 100644
--- a/public/assets/images/icons/green/schedule.svg
+++ b/public/assets/images/icons/green/schedule.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M18.68,37.5V31.66L14.35,37.5Zm18-21.06a2.83,2.83,0,0,0,2.83-2.82V5.82a2.83,2.83,0,0,0-5.65,0v7.8A2.82,2.82,0,0,0,36.73,16.44Zm-19.46,0a2.82,2.82,0,0,0,2.82-2.82V5.82a2.82,2.82,0,0,0-5.64,0v7.8A2.82,2.82,0,0,0,17.27,16.44ZM43,12.05v1.89a6.3,6.3,0,0,1-12.6,0V12.05H23.57v1.89a6.3,6.3,0,0,1-12.6,0V12.05H3V51H51V12.05ZM25.36,41.2a3.35,3.35,0,0,1-1.87.46h-.31v2a2.76,2.76,0,0,1-.6,1.93,2.13,2.13,0,0,1-1.62.7h0a2.12,2.12,0,0,1-1.64-.71,2.79,2.79,0,0,1-.61-1.92v-2H12.3A3.38,3.38,0,0,1,10,40.93a2.63,2.63,0,0,1-.83-2,1.94,1.94,0,0,1,.13-.71,3.6,3.6,0,0,1,.34-.68c.13-.2.28-.41.42-.59s.31-.41.51-.68l7.29-9.76A13.23,13.23,0,0,1,19.08,25a2.08,2.08,0,0,1,1.48-.57,2.49,2.49,0,0,1,2,.78,3.26,3.26,0,0,1,.66,2.14V37.51h.06a4.62,4.62,0,0,1,1.92.33,1.77,1.77,0,0,1,.95,1.75A1.83,1.83,0,0,1,25.36,41.2Zm16.35,4.13A2.3,2.3,0,0,1,40,46H29.8a2.71,2.71,0,0,1-1.95-.72,2.36,2.36,0,0,1-.74-1.72A4.06,4.06,0,0,1,27.53,42a5.32,5.32,0,0,1,.92-1.44q1.83-1.9,3.33-3.27a21.23,21.23,0,0,1,2.15-1.83,11.55,11.55,0,0,0,1.8-1.53,6.26,6.26,0,0,0,1.05-1.51A3.46,3.46,0,0,0,37.12,31a2.44,2.44,0,0,0-.34-1.31,2.41,2.41,0,0,0-.94-.88,3,3,0,0,0-1.32-.33,2.72,2.72,0,0,0-2.4,1.35,7.69,7.69,0,0,0-.4,1,5.19,5.19,0,0,1-.82,1.58,2,2,0,0,1-1.6.69,2.11,2.11,0,0,1-1.52-.61,2.24,2.24,0,0,1-.61-1.62,5.64,5.64,0,0,1,.47-2.18A6.06,6.06,0,0,1,29,26.62a6.83,6.83,0,0,1,2.32-1.47,8.85,8.85,0,0,1,3.25-.56,9.35,9.35,0,0,1,3.81.71A6.19,6.19,0,0,1,42,30.88,6.37,6.37,0,0,1,41,34.26a10.22,10.22,0,0,1-1.82,2.31c-.6.54-1.59,1.37-3,2.5a22.87,22.87,0,0,0-2.78,2.57h6.12a3.14,3.14,0,0,1,2,.55,2,2,0,0,1,.77,1.62A2.15,2.15,0,0,1,41.71,45.33Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M18.68,37.5V31.66L14.35,37.5Zm18-21.06a2.83,2.83,0,0,0,2.83-2.82V5.82a2.83,2.83,0,0,0-5.65,0v7.8A2.82,2.82,0,0,0,36.73,16.44Zm-19.46,0a2.82,2.82,0,0,0,2.82-2.82V5.82a2.82,2.82,0,0,0-5.64,0v7.8A2.82,2.82,0,0,0,17.27,16.44ZM43,12.05v1.89a6.3,6.3,0,0,1-12.6,0V12.05H23.57v1.89a6.3,6.3,0,0,1-12.6,0V12.05H3V51H51V12.05ZM25.36,41.2a3.35,3.35,0,0,1-1.87.46h-.31v2a2.76,2.76,0,0,1-.6,1.93,2.13,2.13,0,0,1-1.62.7h0a2.12,2.12,0,0,1-1.64-.71,2.79,2.79,0,0,1-.61-1.92v-2H12.3A3.38,3.38,0,0,1,10,40.93a2.63,2.63,0,0,1-.83-2,1.94,1.94,0,0,1,.13-.71,3.6,3.6,0,0,1,.34-.68c.13-.2.28-.41.42-.59s.31-.41.51-.68l7.29-9.76A13.23,13.23,0,0,1,19.08,25a2.08,2.08,0,0,1,1.48-.57,2.49,2.49,0,0,1,2,.78,3.26,3.26,0,0,1,.66,2.14V37.51h.06a4.62,4.62,0,0,1,1.92.33,1.77,1.77,0,0,1,.95,1.75A1.83,1.83,0,0,1,25.36,41.2Zm16.35,4.13A2.3,2.3,0,0,1,40,46H29.8a2.71,2.71,0,0,1-1.95-.72,2.36,2.36,0,0,1-.74-1.72A4.06,4.06,0,0,1,27.53,42a5.32,5.32,0,0,1,.92-1.44q1.83-1.9,3.33-3.27a21.23,21.23,0,0,1,2.15-1.83,11.55,11.55,0,0,0,1.8-1.53,6.26,6.26,0,0,0,1.05-1.51A3.46,3.46,0,0,0,37.12,31a2.44,2.44,0,0,0-.34-1.31,2.41,2.41,0,0,0-.94-.88,3,3,0,0,0-1.32-.33,2.72,2.72,0,0,0-2.4,1.35,7.69,7.69,0,0,0-.4,1,5.19,5.19,0,0,1-.82,1.58,2,2,0,0,1-1.6.69,2.11,2.11,0,0,1-1.52-.61,2.24,2.24,0,0,1-.61-1.62,5.64,5.64,0,0,1,.47-2.18A6.06,6.06,0,0,1,29,26.62a6.83,6.83,0,0,1,2.32-1.47,8.85,8.85,0,0,1,3.25-.56,9.35,9.35,0,0,1,3.81.71A6.19,6.19,0,0,1,42,30.88,6.37,6.37,0,0,1,41,34.26a10.22,10.22,0,0,1-1.82,2.31c-.6.54-1.59,1.37-3,2.5a22.87,22.87,0,0,0-2.78,2.57h6.12a3.14,3.14,0,0,1,2,.55,2,2,0,0,1,.77,1.62A2.15,2.15,0,0,1,41.71,45.33Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/schedule2.svg b/public/assets/images/icons/green/schedule2.svg
index 9fcfe2adffd3fd02ba141bc657da1be6079d67b1..1e1cbc25e9d8f20e671eeb8940fe17558c1b33a2 100644
--- a/public/assets/images/icons/green/schedule2.svg
+++ b/public/assets/images/icons/green/schedule2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><rect class="a" x="17.93" y="6.97" width="18.09" height="5"/><polygon class="a" points="40.93 6.97 40.93 11.97 46 11.97 46 45.97 8 45.97 8 11.97 13.02 11.97 13.02 6.97 3 6.97 3 50.97 51 50.97 51 6.97 40.93 6.97"/><path class="a" d="M35.47,16A2.62,2.62,0,0,0,38,13.24V5.69a2.51,2.51,0,1,0-5,0v7.55A2.63,2.63,0,0,0,35.47,16Z"/><path class="a" d="M18.52,16A2.63,2.63,0,0,0,21,13.24V5.69A2.63,2.63,0,0,0,18.52,3,2.62,2.62,0,0,0,16,5.69v7.55A2.62,2.62,0,0,0,18.52,16Z"/><path class="a" d="M20.45,36H14a1.92,1.92,0,0,1-2-2,2.77,2.77,0,0,1,.49-1.71l8-11.46A1.87,1.87,0,0,1,22.14,20c1.39,0,1.93.84,1.93,2.09V32.64h1.3a1.67,1.67,0,0,1,0,3.31h-1.3v3c0,1.22-.46,2-1.81,2s-1.81-.81-1.81-2Zm0-10.82H20.4l-5,7.51h5Z"/><path class="a" d="M40.29,36.94A1.59,1.59,0,0,1,42,38.77c0,1.3-.72,1.82-1.91,1.82h-9.7a2,2,0,0,1-2.12-2.14c0-2.06,1.63-4.36,4.86-6.65,3.6-2.55,4.84-3.07,4.84-5.42a2.72,2.72,0,0,0-2.72-2.93c-1.65,0-2.76.75-3.33,3.07-.26,1.08-.6,1.63-1.63,1.63a1.71,1.71,0,0,1-1.89-1.94c0-3.54,3.1-6.24,6.9-6.24,4.14,0,6.6,3.05,6.6,5.71,0,3.86-1.58,5.37-4.32,7.11-2.92,1.86-4.71,3.05-5,4.15Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><rect class="a" x="17.93" y="6.97" width="18.09" height="5"/><polygon class="a" points="40.93 6.97 40.93 11.97 46 11.97 46 45.97 8 45.97 8 11.97 13.02 11.97 13.02 6.97 3 6.97 3 50.97 51 50.97 51 6.97 40.93 6.97"/><path class="a" d="M35.47,16A2.62,2.62,0,0,0,38,13.24V5.69a2.51,2.51,0,1,0-5,0v7.55A2.63,2.63,0,0,0,35.47,16Z"/><path class="a" d="M18.52,16A2.63,2.63,0,0,0,21,13.24V5.69A2.63,2.63,0,0,0,18.52,3,2.62,2.62,0,0,0,16,5.69v7.55A2.62,2.62,0,0,0,18.52,16Z"/><path class="a" d="M20.45,36H14a1.92,1.92,0,0,1-2-2,2.77,2.77,0,0,1,.49-1.71l8-11.46A1.87,1.87,0,0,1,22.14,20c1.39,0,1.93.84,1.93,2.09V32.64h1.3a1.67,1.67,0,0,1,0,3.31h-1.3v3c0,1.22-.46,2-1.81,2s-1.81-.81-1.81-2Zm0-10.82H20.4l-5,7.51h5Z"/><path class="a" d="M40.29,36.94A1.59,1.59,0,0,1,42,38.77c0,1.3-.72,1.82-1.91,1.82h-9.7a2,2,0,0,1-2.12-2.14c0-2.06,1.63-4.36,4.86-6.65,3.6-2.55,4.84-3.07,4.84-5.42a2.72,2.72,0,0,0-2.72-2.93c-1.65,0-2.76.75-3.33,3.07-.26,1.08-.6,1.63-1.63,1.63a1.71,1.71,0,0,1-1.89-1.94c0-3.54,3.1-6.24,6.9-6.24,4.14,0,6.6,3.05,6.6,5.71,0,3.86-1.58,5.37-4.32,7.11-2.92,1.86-4.71,3.05-5,4.15Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/search.svg b/public/assets/images/icons/green/search.svg
index a1a42fdb9e7eacede175668d76d1e4a30fec1da2..945514d45441f9539bec8a7a399b57ed36bb00f0 100644
--- a/public/assets/images/icons/green/search.svg
+++ b/public/assets/images/icons/green/search.svg
@@ -1 +1 @@
-<svg id="Icons_NEUES_LAYOUT_2021" data-name="Icons – NEUES LAYOUT 2021" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="search2"><path class="cls-1" d="M49.54,42.46,38,31c-.14-.13-.3-.24-.45-.36a18.54,18.54,0,1,0-7,7c.12.15.23.31.36.45l11.5,11.5a5,5,0,0,0,7.08-7.08ZM9,21.5A12.5,12.5,0,1,1,21.5,34,12.52,12.52,0,0,1,9,21.5Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="Icons_NEUES_LAYOUT_2021" data-name="Icons – NEUES LAYOUT 2021" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="search2"><path class="cls-1" d="M49.54,42.46,38,31c-.14-.13-.3-.24-.45-.36a18.54,18.54,0,1,0-7,7c.12.15.23.31.36.45l11.5,11.5a5,5,0,0,0,7.08-7.08ZM9,21.5A12.5,12.5,0,1,1,21.5,34,12.52,12.52,0,0,1,9,21.5Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/service.svg b/public/assets/images/icons/green/service.svg
index ae6b32c88b710ec27ee42c788c7e723bd1258c0e..094ebd824b4ebf9f2814f327dade326ed7dfc4b3 100644
--- a/public/assets/images/icons/green/service.svg
+++ b/public/assets/images/icons/green/service.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/share.svg b/public/assets/images/icons/green/share.svg
index da4c2a5f31ff1f2d890c138ee5ece3a7fbed2a08..707323e29a200e06bf8eb049e0422f50866d090e 100644
--- a/public/assets/images/icons/green/share.svg
+++ b/public/assets/images/icons/green/share.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/smiley.svg b/public/assets/images/icons/green/smiley.svg
index 691553bf0a7559d5edb6c3f3671dc5ac92d8e709..db48eb0c0c3433a5896c9e6cdbcc4c90619497d7 100644
--- a/public/assets/images/icons/green/smiley.svg
+++ b/public/assets/images/icons/green/smiley.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3Zm0,45A21,21,0,1,1,48,27,21,21,0,0,1,27,48Z"/><path class="a" d="M32.24,25.23c2.18-.15,3.81-2.53,3.63-5.3s-2.11-4.91-4.3-4.77-3.82,2.53-3.63,5.3S30.05,25.37,32.24,25.23Z"/><path class="a" d="M21.26,25.83c2.18-.15,3.81-2.52,3.63-5.3s-2.11-4.91-4.3-4.76S16.77,18.29,17,21.06,19.07,26,21.26,25.83Z"/><path class="a" d="M44.25,23.67a1.5,1.5,0,1,0-3,.42,14.5,14.5,0,0,1-28.72,4.05,1.49,1.49,0,0,0-1.69-1.27A1.51,1.51,0,0,0,9.6,28.58a17.58,17.58,0,0,0,17.32,15,17,17,0,0,0,2.46-.17A17.52,17.52,0,0,0,44.25,23.67Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3Zm0,45A21,21,0,1,1,48,27,21,21,0,0,1,27,48Z"/><path class="a" d="M32.24,25.23c2.18-.15,3.81-2.53,3.63-5.3s-2.11-4.91-4.3-4.77-3.82,2.53-3.63,5.3S30.05,25.37,32.24,25.23Z"/><path class="a" d="M21.26,25.83c2.18-.15,3.81-2.52,3.63-5.3s-2.11-4.91-4.3-4.76S16.77,18.29,17,21.06,19.07,26,21.26,25.83Z"/><path class="a" d="M44.25,23.67a1.5,1.5,0,1,0-3,.42,14.5,14.5,0,0,1-28.72,4.05,1.49,1.49,0,0,0-1.69-1.27A1.51,1.51,0,0,0,9.6,28.58a17.58,17.58,0,0,0,17.32,15,17,17,0,0,0,2.46-.17A17.52,17.52,0,0,0,44.25,23.67Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/spiral.svg b/public/assets/images/icons/green/spiral.svg
index 7e93c8b74022d49f8794f35fc8a2b85dc67397b4..9455986b67a3b51ece0451fed959e731413bb4a3 100644
--- a/public/assets/images/icons/green/spiral.svg
+++ b/public/assets/images/icons/green/spiral.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="spiral"><path class="cls-1" d="M3,27A24,24,0,1,0,27,3,24,24,0,0,0,3,27ZM44.57,16.35a20.42,20.42,0,0,1-8.48,27A16.06,16.06,0,0,1,14.31,37a12.49,12.49,0,0,1,4.93-17,9.67,9.67,0,0,1,13.12,3.81A7.33,7.33,0,0,1,33,29.47a7.41,7.41,0,0,1-3.55,4.42,5.59,5.59,0,0,1-7.58-2.21,4.13,4.13,0,0,1,1.63-5.61,3,3,0,0,1,4,1.17,1.67,1.67,0,1,0,2.93-1.61,6.33,6.33,0,0,0-8.58-2.49,7.49,7.49,0,0,0-2.95,10.15,8.94,8.94,0,0,0,12.12,3.52,10.73,10.73,0,0,0,4.24-14.58A13,13,0,0,0,17.63,17.1a15.84,15.84,0,0,0-6.25,21.51,19.26,19.26,0,0,0,5.8,6.46A20.56,20.56,0,1,1,44.57,16.35Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="spiral"><path class="cls-1" d="M3,27A24,24,0,1,0,27,3,24,24,0,0,0,3,27ZM44.57,16.35a20.42,20.42,0,0,1-8.48,27A16.06,16.06,0,0,1,14.31,37a12.49,12.49,0,0,1,4.93-17,9.67,9.67,0,0,1,13.12,3.81A7.33,7.33,0,0,1,33,29.47a7.41,7.41,0,0,1-3.55,4.42,5.59,5.59,0,0,1-7.58-2.21,4.13,4.13,0,0,1,1.63-5.61,3,3,0,0,1,4,1.17,1.67,1.67,0,1,0,2.93-1.61,6.33,6.33,0,0,0-8.58-2.49,7.49,7.49,0,0,0-2.95,10.15,8.94,8.94,0,0,0,12.12,3.52,10.73,10.73,0,0,0,4.24-14.58A13,13,0,0,0,17.63,17.1a15.84,15.84,0,0,0-6.25,21.51,19.26,19.26,0,0,0,5.8,6.46A20.56,20.56,0,1,1,44.57,16.35Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/staple.svg b/public/assets/images/icons/green/staple.svg
index e758396a0ee20a401adf0257568108eeffcb82e5..89aa78e106c773e60ff4cda5553b08d18c8ae072 100644
--- a/public/assets/images/icons/green/staple.svg
+++ b/public/assets/images/icons/green/staple.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="staple"><path class="cls-1" d="M43.22,9.22a14.61,14.61,0,0,0-20.58,0L6.5,25.27l2.89,2.86,16.13-16a10.51,10.51,0,0,1,14.83,0,10.4,10.4,0,0,1,0,14.75l-16.14,16a7.24,7.24,0,0,1-10.18,0,7.16,7.16,0,0,1,0-10.13l14.13-14h0a3.93,3.93,0,0,1,5.54,0,3.88,3.88,0,0,1,0,5.5l-14.13,14,2.87,2.85,14.14-14a7.9,7.9,0,0,0,0-11.23,8,8,0,0,0-11.24,0h0L11.15,29.89a11.16,11.16,0,0,0,0,15.85,11.34,11.34,0,0,0,15.94,0l16.14-16A14.39,14.39,0,0,0,43.22,9.22Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="staple"><path class="cls-1" d="M43.22,9.22a14.61,14.61,0,0,0-20.58,0L6.5,25.27l2.89,2.86,16.13-16a10.51,10.51,0,0,1,14.83,0,10.4,10.4,0,0,1,0,14.75l-16.14,16a7.24,7.24,0,0,1-10.18,0,7.16,7.16,0,0,1,0-10.13l14.13-14h0a3.93,3.93,0,0,1,5.54,0,3.88,3.88,0,0,1,0,5.5l-14.13,14,2.87,2.85,14.14-14a7.9,7.9,0,0,0,0-11.23,8,8,0,0,0-11.24,0h0L11.15,29.89a11.16,11.16,0,0,0,0,15.85,11.34,11.34,0,0,0,15.94,0l16.14-16A14.39,14.39,0,0,0,43.22,9.22Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/star-empty.svg b/public/assets/images/icons/green/star-empty.svg
index c736f7ab0fd7c634a737e89446166cc4bd36aa0b..e5a7a6cf9beb72d71f18c39eda479290e420f6dd 100755
--- a/public/assets/images/icons/green/star-empty.svg
+++ b/public/assets/images/icons/green/star-empty.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M10.707 9.59l4.38-3.18H9.672L8.001 1.26 6.328 6.41H.913l4.38 3.18-1.67 5.15 4.378-3.183 4.376 3.183-1.67-5.15zm-1.173-.395l2.481-1.802H8.947l-.946-2.917-.948 2.917H3.985l2.481 1.802-.946 2.918 2.481-1.803 2.479 1.803-.946-2.918z" fill="#00962d"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M10.707 9.59l4.38-3.18H9.672L8.001 1.26 6.328 6.41H.913l4.38 3.18-1.67 5.15 4.378-3.183 4.376 3.183-1.67-5.15zm-1.173-.395l2.481-1.802H8.947l-.946-2.917-.948 2.917H3.985l2.481 1.802-.946 2.918 2.481-1.803 2.479 1.803-.946-2.918z" fill="#00962d"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/star-halffull.svg b/public/assets/images/icons/green/star-halffull.svg
index 26a7bc9d485b59e97c57b18ff71c0e2144ef4b3b..b7bc509d19aba1b2a3507b0b7f574408bff88c88 100755
--- a/public/assets/images/icons/green/star-halffull.svg
+++ b/public/assets/images/icons/green/star-halffull.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M8 11.558L3.623 14.74l1.67-5.151-4.38-3.18h5.415L8.001 1.26l1.671 5.149h5.415l-4.38 3.18 1.67 5.151-4.376-3.183-.001.001.001-1.248 2.479 1.803-.946-2.918 2.481-1.802H8.947l-.946-2.917L8 4.478v7.08z" fill="#00962d"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M8 11.558L3.623 14.74l1.67-5.151-4.38-3.18h5.415L8.001 1.26l1.671 5.149h5.415l-4.38 3.18 1.67 5.151-4.376-3.183-.001.001.001-1.248 2.479 1.803-.946-2.918 2.481-1.802H8.947l-.946-2.917L8 4.478v7.08z" fill="#00962d"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/stop.svg b/public/assets/images/icons/green/stop.svg
index d904228bd3fcf40d4c68b6fa48a1ca42a27d60d3..263fdad14189fea45f8ba7d8c13297f5209718e8 100644
--- a/public/assets/images/icons/green/stop.svg
+++ b/public/assets/images/icons/green/stop.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><rect class="a" x="10" y="8" width="34" height="38"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><rect class="a" x="10" y="8" width="34" height="38"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/table-of-contents.svg b/public/assets/images/icons/green/table-of-contents.svg
index de454ae38558a6bbc39c4b42b82f65e57f732d2d..7ad0d25ee0467f7021302bf9fa5a429c593251ad 100644
--- a/public/assets/images/icons/green/table-of-contents.svg
+++ b/public/assets/images/icons/green/table-of-contents.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="table-of-contents"><rect class="cls-1" x="40.71" y="2.89" width="10.29" height="6.86"/><rect class="cls-1" x="3" y="2.89" width="30.86" height="6.86"/><rect class="cls-1" x="3" y="16.61" width="30.86" height="6.86"/><rect class="cls-1" x="13.29" y="30.32" width="20.57" height="6.86"/><rect class="cls-1" x="3" y="44.04" width="30.86" height="6.86"/><rect class="cls-1" x="40.71" y="16.61" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="30.32" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="44.04" width="10.29" height="6.86"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="table-of-contents"><rect class="cls-1" x="40.71" y="2.89" width="10.29" height="6.86"/><rect class="cls-1" x="3" y="2.89" width="30.86" height="6.86"/><rect class="cls-1" x="3" y="16.61" width="30.86" height="6.86"/><rect class="cls-1" x="13.29" y="30.32" width="20.57" height="6.86"/><rect class="cls-1" x="3" y="44.04" width="30.86" height="6.86"/><rect class="cls-1" x="40.71" y="16.61" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="30.32" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="44.04" width="10.29" height="6.86"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/test.svg b/public/assets/images/icons/green/test.svg
index 0788f8574dd7632b579d42e99ddf91ac8c885a55..28d80a2222e1e3c1560b0859970a0327e13bde33 100644
--- a/public/assets/images/icons/green/test.svg
+++ b/public/assets/images/icons/green/test.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="test"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><polygon class="cls-1" points="49 8.99 46.54 6.5 40.58 12.53 37.45 9.38 35 11.86 40.58 17.5 49 8.99"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="test"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><polygon class="cls-1" points="49 8.99 46.54 6.5 40.58 12.53 37.45 9.38 35 11.86 40.58 17.5 49 8.99"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/tools.svg b/public/assets/images/icons/green/tools.svg
index 710f96edbfea81924aab97d3b71f73ec4935b7e9..c3bd6131c03dd033acf4a2fb0134dcdcfd768897 100644
--- a/public/assets/images/icons/green/tools.svg
+++ b/public/assets/images/icons/green/tools.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="tools"><path class="cls-1" d="M49.32,40.2,37.15,28,28,37.15,40.18,49.31a6.47,6.47,0,0,0,9.14-9.11Z"/><path class="cls-1" d="M26.08,16.94A11.61,11.61,0,0,0,11.28,3.51l6.35,6.36-1.84,5.72L9.86,17.64,3.5,11.27A11.63,11.63,0,0,0,16.93,26.09Z"/><g id="Edit"><polygon class="cls-1" points="3.12 50.72 8.73 48.99 4.91 45.16 3.12 50.72"/><polygon class="cls-1" points="6.53 39.85 14.02 47.39 44.34 17.21 36.85 9.67 6.53 39.85"/><path class="cls-1" d="M49.44,4.65A5.31,5.31,0,0,0,42,4.6l-3,3,7.49,7.55,3-3h0A5.31,5.31,0,0,0,49.44,4.65Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="tools"><path class="cls-1" d="M49.32,40.2,37.15,28,28,37.15,40.18,49.31a6.47,6.47,0,0,0,9.14-9.11Z"/><path class="cls-1" d="M26.08,16.94A11.61,11.61,0,0,0,11.28,3.51l6.35,6.36-1.84,5.72L9.86,17.64,3.5,11.27A11.63,11.63,0,0,0,16.93,26.09Z"/><g id="Edit"><polygon class="cls-1" points="3.12 50.72 8.73 48.99 4.91 45.16 3.12 50.72"/><polygon class="cls-1" points="6.53 39.85 14.02 47.39 44.34 17.21 36.85 9.67 6.53 39.85"/><path class="cls-1" d="M49.44,4.65A5.31,5.31,0,0,0,42,4.6l-3,3,7.49,7.55,3-3h0A5.31,5.31,0,0,0,49.44,4.65Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/topic.svg b/public/assets/images/icons/green/topic.svg
index e6dba8c7b4ff89fb2d838b4a3b85d18d44c31e9d..93eff8090c03eac8c40366ab425647bba52ec942 100644
--- a/public/assets/images/icons/green/topic.svg
+++ b/public/assets/images/icons/green/topic.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="topic"><path d="M42,9V48H12V9H42m3-3H9V51H45V6Z"/><rect x="20.81" y="3" width="12.09" height="8.9"/><rect x="18" y="23.81" width="17.99" height="6.06"/><rect x="18" y="32.8" width="17.99" height="6.3"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="topic"><path d="M42,9V48H12V9H42m3-3H9V51H45V6Z"/><rect x="20.81" y="3" width="12.09" height="8.9"/><rect x="18" y="23.81" width="17.99" height="6.06"/><rect x="18" y="32.8" width="17.99" height="6.3"/></g></svg>
diff --git a/public/assets/images/icons/green/trash.svg b/public/assets/images/icons/green/trash.svg
index e9b634ce727b5a69b14c388928b6ed4dd3733465..0bddb53fe8a3116f8ac46e94a9f0a146d3f9cf07 100644
--- a/public/assets/images/icons/green/trash.svg
+++ b/public/assets/images/icons/green/trash.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M43,8H34.88a6.22,6.22,0,0,0-6.1-5H25.22a6.22,6.22,0,0,0-6.1,5H11a3,3,0,0,0-3,3v2H46V11A3,3,0,0,0,43,8ZM25.22,6h3.56a3.22,3.22,0,0,1,3,2H22.24A3.22,3.22,0,0,1,25.22,6Z"/><path class="a" d="M11,48a3,3,0,0,0,3,3H40a3,3,0,0,0,3-3V15H11Zm3-30H40V48H14Z"/><rect class="a" x="17" y="19.97" width="4" height="26"/><rect class="a" x="25" y="19.97" width="4" height="26"/><rect class="a" x="33" y="19.97" width="4" height="26"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M43,8H34.88a6.22,6.22,0,0,0-6.1-5H25.22a6.22,6.22,0,0,0-6.1,5H11a3,3,0,0,0-3,3v2H46V11A3,3,0,0,0,43,8ZM25.22,6h3.56a3.22,3.22,0,0,1,3,2H22.24A3.22,3.22,0,0,1,25.22,6Z"/><path class="a" d="M11,48a3,3,0,0,0,3,3H40a3,3,0,0,0,3-3V15H11Zm3-30H40V48H14Z"/><rect class="a" x="17" y="19.97" width="4" height="26"/><rect class="a" x="25" y="19.97" width="4" height="26"/><rect class="a" x="33" y="19.97" width="4" height="26"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/upload.svg b/public/assets/images/icons/green/upload.svg
index c573e86a66f971a3c7144e94681633d695c4e095..f1c11be8671319c74d675aa318a701f42140323f 100644
--- a/public/assets/images/icons/green/upload.svg
+++ b/public/assets/images/icons/green/upload.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/upload2.svg b/public/assets/images/icons/green/upload2.svg
index c573e86a66f971a3c7144e94681633d695c4e095..f1c11be8671319c74d675aa318a701f42140323f 100644
--- a/public/assets/images/icons/green/upload2.svg
+++ b/public/assets/images/icons/green/upload2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/vcard.svg b/public/assets/images/icons/green/vcard.svg
index 578c2bf60ee1a324b2c82ccc20499079010f60ad..b0d4671f2d03d00185874b24cecce534d9527cbf 100644
--- a/public/assets/images/icons/green/vcard.svg
+++ b/public/assets/images/icons/green/vcard.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,10V44H51V10Zm8,31V36.21A1.23,1.23,0,0,1,12.24,35H23.76A1.24,1.24,0,0,1,25,36.21V41Zm37,0H28V36.21A4.24,4.24,0,0,0,23.76,32H12.24A4.24,4.24,0,0,0,8,36.21V41H6V13H48Z"/><path class="a" d="M18.1,31a7,7,0,1,0-7-7A7,7,0,0,0,18.1,31Zm0-10.91A3.91,3.91,0,1,1,14.2,24,3.92,3.92,0,0,1,18.1,20.06Z"/><rect class="a" x="31" y="17.97" width="14" height="4"/><rect class="a" x="31" y="24.97" width="14" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00962d;}</style></defs><path class="a" d="M3,10V44H51V10Zm8,31V36.21A1.23,1.23,0,0,1,12.24,35H23.76A1.24,1.24,0,0,1,25,36.21V41Zm37,0H28V36.21A4.24,4.24,0,0,0,23.76,32H12.24A4.24,4.24,0,0,0,8,36.21V41H6V13H48Z"/><path class="a" d="M18.1,31a7,7,0,1,0-7-7A7,7,0,0,0,18.1,31Zm0-10.91A3.91,3.91,0,1,1,14.2,24,3.92,3.92,0,0,1,18.1,20.06Z"/><rect class="a" x="31" y="17.97" width="14" height="4"/><rect class="a" x="31" y="24.97" width="14" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/video.svg b/public/assets/images/icons/green/video.svg
index 5174bd1b766ea3d2ac6ab2c2550c0a16340532b1..cef4daba8130fc8c765adb4f26897335f69bc31c 100644
--- a/public/assets/images/icons/green/video.svg
+++ b/public/assets/images/icons/green/video.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="video"><path class="cls-1" d="M48,15l-9,6V15.67A3.68,3.68,0,0,0,35.33,12H6.67A3.68,3.68,0,0,0,3,15.67V38.33A3.68,3.68,0,0,0,6.67,42H35.33A3.68,3.68,0,0,0,39,38.33V33l9,6h3V15ZM35.65,38.33a.33.33,0,0,1-.32.32H6.67a.33.33,0,0,1-.32-.32V15.67a.33.33,0,0,1,.32-.32H35.33a.33.33,0,0,1,.32.32Z"/><polygon class="cls-1" points="15 36 28.5 27 15 18 15 36"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="video"><path class="cls-1" d="M48,15l-9,6V15.67A3.68,3.68,0,0,0,35.33,12H6.67A3.68,3.68,0,0,0,3,15.67V38.33A3.68,3.68,0,0,0,6.67,42H35.33A3.68,3.68,0,0,0,39,38.33V33l9,6h3V15ZM35.65,38.33a.33.33,0,0,1-.32.32H6.67a.33.33,0,0,1-.32-.32V15.67a.33.33,0,0,1,.32-.32H35.33a.33.33,0,0,1,.32.32Z"/><polygon class="cls-1" points="15 36 28.5 27 15 18 15 36"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/video2.svg b/public/assets/images/icons/green/video2.svg
index 7552666d866525a198ca5634aecbbe682fdeaed8..8553f779a5acb401003f483924a7d83d37fcd801 100644
--- a/public/assets/images/icons/green/video2.svg
+++ b/public/assets/images/icons/green/video2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="video2"><path class="cls-1" d="M4.76,17.82,50.48,13l-.54-5.17a2.07,2.07,0,0,0-2-1.85h-.22L5.09,10.49a2.07,2.07,0,0,0-1.84,2.27l.55,5.16h0V43.79A4.2,4.2,0,0,0,8,48H46.55a4.2,4.2,0,0,0,4.21-4.21v-26Zm5.94,3.36L7.17,24.71V21.18ZM46.55,44.65H8a.86.86,0,0,1-.85-.86V27.88H8.73l6.71-6.7h3.19l-6.7,6.7h4.74l6.71-6.7h3.19l-6.71,6.7H24.6l6.71-6.7h3.2l-6.71,6.7h4.74l6.71-6.7h3.19l-6.71,6.7h4.75l6.7-6.7h.23v3l-3.74,3.73h3.74V43.79A.87.87,0,0,1,46.55,44.65Z"/><polygon class="cls-1" points="22.26 43.02 32.32 36.31 22.26 29.6 22.26 43.02"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="video2"><path class="cls-1" d="M4.76,17.82,50.48,13l-.54-5.17a2.07,2.07,0,0,0-2-1.85h-.22L5.09,10.49a2.07,2.07,0,0,0-1.84,2.27l.55,5.16h0V43.79A4.2,4.2,0,0,0,8,48H46.55a4.2,4.2,0,0,0,4.21-4.21v-26Zm5.94,3.36L7.17,24.71V21.18ZM46.55,44.65H8a.86.86,0,0,1-.85-.86V27.88H8.73l6.71-6.7h3.19l-6.7,6.7h4.74l6.71-6.7h3.19l-6.71,6.7H24.6l6.71-6.7h3.2l-6.71,6.7h4.74l6.71-6.7h3.19l-6.71,6.7h4.75l6.7-6.7h.23v3l-3.74,3.73h3.74V43.79A.87.87,0,0,1,46.55,44.65Z"/><polygon class="cls-1" points="22.26 43.02 32.32 36.31 22.26 29.6 22.26 43.02"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/visibility-checked.svg b/public/assets/images/icons/green/visibility-checked.svg
index a394fffdeace1152a138c4eb2fe2fe18f0de1ba3..b968f1f4364d37b476de73f6d09e2667375c2661 100644
--- a/public/assets/images/icons/green/visibility-checked.svg
+++ b/public/assets/images/icons/green/visibility-checked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
diff --git a/public/assets/images/icons/green/visibility-checked2.svg b/public/assets/images/icons/green/visibility-checked2.svg
index a394fffdeace1152a138c4eb2fe2fe18f0de1ba3..b968f1f4364d37b476de73f6d09e2667375c2661 100644
--- a/public/assets/images/icons/green/visibility-checked2.svg
+++ b/public/assets/images/icons/green/visibility-checked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
diff --git a/public/assets/images/icons/green/visibility-invisible.svg b/public/assets/images/icons/green/visibility-invisible.svg
index a3df936f5007fb3dfe5229f8faead823ad097c12..1f475b0cb6fc2d8d26091bab5113f8f67e5eb653 100644
--- a/public/assets/images/icons/green/visibility-invisible.svg
+++ b/public/assets/images/icons/green/visibility-invisible.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g></svg>
diff --git a/public/assets/images/icons/green/visibility-visible.svg b/public/assets/images/icons/green/visibility-visible.svg
index cab780cf577fafee79d7e8ccf6e7115f4e06a47d..24812f473dd7222f615d49eb9763136d116f1e06 100644
--- a/public/assets/images/icons/green/visibility-visible.svg
+++ b/public/assets/images/icons/green/visibility-visible.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="visibility-visible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/><path d="M27,18a9.08,9.08,0,0,0-2.51.39A4.11,4.11,0,0,1,26.3,21.7a4.18,4.18,0,0,1-4.19,4.19,4.13,4.13,0,0,1-3.54-2.08A8.82,8.82,0,0,0,18,27a9,9,0,1,0,9-9Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="visibility-visible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/><path d="M27,18a9.08,9.08,0,0,0-2.51.39A4.11,4.11,0,0,1,26.3,21.7a4.18,4.18,0,0,1-4.19,4.19,4.13,4.13,0,0,1-3.54-2.08A8.82,8.82,0,0,0,18,27a9,9,0,1,0,9-9Z"/></g></svg>
diff --git a/public/assets/images/icons/green/vote-stopped.svg b/public/assets/images/icons/green/vote-stopped.svg
index 78330a32e208663827ea5b0daadd0e80b24f56a7..71225a46e4d5940c3958b1471674cb6d938dd995 100644
--- a/public/assets/images/icons/green/vote-stopped.svg
+++ b/public/assets/images/icons/green/vote-stopped.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="vote-stopped"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><rect class="cls-1" x="-1.53" y="25.22" width="57.55" height="3" transform="translate(-10.76 23.33) rotate(-39.35)"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="vote-stopped"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><rect class="cls-1" x="-1.53" y="25.22" width="57.55" height="3" transform="translate(-10.76 23.33) rotate(-39.35)"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/vote.svg b/public/assets/images/icons/green/vote.svg
index 4132da31f95875f04ec71cae87e002167b1a321e..52a16c88aa0f8a0eb77c153e1739e5701089b4d4 100644
--- a/public/assets/images/icons/green/vote.svg
+++ b/public/assets/images/icons/green/vote.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="vote"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="vote"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/wiki.svg b/public/assets/images/icons/green/wiki.svg
index 657e248bd0e65f360f01e66a7fb904e86c961550..afa23b49248c946e25e11cff485230de85d911a7 100644
--- a/public/assets/images/icons/green/wiki.svg
+++ b/public/assets/images/icons/green/wiki.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="wiki"><path class="cls-1" d="M49.83,15a15.17,15.17,0,0,1-10.17,7.9,31.41,31.41,0,0,1,3.45,11.38C46.63,32.05,53.82,25.94,49.83,15ZM4.17,15c-4,10.94,3.2,17,6.72,19.28A31.41,31.41,0,0,1,14.34,22.9,15.17,15.17,0,0,1,4.17,15ZM27,16c-7.1,0-12.85,10.31-12.85,23h25.7C39.85,26.29,34.1,16,27,16Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#00962d;}</style></defs><g id="wiki"><path class="cls-1" d="M49.83,15a15.17,15.17,0,0,1-10.17,7.9,31.41,31.41,0,0,1,3.45,11.38C46.63,32.05,53.82,25.94,49.83,15ZM4.17,15c-4,10.94,3.2,17,6.72,19.28A31.41,31.41,0,0,1,14.34,22.9,15.17,15.17,0,0,1,4.17,15ZM27,16c-7.1,0-12.85,10.31-12.85,23h25.7C39.85,26.29,34.1,16,27,16Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/green/zoom-in.svg b/public/assets/images/icons/green/zoom-in.svg
index be83946099d441d3e933abcceaac8a689157c644..1229304b8b8d9e84041f849529dfb69132b290f0 100644
--- a/public/assets/images/icons/green/zoom-in.svg
+++ b/public/assets/images/icons/green/zoom-in.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="zoom-in"><polygon points="30.44 2.99 30.44 6.42 47.57 6.42 47.57 23.55 51 23.55 51 2.99 30.44 2.99"/><polygon points="6.44 30.41 3.02 30.41 3.02 50.97 23.58 50.97 23.58 47.54 6.44 47.54 6.44 30.41"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="zoom-in"><polygon points="30.44 2.99 30.44 6.42 47.57 6.42 47.57 23.55 51 23.55 51 2.99 30.44 2.99"/><polygon points="6.44 30.41 3.02 30.41 3.02 50.97 23.58 50.97 23.58 47.54 6.44 47.54 6.44 30.41"/></g></svg>
diff --git a/public/assets/images/icons/green/zoom-in2.svg b/public/assets/images/icons/green/zoom-in2.svg
index e363e28addf7bf611ee20a6e21b9fb824d480d7d..41c6b1aafbe71074396d94314c882e664169e8c1 100644
--- a/public/assets/images/icons/green/zoom-in2.svg
+++ b/public/assets/images/icons/green/zoom-in2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="zoom-in2"><path d="M39,15V39H15V15H39m3-3H12V42H42V12Z"/><polygon points="50.98 20.99 47.99 20.99 47.99 6 32.99 6 32.99 3 50.98 3 50.98 20.99"/><polygon points="21 50.98 3.01 50.98 3.01 32.99 6 32.99 6 47.98 21 47.98 21 50.98"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="zoom-in2"><path d="M39,15V39H15V15H39m3-3H12V42H42V12Z"/><polygon points="50.98 20.99 47.99 20.99 47.99 6 32.99 6 32.99 3 50.98 3 50.98 20.99"/><polygon points="21 50.98 3.01 50.98 3.01 32.99 6 32.99 6 47.98 21 47.98 21 50.98"/></g></svg>
diff --git a/public/assets/images/icons/green/zoom-out.svg b/public/assets/images/icons/green/zoom-out.svg
index 04f482080640c16c299efc9ec75db9fcac51e624..3b0b0d15b587dfb1b7e2b89f39aa504acbc8fd99 100644
--- a/public/assets/images/icons/green/zoom-out.svg
+++ b/public/assets/images/icons/green/zoom-out.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="zoom-out"><polygon points="51 23.55 30.44 23.55 30.44 2.99 33.86 2.99 33.86 20.12 51 20.12 51 23.55"/><polygon points="23.58 50.97 20.15 50.97 20.15 33.83 3.02 33.83 3.02 30.41 23.58 30.41 23.58 50.97"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="zoom-out"><polygon points="51 23.55 30.44 23.55 30.44 2.99 33.86 2.99 33.86 20.12 51 20.12 51 23.55"/><polygon points="23.58 50.97 20.15 50.97 20.15 33.83 3.02 33.83 3.02 30.41 23.58 30.41 23.58 50.97"/></g></svg>
diff --git a/public/assets/images/icons/green/zoom-out2.svg b/public/assets/images/icons/green/zoom-out2.svg
index 6a84516133c32a8a6bf8c34d13aff4eade079840..d5115cb2a6f32e857feff2b85f00f9b0700c278e 100644
--- a/public/assets/images/icons/green/zoom-out2.svg
+++ b/public/assets/images/icons/green/zoom-out2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="zoom-out2"><path d="M51,18H42V12H36V3H33v9H12V33H3v3h9v6h6v9h3V42H42V21h9ZM39,15v3H36V15ZM15,39V36h3v3Zm24,0H21V33H15V15H33v6h6Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#00962d"><g id="zoom-out2"><path d="M51,18H42V12H36V3H33v9H12V33H3v3h9v6h6v9h3V42H42V21h9ZM39,15v3H36V15ZM15,39V36h3v3Zm24,0H21V33H15V15H33v6h6Z"/></g></svg>
diff --git a/public/assets/images/icons/grey/60a.svg b/public/assets/images/icons/grey/60a.svg
index 3fc0200a7fd1edfec6a84a14b6cef28bdbd67239..6d523ccf9132b0eb020765e9a057027664571c6d 100644
--- a/public/assets/images/icons/grey/60a.svg
+++ b/public/assets/images/icons/grey/60a.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.09 8.09c0-1.57.82-2.28 1.7-2.28A1.69 1.69 0 016 6.32l-.5.58a.93.93 0 00-.65-.3C4.37 6.6 4 7 4 8.09s.33 1.35.68 1.35.53-.2.53-.68-.21-.61-.57-.61a.76.76 0 00-.64.46L3.94 8a1.18 1.18 0 01.89-.5 1.16 1.16 0 011.25 1.26 1.35 1.35 0 01-1.4 1.41c-.81 0-1.59-.61-1.59-2.08zM6.56 8c0-1.43.6-2.16 1.5-2.16S9.57 6.55 9.57 8s-.6 2.2-1.51 2.2-1.5-.8-1.5-2.2zm2.09 0c0-1.14-.26-1.4-.59-1.4s-.58.26-.58 1.4.26 1.45.58 1.45.59-.33.59-1.45zm1.44 1.18c0-.69.55-1.06 1.85-1.2a.46.46 0 00-.52-.47 1.79 1.79 0 00-.87.29l-.35-.64a2.74 2.74 0 011.4-.43c.84 0 1.31.48 1.31 1.49v1.87h-.8L12 9.76a1.46 1.46 0 01-.95.41.94.94 0 01-.96-.99zm1.85 0v-.61c-.7.09-.92.29-.92.54s.14.31.37.31a.76.76 0 00.55-.28zM8 1a7 7 0 107 7 7 7 0 00-7-7zm0 12.61A5.61 5.61 0 1113.61 8 5.62 5.62 0 018 13.61z" fill="#6e6e6e"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.09 8.09c0-1.57.82-2.28 1.7-2.28A1.69 1.69 0 016 6.32l-.5.58a.93.93 0 00-.65-.3C4.37 6.6 4 7 4 8.09s.33 1.35.68 1.35.53-.2.53-.68-.21-.61-.57-.61a.76.76 0 00-.64.46L3.94 8a1.18 1.18 0 01.89-.5 1.16 1.16 0 011.25 1.26 1.35 1.35 0 01-1.4 1.41c-.81 0-1.59-.61-1.59-2.08zM6.56 8c0-1.43.6-2.16 1.5-2.16S9.57 6.55 9.57 8s-.6 2.2-1.51 2.2-1.5-.8-1.5-2.2zm2.09 0c0-1.14-.26-1.4-.59-1.4s-.58.26-.58 1.4.26 1.45.58 1.45.59-.33.59-1.45zm1.44 1.18c0-.69.55-1.06 1.85-1.2a.46.46 0 00-.52-.47 1.79 1.79 0 00-.87.29l-.35-.64a2.74 2.74 0 011.4-.43c.84 0 1.31.48 1.31 1.49v1.87h-.8L12 9.76a1.46 1.46 0 01-.95.41.94.94 0 01-.96-.99zm1.85 0v-.61c-.7.09-.92.29-.92.54s.14.31.37.31a.76.76 0 00.55-.28zM8 1a7 7 0 107 7 7 7 0 00-7-7zm0 12.61A5.61 5.61 0 1113.61 8 5.62 5.62 0 018 13.61z" fill="#6e6e6e"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/accept.svg b/public/assets/images/icons/grey/accept.svg
index 36c8a6c056cf07998d4259228ccdddbb469476fa..79cf27f5c50cfb2da991c9e5bdbc7ad59da028cf 100644
--- a/public/assets/images/icons/grey/accept.svg
+++ b/public/assets/images/icons/grey/accept.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/activity.svg b/public/assets/images/icons/grey/activity.svg
index fde4b9541b9f0ef4c53e48998f0621404e83de5f..a8c590b457e7cf48c08272433c2060a6d9e83305 100644
--- a/public/assets/images/icons/grey/activity.svg
+++ b/public/assets/images/icons/grey/activity.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
diff --git a/public/assets/images/icons/grey/add-circle-full.svg b/public/assets/images/icons/grey/add-circle-full.svg
index 1e961f676d52f72d04abebf9aec8069621428cc4..ab7c697111e1d78e950caaf674af536e66191886 100644
--- a/public/assets/images/icons/grey/add-circle-full.svg
+++ b/public/assets/images/icons/grey/add-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/add-circle.svg b/public/assets/images/icons/grey/add-circle.svg
index 1e961f676d52f72d04abebf9aec8069621428cc4..ab7c697111e1d78e950caaf674af536e66191886 100644
--- a/public/assets/images/icons/grey/add-circle.svg
+++ b/public/assets/images/icons/grey/add-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/add.svg b/public/assets/images/icons/grey/add.svg
index 3eca9e05912e8a83d3d4f0cf7d3b7164fadcb8b4..83e8c196cb762ab4e9b96cf7ce992f28ac6c0b5d 100644
--- a/public/assets/images/icons/grey/add.svg
+++ b/public/assets/images/icons/grey/add.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/admin.svg b/public/assets/images/icons/grey/admin.svg
index e7b8f2a164e3a476ddbe96bfc09e8360ae39ce0a..016e143a252d2c86fb4e894da8db74f8bc27b7e7 100644
--- a/public/assets/images/icons/grey/admin.svg
+++ b/public/assets/images/icons/grey/admin.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/aladdin.svg b/public/assets/images/icons/grey/aladdin.svg
index 0fbbb3daafad9b021c46be289e3bde2d42d24f9c..cc59dfd7e236ca01303d8fa9b3da4912dcf362b2 100644
--- a/public/assets/images/icons/grey/aladdin.svg
+++ b/public/assets/images/icons/grey/aladdin.svg
@@ -1 +1 @@
-<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
+<svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
diff --git a/public/assets/images/icons/grey/archive.svg b/public/assets/images/icons/grey/archive.svg
index e132809b1775c7ba0c5182ce9d759d0902f1a58e..f0fc2c2f9819560160b164adc1a2fb78694cf08a 100644
--- a/public/assets/images/icons/grey/archive.svg
+++ b/public/assets/images/icons/grey/archive.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
diff --git a/public/assets/images/icons/grey/arr_1down.svg b/public/assets/images/icons/grey/arr_1down.svg
index c88c2559c5495e9c5c6ee6aa096c71b88ebec793..f2ef0f49ee4ad6a7cc7d63fb98719452321dfe5d 100644
--- a/public/assets/images/icons/grey/arr_1down.svg
+++ b/public/assets/images/icons/grey/arr_1down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/arr_1left.svg b/public/assets/images/icons/grey/arr_1left.svg
index 84fd268c48429be8c3581387cc52eb3c9b04a270..593f1b7437157a18d226dee422e311473ea93359 100644
--- a/public/assets/images/icons/grey/arr_1left.svg
+++ b/public/assets/images/icons/grey/arr_1left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/arr_1right.svg b/public/assets/images/icons/grey/arr_1right.svg
index 4628575655927911c536f211450535c1550461b2..68e1ebbe04cb2a1b9daa7035ec26d01b9f26a0c2 100644
--- a/public/assets/images/icons/grey/arr_1right.svg
+++ b/public/assets/images/icons/grey/arr_1right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/arr_1sort.svg b/public/assets/images/icons/grey/arr_1sort.svg
index 55b7dbdaa2e3de25936d8751db996028ad5e14f1..302fdf033b4eb8ceb8f6a39d68f88e3ddda5a83d 100755
--- a/public/assets/images/icons/grey/arr_1sort.svg
+++ b/public/assets/images/icons/grey/arr_1sort.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/arr_1up.svg b/public/assets/images/icons/grey/arr_1up.svg
index b989aec6799e49c54db42a5f60afb18a39ef9ec4..6992fcafb0654c620778b903d94cf0d3793423d5 100644
--- a/public/assets/images/icons/grey/arr_1up.svg
+++ b/public/assets/images/icons/grey/arr_1up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/arr_2down.svg b/public/assets/images/icons/grey/arr_2down.svg
index d026b52dacf3223a187a87b5eb18816fe42ba1b4..c75f363ba617e502012b7bbfb8196d8b783f964c 100644
--- a/public/assets/images/icons/grey/arr_2down.svg
+++ b/public/assets/images/icons/grey/arr_2down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/arr_2left.svg b/public/assets/images/icons/grey/arr_2left.svg
index 475748bf2f91700609f638ddde125534a4cf0821..bb550aebc8b23e0e957e28233602e54b9635a1b7 100644
--- a/public/assets/images/icons/grey/arr_2left.svg
+++ b/public/assets/images/icons/grey/arr_2left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/arr_2right.svg b/public/assets/images/icons/grey/arr_2right.svg
index 09e8ac8c1b2b55163fa9c14cb1e6b999127bb8e3..fbce7317dd83ab65ce55e1ffcf0972e4bd4c250e 100644
--- a/public/assets/images/icons/grey/arr_2right.svg
+++ b/public/assets/images/icons/grey/arr_2right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/arr_2up.svg b/public/assets/images/icons/grey/arr_2up.svg
index c59b30827175bf1ac7e80e85bcac0e6dad3d55fa..c0d3e1dcfedd4ce7c875acf323185e7d653c40fd 100644
--- a/public/assets/images/icons/grey/arr_2up.svg
+++ b/public/assets/images/icons/grey/arr_2up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/arr_eol-down.svg b/public/assets/images/icons/grey/arr_eol-down.svg
index 3c5c4d3448e2cc3ea057a526c335d0af7d0c1a54..95da422dad684e22f9839b9f06df5390338d015c 100644
--- a/public/assets/images/icons/grey/arr_eol-down.svg
+++ b/public/assets/images/icons/grey/arr_eol-down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="47.98 10.98 37.36 10.98 26.98 21.36 16.61 10.98 5.99 10.98 26.98 31.98 47.98 10.98"/><rect class="a" x="24.51" y="19.48" width="5" height="42" transform="translate(67.5 13.47) rotate(90)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="47.98 10.98 37.36 10.98 26.98 21.36 16.61 10.98 5.99 10.98 26.98 31.98 47.98 10.98"/><rect class="a" x="24.51" y="19.48" width="5" height="42" transform="translate(67.5 13.47) rotate(90)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/arr_eol-left.svg b/public/assets/images/icons/grey/arr_eol-left.svg
index 6672aac08b6fd4ea9c2f55a3090f8af4ee9aab44..9cd95f70ca4b02910d1948c957173970b40376b9 100644
--- a/public/assets/images/icons/grey/arr_eol-left.svg
+++ b/public/assets/images/icons/grey/arr_eol-left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="43 6 43 16.63 32.63 27 43 37.37 43 48 22 27 43 6"/><rect class="a" x="11" y="5.97" width="5" height="42" transform="translate(27 53.94) rotate(-180)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="43 6 43 16.63 32.63 27 43 37.37 43 48 22 27 43 6"/><rect class="a" x="11" y="5.97" width="5" height="42" transform="translate(27 53.94) rotate(-180)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/arr_eol-right.svg b/public/assets/images/icons/grey/arr_eol-right.svg
index 28fe8882515d83fef74ba6a2a4e88f2060632b63..f64a39457b92e5dab044fc0044bcacb29566bcaf 100644
--- a/public/assets/images/icons/grey/arr_eol-right.svg
+++ b/public/assets/images/icons/grey/arr_eol-right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="11 6 11 16.63 21.37 27 11 37.37 11 48 32 27 11 6"/><rect class="a" x="38" y="5.97" width="5" height="42"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="11 6 11 16.63 21.37 27 11 37.37 11 48 32 27 11 6"/><rect class="a" x="38" y="5.97" width="5" height="42"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/arr_eol-up.svg b/public/assets/images/icons/grey/arr_eol-up.svg
index 0a1c59280b050de590c57045b7fd5f487c5e8a0e..fb813d7c30b8c5cfd2dd91eb66819c906d58543c 100644
--- a/public/assets/images/icons/grey/arr_eol-up.svg
+++ b/public/assets/images/icons/grey/arr_eol-up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="6.01 42.98 16.64 42.98 27.02 32.61 37.39 42.98 48.02 42.98 27.02 21.98 6.01 42.98"/><rect class="a" x="24.48" y="-7.51" width="5" height="42" transform="translate(13.5 40.47) rotate(-90)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="6.01 42.98 16.64 42.98 27.02 32.61 37.39 42.98 48.02 42.98 27.02 21.98 6.01 42.98"/><rect class="a" x="24.48" y="-7.51" width="5" height="42" transform="translate(13.5 40.47) rotate(-90)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/audio.svg b/public/assets/images/icons/grey/audio.svg
index d2714e44cf806520ac76d7c418708cd0ce457bab..31729598d1f6b1721ce76deb8f4026bf53fecaf3 100644
--- a/public/assets/images/icons/grey/audio.svg
+++ b/public/assets/images/icons/grey/audio.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/audio2.svg b/public/assets/images/icons/grey/audio2.svg
index d2714e44cf806520ac76d7c418708cd0ce457bab..31729598d1f6b1721ce76deb8f4026bf53fecaf3 100644
--- a/public/assets/images/icons/grey/audio2.svg
+++ b/public/assets/images/icons/grey/audio2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/audio3.svg b/public/assets/images/icons/grey/audio3.svg
index 71d02aa3dbe383f015c9b56d9b5f4811fbe88f93..27285c74e9adf8f9ef5a1b3133e2922665a79a18 100644
--- a/public/assets/images/icons/grey/audio3.svg
+++ b/public/assets/images/icons/grey/audio3.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="audio3"><path class="cls-1" d="M40.75,10H3.17V40.72a3.42,3.42,0,0,0,3.41,3.42h41A3.42,3.42,0,0,0,51,40.72V10Zm6.4,30.31H7V13.82h6.4v6.4H40.75v-6.4h6.4Z"/><path class="cls-1" d="M35.62,23.73a5.08,5.08,0,0,0-4.84,6.74H23.35a5.11,5.11,0,1,0-5.67,3.33v.09h17a5.64,5.64,0,0,0,.93.09,5.13,5.13,0,1,0,0-10.25Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="audio3"><path class="cls-1" d="M40.75,10H3.17V40.72a3.42,3.42,0,0,0,3.41,3.42h41A3.42,3.42,0,0,0,51,40.72V10Zm6.4,30.31H7V13.82h6.4v6.4H40.75v-6.4h6.4Z"/><path class="cls-1" d="M35.62,23.73a5.08,5.08,0,0,0-4.84,6.74H23.35a5.11,5.11,0,1,0-5.67,3.33v.09h17a5.64,5.64,0,0,0,.93.09,5.13,5.13,0,1,0,0-10.25Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/block-accordion.svg b/public/assets/images/icons/grey/block-accordion.svg
index 7a920177008c7fb854bcfbbcb0521610c9d88c1c..fa48b882107401a7a62af88de0892cc4f7bd5a77 100644
--- a/public/assets/images/icons/grey/block-accordion.svg
+++ b/public/assets/images/icons/grey/block-accordion.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-accordion"><path class="cls-1" d="M18,7.5v39H48V7.5Zm27,36H21v-9H45Zm0-12H21v-9H45Zm-24-12v-9H45v9Z"/><polygon class="cls-1" points="12 10.5 9 10.5 9 13.5 6 13.5 6 16.5 9 16.5 9 19.5 12 19.5 12 16.5 15 16.5 15 13.5 12 13.5 12 10.5"/><polygon class="cls-1" points="12 22.49 9 22.49 9 25.49 6 25.49 6 28.49 9 28.49 9 31.49 12 31.49 12 28.49 15 28.49 15 25.49 12 25.49 12 22.49"/><polygon class="cls-1" points="12 34.49 9 34.49 9 37.49 6 37.49 6 40.48 9 40.48 9 43.48 12 43.48 12 40.48 15 40.48 15 37.49 12 37.49 12 34.49"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-accordion"><path class="cls-1" d="M18,7.5v39H48V7.5Zm27,36H21v-9H45Zm0-12H21v-9H45Zm-24-12v-9H45v9Z"/><polygon class="cls-1" points="12 10.5 9 10.5 9 13.5 6 13.5 6 16.5 9 16.5 9 19.5 12 19.5 12 16.5 15 16.5 15 13.5 12 13.5 12 10.5"/><polygon class="cls-1" points="12 22.49 9 22.49 9 25.49 6 25.49 6 28.49 9 28.49 9 31.49 12 31.49 12 28.49 15 28.49 15 25.49 12 25.49 12 22.49"/><polygon class="cls-1" points="12 34.49 9 34.49 9 37.49 6 37.49 6 40.48 9 40.48 9 43.48 12 43.48 12 40.48 15 40.48 15 37.49 12 37.49 12 34.49"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/block-canvas.svg b/public/assets/images/icons/grey/block-canvas.svg
index 54f6093416111c5ed135a936bd53c6b7bf3aa119..f95a1ea4e23b1aeb4e4ed29c185ddf0391c4ec51 100644
--- a/public/assets/images/icons/grey/block-canvas.svg
+++ b/public/assets/images/icons/grey/block-canvas.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-canvas"><path class="cls-1" d="M48,8.91H6v30h31c2.48,4.54,5,8.6,5.87,8.24s0-4-1.12-8.24H48Zm-3,27H41c-1.64-5.56-3.55-11.1-3.55-11.1a3.38,3.38,0,0,0-6.28,2.52s2,4.1,4.32,8.58H9v-24H45Z"/><path class="cls-1" d="M28.29,16.91a3.29,3.29,0,0,1,.48,2.71s.05.05.07.08a2.31,2.31,0,0,0,.05.74,2.49,2.49,0,1,0,4.79-1.34A7.29,7.29,0,0,0,31,15.43c-1.84-1.26-4.83-1-4.86-.28S27.28,15.76,28.29,16.91Z"/><path class="cls-1" d="M16.33,24.14c.83-.06,1.42-1.34,1.31-2.86s-.86-2.72-1.69-2.66S14.53,20,14.64,21.48,15.5,24.2,16.33,24.14Z"/><path class="cls-1" d="M21.49,20.86c.66-.31.68-1.65.05-3S19.85,15.7,19.19,16s-.68,1.66,0,3S20.84,21.17,21.49,20.86Z"/><path class="cls-1" d="M15.47,31.66a9.41,9.41,0,0,0,6.31.26,8.64,8.64,0,0,0,4.94-4,8.5,8.5,0,0,0,.91-5.9c-1.56,3.58-3.73,6.22-6.76,7.08a10.41,10.41,0,0,1-4.77.34A16.91,16.91,0,0,1,11,27.7,8.46,8.46,0,0,0,15.47,31.66Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-canvas"><path class="cls-1" d="M48,8.91H6v30h31c2.48,4.54,5,8.6,5.87,8.24s0-4-1.12-8.24H48Zm-3,27H41c-1.64-5.56-3.55-11.1-3.55-11.1a3.38,3.38,0,0,0-6.28,2.52s2,4.1,4.32,8.58H9v-24H45Z"/><path class="cls-1" d="M28.29,16.91a3.29,3.29,0,0,1,.48,2.71s.05.05.07.08a2.31,2.31,0,0,0,.05.74,2.49,2.49,0,1,0,4.79-1.34A7.29,7.29,0,0,0,31,15.43c-1.84-1.26-4.83-1-4.86-.28S27.28,15.76,28.29,16.91Z"/><path class="cls-1" d="M16.33,24.14c.83-.06,1.42-1.34,1.31-2.86s-.86-2.72-1.69-2.66S14.53,20,14.64,21.48,15.5,24.2,16.33,24.14Z"/><path class="cls-1" d="M21.49,20.86c.66-.31.68-1.65.05-3S19.85,15.7,19.19,16s-.68,1.66,0,3S20.84,21.17,21.49,20.86Z"/><path class="cls-1" d="M15.47,31.66a9.41,9.41,0,0,0,6.31.26,8.64,8.64,0,0,0,4.94-4,8.5,8.5,0,0,0,.91-5.9c-1.56,3.58-3.73,6.22-6.76,7.08a10.41,10.41,0,0,1-4.77.34A16.91,16.91,0,0,1,11,27.7,8.46,8.46,0,0,0,15.47,31.66Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/block-comparison.svg b/public/assets/images/icons/grey/block-comparison.svg
index e3a6049e9684f05fcec6a0ac44fbed405c4c280b..b1dcc1d4fb0a4c6fdc17e07b78a989e6e5690228 100644
--- a/public/assets/images/icons/grey/block-comparison.svg
+++ b/public/assets/images/icons/grey/block-comparison.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-comparison"><polygon class="cls-1" points="30.8 31 32.88 33.08 38.96 26.99 32.88 20.9 30.8 22.98 34.8 26.99 30.8 31"/><polygon class="cls-1" points="23.2 22.98 21.12 20.9 15.03 27 21.12 33.08 23.2 31 19.2 26.99 23.2 22.98"/><path class="cls-1" d="M48,12H28.5V9h-3v3H6V42H25.5v3h3V42H48ZM9,39V15H25.5V39Zm36,0H28.5V15H45Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-comparison"><polygon class="cls-1" points="30.8 31 32.88 33.08 38.96 26.99 32.88 20.9 30.8 22.98 34.8 26.99 30.8 31"/><polygon class="cls-1" points="23.2 22.98 21.12 20.9 15.03 27 21.12 33.08 23.2 31 19.2 26.99 23.2 22.98"/><path class="cls-1" d="M48,12H28.5V9h-3v3H6V42H25.5v3h3V42H48ZM9,39V15H25.5V39Zm36,0H28.5V15H45Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/block-eyecatcher.svg b/public/assets/images/icons/grey/block-eyecatcher.svg
index 0f06be069f8e16d0c26955f403bbfce44bc7e6df..33f1b15d92ddcc47a8eb33dbe6718d916d4b354f 100644
--- a/public/assets/images/icons/grey/block-eyecatcher.svg
+++ b/public/assets/images/icons/grey/block-eyecatcher.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-eyecatcher"><g id="visibility-visible"><path class="cls-1" d="M27,17A20.39,20.39,0,0,1,44.57,27,20.39,20.39,0,0,1,9.43,27,20.35,20.35,0,0,1,27,17m0-3A23.36,23.36,0,0,0,6.31,26.42L6,27l.3.58a23.4,23.4,0,0,0,41.37,0L48,27l-.31-.57A23.36,23.36,0,0,0,27,14Z"/><path class="cls-1" d="M27,19.08a7.9,7.9,0,0,0-2.19.35,3.6,3.6,0,0,1,1.58,2.93A3.67,3.67,0,0,1,22.72,26a3.6,3.6,0,0,1-3.1-1.83A7.9,7.9,0,1,0,27,19.08Z"/></g><rect class="cls-1" x="6" y="5.91" width="9" height="3"/><rect class="cls-1" x="6" y="5.91" width="3" height="9"/><rect class="cls-1" x="38.99" y="5.91" width="9" height="3"/><rect class="cls-1" x="44.99" y="8.91" width="3" height="6"/><rect class="cls-1" x="44.99" y="38.89" width="3" height="9"/><rect class="cls-1" x="38.99" y="44.89" width="9" height="3"/><rect class="cls-1" x="6" y="38.89" width="3" height="9"/><rect class="cls-1" x="6" y="44.89" width="9" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-eyecatcher"><g id="visibility-visible"><path class="cls-1" d="M27,17A20.39,20.39,0,0,1,44.57,27,20.39,20.39,0,0,1,9.43,27,20.35,20.35,0,0,1,27,17m0-3A23.36,23.36,0,0,0,6.31,26.42L6,27l.3.58a23.4,23.4,0,0,0,41.37,0L48,27l-.31-.57A23.36,23.36,0,0,0,27,14Z"/><path class="cls-1" d="M27,19.08a7.9,7.9,0,0,0-2.19.35,3.6,3.6,0,0,1,1.58,2.93A3.67,3.67,0,0,1,22.72,26a3.6,3.6,0,0,1-3.1-1.83A7.9,7.9,0,1,0,27,19.08Z"/></g><rect class="cls-1" x="6" y="5.91" width="9" height="3"/><rect class="cls-1" x="6" y="5.91" width="3" height="9"/><rect class="cls-1" x="38.99" y="5.91" width="9" height="3"/><rect class="cls-1" x="44.99" y="8.91" width="3" height="6"/><rect class="cls-1" x="44.99" y="38.89" width="3" height="9"/><rect class="cls-1" x="38.99" y="44.89" width="9" height="3"/><rect class="cls-1" x="6" y="38.89" width="3" height="9"/><rect class="cls-1" x="6" y="44.89" width="9" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/block-eyecatcher2.svg b/public/assets/images/icons/grey/block-eyecatcher2.svg
index 3362e4a30cac98a122e6ab6387f73a2b25938d08..422e44eb7039cddece090e04649746cba9df1b43 100644
--- a/public/assets/images/icons/grey/block-eyecatcher2.svg
+++ b/public/assets/images/icons/grey/block-eyecatcher2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/block-gallery.svg b/public/assets/images/icons/grey/block-gallery.svg
index ac9819d3682b653bac2eb952c15bb528f7645a7e..bfd57cbc7cefbec1e0bbdb7b6d8dd3738c56fb44 100644
--- a/public/assets/images/icons/grey/block-gallery.svg
+++ b/public/assets/images/icons/grey/block-gallery.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-gallery"><path class="cls-1" d="M36,11.91v12H48v-12Zm9,9H39v-6h6Z"/><path class="cls-1" d="M36,38.89H48v-12H36Zm3-9h6v6H39Z"/><path class="cls-1" d="M33,11.91H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M33,26.9H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M6,23.9H18v-12H6Zm3-9h6v6H9Z"/><path class="cls-1" d="M6,38.89H18v-12H6Zm3-9h6v6H9Z"/><rect class="cls-1" x="19.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="25.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="31.5" y="41.89" width="3" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-gallery"><path class="cls-1" d="M36,11.91v12H48v-12Zm9,9H39v-6h6Z"/><path class="cls-1" d="M36,38.89H48v-12H36Zm3-9h6v6H39Z"/><path class="cls-1" d="M33,11.91H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M33,26.9H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M6,23.9H18v-12H6Zm3-9h6v6H9Z"/><path class="cls-1" d="M6,38.89H18v-12H6Zm3-9h6v6H9Z"/><rect class="cls-1" x="19.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="25.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="31.5" y="41.89" width="3" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/block-gallery2.svg b/public/assets/images/icons/grey/block-gallery2.svg
index 7474e4307e3cc671942cecd8822a0e21a686eb5f..4719b33038407b6736dd24525541c4fc25de674e 100644
--- a/public/assets/images/icons/grey/block-gallery2.svg
+++ b/public/assets/images/icons/grey/block-gallery2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-gallery2"><polygon class="cls-1" points="44.87 20.9 42.79 22.98 46.8 26.99 42.79 31 44.87 33.08 50.96 26.99 44.87 20.9"/><polygon class="cls-1" points="9.13 20.9 3.04 27 9.13 33.08 11.21 31 7.2 26.99 11.21 22.98 9.13 20.9"/><path class="cls-1" d="M15,38.89H39v-24H15Zm3-21H36v18H18Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-gallery2"><polygon class="cls-1" points="44.87 20.9 42.79 22.98 46.8 26.99 42.79 31 44.87 33.08 50.96 26.99 44.87 20.9"/><polygon class="cls-1" points="9.13 20.9 3.04 27 9.13 33.08 11.21 31 7.2 26.99 11.21 22.98 9.13 20.9"/><path class="cls-1" d="M15,38.89H39v-24H15Zm3-21H36v18H18Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/block-imagemap.svg b/public/assets/images/icons/grey/block-imagemap.svg
index 881e293a34ff5c3251b1c6fe44f489d79c3887c0..84fe69591e8ba9ed0f49c8e3097fc25ba586383a 100644
--- a/public/assets/images/icons/grey/block-imagemap.svg
+++ b/public/assets/images/icons/grey/block-imagemap.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-imagemap"><rect class="cls-1" x="26.99" y="17.9" width="6" height="3"/><rect class="cls-1" x="18" y="17.9" width="6" height="3"/><rect class="cls-1" x="35.99" y="17.9" width="6" height="3"/><path class="cls-1" d="M51,17.9H48v-6H36v-3H33v3H6v6H3v3H6v21H33v3h3v-3H48v-21h3ZM45,35.05l-8.71-6.33-1.5,1.18H33v1.4l-3.33,2.61L19.9,25,9,35.09V20.9h6v-3H9v-3H33v3h3v-3h9v3h0v3h0Z"/><rect class="cls-1" x="32.99" y="20.9" width="3" height="6"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-imagemap"><rect class="cls-1" x="26.99" y="17.9" width="6" height="3"/><rect class="cls-1" x="18" y="17.9" width="6" height="3"/><rect class="cls-1" x="35.99" y="17.9" width="6" height="3"/><path class="cls-1" d="M51,17.9H48v-6H36v-3H33v3H6v6H3v3H6v21H33v3h3v-3H48v-21h3ZM45,35.05l-8.71-6.33-1.5,1.18H33v1.4l-3.33,2.61L19.9,25,9,35.09V20.9h6v-3H9v-3H33v3h3v-3h9v3h0v3h0Z"/><rect class="cls-1" x="32.99" y="20.9" width="3" height="6"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/block-imagemap2.svg b/public/assets/images/icons/grey/block-imagemap2.svg
index 3362e4a30cac98a122e6ab6387f73a2b25938d08..422e44eb7039cddece090e04649746cba9df1b43 100644
--- a/public/assets/images/icons/grey/block-imagemap2.svg
+++ b/public/assets/images/icons/grey/block-imagemap2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/block-tabs.svg b/public/assets/images/icons/grey/block-tabs.svg
index e08840b6ac01e01b3590cd4f703c55e43e066c4a..b0f2e703af4bb4be2e2c8934f3ced01fb7aeed18 100644
--- a/public/assets/images/icons/grey/block-tabs.svg
+++ b/public/assets/images/icons/grey/block-tabs.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-tabs"><path class="cls-1" d="M6,8.91v36H48v-36Zm18,3h9v6H24Zm21,30H9v-30H21v9H45Zm0-24H36v-6h9Z"/><path d="M48,8.91H6v36H48v-36Zm-12,9v-6h9v6Zm-12,0v-6h9v6Zm-15,24v-30H21v9H45v21Z"/><rect class="cls-1" x="12" y="26.9" width="29.99" height="3"/><polygon points="41.99 26.9 12 26.9 12 29.9 41.99 29.9 41.99 26.9 41.99 26.9"/><rect class="cls-1" x="12" y="32.9" width="29.99" height="3"/><polygon points="41.99 32.9 12 32.9 12 35.9 41.99 35.9 41.99 32.9 41.99 32.9"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-tabs"><path class="cls-1" d="M6,8.91v36H48v-36Zm18,3h9v6H24Zm21,30H9v-30H21v9H45Zm0-24H36v-6h9Z"/><path d="M48,8.91H6v36H48v-36Zm-12,9v-6h9v6Zm-12,0v-6h9v6Zm-15,24v-30H21v9H45v21Z"/><rect class="cls-1" x="12" y="26.9" width="29.99" height="3"/><polygon points="41.99 26.9 12 26.9 12 29.9 41.99 29.9 41.99 26.9 41.99 26.9"/><rect class="cls-1" x="12" y="32.9" width="29.99" height="3"/><polygon points="41.99 32.9 12 32.9 12 35.9 41.99 35.9 41.99 32.9 41.99 32.9"/></g></svg>
diff --git a/public/assets/images/icons/grey/block-typewriter.svg b/public/assets/images/icons/grey/block-typewriter.svg
index f635647ce60abb4ccdc41ad89bf83c0c99482dd9..57207347f94fe57f8008e720e0e6fd36f99b5e01 100644
--- a/public/assets/images/icons/grey/block-typewriter.svg
+++ b/public/assets/images/icons/grey/block-typewriter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-typewriter"><polygon class="cls-1" points="42.06 32.9 45.06 32.9 45.06 29.9 42.06 29.9 42.06 12 39.06 12 39.06 29.9 36.06 29.9 36.06 32.9 39.06 32.9 39.06 41.89 33.07 41.89 33.07 44.89 39.06 44.89 39.06 41.98 42.06 41.98 42.06 44.89 48.06 44.89 48.06 41.89 42.06 41.89 42.06 32.9"/><rect class="cls-1" x="33.07" y="8.91" width="6" height="3"/><rect class="cls-1" x="42.06" y="8.91" width="6" height="3"/><path class="cls-1" d="M20.8,14.91l-1-3H12v3h3.21L7,38.89H3v3H8.63a1.09,1.09,0,0,0,.76-.29,1.47,1.47,0,0,0,.41-.67l2.41-7.24H23.78l2.41,7.24a1.73,1.73,0,0,0,.43.69,1.07,1.07,0,0,0,.76.27H33v-3H29ZM13.18,30.76l4.05-12.18A25.75,25.75,0,0,0,18,15.76c.12.54.25,1,.38,1.54s.26.9.38,1.26l4,12.2Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="block-typewriter"><polygon class="cls-1" points="42.06 32.9 45.06 32.9 45.06 29.9 42.06 29.9 42.06 12 39.06 12 39.06 29.9 36.06 29.9 36.06 32.9 39.06 32.9 39.06 41.89 33.07 41.89 33.07 44.89 39.06 44.89 39.06 41.98 42.06 41.98 42.06 44.89 48.06 44.89 48.06 41.89 42.06 41.89 42.06 32.9"/><rect class="cls-1" x="33.07" y="8.91" width="6" height="3"/><rect class="cls-1" x="42.06" y="8.91" width="6" height="3"/><path class="cls-1" d="M20.8,14.91l-1-3H12v3h3.21L7,38.89H3v3H8.63a1.09,1.09,0,0,0,.76-.29,1.47,1.47,0,0,0,.41-.67l2.41-7.24H23.78l2.41,7.24a1.73,1.73,0,0,0,.43.69,1.07,1.07,0,0,0,.76.27H33v-3H29ZM13.18,30.76l4.05-12.18A25.75,25.75,0,0,0,18,15.76c.12.54.25,1,.38,1.54s.26.9.38,1.26l4,12.2Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/blubber-old.svg b/public/assets/images/icons/grey/blubber-old.svg
index 0458dcb32d1ac96fc45fd008cb749e7e0a03c4c6..5c8021c00616c81acb3b0afce36350156af0671d 100644
--- a/public/assets/images/icons/grey/blubber-old.svg
+++ b/public/assets/images/icons/grey/blubber-old.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M18,15A15,15,0,1,0,33,30,15,15,0,0,0,18,15Z"/><path class="a" d="M50.85,13.5a8.5,8.5,0,1,0-8.5,8.5A8.5,8.5,0,0,0,50.85,13.5Z"/><path class="a" d="M45,39a5,5,0,1,0,5,5A5,5,0,0,0,45,39Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M18,15A15,15,0,1,0,33,30,15,15,0,0,0,18,15Z"/><path class="a" d="M50.85,13.5a8.5,8.5,0,1,0-8.5,8.5A8.5,8.5,0,0,0,50.85,13.5Z"/><path class="a" d="M45,39a5,5,0,1,0,5,5A5,5,0,0,0,45,39Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/blubber.svg b/public/assets/images/icons/grey/blubber.svg
index a2fb5a7bb76953754b1d0912ce7e0cd0cbd23a4c..5cadfeddb7bcf5fa99cf26a9bbdf414f493c74c5 100644
--- a/public/assets/images/icons/grey/blubber.svg
+++ b/public/assets/images/icons/grey/blubber.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M41,31A10,10,0,1,0,51,41,10,10,0,0,0,41,31Zm0,17a7,7,0,1,1,7-7A7,7,0,0,1,41,48Z"/><path class="a" d="M33,26.83A12,12,0,1,0,23.2,13,14.72,14.72,0,0,0,18,12,15,15,0,1,0,33,27C33,26.94,33,26.88,33,26.83ZM18,39A12,12,0,1,1,30,27,12,12,0,0,1,18,39Zm8-24.65A9,9,0,1,1,35,24a8.63,8.63,0,0,1-2.39-.34A15,15,0,0,0,26,14.35Z"/><path class="a" d="M22.21,17.06A10.71,10.71,0,0,0,18,16.2a10.87,10.87,0,0,0-9.78,6.25,1.29,1.29,0,0,0,.62,1.72,1.23,1.23,0,0,0,.55.13,1.3,1.3,0,0,0,1.18-.75A8.22,8.22,0,0,1,21.2,19.44a1.29,1.29,0,1,0,1-2.38Z"/><path class="a" d="M8.5,25.7A1.3,1.3,0,0,0,7.2,27a10.48,10.48,0,0,0,.14,1.68,1.3,1.3,0,0,0,1.27,1.1l.21,0A1.3,1.3,0,0,0,9.9,28.28,7.8,7.8,0,0,1,9.8,27,1.3,1.3,0,0,0,8.5,25.7Z"/><path class="a" d="M38.66,9.49A1.23,1.23,0,0,0,38,7.89a7.72,7.72,0,0,0-10.64,5.92,1.21,1.21,0,0,0,1,1.39l.19,0a1.21,1.21,0,0,0,1.2-1A5.33,5.33,0,0,1,35,9.72a5.23,5.23,0,0,1,2.06.42A1.23,1.23,0,0,0,38.66,9.49Z"/><path class="a" d="M43.19,35.82A5.62,5.62,0,0,0,35.37,41a6.52,6.52,0,0,0,.07.88,1.13,1.13,0,0,0,1.11.95l.18,0a1.13,1.13,0,0,0,.94-1.29,3,3,0,0,1-.05-.52A3.39,3.39,0,0,1,41,37.62a3.27,3.27,0,0,1,1.31.27,1.12,1.12,0,1,0,.88-2.07Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M41,31A10,10,0,1,0,51,41,10,10,0,0,0,41,31Zm0,17a7,7,0,1,1,7-7A7,7,0,0,1,41,48Z"/><path class="a" d="M33,26.83A12,12,0,1,0,23.2,13,14.72,14.72,0,0,0,18,12,15,15,0,1,0,33,27C33,26.94,33,26.88,33,26.83ZM18,39A12,12,0,1,1,30,27,12,12,0,0,1,18,39Zm8-24.65A9,9,0,1,1,35,24a8.63,8.63,0,0,1-2.39-.34A15,15,0,0,0,26,14.35Z"/><path class="a" d="M22.21,17.06A10.71,10.71,0,0,0,18,16.2a10.87,10.87,0,0,0-9.78,6.25,1.29,1.29,0,0,0,.62,1.72,1.23,1.23,0,0,0,.55.13,1.3,1.3,0,0,0,1.18-.75A8.22,8.22,0,0,1,21.2,19.44a1.29,1.29,0,1,0,1-2.38Z"/><path class="a" d="M8.5,25.7A1.3,1.3,0,0,0,7.2,27a10.48,10.48,0,0,0,.14,1.68,1.3,1.3,0,0,0,1.27,1.1l.21,0A1.3,1.3,0,0,0,9.9,28.28,7.8,7.8,0,0,1,9.8,27,1.3,1.3,0,0,0,8.5,25.7Z"/><path class="a" d="M38.66,9.49A1.23,1.23,0,0,0,38,7.89a7.72,7.72,0,0,0-10.64,5.92,1.21,1.21,0,0,0,1,1.39l.19,0a1.21,1.21,0,0,0,1.2-1A5.33,5.33,0,0,1,35,9.72a5.23,5.23,0,0,1,2.06.42A1.23,1.23,0,0,0,38.66,9.49Z"/><path class="a" d="M43.19,35.82A5.62,5.62,0,0,0,35.37,41a6.52,6.52,0,0,0,.07.88,1.13,1.13,0,0,0,1.11.95l.18,0a1.13,1.13,0,0,0,.94-1.29,3,3,0,0,1-.05-.52A3.39,3.39,0,0,1,41,37.62a3.27,3.27,0,0,1,1.31.27,1.12,1.12,0,1,0,.88-2.07Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/brainstorm.svg b/public/assets/images/icons/grey/brainstorm.svg
index b35aec4aba60e2491f10cabf501340e370a41c3a..b31507f6ab757f8d698e7eab116303a6901f0c46 100644
--- a/public/assets/images/icons/grey/brainstorm.svg
+++ b/public/assets/images/icons/grey/brainstorm.svg
@@ -1 +1 @@
-<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="Brainstorm"><path d="M28.55,25.76c-11.46-1.2-20.19-7-19.5-12.87s10.55-9.72,22-8.53a39,39,0,0,1,5.18.93,40.5,40.5,0,0,0-9.56-2.17C14.38,1.84,3.82,5.93,3.07,12.27S11.69,24.78,24,26.06a40.05,40.05,0,0,0,9.83-.14A39.25,39.25,0,0,1,28.55,25.76Z"/><path d="M25.65,6.28c11.44,1.38,20.06,7.28,19.26,13.17S34.19,29,22.75,27.63a38.62,38.62,0,0,1-5.16-1,40,40,0,0,0,9.52,2.33C39.38,30.42,50,26.5,50.88,20.18S42.49,7.53,30.22,6.05a40.49,40.49,0,0,0-9.84,0A39.6,39.6,0,0,1,25.65,6.28Z"/><path d="M28.32,38.84c-10-1-17.57-6.05-17-11.19A5.46,5.46,0,0,1,12.59,25c-.65-.25-1.39-.55-2.22-.92S9,23.41,8.46,23.13a6.42,6.42,0,0,0-2.31,4c-.64,5.51,7.5,10.89,18.2,12A35.62,35.62,0,0,0,32.9,39,35.58,35.58,0,0,1,28.32,38.84Z"/><path d="M42.91,29.36c-.8.31-1.7.63-2.47.84a23.13,23.13,0,0,1-2.53.51,4.88,4.88,0,0,1,.67,1.4c1.35,5-5.45,11-15.18,13.27a33.74,33.74,0,0,1-4.52.74,35.45,35.45,0,0,0,8.5-1C37.81,42.65,45.1,36.27,43.66,30.9A5.5,5.5,0,0,0,42.91,29.36Z"/><path d="M14.59,43a5.56,5.56,0,0,1,2.72-4.15,15.4,15.4,0,0,1-1.51-.49l-1-.39c-2.1,1.24-3.47,2.93-3.57,4.87C11,47,16.46,50.58,23.45,50.91A19.82,19.82,0,0,0,29,50.4a19.44,19.44,0,0,1-3,.12C19.51,50.21,14.39,46.83,14.59,43Z"/><path d="M42.61,29.57c-.5,0-1.75.93-2.21.9s-1.87.42-2.33.34A4.56,4.56,0,0,1,38.28,32c-.12,2.62-4.69,4.65-10.41,4.15a18.66,18.66,0,0,1-2.59-.43,11.23,11.23,0,0,0,5,1.51c6.15.52,12.38-1.67,12.69-4.84A26.14,26.14,0,0,0,42.61,29.57Z"/><path d="M29.24,8.71c-8.34-2-16.16.32-17.46,5.17A6,6,0,0,0,12.25,18c0-.11,0-.23,0-.34.81-4.73,8.05-7.55,16.16-6.32s13.77,5.88,13.24,10.51a6.36,6.36,0,0,0,.33-.7C43.28,16.25,37.58,10.7,29.24,8.71Z"/></g></svg>
+<svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="Brainstorm"><path d="M28.55,25.76c-11.46-1.2-20.19-7-19.5-12.87s10.55-9.72,22-8.53a39,39,0,0,1,5.18.93,40.5,40.5,0,0,0-9.56-2.17C14.38,1.84,3.82,5.93,3.07,12.27S11.69,24.78,24,26.06a40.05,40.05,0,0,0,9.83-.14A39.25,39.25,0,0,1,28.55,25.76Z"/><path d="M25.65,6.28c11.44,1.38,20.06,7.28,19.26,13.17S34.19,29,22.75,27.63a38.62,38.62,0,0,1-5.16-1,40,40,0,0,0,9.52,2.33C39.38,30.42,50,26.5,50.88,20.18S42.49,7.53,30.22,6.05a40.49,40.49,0,0,0-9.84,0A39.6,39.6,0,0,1,25.65,6.28Z"/><path d="M28.32,38.84c-10-1-17.57-6.05-17-11.19A5.46,5.46,0,0,1,12.59,25c-.65-.25-1.39-.55-2.22-.92S9,23.41,8.46,23.13a6.42,6.42,0,0,0-2.31,4c-.64,5.51,7.5,10.89,18.2,12A35.62,35.62,0,0,0,32.9,39,35.58,35.58,0,0,1,28.32,38.84Z"/><path d="M42.91,29.36c-.8.31-1.7.63-2.47.84a23.13,23.13,0,0,1-2.53.51,4.88,4.88,0,0,1,.67,1.4c1.35,5-5.45,11-15.18,13.27a33.74,33.74,0,0,1-4.52.74,35.45,35.45,0,0,0,8.5-1C37.81,42.65,45.1,36.27,43.66,30.9A5.5,5.5,0,0,0,42.91,29.36Z"/><path d="M14.59,43a5.56,5.56,0,0,1,2.72-4.15,15.4,15.4,0,0,1-1.51-.49l-1-.39c-2.1,1.24-3.47,2.93-3.57,4.87C11,47,16.46,50.58,23.45,50.91A19.82,19.82,0,0,0,29,50.4a19.44,19.44,0,0,1-3,.12C19.51,50.21,14.39,46.83,14.59,43Z"/><path d="M42.61,29.57c-.5,0-1.75.93-2.21.9s-1.87.42-2.33.34A4.56,4.56,0,0,1,38.28,32c-.12,2.62-4.69,4.65-10.41,4.15a18.66,18.66,0,0,1-2.59-.43,11.23,11.23,0,0,0,5,1.51c6.15.52,12.38-1.67,12.69-4.84A26.14,26.14,0,0,0,42.61,29.57Z"/><path d="M29.24,8.71c-8.34-2-16.16.32-17.46,5.17A6,6,0,0,0,12.25,18c0-.11,0-.23,0-.34.81-4.73,8.05-7.55,16.16-6.32s13.77,5.88,13.24,10.51a6.36,6.36,0,0,0,.33-.7C43.28,16.25,37.58,10.7,29.24,8.71Z"/></g></svg>
diff --git a/public/assets/images/icons/grey/chat.svg b/public/assets/images/icons/grey/chat.svg
index 9678d23c07b596bc7cf310ea64db0525a8e40e92..043db613e4265d95af9051e84d40bf600078fd78 100644
--- a/public/assets/images/icons/grey/chat.svg
+++ b/public/assets/images/icons/grey/chat.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/chat2.svg b/public/assets/images/icons/grey/chat2.svg
index 9678d23c07b596bc7cf310ea64db0525a8e40e92..043db613e4265d95af9051e84d40bf600078fd78 100644
--- a/public/assets/images/icons/grey/chat2.svg
+++ b/public/assets/images/icons/grey/chat2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/check-circle.svg b/public/assets/images/icons/grey/check-circle.svg
index 4b46745335a50df9379fb6722106d1ab8b6b10ca..727ef0c7c56379d5abcb901e6bd8d2422be5cafa 100644
--- a/public/assets/images/icons/grey/check-circle.svg
+++ b/public/assets/images/icons/grey/check-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="check-circle"><path class="cls-1" d="M40.84,21.11,36,16.25,24.18,28,18,21.87l-4.84,4.85,11,11ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="check-circle"><path class="cls-1" d="M40.84,21.11,36,16.25,24.18,28,18,21.87l-4.84,4.85,11,11ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/clipboard.svg b/public/assets/images/icons/grey/clipboard.svg
index 23deec94196bae21bf038b91b9389e8e0f2a2c2c..7307b67f7635b6c048596697149c4331bcbc40e0 100644
--- a/public/assets/images/icons/grey/clipboard.svg
+++ b/public/assets/images/icons/grey/clipboard.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="clipboard"><path class="cls-1" d="M30,23.9v24H9v-24H30m3-3H6v30H33v-30Z"/><polygon class="cls-1" points="47.98 5.91 15 5.91 15 8.91 44.99 8.91 44.99 38.9 47.98 38.9 47.98 5.91 47.98 5.91"/><polygon class="cls-1" points="26.99 14.91 26.99 17.9 33.71 17.9 23.87 27.74 25.99 29.86 35.99 19.86 35.99 26.9 38.99 26.9 38.99 14.91 26.99 14.91"/><rect class="cls-1" x="27" y="3.05" width="8.99" height="5.86"/><rect class="cls-1" x="10.5" y="10.41" width="11.99" height="3" transform="translate(28.41 -4.59) rotate(90)"/><rect class="cls-1" x="35.99" y="38.89" width="11.99" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="clipboard"><path class="cls-1" d="M30,23.9v24H9v-24H30m3-3H6v30H33v-30Z"/><polygon class="cls-1" points="47.98 5.91 15 5.91 15 8.91 44.99 8.91 44.99 38.9 47.98 38.9 47.98 5.91 47.98 5.91"/><polygon class="cls-1" points="26.99 14.91 26.99 17.9 33.71 17.9 23.87 27.74 25.99 29.86 35.99 19.86 35.99 26.9 38.99 26.9 38.99 14.91 26.99 14.91"/><rect class="cls-1" x="27" y="3.05" width="8.99" height="5.86"/><rect class="cls-1" x="10.5" y="10.41" width="11.99" height="3" transform="translate(28.41 -4.59) rotate(90)"/><rect class="cls-1" x="35.99" y="38.89" width="11.99" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/cloud.svg b/public/assets/images/icons/grey/cloud.svg
index 0c78cb6faec4c5c1e3bda9d2dd25d79421d19c31..13f5f9990cc938acf06946a1d934226b86f77876 100644
--- a/public/assets/images/icons/grey/cloud.svg
+++ b/public/assets/images/icons/grey/cloud.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><path id="cloud" d="M33.61,16.51a8.1,8.1,0,0,1,8.15,7.94l.06,2.31,2.23.54a5.15,5.15,0,0,1,3.94,5v.17a5.17,5.17,0,0,1-5.15,5H12.08a6.08,6.08,0,0,1,0-12.16,6.9,6.9,0,0,1,1.09.1l4.11.74L16.68,22a2.32,2.32,0,0,1,0-.46,3.26,3.26,0,0,1,5.84-2l2.35,3,2.39-3a8.1,8.1,0,0,1,6.39-3.1m0-3a11.14,11.14,0,0,0-8.76,4.25,6.26,6.26,0,0,0-11.21,3.83,6.44,6.44,0,0,0,.06.89,9.66,9.66,0,0,0-1.62-.14,9.09,9.09,0,0,0,0,18.17H42.84A8.18,8.18,0,0,0,51,32.32h0a8.17,8.17,0,0,0-6.24-7.94A11.16,11.16,0,0,0,33.61,13.5Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><path id="cloud" d="M33.61,16.51a8.1,8.1,0,0,1,8.15,7.94l.06,2.31,2.23.54a5.15,5.15,0,0,1,3.94,5v.17a5.17,5.17,0,0,1-5.15,5H12.08a6.08,6.08,0,0,1,0-12.16,6.9,6.9,0,0,1,1.09.1l4.11.74L16.68,22a2.32,2.32,0,0,1,0-.46,3.26,3.26,0,0,1,5.84-2l2.35,3,2.39-3a8.1,8.1,0,0,1,6.39-3.1m0-3a11.14,11.14,0,0,0-8.76,4.25,6.26,6.26,0,0,0-11.21,3.83,6.44,6.44,0,0,0,.06.89,9.66,9.66,0,0,0-1.62-.14,9.09,9.09,0,0,0,0,18.17H42.84A8.18,8.18,0,0,0,51,32.32h0a8.17,8.17,0,0,0-6.24-7.94A11.16,11.16,0,0,0,33.61,13.5Z"/></svg>
diff --git a/public/assets/images/icons/grey/comment.svg b/public/assets/images/icons/grey/comment.svg
index 63515a297cac914a546d8f4d10610683dc8dd665..1434738850656df76bd215dc4f2da0abff28e98f 100644
--- a/public/assets/images/icons/grey/comment.svg
+++ b/public/assets/images/icons/grey/comment.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="comment"><path class="cls-1" d="M37.91,6.8A6.3,6.3,0,0,0,29.47,9l-1,1.72L26.9,13.27,13,36.47,13.13,48,23.7,42.42,37.6,19.23l1.54-2.58,1-1.72A5.83,5.83,0,0,0,37.91,6.8ZM21.46,40.21l-1.95,1-3.39-1.89,0-2.1L29.57,14.76l5.35,3Zm9.66-28,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06l-1,1.72Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="comment"><path class="cls-1" d="M37.91,6.8A6.3,6.3,0,0,0,29.47,9l-1,1.72L26.9,13.27,13,36.47,13.13,48,23.7,42.42,37.6,19.23l1.54-2.58,1-1.72A5.83,5.83,0,0,0,37.91,6.8ZM21.46,40.21l-1.95,1-3.39-1.89,0-2.1L29.57,14.76l5.35,3Zm9.66-28,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06l-1,1.72Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/comment2.svg b/public/assets/images/icons/grey/comment2.svg
index 73b17ec3b9d2ec930ebfc600b958e6ee4658a7f1..8eb48746c6b522e61cd18c9be088eaf0165cddcf 100644
--- a/public/assets/images/icons/grey/comment2.svg
+++ b/public/assets/images/icons/grey/comment2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="comment"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="comment"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/community.svg b/public/assets/images/icons/grey/community.svg
index 2aade3dd980d136c2920d1599c67e046271b732a..17738e78fae70978162bded71b70796d4d9eb872 100644
--- a/public/assets/images/icons/grey/community.svg
+++ b/public/assets/images/icons/grey/community.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M37,25a9,9,0,1,0-9-9A9,9,0,0,0,37,25Z"/><path class="a" d="M17,25a9,9,0,1,0-9-9A9,9,0,0,0,17,25Z"/><path class="a" d="M44.79,29H29.2a6.21,6.21,0,0,0-6.2,6.2V48H51V35.17A6.21,6.21,0,0,0,44.79,29Z"/><path class="a" d="M3,35.17V48H20V35.17A9.11,9.11,0,0,1,22.43,29H9.2A6.21,6.21,0,0,0,3,35.17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M37,25a9,9,0,1,0-9-9A9,9,0,0,0,37,25Z"/><path class="a" d="M17,25a9,9,0,1,0-9-9A9,9,0,0,0,17,25Z"/><path class="a" d="M44.79,29H29.2a6.21,6.21,0,0,0-6.2,6.2V48H51V35.17A6.21,6.21,0,0,0,44.79,29Z"/><path class="a" d="M3,35.17V48H20V35.17A9.11,9.11,0,0,1,22.43,29H9.2A6.21,6.21,0,0,0,3,35.17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/community2.svg b/public/assets/images/icons/grey/community2.svg
index d2dba9cfbd8edd596f5daa1f8707f253d77087e4..0ff7bc5cfda2ba50a1a69a125eb1d69a20f5fea2 100644
--- a/public/assets/images/icons/grey/community2.svg
+++ b/public/assets/images/icons/grey/community2.svg
@@ -1 +1 @@
-<svg id="Icons" data-name="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="community2"><path d="M23,15a12.86,12.86,0,0,1,2.09-7,10,10,0,1,0,0,14.08A12.86,12.86,0,0,1,23,15Zm-5,4a4,4,0,1,1,4-4A4,4,0,0,1,18,19Z"/><path d="M36,25A10,10,0,1,1,46,15,10,10,0,0,1,36,25Zm0-14a4,4,0,1,0,4,4A4,4,0,0,0,36,11Z"/><path d="M9,43V36a2,2,0,0,1,2-2h5c0-2,2-6,5-6H11a8,8,0,0,0-8,8V49H16V43Z"/><path d="M51,49H19V36a8,8,0,0,1,8-8H43a8,8,0,0,1,8,8ZM25,43H45V36a2,2,0,0,0-2-2H27a2,2,0,0,0-2,2Z"/></g></svg>
+<svg width="16" height="16" id="Icons" data-name="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="community2"><path d="M23,15a12.86,12.86,0,0,1,2.09-7,10,10,0,1,0,0,14.08A12.86,12.86,0,0,1,23,15Zm-5,4a4,4,0,1,1,4-4A4,4,0,0,1,18,19Z"/><path d="M36,25A10,10,0,1,1,46,15,10,10,0,0,1,36,25Zm0-14a4,4,0,1,0,4,4A4,4,0,0,0,36,11Z"/><path d="M9,43V36a2,2,0,0,1,2-2h5c0-2,2-6,5-6H11a8,8,0,0,0-8,8V49H16V43Z"/><path d="M51,49H19V36a8,8,0,0,1,8-8H43a8,8,0,0,1,8,8ZM25,43H45V36a2,2,0,0,0-2-2H27a2,2,0,0,0-2,2Z"/></g></svg>
diff --git a/public/assets/images/icons/grey/content.svg b/public/assets/images/icons/grey/content.svg
index 2377f72d13239929554f2bce6429e57168ca3d4f..5f8dbcbeef725ba26c33c621351045140283edda 100644
--- a/public/assets/images/icons/grey/content.svg
+++ b/public/assets/images/icons/grey/content.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M44.94,9a6.44,6.44,0,0,1-.87,3.82L43.37,14H46V42H8V14H28L30.67,9.5,31,9H3V47H51V9Z"/><polygon class="a" points="26.26 16.97 10.96 16.97 10.96 38.97 20.08 38.97 20.06 36.99 19.96 28.21 19.96 27.65 20.24 27.17 26.26 16.97"/><polygon class="a" points="31.71 33.74 31.43 34.22 30.93 34.48 23.01 38.73 22.56 38.97 42.96 38.97 42.96 16.97 41.6 16.97 31.71 33.74"/><path class="a" d="M22.06,37,30,32.72,40.41,15.05l1.16-2,.77-1.31a4.48,4.48,0,0,0-1.69-6.19,4.69,4.69,0,0,0-6.33,1.66l-.77,1.31-1.16,2L22,28.19ZM36.32,8.37a2.36,2.36,0,0,1,3.17-.83,2.25,2.25,0,0,1,.85,3.1L39.56,12l-4-2.27Zm-1.93,3.28,4,2.26L28.31,31l-1.46.78L24.3,30.38v-1.6Z"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M44.94,9a6.44,6.44,0,0,1-.87,3.82L43.37,14H46V42H8V14H28L30.67,9.5,31,9H3V47H51V9Z"/><polygon class="a" points="26.26 16.97 10.96 16.97 10.96 38.97 20.08 38.97 20.06 36.99 19.96 28.21 19.96 27.65 20.24 27.17 26.26 16.97"/><polygon class="a" points="31.71 33.74 31.43 34.22 30.93 34.48 23.01 38.73 22.56 38.97 42.96 38.97 42.96 16.97 41.6 16.97 31.71 33.74"/><path class="a" d="M22.06,37,30,32.72,40.41,15.05l1.16-2,.77-1.31a4.48,4.48,0,0,0-1.69-6.19,4.69,4.69,0,0,0-6.33,1.66l-.77,1.31-1.16,2L22,28.19ZM36.32,8.37a2.36,2.36,0,0,1,3.17-.83,2.25,2.25,0,0,1,.85,3.1L39.56,12l-4-2.27Zm-1.93,3.28,4,2.26L28.31,31l-1.46.78L24.3,30.38v-1.6Z"/></svg>
diff --git a/public/assets/images/icons/grey/courseware.svg b/public/assets/images/icons/grey/courseware.svg
index 2d41df869dbc4ef7f479304dcd3e85ddef572e70..609345997dbba9441212e5e81123d546a0c314db 100644
--- a/public/assets/images/icons/grey/courseware.svg
+++ b/public/assets/images/icons/grey/courseware.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="courseware"><polygon class="cls-1" points="30.85 9.37 27 6 23.14 9.37 27 11.16 30.85 9.37"/><polygon class="cls-1" points="37.56 15.24 33.71 11.87 27 15.22 20.28 11.87 16.43 15.24 27.05 21.56 37.56 15.24"/><polygon class="cls-1" points="44.27 21.12 40.42 17.75 27.05 26.97 13.57 17.75 9.72 21.12 27.05 34.5 44.27 21.12"/><polygon class="cls-1" points="47.13 23.62 27.05 40.33 6.86 23.62 3.01 26.99 27 47.98 50.98 26.99 47.13 23.62"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="courseware"><polygon class="cls-1" points="30.85 9.37 27 6 23.14 9.37 27 11.16 30.85 9.37"/><polygon class="cls-1" points="37.56 15.24 33.71 11.87 27 15.22 20.28 11.87 16.43 15.24 27.05 21.56 37.56 15.24"/><polygon class="cls-1" points="44.27 21.12 40.42 17.75 27.05 26.97 13.57 17.75 9.72 21.12 27.05 34.5 44.27 21.12"/><polygon class="cls-1" points="47.13 23.62 27.05 40.33 6.86 23.62 3.01 26.99 27 47.98 50.98 26.99 47.13 23.62"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/crop.svg b/public/assets/images/icons/grey/crop.svg
index 24c496ab5b0bb54a8cd745ebde0e6a60a65606b9..08e5bf3b7aa4432a2a55557f042d032fd0da1595 100644
--- a/public/assets/images/icons/grey/crop.svg
+++ b/public/assets/images/icons/grey/crop.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="crop"><path d="M3,3V51H51V3ZM48,33h-4.5v2.9H48V48H35.94v-4.5H33V48H6v-12H10.5V33H6V6H33v4.5h2.9V6H48Z"/><rect x="16" y="33.04" width="8.25" height="2.9"/><polygon points="35.94 29.74 33.04 29.74 33.04 33.04 29.75 33.04 29.75 35.94 33.04 35.94 33.04 37.99 35.94 37.99 35.94 35.94 37.99 35.94 37.99 33.04 35.94 33.04 35.94 29.74"/><rect x="33.04" y="16" width="2.9" height="8.25"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="crop"><path d="M3,3V51H51V3ZM48,33h-4.5v2.9H48V48H35.94v-4.5H33V48H6v-12H10.5V33H6V6H33v4.5h2.9V6H48Z"/><rect x="16" y="33.04" width="8.25" height="2.9"/><polygon points="35.94 29.74 33.04 29.74 33.04 33.04 29.75 33.04 29.75 35.94 33.04 35.94 33.04 37.99 35.94 37.99 35.94 35.94 37.99 35.94 37.99 33.04 35.94 33.04 35.94 29.74"/><rect x="33.04" y="16" width="2.9" height="8.25"/></g></svg>
diff --git a/public/assets/images/icons/grey/crown.svg b/public/assets/images/icons/grey/crown.svg
index 8af67183a7d6e250c36f26bfc2fdeb7eb036ee90..9d83b1a5b27557538637e2d40ccbeea7d5b8986f 100644
--- a/public/assets/images/icons/grey/crown.svg
+++ b/public/assets/images/icons/grey/crown.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="crown"><path class="cls-1" d="M48,17a3,3,0,0,0-3,3,3,3,0,0,0,.31,1.31L37,26.53,29.88,14.76a4,4,0,1,0-5.76,0L17,26.53,8.21,21A2.94,2.94,0,0,0,9,19a3,3,0,1,0-3.23,3L12,46H42l6-23h0a3,3,0,0,0,0-6ZM14.32,43l-.78-3H40.46l-.78,3Zm26.92-6H12.76l-3-11.42,5.61,3.52L18,30.69l1.58-2.61L26.88,16h.24l7.31,12.09L36,30.69l2.59-1.62,5.6-3.52Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="crown"><path class="cls-1" d="M48,17a3,3,0,0,0-3,3,3,3,0,0,0,.31,1.31L37,26.53,29.88,14.76a4,4,0,1,0-5.76,0L17,26.53,8.21,21A2.94,2.94,0,0,0,9,19a3,3,0,1,0-3.23,3L12,46H42l6-23h0a3,3,0,0,0,0-6ZM14.32,43l-.78-3H40.46l-.78,3Zm26.92-6H12.76l-3-11.42,5.61,3.52L18,30.69l1.58-2.61L26.88,16h.24l7.31,12.09L36,30.69l2.59-1.62,5.6-3.52Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/date-block.svg b/public/assets/images/icons/grey/date-block.svg
index 9f63fbf31ba00ca9f9ccc90443246415a32d514e..19ff5bb1b6f4b2b7a32cfa2b6edf45560c261b91 100644
--- a/public/assets/images/icons/grey/date-block.svg
+++ b/public/assets/images/icons/grey/date-block.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="date-block"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM6.77,27A14.86,14.86,0,1,1,21.63,41.84,14.88,14.88,0,0,1,6.77,27Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="date-block"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM6.77,27A14.86,14.86,0,1,1,21.63,41.84,14.88,14.88,0,0,1,6.77,27Z"/></g></svg>
diff --git a/public/assets/images/icons/grey/date-cycle.svg b/public/assets/images/icons/grey/date-cycle.svg
index de7a2385e8a8e11e8cdacc730698684b1c9c82d1..1226c467d8a8c0b7e997076f506d7059133a8471 100644
--- a/public/assets/images/icons/grey/date-cycle.svg
+++ b/public/assets/images/icons/grey/date-cycle.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="date-cycle"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM21.63,41.84A14.85,14.85,0,1,1,36.48,27,14.88,14.88,0,0,1,21.63,41.84Zm11.23,0a18.58,18.58,0,0,0,0-29.66,14.84,14.84,0,0,1,0,29.66Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="date-cycle"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM21.63,41.84A14.85,14.85,0,1,1,36.48,27,14.88,14.88,0,0,1,21.63,41.84Zm11.23,0a18.58,18.58,0,0,0,0-29.66,14.84,14.84,0,0,1,0,29.66Z"/></g></svg>
diff --git a/public/assets/images/icons/grey/date-single.svg b/public/assets/images/icons/grey/date-single.svg
index d1ee8c78c3966d09cf76dd3cf4aef2ffa491baa4..af483f084d9b2308374ef7f494e11b119c23b6b5 100644
--- a/public/assets/images/icons/grey/date-single.svg
+++ b/public/assets/images/icons/grey/date-single.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="date-single"><path d="M27,8.37A18.62,18.62,0,1,0,45.62,27,18.63,18.63,0,0,0,27,8.37Zm0,33.47A14.85,14.85,0,1,1,41.85,27,14.86,14.86,0,0,1,27,41.84Z"/><polygon points="24.25 14.45 24.25 26 17.1 30.16 19.93 35.12 29.91 29.33 29.97 29.33 29.96 14.45 24.25 14.45"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="date-single"><path d="M27,8.37A18.62,18.62,0,1,0,45.62,27,18.63,18.63,0,0,0,27,8.37Zm0,33.47A14.85,14.85,0,1,1,41.85,27,14.86,14.86,0,0,1,27,41.84Z"/><polygon points="24.25 14.45 24.25 26 17.1 30.16 19.93 35.12 29.91 29.33 29.97 29.33 29.96 14.45 24.25 14.45"/></g></svg>
diff --git a/public/assets/images/icons/grey/decline-circle.svg b/public/assets/images/icons/grey/decline-circle.svg
index 722489715b2068a473d1928607880f75bf5e46fd..dac20a409b63e3526759dde176c9f1e48df55620 100644
--- a/public/assets/images/icons/grey/decline-circle.svg
+++ b/public/assets/images/icons/grey/decline-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="decline-circle"><path class="cls-1" d="M38.68,34l-7-7,7-7-4.94-5-7,7-7-7L14.75,20l7,7-7,7L19.7,39l7-7,7,7ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="decline-circle"><path class="cls-1" d="M38.68,34l-7-7,7-7-4.94-5-7,7-7-7L14.75,20l7,7-7,7L19.7,39l7-7,7,7ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/decline.svg b/public/assets/images/icons/grey/decline.svg
index e02e6e0972b5662856f1c8bf5343715ca1f59f59..6907102334afe2394266eaf781935d225892e347 100644
--- a/public/assets/images/icons/grey/decline.svg
+++ b/public/assets/images/icons/grey/decline.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="decline"><polygon id="decline-2" data-name="decline" class="cls-1" points="47.32 38.91 35.4 26.99 47.32 15.07 38.93 6.67 27 18.59 15.07 6.67 6.68 15.06 18.61 26.98 6.67 38.91 15.08 47.32 27.01 35.39 38.93 47.31 47.32 38.91"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="decline"><polygon id="decline-2" data-name="decline" class="cls-1" points="47.32 38.91 35.4 26.99 47.32 15.07 38.93 6.67 27 18.59 15.07 6.67 6.68 15.06 18.61 26.98 6.67 38.91 15.08 47.32 27.01 35.39 38.93 47.31 47.32 38.91"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/door-enter.svg b/public/assets/images/icons/grey/door-enter.svg
index be55f8b05e565ef8140bee9d216d1334f24433cb..78aeebe0286a4a3c6e2ab2a8813a3bced7ef055c 100644
--- a/public/assets/images/icons/grey/door-enter.svg
+++ b/public/assets/images/icons/grey/door-enter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="door-enter"><path class="cls-1" d="M22,3V45h3V6H37L29,8V51l20-6V3Zm10,7.34,14-3.5V42.74l-14,4.2Z"/><polygon class="cls-1" points="5 13 5 20.09 11.91 27 5 33.91 5 41 19 27 5 13"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="door-enter"><path class="cls-1" d="M22,3V45h3V6H37L29,8V51l20-6V3Zm10,7.34,14-3.5V42.74l-14,4.2Z"/><polygon class="cls-1" points="5 13 5 20.09 11.91 27 5 33.91 5 41 19 27 5 13"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/door-leave.svg b/public/assets/images/icons/grey/door-leave.svg
index 1f7ccc6b963f2036cfb5b2992805216e22c5840f..9546e4b2a8a2838aa3944da6b8f51a315c1ede94 100644
--- a/public/assets/images/icons/grey/door-leave.svg
+++ b/public/assets/images/icons/grey/door-leave.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="door-leave"><path class="cls-1" d="M5,45l20,6V8L17,6H29V45h3V3H5Zm3-3V6.81l14,3.5V46.94L8,42.74Z"/><polygon class="cls-1" points="35 13 35 20.09 41.91 27 35 33.91 35 41 49 27 35 13"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="door-leave"><path class="cls-1" d="M5,45l20,6V8L17,6H29V45h3V3H5Zm3-3V6.81l14,3.5V46.94L8,42.74Z"/><polygon class="cls-1" points="35 13 35 20.09 41.91 27 35 33.91 35 41 49 27 35 13"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/download.svg b/public/assets/images/icons/grey/download.svg
index 2c68f5a6732914069c5af27fb52d36a9a844b221..1cb8ca585df8225d46ed6c457c8359abda0bc783 100644
--- a/public/assets/images/icons/grey/download.svg
+++ b/public/assets/images/icons/grey/download.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/download2.svg b/public/assets/images/icons/grey/download2.svg
index 2c68f5a6732914069c5af27fb52d36a9a844b221..1cb8ca585df8225d46ed6c457c8359abda0bc783 100644
--- a/public/assets/images/icons/grey/download2.svg
+++ b/public/assets/images/icons/grey/download2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/edit-small.svg b/public/assets/images/icons/grey/edit-small.svg
index a9193b2ee3bf24d30d4206763a4573fec3992d67..b6a44d4134ccb8d6f0d2295df867a4a867a41ed4 100644
--- a/public/assets/images/icons/grey/edit-small.svg
+++ b/public/assets/images/icons/grey/edit-small.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/edit.svg b/public/assets/images/icons/grey/edit.svg
index a9193b2ee3bf24d30d4206763a4573fec3992d67..b6a44d4134ccb8d6f0d2295df867a4a867a41ed4 100644
--- a/public/assets/images/icons/grey/edit.svg
+++ b/public/assets/images/icons/grey/edit.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/exclaim-circle-full.svg b/public/assets/images/icons/grey/exclaim-circle-full.svg
index caf3699a3d0e5c40f2deffb6abc35f991b2c135c..b2b10d0e5769fb79b26615f4b84817b8c12b6b68 100644
--- a/public/assets/images/icons/grey/exclaim-circle-full.svg
+++ b/public/assets/images/icons/grey/exclaim-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/exclaim-circle.svg b/public/assets/images/icons/grey/exclaim-circle.svg
index caf3699a3d0e5c40f2deffb6abc35f991b2c135c..b2b10d0e5769fb79b26615f4b84817b8c12b6b68 100644
--- a/public/assets/images/icons/grey/exclaim-circle.svg
+++ b/public/assets/images/icons/grey/exclaim-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/export.svg b/public/assets/images/icons/grey/export.svg
index 01603e5fc7c80623396d1acc292bbad885f41df2..7b26c7bfddd246a33c202c4089b0f8a2787127fe 100644
--- a/public/assets/images/icons/grey/export.svg
+++ b/public/assets/images/icons/grey/export.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-archive.svg b/public/assets/images/icons/grey/file-archive.svg
index 69229b4a4f303b98d9ee957f23b4e212d67eff7f..e8c9c8be432c6253d092b89219c5e9f40c38640a 100644
--- a/public/assets/images/icons/grey/file-archive.svg
+++ b/public/assets/images/icons/grey/file-archive.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><rect class="a" x="27" y="14.97" width="3" height="3"/><rect class="a" x="27" y="20.97" width="3" height="3"/><rect class="a" x="24" y="23.97" width="3" height="3"/><rect class="a" x="27" y="26.97" width="3" height="3"/><rect class="a" x="27" y="32.97" width="3" height="3"/><rect class="a" x="24" y="29.97" width="3" height="3"/><rect class="a" x="24" y="35.97" width="3" height="3"/><rect class="a" x="27" y="38.97" width="3" height="3"/><rect class="a" x="24" y="41.97" width="3" height="3"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm16.45,8.13A1.44,1.44,0,0,1,24,9.65,1.42,1.42,0,0,1,25.24,9h.2a1.42,1.42,0,0,1,.51.18A1.45,1.45,0,0,1,26.45,11.13ZM35,46.71V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-2,2.81V45H27v2.94H13.09V6.1H23.93v2a2.65,2.65,0,0,0-.69.56h0l-3.5,4h0a3.81,3.81,0,0,0-.37.5,3.56,3.56,0,0,0,1.23,4.88,3.49,3.49,0,0,0,3.4.07V21h3V18H24.4a3.55,3.55,0,0,0,1.08-1.1,3.67,3.67,0,0,0,.27-.57h0L26.26,15H27V13c.12-.3.24-.63.4-1H30V6.1H40.91Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><rect class="a" x="27" y="14.97" width="3" height="3"/><rect class="a" x="27" y="20.97" width="3" height="3"/><rect class="a" x="24" y="23.97" width="3" height="3"/><rect class="a" x="27" y="26.97" width="3" height="3"/><rect class="a" x="27" y="32.97" width="3" height="3"/><rect class="a" x="24" y="29.97" width="3" height="3"/><rect class="a" x="24" y="35.97" width="3" height="3"/><rect class="a" x="27" y="38.97" width="3" height="3"/><rect class="a" x="24" y="41.97" width="3" height="3"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm16.45,8.13A1.44,1.44,0,0,1,24,9.65,1.42,1.42,0,0,1,25.24,9h.2a1.42,1.42,0,0,1,.51.18A1.45,1.45,0,0,1,26.45,11.13ZM35,46.71V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-2,2.81V45H27v2.94H13.09V6.1H23.93v2a2.65,2.65,0,0,0-.69.56h0l-3.5,4h0a3.81,3.81,0,0,0-.37.5,3.56,3.56,0,0,0,1.23,4.88,3.49,3.49,0,0,0,3.4.07V21h3V18H24.4a3.55,3.55,0,0,0,1.08-1.1,3.67,3.67,0,0,0,.27-.57h0L26.26,15H27V13c.12-.3.24-.63.4-1H30V6.1H40.91Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-audio.svg b/public/assets/images/icons/grey/file-audio.svg
index 24d5fdf98cde17f8a38033d8980b4ea01692288a..1a621ee40a758e804fdcb7e64ee550e7d4861dcf 100644
--- a/public/assets/images/icons/grey/file-audio.svg
+++ b/public/assets/images/icons/grey/file-audio.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="19.14 17.91 16 17.91 16 24.19 19.14 24.19 23.86 27.34 25.43 27.34 25.43 14.76 23.86 14.76 19.14 17.91"/><path class="a" d="M29.73,13.68l-2.06,2.06a7.4,7.4,0,0,1,0,10.46l2.06,2.06A10.3,10.3,0,0,0,29.73,13.68Z"/><path class="a" d="M33.44,10,31.38,12a12.63,12.63,0,0,1,0,17.88L33.44,32A15.55,15.55,0,0,0,33.44,10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="19.14 17.91 16 17.91 16 24.19 19.14 24.19 23.86 27.34 25.43 27.34 25.43 14.76 23.86 14.76 19.14 17.91"/><path class="a" d="M29.73,13.68l-2.06,2.06a7.4,7.4,0,0,1,0,10.46l2.06,2.06A10.3,10.3,0,0,0,29.73,13.68Z"/><path class="a" d="M33.44,10,31.38,12a12.63,12.63,0,0,1,0,17.88L33.44,32A15.55,15.55,0,0,0,33.44,10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-audio2.svg b/public/assets/images/icons/grey/file-audio2.svg
index 1eda870af48a34be1f6d12a5b86b6fa4872a93e9..61c08dbbe4d2e9d80575a236a0ad37a4c99f5ab7 100644
--- a/public/assets/images/icons/grey/file-audio2.svg
+++ b/public/assets/images/icons/grey/file-audio2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M21.75,34.72A5.25,5.25,0,0,0,27,29.47V17.22s.77-1.74,3.33.64c3.29,3.06,7.17.56,7.17.56s-4.77-1.15-5.75-4.26A5.25,5.25,0,0,0,27,10.22H23.5V24.54a5.32,5.32,0,0,0-1.75-.32,5.25,5.25,0,0,0,0,10.5Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M21.75,34.72A5.25,5.25,0,0,0,27,29.47V17.22s.77-1.74,3.33.64c3.29,3.06,7.17.56,7.17.56s-4.77-1.15-5.75-4.26A5.25,5.25,0,0,0,27,10.22H23.5V24.54a5.32,5.32,0,0,0-1.75-.32,5.25,5.25,0,0,0,0,10.5Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-big.svg b/public/assets/images/icons/grey/file-big.svg
index dcbf28780ea48a5c8704fa60bebcdf9a01e00f32..1f8663bf93b6d333aa531f45f8f2fb3da5619d50 100644
--- a/public/assets/images/icons/grey/file-big.svg
+++ b/public/assets/images/icons/grey/file-big.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-excel.svg b/public/assets/images/icons/grey/file-excel.svg
index 47a5e10e7f4e17ffe8a047c557819976ba61ad17..8140f49d2d479cc981252bdc0c89f1084485671c 100644
--- a/public/assets/images/icons/grey/file-excel.svg
+++ b/public/assets/images/icons/grey/file-excel.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M31.41,32,27,24.31,22.6,32H17.5l7.08-11.28L18,10H23l4,7.11L31,10h5L29.39,20.69,36.5,32Z"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm3.09,3.1H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.71V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M31.41,32,27,24.31,22.6,32H17.5l7.08-11.28L18,10H23l4,7.11L31,10h5L29.39,20.69,36.5,32Z"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm3.09,3.1H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.71V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-generic.svg b/public/assets/images/icons/grey/file-generic.svg
index dcbf28780ea48a5c8704fa60bebcdf9a01e00f32..1f8663bf93b6d333aa531f45f8f2fb3da5619d50 100644
--- a/public/assets/images/icons/grey/file-generic.svg
+++ b/public/assets/images/icons/grey/file-generic.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-office.svg b/public/assets/images/icons/grey/file-office.svg
index 897a367eb5dc2840f4305c375db05672546b3240..603d77630901effbae16de0bcddfb4f6d40a5d28 100644
--- a/public/assets/images/icons/grey/file-office.svg
+++ b/public/assets/images/icons/grey/file-office.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM35,46.68V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09V6.06H40.91Z"/><path class="a" d="M24.56,23H16v3h6.77l-.85,1.41L22,34l6-3.19L36,17.53l.88-1.48.59-1a3.34,3.34,0,0,0-1.29-4.64,3.61,3.61,0,0,0-4.25.54H16v3H30l-.1.16L28.16,17H16v3H26.36ZM35.27,11.9a1.66,1.66,0,0,1,.65,2.32l-.59,1-3.06-1.7.59-1A1.8,1.8,0,0,1,35.27,11.9ZM31.39,15l3.06,1.7-7.7,12.84-1.11.59L23.7,29v-1.2Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM35,46.68V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09V6.06H40.91Z"/><path class="a" d="M24.56,23H16v3h6.77l-.85,1.41L22,34l6-3.19L36,17.53l.88-1.48.59-1a3.34,3.34,0,0,0-1.29-4.64,3.61,3.61,0,0,0-4.25.54H16v3H30l-.1.16L28.16,17H16v3H26.36ZM35.27,11.9a1.66,1.66,0,0,1,.65,2.32l-.59,1-3.06-1.7.59-1A1.8,1.8,0,0,1,35.27,11.9ZM31.39,15l3.06,1.7-7.7,12.84-1.11.59L23.7,29v-1.2Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-pdf.svg b/public/assets/images/icons/grey/file-pdf.svg
index 9ee67f9575074b0ae9d56b7e6f6be79a22021df0..85a2fd52da367c2ff6139ddc0d25f7d932f924a7 100644
--- a/public/assets/images/icons/grey/file-pdf.svg
+++ b/public/assets/images/icons/grey/file-pdf.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a,.b{fill:#6e6e6e;}.b{fill-rule:evenodd;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="b" d="M32.7,24.13c2.19,1.74,4,1,3.71.69C35.63,23.8,34.08,23.8,32.7,24.13Zm2.85-1a8.49,8.49,0,0,0-5,.09A7.88,7.88,0,0,1,26,18c-1.83-5.82,0-7.69.12-4.06l.37,2.47s1.27-3.08.45-5.33c-.71-2-2.77-1.66-2.89,2a20.45,20.45,0,0,0,.64,5.46,53.31,53.31,0,0,1-4.72,10c-2.74,4.27-2.91,2.83-2.24,1.41.79-1.7,2.12-2.58,2.57-3.29,0,0-2.08.16-3.69,2.93-1,1.76-1.14,6.11,3.21,1.39a21,21,0,0,0,2.65-4.08A45.49,45.49,0,0,1,31,24.56a11.5,11.5,0,0,0,3.74,1.68C37.4,26.85,40.1,24.69,35.55,23.15ZM23.18,25l2.2-5c1.46,3.1,3.52,3.73,3.52,3.73C28,23.78,23.18,25,23.18,25Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a,.b{fill:#6e6e6e;}.b{fill-rule:evenodd;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="b" d="M32.7,24.13c2.19,1.74,4,1,3.71.69C35.63,23.8,34.08,23.8,32.7,24.13Zm2.85-1a8.49,8.49,0,0,0-5,.09A7.88,7.88,0,0,1,26,18c-1.83-5.82,0-7.69.12-4.06l.37,2.47s1.27-3.08.45-5.33c-.71-2-2.77-1.66-2.89,2a20.45,20.45,0,0,0,.64,5.46,53.31,53.31,0,0,1-4.72,10c-2.74,4.27-2.91,2.83-2.24,1.41.79-1.7,2.12-2.58,2.57-3.29,0,0-2.08.16-3.69,2.93-1,1.76-1.14,6.11,3.21,1.39a21,21,0,0,0,2.65-4.08A45.49,45.49,0,0,1,31,24.56a11.5,11.5,0,0,0,3.74,1.68C37.4,26.85,40.1,24.69,35.55,23.15ZM23.18,25l2.2-5c1.46,3.1,3.52,3.73,3.52,3.73C28,23.78,23.18,25,23.18,25Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-pic.svg b/public/assets/images/icons/grey/file-pic.svg
index 4b85bf09c037490caf27e888c77d039fb990e133..f1389558618ed8f4d5b5851e4143e894b3da52fb 100644
--- a/public/assets/images/icons/grey/file-pic.svg
+++ b/public/assets/images/icons/grey/file-pic.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M31,16V14a2,2,0,0,0-2-2H25a2,2,0,0,0-2,2v2H18a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H36a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Zm-4,11.8a5,5,0,1,1,5-5A5,5,0,0,1,27,27.77ZM36,22H33V19h3Z"/><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="18" y="13.97" width="4" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M31,16V14a2,2,0,0,0-2-2H25a2,2,0,0,0-2,2v2H18a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H36a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Zm-4,11.8a5,5,0,1,1,5-5A5,5,0,0,1,27,27.77ZM36,22H33V19h3Z"/><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="18" y="13.97" width="4" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-pic2.svg b/public/assets/images/icons/grey/file-pic2.svg
index 72e36eecc7c0041b151e17f901542ccc0ec14cc4..394f0aba87c1e9881a2e9ab44f659e509f7dd90d 100644
--- a/public/assets/images/icons/grey/file-pic2.svg
+++ b/public/assets/images/icons/grey/file-pic2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M38.91,24.39,34.5,21.5l-5.81,4.92L19.47,17l-4.38,5.3L12,26V32H42V26.42Z"/><circle class="a" cx="30" cy="13.97" r="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M38.91,24.39,34.5,21.5l-5.81,4.92L19.47,17l-4.38,5.3L12,26V32H42V26.42Z"/><circle class="a" cx="30" cy="13.97" r="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-ppt.svg b/public/assets/images/icons/grey/file-ppt.svg
index f9d5ec00a9e8f027529b67f4648de9da86e44fd8..6cfc0d5d09a2fec5e68143da2b64e98d6d8008b8 100644
--- a/public/assets/images/icons/grey/file-ppt.svg
+++ b/public/assets/images/icons/grey/file-ppt.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M27.64,23.69H23.35V32H19V10h8.64c4.6,0,7.36,3.12,7.36,6.86S32.24,23.69,27.64,23.69Zm-.22-9.89H23.35v6h4.07a2.93,2.93,0,0,0,3.23-3A3,3,0,0,0,27.42,13.8Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M27.64,23.69H23.35V32H19V10h8.64c4.6,0,7.36,3.12,7.36,6.86S32.24,23.69,27.64,23.69Zm-.22-9.89H23.35v6h4.07a2.93,2.93,0,0,0,3.23-3A3,3,0,0,0,27.42,13.8Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-presentation.svg b/public/assets/images/icons/grey/file-presentation.svg
index 9459bbca0cc873c97af81cabb500655f28a782f8..0035d0e81292d85166abafa70618188fc62c645b 100644
--- a/public/assets/images/icons/grey/file-presentation.svg
+++ b/public/assets/images/icons/grey/file-presentation.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM40.91,6.06V26H29.82a3.07,3.07,0,0,0-2.92-2H19.1a3.07,3.07,0,0,0-2.92,2H13.09V6.06ZM35,46.68V42h4.64ZM37.91,39H32v5.91a3,3,0,0,1-3,3H13.09V29H16v4H30V29H40.91v7A3,3,0,0,1,37.91,39Z"/><path class="a" d="M23,22a4.5,4.5,0,1,0-4.5-4.5A4.49,4.49,0,0,0,23,22Z"/><rect class="a" x="31" y="8.97" width="7" height="7"/><rect class="a" x="31" y="17.97" width="7" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM40.91,6.06V26H29.82a3.07,3.07,0,0,0-2.92-2H19.1a3.07,3.07,0,0,0-2.92,2H13.09V6.06ZM35,46.68V42h4.64ZM37.91,39H32v5.91a3,3,0,0,1-3,3H13.09V29H16v4H30V29H40.91v7A3,3,0,0,1,37.91,39Z"/><path class="a" d="M23,22a4.5,4.5,0,1,0-4.5-4.5A4.49,4.49,0,0,0,23,22Z"/><rect class="a" x="31" y="8.97" width="7" height="7"/><rect class="a" x="31" y="17.97" width="7" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-small.svg b/public/assets/images/icons/grey/file-small.svg
index dcbf28780ea48a5c8704fa60bebcdf9a01e00f32..1f8663bf93b6d333aa531f45f8f2fb3da5619d50 100644
--- a/public/assets/images/icons/grey/file-small.svg
+++ b/public/assets/images/icons/grey/file-small.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-sound.svg b/public/assets/images/icons/grey/file-sound.svg
index 4f60cc89e3b63ea3fecbe8b42d87c94b4c77f614..77b6690b31220d51ebe5c10a7c605a21302e4f5b 100644
--- a/public/assets/images/icons/grey/file-sound.svg
+++ b/public/assets/images/icons/grey/file-sound.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.57 17.46 18 17.46 18 22.61 20.57 22.61 24.43 25.18 25.71 25.18 25.71 14.89 24.43 14.89 20.57 17.46"/><path class="a" d="M29.24,14l-1.69,1.68a6.06,6.06,0,0,1,0,8.56l1.69,1.68A8.43,8.43,0,0,0,29.24,14Z"/><path class="a" d="M32.27,11l-1.69,1.69a10.31,10.31,0,0,1,0,14.62L32.27,29A12.73,12.73,0,0,0,32.27,11Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.57 17.46 18 17.46 18 22.61 20.57 22.61 24.43 25.18 25.71 25.18 25.71 14.89 24.43 14.89 20.57 17.46"/><path class="a" d="M29.24,14l-1.69,1.68a6.06,6.06,0,0,1,0,8.56l1.69,1.68A8.43,8.43,0,0,0,29.24,14Z"/><path class="a" d="M32.27,11l-1.69,1.69a10.31,10.31,0,0,1,0,14.62L32.27,29A12.73,12.73,0,0,0,32.27,11Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-spreadsheet.svg b/public/assets/images/icons/grey/file-spreadsheet.svg
index 0b9224bc1049228cf9410f0d82b0ba84eb7259cd..b1b8b4a55ebc991b2fc7ca9f26a95b5a3456f03a 100644
--- a/public/assets/images/icons/grey/file-spreadsheet.svg
+++ b/public/assets/images/icons/grey/file-spreadsheet.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="13.97" width="5" height="11"/><rect class="a" x="24.5" y="10.97" width="5" height="14"/><rect class="a" x="33" y="16.97" width="5" height="8"/><rect class="a" x="16" y="26.97" width="22" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="13.97" width="5" height="11"/><rect class="a" x="24.5" y="10.97" width="5" height="14"/><rect class="a" x="33" y="16.97" width="5" height="8"/><rect class="a" x="16" y="26.97" width="22" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-text.svg b/public/assets/images/icons/grey/file-text.svg
index 851c8b2f253b1df1acd18709b41eee1a81b7768a..ade22533d9565be740d9abbcac4f2007c93db85d 100644
--- a/public/assets/images/icons/grey/file-text.svg
+++ b/public/assets/images/icons/grey/file-text.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="10.97" width="9" height="9"/><rect class="a" x="28" y="10.97" width="10" height="3"/><rect class="a" x="28" y="16.97" width="10" height="3"/><rect class="a" x="16" y="22.97" width="22" height="3"/><rect class="a" x="16" y="28.97" width="22" height="3"/><rect class="a" x="16" y="34.97" width="13" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="10.97" width="9" height="9"/><rect class="a" x="28" y="10.97" width="10" height="3"/><rect class="a" x="28" y="16.97" width="10" height="3"/><rect class="a" x="16" y="22.97" width="22" height="3"/><rect class="a" x="16" y="28.97" width="22" height="3"/><rect class="a" x="16" y="34.97" width="13" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-video.svg b/public/assets/images/icons/grey/file-video.svg
index 170f37b279891dcd8f17314bc17e9b02145a1f3d..8bc52df41579d45ce66b8cd4616a6675d841c859 100644
--- a/public/assets/images/icons/grey/file-video.svg
+++ b/public/assets/images/icons/grey/file-video.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M36.62,15.42,32.5,18.17V15.73A1.69,1.69,0,0,0,30.82,14H17.68A1.69,1.69,0,0,0,16,15.73V26.11a1.68,1.68,0,0,0,1.68,1.68H30.82a1.68,1.68,0,0,0,1.68-1.68V23.67l4.12,2.75H38v-11ZM31,26.11a.14.14,0,0,1-.14.14H17.68a.14.14,0,0,1-.14-.14V15.73a.15.15,0,0,1,.14-.15H30.82a.15.15,0,0,1,.14.15Z"/><polygon class="a" points="21.5 25.04 27.69 20.92 21.5 16.79 21.5 25.04"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M36.62,15.42,32.5,18.17V15.73A1.69,1.69,0,0,0,30.82,14H17.68A1.69,1.69,0,0,0,16,15.73V26.11a1.68,1.68,0,0,0,1.68,1.68H30.82a1.68,1.68,0,0,0,1.68-1.68V23.67l4.12,2.75H38v-11ZM31,26.11a.14.14,0,0,1-.14.14H17.68a.14.14,0,0,1-.14-.14V15.73a.15.15,0,0,1,.14-.15H30.82a.15.15,0,0,1,.14.15Z"/><polygon class="a" points="21.5 25.04 27.69 20.92 21.5 16.79 21.5 25.04"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-video2.svg b/public/assets/images/icons/grey/file-video2.svg
index 9ab6c4d940117ac4b9af93352e0723c192324627..bb08506e1e98c891d759c3edeb1e6549c34cbcf5 100644
--- a/public/assets/images/icons/grey/file-video2.svg
+++ b/public/assets/images/icons/grey/file-video2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.12 30.47 35.88 19.97 20.13 9.47 20.12 30.47"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.12 30.47 35.88 19.97 20.13 9.47 20.12 30.47"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file-word.svg b/public/assets/images/icons/grey/file-word.svg
index 6e1fffbc3fca1d2b87e87d7dc0f26a786cda1fac..db7081d5abc8d4a6071c186ba65d46255c04d962 100644
--- a/public/assets/images/icons/grey/file-word.svg
+++ b/public/assets/images/icons/grey/file-word.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M33.2,30H30.28L27,18.44,23.69,30H20.78L16,11h3.65l2.76,12,3.27-12h2.61l3.27,12,2.79-12H38Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M33.2,30H30.28L27,18.44,23.69,30H20.78L16,11h3.65l2.76,12,3.27-12h2.61l3.27,12,2.79-12H38Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file.svg b/public/assets/images/icons/grey/file.svg
index dcbf28780ea48a5c8704fa60bebcdf9a01e00f32..1f8663bf93b6d333aa531f45f8f2fb3da5619d50 100644
--- a/public/assets/images/icons/grey/file.svg
+++ b/public/assets/images/icons/grey/file.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/file2.svg b/public/assets/images/icons/grey/file2.svg
index dcbf28780ea48a5c8704fa60bebcdf9a01e00f32..1f8663bf93b6d333aa531f45f8f2fb3da5619d50 100644
--- a/public/assets/images/icons/grey/file2.svg
+++ b/public/assets/images/icons/grey/file2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/files.svg b/public/assets/images/icons/grey/files.svg
index a979733a95a420f6b710b63ab14872642c773288..38e8246e7a837f8c8b7cbd7576e89ad388eeaebb 100644
--- a/public/assets/images/icons/grey/files.svg
+++ b/public/assets/images/icons/grey/files.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="a" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="a" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/files2.svg b/public/assets/images/icons/grey/files2.svg
index a26f23210c425282db2b74097a3e0150d8c58d57..3f7594d7810af3267908b114099958ba37f93601 100644
--- a/public/assets/images/icons/grey/files2.svg
+++ b/public/assets/images/icons/grey/files2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="docs"><g id="files"><path class="cls-1" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="cls-1" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="docs"><g id="files"><path class="cls-1" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="cls-1" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/filter.svg b/public/assets/images/icons/grey/filter.svg
index d8f8973c6caf73c1a036ba56f98521b1ef12fb86..05542e1618f899ac01421f39afa433718e53d9a8 100644
--- a/public/assets/images/icons/grey/filter.svg
+++ b/public/assets/images/icons/grey/filter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><path id="filter" d="M21.1,49.89v-20a1.91,1.91,0,0,0-.41-1.19L3,6.22H51L33.54,28.37a3.09,3.09,0,0,0-.65,1.89V43.39ZM9.33,9.29,23.1,26.78a5,5,0,0,1,1.07,3.09V44.69l5.64-3.12V30.26a6.1,6.1,0,0,1,1.32-3.78L44.66,9.29Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><path id="filter" d="M21.1,49.89v-20a1.91,1.91,0,0,0-.41-1.19L3,6.22H51L33.54,28.37a3.09,3.09,0,0,0-.65,1.89V43.39ZM9.33,9.29,23.1,26.78a5,5,0,0,1,1.07,3.09V44.69l5.64-3.12V30.26a6.1,6.1,0,0,1,1.32-3.78L44.66,9.29Z"/></svg>
diff --git a/public/assets/images/icons/grey/filter2.svg b/public/assets/images/icons/grey/filter2.svg
index 2026e4decd2e615d90dce2aabb823c54eb802f09..8340768e89bd5c18e1c1500b6b6f514fd1cae0cb 100644
--- a/public/assets/images/icons/grey/filter2.svg
+++ b/public/assets/images/icons/grey/filter2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="filter2"><polygon points="16.97 30.39 37.02 30.39 42.05 21.7 11.94 21.7 16.97 30.39"/><polygon points="3.01 6.22 8.32 15.41 45.67 15.41 50.98 6.22 3.01 6.22"/><polygon points="27 47.77 33.4 36.68 20.59 36.68 27 47.77"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="filter2"><polygon points="16.97 30.39 37.02 30.39 42.05 21.7 11.94 21.7 16.97 30.39"/><polygon points="3.01 6.22 8.32 15.41 45.67 15.41 50.98 6.22 3.01 6.22"/><polygon points="27 47.77 33.4 36.68 20.59 36.68 27 47.77"/></g></svg>
diff --git a/public/assets/images/icons/grey/fishbowl.svg b/public/assets/images/icons/grey/fishbowl.svg
index aa097bf3b329306fc5795117f820748d10846f3f..5d9eb36b52b3640ff9c4237b955d84c2ffbafaa2 100644
--- a/public/assets/images/icons/grey/fishbowl.svg
+++ b/public/assets/images/icons/grey/fishbowl.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="fishbowl"><path class="cls-1" d="M51,27a23.69,23.69,0,0,0-4.25-13.58,1.61,1.61,0,0,0-2.23-.41,1.6,1.6,0,0,0-.41,2.22A20.47,20.47,0,0,1,47.8,27a21.51,21.51,0,0,1-.37,3.87,15,15,0,0,1-12,6.05A15.3,15.3,0,0,1,20.27,21.53c0-.07,0-.15,0-.22A25.31,25.31,0,0,0,7,32.57,20.19,20.19,0,0,1,6.2,27,20.51,20.51,0,0,1,10,15.17,1.59,1.59,0,0,0,9.57,13a1.62,1.62,0,0,0-2.23.39,23.77,23.77,0,0,0,6,33.29,3.21,3.21,0,0,0-.19.92A3.43,3.43,0,0,0,16.54,51H37.37a3.43,3.43,0,0,0,3.42-3.42,3.14,3.14,0,0,0-.18-.86A23.83,23.83,0,0,0,51,27Z"/><path class="cls-1" d="M26.88,16.28A14,14,0,0,0,34,12.43c4.47-4.9,3.31-9.53,3.31-9.53s-4.75-.71-9.22,4.19A13.88,13.88,0,0,0,25,14.54l-5.13,1.63,5.91,5.34Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="fishbowl"><path class="cls-1" d="M51,27a23.69,23.69,0,0,0-4.25-13.58,1.61,1.61,0,0,0-2.23-.41,1.6,1.6,0,0,0-.41,2.22A20.47,20.47,0,0,1,47.8,27a21.51,21.51,0,0,1-.37,3.87,15,15,0,0,1-12,6.05A15.3,15.3,0,0,1,20.27,21.53c0-.07,0-.15,0-.22A25.31,25.31,0,0,0,7,32.57,20.19,20.19,0,0,1,6.2,27,20.51,20.51,0,0,1,10,15.17,1.59,1.59,0,0,0,9.57,13a1.62,1.62,0,0,0-2.23.39,23.77,23.77,0,0,0,6,33.29,3.21,3.21,0,0,0-.19.92A3.43,3.43,0,0,0,16.54,51H37.37a3.43,3.43,0,0,0,3.42-3.42,3.14,3.14,0,0,0-.18-.86A23.83,23.83,0,0,0,51,27Z"/><path class="cls-1" d="M26.88,16.28A14,14,0,0,0,34,12.43c4.47-4.9,3.31-9.53,3.31-9.53s-4.75-.71-9.22,4.19A13.88,13.88,0,0,0,25,14.54l-5.13,1.63,5.91,5.34Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-broken.svg b/public/assets/images/icons/grey/folder-broken.svg
index a5ee073cde73c6e07a1d827684766b3f549f06d4..a4b6d65fe2a5ee058c81380666149e740992dd91 100644
--- a/public/assets/images/icons/grey/folder-broken.svg
+++ b/public/assets/images/icons/grey/folder-broken.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-broken2.svg b/public/assets/images/icons/grey/folder-broken2.svg
index a5ee073cde73c6e07a1d827684766b3f549f06d4..a4b6d65fe2a5ee058c81380666149e740992dd91 100644
--- a/public/assets/images/icons/grey/folder-broken2.svg
+++ b/public/assets/images/icons/grey/folder-broken2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-date-empty.svg b/public/assets/images/icons/grey/folder-date-empty.svg
index d5c5d5dd12fe6430166b816f06ac0a8638d74ae3..a392c7c1456cc098c17c0f3975ac3516eed0e27b 100644
--- a/public/assets/images/icons/grey/folder-date-empty.svg
+++ b/public/assets/images/icons/grey/folder-date-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-date-empty2.svg b/public/assets/images/icons/grey/folder-date-empty2.svg
index d5c5d5dd12fe6430166b816f06ac0a8638d74ae3..a392c7c1456cc098c17c0f3975ac3516eed0e27b 100644
--- a/public/assets/images/icons/grey/folder-date-empty2.svg
+++ b/public/assets/images/icons/grey/folder-date-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-date-full.svg b/public/assets/images/icons/grey/folder-date-full.svg
index 87bba6b89d0bf2bec1f03a8701c1e11209118141..e3bd5bcb7c2c885e5f2b8826b9b0e65977d0a1c8 100644
--- a/public/assets/images/icons/grey/folder-date-full.svg
+++ b/public/assets/images/icons/grey/folder-date-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-date-full2.svg b/public/assets/images/icons/grey/folder-date-full2.svg
index 87bba6b89d0bf2bec1f03a8701c1e11209118141..e3bd5bcb7c2c885e5f2b8826b9b0e65977d0a1c8 100644
--- a/public/assets/images/icons/grey/folder-date-full2.svg
+++ b/public/assets/images/icons/grey/folder-date-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-edit-empty.svg b/public/assets/images/icons/grey/folder-edit-empty.svg
index 55c7a284c49213c520b0972838a0cfee1550febb..2b07856fd2b720d82c6cb89b37397cdc578119c1 100644
--- a/public/assets/images/icons/grey/folder-edit-empty.svg
+++ b/public/assets/images/icons/grey/folder-edit-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-edit-empty2.svg b/public/assets/images/icons/grey/folder-edit-empty2.svg
index 55c7a284c49213c520b0972838a0cfee1550febb..2b07856fd2b720d82c6cb89b37397cdc578119c1 100644
--- a/public/assets/images/icons/grey/folder-edit-empty2.svg
+++ b/public/assets/images/icons/grey/folder-edit-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-edit-full.svg b/public/assets/images/icons/grey/folder-edit-full.svg
index 66100c81b79c644b284385cfe0e1c13fb4b91be3..2d45b39cb00f824f4ccc6d0b8273b6915e58b495 100644
--- a/public/assets/images/icons/grey/folder-edit-full.svg
+++ b/public/assets/images/icons/grey/folder-edit-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-edit-full2.svg b/public/assets/images/icons/grey/folder-edit-full2.svg
index 66100c81b79c644b284385cfe0e1c13fb4b91be3..2d45b39cb00f824f4ccc6d0b8273b6915e58b495 100644
--- a/public/assets/images/icons/grey/folder-edit-full2.svg
+++ b/public/assets/images/icons/grey/folder-edit-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-empty.svg b/public/assets/images/icons/grey/folder-empty.svg
index ae9d87534ff29067e8326714df1e411f24bfbb75..64070cf51c6116880e8c77dff37855d01cdbaf2f 100644
--- a/public/assets/images/icons/grey/folder-empty.svg
+++ b/public/assets/images/icons/grey/folder-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-empty2.svg b/public/assets/images/icons/grey/folder-empty2.svg
index ae9d87534ff29067e8326714df1e411f24bfbb75..64070cf51c6116880e8c77dff37855d01cdbaf2f 100644
--- a/public/assets/images/icons/grey/folder-empty2.svg
+++ b/public/assets/images/icons/grey/folder-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-full.svg b/public/assets/images/icons/grey/folder-full.svg
index 59a59585bfd922a4e295727aec8c199a2fad7be2..aa56e75dd14dab600519ce7c2a9e46e7bd0706cf 100644
--- a/public/assets/images/icons/grey/folder-full.svg
+++ b/public/assets/images/icons/grey/folder-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-full2.svg b/public/assets/images/icons/grey/folder-full2.svg
index 59a59585bfd922a4e295727aec8c199a2fad7be2..aa56e75dd14dab600519ce7c2a9e46e7bd0706cf 100644
--- a/public/assets/images/icons/grey/folder-full2.svg
+++ b/public/assets/images/icons/grey/folder-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-group-empty.svg b/public/assets/images/icons/grey/folder-group-empty.svg
index 10cec6bec071dcf613f6f0f3be8767926a53aae8..dfa9eea4cd0a94b3fa81ae4e2e91501ed2952a9e 100644
--- a/public/assets/images/icons/grey/folder-group-empty.svg
+++ b/public/assets/images/icons/grey/folder-group-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-group-empty2.svg b/public/assets/images/icons/grey/folder-group-empty2.svg
index 10cec6bec071dcf613f6f0f3be8767926a53aae8..dfa9eea4cd0a94b3fa81ae4e2e91501ed2952a9e 100644
--- a/public/assets/images/icons/grey/folder-group-empty2.svg
+++ b/public/assets/images/icons/grey/folder-group-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-group-full.svg b/public/assets/images/icons/grey/folder-group-full.svg
index 7aaf2012b83eed0976947e4b58943aade4024827..72c6185fd6b4ae8d7c257675a62dd16d2162706f 100644
--- a/public/assets/images/icons/grey/folder-group-full.svg
+++ b/public/assets/images/icons/grey/folder-group-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-group-full2.svg b/public/assets/images/icons/grey/folder-group-full2.svg
index 7aaf2012b83eed0976947e4b58943aade4024827..72c6185fd6b4ae8d7c257675a62dd16d2162706f 100644
--- a/public/assets/images/icons/grey/folder-group-full2.svg
+++ b/public/assets/images/icons/grey/folder-group-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-home-empty.svg b/public/assets/images/icons/grey/folder-home-empty.svg
index c95fcf7292ece5942af7a1c0395222a2a692285d..72bc301f595fe7c27e721fc21f0e7fae335720c7 100644
--- a/public/assets/images/icons/grey/folder-home-empty.svg
+++ b/public/assets/images/icons/grey/folder-home-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><polygon class="a" points="26.97 17.47 16 28.45 19.21 28.45 27 20.64 34.8 28.43 38 28.45 26.97 17.47"/><polygon class="a" points="19.67 29.36 19.67 39.47 24.25 39.47 24.25 31.66 29.75 31.66 29.75 39.47 34.33 39.47 34.33 29.36 27 22.02 19.67 29.36"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><polygon class="a" points="26.97 17.47 16 28.45 19.21 28.45 27 20.64 34.8 28.43 38 28.45 26.97 17.47"/><polygon class="a" points="19.67 29.36 19.67 39.47 24.25 39.47 24.25 31.66 29.75 31.66 29.75 39.47 34.33 39.47 34.33 29.36 27 22.02 19.67 29.36"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-home-empty2.svg b/public/assets/images/icons/grey/folder-home-empty2.svg
index 97ee68028a9a9c3c0d2487da328bb745a84279c7..e842426340d0fe1298bc8e7bcc1bcb43612ac430 100644
--- a/public/assets/images/icons/grey/folder-home-empty2.svg
+++ b/public/assets/images/icons/grey/folder-home-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="27 16.97 16 28.28 17.79 28.28 17.79 38.97 23.84 38.97 23.84 30.61 30.16 30.61 30.16 38.97 36.21 38.97 36.21 28.28 38 28.28 27 16.97"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="27 16.97 16 28.28 17.79 28.28 17.79 38.97 23.84 38.97 23.84 30.61 30.16 30.61 30.16 38.97 36.21 38.97 36.21 28.28 38 28.28 27 16.97"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-home-full.svg b/public/assets/images/icons/grey/folder-home-full.svg
index 2ce999e407ca8e533b2f7516fb7efe38f8fedccc..e0256ed7ec0751f49339ed9e553d1f1e61def874 100644
--- a/public/assets/images/icons/grey/folder-home-full.svg
+++ b/public/assets/images/icons/grey/folder-home-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="23.98 21.97 15 30.95 17.63 30.95 24 24.56 30.38 30.94 33 30.95 23.98 21.97"/><polygon class="a" points="18 31.7 18 39.97 21.75 39.97 21.75 33.58 26.25 33.58 26.25 39.97 30 39.97 30 31.7 24 25.69 18 31.7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="23.98 21.97 15 30.95 17.63 30.95 24 24.56 30.38 30.94 33 30.95 23.98 21.97"/><polygon class="a" points="18 31.7 18 39.97 21.75 39.97 21.75 33.58 26.25 33.58 26.25 39.97 30 39.97 30 31.7 24 25.69 18 31.7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-home-full2.svg b/public/assets/images/icons/grey/folder-home-full2.svg
index bc994c534b6781c6a50be00aa86cc52823a501e0..86adebc0ade7b945262ce93de6940dbcb80594f2 100644
--- a/public/assets/images/icons/grey/folder-home-full2.svg
+++ b/public/assets/images/icons/grey/folder-home-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="24 22.06 15.04 31.29 16.5 31.29 16.5 40.01 21.42 40.01 21.42 33.19 26.58 33.19 26.58 40.01 31.51 40.01 31.51 31.29 32.97 31.29 24 22.06"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="24 22.06 15.04 31.29 16.5 31.29 16.5 40.01 21.42 40.01 21.42 33.19 26.58 33.19 26.58 40.01 31.51 40.01 31.51 31.29 32.97 31.29 24 22.06"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-inbox-empty.svg b/public/assets/images/icons/grey/folder-inbox-empty.svg
index 43dbb851d823c0211c8407b0f41e4ddd26fabac8..44daa06c027424de632492054c8b000faf28870a 100644
--- a/public/assets/images/icons/grey/folder-inbox-empty.svg
+++ b/public/assets/images/icons/grey/folder-inbox-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M12,17.47v3.06L27,30.91,42,20.53V17.47Zm15,9.7-9.59-6.64H36.59Z"/><polygon class="a" points="38.88 36.41 15.13 36.41 15.1 25.12 12 22.97 12 39.47 42 39.47 42 22.97 38.9 25.12 38.88 36.41"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M12,17.47v3.06L27,30.91,42,20.53V17.47Zm15,9.7-9.59-6.64H36.59Z"/><polygon class="a" points="38.88 36.41 15.13 36.41 15.1 25.12 12 22.97 12 39.47 42 39.47 42 22.97 38.9 25.12 38.88 36.41"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-inbox-full.svg b/public/assets/images/icons/grey/folder-inbox-full.svg
index fc7d017026526b785b60a0888fac615ca5b382b2..73ad42df2bc49aa61403c0ed6e847f9c7b127e24 100644
--- a/public/assets/images/icons/grey/folder-inbox-full.svg
+++ b/public/assets/images/icons/grey/folder-inbox-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M12,22.41v2.5l12,8.5,12-8.5v-2.5Zm12,7.93-7.67-5.43H31.67Z"/><polygon class="a" points="33.5 37.91 14.5 37.91 14.48 28.66 12 26.91 12 40.41 36 40.41 36 26.91 33.52 28.66 33.5 37.91"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M12,22.41v2.5l12,8.5,12-8.5v-2.5Zm12,7.93-7.67-5.43H31.67Z"/><polygon class="a" points="33.5 37.91 14.5 37.91 14.48 28.66 12 26.91 12 40.41 36 40.41 36 26.91 33.52 28.66 33.5 37.91"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-lock-empty.svg b/public/assets/images/icons/grey/folder-lock-empty.svg
index 1b9008787ae1bd8341cd56c35235f8f3e8660b94..a7adf1b67f7c079c3ad787425266d6296a63b860 100644
--- a/public/assets/images/icons/grey/folder-lock-empty.svg
+++ b/public/assets/images/icons/grey/folder-lock-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-lock-empty2.svg b/public/assets/images/icons/grey/folder-lock-empty2.svg
index 1b9008787ae1bd8341cd56c35235f8f3e8660b94..a7adf1b67f7c079c3ad787425266d6296a63b860 100644
--- a/public/assets/images/icons/grey/folder-lock-empty2.svg
+++ b/public/assets/images/icons/grey/folder-lock-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-lock-full.svg b/public/assets/images/icons/grey/folder-lock-full.svg
index 8888ec47557d52e8b3cd54e5fe9cfa49472f356f..28f4865e4fc50764c314a3ae0ce8449352218992 100644
--- a/public/assets/images/icons/grey/folder-lock-full.svg
+++ b/public/assets/images/icons/grey/folder-lock-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-lock-full2.svg b/public/assets/images/icons/grey/folder-lock-full2.svg
index 8888ec47557d52e8b3cd54e5fe9cfa49472f356f..28f4865e4fc50764c314a3ae0ce8449352218992 100644
--- a/public/assets/images/icons/grey/folder-lock-full2.svg
+++ b/public/assets/images/icons/grey/folder-lock-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-parent.svg b/public/assets/images/icons/grey/folder-parent.svg
index be9dd67274290c1adc42db5b91350e674b3e1eb5..f79d84fb67289c84e7f1b7cddec70192a6a6229a 100644
--- a/public/assets/images/icons/grey/folder-parent.svg
+++ b/public/assets/images/icons/grey/folder-parent.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="38 25 30.91 25 24 31.91 17.09 25 10 25 24 39 38 25"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="38 25 30.91 25 24 31.91 17.09 25 10 25 24 39 38 25"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-plugin-market-empty.svg b/public/assets/images/icons/grey/folder-plugin-market-empty.svg
index 7a5940731db6731857e24da86162158749f00852..47e95399f5befbada427d727ca7ff8404bd9dce0 100644
--- a/public/assets/images/icons/grey/folder-plugin-market-empty.svg
+++ b/public/assets/images/icons/grey/folder-plugin-market-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M31.46,33.48a.92.92,0,0,0-.45.12,6.34,6.34,0,0,1-3.09.8,6.42,6.42,0,0,1-1.07-12.75,7.82,7.82,0,0,1,1.07-.08,6.2,6.2,0,0,1,1.62.21,1,1,0,0,0,.24,0,.91.91,0,0,0,.9-1L30.21,17H16V39H33l-.59-4.69A.91.91,0,0,0,31.46,33.48ZM17.37,37.59V18.34H29l.25,2a7.37,7.37,0,0,0-1.32-.12,8,8,0,0,0-1.29.11,7.79,7.79,0,0,0,1.29,15.48,7.89,7.89,0,0,0,3.17-.68l.31,2.49Z"/><path class="a" d="M31.58,17l.76,6.1a.91.91,0,0,1-1.47.83A5,5,0,0,0,27.42,23a5,5,0,1,0,4.37,8.24.92.92,0,0,1,1.63.45c.4,3.19.91,7.31.91,7.31H38V17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M31.46,33.48a.92.92,0,0,0-.45.12,6.34,6.34,0,0,1-3.09.8,6.42,6.42,0,0,1-1.07-12.75,7.82,7.82,0,0,1,1.07-.08,6.2,6.2,0,0,1,1.62.21,1,1,0,0,0,.24,0,.91.91,0,0,0,.9-1L30.21,17H16V39H33l-.59-4.69A.91.91,0,0,0,31.46,33.48ZM17.37,37.59V18.34H29l.25,2a7.37,7.37,0,0,0-1.32-.12,8,8,0,0,0-1.29.11,7.79,7.79,0,0,0,1.29,15.48,7.89,7.89,0,0,0,3.17-.68l.31,2.49Z"/><path class="a" d="M31.58,17l.76,6.1a.91.91,0,0,1-1.47.83A5,5,0,0,0,27.42,23a5,5,0,1,0,4.37,8.24.92.92,0,0,1,1.63.45c.4,3.19.91,7.31.91,7.31H38V17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-plugin-market-full.svg b/public/assets/images/icons/grey/folder-plugin-market-full.svg
index 0e1d5807c8b92c396a073660277bffccab8897be..aa815905c995159340c5614fd0a2692f2dfa2e02 100644
--- a/public/assets/images/icons/grey/folder-plugin-market-full.svg
+++ b/public/assets/images/icons/grey/folder-plugin-market-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M27.65,35.48a.74.74,0,0,0-.37.1,5.25,5.25,0,1,1-3.4-9.78,5.1,5.1,0,0,1,.87-.07,5.33,5.33,0,0,1,1.33.17.63.63,0,0,0,.19,0,.74.74,0,0,0,.74-.84L26.63,22H15V40H28.87l-.47-3.84A.75.75,0,0,0,27.65,35.48ZM16.12,38.84V23.09h9.51l.2,1.61a6.47,6.47,0,0,0-1.08-.09,7.42,7.42,0,0,0-1.05.08A6.38,6.38,0,1,0,27.35,36.8l.25,2Z"/><path class="a" d="M27.75,22l.62,5a.75.75,0,0,1-1.2.68,4,4,0,0,0-2.82-.76,4.12,4.12,0,0,0,.4,8.23,4.09,4.09,0,0,0,3.17-1.49.75.75,0,0,1,1.33.37c.33,2.61.75,6,.75,6h3V22Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M27.65,35.48a.74.74,0,0,0-.37.1,5.25,5.25,0,1,1-3.4-9.78,5.1,5.1,0,0,1,.87-.07,5.33,5.33,0,0,1,1.33.17.63.63,0,0,0,.19,0,.74.74,0,0,0,.74-.84L26.63,22H15V40H28.87l-.47-3.84A.75.75,0,0,0,27.65,35.48ZM16.12,38.84V23.09h9.51l.2,1.61a6.47,6.47,0,0,0-1.08-.09,7.42,7.42,0,0,0-1.05.08A6.38,6.38,0,1,0,27.35,36.8l.25,2Z"/><path class="a" d="M27.75,22l.62,5a.75.75,0,0,1-1.2.68,4,4,0,0,0-2.82-.76,4.12,4.12,0,0,0,.4,8.23,4.09,4.09,0,0,0,3.17-1.49.75.75,0,0,1,1.33.37c.33,2.61.75,6,.75,6h3V22Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-public-empty.svg b/public/assets/images/icons/grey/folder-public-empty.svg
index 35af96398a854c9d9e50f4d5d1bef3efe0d928d8..e2efeefa2d19fea1935d3275cff37e9c41b22e7e 100644
--- a/public/assets/images/icons/grey/folder-public-empty.svg
+++ b/public/assets/images/icons/grey/folder-public-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-public-empty2.svg b/public/assets/images/icons/grey/folder-public-empty2.svg
index 35af96398a854c9d9e50f4d5d1bef3efe0d928d8..e2efeefa2d19fea1935d3275cff37e9c41b22e7e 100644
--- a/public/assets/images/icons/grey/folder-public-empty2.svg
+++ b/public/assets/images/icons/grey/folder-public-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-public-full.svg b/public/assets/images/icons/grey/folder-public-full.svg
index 8c4cedd3cd6025fdcbd8234661e4383b5aca7ed5..c2ec3f8fadaf1eea734cdb444bd01427f56d8a9d 100644
--- a/public/assets/images/icons/grey/folder-public-full.svg
+++ b/public/assets/images/icons/grey/folder-public-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-public-full2.svg b/public/assets/images/icons/grey/folder-public-full2.svg
index 8c4cedd3cd6025fdcbd8234661e4383b5aca7ed5..c2ec3f8fadaf1eea734cdb444bd01427f56d8a9d 100644
--- a/public/assets/images/icons/grey/folder-public-full2.svg
+++ b/public/assets/images/icons/grey/folder-public-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-topic-empty.svg b/public/assets/images/icons/grey/folder-topic-empty.svg
index c17a6f8f30b0d03eb0747ae1d927fbfb51f235c5..ccd7939eecf2bebe516581dc6d89d257ec6baba2 100644
--- a/public/assets/images/icons/grey/folder-topic-empty.svg
+++ b/public/assets/images/icons/grey/folder-topic-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M29.89,18.41V17H24v1.38H18.18V39H35.82V18.41Zm3.59,18.43h-13V20.6H24v.51h5.92V20.6h3.59Z"/><rect class="a" x="22.59" y="26.57" width="8.82" height="2.78"/><rect class="a" x="22.59" y="30.69" width="8.82" height="2.89"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M29.89,18.41V17H24v1.38H18.18V39H35.82V18.41Zm3.59,18.43h-13V20.6H24v.51h5.92V20.6h3.59Z"/><rect class="a" x="22.59" y="26.57" width="8.82" height="2.78"/><rect class="a" x="22.59" y="30.69" width="8.82" height="2.89"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/folder-topic-full.svg b/public/assets/images/icons/grey/folder-topic-full.svg
index 9989befa5ed23e974d126975e66267b81d4f0437..1f3d0cfc5c42cd455ae4d19ef05fca50cc25d6c8 100644
--- a/public/assets/images/icons/grey/folder-topic-full.svg
+++ b/public/assets/images/icons/grey/folder-topic-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M26.37,23.15V22H21.52v1.12H16.78V40H31.22V23.15ZM29.3,38.24H18.7V25h2.82v.42h4.85V25H29.3Z"/><rect class="a" x="20.39" y="29.83" width="7.22" height="2.27"/><rect class="a" x="20.39" y="33.21" width="7.22" height="2.36"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M26.37,23.15V22H21.52v1.12H16.78V40H31.22V23.15ZM29.3,38.24H18.7V25h2.82v.42h4.85V25H29.3Z"/><rect class="a" x="20.39" y="29.83" width="7.22" height="2.27"/><rect class="a" x="20.39" y="33.21" width="7.22" height="2.36"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/forum.svg b/public/assets/images/icons/grey/forum.svg
index b449322cd7a7822328c660b4fbe8121313da7554..f8fe9f4cb613a513729120aae043eee0f5593efa 100644
--- a/public/assets/images/icons/grey/forum.svg
+++ b/public/assets/images/icons/grey/forum.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/fullscreen-off.svg b/public/assets/images/icons/grey/fullscreen-off.svg
index 5e64bb42c70d932b2be3c13e9358de745ec4d699..6509d7976b28439b01a0b848af024dda923746c9 100644
--- a/public/assets/images/icons/grey/fullscreen-off.svg
+++ b/public/assets/images/icons/grey/fullscreen-off.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="fullscreen-off"><polygon points="51 20.13 33.87 20.13 33.87 2.99 37.29 2.99 37.29 16.7 51 16.7 51 20.13"/><polygon points="33.86 50.87 33.86 33.73 51 33.73 51 37.16 37.29 37.16 37.29 50.87 33.86 50.87"/><polygon points="20.16 50.97 16.73 50.97 16.73 37.26 3.02 37.26 3.02 33.84 20.16 33.84 20.16 50.97"/><polygon points="3.02 20.02 3.02 16.6 16.73 16.6 16.73 2.89 20.16 2.89 20.16 20.02 3.02 20.02"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="fullscreen-off"><polygon points="51 20.13 33.87 20.13 33.87 2.99 37.29 2.99 37.29 16.7 51 16.7 51 20.13"/><polygon points="33.86 50.87 33.86 33.73 51 33.73 51 37.16 37.29 37.16 37.29 50.87 33.86 50.87"/><polygon points="20.16 50.97 16.73 50.97 16.73 37.26 3.02 37.26 3.02 33.84 20.16 33.84 20.16 50.97"/><polygon points="3.02 20.02 3.02 16.6 16.73 16.6 16.73 2.89 20.16 2.89 20.16 20.02 3.02 20.02"/></g></svg>
diff --git a/public/assets/images/icons/grey/fullscreen-on.svg b/public/assets/images/icons/grey/fullscreen-on.svg
index d9cb6c70e986c5bcb0147ad4ddbedd5d99cf963c..d2e63bcea90ff9be07b8f15d1396b89e54bbee22 100644
--- a/public/assets/images/icons/grey/fullscreen-on.svg
+++ b/public/assets/images/icons/grey/fullscreen-on.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="zoom-in-3"><polygon points="51 20.12 47.57 20.12 47.57 6.42 33.86 6.42 33.86 2.99 51 2.99 51 20.12"/><polygon points="20.15 50.97 3.02 50.97 3.02 33.83 6.44 33.83 6.44 47.54 20.15 47.54 20.15 50.97"/><polygon points="33.86 50.97 33.86 47.54 47.57 47.54 47.57 33.83 51 33.83 51 50.97 33.86 50.97"/><polygon points="3.02 20.12 3.02 2.99 20.15 2.99 20.15 6.42 6.44 6.42 6.44 20.12 3.02 20.12"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="zoom-in-3"><polygon points="51 20.12 47.57 20.12 47.57 6.42 33.86 6.42 33.86 2.99 51 2.99 51 20.12"/><polygon points="20.15 50.97 3.02 50.97 3.02 33.83 6.44 33.83 6.44 47.54 20.15 47.54 20.15 50.97"/><polygon points="33.86 50.97 33.86 47.54 47.57 47.54 47.57 33.83 51 33.83 51 50.97 33.86 50.97"/><polygon points="3.02 20.12 3.02 2.99 20.15 2.99 20.15 6.42 6.44 6.42 6.44 20.12 3.02 20.12"/></g></svg>
diff --git a/public/assets/images/icons/grey/graph.svg b/public/assets/images/icons/grey/graph.svg
index 0c682ccc558e01879c285ecfb95f3005bb6c74c6..7ac54671c45a1dcff2555cb3d7711e1b04dd43e7 100644
--- a/public/assets/images/icons/grey/graph.svg
+++ b/public/assets/images/icons/grey/graph.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><path id="graph" class="cls-1" d="M6,44V25.33l9.5,10.36,11.05-12,5.95,5.95L45.23,16.86A3.25,3.25,0,0,0,46,17a3,3,0,1,0-3-3,3.25,3.25,0,0,0,.11.77L32.5,25.35,26.45,19.3l-10.95,12L6,20.89V7H3V47H51V44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><path id="graph" class="cls-1" d="M6,44V25.33l9.5,10.36,11.05-12,5.95,5.95L45.23,16.86A3.25,3.25,0,0,0,46,17a3,3,0,1,0-3-3,3.25,3.25,0,0,0,.11.77L32.5,25.35,26.45,19.3l-10.95,12L6,20.89V7H3V47H51V44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/group.svg b/public/assets/images/icons/grey/group.svg
index 452a0edd947e4ddf9f1996564f0531c0944a83c5..908bbff64679e606b55413f3080cdf05d9c76d96 100644
--- a/public/assets/images/icons/grey/group.svg
+++ b/public/assets/images/icons/grey/group.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/group2.svg b/public/assets/images/icons/grey/group2.svg
index 36b0294ca7cfbbcdb1cd036b459028ea2bc922e6..4677cbf4b1cdd0ad4fc75a83644bb4a3ea0dfa2b 100644
--- a/public/assets/images/icons/grey/group2.svg
+++ b/public/assets/images/icons/grey/group2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M11.72,24.63a6.16,6.16,0,1,0-6.15-6.16A6.15,6.15,0,0,0,11.72,24.63Z"/><path class="a" d="M14.51,27.55H8.9A5.94,5.94,0,0,0,3,33.49V41.2H20.43V33.49A6,6,0,0,0,14.51,27.55Z"/><path class="a" d="M42.28,31.92a6.16,6.16,0,1,0-6.14-6.15A6.15,6.15,0,0,0,42.28,31.92Z"/><path class="a" d="M45.08,34.85H39.47a5.92,5.92,0,0,0-5.9,5.93V48.5H51V40.78A6,6,0,0,0,45.08,34.85Z"/><path class="a" d="M25.3,17.82a6.16,6.16,0,1,0-6.14-6.16A6.15,6.15,0,0,0,25.3,17.82Z"/><path class="a" d="M34,34.39V26.67a6,6,0,0,0-5.92-5.93H22.49a5.91,5.91,0,0,0-5.88,5.7,7.38,7.38,0,0,1,5.28,7.05v.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M11.72,24.63a6.16,6.16,0,1,0-6.15-6.16A6.15,6.15,0,0,0,11.72,24.63Z"/><path class="a" d="M14.51,27.55H8.9A5.94,5.94,0,0,0,3,33.49V41.2H20.43V33.49A6,6,0,0,0,14.51,27.55Z"/><path class="a" d="M42.28,31.92a6.16,6.16,0,1,0-6.14-6.15A6.15,6.15,0,0,0,42.28,31.92Z"/><path class="a" d="M45.08,34.85H39.47a5.92,5.92,0,0,0-5.9,5.93V48.5H51V40.78A6,6,0,0,0,45.08,34.85Z"/><path class="a" d="M25.3,17.82a6.16,6.16,0,1,0-6.14-6.16A6.15,6.15,0,0,0,25.3,17.82Z"/><path class="a" d="M34,34.39V26.67a6,6,0,0,0-5.92-5.93H22.49a5.91,5.91,0,0,0-5.88,5.7,7.38,7.38,0,0,1,5.28,7.05v.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/group3.svg b/public/assets/images/icons/grey/group3.svg
index 7433691aa4081b681c8a3bee7c546a732d94693e..b5e893b800d1d119823b44e7979f0f2add661a6b 100644
--- a/public/assets/images/icons/grey/group3.svg
+++ b/public/assets/images/icons/grey/group3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M21.33,27.49a7.83,7.83,0,0,1-2.16,5.39H34.83A7.87,7.87,0,0,1,36.06,21a6.06,6.06,0,0,0-4.68-2.25H22.6A6,6,0,0,0,17.93,21,7.87,7.87,0,0,1,21.33,27.49Z"/><path class="a" d="M27,15.74a6.37,6.37,0,1,0-6.33-6.38A6.34,6.34,0,0,0,27,15.74Z"/><path class="a" d="M13.49,33.86a6.37,6.37,0,1,0-6.33-6.37A6.35,6.35,0,0,0,13.49,33.86Z"/><path class="a" d="M17.87,36.88H9.09A6.13,6.13,0,0,0,3,43v8H24V43A6.15,6.15,0,0,0,17.87,36.88Z"/><path class="a" d="M34.18,27.49a6.34,6.34,0,1,0,6.33-6.37A6.35,6.35,0,0,0,34.18,27.49Z"/><path class="a" d="M44.89,36.88H36.11A6.13,6.13,0,0,0,30,43v8H51V43A6.15,6.15,0,0,0,44.89,36.88Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M21.33,27.49a7.83,7.83,0,0,1-2.16,5.39H34.83A7.87,7.87,0,0,1,36.06,21a6.06,6.06,0,0,0-4.68-2.25H22.6A6,6,0,0,0,17.93,21,7.87,7.87,0,0,1,21.33,27.49Z"/><path class="a" d="M27,15.74a6.37,6.37,0,1,0-6.33-6.38A6.34,6.34,0,0,0,27,15.74Z"/><path class="a" d="M13.49,33.86a6.37,6.37,0,1,0-6.33-6.37A6.35,6.35,0,0,0,13.49,33.86Z"/><path class="a" d="M17.87,36.88H9.09A6.13,6.13,0,0,0,3,43v8H24V43A6.15,6.15,0,0,0,17.87,36.88Z"/><path class="a" d="M34.18,27.49a6.34,6.34,0,1,0,6.33-6.37A6.35,6.35,0,0,0,34.18,27.49Z"/><path class="a" d="M44.89,36.88H36.11A6.13,6.13,0,0,0,30,43v8H51V43A6.15,6.15,0,0,0,44.89,36.88Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/guestbook.svg b/public/assets/images/icons/grey/guestbook.svg
index 4288e55e819f4ca78f45bd0e949d1e75c6c71894..2546008528af7462462e98fcc0731f602ebf5440 100644
--- a/public/assets/images/icons/grey/guestbook.svg
+++ b/public/assets/images/icons/grey/guestbook.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="guestbook"><path class="cls-1" d="M50,39.26l-1-1.72L47.46,35,33.57,11.77,23,6.19l-.13,11.53,13.89,23.2,1.55,2.57,1,1.72a6.3,6.3,0,0,0,8.44,2.18A5.84,5.84,0,0,0,50,39.26Zm-5.25-2.81-5.35,3L26,16.94l0-2.1L29.38,13l1.94,1ZM46.33,39l1,1.72a2.91,2.91,0,0,1-1.13,4.06A3.15,3.15,0,0,1,42,43.73L41,42ZM21,15H3V9H21Zm0,10H3V19H21ZM16,35H3V29H16Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="guestbook"><path class="cls-1" d="M50,39.26l-1-1.72L47.46,35,33.57,11.77,23,6.19l-.13,11.53,13.89,23.2,1.55,2.57,1,1.72a6.3,6.3,0,0,0,8.44,2.18A5.84,5.84,0,0,0,50,39.26Zm-5.25-2.81-5.35,3L26,16.94l0-2.1L29.38,13l1.94,1ZM46.33,39l1,1.72a2.91,2.91,0,0,1-1.13,4.06A3.15,3.15,0,0,1,42,43.73L41,42ZM21,15H3V9H21Zm0,10H3V19H21ZM16,35H3V29H16Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/home.svg b/public/assets/images/icons/grey/home.svg
index 5cfb8d10e6b4afdad41878392203b8bf5f52152f..80dcf89d99228fde8b710a135a7bb726fde70f20 100644
--- a/public/assets/images/icons/grey/home.svg
+++ b/public/assets/images/icons/grey/home.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="26.93 3.07 3 26.97 10 26.97 27 9.97 44.02 26.93 51 26.97 26.93 3.07"/><polygon class="a" points="11 28.97 11 50.97 21 50.97 21 33.97 33 33.97 33 50.97 43 50.97 43 28.97 27 12.97 11 28.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="26.93 3.07 3 26.97 10 26.97 27 9.97 44.02 26.93 51 26.97 26.93 3.07"/><polygon class="a" points="11 28.97 11 50.97 21 50.97 21 33.97 33 33.97 33 50.97 43 50.97 43 28.97 27 12.97 11 28.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/home2.svg b/public/assets/images/icons/grey/home2.svg
index 5a53453827a8cf5e52e174bef8fb25c51a1f70a2..8a8425bbc03ee95e3cc7f58c8633d73546928263 100644
--- a/public/assets/images/icons/grey/home2.svg
+++ b/public/assets/images/icons/grey/home2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="3 26.97 26.93 3.07 51 26.97 44.02 26.93 27 9.97 10 26.97 3 26.97"/><polygon class="a" points="15 50.97 10 50.97 10 29.97 15 24.97 15 50.97"/><polygon class="a" points="44 50.97 39 50.97 39 24.97 44 29.97 44 50.97"/><rect class="a" x="10" y="45.97" width="34" height="5"/><rect class="a" x="25" y="29.97" width="10" height="17"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="3 26.97 26.93 3.07 51 26.97 44.02 26.93 27 9.97 10 26.97 3 26.97"/><polygon class="a" points="15 50.97 10 50.97 10 29.97 15 24.97 15 50.97"/><polygon class="a" points="44 50.97 39 50.97 39 24.97 44 29.97 44 50.97"/><rect class="a" x="10" y="45.97" width="34" height="5"/><rect class="a" x="25" y="29.97" width="10" height="17"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/info-circle-full.svg b/public/assets/images/icons/grey/info-circle-full.svg
index 474a9d2248c5a460381f8b76dab526516c9b0ff4..284a8395e878493189c4e11b42ee470360ab1a7b 100644
--- a/public/assets/images/icons/grey/info-circle-full.svg
+++ b/public/assets/images/icons/grey/info-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/info-circle.svg b/public/assets/images/icons/grey/info-circle.svg
index 474a9d2248c5a460381f8b76dab526516c9b0ff4..284a8395e878493189c4e11b42ee470360ab1a7b 100644
--- a/public/assets/images/icons/grey/info-circle.svg
+++ b/public/assets/images/icons/grey/info-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/infopage.svg b/public/assets/images/icons/grey/infopage.svg
index 19134bf1fcb38cc8cca223ea3f8ea099a071e8ac..88761dfba9c8a7c952e0f1df411ab691606417a3 100644
--- a/public/assets/images/icons/grey/infopage.svg
+++ b/public/assets/images/icons/grey/infopage.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/infopage2.svg b/public/assets/images/icons/grey/infopage2.svg
index 19134bf1fcb38cc8cca223ea3f8ea099a071e8ac..88761dfba9c8a7c952e0f1df411ab691606417a3 100644
--- a/public/assets/images/icons/grey/infopage2.svg
+++ b/public/assets/images/icons/grey/infopage2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/install.svg b/public/assets/images/icons/grey/install.svg
index 10066f787ece82ebb761f19121b6dea1e4d6bac6..ade1a767d5217019eae760ce3f16b6e34a3eb4df 100644
--- a/public/assets/images/icons/grey/install.svg
+++ b/public/assets/images/icons/grey/install.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="43 5 34.9 5 27 12.9 19.1 5 11 5 27 21 43 5"/><path class="a" d="M38.29,16.6l0,0a16,16,0,1,1-22.62,0l-3.54-3.53a21,21,0,1,0,29.7,0l0,0Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="43 5 34.9 5 27 12.9 19.1 5 11 5 27 21 43 5"/><path class="a" d="M38.29,16.6l0,0a16,16,0,1,1-22.62,0l-3.54-3.53a21,21,0,1,0,29.7,0l0,0Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/institute.svg b/public/assets/images/icons/grey/institute.svg
index 7be6ac1c82ce66c5792247ab9d1aa787694e2443..692856b21d6dea5bf378ea7ab91126c31d097549 100644
--- a/public/assets/images/icons/grey/institute.svg
+++ b/public/assets/images/icons/grey/institute.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="44 24.97 36 24.97 36 47.97 31 47.97 31 24.97 26.89 24.97 23 24.97 23 47.97 18 47.97 18 24.97 10 24.97 10 47.97 6 47.97 6 50.97 48 50.97 48 47.97 44 47.97 44 24.97"/><path class="a" d="M12,22H45v0l6,0L26.93,3.07,3,22h9ZM27,10l11.3,9H15.75Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="44 24.97 36 24.97 36 47.97 31 47.97 31 24.97 26.89 24.97 23 24.97 23 47.97 18 47.97 18 24.97 10 24.97 10 47.97 6 47.97 6 50.97 48 50.97 48 47.97 44 47.97 44 24.97"/><path class="a" d="M12,22H45v0l6,0L26.93,3.07,3,22h9ZM27,10l11.3,9H15.75Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/key.svg b/public/assets/images/icons/grey/key.svg
index 6f61ff31a7ce84de9b4cb697aeac074bee474f8e..ada7255f4607b46d1508d753f8e96fe95be6bdb6 100644
--- a/public/assets/images/icons/grey/key.svg
+++ b/public/assets/images/icons/grey/key.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="key"><path class="cls-1" d="M34.44,3A16.53,16.53,0,0,0,19.12,25.81L3,41.94V51h9.06V44.88h5.88V39h6.12V32.46A16.56,16.56,0,1,0,34.44,3Zm3.88,20.44a7.76,7.76,0,1,1,7.76-7.76A7.77,7.77,0,0,1,38.32,23.44Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="key"><path class="cls-1" d="M34.44,3A16.53,16.53,0,0,0,19.12,25.81L3,41.94V51h9.06V44.88h5.88V39h6.12V32.46A16.56,16.56,0,1,0,34.44,3Zm3.88,20.44a7.76,7.76,0,1,1,7.76-7.76A7.77,7.77,0,0,1,38.32,23.44Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/lightbulb.svg b/public/assets/images/icons/grey/lightbulb.svg
index a969f922f97a4fdbc10d5cf202fa59473c147bcb..42abdda997737392361d5eb9f80a7c835fbf74e7 100644
--- a/public/assets/images/icons/grey/lightbulb.svg
+++ b/public/assets/images/icons/grey/lightbulb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M27,3a18.54,18.54,0,0,0-2,.11,17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,27,3Zm7.33,28.92A5,5,0,0,0,32,36.12V38H22V36.13a5,5,0,0,0-2.33-4.24,14,14,0,0,1,5.7-25.83A14.84,14.84,0,0,1,27,6a14,14,0,0,1,7.33,25.92Z"/><path class="a" d="M32.39,9.05A12.51,12.51,0,0,0,27.24,8a12.66,12.66,0,0,0-10.37,5.4,1.73,1.73,0,0,0,.42,2.41,1.69,1.69,0,0,0,1,.32,1.73,1.73,0,0,0,1.42-.74,9.21,9.21,0,0,1,7.54-3.93,9.08,9.08,0,0,1,3.74.8,1.73,1.73,0,1,0,1.41-3.16Z"/><path class="a" d="M17,16.31A1.73,1.73,0,0,0,15,17.58a12.38,12.38,0,0,0-.37,3,12.68,12.68,0,0,0,.28,2.67,1.74,1.74,0,0,0,1.69,1.36,1.55,1.55,0,0,0,.37,0,1.74,1.74,0,0,0,1.33-2.06A8.92,8.92,0,0,1,18,20.61a9.08,9.08,0,0,1,.27-2.2A1.74,1.74,0,0,0,17,16.31Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M27,3a18.54,18.54,0,0,0-2,.11,17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,27,3Zm7.33,28.92A5,5,0,0,0,32,36.12V38H22V36.13a5,5,0,0,0-2.33-4.24,14,14,0,0,1,5.7-25.83A14.84,14.84,0,0,1,27,6a14,14,0,0,1,7.33,25.92Z"/><path class="a" d="M32.39,9.05A12.51,12.51,0,0,0,27.24,8a12.66,12.66,0,0,0-10.37,5.4,1.73,1.73,0,0,0,.42,2.41,1.69,1.69,0,0,0,1,.32,1.73,1.73,0,0,0,1.42-.74,9.21,9.21,0,0,1,7.54-3.93,9.08,9.08,0,0,1,3.74.8,1.73,1.73,0,1,0,1.41-3.16Z"/><path class="a" d="M17,16.31A1.73,1.73,0,0,0,15,17.58a12.38,12.38,0,0,0-.37,3,12.68,12.68,0,0,0,.28,2.67,1.74,1.74,0,0,0,1.69,1.36,1.55,1.55,0,0,0,.37,0,1.74,1.74,0,0,0,1.33-2.06A8.92,8.92,0,0,1,18,20.61a9.08,9.08,0,0,1,.27-2.2A1.74,1.74,0,0,0,17,16.31Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/lightbulb2.svg b/public/assets/images/icons/grey/lightbulb2.svg
index b7fcd85442d39f8a7fca38aa34384fae6b303b21..f197c593b72876b285ba1e5f8c952f80ee729a5b 100644
--- a/public/assets/images/icons/grey/lightbulb2.svg
+++ b/public/assets/images/icons/grey/lightbulb2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M25,3.08a17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,25,3.08ZM16.32,17.33A11.15,11.15,0,0,0,16,20a10.48,10.48,0,0,0,.25,2.31,1.51,1.51,0,0,1-1.15,1.79l-.32,0a1.51,1.51,0,0,1-1.47-1.18A14.63,14.63,0,0,1,13,20a14.11,14.11,0,0,1,.41-3.36,1.5,1.5,0,0,1,2.91.72ZM33.46,9.17a1.5,1.5,0,0,1-2,.75A11,11,0,0,0,18,13.66a1.49,1.49,0,0,1-1.23.64,1.5,1.5,0,0,1-1.23-2.36A14,14,0,0,1,32.7,7.18,1.51,1.51,0,0,1,33.46,9.17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M25,3.08a17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,25,3.08ZM16.32,17.33A11.15,11.15,0,0,0,16,20a10.48,10.48,0,0,0,.25,2.31,1.51,1.51,0,0,1-1.15,1.79l-.32,0a1.51,1.51,0,0,1-1.47-1.18A14.63,14.63,0,0,1,13,20a14.11,14.11,0,0,1,.41-3.36,1.5,1.5,0,0,1,2.91.72ZM33.46,9.17a1.5,1.5,0,0,1-2,.75A11,11,0,0,0,18,13.66a1.49,1.49,0,0,1-1.23.64,1.5,1.5,0,0,1-1.23-2.36A14,14,0,0,1,32.7,7.18,1.51,1.51,0,0,1,33.46,9.17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/link-extern.svg b/public/assets/images/icons/grey/link-extern.svg
index b61717525b93c2ac4b2618a948b4ac6273cdd85f..ac81864fc67677082ec1ee20b2360bb345653ea5 100644
--- a/public/assets/images/icons/grey/link-extern.svg
+++ b/public/assets/images/icons/grey/link-extern.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="17 17 22.06 22.06 31.94 22.06 31.94 31.94 37 37 37 17 17 17"/><path class="a" d="M27,46A19,19,0,0,1,27,8V3A24,24,0,1,0,51,27H46A19,19,0,0,1,27,46Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="17 17 22.06 22.06 31.94 22.06 31.94 31.94 37 37 37 17 17 17"/><path class="a" d="M27,46A19,19,0,0,1,27,8V3A24,24,0,1,0,51,27H46A19,19,0,0,1,27,46Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/link-intern.svg b/public/assets/images/icons/grey/link-intern.svg
index 41a0f1969c1636c7a16341d3d24b679e6efb8bdf..139dfc4c08c97711e160bcce70597847f39f79db 100644
--- a/public/assets/images/icons/grey/link-intern.svg
+++ b/public/assets/images/icons/grey/link-intern.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/><polygon class="a" points="22 13 22 20.09 28.91 27 22 33.91 22 41 36 27 22 13"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/><polygon class="a" points="22 13 22 20.09 28.91 27 22 33.91 22 41 36 27 22 13"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/link2.svg b/public/assets/images/icons/grey/link2.svg
index fa4432e2db2d0972e5eef05c94966875b332110c..639a49cdf3fd2cbea05dc1571598392601bf1982 100644
--- a/public/assets/images/icons/grey/link2.svg
+++ b/public/assets/images/icons/grey/link2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM22,41V33.91L28.91,27,22,20.09V13L36,27Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM22,41V33.91L28.91,27,22,20.09V13L36,27Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/link3.svg b/public/assets/images/icons/grey/link3.svg
index 094d498c5c6d8046766d876b7c745970035a198b..181abdc3dd060b2066a57d776bbe4c9d2307a3d5 100644
--- a/public/assets/images/icons/grey/link3.svg
+++ b/public/assets/images/icons/grey/link3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,51A24,24,0,1,0,3,27,24,24,0,0,0,27,51Zm5-38v7.09L25.09,27,32,33.88V41L18,27Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,51A24,24,0,1,0,3,27,24,24,0,0,0,27,51Zm5-38v7.09L25.09,27,32,33.88V41L18,27Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/literature.svg b/public/assets/images/icons/grey/literature.svg
index a381779ab190138638d3ab4a9306e65083a6c532..68efd1965040a08a5997797d65f10105ba2dec6d 100644
--- a/public/assets/images/icons/grey/literature.svg
+++ b/public/assets/images/icons/grey/literature.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42h3V3Zm0,17.9H33v3H15Zm0,6H33v3H15Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42h3V3Zm0,17.9H33v3H15Zm0,6H33v3H15Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/literature2.svg b/public/assets/images/icons/grey/literature2.svg
index 2ce4fbb1086d9216d68b8a5ee568bfc9a3c0e46a..5474260faf90d94077b0dfbf776110e1123571e7 100644
--- a/public/assets/images/icons/grey/literature2.svg
+++ b/public/assets/images/icons/grey/literature2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42.08h3V3Zm0,12H36V48H15a3,3,0,0,1-3-3V13.94A4.14,4.14,0,0,0,15,15Z"/><rect class="a" x="15" y="20.9" width="17.99" height="3"/><rect class="a" x="15" y="26.9" width="17.99" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42.08h3V3Zm0,12H36V48H15a3,3,0,0,1-3-3V13.94A4.14,4.14,0,0,0,15,15Z"/><rect class="a" x="15" y="20.9" width="17.99" height="3"/><rect class="a" x="15" y="26.9" width="17.99" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/lock-locked.svg b/public/assets/images/icons/grey/lock-locked.svg
index da2e640bf84fde4aa6dc0a49a64e3cad0e6eb539..64d34b24cec08c8fc3025020db7cf289915c0d66 100644
--- a/public/assets/images/icons/grey/lock-locked.svg
+++ b/public/assets/images/icons/grey/lock-locked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="lock-locked2"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM18,19a9,9,0,0,1,18,0v3H18ZM42,46H12V25H42Z"/><path class="cls-1" d="M24,40a3,3,0,0,0,6,0V35.62a4,4,0,1,0-6,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="lock-locked2"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM18,19a9,9,0,0,1,18,0v3H18ZM42,46H12V25H42Z"/><path class="cls-1" d="M24,40a3,3,0,0,0,6,0V35.62a4,4,0,1,0-6,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/lock-locked2.svg b/public/assets/images/icons/grey/lock-locked2.svg
index 236b63b75951f17d1ccf7de1ce47acd36cc9eccf..7727a02d147de48d6f9cbf60d84f980b8f0049f4 100644
--- a/public/assets/images/icons/grey/lock-locked2.svg
+++ b/public/assets/images/icons/grey/lock-locked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="lock-locked"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM30,35.59V40a3,3,0,0,1-6,0V35.59A3.93,3.93,0,0,1,23,33a4,4,0,1,1,7,2.62ZM36,22H18V19a9,9,0,0,1,18,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="lock-locked"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM30,35.59V40a3,3,0,0,1-6,0V35.59A3.93,3.93,0,0,1,23,33a4,4,0,1,1,7,2.62ZM36,22H18V19a9,9,0,0,1,18,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/lock-unlocked.svg b/public/assets/images/icons/grey/lock-unlocked.svg
index a32c75c20a55df3a1fb78a4ebcd3b079174d6f2e..85fd486236871a122cb8153560c892e3e6742ace 100644
--- a/public/assets/images/icons/grey/lock-unlocked.svg
+++ b/public/assets/images/icons/grey/lock-unlocked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="lock-unlocked2"><path class="cls-1" d="M24,42a3,3,0,0,0,6,0V37.62a4,4,0,1,0-6,0Z"/><path class="cls-1" d="M18,24V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM42,48H12V27H42Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="lock-unlocked2"><path class="cls-1" d="M24,42a3,3,0,0,0,6,0V37.62a4,4,0,1,0-6,0Z"/><path class="cls-1" d="M18,24V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM42,48H12V27H42Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/lock-unlocked2.svg b/public/assets/images/icons/grey/lock-unlocked2.svg
index 25ac7708f8f568431fdefbea205b1f09bcd84c67..1ea50f70b527ae4c7180841f5b86a442a1a0d1c6 100644
--- a/public/assets/images/icons/grey/lock-unlocked2.svg
+++ b/public/assets/images/icons/grey/lock-unlocked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="lock-unlocked"><path class="cls-1" d="M41,24H18V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM30,36.62V42a3,3,0,0,1-6,0V36.62a4,4,0,1,1,6,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="lock-unlocked"><path class="cls-1" d="M41,24H18V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM30,36.62V42a3,3,0,0,1-6,0V36.62a4,4,0,1,1,6,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/log.svg b/public/assets/images/icons/grey/log.svg
index 635e778123844f68fbaa59a2a46d6b1505d23f59..d56dd143adcca2afc139df6479ad9109114c7d9a 100644
--- a/public/assets/images/icons/grey/log.svg
+++ b/public/assets/images/icons/grey/log.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="log"><path class="cls-1" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><rect class="cls-1" x="15" y="10.97" width="24" height="4"/><rect class="cls-1" x="15" y="17.97" width="23" height="4"/><rect class="cls-1" x="15" y="24.97" width="22" height="4"/><rect class="cls-1" x="15" y="31.97" width="24" height="4"/><rect class="cls-1" x="15" y="38.97" width="19" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="log"><path class="cls-1" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><rect class="cls-1" x="15" y="10.97" width="24" height="4"/><rect class="cls-1" x="15" y="17.97" width="23" height="4"/><rect class="cls-1" x="15" y="24.97" width="22" height="4"/><rect class="cls-1" x="15" y="31.97" width="24" height="4"/><rect class="cls-1" x="15" y="38.97" width="19" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/mail.svg b/public/assets/images/icons/grey/mail.svg
index 11cd2d4796434efe1120034d07f0cfe2b97d80bb..0bca8d40e04ce495668ebcea38458ebcdbbdf956 100644
--- a/public/assets/images/icons/grey/mail.svg
+++ b/public/assets/images/icons/grey/mail.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="3 17.92 3 45 51 45 51 17.83 26.93 37.18 3 17.92"/><polygon class="a" points="3 9 3 12 3 12.06 26.93 31.42 51 12.09 51 12 51 9 3 9"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="3 17.92 3 45 51 45 51 17.83 26.93 37.18 3 17.92"/><polygon class="a" points="3 9 3 12 3 12.06 26.93 31.42 51 12.09 51 12 51 9 3 9"/></svg>
diff --git a/public/assets/images/icons/grey/mail2.svg b/public/assets/images/icons/grey/mail2.svg
index d23ae31e863ccde6047a6471f5b39332e722d89c..baada6965c37fe4c781e22178a7e1f1608dbf451 100644
--- a/public/assets/images/icons/grey/mail2.svg
+++ b/public/assets/images/icons/grey/mail2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,9v5L27,31,51,14V9ZM27,24.84,11.65,14h30.7Z"/><polygon class="a" points="46 39.97 8 39.97 7.96 21.48 3 17.97 3 44.97 51 44.97 51 17.97 46.03 21.49 46 39.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,9v5L27,31,51,14V9ZM27,24.84,11.65,14h30.7Z"/><polygon class="a" points="46 39.97 8 39.97 7.96 21.48 3 17.97 3 44.97 51 44.97 51 17.97 46.03 21.49 46 39.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/maximize.svg b/public/assets/images/icons/grey/maximize.svg
index cfb093832be1988a36582e8e4ff770c8ad2f52de..39d49cf7b42145d85e1a6b153fcb7b90971f15e2 100644
--- a/public/assets/images/icons/grey/maximize.svg
+++ b/public/assets/images/icons/grey/maximize.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="maximise-1"><polygon points="27 39.03 27 48.03 6 48.03 6 27.03 15 27.03 15 24.03 3 24.03 3 51.03 30 51.03 30 39.03 27 39.03"/><path d="M15,3V39H51V3ZM48,36H18V11.94H48Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="maximise-1"><polygon points="27 39.03 27 48.03 6 48.03 6 27.03 15 27.03 15 24.03 3 24.03 3 51.03 30 51.03 30 39.03 27 39.03"/><path d="M15,3V39H51V3ZM48,36H18V11.94H48Z"/></g></svg>
diff --git a/public/assets/images/icons/grey/microphone.svg b/public/assets/images/icons/grey/microphone.svg
index 2ce0641e2374eeeb9caea4b5a7b13ec3c0693aed..5f9597ce036dd77b44bdf4be210fa180b5b1bcab 100644
--- a/public/assets/images/icons/grey/microphone.svg
+++ b/public/assets/images/icons/grey/microphone.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,36a7,7,0,0,0,7-7V10a7,7,0,1,0-14,0V29A7,7,0,0,0,27,36Z"/><path class="a" d="M40,29V27a3,3,0,0,0-3-3v4.65A10.24,10.24,0,0,1,27.68,39,10,10,0,0,1,17,29V24a3,3,0,0,0-3,3v2A13,13,0,0,0,25.5,41.88V46H20a3,3,0,0,0-3,3v2H37V49a3,3,0,0,0-3-3H28.5V41.88A13,13,0,0,0,40,29Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,36a7,7,0,0,0,7-7V10a7,7,0,1,0-14,0V29A7,7,0,0,0,27,36Z"/><path class="a" d="M40,29V27a3,3,0,0,0-3-3v4.65A10.24,10.24,0,0,1,27.68,39,10,10,0,0,1,17,29V24a3,3,0,0,0-3,3v2A13,13,0,0,0,25.5,41.88V46H20a3,3,0,0,0-3,3v2H37V49a3,3,0,0,0-3-3H28.5V41.88A13,13,0,0,0,40,29Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/module.svg b/public/assets/images/icons/grey/module.svg
index cdefc10ed21b8b021cb88223bbea0301add39791..35bbcb98c9e09f6c66bdfb400bfa79624716e12c 100644
--- a/public/assets/images/icons/grey/module.svg
+++ b/public/assets/images/icons/grey/module.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="module"><path d="M8.94,26.08a14,14,0,0,1,14-14h0V6.17h0A19.92,19.92,0,0,0,3,26.08H8.94Zm19,12.46a7.48,7.48,0,0,0,0-14.95v7.48H20.44A7.49,7.49,0,0,0,27.93,38.54Zm0-27.39v5.93a14,14,0,1,1-14,14H8A19.91,19.91,0,1,0,27.93,11.15Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="module"><path d="M8.94,26.08a14,14,0,0,1,14-14h0V6.17h0A19.92,19.92,0,0,0,3,26.08H8.94Zm19,12.46a7.48,7.48,0,0,0,0-14.95v7.48H20.44A7.49,7.49,0,0,0,27.93,38.54Zm0-27.39v5.93a14,14,0,1,1-14,14H8A19.91,19.91,0,1,0,27.93,11.15Z"/></g></svg>
diff --git a/public/assets/images/icons/grey/network.svg b/public/assets/images/icons/grey/network.svg
index c7bcf3e909418deac6b2151178c7666da1c81c83..77d0b22799cc0ab3c01acf8a08c4032048bad5ce 100644
--- a/public/assets/images/icons/grey/network.svg
+++ b/public/assets/images/icons/grey/network.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="network"><path class="cls-1" d="M51,30.43A3.42,3.42,0,0,0,47.57,27a3.36,3.36,0,0,0-2.91,1.73H28.71V23.05a3.39,3.39,0,0,0,1.72-2.91A3.44,3.44,0,0,0,27,16.71a3.36,3.36,0,0,0-2.9,1.72H18.41V9.34a3.36,3.36,0,0,0,1.73-2.91,3.43,3.43,0,1,0-6.85,0A3.38,3.38,0,0,0,15,9.32v9.11H9.33a3.38,3.38,0,0,0-2.9-1.72,3.43,3.43,0,0,0,0,6.86,3.39,3.39,0,0,0,2.9-1.71H15v5.68a3.38,3.38,0,0,0-1.69,2.89,3.43,3.43,0,0,0,3.42,3.43,3.38,3.38,0,0,0,2.9-1.7h5.68V44.67a3.38,3.38,0,0,0-1.72,2.9,3.43,3.43,0,0,0,6.86,0,3.38,3.38,0,0,0-1.72-2.9V32.16H39v9.07a3.36,3.36,0,0,0-1.73,2.91,3.43,3.43,0,1,0,6.85,0,3.37,3.37,0,0,0-1.7-2.89V32.16h2.24a3.37,3.37,0,0,0,2.89,1.7A3.43,3.43,0,0,0,51,30.43Zm-25.71-1.7H19.63a3.29,3.29,0,0,0-1.22-1.21V21.86H24.1a3.39,3.39,0,0,0,1.19,1.19Z"/><circle class="cls-1" cx="35.57" cy="11.57" r="5.14"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="network"><path class="cls-1" d="M51,30.43A3.42,3.42,0,0,0,47.57,27a3.36,3.36,0,0,0-2.91,1.73H28.71V23.05a3.39,3.39,0,0,0,1.72-2.91A3.44,3.44,0,0,0,27,16.71a3.36,3.36,0,0,0-2.9,1.72H18.41V9.34a3.36,3.36,0,0,0,1.73-2.91,3.43,3.43,0,1,0-6.85,0A3.38,3.38,0,0,0,15,9.32v9.11H9.33a3.38,3.38,0,0,0-2.9-1.72,3.43,3.43,0,0,0,0,6.86,3.39,3.39,0,0,0,2.9-1.71H15v5.68a3.38,3.38,0,0,0-1.69,2.89,3.43,3.43,0,0,0,3.42,3.43,3.38,3.38,0,0,0,2.9-1.7h5.68V44.67a3.38,3.38,0,0,0-1.72,2.9,3.43,3.43,0,0,0,6.86,0,3.38,3.38,0,0,0-1.72-2.9V32.16H39v9.07a3.36,3.36,0,0,0-1.73,2.91,3.43,3.43,0,1,0,6.85,0,3.37,3.37,0,0,0-1.7-2.89V32.16h2.24a3.37,3.37,0,0,0,2.89,1.7A3.43,3.43,0,0,0,51,30.43Zm-25.71-1.7H19.63a3.29,3.29,0,0,0-1.22-1.21V21.86H24.1a3.39,3.39,0,0,0,1.19,1.19Z"/><circle class="cls-1" cx="35.57" cy="11.57" r="5.14"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/news.svg b/public/assets/images/icons/grey/news.svg
index efe13d9a9eff00c05d5f718626ad4c3474ce5da3..4cdbcdc45964fdb034ee26bc5e20521ea41cc544 100644
--- a/public/assets/images/icons/grey/news.svg
+++ b/public/assets/images/icons/grey/news.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/no-activity.svg b/public/assets/images/icons/grey/no-activity.svg
index 950affdd973e7464cc5f23ac031b6bc3ba83c9fe..041b43336e18500acd908e26bfac1a68f10a799a 100644
--- a/public/assets/images/icons/grey/no-activity.svg
+++ b/public/assets/images/icons/grey/no-activity.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><path id="no-activity" d="M3,3V51H51V3ZM48,6V26.62H19.23l-4-7.87-3.84,7.87H6V6ZM6,48V29.62H13.3l2-4.13,3.39,6.66,1.73-2.53H48V48Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><path id="no-activity" d="M3,3V51H51V3ZM48,6V26.62H19.23l-4-7.87-3.84,7.87H6V6ZM6,48V29.62H13.3l2-4.13,3.39,6.66,1.73-2.53H48V48Z"/></svg>
diff --git a/public/assets/images/icons/grey/oer-campus.svg b/public/assets/images/icons/grey/oer-campus.svg
index 0730b5320d4a60c79a8bd4942ec39c3f35d93e59..f199feb1eab464a19ab0710a199eae593c0c29a6 100644
--- a/public/assets/images/icons/grey/oer-campus.svg
+++ b/public/assets/images/icons/grey/oer-campus.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M17,22.07A12.38,12.38,0,1,1,34.58,33.55l1.41.57,8.28-2.83A17.37,17.37,0,1,0,12,22.34c0,.12,0,.23,0,.36Z"/><path class="a" d="M50.78,35.93a3.72,3.72,0,0,0-3.5-2.51,3.62,3.62,0,0,0-1.25.22L35.82,37.19,22.13,31.56l8.73-1.19A3.71,3.71,0,0,0,30.4,23l-.46,0L10.08,25.56a3.68,3.68,0,0,0-1.51.57A2.25,2.25,0,0,0,7.33,27.4l-.18.49c-.05.13-.1.25-.14.38L3.14,38.76a2.22,2.22,0,0,0,.18,1.92c.91,2,5.16,4.86,9.09,6.35l9.44,1.79a8.64,8.64,0,0,0,1.4.12l.45,0a3.81,3.81,0,0,0,.59,0,3.37,3.37,0,0,0,1.2-.21L27,48.23c.4-.12.82-.25,1.29-.41,5.15-1.66,10.9-3.7,13-4.56l.07,0,7.08-2.47A3.79,3.79,0,0,0,50.78,35.93Z"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M17,22.07A12.38,12.38,0,1,1,34.58,33.55l1.41.57,8.28-2.83A17.37,17.37,0,1,0,12,22.34c0,.12,0,.23,0,.36Z"/><path class="a" d="M50.78,35.93a3.72,3.72,0,0,0-3.5-2.51,3.62,3.62,0,0,0-1.25.22L35.82,37.19,22.13,31.56l8.73-1.19A3.71,3.71,0,0,0,30.4,23l-.46,0L10.08,25.56a3.68,3.68,0,0,0-1.51.57A2.25,2.25,0,0,0,7.33,27.4l-.18.49c-.05.13-.1.25-.14.38L3.14,38.76a2.22,2.22,0,0,0,.18,1.92c.91,2,5.16,4.86,9.09,6.35l9.44,1.79a8.64,8.64,0,0,0,1.4.12l.45,0a3.81,3.81,0,0,0,.59,0,3.37,3.37,0,0,0,1.2-.21L27,48.23c.4-.12.82-.25,1.29-.41,5.15-1.66,10.9-3.7,13-4.56l.07,0,7.08-2.47A3.79,3.79,0,0,0,50.78,35.93Z"/></svg>
diff --git a/public/assets/images/icons/grey/oer-campus2.svg b/public/assets/images/icons/grey/oer-campus2.svg
index 21f66ece942c9e072b197b5b4e31f539eca0c582..49c029c970688318084df36a294467b09e3c8347 100644
--- a/public/assets/images/icons/grey/oer-campus2.svg
+++ b/public/assets/images/icons/grey/oer-campus2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/opencast.svg b/public/assets/images/icons/grey/opencast.svg
index 35e674c189bcf86765763f9aaad270088d4627cb..2a82088fc2b4cf0ebe77008012138c72a58d7d6e 100644
--- a/public/assets/images/icons/grey/opencast.svg
+++ b/public/assets/images/icons/grey/opencast.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M20,10,3,27,20,44,37,27ZM10.08,27,20,17.05,29.9,27,20,36.89Z"/><polygon class="a" points="34.01 9.97 30.5 13.48 43.99 26.97 30.5 40.46 34.01 43.97 51 26.97 34.01 9.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M20,10,3,27,20,44,37,27ZM10.08,27,20,17.05,29.9,27,20,36.89Z"/><polygon class="a" points="34.01 9.97 30.5 13.48 43.99 26.97 30.5 40.46 34.01 43.97 51 26.97 34.01 9.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/opencast2.svg b/public/assets/images/icons/grey/opencast2.svg
index 41ad04b0348df3cc67a98d0865fbe93960eb10c6..5dc6a257189f9bebfbad603e6b83e828b35d670c 100644
--- a/public/assets/images/icons/grey/opencast2.svg
+++ b/public/assets/images/icons/grey/opencast2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="31.02 6.97 29 8.99 46.96 26.97 29 44.95 31.02 46.97 51 26.97 31.02 6.97"/><path class="a" d="M23,7,3,27,23,47,43,27ZM7.29,27,23,11.26,38.71,27,23,42.68Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="31.02 6.97 29 8.99 46.96 26.97 29 44.95 31.02 46.97 51 26.97 31.02 6.97"/><path class="a" d="M23,7,3,27,23,47,43,27ZM7.29,27,23,11.26,38.71,27,23,42.68Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/pause.svg b/public/assets/images/icons/grey/pause.svg
index 48a2591046436482f723b60a4562e870629ecb50..550611791b240beeb2966a928ede547b3741aad2 100644
--- a/public/assets/images/icons/grey/pause.svg
+++ b/public/assets/images/icons/grey/pause.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="12.01 45.99 23.99 46 24 8 12 8 12.01 45.99"/><polygon class="a" points="30.01 45.99 41.99 46 42 8 30 8 30.01 45.99"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="12.01 45.99 23.99 46 24 8 12 8 12.01 45.99"/><polygon class="a" points="30.01 45.99 41.99 46 42 8 30 8 30.01 45.99"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/permalink.svg b/public/assets/images/icons/grey/permalink.svg
index 452a0edd947e4ddf9f1996564f0531c0944a83c5..908bbff64679e606b55413f3080cdf05d9c76d96 100644
--- a/public/assets/images/icons/grey/permalink.svg
+++ b/public/assets/images/icons/grey/permalink.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/person.svg b/public/assets/images/icons/grey/person.svg
index f0749f116fbb1c5869eb8a5cb3f6413ee17bdabd..42918e98e2d8ba14cbc6ba46290ddf52f028bd14 100644
--- a/public/assets/images/icons/grey/person.svg
+++ b/public/assets/images/icons/grey/person.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M4.5,49.5V4.5h45v45Zm14.71-22a7.71,7.71,0,0,0-7.71,7.7v12.3h31V35.22a7.71,7.71,0,0,0-7.7-7.7ZM27,5.55A10.5,10.5,0,1,0,37.5,16,10.5,10.5,0,0,0,27,5.55Z"/><path class="a" d="M48,6V48H44V35.22A9.21,9.21,0,0,0,34.8,26H33.67a12,12,0,0,0-.11-20H48M20.44,6a12,12,0,0,0-.11,20H19.21A9.21,9.21,0,0,0,10,35.22V48H6V6H20.44M51,3H3V51H51V3ZM27,25.05a9,9,0,1,1,9-9,9,9,0,0,1-9,9ZM13,46V35.22A6.2,6.2,0,0,1,19.21,29H34.8a6.2,6.2,0,0,1,6.2,6.2V46Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M4.5,49.5V4.5h45v45Zm14.71-22a7.71,7.71,0,0,0-7.71,7.7v12.3h31V35.22a7.71,7.71,0,0,0-7.7-7.7ZM27,5.55A10.5,10.5,0,1,0,37.5,16,10.5,10.5,0,0,0,27,5.55Z"/><path class="a" d="M48,6V48H44V35.22A9.21,9.21,0,0,0,34.8,26H33.67a12,12,0,0,0-.11-20H48M20.44,6a12,12,0,0,0-.11,20H19.21A9.21,9.21,0,0,0,10,35.22V48H6V6H20.44M51,3H3V51H51V3ZM27,25.05a9,9,0,1,1,9-9,9,9,0,0,1-9,9ZM13,46V35.22A6.2,6.2,0,0,1,19.21,29H34.8a6.2,6.2,0,0,1,6.2,6.2V46Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/person2.svg b/public/assets/images/icons/grey/person2.svg
index c67112a56a10d749d48fad20c05ba99b03f3ded6..685a45f563ed1c566e39331a4aba91df8e22f3b4 100644
--- a/public/assets/images/icons/grey/person2.svg
+++ b/public/assets/images/icons/grey/person2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,27.05a9,9,0,1,0-9-9A9,9,0,0,0,27,27.05Z"/><path class="a" d="M3,3V51H51V3ZM48,48H41V37.22A6.2,6.2,0,0,0,34.8,31H19.21A6.2,6.2,0,0,0,13,37.22V48H6V6H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,27.05a9,9,0,1,0-9-9A9,9,0,0,0,27,27.05Z"/><path class="a" d="M3,3V51H51V3ZM48,48H41V37.22A6.2,6.2,0,0,0,34.8,31H19.21A6.2,6.2,0,0,0,13,37.22V48H6V6H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/persons.svg b/public/assets/images/icons/grey/persons.svg
index 0e83d9cf4fe0a552840fea23e9a3f21b2ad434ce..db8a394a62ec6fa8d9e853c8e137d162a1c6b0f3 100644
--- a/public/assets/images/icons/grey/persons.svg
+++ b/public/assets/images/icons/grey/persons.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,51H45V9H3ZM24,12a9,9,0,1,1-9,9A9,9,0,0,1,24,12ZM10,40.17A6.21,6.21,0,0,1,16.2,34H31.79A6.21,6.21,0,0,1,38,40.17V46H10Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,51H45V9H3ZM24,12a9,9,0,1,1-9,9A9,9,0,0,1,24,12ZM10,40.17A6.21,6.21,0,0,1,16.2,34H31.79A6.21,6.21,0,0,1,38,40.17V46H10Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/persons2.svg b/public/assets/images/icons/grey/persons2.svg
index a6e69d44fd7db3a52954c08514c7b7b92efba392..3f6d0e1fcd964c489abcbd3b2d03cb3c508a6f0e 100644
--- a/public/assets/images/icons/grey/persons2.svg
+++ b/public/assets/images/icons/grey/persons2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,51H45V9H3ZM6,12H42V48H38v-4.8A6.21,6.21,0,0,0,31.79,37H16.2a6.21,6.21,0,0,0-6.2,6.2V48H6Z"/><path class="a" d="M24,33a9,9,0,1,0-9-9A9,9,0,0,0,24,33Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,51H45V9H3ZM6,12H42V48H38v-4.8A6.21,6.21,0,0,0,31.79,37H16.2a6.21,6.21,0,0,0-6.2,6.2V48H6Z"/><path class="a" d="M24,33a9,9,0,1,0-9-9A9,9,0,0,0,24,33Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/play.svg b/public/assets/images/icons/grey/play.svg
index 56f556f4ad86578ddc22ce8e8ed449812482af7f..9021e7e7eda4168bf6c59f9cc71ed789e5173078 100644
--- a/public/assets/images/icons/grey/play.svg
+++ b/public/assets/images/icons/grey/play.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="arrows"><g id="play"><polygon class="cls-1" points="14.99 44.91 42 26.91 15 8.91 14.99 44.91"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="arrows"><g id="play"><polygon class="cls-1" points="14.99 44.91 42 26.91 15 8.91 14.99 44.91"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/plugin.svg b/public/assets/images/icons/grey/plugin.svg
index 3f5cc98f60b028feeda9ff8e813c5be14773e479..ebc76b0572a3ee61c68c7508cdb4519a63d898e1 100644
--- a/public/assets/images/icons/grey/plugin.svg
+++ b/public/assets/images/icons/grey/plugin.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M31.35,6l.54,4.28A16.51,16.51,0,0,0,29,10a17.75,17.75,0,0,0-2.81.23,17,17,0,1,0,9.73,32.29L36.6,48H6V6H31.35M34,3H3V51H40L38.72,40.74a2,2,0,0,0-2-1.74,2,2,0,0,0-1,.26A13.82,13.82,0,0,1,29,41a14,14,0,0,1-2.33-27.81A14.35,14.35,0,0,1,29,13a13.74,13.74,0,0,1,3.54.46,2.4,2.4,0,0,0,.52.07,2,2,0,0,0,2-2.25L34,3Z"/><path class="a" d="M37,3l1.66,13.3a2,2,0,0,1-3.21,1.82,11,11,0,0,0-7.53-2A11,11,0,0,0,29,38a11,11,0,0,0,8.46-4A2,2,0,0,1,41,35C41.88,42,43,51,43,51h8V3Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M31.35,6l.54,4.28A16.51,16.51,0,0,0,29,10a17.75,17.75,0,0,0-2.81.23,17,17,0,1,0,9.73,32.29L36.6,48H6V6H31.35M34,3H3V51H40L38.72,40.74a2,2,0,0,0-2-1.74,2,2,0,0,0-1,.26A13.82,13.82,0,0,1,29,41a14,14,0,0,1-2.33-27.81A14.35,14.35,0,0,1,29,13a13.74,13.74,0,0,1,3.54.46,2.4,2.4,0,0,0,.52.07,2,2,0,0,0,2-2.25L34,3Z"/><path class="a" d="M37,3l1.66,13.3a2,2,0,0,1-3.21,1.82,11,11,0,0,0-7.53-2A11,11,0,0,0,29,38a11,11,0,0,0,8.46-4A2,2,0,0,1,41,35C41.88,42,43,51,43,51h8V3Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/plugin2.svg b/public/assets/images/icons/grey/plugin2.svg
index 4bc3f039b21b544d65ecec3d9a03908513f7b869..87339ebaca723b15213bff4c0aa1148f0c91c258 100644
--- a/public/assets/images/icons/grey/plugin2.svg
+++ b/public/assets/images/icons/grey/plugin2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M38.75,24.61a7,7,0,0,1,4.6,1.76A1,1,0,0,0,45,25.62v-9.8H33.58a1,1,0,0,1-.75-1.65,6.6,6.6,0,0,0,1.66-4.31,7,7,0,0,0-14-.13,6.61,6.61,0,0,0,1.66,4.45,1,1,0,0,1-.75,1.64H9V51h7.49a1,1,0,0,0,.76-1.64,6.72,6.72,0,0,1-1.67-4.49,7,7,0,0,1,14,.14,6.7,6.7,0,0,1-1.67,4.34A1,1,0,0,0,28.64,51H45V37.27a1,1,0,0,0-1.64-.77,7.05,7.05,0,0,1-4.75,1.76,6.83,6.83,0,1,1,.14-13.65Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M38.75,24.61a7,7,0,0,1,4.6,1.76A1,1,0,0,0,45,25.62v-9.8H33.58a1,1,0,0,1-.75-1.65,6.6,6.6,0,0,0,1.66-4.31,7,7,0,0,0-14-.13,6.61,6.61,0,0,0,1.66,4.45,1,1,0,0,1-.75,1.64H9V51h7.49a1,1,0,0,0,.76-1.64,6.72,6.72,0,0,1-1.67-4.49,7,7,0,0,1,14,.14,6.7,6.7,0,0,1-1.67,4.34A1,1,0,0,0,28.64,51H45V37.27a1,1,0,0,0-1.64-.77,7.05,7.05,0,0,1-4.75,1.76,6.83,6.83,0,1,1,.14-13.65Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/privacy.svg b/public/assets/images/icons/grey/privacy.svg
index b33dcb583a2ddff8c4c076944be0ff458e743eb6..27ffddb57521b4d899e5369083e036f321a843e5 100644
--- a/public/assets/images/icons/grey/privacy.svg
+++ b/public/assets/images/icons/grey/privacy.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="privacy"><path d="M27.87,14.51H23V24.75h5.13a6.47,6.47,0,0,0,4.4-1.35,4.84,4.84,0,0,0,1.55-3.86Q34.1,14.52,27.87,14.51Z"/><path d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM37.52,24.72a8.21,8.21,0,0,1-3.91,3.2,20,20,0,0,1-7.12,1H23V43.11H18.31V10.34H28.69a10.68,10.68,0,0,1,7.47,2.53A8.71,8.71,0,0,1,39,19.66,9.1,9.1,0,0,1,37.52,24.72Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="privacy"><path d="M27.87,14.51H23V24.75h5.13a6.47,6.47,0,0,0,4.4-1.35,4.84,4.84,0,0,0,1.55-3.86Q34.1,14.52,27.87,14.51Z"/><path d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM37.52,24.72a8.21,8.21,0,0,1-3.91,3.2,20,20,0,0,1-7.12,1H23V43.11H18.31V10.34H28.69a10.68,10.68,0,0,1,7.47,2.53A8.71,8.71,0,0,1,39,19.66,9.1,9.1,0,0,1,37.52,24.72Z"/></g></svg>
diff --git a/public/assets/images/icons/grey/question-circle-full.svg b/public/assets/images/icons/grey/question-circle-full.svg
index 09a29cfdc147b086b33010d8465c3fb532d57e72..fec0a08f40d58b9119dcb7617bcd11b31fd736a6 100644
--- a/public/assets/images/icons/grey/question-circle-full.svg
+++ b/public/assets/images/icons/grey/question-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/question-circle.svg b/public/assets/images/icons/grey/question-circle.svg
index 09a29cfdc147b086b33010d8465c3fb532d57e72..fec0a08f40d58b9119dcb7617bcd11b31fd736a6 100644
--- a/public/assets/images/icons/grey/question-circle.svg
+++ b/public/assets/images/icons/grey/question-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/refresh.svg b/public/assets/images/icons/grey/refresh.svg
index 653ebe2d01767b864907757208bf08ab42bdf60b..c15c328181352e56d7a6bb0c833efb269173da48 100644
--- a/public/assets/images/icons/grey/refresh.svg
+++ b/public/assets/images/icons/grey/refresh.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="refresh"><path class="cls-1" d="M27,44A17,17,0,0,1,10.63,31.46l4.88,1.31,4.24-2.45L6.54,26.77,3,40l4.24-2.45,1-3.76A19.93,19.93,0,0,0,46.33,32l-2.9-.75A17,17,0,0,1,27,44Z"/><path class="cls-1" d="M46.76,16.51l-1,3.72a19.93,19.93,0,0,0-38.1,1.82l2.9.75a16.95,16.95,0,0,1,32.81-.2l-4.89-1.31-4.24,2.45,13.21,3.55L51,14.06Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="refresh"><path class="cls-1" d="M27,44A17,17,0,0,1,10.63,31.46l4.88,1.31,4.24-2.45L6.54,26.77,3,40l4.24-2.45,1-3.76A19.93,19.93,0,0,0,46.33,32l-2.9-.75A17,17,0,0,1,27,44Z"/><path class="cls-1" d="M46.76,16.51l-1,3.72a19.93,19.93,0,0,0-38.1,1.82l2.9.75a16.95,16.95,0,0,1,32.81-.2l-4.89-1.31-4.24,2.45,13.21,3.55L51,14.06Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/remove-circle-full.svg b/public/assets/images/icons/grey/remove-circle-full.svg
index a3e936bc038884297b2f78117d83b860531c06ef..b56dab3edb03c98e024b2977e7e1b9ffde4ed47c 100644
--- a/public/assets/images/icons/grey/remove-circle-full.svg
+++ b/public/assets/images/icons/grey/remove-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/remove-circle.svg b/public/assets/images/icons/grey/remove-circle.svg
index a3e936bc038884297b2f78117d83b860531c06ef..b56dab3edb03c98e024b2977e7e1b9ffde4ed47c 100644
--- a/public/assets/images/icons/grey/remove-circle.svg
+++ b/public/assets/images/icons/grey/remove-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/remove.svg b/public/assets/images/icons/grey/remove.svg
index 04be239f9a3a2b7ffeb34c648123c834c7aabae2..903bc203a5c8933c418afc8ba20ed0e2ac883df7 100644
--- a/public/assets/images/icons/grey/remove.svg
+++ b/public/assets/images/icons/grey/remove.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="48 32 48 22 6 22 6 32 48 32"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="48 32 48 22 6 22 6 32 48 32"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/resources-broken.svg b/public/assets/images/icons/grey/resources-broken.svg
index 919bf5cc703ae8ee8e32f0827a879e59d6ba80a8..b4ee11295c9f1d1468020264e85d3062391995b2 100644
--- a/public/assets/images/icons/grey/resources-broken.svg
+++ b/public/assets/images/icons/grey/resources-broken.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="resources-broken"><polygon class="cls-1" points="24.93 49.54 24.93 36.7 22.46 49.54 24.93 49.54"/><polygon class="cls-1" points="37.76 4.43 31.82 4.43 30.57 10.91 32.8 8.65 36.05 11.94 28.99 19.09 27.54 26.65 37.76 26.65 37.76 4.43"/><path class="cls-1" d="M28.76,31V53H50.69V31Zm14.1,11h0l4.45,4.47L44.18,49.6l-4.45-4.47L35.28,49.6l-3.14-3.15L36.59,42h0l-4.44-4.47L33.7,36l1.58-1.58,4.45,4.47,4.45-4.47,3.13,3.15L42.86,42Z"/><polygon class="cls-1" points="3 27.51 3 49.54 18.82 49.54 19.47 46.14 16.1 46.14 16.1 40.35 11.83 40.35 11.83 46.14 7.76 46.14 7.76 38.74 6.55 38.74 13.97 30.91 20.98 38.31 23.06 27.51 3 27.51"/><polygon class="cls-1" points="20.18 42.47 20.89 38.74 20.18 38.74 20.18 42.47"/><polygon class="cls-1" points="15.86 0.97 15.86 23.19 23.89 23.19 24.61 19.43 17.57 12.29 20.81 9 24.92 13.18 26.04 12.05 28.17 0.97 15.86 0.97"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="resources-broken"><polygon class="cls-1" points="24.93 49.54 24.93 36.7 22.46 49.54 24.93 49.54"/><polygon class="cls-1" points="37.76 4.43 31.82 4.43 30.57 10.91 32.8 8.65 36.05 11.94 28.99 19.09 27.54 26.65 37.76 26.65 37.76 4.43"/><path class="cls-1" d="M28.76,31V53H50.69V31Zm14.1,11h0l4.45,4.47L44.18,49.6l-4.45-4.47L35.28,49.6l-3.14-3.15L36.59,42h0l-4.44-4.47L33.7,36l1.58-1.58,4.45,4.47,4.45-4.47,3.13,3.15L42.86,42Z"/><polygon class="cls-1" points="3 27.51 3 49.54 18.82 49.54 19.47 46.14 16.1 46.14 16.1 40.35 11.83 40.35 11.83 46.14 7.76 46.14 7.76 38.74 6.55 38.74 13.97 30.91 20.98 38.31 23.06 27.51 3 27.51"/><polygon class="cls-1" points="20.18 42.47 20.89 38.74 20.18 38.74 20.18 42.47"/><polygon class="cls-1" points="15.86 0.97 15.86 23.19 23.89 23.19 24.61 19.43 17.57 12.29 20.81 9 24.92 13.18 26.04 12.05 28.17 0.97 15.86 0.97"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/resources.svg b/public/assets/images/icons/grey/resources.svg
index 6f08d0a7934a1a37bc22cc12c5d3cd8e5b83a0ea..3679f5c17d1ac770193f3e43eda865bb5aa0df2c 100644
--- a/public/assets/images/icons/grey/resources.svg
+++ b/public/assets/images/icons/grey/resources.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="resources"><path class="cls-1" d="M29,29V51H51V29ZM47.61,44.46,44.46,47.6,40,43.14,35.54,47.6l-3.15-3.14L36.86,40,32.4,35.53l3.14-3.14L40,36.86l4.46-4.47,3.15,3.15L43.14,40Z"/><path class="cls-1" d="M16,3V25H38V3Zm9.12,18.6-7.4-7.4L21,11l4.14,4.14L33,7.18l3.26,3.25Z"/><path class="cls-1" d="M3,29V51H25V29ZM20.23,40.21V47.6H16.14V41.82H11.86V47.6H7.77V40.21H6.56L14,32.39l7.44,7.82Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="resources"><path class="cls-1" d="M29,29V51H51V29ZM47.61,44.46,44.46,47.6,40,43.14,35.54,47.6l-3.15-3.14L36.86,40,32.4,35.53l3.14-3.14L40,36.86l4.46-4.47,3.15,3.15L43.14,40Z"/><path class="cls-1" d="M16,3V25H38V3Zm9.12,18.6-7.4-7.4L21,11l4.14,4.14L33,7.18l3.26,3.25Z"/><path class="cls-1" d="M3,29V51H25V29ZM20.23,40.21V47.6H16.14V41.82H11.86V47.6H7.77V40.21H6.56L14,32.39l7.44,7.82Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/roles2.svg b/public/assets/images/icons/grey/roles2.svg
index 73bd761c18f9f92a35952481ed87cbf6e48e8723..142cea0d32262483fd33a105ea3f8f0cc225df21 100644
--- a/public/assets/images/icons/grey/roles2.svg
+++ b/public/assets/images/icons/grey/roles2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="roles2"><path class="cls-1" d="M19,10a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-5A10,10,0,1,0,29,15,10,10,0,0,0,19,5Z"/><path class="cls-1" d="M30,44v0H8V36a3,3,0,0,1,3-3H22.86L26,28H11a8,8,0,0,0-8,8V49H35V44Z"/><path class="cls-1" d="M48.35,5.68a5.4,5.4,0,0,0-7.22,1.87L40.25,9l-1.33,2.21L27,31.1,27.13,41l9.05-4.78L48.09,16.33l1.32-2.21.88-1.47A5,5,0,0,0,48.35,5.68ZM34.26,34.3l-1.66.88-2.91-1.62,0-1.79L41.21,12.5l4.59,2.55Zm8.28-24,.88-1.48A2.71,2.71,0,0,1,47,7.89a2.5,2.5,0,0,1,1,3.48l-.88,1.48Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="roles2"><path class="cls-1" d="M19,10a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-5A10,10,0,1,0,29,15,10,10,0,0,0,19,5Z"/><path class="cls-1" d="M30,44v0H8V36a3,3,0,0,1,3-3H22.86L26,28H11a8,8,0,0,0-8,8V49H35V44Z"/><path class="cls-1" d="M48.35,5.68a5.4,5.4,0,0,0-7.22,1.87L40.25,9l-1.33,2.21L27,31.1,27.13,41l9.05-4.78L48.09,16.33l1.32-2.21.88-1.47A5,5,0,0,0,48.35,5.68ZM34.26,34.3l-1.66.88-2.91-1.62,0-1.79L41.21,12.5l4.59,2.55Zm8.28-24,.88-1.48A2.71,2.71,0,0,1,47,7.89a2.5,2.5,0,0,1,1,3.48l-.88,1.48Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/room-clear.svg b/public/assets/images/icons/grey/room-clear.svg
index f526018533bae412ba4f999c2c9f640fc1b753ce..3eabd31753ba82d19e2029ff49133caa7063d428 100644
--- a/public/assets/images/icons/grey/room-clear.svg
+++ b/public/assets/images/icons/grey/room-clear.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.7.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4.6 8.5l-2.3-2.3 1-1 1.3 1.3L9.9 9l1 1-3.5 3.5z" fill="#6e6e6e"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.7.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4.6 8.5l-2.3-2.3 1-1 1.3 1.3L9.9 9l1 1-3.5 3.5z" fill="#6e6e6e"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/room-occupied.svg b/public/assets/images/icons/grey/room-occupied.svg
index ecf3d07511f9bce0198dfcc648859962fc3fa001..ecaeb5d1d21c478610a2637997dcf681cd472794 100644
--- a/public/assets/images/icons/grey/room-occupied.svg
+++ b/public/assets/images/icons/grey/room-occupied.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.7.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-1.5 7.9l-1 1L8 12.5 6.5 14l-1-1L7 11.4 5.5 10l1-1L8 10.4 9.5 9l1 1L9 11.4l1.5 1.5z" fill="#6e6e6e"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.7.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-1.5 7.9l-1 1L8 12.5 6.5 14l-1-1L7 11.4 5.5 10l1-1L8 10.4 9.5 9l1 1L9 11.4l1.5 1.5z" fill="#6e6e6e"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/room-request.svg b/public/assets/images/icons/grey/room-request.svg
index daa165449d00f875a2e5ab5e95362b31798d12ba..8f23c4bd1d4c068f988cacbb82106f5b42dd6721 100644
--- a/public/assets/images/icons/grey/room-request.svg
+++ b/public/assets/images/icons/grey/room-request.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1.1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.8.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4 8.7c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7zm1-2.8c-.3.3-.4.6-.4.9v.1h-1v-.2c0-.4.1-.8.4-1.2.2-.3.4-.5.4-.8 0-.3-.2-.4-.6-.5-.3 0-.6.1-.8.2l-.1-.7c.3-.2.7-.3 1.3-.3 1 0 1.5.6 1.5 1.2-.1.6-.5.9-.7 1.3z" fill="#6e6e6e"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1.1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.8.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4 8.7c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7zm1-2.8c-.3.3-.4.6-.4.9v.1h-1v-.2c0-.4.1-.8.4-1.2.2-.3.4-.5.4-.8 0-.3-.2-.4-.6-.5-.3 0-.6.1-.8.2l-.1-.7c.3-.2.7-.3 1.3-.3 1 0 1.5.6 1.5 1.2-.1.6-.5.9-.7 1.3z" fill="#6e6e6e"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/room.svg b/public/assets/images/icons/grey/room.svg
index c83843da24c3834bd1943a9485a3c67ad69d1b9d..e24b9f20fe299d888a5a5d941c8e2b2d9db8dead 100644
--- a/public/assets/images/icons/grey/room.svg
+++ b/public/assets/images/icons/grey/room.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="room"><polygon points="51 37.2 44.14 37.2 44.14 43.94 9.86 43.94 9.86 9.65 44.14 9.77 44.14 16.62 51 16.62 51 2.79 3 2.79 3 50.79 51 50.79 51 37.2"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="room"><polygon points="51 37.2 44.14 37.2 44.14 43.94 9.86 43.94 9.86 9.65 44.14 9.77 44.14 16.62 51 16.62 51 2.79 3 2.79 3 50.79 51 50.79 51 37.2"/></g></svg>
diff --git a/public/assets/images/icons/grey/rotate-left.svg b/public/assets/images/icons/grey/rotate-left.svg
index 9d2b93babf252ead03558d8668d596a64f2c42d6..6dc911835a87b2f255840f431e6fff5177a0c12d 100644
--- a/public/assets/images/icons/grey/rotate-left.svg
+++ b/public/assets/images/icons/grey/rotate-left.svg
@@ -1 +1 @@
-<svg data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15 11.15L11.25.94 1 4.66l3.75 10.21L11 12.59a5.78 5.78 0 01-.23 2.18l1 .29a7.11 7.11 0 00.23-2.82zm-9.65 2.44l-3-8.33 8.33-3 3 8.33-1.87.68c-.06-.23-.11-.46-.19-.69a7.2 7.2 0 00-4.1-4.2l3-1.08-.35-.94-4.81 1.71 1.75 4.79.94-.34-1.23-3.37a6.2 6.2 0 013.86 3.74c.08.23.13.46.19.69z" fill="#6f6f6e"/></svg>
\ No newline at end of file
+<svg width="16" height="16" data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15 11.15L11.25.94 1 4.66l3.75 10.21L11 12.59a5.78 5.78 0 01-.23 2.18l1 .29a7.11 7.11 0 00.23-2.82zm-9.65 2.44l-3-8.33 8.33-3 3 8.33-1.87.68c-.06-.23-.11-.46-.19-.69a7.2 7.2 0 00-4.1-4.2l3-1.08-.35-.94-4.81 1.71 1.75 4.79.94-.34-1.23-3.37a6.2 6.2 0 013.86 3.74c.08.23.13.46.19.69z" fill="#6f6f6e"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/rotate-right.svg b/public/assets/images/icons/grey/rotate-right.svg
index 0d102cca0ef9aca72d5958e715f385fda4b25e37..230249ac05a41cd3e52afebbf42cec26bd907aa1 100644
--- a/public/assets/images/icons/grey/rotate-right.svg
+++ b/public/assets/images/icons/grey/rotate-right.svg
@@ -1 +1 @@
-<svg data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.25 14.87L15 4.66 4.75.94 1 11.15l3 1.09a7.11 7.11 0 00.24 2.82l1-.29A6 6 0 015 12.59zm-8.93-4.31l3-8.33 8.33 3-3 8.33-5.52-2c.06-.23.11-.46.19-.69a6.2 6.2 0 013.86-3.72L8 10.52l.94.34 1.75-4.79-4.84-1.74-.35.94 3 1.08a7.2 7.2 0 00-4.1 4.2c-.08.23-.13.46-.19.69z" fill="#6f6f6e"/></svg>
\ No newline at end of file
+<svg width="16" height="16" data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.25 14.87L15 4.66 4.75.94 1 11.15l3 1.09a7.11 7.11 0 00.24 2.82l1-.29A6 6 0 015 12.59zm-8.93-4.31l3-8.33 8.33 3-3 8.33-5.52-2c.06-.23.11-.46.19-.69a6.2 6.2 0 013.86-3.72L8 10.52l.94.34 1.75-4.79-4.84-1.74-.35.94 3 1.08a7.2 7.2 0 00-4.1 4.2c-.08.23-.13.46-.19.69z" fill="#6f6f6e"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/schedule.svg b/public/assets/images/icons/grey/schedule.svg
index a490243716ba9eb8d2e327c87afe3e8420a6d69f..8e1747237fc3d9ba22a0529c01b80b41c36e21ee 100644
--- a/public/assets/images/icons/grey/schedule.svg
+++ b/public/assets/images/icons/grey/schedule.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M18.68,37.5V31.66L14.35,37.5Zm18-21.06a2.83,2.83,0,0,0,2.83-2.82V5.82a2.83,2.83,0,0,0-5.65,0v7.8A2.82,2.82,0,0,0,36.73,16.44Zm-19.46,0a2.82,2.82,0,0,0,2.82-2.82V5.82a2.82,2.82,0,0,0-5.64,0v7.8A2.82,2.82,0,0,0,17.27,16.44ZM43,12.05v1.89a6.3,6.3,0,0,1-12.6,0V12.05H23.57v1.89a6.3,6.3,0,0,1-12.6,0V12.05H3V51H51V12.05ZM25.36,41.2a3.35,3.35,0,0,1-1.87.46h-.31v2a2.76,2.76,0,0,1-.6,1.93,2.13,2.13,0,0,1-1.62.7h0a2.12,2.12,0,0,1-1.64-.71,2.79,2.79,0,0,1-.61-1.92v-2H12.3A3.38,3.38,0,0,1,10,40.93a2.63,2.63,0,0,1-.83-2,1.94,1.94,0,0,1,.13-.71,3.6,3.6,0,0,1,.34-.68c.13-.2.28-.41.42-.59s.31-.41.51-.68l7.29-9.76A13.23,13.23,0,0,1,19.08,25a2.08,2.08,0,0,1,1.48-.57,2.49,2.49,0,0,1,2,.78,3.26,3.26,0,0,1,.66,2.14V37.51h.06a4.62,4.62,0,0,1,1.92.33,1.77,1.77,0,0,1,.95,1.75A1.83,1.83,0,0,1,25.36,41.2Zm16.35,4.13A2.3,2.3,0,0,1,40,46H29.8a2.71,2.71,0,0,1-1.95-.72,2.36,2.36,0,0,1-.74-1.72A4.06,4.06,0,0,1,27.53,42a5.32,5.32,0,0,1,.92-1.44q1.83-1.9,3.33-3.27a21.23,21.23,0,0,1,2.15-1.83,11.55,11.55,0,0,0,1.8-1.53,6.26,6.26,0,0,0,1.05-1.51A3.46,3.46,0,0,0,37.12,31a2.44,2.44,0,0,0-.34-1.31,2.41,2.41,0,0,0-.94-.88,3,3,0,0,0-1.32-.33,2.72,2.72,0,0,0-2.4,1.35,7.69,7.69,0,0,0-.4,1,5.19,5.19,0,0,1-.82,1.58,2,2,0,0,1-1.6.69,2.11,2.11,0,0,1-1.52-.61,2.24,2.24,0,0,1-.61-1.62,5.64,5.64,0,0,1,.47-2.18A6.06,6.06,0,0,1,29,26.62a6.83,6.83,0,0,1,2.32-1.47,8.85,8.85,0,0,1,3.25-.56,9.35,9.35,0,0,1,3.81.71A6.19,6.19,0,0,1,42,30.88,6.37,6.37,0,0,1,41,34.26a10.22,10.22,0,0,1-1.82,2.31c-.6.54-1.59,1.37-3,2.5a22.87,22.87,0,0,0-2.78,2.57h6.12a3.14,3.14,0,0,1,2,.55,2,2,0,0,1,.77,1.62A2.15,2.15,0,0,1,41.71,45.33Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M18.68,37.5V31.66L14.35,37.5Zm18-21.06a2.83,2.83,0,0,0,2.83-2.82V5.82a2.83,2.83,0,0,0-5.65,0v7.8A2.82,2.82,0,0,0,36.73,16.44Zm-19.46,0a2.82,2.82,0,0,0,2.82-2.82V5.82a2.82,2.82,0,0,0-5.64,0v7.8A2.82,2.82,0,0,0,17.27,16.44ZM43,12.05v1.89a6.3,6.3,0,0,1-12.6,0V12.05H23.57v1.89a6.3,6.3,0,0,1-12.6,0V12.05H3V51H51V12.05ZM25.36,41.2a3.35,3.35,0,0,1-1.87.46h-.31v2a2.76,2.76,0,0,1-.6,1.93,2.13,2.13,0,0,1-1.62.7h0a2.12,2.12,0,0,1-1.64-.71,2.79,2.79,0,0,1-.61-1.92v-2H12.3A3.38,3.38,0,0,1,10,40.93a2.63,2.63,0,0,1-.83-2,1.94,1.94,0,0,1,.13-.71,3.6,3.6,0,0,1,.34-.68c.13-.2.28-.41.42-.59s.31-.41.51-.68l7.29-9.76A13.23,13.23,0,0,1,19.08,25a2.08,2.08,0,0,1,1.48-.57,2.49,2.49,0,0,1,2,.78,3.26,3.26,0,0,1,.66,2.14V37.51h.06a4.62,4.62,0,0,1,1.92.33,1.77,1.77,0,0,1,.95,1.75A1.83,1.83,0,0,1,25.36,41.2Zm16.35,4.13A2.3,2.3,0,0,1,40,46H29.8a2.71,2.71,0,0,1-1.95-.72,2.36,2.36,0,0,1-.74-1.72A4.06,4.06,0,0,1,27.53,42a5.32,5.32,0,0,1,.92-1.44q1.83-1.9,3.33-3.27a21.23,21.23,0,0,1,2.15-1.83,11.55,11.55,0,0,0,1.8-1.53,6.26,6.26,0,0,0,1.05-1.51A3.46,3.46,0,0,0,37.12,31a2.44,2.44,0,0,0-.34-1.31,2.41,2.41,0,0,0-.94-.88,3,3,0,0,0-1.32-.33,2.72,2.72,0,0,0-2.4,1.35,7.69,7.69,0,0,0-.4,1,5.19,5.19,0,0,1-.82,1.58,2,2,0,0,1-1.6.69,2.11,2.11,0,0,1-1.52-.61,2.24,2.24,0,0,1-.61-1.62,5.64,5.64,0,0,1,.47-2.18A6.06,6.06,0,0,1,29,26.62a6.83,6.83,0,0,1,2.32-1.47,8.85,8.85,0,0,1,3.25-.56,9.35,9.35,0,0,1,3.81.71A6.19,6.19,0,0,1,42,30.88,6.37,6.37,0,0,1,41,34.26a10.22,10.22,0,0,1-1.82,2.31c-.6.54-1.59,1.37-3,2.5a22.87,22.87,0,0,0-2.78,2.57h6.12a3.14,3.14,0,0,1,2,.55,2,2,0,0,1,.77,1.62A2.15,2.15,0,0,1,41.71,45.33Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/schedule2.svg b/public/assets/images/icons/grey/schedule2.svg
index bb7dd47a61ed11fa4fe0c3d149917fa15dc3d3c9..e3a1695a5e5a5facd9026d6ba32edc8bc4904348 100644
--- a/public/assets/images/icons/grey/schedule2.svg
+++ b/public/assets/images/icons/grey/schedule2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><rect class="a" x="17.93" y="6.97" width="18.09" height="5"/><polygon class="a" points="40.93 6.97 40.93 11.97 46 11.97 46 45.97 8 45.97 8 11.97 13.02 11.97 13.02 6.97 3 6.97 3 50.97 51 50.97 51 6.97 40.93 6.97"/><path class="a" d="M35.47,16A2.62,2.62,0,0,0,38,13.24V5.69a2.51,2.51,0,1,0-5,0v7.55A2.63,2.63,0,0,0,35.47,16Z"/><path class="a" d="M18.52,16A2.63,2.63,0,0,0,21,13.24V5.69A2.63,2.63,0,0,0,18.52,3,2.62,2.62,0,0,0,16,5.69v7.55A2.62,2.62,0,0,0,18.52,16Z"/><path class="a" d="M20.45,36H14a1.92,1.92,0,0,1-2-2,2.77,2.77,0,0,1,.49-1.71l8-11.46A1.87,1.87,0,0,1,22.14,20c1.39,0,1.93.84,1.93,2.09V32.64h1.3a1.67,1.67,0,0,1,0,3.31h-1.3v3c0,1.22-.46,2-1.81,2s-1.81-.81-1.81-2Zm0-10.82H20.4l-5,7.51h5Z"/><path class="a" d="M40.29,36.94A1.59,1.59,0,0,1,42,38.77c0,1.3-.72,1.82-1.91,1.82h-9.7a2,2,0,0,1-2.12-2.14c0-2.06,1.63-4.36,4.86-6.65,3.6-2.55,4.84-3.07,4.84-5.42a2.72,2.72,0,0,0-2.72-2.93c-1.65,0-2.76.75-3.33,3.07-.26,1.08-.6,1.63-1.63,1.63a1.71,1.71,0,0,1-1.89-1.94c0-3.54,3.1-6.24,6.9-6.24,4.14,0,6.6,3.05,6.6,5.71,0,3.86-1.58,5.37-4.32,7.11-2.92,1.86-4.71,3.05-5,4.15Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><rect class="a" x="17.93" y="6.97" width="18.09" height="5"/><polygon class="a" points="40.93 6.97 40.93 11.97 46 11.97 46 45.97 8 45.97 8 11.97 13.02 11.97 13.02 6.97 3 6.97 3 50.97 51 50.97 51 6.97 40.93 6.97"/><path class="a" d="M35.47,16A2.62,2.62,0,0,0,38,13.24V5.69a2.51,2.51,0,1,0-5,0v7.55A2.63,2.63,0,0,0,35.47,16Z"/><path class="a" d="M18.52,16A2.63,2.63,0,0,0,21,13.24V5.69A2.63,2.63,0,0,0,18.52,3,2.62,2.62,0,0,0,16,5.69v7.55A2.62,2.62,0,0,0,18.52,16Z"/><path class="a" d="M20.45,36H14a1.92,1.92,0,0,1-2-2,2.77,2.77,0,0,1,.49-1.71l8-11.46A1.87,1.87,0,0,1,22.14,20c1.39,0,1.93.84,1.93,2.09V32.64h1.3a1.67,1.67,0,0,1,0,3.31h-1.3v3c0,1.22-.46,2-1.81,2s-1.81-.81-1.81-2Zm0-10.82H20.4l-5,7.51h5Z"/><path class="a" d="M40.29,36.94A1.59,1.59,0,0,1,42,38.77c0,1.3-.72,1.82-1.91,1.82h-9.7a2,2,0,0,1-2.12-2.14c0-2.06,1.63-4.36,4.86-6.65,3.6-2.55,4.84-3.07,4.84-5.42a2.72,2.72,0,0,0-2.72-2.93c-1.65,0-2.76.75-3.33,3.07-.26,1.08-.6,1.63-1.63,1.63a1.71,1.71,0,0,1-1.89-1.94c0-3.54,3.1-6.24,6.9-6.24,4.14,0,6.6,3.05,6.6,5.71,0,3.86-1.58,5.37-4.32,7.11-2.92,1.86-4.71,3.05-5,4.15Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/search.svg b/public/assets/images/icons/grey/search.svg
index 4d275e05a818ed72663c90cbe1a3f51d451f817b..82b6e02937e379f84846ce3921f76447b38ab99e 100644
--- a/public/assets/images/icons/grey/search.svg
+++ b/public/assets/images/icons/grey/search.svg
@@ -1 +1 @@
-<svg id="Icons_NEUES_LAYOUT_2021" data-name="Icons – NEUES LAYOUT 2021" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="search2"><path class="cls-1" d="M49.54,42.46,38,31c-.14-.13-.3-.24-.45-.36a18.54,18.54,0,1,0-7,7c.12.15.23.31.36.45l11.5,11.5a5,5,0,0,0,7.08-7.08ZM9,21.5A12.5,12.5,0,1,1,21.5,34,12.52,12.52,0,0,1,9,21.5Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="Icons_NEUES_LAYOUT_2021" data-name="Icons – NEUES LAYOUT 2021" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="search2"><path class="cls-1" d="M49.54,42.46,38,31c-.14-.13-.3-.24-.45-.36a18.54,18.54,0,1,0-7,7c.12.15.23.31.36.45l11.5,11.5a5,5,0,0,0,7.08-7.08ZM9,21.5A12.5,12.5,0,1,1,21.5,34,12.52,12.52,0,0,1,9,21.5Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/service.svg b/public/assets/images/icons/grey/service.svg
index 21f66ece942c9e072b197b5b4e31f539eca0c582..49c029c970688318084df36a294467b09e3c8347 100644
--- a/public/assets/images/icons/grey/service.svg
+++ b/public/assets/images/icons/grey/service.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/share.svg b/public/assets/images/icons/grey/share.svg
index 01603e5fc7c80623396d1acc292bbad885f41df2..7b26c7bfddd246a33c202c4089b0f8a2787127fe 100644
--- a/public/assets/images/icons/grey/share.svg
+++ b/public/assets/images/icons/grey/share.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/smiley.svg b/public/assets/images/icons/grey/smiley.svg
index e3b696c23df79d51c52c76c19da07dd01406f8b9..a3e02ed64616f7d5079fe10d0d194ae72be0daf0 100644
--- a/public/assets/images/icons/grey/smiley.svg
+++ b/public/assets/images/icons/grey/smiley.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3Zm0,45A21,21,0,1,1,48,27,21,21,0,0,1,27,48Z"/><path class="a" d="M32.24,25.23c2.18-.15,3.81-2.53,3.63-5.3s-2.11-4.91-4.3-4.77-3.82,2.53-3.63,5.3S30.05,25.37,32.24,25.23Z"/><path class="a" d="M21.26,25.83c2.18-.15,3.81-2.52,3.63-5.3s-2.11-4.91-4.3-4.76S16.77,18.29,17,21.06,19.07,26,21.26,25.83Z"/><path class="a" d="M44.25,23.67a1.5,1.5,0,1,0-3,.42,14.5,14.5,0,0,1-28.72,4.05,1.49,1.49,0,0,0-1.69-1.27A1.51,1.51,0,0,0,9.6,28.58a17.58,17.58,0,0,0,17.32,15,17,17,0,0,0,2.46-.17A17.52,17.52,0,0,0,44.25,23.67Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3Zm0,45A21,21,0,1,1,48,27,21,21,0,0,1,27,48Z"/><path class="a" d="M32.24,25.23c2.18-.15,3.81-2.53,3.63-5.3s-2.11-4.91-4.3-4.77-3.82,2.53-3.63,5.3S30.05,25.37,32.24,25.23Z"/><path class="a" d="M21.26,25.83c2.18-.15,3.81-2.52,3.63-5.3s-2.11-4.91-4.3-4.76S16.77,18.29,17,21.06,19.07,26,21.26,25.83Z"/><path class="a" d="M44.25,23.67a1.5,1.5,0,1,0-3,.42,14.5,14.5,0,0,1-28.72,4.05,1.49,1.49,0,0,0-1.69-1.27A1.51,1.51,0,0,0,9.6,28.58a17.58,17.58,0,0,0,17.32,15,17,17,0,0,0,2.46-.17A17.52,17.52,0,0,0,44.25,23.67Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/spiral.svg b/public/assets/images/icons/grey/spiral.svg
index e3f9a4955a6bad6284f2c0913bc36b500f031202..1575be6df9f1ef980cd1c7452b64f4d09ba57a11 100644
--- a/public/assets/images/icons/grey/spiral.svg
+++ b/public/assets/images/icons/grey/spiral.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="spiral"><path class="cls-1" d="M3,27A24,24,0,1,0,27,3,24,24,0,0,0,3,27ZM44.57,16.35a20.42,20.42,0,0,1-8.48,27A16.06,16.06,0,0,1,14.31,37a12.49,12.49,0,0,1,4.93-17,9.67,9.67,0,0,1,13.12,3.81A7.33,7.33,0,0,1,33,29.47a7.41,7.41,0,0,1-3.55,4.42,5.59,5.59,0,0,1-7.58-2.21,4.13,4.13,0,0,1,1.63-5.61,3,3,0,0,1,4,1.17,1.67,1.67,0,1,0,2.93-1.61,6.33,6.33,0,0,0-8.58-2.49,7.49,7.49,0,0,0-2.95,10.15,8.94,8.94,0,0,0,12.12,3.52,10.73,10.73,0,0,0,4.24-14.58A13,13,0,0,0,17.63,17.1a15.84,15.84,0,0,0-6.25,21.51,19.26,19.26,0,0,0,5.8,6.46A20.56,20.56,0,1,1,44.57,16.35Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="spiral"><path class="cls-1" d="M3,27A24,24,0,1,0,27,3,24,24,0,0,0,3,27ZM44.57,16.35a20.42,20.42,0,0,1-8.48,27A16.06,16.06,0,0,1,14.31,37a12.49,12.49,0,0,1,4.93-17,9.67,9.67,0,0,1,13.12,3.81A7.33,7.33,0,0,1,33,29.47a7.41,7.41,0,0,1-3.55,4.42,5.59,5.59,0,0,1-7.58-2.21,4.13,4.13,0,0,1,1.63-5.61,3,3,0,0,1,4,1.17,1.67,1.67,0,1,0,2.93-1.61,6.33,6.33,0,0,0-8.58-2.49,7.49,7.49,0,0,0-2.95,10.15,8.94,8.94,0,0,0,12.12,3.52,10.73,10.73,0,0,0,4.24-14.58A13,13,0,0,0,17.63,17.1a15.84,15.84,0,0,0-6.25,21.51,19.26,19.26,0,0,0,5.8,6.46A20.56,20.56,0,1,1,44.57,16.35Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/staple.svg b/public/assets/images/icons/grey/staple.svg
index 5ff8e2475951334673bd40954723e6e91fb0c4af..900682898230bcfd874524aec58710b2ace4f433 100644
--- a/public/assets/images/icons/grey/staple.svg
+++ b/public/assets/images/icons/grey/staple.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="staple"><path class="cls-1" d="M43.22,9.22a14.61,14.61,0,0,0-20.58,0L6.5,25.27l2.89,2.86,16.13-16a10.51,10.51,0,0,1,14.83,0,10.4,10.4,0,0,1,0,14.75l-16.14,16a7.24,7.24,0,0,1-10.18,0,7.16,7.16,0,0,1,0-10.13l14.13-14h0a3.93,3.93,0,0,1,5.54,0,3.88,3.88,0,0,1,0,5.5l-14.13,14,2.87,2.85,14.14-14a7.9,7.9,0,0,0,0-11.23,8,8,0,0,0-11.24,0h0L11.15,29.89a11.16,11.16,0,0,0,0,15.85,11.34,11.34,0,0,0,15.94,0l16.14-16A14.39,14.39,0,0,0,43.22,9.22Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="staple"><path class="cls-1" d="M43.22,9.22a14.61,14.61,0,0,0-20.58,0L6.5,25.27l2.89,2.86,16.13-16a10.51,10.51,0,0,1,14.83,0,10.4,10.4,0,0,1,0,14.75l-16.14,16a7.24,7.24,0,0,1-10.18,0,7.16,7.16,0,0,1,0-10.13l14.13-14h0a3.93,3.93,0,0,1,5.54,0,3.88,3.88,0,0,1,0,5.5l-14.13,14,2.87,2.85,14.14-14a7.9,7.9,0,0,0,0-11.23,8,8,0,0,0-11.24,0h0L11.15,29.89a11.16,11.16,0,0,0,0,15.85,11.34,11.34,0,0,0,15.94,0l16.14-16A14.39,14.39,0,0,0,43.22,9.22Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/star-empty.svg b/public/assets/images/icons/grey/star-empty.svg
index 1e8c276f13b4e2588d3d3e91fdaa74b31dfb6be3..5a7655af4464370d4351a45dc300a70465c51986 100755
--- a/public/assets/images/icons/grey/star-empty.svg
+++ b/public/assets/images/icons/grey/star-empty.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M10.707 9.59l4.38-3.18H9.672L8.001 1.26 6.328 6.41H.913l4.38 3.18-1.67 5.15 4.378-3.183 4.376 3.183-1.67-5.15zm-1.173-.395l2.481-1.802H8.947l-.946-2.917-.948 2.917H3.985l2.481 1.802-.946 2.918 2.481-1.803 2.479 1.803-.946-2.918z" fill="#6e6e6e"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M10.707 9.59l4.38-3.18H9.672L8.001 1.26 6.328 6.41H.913l4.38 3.18-1.67 5.15 4.378-3.183 4.376 3.183-1.67-5.15zm-1.173-.395l2.481-1.802H8.947l-.946-2.917-.948 2.917H3.985l2.481 1.802-.946 2.918 2.481-1.803 2.479 1.803-.946-2.918z" fill="#6e6e6e"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/star-halffull.svg b/public/assets/images/icons/grey/star-halffull.svg
index e2c56d73967721e3610342bebead88a30dfbe2ec..827d5ea3cfc1ef58f68fa6d199f59c473f1cedc0 100755
--- a/public/assets/images/icons/grey/star-halffull.svg
+++ b/public/assets/images/icons/grey/star-halffull.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M8 11.558L3.623 14.74l1.67-5.151-4.38-3.18h5.415L8.001 1.26l1.671 5.149h5.415l-4.38 3.18 1.67 5.151-4.376-3.183-.001.001.001-1.248 2.479 1.803-.946-2.918 2.481-1.802H8.947l-.946-2.917L8 4.478v7.08z" fill="#6e6e6e"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M8 11.558L3.623 14.74l1.67-5.151-4.38-3.18h5.415L8.001 1.26l1.671 5.149h5.415l-4.38 3.18 1.67 5.151-4.376-3.183-.001.001.001-1.248 2.479 1.803-.946-2.918 2.481-1.802H8.947l-.946-2.917L8 4.478v7.08z" fill="#6e6e6e"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/stop.svg b/public/assets/images/icons/grey/stop.svg
index f15d4e6d2ac1756ee8be8d33e9ebf5a7f328c11c..b3cb5e3681f70cc85b3df446a0edf6e3e2bc065c 100644
--- a/public/assets/images/icons/grey/stop.svg
+++ b/public/assets/images/icons/grey/stop.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><rect class="a" x="10" y="8" width="34" height="38"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><rect class="a" x="10" y="8" width="34" height="38"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/table-of-contents.svg b/public/assets/images/icons/grey/table-of-contents.svg
index 848a90142075217ff647095c6345a7adb9489324..1a3978dc53e23d7affff3ec7e25645de7f4e3abe 100644
--- a/public/assets/images/icons/grey/table-of-contents.svg
+++ b/public/assets/images/icons/grey/table-of-contents.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="table-of-contents"><rect class="cls-1" x="40.71" y="2.89" width="10.29" height="6.86"/><rect class="cls-1" x="3" y="2.89" width="30.86" height="6.86"/><rect class="cls-1" x="3" y="16.61" width="30.86" height="6.86"/><rect class="cls-1" x="13.29" y="30.32" width="20.57" height="6.86"/><rect class="cls-1" x="3" y="44.04" width="30.86" height="6.86"/><rect class="cls-1" x="40.71" y="16.61" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="30.32" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="44.04" width="10.29" height="6.86"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="table-of-contents"><rect class="cls-1" x="40.71" y="2.89" width="10.29" height="6.86"/><rect class="cls-1" x="3" y="2.89" width="30.86" height="6.86"/><rect class="cls-1" x="3" y="16.61" width="30.86" height="6.86"/><rect class="cls-1" x="13.29" y="30.32" width="20.57" height="6.86"/><rect class="cls-1" x="3" y="44.04" width="30.86" height="6.86"/><rect class="cls-1" x="40.71" y="16.61" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="30.32" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="44.04" width="10.29" height="6.86"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/test.svg b/public/assets/images/icons/grey/test.svg
index 785eb9b0d39f8e98e610114e10e7e5c44fe28912..0dd1b435eec359ab279968bab84f7ac4ff162ebb 100644
--- a/public/assets/images/icons/grey/test.svg
+++ b/public/assets/images/icons/grey/test.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="test"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><polygon class="cls-1" points="49 8.99 46.54 6.5 40.58 12.53 37.45 9.38 35 11.86 40.58 17.5 49 8.99"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="test"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><polygon class="cls-1" points="49 8.99 46.54 6.5 40.58 12.53 37.45 9.38 35 11.86 40.58 17.5 49 8.99"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/tools.svg b/public/assets/images/icons/grey/tools.svg
index a8220fea0b07fc5c07726cb0a12853150c1f6ae5..268741d0953833cae716873edebea91fbc220d2f 100644
--- a/public/assets/images/icons/grey/tools.svg
+++ b/public/assets/images/icons/grey/tools.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="tools"><path class="cls-1" d="M49.32,40.2,37.15,28,28,37.15,40.18,49.31a6.47,6.47,0,0,0,9.14-9.11Z"/><path class="cls-1" d="M26.08,16.94A11.61,11.61,0,0,0,11.28,3.51l6.35,6.36-1.84,5.72L9.86,17.64,3.5,11.27A11.63,11.63,0,0,0,16.93,26.09Z"/><g id="Edit"><polygon class="cls-1" points="3.12 50.72 8.73 48.99 4.91 45.16 3.12 50.72"/><polygon class="cls-1" points="6.53 39.85 14.02 47.39 44.34 17.21 36.85 9.67 6.53 39.85"/><path class="cls-1" d="M49.44,4.65A5.31,5.31,0,0,0,42,4.6l-3,3,7.49,7.55,3-3h0A5.31,5.31,0,0,0,49.44,4.65Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="tools"><path class="cls-1" d="M49.32,40.2,37.15,28,28,37.15,40.18,49.31a6.47,6.47,0,0,0,9.14-9.11Z"/><path class="cls-1" d="M26.08,16.94A11.61,11.61,0,0,0,11.28,3.51l6.35,6.36-1.84,5.72L9.86,17.64,3.5,11.27A11.63,11.63,0,0,0,16.93,26.09Z"/><g id="Edit"><polygon class="cls-1" points="3.12 50.72 8.73 48.99 4.91 45.16 3.12 50.72"/><polygon class="cls-1" points="6.53 39.85 14.02 47.39 44.34 17.21 36.85 9.67 6.53 39.85"/><path class="cls-1" d="M49.44,4.65A5.31,5.31,0,0,0,42,4.6l-3,3,7.49,7.55,3-3h0A5.31,5.31,0,0,0,49.44,4.65Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/topic.svg b/public/assets/images/icons/grey/topic.svg
index 3ba0db42793fe5506455904c49e26593fe398bc4..d52acf6cf120305b32cfb627224fd9ad3e880696 100644
--- a/public/assets/images/icons/grey/topic.svg
+++ b/public/assets/images/icons/grey/topic.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="topic"><path d="M42,9V48H12V9H42m3-3H9V51H45V6Z"/><rect x="20.81" y="3" width="12.09" height="8.9"/><rect x="18" y="23.81" width="17.99" height="6.06"/><rect x="18" y="32.8" width="17.99" height="6.3"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="topic"><path d="M42,9V48H12V9H42m3-3H9V51H45V6Z"/><rect x="20.81" y="3" width="12.09" height="8.9"/><rect x="18" y="23.81" width="17.99" height="6.06"/><rect x="18" y="32.8" width="17.99" height="6.3"/></g></svg>
diff --git a/public/assets/images/icons/grey/trash.svg b/public/assets/images/icons/grey/trash.svg
index 469a992d7a0f5f648e7077436ef89986f0cfbe03..c6fed7a5166e5b7c4aa90e316b0db2d960ed6462 100644
--- a/public/assets/images/icons/grey/trash.svg
+++ b/public/assets/images/icons/grey/trash.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M43,8H34.88a6.22,6.22,0,0,0-6.1-5H25.22a6.22,6.22,0,0,0-6.1,5H11a3,3,0,0,0-3,3v2H46V11A3,3,0,0,0,43,8ZM25.22,6h3.56a3.22,3.22,0,0,1,3,2H22.24A3.22,3.22,0,0,1,25.22,6Z"/><path class="a" d="M11,48a3,3,0,0,0,3,3H40a3,3,0,0,0,3-3V15H11Zm3-30H40V48H14Z"/><rect class="a" x="17" y="19.97" width="4" height="26"/><rect class="a" x="25" y="19.97" width="4" height="26"/><rect class="a" x="33" y="19.97" width="4" height="26"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M43,8H34.88a6.22,6.22,0,0,0-6.1-5H25.22a6.22,6.22,0,0,0-6.1,5H11a3,3,0,0,0-3,3v2H46V11A3,3,0,0,0,43,8ZM25.22,6h3.56a3.22,3.22,0,0,1,3,2H22.24A3.22,3.22,0,0,1,25.22,6Z"/><path class="a" d="M11,48a3,3,0,0,0,3,3H40a3,3,0,0,0,3-3V15H11Zm3-30H40V48H14Z"/><rect class="a" x="17" y="19.97" width="4" height="26"/><rect class="a" x="25" y="19.97" width="4" height="26"/><rect class="a" x="33" y="19.97" width="4" height="26"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/upload.svg b/public/assets/images/icons/grey/upload.svg
index 44e53716318bac604b0f065aa20355ce121a517d..6f3f0172532df6e5efc382031316312ec3c826d0 100644
--- a/public/assets/images/icons/grey/upload.svg
+++ b/public/assets/images/icons/grey/upload.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/upload2.svg b/public/assets/images/icons/grey/upload2.svg
index 44e53716318bac604b0f065aa20355ce121a517d..6f3f0172532df6e5efc382031316312ec3c826d0 100644
--- a/public/assets/images/icons/grey/upload2.svg
+++ b/public/assets/images/icons/grey/upload2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/vcard.svg b/public/assets/images/icons/grey/vcard.svg
index af04eb06c3f8d4e15776eb415698e941ae3618e6..d3d27be0afa27aa51a1b74ea8a651a139c008335 100644
--- a/public/assets/images/icons/grey/vcard.svg
+++ b/public/assets/images/icons/grey/vcard.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,10V44H51V10Zm8,31V36.21A1.23,1.23,0,0,1,12.24,35H23.76A1.24,1.24,0,0,1,25,36.21V41Zm37,0H28V36.21A4.24,4.24,0,0,0,23.76,32H12.24A4.24,4.24,0,0,0,8,36.21V41H6V13H48Z"/><path class="a" d="M18.1,31a7,7,0,1,0-7-7A7,7,0,0,0,18.1,31Zm0-10.91A3.91,3.91,0,1,1,14.2,24,3.92,3.92,0,0,1,18.1,20.06Z"/><rect class="a" x="31" y="17.97" width="14" height="4"/><rect class="a" x="31" y="24.97" width="14" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#6e6e6e;}</style></defs><path class="a" d="M3,10V44H51V10Zm8,31V36.21A1.23,1.23,0,0,1,12.24,35H23.76A1.24,1.24,0,0,1,25,36.21V41Zm37,0H28V36.21A4.24,4.24,0,0,0,23.76,32H12.24A4.24,4.24,0,0,0,8,36.21V41H6V13H48Z"/><path class="a" d="M18.1,31a7,7,0,1,0-7-7A7,7,0,0,0,18.1,31Zm0-10.91A3.91,3.91,0,1,1,14.2,24,3.92,3.92,0,0,1,18.1,20.06Z"/><rect class="a" x="31" y="17.97" width="14" height="4"/><rect class="a" x="31" y="24.97" width="14" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/video.svg b/public/assets/images/icons/grey/video.svg
index 856c1234922b5e483d80ecadc1d4b3154ef686ba..349f7785c6d960f0244d1815024cb29774a59da5 100644
--- a/public/assets/images/icons/grey/video.svg
+++ b/public/assets/images/icons/grey/video.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="video"><path class="cls-1" d="M48,15l-9,6V15.67A3.68,3.68,0,0,0,35.33,12H6.67A3.68,3.68,0,0,0,3,15.67V38.33A3.68,3.68,0,0,0,6.67,42H35.33A3.68,3.68,0,0,0,39,38.33V33l9,6h3V15ZM35.65,38.33a.33.33,0,0,1-.32.32H6.67a.33.33,0,0,1-.32-.32V15.67a.33.33,0,0,1,.32-.32H35.33a.33.33,0,0,1,.32.32Z"/><polygon class="cls-1" points="15 36 28.5 27 15 18 15 36"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="video"><path class="cls-1" d="M48,15l-9,6V15.67A3.68,3.68,0,0,0,35.33,12H6.67A3.68,3.68,0,0,0,3,15.67V38.33A3.68,3.68,0,0,0,6.67,42H35.33A3.68,3.68,0,0,0,39,38.33V33l9,6h3V15ZM35.65,38.33a.33.33,0,0,1-.32.32H6.67a.33.33,0,0,1-.32-.32V15.67a.33.33,0,0,1,.32-.32H35.33a.33.33,0,0,1,.32.32Z"/><polygon class="cls-1" points="15 36 28.5 27 15 18 15 36"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/video2.svg b/public/assets/images/icons/grey/video2.svg
index 7cc78f8478aa817048a3ff7f7e7e04956efd5767..ad96cebc3b047dd834bebdef32e98a2db4171783 100644
--- a/public/assets/images/icons/grey/video2.svg
+++ b/public/assets/images/icons/grey/video2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="video2"><path class="cls-1" d="M4.76,17.82,50.48,13l-.54-5.17a2.07,2.07,0,0,0-2-1.85h-.22L5.09,10.49a2.07,2.07,0,0,0-1.84,2.27l.55,5.16h0V43.79A4.2,4.2,0,0,0,8,48H46.55a4.2,4.2,0,0,0,4.21-4.21v-26Zm5.94,3.36L7.17,24.71V21.18ZM46.55,44.65H8a.86.86,0,0,1-.85-.86V27.88H8.73l6.71-6.7h3.19l-6.7,6.7h4.74l6.71-6.7h3.19l-6.71,6.7H24.6l6.71-6.7h3.2l-6.71,6.7h4.74l6.71-6.7h3.19l-6.71,6.7h4.75l6.7-6.7h.23v3l-3.74,3.73h3.74V43.79A.87.87,0,0,1,46.55,44.65Z"/><polygon class="cls-1" points="22.26 43.02 32.32 36.31 22.26 29.6 22.26 43.02"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="video2"><path class="cls-1" d="M4.76,17.82,50.48,13l-.54-5.17a2.07,2.07,0,0,0-2-1.85h-.22L5.09,10.49a2.07,2.07,0,0,0-1.84,2.27l.55,5.16h0V43.79A4.2,4.2,0,0,0,8,48H46.55a4.2,4.2,0,0,0,4.21-4.21v-26Zm5.94,3.36L7.17,24.71V21.18ZM46.55,44.65H8a.86.86,0,0,1-.85-.86V27.88H8.73l6.71-6.7h3.19l-6.7,6.7h4.74l6.71-6.7h3.19l-6.71,6.7H24.6l6.71-6.7h3.2l-6.71,6.7h4.74l6.71-6.7h3.19l-6.71,6.7h4.75l6.7-6.7h.23v3l-3.74,3.73h3.74V43.79A.87.87,0,0,1,46.55,44.65Z"/><polygon class="cls-1" points="22.26 43.02 32.32 36.31 22.26 29.6 22.26 43.02"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/visibility-checked.svg b/public/assets/images/icons/grey/visibility-checked.svg
index f96f8ca18a3b90e2ad9d41d5105da8d8371bc2b0..e0e21e7c0568103387ba57763bab34a49def9085 100644
--- a/public/assets/images/icons/grey/visibility-checked.svg
+++ b/public/assets/images/icons/grey/visibility-checked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
diff --git a/public/assets/images/icons/grey/visibility-checked2.svg b/public/assets/images/icons/grey/visibility-checked2.svg
index f96f8ca18a3b90e2ad9d41d5105da8d8371bc2b0..e0e21e7c0568103387ba57763bab34a49def9085 100644
--- a/public/assets/images/icons/grey/visibility-checked2.svg
+++ b/public/assets/images/icons/grey/visibility-checked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
diff --git a/public/assets/images/icons/grey/visibility-invisible.svg b/public/assets/images/icons/grey/visibility-invisible.svg
index 9f6fcf66e79df1396c2ef55d4451a77da7eeeeea..f655a19007507d88a09a22a9f96283dfdc1866ac 100644
--- a/public/assets/images/icons/grey/visibility-invisible.svg
+++ b/public/assets/images/icons/grey/visibility-invisible.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g></svg>
diff --git a/public/assets/images/icons/grey/visibility-visible.svg b/public/assets/images/icons/grey/visibility-visible.svg
index 05f01372c47b5bd66f550ed2b2893b81b5e07309..8df951e9fa196f1cebb6dae505cb52411f58a268 100644
--- a/public/assets/images/icons/grey/visibility-visible.svg
+++ b/public/assets/images/icons/grey/visibility-visible.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="visibility-visible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/><path d="M27,18a9.08,9.08,0,0,0-2.51.39A4.11,4.11,0,0,1,26.3,21.7a4.18,4.18,0,0,1-4.19,4.19,4.13,4.13,0,0,1-3.54-2.08A8.82,8.82,0,0,0,18,27a9,9,0,1,0,9-9Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="visibility-visible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/><path d="M27,18a9.08,9.08,0,0,0-2.51.39A4.11,4.11,0,0,1,26.3,21.7a4.18,4.18,0,0,1-4.19,4.19,4.13,4.13,0,0,1-3.54-2.08A8.82,8.82,0,0,0,18,27a9,9,0,1,0,9-9Z"/></g></svg>
diff --git a/public/assets/images/icons/grey/vote-stopped.svg b/public/assets/images/icons/grey/vote-stopped.svg
index 1a281a29d6ba1eb54d82c31bba7730df121c218f..5ebc035d7c041a677cecccbaf340f0730548d230 100644
--- a/public/assets/images/icons/grey/vote-stopped.svg
+++ b/public/assets/images/icons/grey/vote-stopped.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="vote-stopped"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><rect class="cls-1" x="-1.53" y="25.22" width="57.55" height="3" transform="translate(-10.76 23.33) rotate(-39.35)"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="vote-stopped"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><rect class="cls-1" x="-1.53" y="25.22" width="57.55" height="3" transform="translate(-10.76 23.33) rotate(-39.35)"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/vote.svg b/public/assets/images/icons/grey/vote.svg
index 1b73c4d3100a80a018c9929fc05ffd4fbf9c3128..e86302577cc3e2d1703bafe882e9e37a2226594c 100644
--- a/public/assets/images/icons/grey/vote.svg
+++ b/public/assets/images/icons/grey/vote.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="vote"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="vote"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/wiki.svg b/public/assets/images/icons/grey/wiki.svg
index 2a429ad0ffbe4a44f2435239d1f7e7afcfe6ab72..e3f3a3d77e92902c061f04c4261c4a04cb7d24fb 100644
--- a/public/assets/images/icons/grey/wiki.svg
+++ b/public/assets/images/icons/grey/wiki.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="wiki"><path class="cls-1" d="M49.83,15a15.17,15.17,0,0,1-10.17,7.9,31.41,31.41,0,0,1,3.45,11.38C46.63,32.05,53.82,25.94,49.83,15ZM4.17,15c-4,10.94,3.2,17,6.72,19.28A31.41,31.41,0,0,1,14.34,22.9,15.17,15.17,0,0,1,4.17,15ZM27,16c-7.1,0-12.85,10.31-12.85,23h25.7C39.85,26.29,34.1,16,27,16Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#6e6e6e;}</style></defs><g id="wiki"><path class="cls-1" d="M49.83,15a15.17,15.17,0,0,1-10.17,7.9,31.41,31.41,0,0,1,3.45,11.38C46.63,32.05,53.82,25.94,49.83,15ZM4.17,15c-4,10.94,3.2,17,6.72,19.28A31.41,31.41,0,0,1,14.34,22.9,15.17,15.17,0,0,1,4.17,15ZM27,16c-7.1,0-12.85,10.31-12.85,23h25.7C39.85,26.29,34.1,16,27,16Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/grey/zoom-in.svg b/public/assets/images/icons/grey/zoom-in.svg
index aacc5416718d9288eb1fbc415ec0047dab0e1334..8ba458e8620f06831e4045368e7e9732bd0a3073 100644
--- a/public/assets/images/icons/grey/zoom-in.svg
+++ b/public/assets/images/icons/grey/zoom-in.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="zoom-in"><polygon points="30.44 2.99 30.44 6.42 47.57 6.42 47.57 23.55 51 23.55 51 2.99 30.44 2.99"/><polygon points="6.44 30.41 3.02 30.41 3.02 50.97 23.58 50.97 23.58 47.54 6.44 47.54 6.44 30.41"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="zoom-in"><polygon points="30.44 2.99 30.44 6.42 47.57 6.42 47.57 23.55 51 23.55 51 2.99 30.44 2.99"/><polygon points="6.44 30.41 3.02 30.41 3.02 50.97 23.58 50.97 23.58 47.54 6.44 47.54 6.44 30.41"/></g></svg>
diff --git a/public/assets/images/icons/grey/zoom-in2.svg b/public/assets/images/icons/grey/zoom-in2.svg
index f21f0bc9665cab62232d3188cd784f0b56473eac..dfd385cb6317e2209e866795dd917deea605822e 100644
--- a/public/assets/images/icons/grey/zoom-in2.svg
+++ b/public/assets/images/icons/grey/zoom-in2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="zoom-in2"><path d="M39,15V39H15V15H39m3-3H12V42H42V12Z"/><polygon points="50.98 20.99 47.99 20.99 47.99 6 32.99 6 32.99 3 50.98 3 50.98 20.99"/><polygon points="21 50.98 3.01 50.98 3.01 32.99 6 32.99 6 47.98 21 47.98 21 50.98"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="zoom-in2"><path d="M39,15V39H15V15H39m3-3H12V42H42V12Z"/><polygon points="50.98 20.99 47.99 20.99 47.99 6 32.99 6 32.99 3 50.98 3 50.98 20.99"/><polygon points="21 50.98 3.01 50.98 3.01 32.99 6 32.99 6 47.98 21 47.98 21 50.98"/></g></svg>
diff --git a/public/assets/images/icons/grey/zoom-out.svg b/public/assets/images/icons/grey/zoom-out.svg
index 7e658f9004f37111960dfe9c26a1f76baa304bcb..ded30c642264214f23d63b51002deb14c99fc028 100644
--- a/public/assets/images/icons/grey/zoom-out.svg
+++ b/public/assets/images/icons/grey/zoom-out.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="zoom-out"><polygon points="51 23.55 30.44 23.55 30.44 2.99 33.86 2.99 33.86 20.12 51 20.12 51 23.55"/><polygon points="23.58 50.97 20.15 50.97 20.15 33.83 3.02 33.83 3.02 30.41 23.58 30.41 23.58 50.97"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="zoom-out"><polygon points="51 23.55 30.44 23.55 30.44 2.99 33.86 2.99 33.86 20.12 51 20.12 51 23.55"/><polygon points="23.58 50.97 20.15 50.97 20.15 33.83 3.02 33.83 3.02 30.41 23.58 30.41 23.58 50.97"/></g></svg>
diff --git a/public/assets/images/icons/grey/zoom-out2.svg b/public/assets/images/icons/grey/zoom-out2.svg
index 3068ebadac5c32e706e3009342b611f743b9897e..2bc287182b4b3d31ff4e1209492532d703b972e5 100644
--- a/public/assets/images/icons/grey/zoom-out2.svg
+++ b/public/assets/images/icons/grey/zoom-out2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="zoom-out2"><path d="M51,18H42V12H36V3H33v9H12V33H3v3h9v6h6v9h3V42H42V21h9ZM39,15v3H36V15ZM15,39V36h3v3Zm24,0H21V33H15V15H33v6h6Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#6e6e6e"><g id="zoom-out2"><path d="M51,18H42V12H36V3H33v9H12V33H3v3h9v6h6v9h3V42H42V21h9ZM39,15v3H36V15ZM15,39V36h3v3Zm24,0H21V33H15V15H33v6h6Z"/></g></svg>
diff --git a/public/assets/images/icons/red/accept.svg b/public/assets/images/icons/red/accept.svg
index e4876a4007334454e690f3c09724736536d3c759..361306ca01c043fc191eca183bfbfd4d37fb07af 100644
--- a/public/assets/images/icons/red/accept.svg
+++ b/public/assets/images/icons/red/accept.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/activity.svg b/public/assets/images/icons/red/activity.svg
index bbbe7f5dabb76c5a82b5d72e967ed9d7a313475d..747a5085b7078b5e07ccc8ceca04e0b3a23a688c 100644
--- a/public/assets/images/icons/red/activity.svg
+++ b/public/assets/images/icons/red/activity.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
diff --git a/public/assets/images/icons/red/add-circle-full.svg b/public/assets/images/icons/red/add-circle-full.svg
index 12722df559d986d8c2aee009f9c09b7357e7e736..d93dae67b7a0f002f94911bc36e99c177d5eb038 100644
--- a/public/assets/images/icons/red/add-circle-full.svg
+++ b/public/assets/images/icons/red/add-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/add-circle.svg b/public/assets/images/icons/red/add-circle.svg
index 12722df559d986d8c2aee009f9c09b7357e7e736..d93dae67b7a0f002f94911bc36e99c177d5eb038 100644
--- a/public/assets/images/icons/red/add-circle.svg
+++ b/public/assets/images/icons/red/add-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/add.svg b/public/assets/images/icons/red/add.svg
index 86422fb5c5ee8aa80a8773e47c3893f92ed02016..b8900dcda4161508a613573bded7e37c945642bb 100644
--- a/public/assets/images/icons/red/add.svg
+++ b/public/assets/images/icons/red/add.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/admin.svg b/public/assets/images/icons/red/admin.svg
index 69a2e225586650468df810d2015d03c899608d05..610df05c0760b658aa2b8c50fa3387031e10be2c 100644
--- a/public/assets/images/icons/red/admin.svg
+++ b/public/assets/images/icons/red/admin.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/aladdin.svg b/public/assets/images/icons/red/aladdin.svg
index b1f2ce0445dbfb27a5756d72f460c7ad55e75367..9df7b9f7ed004dabcf73b97dfb2bf32c90ae2b3c 100644
--- a/public/assets/images/icons/red/aladdin.svg
+++ b/public/assets/images/icons/red/aladdin.svg
@@ -1 +1 @@
-<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
+<svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
diff --git a/public/assets/images/icons/red/archive.svg b/public/assets/images/icons/red/archive.svg
index 281e7f7697584c9813c225f22e9bde2b241b538f..b7ac1df8f9b28541eba81a32240595f9d6dca7ad 100644
--- a/public/assets/images/icons/red/archive.svg
+++ b/public/assets/images/icons/red/archive.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
diff --git a/public/assets/images/icons/red/arr_1down.svg b/public/assets/images/icons/red/arr_1down.svg
index 40600c8fb5e78d9b20fd2c2de7e477f67d10afef..65f66efb54b1f7f70cc41d666c78094276afd8fe 100644
--- a/public/assets/images/icons/red/arr_1down.svg
+++ b/public/assets/images/icons/red/arr_1down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/arr_1left.svg b/public/assets/images/icons/red/arr_1left.svg
index fca36624fade6e445ce4e8e8bd321b561ee64685..2f859f030fb38f73cf631255288ae27b92ca53fc 100644
--- a/public/assets/images/icons/red/arr_1left.svg
+++ b/public/assets/images/icons/red/arr_1left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/arr_1right.svg b/public/assets/images/icons/red/arr_1right.svg
index 2e45797eb3d3bd0ca239b243095b19317932ccb8..4197e12718c93063cd3ce43b1ee0ecc143add552 100644
--- a/public/assets/images/icons/red/arr_1right.svg
+++ b/public/assets/images/icons/red/arr_1right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/arr_1sort.svg b/public/assets/images/icons/red/arr_1sort.svg
index b1acac1be8767239e444ee53bdf1c64fa7ade597..f2388b7697e39bbe20b2f570ca3d9487c46a2d59 100755
--- a/public/assets/images/icons/red/arr_1sort.svg
+++ b/public/assets/images/icons/red/arr_1sort.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/arr_1up.svg b/public/assets/images/icons/red/arr_1up.svg
index b19fbc675f73b5332da9044affcae225d91273fa..1540d11ccf68b640ac8df09775f81ff5df16f814 100644
--- a/public/assets/images/icons/red/arr_1up.svg
+++ b/public/assets/images/icons/red/arr_1up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/arr_2down.svg b/public/assets/images/icons/red/arr_2down.svg
index 5ec5a29bde35245ee14784738c414d3ce0cbdce1..a5305111072282554a2749f9af500cfc716b85b0 100644
--- a/public/assets/images/icons/red/arr_2down.svg
+++ b/public/assets/images/icons/red/arr_2down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/arr_2left.svg b/public/assets/images/icons/red/arr_2left.svg
index f80b6ab7e461c57e108c520a558940e32c9d4871..a33b84f7fbb857578209815f85d765dea35c6f79 100644
--- a/public/assets/images/icons/red/arr_2left.svg
+++ b/public/assets/images/icons/red/arr_2left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/arr_2right.svg b/public/assets/images/icons/red/arr_2right.svg
index eb2f9200046de3ace68333ca10cad9e0787933ca..f19de68917ec37008334d442547529825202c64d 100644
--- a/public/assets/images/icons/red/arr_2right.svg
+++ b/public/assets/images/icons/red/arr_2right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/arr_2up.svg b/public/assets/images/icons/red/arr_2up.svg
index 04c514b4a7cf3b47e5fe4c463bea56fce9fd16e7..383adbc8eba36b0a1ee816202283d9a59d154a88 100644
--- a/public/assets/images/icons/red/arr_2up.svg
+++ b/public/assets/images/icons/red/arr_2up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/arr_eol-down.svg b/public/assets/images/icons/red/arr_eol-down.svg
index 9c8ad8b3651d77517c67572769d436d4dc2fdc32..0892b8b8127855314bc474b1fed69e4d44d85fdc 100644
--- a/public/assets/images/icons/red/arr_eol-down.svg
+++ b/public/assets/images/icons/red/arr_eol-down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="47.98 10.98 37.36 10.98 26.98 21.36 16.61 10.98 5.99 10.98 26.98 31.98 47.98 10.98"/><rect class="a" x="24.51" y="19.48" width="5" height="42" transform="translate(67.5 13.47) rotate(90)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="47.98 10.98 37.36 10.98 26.98 21.36 16.61 10.98 5.99 10.98 26.98 31.98 47.98 10.98"/><rect class="a" x="24.51" y="19.48" width="5" height="42" transform="translate(67.5 13.47) rotate(90)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/arr_eol-left.svg b/public/assets/images/icons/red/arr_eol-left.svg
index 71d7f5ac717a4ab47ded18e28c687a71d3a6d1fd..57441b9f563222ec03e4223cd24a3c11d2a00e69 100644
--- a/public/assets/images/icons/red/arr_eol-left.svg
+++ b/public/assets/images/icons/red/arr_eol-left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="43 6 43 16.63 32.63 27 43 37.37 43 48 22 27 43 6"/><rect class="a" x="11" y="5.97" width="5" height="42" transform="translate(27 53.94) rotate(-180)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="43 6 43 16.63 32.63 27 43 37.37 43 48 22 27 43 6"/><rect class="a" x="11" y="5.97" width="5" height="42" transform="translate(27 53.94) rotate(-180)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/arr_eol-right.svg b/public/assets/images/icons/red/arr_eol-right.svg
index 81bb88f8d449c4550f64f3b26d46b05b0e50286b..9acb88f63010802e94791185024d42ee5b6982e4 100644
--- a/public/assets/images/icons/red/arr_eol-right.svg
+++ b/public/assets/images/icons/red/arr_eol-right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="11 6 11 16.63 21.37 27 11 37.37 11 48 32 27 11 6"/><rect class="a" x="38" y="5.97" width="5" height="42"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="11 6 11 16.63 21.37 27 11 37.37 11 48 32 27 11 6"/><rect class="a" x="38" y="5.97" width="5" height="42"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/arr_eol-up.svg b/public/assets/images/icons/red/arr_eol-up.svg
index 22b644a370bb756e46a8e9b3de990841d0179f20..2dc08f99838de0e14835ae72ec120ec2499c7f4b 100644
--- a/public/assets/images/icons/red/arr_eol-up.svg
+++ b/public/assets/images/icons/red/arr_eol-up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="6.01 42.98 16.64 42.98 27.02 32.61 37.39 42.98 48.02 42.98 27.02 21.98 6.01 42.98"/><rect class="a" x="24.48" y="-7.51" width="5" height="42" transform="translate(13.5 40.47) rotate(-90)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="6.01 42.98 16.64 42.98 27.02 32.61 37.39 42.98 48.02 42.98 27.02 21.98 6.01 42.98"/><rect class="a" x="24.48" y="-7.51" width="5" height="42" transform="translate(13.5 40.47) rotate(-90)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/audio.svg b/public/assets/images/icons/red/audio.svg
index 8acc672f60493c054367035f8343f5dc0c377508..d570684e9faa4c311de68efba3b6a5dca3bb3389 100644
--- a/public/assets/images/icons/red/audio.svg
+++ b/public/assets/images/icons/red/audio.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/audio2.svg b/public/assets/images/icons/red/audio2.svg
index 8acc672f60493c054367035f8343f5dc0c377508..d570684e9faa4c311de68efba3b6a5dca3bb3389 100644
--- a/public/assets/images/icons/red/audio2.svg
+++ b/public/assets/images/icons/red/audio2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/audio3.svg b/public/assets/images/icons/red/audio3.svg
index eaefcd6b879569be71c08c50dfa2d253e2c7871b..30556bd51199ef02636facdc56c93da24366a0d0 100644
--- a/public/assets/images/icons/red/audio3.svg
+++ b/public/assets/images/icons/red/audio3.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="audio3"><path class="cls-1" d="M40.75,10H3.17V40.72a3.42,3.42,0,0,0,3.41,3.42h41A3.42,3.42,0,0,0,51,40.72V10Zm6.4,30.31H7V13.82h6.4v6.4H40.75v-6.4h6.4Z"/><path class="cls-1" d="M35.62,23.73a5.08,5.08,0,0,0-4.84,6.74H23.35a5.11,5.11,0,1,0-5.67,3.33v.09h17a5.64,5.64,0,0,0,.93.09,5.13,5.13,0,1,0,0-10.25Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="audio3"><path class="cls-1" d="M40.75,10H3.17V40.72a3.42,3.42,0,0,0,3.41,3.42h41A3.42,3.42,0,0,0,51,40.72V10Zm6.4,30.31H7V13.82h6.4v6.4H40.75v-6.4h6.4Z"/><path class="cls-1" d="M35.62,23.73a5.08,5.08,0,0,0-4.84,6.74H23.35a5.11,5.11,0,1,0-5.67,3.33v.09h17a5.64,5.64,0,0,0,.93.09,5.13,5.13,0,1,0,0-10.25Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/block-accordion.svg b/public/assets/images/icons/red/block-accordion.svg
index 2a6be3ac8bce43bd8f9beba92d4b2f378ffcc6c9..9e6a1345c0aed1591c90432315a6607e27c2e9f5 100644
--- a/public/assets/images/icons/red/block-accordion.svg
+++ b/public/assets/images/icons/red/block-accordion.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-accordion"><path class="cls-1" d="M18,7.5v39H48V7.5Zm27,36H21v-9H45Zm0-12H21v-9H45Zm-24-12v-9H45v9Z"/><polygon class="cls-1" points="12 10.5 9 10.5 9 13.5 6 13.5 6 16.5 9 16.5 9 19.5 12 19.5 12 16.5 15 16.5 15 13.5 12 13.5 12 10.5"/><polygon class="cls-1" points="12 22.49 9 22.49 9 25.49 6 25.49 6 28.49 9 28.49 9 31.49 12 31.49 12 28.49 15 28.49 15 25.49 12 25.49 12 22.49"/><polygon class="cls-1" points="12 34.49 9 34.49 9 37.49 6 37.49 6 40.48 9 40.48 9 43.48 12 43.48 12 40.48 15 40.48 15 37.49 12 37.49 12 34.49"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-accordion"><path class="cls-1" d="M18,7.5v39H48V7.5Zm27,36H21v-9H45Zm0-12H21v-9H45Zm-24-12v-9H45v9Z"/><polygon class="cls-1" points="12 10.5 9 10.5 9 13.5 6 13.5 6 16.5 9 16.5 9 19.5 12 19.5 12 16.5 15 16.5 15 13.5 12 13.5 12 10.5"/><polygon class="cls-1" points="12 22.49 9 22.49 9 25.49 6 25.49 6 28.49 9 28.49 9 31.49 12 31.49 12 28.49 15 28.49 15 25.49 12 25.49 12 22.49"/><polygon class="cls-1" points="12 34.49 9 34.49 9 37.49 6 37.49 6 40.48 9 40.48 9 43.48 12 43.48 12 40.48 15 40.48 15 37.49 12 37.49 12 34.49"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/block-canvas.svg b/public/assets/images/icons/red/block-canvas.svg
index e81371734e4463ca4c4fa33b1d59cfd6cd254a8c..61fd39ede29d8e6cf3f5497a2eafc899826b656d 100644
--- a/public/assets/images/icons/red/block-canvas.svg
+++ b/public/assets/images/icons/red/block-canvas.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-canvas"><path class="cls-1" d="M48,8.91H6v30h31c2.48,4.54,5,8.6,5.87,8.24s0-4-1.12-8.24H48Zm-3,27H41c-1.64-5.56-3.55-11.1-3.55-11.1a3.38,3.38,0,0,0-6.28,2.52s2,4.1,4.32,8.58H9v-24H45Z"/><path class="cls-1" d="M28.29,16.91a3.29,3.29,0,0,1,.48,2.71s.05.05.07.08a2.31,2.31,0,0,0,.05.74,2.49,2.49,0,1,0,4.79-1.34A7.29,7.29,0,0,0,31,15.43c-1.84-1.26-4.83-1-4.86-.28S27.28,15.76,28.29,16.91Z"/><path class="cls-1" d="M16.33,24.14c.83-.06,1.42-1.34,1.31-2.86s-.86-2.72-1.69-2.66S14.53,20,14.64,21.48,15.5,24.2,16.33,24.14Z"/><path class="cls-1" d="M21.49,20.86c.66-.31.68-1.65.05-3S19.85,15.7,19.19,16s-.68,1.66,0,3S20.84,21.17,21.49,20.86Z"/><path class="cls-1" d="M15.47,31.66a9.41,9.41,0,0,0,6.31.26,8.64,8.64,0,0,0,4.94-4,8.5,8.5,0,0,0,.91-5.9c-1.56,3.58-3.73,6.22-6.76,7.08a10.41,10.41,0,0,1-4.77.34A16.91,16.91,0,0,1,11,27.7,8.46,8.46,0,0,0,15.47,31.66Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-canvas"><path class="cls-1" d="M48,8.91H6v30h31c2.48,4.54,5,8.6,5.87,8.24s0-4-1.12-8.24H48Zm-3,27H41c-1.64-5.56-3.55-11.1-3.55-11.1a3.38,3.38,0,0,0-6.28,2.52s2,4.1,4.32,8.58H9v-24H45Z"/><path class="cls-1" d="M28.29,16.91a3.29,3.29,0,0,1,.48,2.71s.05.05.07.08a2.31,2.31,0,0,0,.05.74,2.49,2.49,0,1,0,4.79-1.34A7.29,7.29,0,0,0,31,15.43c-1.84-1.26-4.83-1-4.86-.28S27.28,15.76,28.29,16.91Z"/><path class="cls-1" d="M16.33,24.14c.83-.06,1.42-1.34,1.31-2.86s-.86-2.72-1.69-2.66S14.53,20,14.64,21.48,15.5,24.2,16.33,24.14Z"/><path class="cls-1" d="M21.49,20.86c.66-.31.68-1.65.05-3S19.85,15.7,19.19,16s-.68,1.66,0,3S20.84,21.17,21.49,20.86Z"/><path class="cls-1" d="M15.47,31.66a9.41,9.41,0,0,0,6.31.26,8.64,8.64,0,0,0,4.94-4,8.5,8.5,0,0,0,.91-5.9c-1.56,3.58-3.73,6.22-6.76,7.08a10.41,10.41,0,0,1-4.77.34A16.91,16.91,0,0,1,11,27.7,8.46,8.46,0,0,0,15.47,31.66Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/block-comparison.svg b/public/assets/images/icons/red/block-comparison.svg
index 78098eb45a7f445130a9f99e26572401342586af..843216cca9d2356b805ece53e23c43725f4611e6 100644
--- a/public/assets/images/icons/red/block-comparison.svg
+++ b/public/assets/images/icons/red/block-comparison.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-comparison"><polygon class="cls-1" points="30.8 31 32.88 33.08 38.96 26.99 32.88 20.9 30.8 22.98 34.8 26.99 30.8 31"/><polygon class="cls-1" points="23.2 22.98 21.12 20.9 15.03 27 21.12 33.08 23.2 31 19.2 26.99 23.2 22.98"/><path class="cls-1" d="M48,12H28.5V9h-3v3H6V42H25.5v3h3V42H48ZM9,39V15H25.5V39Zm36,0H28.5V15H45Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-comparison"><polygon class="cls-1" points="30.8 31 32.88 33.08 38.96 26.99 32.88 20.9 30.8 22.98 34.8 26.99 30.8 31"/><polygon class="cls-1" points="23.2 22.98 21.12 20.9 15.03 27 21.12 33.08 23.2 31 19.2 26.99 23.2 22.98"/><path class="cls-1" d="M48,12H28.5V9h-3v3H6V42H25.5v3h3V42H48ZM9,39V15H25.5V39Zm36,0H28.5V15H45Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/block-eyecatcher.svg b/public/assets/images/icons/red/block-eyecatcher.svg
index bebb02fbe8a0aac84c15699819c2e274696bde1e..50787698aceec396dedd668f7fb04172b1512540 100644
--- a/public/assets/images/icons/red/block-eyecatcher.svg
+++ b/public/assets/images/icons/red/block-eyecatcher.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-eyecatcher"><g id="visibility-visible"><path class="cls-1" d="M27,17A20.39,20.39,0,0,1,44.57,27,20.39,20.39,0,0,1,9.43,27,20.35,20.35,0,0,1,27,17m0-3A23.36,23.36,0,0,0,6.31,26.42L6,27l.3.58a23.4,23.4,0,0,0,41.37,0L48,27l-.31-.57A23.36,23.36,0,0,0,27,14Z"/><path class="cls-1" d="M27,19.08a7.9,7.9,0,0,0-2.19.35,3.6,3.6,0,0,1,1.58,2.93A3.67,3.67,0,0,1,22.72,26a3.6,3.6,0,0,1-3.1-1.83A7.9,7.9,0,1,0,27,19.08Z"/></g><rect class="cls-1" x="6" y="5.91" width="9" height="3"/><rect class="cls-1" x="6" y="5.91" width="3" height="9"/><rect class="cls-1" x="38.99" y="5.91" width="9" height="3"/><rect class="cls-1" x="44.99" y="8.91" width="3" height="6"/><rect class="cls-1" x="44.99" y="38.89" width="3" height="9"/><rect class="cls-1" x="38.99" y="44.89" width="9" height="3"/><rect class="cls-1" x="6" y="38.89" width="3" height="9"/><rect class="cls-1" x="6" y="44.89" width="9" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-eyecatcher"><g id="visibility-visible"><path class="cls-1" d="M27,17A20.39,20.39,0,0,1,44.57,27,20.39,20.39,0,0,1,9.43,27,20.35,20.35,0,0,1,27,17m0-3A23.36,23.36,0,0,0,6.31,26.42L6,27l.3.58a23.4,23.4,0,0,0,41.37,0L48,27l-.31-.57A23.36,23.36,0,0,0,27,14Z"/><path class="cls-1" d="M27,19.08a7.9,7.9,0,0,0-2.19.35,3.6,3.6,0,0,1,1.58,2.93A3.67,3.67,0,0,1,22.72,26a3.6,3.6,0,0,1-3.1-1.83A7.9,7.9,0,1,0,27,19.08Z"/></g><rect class="cls-1" x="6" y="5.91" width="9" height="3"/><rect class="cls-1" x="6" y="5.91" width="3" height="9"/><rect class="cls-1" x="38.99" y="5.91" width="9" height="3"/><rect class="cls-1" x="44.99" y="8.91" width="3" height="6"/><rect class="cls-1" x="44.99" y="38.89" width="3" height="9"/><rect class="cls-1" x="38.99" y="44.89" width="9" height="3"/><rect class="cls-1" x="6" y="38.89" width="3" height="9"/><rect class="cls-1" x="6" y="44.89" width="9" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/block-eyecatcher2.svg b/public/assets/images/icons/red/block-eyecatcher2.svg
index 169717e4a1318d4383b96b128cbfab6671d5fbd2..624e6e9e7c5db6dc7895d067cb75a11665eba34b 100644
--- a/public/assets/images/icons/red/block-eyecatcher2.svg
+++ b/public/assets/images/icons/red/block-eyecatcher2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/block-gallery.svg b/public/assets/images/icons/red/block-gallery.svg
index 8eb54e058b3d83f859741d22380d7cc84b1cfa21..2e5b668373d23ec22a756e270567e5d527901332 100644
--- a/public/assets/images/icons/red/block-gallery.svg
+++ b/public/assets/images/icons/red/block-gallery.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-gallery"><path class="cls-1" d="M36,11.91v12H48v-12Zm9,9H39v-6h6Z"/><path class="cls-1" d="M36,38.89H48v-12H36Zm3-9h6v6H39Z"/><path class="cls-1" d="M33,11.91H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M33,26.9H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M6,23.9H18v-12H6Zm3-9h6v6H9Z"/><path class="cls-1" d="M6,38.89H18v-12H6Zm3-9h6v6H9Z"/><rect class="cls-1" x="19.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="25.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="31.5" y="41.89" width="3" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-gallery"><path class="cls-1" d="M36,11.91v12H48v-12Zm9,9H39v-6h6Z"/><path class="cls-1" d="M36,38.89H48v-12H36Zm3-9h6v6H39Z"/><path class="cls-1" d="M33,11.91H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M33,26.9H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M6,23.9H18v-12H6Zm3-9h6v6H9Z"/><path class="cls-1" d="M6,38.89H18v-12H6Zm3-9h6v6H9Z"/><rect class="cls-1" x="19.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="25.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="31.5" y="41.89" width="3" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/block-gallery2.svg b/public/assets/images/icons/red/block-gallery2.svg
index 9e986811c223ea2bc680bc3faa21ed52be29d789..fda0b418079b1741de181b1fb67f807043b4f5be 100644
--- a/public/assets/images/icons/red/block-gallery2.svg
+++ b/public/assets/images/icons/red/block-gallery2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-gallery2"><polygon class="cls-1" points="44.87 20.9 42.79 22.98 46.8 26.99 42.79 31 44.87 33.08 50.96 26.99 44.87 20.9"/><polygon class="cls-1" points="9.13 20.9 3.04 27 9.13 33.08 11.21 31 7.2 26.99 11.21 22.98 9.13 20.9"/><path class="cls-1" d="M15,38.89H39v-24H15Zm3-21H36v18H18Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-gallery2"><polygon class="cls-1" points="44.87 20.9 42.79 22.98 46.8 26.99 42.79 31 44.87 33.08 50.96 26.99 44.87 20.9"/><polygon class="cls-1" points="9.13 20.9 3.04 27 9.13 33.08 11.21 31 7.2 26.99 11.21 22.98 9.13 20.9"/><path class="cls-1" d="M15,38.89H39v-24H15Zm3-21H36v18H18Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/block-imagemap.svg b/public/assets/images/icons/red/block-imagemap.svg
index 4e588dea9898ec8fbe7ee961a2c449dada85a2cc..d302466da1ea92e2d99ba88da73acfa63d83f7d5 100644
--- a/public/assets/images/icons/red/block-imagemap.svg
+++ b/public/assets/images/icons/red/block-imagemap.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-imagemap"><rect class="cls-1" x="26.99" y="17.9" width="6" height="3"/><rect class="cls-1" x="18" y="17.9" width="6" height="3"/><rect class="cls-1" x="35.99" y="17.9" width="6" height="3"/><path class="cls-1" d="M51,17.9H48v-6H36v-3H33v3H6v6H3v3H6v21H33v3h3v-3H48v-21h3ZM45,35.05l-8.71-6.33-1.5,1.18H33v1.4l-3.33,2.61L19.9,25,9,35.09V20.9h6v-3H9v-3H33v3h3v-3h9v3h0v3h0Z"/><rect class="cls-1" x="32.99" y="20.9" width="3" height="6"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-imagemap"><rect class="cls-1" x="26.99" y="17.9" width="6" height="3"/><rect class="cls-1" x="18" y="17.9" width="6" height="3"/><rect class="cls-1" x="35.99" y="17.9" width="6" height="3"/><path class="cls-1" d="M51,17.9H48v-6H36v-3H33v3H6v6H3v3H6v21H33v3h3v-3H48v-21h3ZM45,35.05l-8.71-6.33-1.5,1.18H33v1.4l-3.33,2.61L19.9,25,9,35.09V20.9h6v-3H9v-3H33v3h3v-3h9v3h0v3h0Z"/><rect class="cls-1" x="32.99" y="20.9" width="3" height="6"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/block-imagemap2.svg b/public/assets/images/icons/red/block-imagemap2.svg
index 169717e4a1318d4383b96b128cbfab6671d5fbd2..624e6e9e7c5db6dc7895d067cb75a11665eba34b 100644
--- a/public/assets/images/icons/red/block-imagemap2.svg
+++ b/public/assets/images/icons/red/block-imagemap2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/block-tabs.svg b/public/assets/images/icons/red/block-tabs.svg
index a1f05b7d886570d885862637a516141833b2d88d..5f72b3d2fe71ce6563add45053cf7e3ec7543cea 100644
--- a/public/assets/images/icons/red/block-tabs.svg
+++ b/public/assets/images/icons/red/block-tabs.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-tabs"><path class="cls-1" d="M6,8.91v36H48v-36Zm18,3h9v6H24Zm21,30H9v-30H21v9H45Zm0-24H36v-6h9Z"/><path d="M48,8.91H6v36H48v-36Zm-12,9v-6h9v6Zm-12,0v-6h9v6Zm-15,24v-30H21v9H45v21Z"/><rect class="cls-1" x="12" y="26.9" width="29.99" height="3"/><polygon points="41.99 26.9 12 26.9 12 29.9 41.99 29.9 41.99 26.9 41.99 26.9"/><rect class="cls-1" x="12" y="32.9" width="29.99" height="3"/><polygon points="41.99 32.9 12 32.9 12 35.9 41.99 35.9 41.99 32.9 41.99 32.9"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-tabs"><path class="cls-1" d="M6,8.91v36H48v-36Zm18,3h9v6H24Zm21,30H9v-30H21v9H45Zm0-24H36v-6h9Z"/><path d="M48,8.91H6v36H48v-36Zm-12,9v-6h9v6Zm-12,0v-6h9v6Zm-15,24v-30H21v9H45v21Z"/><rect class="cls-1" x="12" y="26.9" width="29.99" height="3"/><polygon points="41.99 26.9 12 26.9 12 29.9 41.99 29.9 41.99 26.9 41.99 26.9"/><rect class="cls-1" x="12" y="32.9" width="29.99" height="3"/><polygon points="41.99 32.9 12 32.9 12 35.9 41.99 35.9 41.99 32.9 41.99 32.9"/></g></svg>
diff --git a/public/assets/images/icons/red/block-typewriter.svg b/public/assets/images/icons/red/block-typewriter.svg
index d456bc135a9b01ac536c58ccd9b026b25b942470..3e3e9ee459b1b65fa4b24a70054e59c128249be6 100644
--- a/public/assets/images/icons/red/block-typewriter.svg
+++ b/public/assets/images/icons/red/block-typewriter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-typewriter"><polygon class="cls-1" points="42.06 32.9 45.06 32.9 45.06 29.9 42.06 29.9 42.06 12 39.06 12 39.06 29.9 36.06 29.9 36.06 32.9 39.06 32.9 39.06 41.89 33.07 41.89 33.07 44.89 39.06 44.89 39.06 41.98 42.06 41.98 42.06 44.89 48.06 44.89 48.06 41.89 42.06 41.89 42.06 32.9"/><rect class="cls-1" x="33.07" y="8.91" width="6" height="3"/><rect class="cls-1" x="42.06" y="8.91" width="6" height="3"/><path class="cls-1" d="M20.8,14.91l-1-3H12v3h3.21L7,38.89H3v3H8.63a1.09,1.09,0,0,0,.76-.29,1.47,1.47,0,0,0,.41-.67l2.41-7.24H23.78l2.41,7.24a1.73,1.73,0,0,0,.43.69,1.07,1.07,0,0,0,.76.27H33v-3H29ZM13.18,30.76l4.05-12.18A25.75,25.75,0,0,0,18,15.76c.12.54.25,1,.38,1.54s.26.9.38,1.26l4,12.2Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="block-typewriter"><polygon class="cls-1" points="42.06 32.9 45.06 32.9 45.06 29.9 42.06 29.9 42.06 12 39.06 12 39.06 29.9 36.06 29.9 36.06 32.9 39.06 32.9 39.06 41.89 33.07 41.89 33.07 44.89 39.06 44.89 39.06 41.98 42.06 41.98 42.06 44.89 48.06 44.89 48.06 41.89 42.06 41.89 42.06 32.9"/><rect class="cls-1" x="33.07" y="8.91" width="6" height="3"/><rect class="cls-1" x="42.06" y="8.91" width="6" height="3"/><path class="cls-1" d="M20.8,14.91l-1-3H12v3h3.21L7,38.89H3v3H8.63a1.09,1.09,0,0,0,.76-.29,1.47,1.47,0,0,0,.41-.67l2.41-7.24H23.78l2.41,7.24a1.73,1.73,0,0,0,.43.69,1.07,1.07,0,0,0,.76.27H33v-3H29ZM13.18,30.76l4.05-12.18A25.75,25.75,0,0,0,18,15.76c.12.54.25,1,.38,1.54s.26.9.38,1.26l4,12.2Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/blubber-old.svg b/public/assets/images/icons/red/blubber-old.svg
index a910e72f30bed329ffcae6e186027106a1ba94b7..837aefea6cf67af9fecb22ffecf0241982f72108 100644
--- a/public/assets/images/icons/red/blubber-old.svg
+++ b/public/assets/images/icons/red/blubber-old.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M18,15A15,15,0,1,0,33,30,15,15,0,0,0,18,15Z"/><path class="a" d="M50.85,13.5a8.5,8.5,0,1,0-8.5,8.5A8.5,8.5,0,0,0,50.85,13.5Z"/><path class="a" d="M45,39a5,5,0,1,0,5,5A5,5,0,0,0,45,39Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M18,15A15,15,0,1,0,33,30,15,15,0,0,0,18,15Z"/><path class="a" d="M50.85,13.5a8.5,8.5,0,1,0-8.5,8.5A8.5,8.5,0,0,0,50.85,13.5Z"/><path class="a" d="M45,39a5,5,0,1,0,5,5A5,5,0,0,0,45,39Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/blubber.svg b/public/assets/images/icons/red/blubber.svg
index 3343cd5d0c4ebbca39138cf151ce8147d50e3d79..9deaaa6c013ecfbaeed172bcdaac111cb07f3095 100644
--- a/public/assets/images/icons/red/blubber.svg
+++ b/public/assets/images/icons/red/blubber.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M41,31A10,10,0,1,0,51,41,10,10,0,0,0,41,31Zm0,17a7,7,0,1,1,7-7A7,7,0,0,1,41,48Z"/><path class="a" d="M33,26.83A12,12,0,1,0,23.2,13,14.72,14.72,0,0,0,18,12,15,15,0,1,0,33,27C33,26.94,33,26.88,33,26.83ZM18,39A12,12,0,1,1,30,27,12,12,0,0,1,18,39Zm8-24.65A9,9,0,1,1,35,24a8.63,8.63,0,0,1-2.39-.34A15,15,0,0,0,26,14.35Z"/><path class="a" d="M22.21,17.06A10.71,10.71,0,0,0,18,16.2a10.87,10.87,0,0,0-9.78,6.25,1.29,1.29,0,0,0,.62,1.72,1.23,1.23,0,0,0,.55.13,1.3,1.3,0,0,0,1.18-.75A8.22,8.22,0,0,1,21.2,19.44a1.29,1.29,0,1,0,1-2.38Z"/><path class="a" d="M8.5,25.7A1.3,1.3,0,0,0,7.2,27a10.48,10.48,0,0,0,.14,1.68,1.3,1.3,0,0,0,1.27,1.1l.21,0A1.3,1.3,0,0,0,9.9,28.28,7.8,7.8,0,0,1,9.8,27,1.3,1.3,0,0,0,8.5,25.7Z"/><path class="a" d="M38.66,9.49A1.23,1.23,0,0,0,38,7.89a7.72,7.72,0,0,0-10.64,5.92,1.21,1.21,0,0,0,1,1.39l.19,0a1.21,1.21,0,0,0,1.2-1A5.33,5.33,0,0,1,35,9.72a5.23,5.23,0,0,1,2.06.42A1.23,1.23,0,0,0,38.66,9.49Z"/><path class="a" d="M43.19,35.82A5.62,5.62,0,0,0,35.37,41a6.52,6.52,0,0,0,.07.88,1.13,1.13,0,0,0,1.11.95l.18,0a1.13,1.13,0,0,0,.94-1.29,3,3,0,0,1-.05-.52A3.39,3.39,0,0,1,41,37.62a3.27,3.27,0,0,1,1.31.27,1.12,1.12,0,1,0,.88-2.07Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M41,31A10,10,0,1,0,51,41,10,10,0,0,0,41,31Zm0,17a7,7,0,1,1,7-7A7,7,0,0,1,41,48Z"/><path class="a" d="M33,26.83A12,12,0,1,0,23.2,13,14.72,14.72,0,0,0,18,12,15,15,0,1,0,33,27C33,26.94,33,26.88,33,26.83ZM18,39A12,12,0,1,1,30,27,12,12,0,0,1,18,39Zm8-24.65A9,9,0,1,1,35,24a8.63,8.63,0,0,1-2.39-.34A15,15,0,0,0,26,14.35Z"/><path class="a" d="M22.21,17.06A10.71,10.71,0,0,0,18,16.2a10.87,10.87,0,0,0-9.78,6.25,1.29,1.29,0,0,0,.62,1.72,1.23,1.23,0,0,0,.55.13,1.3,1.3,0,0,0,1.18-.75A8.22,8.22,0,0,1,21.2,19.44a1.29,1.29,0,1,0,1-2.38Z"/><path class="a" d="M8.5,25.7A1.3,1.3,0,0,0,7.2,27a10.48,10.48,0,0,0,.14,1.68,1.3,1.3,0,0,0,1.27,1.1l.21,0A1.3,1.3,0,0,0,9.9,28.28,7.8,7.8,0,0,1,9.8,27,1.3,1.3,0,0,0,8.5,25.7Z"/><path class="a" d="M38.66,9.49A1.23,1.23,0,0,0,38,7.89a7.72,7.72,0,0,0-10.64,5.92,1.21,1.21,0,0,0,1,1.39l.19,0a1.21,1.21,0,0,0,1.2-1A5.33,5.33,0,0,1,35,9.72a5.23,5.23,0,0,1,2.06.42A1.23,1.23,0,0,0,38.66,9.49Z"/><path class="a" d="M43.19,35.82A5.62,5.62,0,0,0,35.37,41a6.52,6.52,0,0,0,.07.88,1.13,1.13,0,0,0,1.11.95l.18,0a1.13,1.13,0,0,0,.94-1.29,3,3,0,0,1-.05-.52A3.39,3.39,0,0,1,41,37.62a3.27,3.27,0,0,1,1.31.27,1.12,1.12,0,1,0,.88-2.07Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/brainstorm.svg b/public/assets/images/icons/red/brainstorm.svg
index 0cb13119d93ba309714490b190e7c96b3fbe643f..f255c3d2cf156531ab04cbd2bf6134dbeb0b4361 100644
--- a/public/assets/images/icons/red/brainstorm.svg
+++ b/public/assets/images/icons/red/brainstorm.svg
@@ -1 +1 @@
-<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="Brainstorm"><path d="M28.55,25.76c-11.46-1.2-20.19-7-19.5-12.87s10.55-9.72,22-8.53a39,39,0,0,1,5.18.93,40.5,40.5,0,0,0-9.56-2.17C14.38,1.84,3.82,5.93,3.07,12.27S11.69,24.78,24,26.06a40.05,40.05,0,0,0,9.83-.14A39.25,39.25,0,0,1,28.55,25.76Z"/><path d="M25.65,6.28c11.44,1.38,20.06,7.28,19.26,13.17S34.19,29,22.75,27.63a38.62,38.62,0,0,1-5.16-1,40,40,0,0,0,9.52,2.33C39.38,30.42,50,26.5,50.88,20.18S42.49,7.53,30.22,6.05a40.49,40.49,0,0,0-9.84,0A39.6,39.6,0,0,1,25.65,6.28Z"/><path d="M28.32,38.84c-10-1-17.57-6.05-17-11.19A5.46,5.46,0,0,1,12.59,25c-.65-.25-1.39-.55-2.22-.92S9,23.41,8.46,23.13a6.42,6.42,0,0,0-2.31,4c-.64,5.51,7.5,10.89,18.2,12A35.62,35.62,0,0,0,32.9,39,35.58,35.58,0,0,1,28.32,38.84Z"/><path d="M42.91,29.36c-.8.31-1.7.63-2.47.84a23.13,23.13,0,0,1-2.53.51,4.88,4.88,0,0,1,.67,1.4c1.35,5-5.45,11-15.18,13.27a33.74,33.74,0,0,1-4.52.74,35.45,35.45,0,0,0,8.5-1C37.81,42.65,45.1,36.27,43.66,30.9A5.5,5.5,0,0,0,42.91,29.36Z"/><path d="M14.59,43a5.56,5.56,0,0,1,2.72-4.15,15.4,15.4,0,0,1-1.51-.49l-1-.39c-2.1,1.24-3.47,2.93-3.57,4.87C11,47,16.46,50.58,23.45,50.91A19.82,19.82,0,0,0,29,50.4a19.44,19.44,0,0,1-3,.12C19.51,50.21,14.39,46.83,14.59,43Z"/><path d="M42.61,29.57c-.5,0-1.75.93-2.21.9s-1.87.42-2.33.34A4.56,4.56,0,0,1,38.28,32c-.12,2.62-4.69,4.65-10.41,4.15a18.66,18.66,0,0,1-2.59-.43,11.23,11.23,0,0,0,5,1.51c6.15.52,12.38-1.67,12.69-4.84A26.14,26.14,0,0,0,42.61,29.57Z"/><path d="M29.24,8.71c-8.34-2-16.16.32-17.46,5.17A6,6,0,0,0,12.25,18c0-.11,0-.23,0-.34.81-4.73,8.05-7.55,16.16-6.32s13.77,5.88,13.24,10.51a6.36,6.36,0,0,0,.33-.7C43.28,16.25,37.58,10.7,29.24,8.71Z"/></g></svg>
+<svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="Brainstorm"><path d="M28.55,25.76c-11.46-1.2-20.19-7-19.5-12.87s10.55-9.72,22-8.53a39,39,0,0,1,5.18.93,40.5,40.5,0,0,0-9.56-2.17C14.38,1.84,3.82,5.93,3.07,12.27S11.69,24.78,24,26.06a40.05,40.05,0,0,0,9.83-.14A39.25,39.25,0,0,1,28.55,25.76Z"/><path d="M25.65,6.28c11.44,1.38,20.06,7.28,19.26,13.17S34.19,29,22.75,27.63a38.62,38.62,0,0,1-5.16-1,40,40,0,0,0,9.52,2.33C39.38,30.42,50,26.5,50.88,20.18S42.49,7.53,30.22,6.05a40.49,40.49,0,0,0-9.84,0A39.6,39.6,0,0,1,25.65,6.28Z"/><path d="M28.32,38.84c-10-1-17.57-6.05-17-11.19A5.46,5.46,0,0,1,12.59,25c-.65-.25-1.39-.55-2.22-.92S9,23.41,8.46,23.13a6.42,6.42,0,0,0-2.31,4c-.64,5.51,7.5,10.89,18.2,12A35.62,35.62,0,0,0,32.9,39,35.58,35.58,0,0,1,28.32,38.84Z"/><path d="M42.91,29.36c-.8.31-1.7.63-2.47.84a23.13,23.13,0,0,1-2.53.51,4.88,4.88,0,0,1,.67,1.4c1.35,5-5.45,11-15.18,13.27a33.74,33.74,0,0,1-4.52.74,35.45,35.45,0,0,0,8.5-1C37.81,42.65,45.1,36.27,43.66,30.9A5.5,5.5,0,0,0,42.91,29.36Z"/><path d="M14.59,43a5.56,5.56,0,0,1,2.72-4.15,15.4,15.4,0,0,1-1.51-.49l-1-.39c-2.1,1.24-3.47,2.93-3.57,4.87C11,47,16.46,50.58,23.45,50.91A19.82,19.82,0,0,0,29,50.4a19.44,19.44,0,0,1-3,.12C19.51,50.21,14.39,46.83,14.59,43Z"/><path d="M42.61,29.57c-.5,0-1.75.93-2.21.9s-1.87.42-2.33.34A4.56,4.56,0,0,1,38.28,32c-.12,2.62-4.69,4.65-10.41,4.15a18.66,18.66,0,0,1-2.59-.43,11.23,11.23,0,0,0,5,1.51c6.15.52,12.38-1.67,12.69-4.84A26.14,26.14,0,0,0,42.61,29.57Z"/><path d="M29.24,8.71c-8.34-2-16.16.32-17.46,5.17A6,6,0,0,0,12.25,18c0-.11,0-.23,0-.34.81-4.73,8.05-7.55,16.16-6.32s13.77,5.88,13.24,10.51a6.36,6.36,0,0,0,.33-.7C43.28,16.25,37.58,10.7,29.24,8.71Z"/></g></svg>
diff --git a/public/assets/images/icons/red/chat.svg b/public/assets/images/icons/red/chat.svg
index 8dbd645896e0fc6d1f12596557133a60f26cd20b..9b2fa8a754a2381562104c7628c1ae9081c08c0b 100644
--- a/public/assets/images/icons/red/chat.svg
+++ b/public/assets/images/icons/red/chat.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/chat2.svg b/public/assets/images/icons/red/chat2.svg
index 8dbd645896e0fc6d1f12596557133a60f26cd20b..9b2fa8a754a2381562104c7628c1ae9081c08c0b 100644
--- a/public/assets/images/icons/red/chat2.svg
+++ b/public/assets/images/icons/red/chat2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/check-circle.svg b/public/assets/images/icons/red/check-circle.svg
index cb2f75de8fdf21954afd2d8f3a93850fa83cb8ca..db1a6fa3af3e2511d30df8d5cb7dd303a6e0a806 100644
--- a/public/assets/images/icons/red/check-circle.svg
+++ b/public/assets/images/icons/red/check-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="check-circle"><path class="cls-1" d="M40.84,21.11,36,16.25,24.18,28,18,21.87l-4.84,4.85,11,11ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="check-circle"><path class="cls-1" d="M40.84,21.11,36,16.25,24.18,28,18,21.87l-4.84,4.85,11,11ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/clipboard.svg b/public/assets/images/icons/red/clipboard.svg
index 6ae4b24ab7355b1dc137bd29407027599e1056b4..d2f36159917481b22d0e4ab8df4f29ecd0e1c431 100644
--- a/public/assets/images/icons/red/clipboard.svg
+++ b/public/assets/images/icons/red/clipboard.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="clipboard"><path class="cls-1" d="M30,23.9v24H9v-24H30m3-3H6v30H33v-30Z"/><polygon class="cls-1" points="47.98 5.91 15 5.91 15 8.91 44.99 8.91 44.99 38.9 47.98 38.9 47.98 5.91 47.98 5.91"/><polygon class="cls-1" points="26.99 14.91 26.99 17.9 33.71 17.9 23.87 27.74 25.99 29.86 35.99 19.86 35.99 26.9 38.99 26.9 38.99 14.91 26.99 14.91"/><rect class="cls-1" x="27" y="3.05" width="8.99" height="5.86"/><rect class="cls-1" x="10.5" y="10.41" width="11.99" height="3" transform="translate(28.41 -4.59) rotate(90)"/><rect class="cls-1" x="35.99" y="38.89" width="11.99" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="clipboard"><path class="cls-1" d="M30,23.9v24H9v-24H30m3-3H6v30H33v-30Z"/><polygon class="cls-1" points="47.98 5.91 15 5.91 15 8.91 44.99 8.91 44.99 38.9 47.98 38.9 47.98 5.91 47.98 5.91"/><polygon class="cls-1" points="26.99 14.91 26.99 17.9 33.71 17.9 23.87 27.74 25.99 29.86 35.99 19.86 35.99 26.9 38.99 26.9 38.99 14.91 26.99 14.91"/><rect class="cls-1" x="27" y="3.05" width="8.99" height="5.86"/><rect class="cls-1" x="10.5" y="10.41" width="11.99" height="3" transform="translate(28.41 -4.59) rotate(90)"/><rect class="cls-1" x="35.99" y="38.89" width="11.99" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/cloud.svg b/public/assets/images/icons/red/cloud.svg
index 48846ca9f1248805f8527055094a2caeaccc44f3..07e2b67db946dfe2a81479a689a2f699d64dc2d6 100644
--- a/public/assets/images/icons/red/cloud.svg
+++ b/public/assets/images/icons/red/cloud.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><path id="cloud" d="M33.61,16.51a8.1,8.1,0,0,1,8.15,7.94l.06,2.31,2.23.54a5.15,5.15,0,0,1,3.94,5v.17a5.17,5.17,0,0,1-5.15,5H12.08a6.08,6.08,0,0,1,0-12.16,6.9,6.9,0,0,1,1.09.1l4.11.74L16.68,22a2.32,2.32,0,0,1,0-.46,3.26,3.26,0,0,1,5.84-2l2.35,3,2.39-3a8.1,8.1,0,0,1,6.39-3.1m0-3a11.14,11.14,0,0,0-8.76,4.25,6.26,6.26,0,0,0-11.21,3.83,6.44,6.44,0,0,0,.06.89,9.66,9.66,0,0,0-1.62-.14,9.09,9.09,0,0,0,0,18.17H42.84A8.18,8.18,0,0,0,51,32.32h0a8.17,8.17,0,0,0-6.24-7.94A11.16,11.16,0,0,0,33.61,13.5Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><path id="cloud" d="M33.61,16.51a8.1,8.1,0,0,1,8.15,7.94l.06,2.31,2.23.54a5.15,5.15,0,0,1,3.94,5v.17a5.17,5.17,0,0,1-5.15,5H12.08a6.08,6.08,0,0,1,0-12.16,6.9,6.9,0,0,1,1.09.1l4.11.74L16.68,22a2.32,2.32,0,0,1,0-.46,3.26,3.26,0,0,1,5.84-2l2.35,3,2.39-3a8.1,8.1,0,0,1,6.39-3.1m0-3a11.14,11.14,0,0,0-8.76,4.25,6.26,6.26,0,0,0-11.21,3.83,6.44,6.44,0,0,0,.06.89,9.66,9.66,0,0,0-1.62-.14,9.09,9.09,0,0,0,0,18.17H42.84A8.18,8.18,0,0,0,51,32.32h0a8.17,8.17,0,0,0-6.24-7.94A11.16,11.16,0,0,0,33.61,13.5Z"/></svg>
diff --git a/public/assets/images/icons/red/comment.svg b/public/assets/images/icons/red/comment.svg
index 6f8f2b0127edeb1be860663e3ef3ad1ba5444766..cb21bbd09e5248ce83bbb2b6fbf4a52cdeaf2ebd 100644
--- a/public/assets/images/icons/red/comment.svg
+++ b/public/assets/images/icons/red/comment.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="comment"><path class="cls-1" d="M37.91,6.8A6.3,6.3,0,0,0,29.47,9l-1,1.72L26.9,13.27,13,36.47,13.13,48,23.7,42.42,37.6,19.23l1.54-2.58,1-1.72A5.83,5.83,0,0,0,37.91,6.8ZM21.46,40.21l-1.95,1-3.39-1.89,0-2.1L29.57,14.76l5.35,3Zm9.66-28,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06l-1,1.72Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="comment"><path class="cls-1" d="M37.91,6.8A6.3,6.3,0,0,0,29.47,9l-1,1.72L26.9,13.27,13,36.47,13.13,48,23.7,42.42,37.6,19.23l1.54-2.58,1-1.72A5.83,5.83,0,0,0,37.91,6.8ZM21.46,40.21l-1.95,1-3.39-1.89,0-2.1L29.57,14.76l5.35,3Zm9.66-28,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06l-1,1.72Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/comment2.svg b/public/assets/images/icons/red/comment2.svg
index 26e6ce211ba2b85d3a96bc67646561d256fa308b..7214b3a7d37b0298388f0d0e1ec7c8dd7164d5aa 100644
--- a/public/assets/images/icons/red/comment2.svg
+++ b/public/assets/images/icons/red/comment2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="comment"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="comment"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/community.svg b/public/assets/images/icons/red/community.svg
index 949b0f57325a86d8e4b712fd88f3e83bb6966234..6a77472319793717f6af9e5c4d6b8e926109eca3 100644
--- a/public/assets/images/icons/red/community.svg
+++ b/public/assets/images/icons/red/community.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M37,25a9,9,0,1,0-9-9A9,9,0,0,0,37,25Z"/><path class="a" d="M17,25a9,9,0,1,0-9-9A9,9,0,0,0,17,25Z"/><path class="a" d="M44.79,29H29.2a6.21,6.21,0,0,0-6.2,6.2V48H51V35.17A6.21,6.21,0,0,0,44.79,29Z"/><path class="a" d="M3,35.17V48H20V35.17A9.11,9.11,0,0,1,22.43,29H9.2A6.21,6.21,0,0,0,3,35.17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M37,25a9,9,0,1,0-9-9A9,9,0,0,0,37,25Z"/><path class="a" d="M17,25a9,9,0,1,0-9-9A9,9,0,0,0,17,25Z"/><path class="a" d="M44.79,29H29.2a6.21,6.21,0,0,0-6.2,6.2V48H51V35.17A6.21,6.21,0,0,0,44.79,29Z"/><path class="a" d="M3,35.17V48H20V35.17A9.11,9.11,0,0,1,22.43,29H9.2A6.21,6.21,0,0,0,3,35.17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/community2.svg b/public/assets/images/icons/red/community2.svg
index 744b161b5d3d0e8adebb87ee14a3df05743da8f0..b3ff2a3187e51338f6210ef7268f3c02141a4b4e 100644
--- a/public/assets/images/icons/red/community2.svg
+++ b/public/assets/images/icons/red/community2.svg
@@ -1 +1 @@
-<svg id="Icons" data-name="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="community2"><path d="M23,15a12.86,12.86,0,0,1,2.09-7,10,10,0,1,0,0,14.08A12.86,12.86,0,0,1,23,15Zm-5,4a4,4,0,1,1,4-4A4,4,0,0,1,18,19Z"/><path d="M36,25A10,10,0,1,1,46,15,10,10,0,0,1,36,25Zm0-14a4,4,0,1,0,4,4A4,4,0,0,0,36,11Z"/><path d="M9,43V36a2,2,0,0,1,2-2h5c0-2,2-6,5-6H11a8,8,0,0,0-8,8V49H16V43Z"/><path d="M51,49H19V36a8,8,0,0,1,8-8H43a8,8,0,0,1,8,8ZM25,43H45V36a2,2,0,0,0-2-2H27a2,2,0,0,0-2,2Z"/></g></svg>
+<svg width="16" height="16" id="Icons" data-name="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="community2"><path d="M23,15a12.86,12.86,0,0,1,2.09-7,10,10,0,1,0,0,14.08A12.86,12.86,0,0,1,23,15Zm-5,4a4,4,0,1,1,4-4A4,4,0,0,1,18,19Z"/><path d="M36,25A10,10,0,1,1,46,15,10,10,0,0,1,36,25Zm0-14a4,4,0,1,0,4,4A4,4,0,0,0,36,11Z"/><path d="M9,43V36a2,2,0,0,1,2-2h5c0-2,2-6,5-6H11a8,8,0,0,0-8,8V49H16V43Z"/><path d="M51,49H19V36a8,8,0,0,1,8-8H43a8,8,0,0,1,8,8ZM25,43H45V36a2,2,0,0,0-2-2H27a2,2,0,0,0-2,2Z"/></g></svg>
diff --git a/public/assets/images/icons/red/content.svg b/public/assets/images/icons/red/content.svg
index 2f1d5c6cf33bf54438cfe0b7ebbddcd717461df5..16dd23738a8100ba331f31299bdceb52a1b8b9bc 100644
--- a/public/assets/images/icons/red/content.svg
+++ b/public/assets/images/icons/red/content.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M44.94,9a6.44,6.44,0,0,1-.87,3.82L43.37,14H46V42H8V14H28L30.67,9.5,31,9H3V47H51V9Z"/><polygon class="a" points="26.26 16.97 10.96 16.97 10.96 38.97 20.08 38.97 20.06 36.99 19.96 28.21 19.96 27.65 20.24 27.17 26.26 16.97"/><polygon class="a" points="31.71 33.74 31.43 34.22 30.93 34.48 23.01 38.73 22.56 38.97 42.96 38.97 42.96 16.97 41.6 16.97 31.71 33.74"/><path class="a" d="M22.06,37,30,32.72,40.41,15.05l1.16-2,.77-1.31a4.48,4.48,0,0,0-1.69-6.19,4.69,4.69,0,0,0-6.33,1.66l-.77,1.31-1.16,2L22,28.19ZM36.32,8.37a2.36,2.36,0,0,1,3.17-.83,2.25,2.25,0,0,1,.85,3.1L39.56,12l-4-2.27Zm-1.93,3.28,4,2.26L28.31,31l-1.46.78L24.3,30.38v-1.6Z"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M44.94,9a6.44,6.44,0,0,1-.87,3.82L43.37,14H46V42H8V14H28L30.67,9.5,31,9H3V47H51V9Z"/><polygon class="a" points="26.26 16.97 10.96 16.97 10.96 38.97 20.08 38.97 20.06 36.99 19.96 28.21 19.96 27.65 20.24 27.17 26.26 16.97"/><polygon class="a" points="31.71 33.74 31.43 34.22 30.93 34.48 23.01 38.73 22.56 38.97 42.96 38.97 42.96 16.97 41.6 16.97 31.71 33.74"/><path class="a" d="M22.06,37,30,32.72,40.41,15.05l1.16-2,.77-1.31a4.48,4.48,0,0,0-1.69-6.19,4.69,4.69,0,0,0-6.33,1.66l-.77,1.31-1.16,2L22,28.19ZM36.32,8.37a2.36,2.36,0,0,1,3.17-.83,2.25,2.25,0,0,1,.85,3.1L39.56,12l-4-2.27Zm-1.93,3.28,4,2.26L28.31,31l-1.46.78L24.3,30.38v-1.6Z"/></svg>
diff --git a/public/assets/images/icons/red/courseware.svg b/public/assets/images/icons/red/courseware.svg
index 0df3627bf22e427c170c23a64c1d3da940e7374f..7a45010679b10123c8fe48cdfb3d1b08cb12e123 100644
--- a/public/assets/images/icons/red/courseware.svg
+++ b/public/assets/images/icons/red/courseware.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="courseware"><polygon class="cls-1" points="30.85 9.37 27 6 23.14 9.37 27 11.16 30.85 9.37"/><polygon class="cls-1" points="37.56 15.24 33.71 11.87 27 15.22 20.28 11.87 16.43 15.24 27.05 21.56 37.56 15.24"/><polygon class="cls-1" points="44.27 21.12 40.42 17.75 27.05 26.97 13.57 17.75 9.72 21.12 27.05 34.5 44.27 21.12"/><polygon class="cls-1" points="47.13 23.62 27.05 40.33 6.86 23.62 3.01 26.99 27 47.98 50.98 26.99 47.13 23.62"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="courseware"><polygon class="cls-1" points="30.85 9.37 27 6 23.14 9.37 27 11.16 30.85 9.37"/><polygon class="cls-1" points="37.56 15.24 33.71 11.87 27 15.22 20.28 11.87 16.43 15.24 27.05 21.56 37.56 15.24"/><polygon class="cls-1" points="44.27 21.12 40.42 17.75 27.05 26.97 13.57 17.75 9.72 21.12 27.05 34.5 44.27 21.12"/><polygon class="cls-1" points="47.13 23.62 27.05 40.33 6.86 23.62 3.01 26.99 27 47.98 50.98 26.99 47.13 23.62"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/crop.svg b/public/assets/images/icons/red/crop.svg
index e8d1746173113a69b6c917fe555cfa23ea6e1857..f3cd98da4177148c567d2c9c8dfbc3b268717fca 100644
--- a/public/assets/images/icons/red/crop.svg
+++ b/public/assets/images/icons/red/crop.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="crop"><path d="M3,3V51H51V3ZM48,33h-4.5v2.9H48V48H35.94v-4.5H33V48H6v-12H10.5V33H6V6H33v4.5h2.9V6H48Z"/><rect x="16" y="33.04" width="8.25" height="2.9"/><polygon points="35.94 29.74 33.04 29.74 33.04 33.04 29.75 33.04 29.75 35.94 33.04 35.94 33.04 37.99 35.94 37.99 35.94 35.94 37.99 35.94 37.99 33.04 35.94 33.04 35.94 29.74"/><rect x="33.04" y="16" width="2.9" height="8.25"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="crop"><path d="M3,3V51H51V3ZM48,33h-4.5v2.9H48V48H35.94v-4.5H33V48H6v-12H10.5V33H6V6H33v4.5h2.9V6H48Z"/><rect x="16" y="33.04" width="8.25" height="2.9"/><polygon points="35.94 29.74 33.04 29.74 33.04 33.04 29.75 33.04 29.75 35.94 33.04 35.94 33.04 37.99 35.94 37.99 35.94 35.94 37.99 35.94 37.99 33.04 35.94 33.04 35.94 29.74"/><rect x="33.04" y="16" width="2.9" height="8.25"/></g></svg>
diff --git a/public/assets/images/icons/red/crown.svg b/public/assets/images/icons/red/crown.svg
index c3e8c1760b9b9a0f1438e224b000afe3b14786d3..e1270f63e75e248b38a346fbc4f7cb448a25c219 100644
--- a/public/assets/images/icons/red/crown.svg
+++ b/public/assets/images/icons/red/crown.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="crown"><path class="cls-1" d="M48,17a3,3,0,0,0-3,3,3,3,0,0,0,.31,1.31L37,26.53,29.88,14.76a4,4,0,1,0-5.76,0L17,26.53,8.21,21A2.94,2.94,0,0,0,9,19a3,3,0,1,0-3.23,3L12,46H42l6-23h0a3,3,0,0,0,0-6ZM14.32,43l-.78-3H40.46l-.78,3Zm26.92-6H12.76l-3-11.42,5.61,3.52L18,30.69l1.58-2.61L26.88,16h.24l7.31,12.09L36,30.69l2.59-1.62,5.6-3.52Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="crown"><path class="cls-1" d="M48,17a3,3,0,0,0-3,3,3,3,0,0,0,.31,1.31L37,26.53,29.88,14.76a4,4,0,1,0-5.76,0L17,26.53,8.21,21A2.94,2.94,0,0,0,9,19a3,3,0,1,0-3.23,3L12,46H42l6-23h0a3,3,0,0,0,0-6ZM14.32,43l-.78-3H40.46l-.78,3Zm26.92-6H12.76l-3-11.42,5.61,3.52L18,30.69l1.58-2.61L26.88,16h.24l7.31,12.09L36,30.69l2.59-1.62,5.6-3.52Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/date-block.svg b/public/assets/images/icons/red/date-block.svg
index bd3d832ea7f6eb088946342e9f995b90ac9f4bfd..d38248a3e95258ca41d431becdad090da9b51e41 100644
--- a/public/assets/images/icons/red/date-block.svg
+++ b/public/assets/images/icons/red/date-block.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="date-block"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM6.77,27A14.86,14.86,0,1,1,21.63,41.84,14.88,14.88,0,0,1,6.77,27Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="date-block"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM6.77,27A14.86,14.86,0,1,1,21.63,41.84,14.88,14.88,0,0,1,6.77,27Z"/></g></svg>
diff --git a/public/assets/images/icons/red/date-cycle.svg b/public/assets/images/icons/red/date-cycle.svg
index bf99c5f474870e1cee7807e5324996a45ab10043..a93d8fa5268ae5bf26fc2a9d815582763b9db471 100644
--- a/public/assets/images/icons/red/date-cycle.svg
+++ b/public/assets/images/icons/red/date-cycle.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="date-cycle"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM21.63,41.84A14.85,14.85,0,1,1,36.48,27,14.88,14.88,0,0,1,21.63,41.84Zm11.23,0a18.58,18.58,0,0,0,0-29.66,14.84,14.84,0,0,1,0,29.66Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="date-cycle"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM21.63,41.84A14.85,14.85,0,1,1,36.48,27,14.88,14.88,0,0,1,21.63,41.84Zm11.23,0a18.58,18.58,0,0,0,0-29.66,14.84,14.84,0,0,1,0,29.66Z"/></g></svg>
diff --git a/public/assets/images/icons/red/date-single.svg b/public/assets/images/icons/red/date-single.svg
index 00b0736fe9117158b29498552b188bf104926d88..5bd494d58acfc20372268baa8977b0dd2541cdbe 100644
--- a/public/assets/images/icons/red/date-single.svg
+++ b/public/assets/images/icons/red/date-single.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="date-single"><path d="M27,8.37A18.62,18.62,0,1,0,45.62,27,18.63,18.63,0,0,0,27,8.37Zm0,33.47A14.85,14.85,0,1,1,41.85,27,14.86,14.86,0,0,1,27,41.84Z"/><polygon points="24.25 14.45 24.25 26 17.1 30.16 19.93 35.12 29.91 29.33 29.97 29.33 29.96 14.45 24.25 14.45"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="date-single"><path d="M27,8.37A18.62,18.62,0,1,0,45.62,27,18.63,18.63,0,0,0,27,8.37Zm0,33.47A14.85,14.85,0,1,1,41.85,27,14.86,14.86,0,0,1,27,41.84Z"/><polygon points="24.25 14.45 24.25 26 17.1 30.16 19.93 35.12 29.91 29.33 29.97 29.33 29.96 14.45 24.25 14.45"/></g></svg>
diff --git a/public/assets/images/icons/red/decline-circle.svg b/public/assets/images/icons/red/decline-circle.svg
index 7305921e9035009d3c9e5107b71c8c616d61eae1..440528b942414cbc208aa1363a718460f4b87174 100644
--- a/public/assets/images/icons/red/decline-circle.svg
+++ b/public/assets/images/icons/red/decline-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="decline-circle"><path class="cls-1" d="M38.68,34l-7-7,7-7-4.94-5-7,7-7-7L14.75,20l7,7-7,7L19.7,39l7-7,7,7ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="decline-circle"><path class="cls-1" d="M38.68,34l-7-7,7-7-4.94-5-7,7-7-7L14.75,20l7,7-7,7L19.7,39l7-7,7,7ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/decline.svg b/public/assets/images/icons/red/decline.svg
index 7bfffadba364521c43d43cb99b4b479b3ed2584b..0b54e85c741b82242b032c8d2decb4300f36a389 100644
--- a/public/assets/images/icons/red/decline.svg
+++ b/public/assets/images/icons/red/decline.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="decline"><polygon id="decline-2" data-name="decline" class="cls-1" points="47.32 38.91 35.4 26.99 47.32 15.07 38.93 6.67 27 18.59 15.07 6.67 6.68 15.06 18.61 26.98 6.67 38.91 15.08 47.32 27.01 35.39 38.93 47.31 47.32 38.91"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="decline"><polygon id="decline-2" data-name="decline" class="cls-1" points="47.32 38.91 35.4 26.99 47.32 15.07 38.93 6.67 27 18.59 15.07 6.67 6.68 15.06 18.61 26.98 6.67 38.91 15.08 47.32 27.01 35.39 38.93 47.31 47.32 38.91"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/door-enter.svg b/public/assets/images/icons/red/door-enter.svg
index a6ad180aa92c42a17670aba6e74159681e220851..5174028fe89df6d9e8d9ee085ef302e58a3d427a 100644
--- a/public/assets/images/icons/red/door-enter.svg
+++ b/public/assets/images/icons/red/door-enter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="door-enter"><path class="cls-1" d="M22,3V45h3V6H37L29,8V51l20-6V3Zm10,7.34,14-3.5V42.74l-14,4.2Z"/><polygon class="cls-1" points="5 13 5 20.09 11.91 27 5 33.91 5 41 19 27 5 13"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="door-enter"><path class="cls-1" d="M22,3V45h3V6H37L29,8V51l20-6V3Zm10,7.34,14-3.5V42.74l-14,4.2Z"/><polygon class="cls-1" points="5 13 5 20.09 11.91 27 5 33.91 5 41 19 27 5 13"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/door-leave.svg b/public/assets/images/icons/red/door-leave.svg
index 24580e43bc1ba92969cfd175f5fb7cbc038fca58..2bd7266079d9d291e69415045c1ba865058217f5 100644
--- a/public/assets/images/icons/red/door-leave.svg
+++ b/public/assets/images/icons/red/door-leave.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="door-leave"><path class="cls-1" d="M5,45l20,6V8L17,6H29V45h3V3H5Zm3-3V6.81l14,3.5V46.94L8,42.74Z"/><polygon class="cls-1" points="35 13 35 20.09 41.91 27 35 33.91 35 41 49 27 35 13"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="door-leave"><path class="cls-1" d="M5,45l20,6V8L17,6H29V45h3V3H5Zm3-3V6.81l14,3.5V46.94L8,42.74Z"/><polygon class="cls-1" points="35 13 35 20.09 41.91 27 35 33.91 35 41 49 27 35 13"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/download.svg b/public/assets/images/icons/red/download.svg
index f7cf06f71a9a2a6c71b1da8eb459d0e431b20746..8a3ad75079d8ffe52e51de581ce4251a3a308dc9 100644
--- a/public/assets/images/icons/red/download.svg
+++ b/public/assets/images/icons/red/download.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/download2.svg b/public/assets/images/icons/red/download2.svg
index f7cf06f71a9a2a6c71b1da8eb459d0e431b20746..8a3ad75079d8ffe52e51de581ce4251a3a308dc9 100644
--- a/public/assets/images/icons/red/download2.svg
+++ b/public/assets/images/icons/red/download2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/edit.svg b/public/assets/images/icons/red/edit.svg
index ca78bc7439ff95d028d978da8be9cf9b475e9f53..0e3d609b81c12a59bdce889d34052c1b18c83408 100644
--- a/public/assets/images/icons/red/edit.svg
+++ b/public/assets/images/icons/red/edit.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/exclaim-circle-full.svg b/public/assets/images/icons/red/exclaim-circle-full.svg
index 328598ebf1ada2f73f94f0c3ac48e60ae81fae28..67ec6e2c398ac637e490940580950a9242c1eaea 100644
--- a/public/assets/images/icons/red/exclaim-circle-full.svg
+++ b/public/assets/images/icons/red/exclaim-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/exclaim-circle.svg b/public/assets/images/icons/red/exclaim-circle.svg
index 328598ebf1ada2f73f94f0c3ac48e60ae81fae28..67ec6e2c398ac637e490940580950a9242c1eaea 100644
--- a/public/assets/images/icons/red/exclaim-circle.svg
+++ b/public/assets/images/icons/red/exclaim-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/export.svg b/public/assets/images/icons/red/export.svg
index 8ec40bc4fa177711aa6f7c487aeab7a3985d7bc4..8695d9ced0d2c7908ba95663aa1bc7cab0c29691 100644
--- a/public/assets/images/icons/red/export.svg
+++ b/public/assets/images/icons/red/export.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-archive.svg b/public/assets/images/icons/red/file-archive.svg
index bf246bad97e7d0e181dff7d32338410e0680861a..3bd881880560543d475c7f1ff97328f82a467dfa 100644
--- a/public/assets/images/icons/red/file-archive.svg
+++ b/public/assets/images/icons/red/file-archive.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><rect class="a" x="27" y="14.97" width="3" height="3"/><rect class="a" x="27" y="20.97" width="3" height="3"/><rect class="a" x="24" y="23.97" width="3" height="3"/><rect class="a" x="27" y="26.97" width="3" height="3"/><rect class="a" x="27" y="32.97" width="3" height="3"/><rect class="a" x="24" y="29.97" width="3" height="3"/><rect class="a" x="24" y="35.97" width="3" height="3"/><rect class="a" x="27" y="38.97" width="3" height="3"/><rect class="a" x="24" y="41.97" width="3" height="3"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm16.45,8.13A1.44,1.44,0,0,1,24,9.65,1.42,1.42,0,0,1,25.24,9h.2a1.42,1.42,0,0,1,.51.18A1.45,1.45,0,0,1,26.45,11.13ZM35,46.71V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-2,2.81V45H27v2.94H13.09V6.1H23.93v2a2.65,2.65,0,0,0-.69.56h0l-3.5,4h0a3.81,3.81,0,0,0-.37.5,3.56,3.56,0,0,0,1.23,4.88,3.49,3.49,0,0,0,3.4.07V21h3V18H24.4a3.55,3.55,0,0,0,1.08-1.1,3.67,3.67,0,0,0,.27-.57h0L26.26,15H27V13c.12-.3.24-.63.4-1H30V6.1H40.91Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><rect class="a" x="27" y="14.97" width="3" height="3"/><rect class="a" x="27" y="20.97" width="3" height="3"/><rect class="a" x="24" y="23.97" width="3" height="3"/><rect class="a" x="27" y="26.97" width="3" height="3"/><rect class="a" x="27" y="32.97" width="3" height="3"/><rect class="a" x="24" y="29.97" width="3" height="3"/><rect class="a" x="24" y="35.97" width="3" height="3"/><rect class="a" x="27" y="38.97" width="3" height="3"/><rect class="a" x="24" y="41.97" width="3" height="3"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm16.45,8.13A1.44,1.44,0,0,1,24,9.65,1.42,1.42,0,0,1,25.24,9h.2a1.42,1.42,0,0,1,.51.18A1.45,1.45,0,0,1,26.45,11.13ZM35,46.71V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-2,2.81V45H27v2.94H13.09V6.1H23.93v2a2.65,2.65,0,0,0-.69.56h0l-3.5,4h0a3.81,3.81,0,0,0-.37.5,3.56,3.56,0,0,0,1.23,4.88,3.49,3.49,0,0,0,3.4.07V21h3V18H24.4a3.55,3.55,0,0,0,1.08-1.1,3.67,3.67,0,0,0,.27-.57h0L26.26,15H27V13c.12-.3.24-.63.4-1H30V6.1H40.91Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-audio.svg b/public/assets/images/icons/red/file-audio.svg
index 5ef23f6fcc4d3ea836ce123678f4aaf7f4685fc7..a76a8c51ebd94bd444ba2e0fc607e03cb70c3414 100644
--- a/public/assets/images/icons/red/file-audio.svg
+++ b/public/assets/images/icons/red/file-audio.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="19.14 17.91 16 17.91 16 24.19 19.14 24.19 23.86 27.34 25.43 27.34 25.43 14.76 23.86 14.76 19.14 17.91"/><path class="a" d="M29.73,13.68l-2.06,2.06a7.4,7.4,0,0,1,0,10.46l2.06,2.06A10.3,10.3,0,0,0,29.73,13.68Z"/><path class="a" d="M33.44,10,31.38,12a12.63,12.63,0,0,1,0,17.88L33.44,32A15.55,15.55,0,0,0,33.44,10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="19.14 17.91 16 17.91 16 24.19 19.14 24.19 23.86 27.34 25.43 27.34 25.43 14.76 23.86 14.76 19.14 17.91"/><path class="a" d="M29.73,13.68l-2.06,2.06a7.4,7.4,0,0,1,0,10.46l2.06,2.06A10.3,10.3,0,0,0,29.73,13.68Z"/><path class="a" d="M33.44,10,31.38,12a12.63,12.63,0,0,1,0,17.88L33.44,32A15.55,15.55,0,0,0,33.44,10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-audio2.svg b/public/assets/images/icons/red/file-audio2.svg
index 282653e0298537902774660971d1bfe1e4135e12..39ed215cd995c9209c9853b8b19786e560d1dfd7 100644
--- a/public/assets/images/icons/red/file-audio2.svg
+++ b/public/assets/images/icons/red/file-audio2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M21.75,34.72A5.25,5.25,0,0,0,27,29.47V17.22s.77-1.74,3.33.64c3.29,3.06,7.17.56,7.17.56s-4.77-1.15-5.75-4.26A5.25,5.25,0,0,0,27,10.22H23.5V24.54a5.32,5.32,0,0,0-1.75-.32,5.25,5.25,0,0,0,0,10.5Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M21.75,34.72A5.25,5.25,0,0,0,27,29.47V17.22s.77-1.74,3.33.64c3.29,3.06,7.17.56,7.17.56s-4.77-1.15-5.75-4.26A5.25,5.25,0,0,0,27,10.22H23.5V24.54a5.32,5.32,0,0,0-1.75-.32,5.25,5.25,0,0,0,0,10.5Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-big.svg b/public/assets/images/icons/red/file-big.svg
index 0caa11e07ef63868d605974cf7954c0d7f3f514c..a80c7e6fdd0db148d00d78f5062c2a26b1d568cc 100644
--- a/public/assets/images/icons/red/file-big.svg
+++ b/public/assets/images/icons/red/file-big.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-excel.svg b/public/assets/images/icons/red/file-excel.svg
index 4e36cae020a6bc0f9b64cc8a8fd8f5cdc5c5a32c..28ecb3b67ebc66b3f84cb99d368e7a705401d64b 100644
--- a/public/assets/images/icons/red/file-excel.svg
+++ b/public/assets/images/icons/red/file-excel.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M31.41,32,27,24.31,22.6,32H17.5l7.08-11.28L18,10H23l4,7.11L31,10h5L29.39,20.69,36.5,32Z"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm3.09,3.1H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.71V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M31.41,32,27,24.31,22.6,32H17.5l7.08-11.28L18,10H23l4,7.11L31,10h5L29.39,20.69,36.5,32Z"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm3.09,3.1H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.71V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-generic.svg b/public/assets/images/icons/red/file-generic.svg
index 0caa11e07ef63868d605974cf7954c0d7f3f514c..a80c7e6fdd0db148d00d78f5062c2a26b1d568cc 100644
--- a/public/assets/images/icons/red/file-generic.svg
+++ b/public/assets/images/icons/red/file-generic.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-office.svg b/public/assets/images/icons/red/file-office.svg
index 76a8bc049068520ab56949ec039156c1fb5bf877..8c4d6b4307ff3949bb659715883222580670b442 100644
--- a/public/assets/images/icons/red/file-office.svg
+++ b/public/assets/images/icons/red/file-office.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM35,46.68V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09V6.06H40.91Z"/><path class="a" d="M24.56,23H16v3h6.77l-.85,1.41L22,34l6-3.19L36,17.53l.88-1.48.59-1a3.34,3.34,0,0,0-1.29-4.64,3.61,3.61,0,0,0-4.25.54H16v3H30l-.1.16L28.16,17H16v3H26.36ZM35.27,11.9a1.66,1.66,0,0,1,.65,2.32l-.59,1-3.06-1.7.59-1A1.8,1.8,0,0,1,35.27,11.9ZM31.39,15l3.06,1.7-7.7,12.84-1.11.59L23.7,29v-1.2Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM35,46.68V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09V6.06H40.91Z"/><path class="a" d="M24.56,23H16v3h6.77l-.85,1.41L22,34l6-3.19L36,17.53l.88-1.48.59-1a3.34,3.34,0,0,0-1.29-4.64,3.61,3.61,0,0,0-4.25.54H16v3H30l-.1.16L28.16,17H16v3H26.36ZM35.27,11.9a1.66,1.66,0,0,1,.65,2.32l-.59,1-3.06-1.7.59-1A1.8,1.8,0,0,1,35.27,11.9ZM31.39,15l3.06,1.7-7.7,12.84-1.11.59L23.7,29v-1.2Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-pdf.svg b/public/assets/images/icons/red/file-pdf.svg
index 002dc87710902777390c58ecc11bf0617928438b..1cc8b98dba949c84df7de574a0edc9dc963ff9f0 100644
--- a/public/assets/images/icons/red/file-pdf.svg
+++ b/public/assets/images/icons/red/file-pdf.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a,.b{fill:#cb1800;}.b{fill-rule:evenodd;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="b" d="M32.7,24.13c2.19,1.74,4,1,3.71.69C35.63,23.8,34.08,23.8,32.7,24.13Zm2.85-1a8.49,8.49,0,0,0-5,.09A7.88,7.88,0,0,1,26,18c-1.83-5.82,0-7.69.12-4.06l.37,2.47s1.27-3.08.45-5.33c-.71-2-2.77-1.66-2.89,2a20.45,20.45,0,0,0,.64,5.46,53.31,53.31,0,0,1-4.72,10c-2.74,4.27-2.91,2.83-2.24,1.41.79-1.7,2.12-2.58,2.57-3.29,0,0-2.08.16-3.69,2.93-1,1.76-1.14,6.11,3.21,1.39a21,21,0,0,0,2.65-4.08A45.49,45.49,0,0,1,31,24.56a11.5,11.5,0,0,0,3.74,1.68C37.4,26.85,40.1,24.69,35.55,23.15ZM23.18,25l2.2-5c1.46,3.1,3.52,3.73,3.52,3.73C28,23.78,23.18,25,23.18,25Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a,.b{fill:#cb1800;}.b{fill-rule:evenodd;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="b" d="M32.7,24.13c2.19,1.74,4,1,3.71.69C35.63,23.8,34.08,23.8,32.7,24.13Zm2.85-1a8.49,8.49,0,0,0-5,.09A7.88,7.88,0,0,1,26,18c-1.83-5.82,0-7.69.12-4.06l.37,2.47s1.27-3.08.45-5.33c-.71-2-2.77-1.66-2.89,2a20.45,20.45,0,0,0,.64,5.46,53.31,53.31,0,0,1-4.72,10c-2.74,4.27-2.91,2.83-2.24,1.41.79-1.7,2.12-2.58,2.57-3.29,0,0-2.08.16-3.69,2.93-1,1.76-1.14,6.11,3.21,1.39a21,21,0,0,0,2.65-4.08A45.49,45.49,0,0,1,31,24.56a11.5,11.5,0,0,0,3.74,1.68C37.4,26.85,40.1,24.69,35.55,23.15ZM23.18,25l2.2-5c1.46,3.1,3.52,3.73,3.52,3.73C28,23.78,23.18,25,23.18,25Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-pic.svg b/public/assets/images/icons/red/file-pic.svg
index 370f792bb1e40cad71e0bb878a40565a7ad8a060..07a94a38559587cb377cc21d8b23b8d1bdd79f56 100644
--- a/public/assets/images/icons/red/file-pic.svg
+++ b/public/assets/images/icons/red/file-pic.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M31,16V14a2,2,0,0,0-2-2H25a2,2,0,0,0-2,2v2H18a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H36a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Zm-4,11.8a5,5,0,1,1,5-5A5,5,0,0,1,27,27.77ZM36,22H33V19h3Z"/><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="18" y="13.97" width="4" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M31,16V14a2,2,0,0,0-2-2H25a2,2,0,0,0-2,2v2H18a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H36a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Zm-4,11.8a5,5,0,1,1,5-5A5,5,0,0,1,27,27.77ZM36,22H33V19h3Z"/><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="18" y="13.97" width="4" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-pic2.svg b/public/assets/images/icons/red/file-pic2.svg
index f707969406d28a1fb4cb581dddaa5731ffac80ef..c449813f691ba13f93397def97bb437b9b572a89 100644
--- a/public/assets/images/icons/red/file-pic2.svg
+++ b/public/assets/images/icons/red/file-pic2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M38.91,24.39,34.5,21.5l-5.81,4.92L19.47,17l-4.38,5.3L12,26V32H42V26.42Z"/><circle class="a" cx="30" cy="13.97" r="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M38.91,24.39,34.5,21.5l-5.81,4.92L19.47,17l-4.38,5.3L12,26V32H42V26.42Z"/><circle class="a" cx="30" cy="13.97" r="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-ppt.svg b/public/assets/images/icons/red/file-ppt.svg
index 9dad10500c10f5e3bc5fc0c9d38212aa8422ca44..154ea792782d34254f91f648d3ec7ccffba81a4c 100644
--- a/public/assets/images/icons/red/file-ppt.svg
+++ b/public/assets/images/icons/red/file-ppt.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M27.64,23.69H23.35V32H19V10h8.64c4.6,0,7.36,3.12,7.36,6.86S32.24,23.69,27.64,23.69Zm-.22-9.89H23.35v6h4.07a2.93,2.93,0,0,0,3.23-3A3,3,0,0,0,27.42,13.8Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M27.64,23.69H23.35V32H19V10h8.64c4.6,0,7.36,3.12,7.36,6.86S32.24,23.69,27.64,23.69Zm-.22-9.89H23.35v6h4.07a2.93,2.93,0,0,0,3.23-3A3,3,0,0,0,27.42,13.8Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-presentation.svg b/public/assets/images/icons/red/file-presentation.svg
index 0ef27d3eb0fe8228cfe544c3b74d905b8e2cb7eb..6ef2d1abb8f1ff17304bef9b268b45d43627489c 100644
--- a/public/assets/images/icons/red/file-presentation.svg
+++ b/public/assets/images/icons/red/file-presentation.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM40.91,6.06V26H29.82a3.07,3.07,0,0,0-2.92-2H19.1a3.07,3.07,0,0,0-2.92,2H13.09V6.06ZM35,46.68V42h4.64ZM37.91,39H32v5.91a3,3,0,0,1-3,3H13.09V29H16v4H30V29H40.91v7A3,3,0,0,1,37.91,39Z"/><path class="a" d="M23,22a4.5,4.5,0,1,0-4.5-4.5A4.49,4.49,0,0,0,23,22Z"/><rect class="a" x="31" y="8.97" width="7" height="7"/><rect class="a" x="31" y="17.97" width="7" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM40.91,6.06V26H29.82a3.07,3.07,0,0,0-2.92-2H19.1a3.07,3.07,0,0,0-2.92,2H13.09V6.06ZM35,46.68V42h4.64ZM37.91,39H32v5.91a3,3,0,0,1-3,3H13.09V29H16v4H30V29H40.91v7A3,3,0,0,1,37.91,39Z"/><path class="a" d="M23,22a4.5,4.5,0,1,0-4.5-4.5A4.49,4.49,0,0,0,23,22Z"/><rect class="a" x="31" y="8.97" width="7" height="7"/><rect class="a" x="31" y="17.97" width="7" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-small.svg b/public/assets/images/icons/red/file-small.svg
index 0caa11e07ef63868d605974cf7954c0d7f3f514c..a80c7e6fdd0db148d00d78f5062c2a26b1d568cc 100644
--- a/public/assets/images/icons/red/file-small.svg
+++ b/public/assets/images/icons/red/file-small.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-sound.svg b/public/assets/images/icons/red/file-sound.svg
index 1631346d978eac211aff53b1d10d1e5cb36412d4..b874a36a939c3a311563210262a15a612c8b1ea5 100644
--- a/public/assets/images/icons/red/file-sound.svg
+++ b/public/assets/images/icons/red/file-sound.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.57 17.46 18 17.46 18 22.61 20.57 22.61 24.43 25.18 25.71 25.18 25.71 14.89 24.43 14.89 20.57 17.46"/><path class="a" d="M29.24,14l-1.69,1.68a6.06,6.06,0,0,1,0,8.56l1.69,1.68A8.43,8.43,0,0,0,29.24,14Z"/><path class="a" d="M32.27,11l-1.69,1.69a10.31,10.31,0,0,1,0,14.62L32.27,29A12.73,12.73,0,0,0,32.27,11Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.57 17.46 18 17.46 18 22.61 20.57 22.61 24.43 25.18 25.71 25.18 25.71 14.89 24.43 14.89 20.57 17.46"/><path class="a" d="M29.24,14l-1.69,1.68a6.06,6.06,0,0,1,0,8.56l1.69,1.68A8.43,8.43,0,0,0,29.24,14Z"/><path class="a" d="M32.27,11l-1.69,1.69a10.31,10.31,0,0,1,0,14.62L32.27,29A12.73,12.73,0,0,0,32.27,11Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-spreadsheet.svg b/public/assets/images/icons/red/file-spreadsheet.svg
index e40412a1dee175c70ac5a6f55db99e87f17c5d24..193cffa6defc3a29fc7435e007ce2056569f563b 100644
--- a/public/assets/images/icons/red/file-spreadsheet.svg
+++ b/public/assets/images/icons/red/file-spreadsheet.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="13.97" width="5" height="11"/><rect class="a" x="24.5" y="10.97" width="5" height="14"/><rect class="a" x="33" y="16.97" width="5" height="8"/><rect class="a" x="16" y="26.97" width="22" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="13.97" width="5" height="11"/><rect class="a" x="24.5" y="10.97" width="5" height="14"/><rect class="a" x="33" y="16.97" width="5" height="8"/><rect class="a" x="16" y="26.97" width="22" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-text.svg b/public/assets/images/icons/red/file-text.svg
index ebd269254375f5f933e06b965597adc037740591..6b282ce6e617a27bfd02944e101aa2b49e11ca6b 100644
--- a/public/assets/images/icons/red/file-text.svg
+++ b/public/assets/images/icons/red/file-text.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="10.97" width="9" height="9"/><rect class="a" x="28" y="10.97" width="10" height="3"/><rect class="a" x="28" y="16.97" width="10" height="3"/><rect class="a" x="16" y="22.97" width="22" height="3"/><rect class="a" x="16" y="28.97" width="22" height="3"/><rect class="a" x="16" y="34.97" width="13" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="10.97" width="9" height="9"/><rect class="a" x="28" y="10.97" width="10" height="3"/><rect class="a" x="28" y="16.97" width="10" height="3"/><rect class="a" x="16" y="22.97" width="22" height="3"/><rect class="a" x="16" y="28.97" width="22" height="3"/><rect class="a" x="16" y="34.97" width="13" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-video.svg b/public/assets/images/icons/red/file-video.svg
index defdbe0900b85b6765d9947ad1b4549580c239dd..fc0461855d8951128cc86f7c3db05858e2b1b191 100644
--- a/public/assets/images/icons/red/file-video.svg
+++ b/public/assets/images/icons/red/file-video.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M36.62,15.42,32.5,18.17V15.73A1.69,1.69,0,0,0,30.82,14H17.68A1.69,1.69,0,0,0,16,15.73V26.11a1.68,1.68,0,0,0,1.68,1.68H30.82a1.68,1.68,0,0,0,1.68-1.68V23.67l4.12,2.75H38v-11ZM31,26.11a.14.14,0,0,1-.14.14H17.68a.14.14,0,0,1-.14-.14V15.73a.15.15,0,0,1,.14-.15H30.82a.15.15,0,0,1,.14.15Z"/><polygon class="a" points="21.5 25.04 27.69 20.92 21.5 16.79 21.5 25.04"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M36.62,15.42,32.5,18.17V15.73A1.69,1.69,0,0,0,30.82,14H17.68A1.69,1.69,0,0,0,16,15.73V26.11a1.68,1.68,0,0,0,1.68,1.68H30.82a1.68,1.68,0,0,0,1.68-1.68V23.67l4.12,2.75H38v-11ZM31,26.11a.14.14,0,0,1-.14.14H17.68a.14.14,0,0,1-.14-.14V15.73a.15.15,0,0,1,.14-.15H30.82a.15.15,0,0,1,.14.15Z"/><polygon class="a" points="21.5 25.04 27.69 20.92 21.5 16.79 21.5 25.04"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-video2.svg b/public/assets/images/icons/red/file-video2.svg
index fba929dd987d30489cc00b47078f916318de4b17..8854305a1f9853c36cb1e8f49fa0f43189e5779e 100644
--- a/public/assets/images/icons/red/file-video2.svg
+++ b/public/assets/images/icons/red/file-video2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.12 30.47 35.88 19.97 20.13 9.47 20.12 30.47"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.12 30.47 35.88 19.97 20.13 9.47 20.12 30.47"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file-word.svg b/public/assets/images/icons/red/file-word.svg
index 8e8922a77091294dceae2d8d674c17c5bee747a1..8067f5bbb53d3c6c9bd7d8c0c094958a3707f106 100644
--- a/public/assets/images/icons/red/file-word.svg
+++ b/public/assets/images/icons/red/file-word.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M33.2,30H30.28L27,18.44,23.69,30H20.78L16,11h3.65l2.76,12,3.27-12h2.61l3.27,12,2.79-12H38Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M33.2,30H30.28L27,18.44,23.69,30H20.78L16,11h3.65l2.76,12,3.27-12h2.61l3.27,12,2.79-12H38Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file.svg b/public/assets/images/icons/red/file.svg
index 0caa11e07ef63868d605974cf7954c0d7f3f514c..a80c7e6fdd0db148d00d78f5062c2a26b1d568cc 100644
--- a/public/assets/images/icons/red/file.svg
+++ b/public/assets/images/icons/red/file.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/file2.svg b/public/assets/images/icons/red/file2.svg
index 0caa11e07ef63868d605974cf7954c0d7f3f514c..a80c7e6fdd0db148d00d78f5062c2a26b1d568cc 100644
--- a/public/assets/images/icons/red/file2.svg
+++ b/public/assets/images/icons/red/file2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/files.svg b/public/assets/images/icons/red/files.svg
index 87f23d7f25356ef946b1d114e36d86f78e518313..8bbaba82d2286407b70fd3f3f35d7f800301d1a5 100644
--- a/public/assets/images/icons/red/files.svg
+++ b/public/assets/images/icons/red/files.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="a" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="a" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/files2.svg b/public/assets/images/icons/red/files2.svg
index c2033236b07f5da4d48136b9afa75fc78fabc154..e41dabf4731ae502f0800547866fd2c2d1b8185b 100644
--- a/public/assets/images/icons/red/files2.svg
+++ b/public/assets/images/icons/red/files2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="docs"><g id="files"><path class="cls-1" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="cls-1" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="docs"><g id="files"><path class="cls-1" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="cls-1" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/filter.svg b/public/assets/images/icons/red/filter.svg
index 63ee6a0d429aa48e73dabf934d56ad8cc182bef2..195d1fd2b80967498ad14bcbb98bcd04e0056a88 100644
--- a/public/assets/images/icons/red/filter.svg
+++ b/public/assets/images/icons/red/filter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><path id="filter" d="M21.1,49.89v-20a1.91,1.91,0,0,0-.41-1.19L3,6.22H51L33.54,28.37a3.09,3.09,0,0,0-.65,1.89V43.39ZM9.33,9.29,23.1,26.78a5,5,0,0,1,1.07,3.09V44.69l5.64-3.12V30.26a6.1,6.1,0,0,1,1.32-3.78L44.66,9.29Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><path id="filter" d="M21.1,49.89v-20a1.91,1.91,0,0,0-.41-1.19L3,6.22H51L33.54,28.37a3.09,3.09,0,0,0-.65,1.89V43.39ZM9.33,9.29,23.1,26.78a5,5,0,0,1,1.07,3.09V44.69l5.64-3.12V30.26a6.1,6.1,0,0,1,1.32-3.78L44.66,9.29Z"/></svg>
diff --git a/public/assets/images/icons/red/filter2.svg b/public/assets/images/icons/red/filter2.svg
index 7c760ec54028882edadf2e4f489e2a95ccb929ce..fad3df9d71fb490fffc8ffedd9fb94ca85cad226 100644
--- a/public/assets/images/icons/red/filter2.svg
+++ b/public/assets/images/icons/red/filter2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="filter2"><polygon points="16.97 30.39 37.02 30.39 42.05 21.7 11.94 21.7 16.97 30.39"/><polygon points="3.01 6.22 8.32 15.41 45.67 15.41 50.98 6.22 3.01 6.22"/><polygon points="27 47.77 33.4 36.68 20.59 36.68 27 47.77"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="filter2"><polygon points="16.97 30.39 37.02 30.39 42.05 21.7 11.94 21.7 16.97 30.39"/><polygon points="3.01 6.22 8.32 15.41 45.67 15.41 50.98 6.22 3.01 6.22"/><polygon points="27 47.77 33.4 36.68 20.59 36.68 27 47.77"/></g></svg>
diff --git a/public/assets/images/icons/red/fishbowl.svg b/public/assets/images/icons/red/fishbowl.svg
index 7c0af2b42b7d8dc63cf52d6e7505805aac11fa85..c1366a1fc0be17122b8415e7b9f4e820284018f0 100644
--- a/public/assets/images/icons/red/fishbowl.svg
+++ b/public/assets/images/icons/red/fishbowl.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="fishbowl"><path class="cls-1" d="M51,27a23.69,23.69,0,0,0-4.25-13.58,1.61,1.61,0,0,0-2.23-.41,1.6,1.6,0,0,0-.41,2.22A20.47,20.47,0,0,1,47.8,27a21.51,21.51,0,0,1-.37,3.87,15,15,0,0,1-12,6.05A15.3,15.3,0,0,1,20.27,21.53c0-.07,0-.15,0-.22A25.31,25.31,0,0,0,7,32.57,20.19,20.19,0,0,1,6.2,27,20.51,20.51,0,0,1,10,15.17,1.59,1.59,0,0,0,9.57,13a1.62,1.62,0,0,0-2.23.39,23.77,23.77,0,0,0,6,33.29,3.21,3.21,0,0,0-.19.92A3.43,3.43,0,0,0,16.54,51H37.37a3.43,3.43,0,0,0,3.42-3.42,3.14,3.14,0,0,0-.18-.86A23.83,23.83,0,0,0,51,27Z"/><path class="cls-1" d="M26.88,16.28A14,14,0,0,0,34,12.43c4.47-4.9,3.31-9.53,3.31-9.53s-4.75-.71-9.22,4.19A13.88,13.88,0,0,0,25,14.54l-5.13,1.63,5.91,5.34Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="fishbowl"><path class="cls-1" d="M51,27a23.69,23.69,0,0,0-4.25-13.58,1.61,1.61,0,0,0-2.23-.41,1.6,1.6,0,0,0-.41,2.22A20.47,20.47,0,0,1,47.8,27a21.51,21.51,0,0,1-.37,3.87,15,15,0,0,1-12,6.05A15.3,15.3,0,0,1,20.27,21.53c0-.07,0-.15,0-.22A25.31,25.31,0,0,0,7,32.57,20.19,20.19,0,0,1,6.2,27,20.51,20.51,0,0,1,10,15.17,1.59,1.59,0,0,0,9.57,13a1.62,1.62,0,0,0-2.23.39,23.77,23.77,0,0,0,6,33.29,3.21,3.21,0,0,0-.19.92A3.43,3.43,0,0,0,16.54,51H37.37a3.43,3.43,0,0,0,3.42-3.42,3.14,3.14,0,0,0-.18-.86A23.83,23.83,0,0,0,51,27Z"/><path class="cls-1" d="M26.88,16.28A14,14,0,0,0,34,12.43c4.47-4.9,3.31-9.53,3.31-9.53s-4.75-.71-9.22,4.19A13.88,13.88,0,0,0,25,14.54l-5.13,1.63,5.91,5.34Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-broken.svg b/public/assets/images/icons/red/folder-broken.svg
index 81b472d0aa27dfc3ab18cceb655e1f6e65bb5f43..05d0ccaa0a77d833623f1abadd28453cf3456f4f 100644
--- a/public/assets/images/icons/red/folder-broken.svg
+++ b/public/assets/images/icons/red/folder-broken.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-broken2.svg b/public/assets/images/icons/red/folder-broken2.svg
index 81b472d0aa27dfc3ab18cceb655e1f6e65bb5f43..05d0ccaa0a77d833623f1abadd28453cf3456f4f 100644
--- a/public/assets/images/icons/red/folder-broken2.svg
+++ b/public/assets/images/icons/red/folder-broken2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-date-empty.svg b/public/assets/images/icons/red/folder-date-empty.svg
index daccce2c1b0197b6f4951a2fe0ffd131f73e39e1..2c486468c7e819b69b1acfa884656480112048a7 100644
--- a/public/assets/images/icons/red/folder-date-empty.svg
+++ b/public/assets/images/icons/red/folder-date-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-date-empty2.svg b/public/assets/images/icons/red/folder-date-empty2.svg
index daccce2c1b0197b6f4951a2fe0ffd131f73e39e1..2c486468c7e819b69b1acfa884656480112048a7 100644
--- a/public/assets/images/icons/red/folder-date-empty2.svg
+++ b/public/assets/images/icons/red/folder-date-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-date-full.svg b/public/assets/images/icons/red/folder-date-full.svg
index 280e205e3599bea7bc87137a7cf3cfa74ab71e40..9110f6176f716eabbfba496f72585105b40176d7 100644
--- a/public/assets/images/icons/red/folder-date-full.svg
+++ b/public/assets/images/icons/red/folder-date-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-date-full2.svg b/public/assets/images/icons/red/folder-date-full2.svg
index 280e205e3599bea7bc87137a7cf3cfa74ab71e40..9110f6176f716eabbfba496f72585105b40176d7 100644
--- a/public/assets/images/icons/red/folder-date-full2.svg
+++ b/public/assets/images/icons/red/folder-date-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-edit-empty.svg b/public/assets/images/icons/red/folder-edit-empty.svg
index 5d341434d8f3a6d5f372d32e8cd8bcedea65839a..c1a88466eae3439a3e5646a04c046ccdf52bb51e 100644
--- a/public/assets/images/icons/red/folder-edit-empty.svg
+++ b/public/assets/images/icons/red/folder-edit-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-edit-empty2.svg b/public/assets/images/icons/red/folder-edit-empty2.svg
index 5d341434d8f3a6d5f372d32e8cd8bcedea65839a..c1a88466eae3439a3e5646a04c046ccdf52bb51e 100644
--- a/public/assets/images/icons/red/folder-edit-empty2.svg
+++ b/public/assets/images/icons/red/folder-edit-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-edit-full.svg b/public/assets/images/icons/red/folder-edit-full.svg
index b43f45e722382a81e2bc7b2ca51ffa645e46293b..9547953dbda5aadde7bc707003f74d7409727d83 100644
--- a/public/assets/images/icons/red/folder-edit-full.svg
+++ b/public/assets/images/icons/red/folder-edit-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-edit-full2.svg b/public/assets/images/icons/red/folder-edit-full2.svg
index b43f45e722382a81e2bc7b2ca51ffa645e46293b..9547953dbda5aadde7bc707003f74d7409727d83 100644
--- a/public/assets/images/icons/red/folder-edit-full2.svg
+++ b/public/assets/images/icons/red/folder-edit-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-empty.svg b/public/assets/images/icons/red/folder-empty.svg
index bd283b2528d0da0d19ee2a9d0a8724c260c4c142..e5d76cd68bbddf4780a0efdd2b0d428af2a71b70 100644
--- a/public/assets/images/icons/red/folder-empty.svg
+++ b/public/assets/images/icons/red/folder-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-empty2.svg b/public/assets/images/icons/red/folder-empty2.svg
index bd283b2528d0da0d19ee2a9d0a8724c260c4c142..e5d76cd68bbddf4780a0efdd2b0d428af2a71b70 100644
--- a/public/assets/images/icons/red/folder-empty2.svg
+++ b/public/assets/images/icons/red/folder-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-full.svg b/public/assets/images/icons/red/folder-full.svg
index 7be27a78507eecb2eb38d53bbc595f05257444c2..3125e6702173972d0a03cf08ca1d3f3b77b63413 100644
--- a/public/assets/images/icons/red/folder-full.svg
+++ b/public/assets/images/icons/red/folder-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-full2.svg b/public/assets/images/icons/red/folder-full2.svg
index 7be27a78507eecb2eb38d53bbc595f05257444c2..3125e6702173972d0a03cf08ca1d3f3b77b63413 100644
--- a/public/assets/images/icons/red/folder-full2.svg
+++ b/public/assets/images/icons/red/folder-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-group-empty.svg b/public/assets/images/icons/red/folder-group-empty.svg
index 2ff30cbd3ab06e0ef0691b8d7ed75c9b58950db8..499bac02b3b6d524dd3907c547078aadf61ebd9c 100644
--- a/public/assets/images/icons/red/folder-group-empty.svg
+++ b/public/assets/images/icons/red/folder-group-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-group-empty2.svg b/public/assets/images/icons/red/folder-group-empty2.svg
index 2ff30cbd3ab06e0ef0691b8d7ed75c9b58950db8..499bac02b3b6d524dd3907c547078aadf61ebd9c 100644
--- a/public/assets/images/icons/red/folder-group-empty2.svg
+++ b/public/assets/images/icons/red/folder-group-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-group-full.svg b/public/assets/images/icons/red/folder-group-full.svg
index 190a8e40c0ca647f3dcca9a13a756cf886b6e3a3..5b10de8488ae78d415d0af7276bf8ba824725a08 100644
--- a/public/assets/images/icons/red/folder-group-full.svg
+++ b/public/assets/images/icons/red/folder-group-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-group-full2.svg b/public/assets/images/icons/red/folder-group-full2.svg
index 190a8e40c0ca647f3dcca9a13a756cf886b6e3a3..5b10de8488ae78d415d0af7276bf8ba824725a08 100644
--- a/public/assets/images/icons/red/folder-group-full2.svg
+++ b/public/assets/images/icons/red/folder-group-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-home-empty.svg b/public/assets/images/icons/red/folder-home-empty.svg
index a8ad5bc36a9a4e4850a7b962cc92fe58216b0792..6ffefee42107c922984516f502fdde10f883d6ce 100644
--- a/public/assets/images/icons/red/folder-home-empty.svg
+++ b/public/assets/images/icons/red/folder-home-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><polygon class="a" points="26.97 17.47 16 28.45 19.21 28.45 27 20.64 34.8 28.43 38 28.45 26.97 17.47"/><polygon class="a" points="19.67 29.36 19.67 39.47 24.25 39.47 24.25 31.66 29.75 31.66 29.75 39.47 34.33 39.47 34.33 29.36 27 22.02 19.67 29.36"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><polygon class="a" points="26.97 17.47 16 28.45 19.21 28.45 27 20.64 34.8 28.43 38 28.45 26.97 17.47"/><polygon class="a" points="19.67 29.36 19.67 39.47 24.25 39.47 24.25 31.66 29.75 31.66 29.75 39.47 34.33 39.47 34.33 29.36 27 22.02 19.67 29.36"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-home-empty2.svg b/public/assets/images/icons/red/folder-home-empty2.svg
index 08c7391a7ea4d2bba7e545162da006d8a2a0bd08..d6186e071a479a1e0e90c538b957dffb213254c2 100644
--- a/public/assets/images/icons/red/folder-home-empty2.svg
+++ b/public/assets/images/icons/red/folder-home-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="27 16.97 16 28.28 17.79 28.28 17.79 38.97 23.84 38.97 23.84 30.61 30.16 30.61 30.16 38.97 36.21 38.97 36.21 28.28 38 28.28 27 16.97"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="27 16.97 16 28.28 17.79 28.28 17.79 38.97 23.84 38.97 23.84 30.61 30.16 30.61 30.16 38.97 36.21 38.97 36.21 28.28 38 28.28 27 16.97"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-home-full.svg b/public/assets/images/icons/red/folder-home-full.svg
index fdd324e92bac3a231fd17344a10a2498f811722d..9b297f62ce9f35e72057073cdabdb640c16c3e6b 100644
--- a/public/assets/images/icons/red/folder-home-full.svg
+++ b/public/assets/images/icons/red/folder-home-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="23.98 21.97 15 30.95 17.63 30.95 24 24.56 30.38 30.94 33 30.95 23.98 21.97"/><polygon class="a" points="18 31.7 18 39.97 21.75 39.97 21.75 33.58 26.25 33.58 26.25 39.97 30 39.97 30 31.7 24 25.69 18 31.7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="23.98 21.97 15 30.95 17.63 30.95 24 24.56 30.38 30.94 33 30.95 23.98 21.97"/><polygon class="a" points="18 31.7 18 39.97 21.75 39.97 21.75 33.58 26.25 33.58 26.25 39.97 30 39.97 30 31.7 24 25.69 18 31.7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-home-full2.svg b/public/assets/images/icons/red/folder-home-full2.svg
index 685bcca4e16fe260f167a226e1395b7964b3d783..1ab165c507deced9702dec54227675ea49062bde 100644
--- a/public/assets/images/icons/red/folder-home-full2.svg
+++ b/public/assets/images/icons/red/folder-home-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="24 22.06 15.04 31.29 16.5 31.29 16.5 40.01 21.42 40.01 21.42 33.19 26.58 33.19 26.58 40.01 31.51 40.01 31.51 31.29 32.97 31.29 24 22.06"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="24 22.06 15.04 31.29 16.5 31.29 16.5 40.01 21.42 40.01 21.42 33.19 26.58 33.19 26.58 40.01 31.51 40.01 31.51 31.29 32.97 31.29 24 22.06"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-inbox-empty.svg b/public/assets/images/icons/red/folder-inbox-empty.svg
index 09a0610c312b4589373b7e10db26b74e58e97ba4..73c7a35041b06d594b29389b83a554662c0a3e05 100644
--- a/public/assets/images/icons/red/folder-inbox-empty.svg
+++ b/public/assets/images/icons/red/folder-inbox-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M12,17.47v3.06L27,30.91,42,20.53V17.47Zm15,9.7-9.59-6.64H36.59Z"/><polygon class="a" points="38.88 36.41 15.13 36.41 15.1 25.12 12 22.97 12 39.47 42 39.47 42 22.97 38.9 25.12 38.88 36.41"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M12,17.47v3.06L27,30.91,42,20.53V17.47Zm15,9.7-9.59-6.64H36.59Z"/><polygon class="a" points="38.88 36.41 15.13 36.41 15.1 25.12 12 22.97 12 39.47 42 39.47 42 22.97 38.9 25.12 38.88 36.41"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-inbox-full.svg b/public/assets/images/icons/red/folder-inbox-full.svg
index 5e351d5e05e97d06d6b8475b86c8aacbb50ba0c1..7f65165dd754a21972f190834a91e30080978002 100644
--- a/public/assets/images/icons/red/folder-inbox-full.svg
+++ b/public/assets/images/icons/red/folder-inbox-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M12,22.41v2.5l12,8.5,12-8.5v-2.5Zm12,7.93-7.67-5.43H31.67Z"/><polygon class="a" points="33.5 37.91 14.5 37.91 14.48 28.66 12 26.91 12 40.41 36 40.41 36 26.91 33.52 28.66 33.5 37.91"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M12,22.41v2.5l12,8.5,12-8.5v-2.5Zm12,7.93-7.67-5.43H31.67Z"/><polygon class="a" points="33.5 37.91 14.5 37.91 14.48 28.66 12 26.91 12 40.41 36 40.41 36 26.91 33.52 28.66 33.5 37.91"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-lock-empty.svg b/public/assets/images/icons/red/folder-lock-empty.svg
index 2bb9a067b427f9131f2ac56d857356abb4756632..bdb24f89130b040f3b5b6db941d0584ce6799142 100644
--- a/public/assets/images/icons/red/folder-lock-empty.svg
+++ b/public/assets/images/icons/red/folder-lock-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-lock-empty2.svg b/public/assets/images/icons/red/folder-lock-empty2.svg
index 2bb9a067b427f9131f2ac56d857356abb4756632..bdb24f89130b040f3b5b6db941d0584ce6799142 100644
--- a/public/assets/images/icons/red/folder-lock-empty2.svg
+++ b/public/assets/images/icons/red/folder-lock-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-lock-full.svg b/public/assets/images/icons/red/folder-lock-full.svg
index 7955de41a40470573d1d2c5be919c458bbdd9761..f6e33c585efc9c1927540f4037835100dee93d2b 100644
--- a/public/assets/images/icons/red/folder-lock-full.svg
+++ b/public/assets/images/icons/red/folder-lock-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-lock-full2.svg b/public/assets/images/icons/red/folder-lock-full2.svg
index 7955de41a40470573d1d2c5be919c458bbdd9761..f6e33c585efc9c1927540f4037835100dee93d2b 100644
--- a/public/assets/images/icons/red/folder-lock-full2.svg
+++ b/public/assets/images/icons/red/folder-lock-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-parent.svg b/public/assets/images/icons/red/folder-parent.svg
index 6f1fece931021b1af17b8f2bde92003aff5f9eaa..3d4033e9e593509daa6ee3fe7f04e295f7e48715 100644
--- a/public/assets/images/icons/red/folder-parent.svg
+++ b/public/assets/images/icons/red/folder-parent.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="38 25 30.91 25 24 31.91 17.09 25 10 25 24 39 38 25"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="38 25 30.91 25 24 31.91 17.09 25 10 25 24 39 38 25"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-plugin-market-empty.svg b/public/assets/images/icons/red/folder-plugin-market-empty.svg
index 4e27467c42377b8bab61b2b9c85db41e0af8f8a6..fff03d3a3df225fb03421b19adb1f00cf4ac8411 100644
--- a/public/assets/images/icons/red/folder-plugin-market-empty.svg
+++ b/public/assets/images/icons/red/folder-plugin-market-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M31.46,33.48a.92.92,0,0,0-.45.12,6.34,6.34,0,0,1-3.09.8,6.42,6.42,0,0,1-1.07-12.75,7.82,7.82,0,0,1,1.07-.08,6.2,6.2,0,0,1,1.62.21,1,1,0,0,0,.24,0,.91.91,0,0,0,.9-1L30.21,17H16V39H33l-.59-4.69A.91.91,0,0,0,31.46,33.48ZM17.37,37.59V18.34H29l.25,2a7.37,7.37,0,0,0-1.32-.12,8,8,0,0,0-1.29.11,7.79,7.79,0,0,0,1.29,15.48,7.89,7.89,0,0,0,3.17-.68l.31,2.49Z"/><path class="a" d="M31.58,17l.76,6.1a.91.91,0,0,1-1.47.83A5,5,0,0,0,27.42,23a5,5,0,1,0,4.37,8.24.92.92,0,0,1,1.63.45c.4,3.19.91,7.31.91,7.31H38V17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M31.46,33.48a.92.92,0,0,0-.45.12,6.34,6.34,0,0,1-3.09.8,6.42,6.42,0,0,1-1.07-12.75,7.82,7.82,0,0,1,1.07-.08,6.2,6.2,0,0,1,1.62.21,1,1,0,0,0,.24,0,.91.91,0,0,0,.9-1L30.21,17H16V39H33l-.59-4.69A.91.91,0,0,0,31.46,33.48ZM17.37,37.59V18.34H29l.25,2a7.37,7.37,0,0,0-1.32-.12,8,8,0,0,0-1.29.11,7.79,7.79,0,0,0,1.29,15.48,7.89,7.89,0,0,0,3.17-.68l.31,2.49Z"/><path class="a" d="M31.58,17l.76,6.1a.91.91,0,0,1-1.47.83A5,5,0,0,0,27.42,23a5,5,0,1,0,4.37,8.24.92.92,0,0,1,1.63.45c.4,3.19.91,7.31.91,7.31H38V17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-plugin-market-full.svg b/public/assets/images/icons/red/folder-plugin-market-full.svg
index 10453afce5313cdfed892192770fd778387b96fd..bd94fa1d7181676d0ecbd08b0f642110c5288271 100644
--- a/public/assets/images/icons/red/folder-plugin-market-full.svg
+++ b/public/assets/images/icons/red/folder-plugin-market-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M27.65,35.48a.74.74,0,0,0-.37.1,5.25,5.25,0,1,1-3.4-9.78,5.1,5.1,0,0,1,.87-.07,5.33,5.33,0,0,1,1.33.17.63.63,0,0,0,.19,0,.74.74,0,0,0,.74-.84L26.63,22H15V40H28.87l-.47-3.84A.75.75,0,0,0,27.65,35.48ZM16.12,38.84V23.09h9.51l.2,1.61a6.47,6.47,0,0,0-1.08-.09,7.42,7.42,0,0,0-1.05.08A6.38,6.38,0,1,0,27.35,36.8l.25,2Z"/><path class="a" d="M27.75,22l.62,5a.75.75,0,0,1-1.2.68,4,4,0,0,0-2.82-.76,4.12,4.12,0,0,0,.4,8.23,4.09,4.09,0,0,0,3.17-1.49.75.75,0,0,1,1.33.37c.33,2.61.75,6,.75,6h3V22Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M27.65,35.48a.74.74,0,0,0-.37.1,5.25,5.25,0,1,1-3.4-9.78,5.1,5.1,0,0,1,.87-.07,5.33,5.33,0,0,1,1.33.17.63.63,0,0,0,.19,0,.74.74,0,0,0,.74-.84L26.63,22H15V40H28.87l-.47-3.84A.75.75,0,0,0,27.65,35.48ZM16.12,38.84V23.09h9.51l.2,1.61a6.47,6.47,0,0,0-1.08-.09,7.42,7.42,0,0,0-1.05.08A6.38,6.38,0,1,0,27.35,36.8l.25,2Z"/><path class="a" d="M27.75,22l.62,5a.75.75,0,0,1-1.2.68,4,4,0,0,0-2.82-.76,4.12,4.12,0,0,0,.4,8.23,4.09,4.09,0,0,0,3.17-1.49.75.75,0,0,1,1.33.37c.33,2.61.75,6,.75,6h3V22Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-public-empty.svg b/public/assets/images/icons/red/folder-public-empty.svg
index 5e53ca56627ebfa2f0f25b8e855765189ff14721..3f4caa6c068082c9400116b2a1eae378daf46402 100644
--- a/public/assets/images/icons/red/folder-public-empty.svg
+++ b/public/assets/images/icons/red/folder-public-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-public-empty2.svg b/public/assets/images/icons/red/folder-public-empty2.svg
index 5e53ca56627ebfa2f0f25b8e855765189ff14721..3f4caa6c068082c9400116b2a1eae378daf46402 100644
--- a/public/assets/images/icons/red/folder-public-empty2.svg
+++ b/public/assets/images/icons/red/folder-public-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-public-full.svg b/public/assets/images/icons/red/folder-public-full.svg
index d2294d5529ce8e4957cd005c4228fc3820b2e380..6d926d5327d57de8a8afe695638ba9a40b042d39 100644
--- a/public/assets/images/icons/red/folder-public-full.svg
+++ b/public/assets/images/icons/red/folder-public-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-public-full2.svg b/public/assets/images/icons/red/folder-public-full2.svg
index d2294d5529ce8e4957cd005c4228fc3820b2e380..6d926d5327d57de8a8afe695638ba9a40b042d39 100644
--- a/public/assets/images/icons/red/folder-public-full2.svg
+++ b/public/assets/images/icons/red/folder-public-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-topic-empty.svg b/public/assets/images/icons/red/folder-topic-empty.svg
index e1f4c72382a96d211035d6789aa97a20681a75d4..436b0a149ededee2331af7d2fadafa3bbd95a4a5 100644
--- a/public/assets/images/icons/red/folder-topic-empty.svg
+++ b/public/assets/images/icons/red/folder-topic-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M29.89,18.41V17H24v1.38H18.18V39H35.82V18.41Zm3.59,18.43h-13V20.6H24v.51h5.92V20.6h3.59Z"/><rect class="a" x="22.59" y="26.57" width="8.82" height="2.78"/><rect class="a" x="22.59" y="30.69" width="8.82" height="2.89"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M29.89,18.41V17H24v1.38H18.18V39H35.82V18.41Zm3.59,18.43h-13V20.6H24v.51h5.92V20.6h3.59Z"/><rect class="a" x="22.59" y="26.57" width="8.82" height="2.78"/><rect class="a" x="22.59" y="30.69" width="8.82" height="2.89"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/folder-topic-full.svg b/public/assets/images/icons/red/folder-topic-full.svg
index 2705484f8b613bba87fe7adeed5f44f95cce4c75..6158ce3afcb62e4936edc9088f14bce130019eda 100644
--- a/public/assets/images/icons/red/folder-topic-full.svg
+++ b/public/assets/images/icons/red/folder-topic-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M26.37,23.15V22H21.52v1.12H16.78V40H31.22V23.15ZM29.3,38.24H18.7V25h2.82v.42h4.85V25H29.3Z"/><rect class="a" x="20.39" y="29.83" width="7.22" height="2.27"/><rect class="a" x="20.39" y="33.21" width="7.22" height="2.36"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M26.37,23.15V22H21.52v1.12H16.78V40H31.22V23.15ZM29.3,38.24H18.7V25h2.82v.42h4.85V25H29.3Z"/><rect class="a" x="20.39" y="29.83" width="7.22" height="2.27"/><rect class="a" x="20.39" y="33.21" width="7.22" height="2.36"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/forum.svg b/public/assets/images/icons/red/forum.svg
index 957264afa39d25edb5705195cbfbf68551e778f4..4a5e418c6c49afc669d63ad62d17f7d70f0a4d5c 100644
--- a/public/assets/images/icons/red/forum.svg
+++ b/public/assets/images/icons/red/forum.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/fullscreen-off.svg b/public/assets/images/icons/red/fullscreen-off.svg
index c06a285ca12fa7a6d6ad53c538d283830527b994..9767595021a72236556f2d995d6533b93d4f9fe1 100644
--- a/public/assets/images/icons/red/fullscreen-off.svg
+++ b/public/assets/images/icons/red/fullscreen-off.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="fullscreen-off"><polygon points="51 20.13 33.87 20.13 33.87 2.99 37.29 2.99 37.29 16.7 51 16.7 51 20.13"/><polygon points="33.86 50.87 33.86 33.73 51 33.73 51 37.16 37.29 37.16 37.29 50.87 33.86 50.87"/><polygon points="20.16 50.97 16.73 50.97 16.73 37.26 3.02 37.26 3.02 33.84 20.16 33.84 20.16 50.97"/><polygon points="3.02 20.02 3.02 16.6 16.73 16.6 16.73 2.89 20.16 2.89 20.16 20.02 3.02 20.02"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="fullscreen-off"><polygon points="51 20.13 33.87 20.13 33.87 2.99 37.29 2.99 37.29 16.7 51 16.7 51 20.13"/><polygon points="33.86 50.87 33.86 33.73 51 33.73 51 37.16 37.29 37.16 37.29 50.87 33.86 50.87"/><polygon points="20.16 50.97 16.73 50.97 16.73 37.26 3.02 37.26 3.02 33.84 20.16 33.84 20.16 50.97"/><polygon points="3.02 20.02 3.02 16.6 16.73 16.6 16.73 2.89 20.16 2.89 20.16 20.02 3.02 20.02"/></g></svg>
diff --git a/public/assets/images/icons/red/fullscreen-on.svg b/public/assets/images/icons/red/fullscreen-on.svg
index abbcd29beeffda2b140c53ba8cb99360859483f0..b592812d95fca62591b0369d1fcd92cacfbd637b 100644
--- a/public/assets/images/icons/red/fullscreen-on.svg
+++ b/public/assets/images/icons/red/fullscreen-on.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="zoom-in-3"><polygon points="51 20.12 47.57 20.12 47.57 6.42 33.86 6.42 33.86 2.99 51 2.99 51 20.12"/><polygon points="20.15 50.97 3.02 50.97 3.02 33.83 6.44 33.83 6.44 47.54 20.15 47.54 20.15 50.97"/><polygon points="33.86 50.97 33.86 47.54 47.57 47.54 47.57 33.83 51 33.83 51 50.97 33.86 50.97"/><polygon points="3.02 20.12 3.02 2.99 20.15 2.99 20.15 6.42 6.44 6.42 6.44 20.12 3.02 20.12"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="zoom-in-3"><polygon points="51 20.12 47.57 20.12 47.57 6.42 33.86 6.42 33.86 2.99 51 2.99 51 20.12"/><polygon points="20.15 50.97 3.02 50.97 3.02 33.83 6.44 33.83 6.44 47.54 20.15 47.54 20.15 50.97"/><polygon points="33.86 50.97 33.86 47.54 47.57 47.54 47.57 33.83 51 33.83 51 50.97 33.86 50.97"/><polygon points="3.02 20.12 3.02 2.99 20.15 2.99 20.15 6.42 6.44 6.42 6.44 20.12 3.02 20.12"/></g></svg>
diff --git a/public/assets/images/icons/red/graph.svg b/public/assets/images/icons/red/graph.svg
index ed6d5f51236a3cab1402c92d98065fad15c904dc..a18b5ceae16cc9a9d605d68ce9f1bac50db2e153 100644
--- a/public/assets/images/icons/red/graph.svg
+++ b/public/assets/images/icons/red/graph.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><path id="graph" class="cls-1" d="M6,44V25.33l9.5,10.36,11.05-12,5.95,5.95L45.23,16.86A3.25,3.25,0,0,0,46,17a3,3,0,1,0-3-3,3.25,3.25,0,0,0,.11.77L32.5,25.35,26.45,19.3l-10.95,12L6,20.89V7H3V47H51V44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><path id="graph" class="cls-1" d="M6,44V25.33l9.5,10.36,11.05-12,5.95,5.95L45.23,16.86A3.25,3.25,0,0,0,46,17a3,3,0,1,0-3-3,3.25,3.25,0,0,0,.11.77L32.5,25.35,26.45,19.3l-10.95,12L6,20.89V7H3V47H51V44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/group.svg b/public/assets/images/icons/red/group.svg
index 82b9648f7b4f788f6a852dcadbd83f9669647aae..905bc531e3ed8135698d4cf1cda54950a67e6a98 100644
--- a/public/assets/images/icons/red/group.svg
+++ b/public/assets/images/icons/red/group.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/group2.svg b/public/assets/images/icons/red/group2.svg
index 6aecf9f07a56b37c629621ceaf2df1da415e2b6b..ef7c61264d6e77832d482bb0881da805ac7e1181 100644
--- a/public/assets/images/icons/red/group2.svg
+++ b/public/assets/images/icons/red/group2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M11.72,24.63a6.16,6.16,0,1,0-6.15-6.16A6.15,6.15,0,0,0,11.72,24.63Z"/><path class="a" d="M14.51,27.55H8.9A5.94,5.94,0,0,0,3,33.49V41.2H20.43V33.49A6,6,0,0,0,14.51,27.55Z"/><path class="a" d="M42.28,31.92a6.16,6.16,0,1,0-6.14-6.15A6.15,6.15,0,0,0,42.28,31.92Z"/><path class="a" d="M45.08,34.85H39.47a5.92,5.92,0,0,0-5.9,5.93V48.5H51V40.78A6,6,0,0,0,45.08,34.85Z"/><path class="a" d="M25.3,17.82a6.16,6.16,0,1,0-6.14-6.16A6.15,6.15,0,0,0,25.3,17.82Z"/><path class="a" d="M34,34.39V26.67a6,6,0,0,0-5.92-5.93H22.49a5.91,5.91,0,0,0-5.88,5.7,7.38,7.38,0,0,1,5.28,7.05v.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M11.72,24.63a6.16,6.16,0,1,0-6.15-6.16A6.15,6.15,0,0,0,11.72,24.63Z"/><path class="a" d="M14.51,27.55H8.9A5.94,5.94,0,0,0,3,33.49V41.2H20.43V33.49A6,6,0,0,0,14.51,27.55Z"/><path class="a" d="M42.28,31.92a6.16,6.16,0,1,0-6.14-6.15A6.15,6.15,0,0,0,42.28,31.92Z"/><path class="a" d="M45.08,34.85H39.47a5.92,5.92,0,0,0-5.9,5.93V48.5H51V40.78A6,6,0,0,0,45.08,34.85Z"/><path class="a" d="M25.3,17.82a6.16,6.16,0,1,0-6.14-6.16A6.15,6.15,0,0,0,25.3,17.82Z"/><path class="a" d="M34,34.39V26.67a6,6,0,0,0-5.92-5.93H22.49a5.91,5.91,0,0,0-5.88,5.7,7.38,7.38,0,0,1,5.28,7.05v.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/group3.svg b/public/assets/images/icons/red/group3.svg
index 58698d5d3ea322bbac7339669e96d39c19e2556e..b314a70784c8c3be02c7df78cd8dc59815dd3358 100644
--- a/public/assets/images/icons/red/group3.svg
+++ b/public/assets/images/icons/red/group3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M21.33,27.49a7.83,7.83,0,0,1-2.16,5.39H34.83A7.87,7.87,0,0,1,36.06,21a6.06,6.06,0,0,0-4.68-2.25H22.6A6,6,0,0,0,17.93,21,7.87,7.87,0,0,1,21.33,27.49Z"/><path class="a" d="M27,15.74a6.37,6.37,0,1,0-6.33-6.38A6.34,6.34,0,0,0,27,15.74Z"/><path class="a" d="M13.49,33.86a6.37,6.37,0,1,0-6.33-6.37A6.35,6.35,0,0,0,13.49,33.86Z"/><path class="a" d="M17.87,36.88H9.09A6.13,6.13,0,0,0,3,43v8H24V43A6.15,6.15,0,0,0,17.87,36.88Z"/><path class="a" d="M34.18,27.49a6.34,6.34,0,1,0,6.33-6.37A6.35,6.35,0,0,0,34.18,27.49Z"/><path class="a" d="M44.89,36.88H36.11A6.13,6.13,0,0,0,30,43v8H51V43A6.15,6.15,0,0,0,44.89,36.88Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M21.33,27.49a7.83,7.83,0,0,1-2.16,5.39H34.83A7.87,7.87,0,0,1,36.06,21a6.06,6.06,0,0,0-4.68-2.25H22.6A6,6,0,0,0,17.93,21,7.87,7.87,0,0,1,21.33,27.49Z"/><path class="a" d="M27,15.74a6.37,6.37,0,1,0-6.33-6.38A6.34,6.34,0,0,0,27,15.74Z"/><path class="a" d="M13.49,33.86a6.37,6.37,0,1,0-6.33-6.37A6.35,6.35,0,0,0,13.49,33.86Z"/><path class="a" d="M17.87,36.88H9.09A6.13,6.13,0,0,0,3,43v8H24V43A6.15,6.15,0,0,0,17.87,36.88Z"/><path class="a" d="M34.18,27.49a6.34,6.34,0,1,0,6.33-6.37A6.35,6.35,0,0,0,34.18,27.49Z"/><path class="a" d="M44.89,36.88H36.11A6.13,6.13,0,0,0,30,43v8H51V43A6.15,6.15,0,0,0,44.89,36.88Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/guestbook.svg b/public/assets/images/icons/red/guestbook.svg
index 29484ee9feed2123783fcd1606ba27140d7beae8..8cee94efcded0faff38f63afabcb5035d697d36d 100644
--- a/public/assets/images/icons/red/guestbook.svg
+++ b/public/assets/images/icons/red/guestbook.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="guestbook"><path class="cls-1" d="M50,39.26l-1-1.72L47.46,35,33.57,11.77,23,6.19l-.13,11.53,13.89,23.2,1.55,2.57,1,1.72a6.3,6.3,0,0,0,8.44,2.18A5.84,5.84,0,0,0,50,39.26Zm-5.25-2.81-5.35,3L26,16.94l0-2.1L29.38,13l1.94,1ZM46.33,39l1,1.72a2.91,2.91,0,0,1-1.13,4.06A3.15,3.15,0,0,1,42,43.73L41,42ZM21,15H3V9H21Zm0,10H3V19H21ZM16,35H3V29H16Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="guestbook"><path class="cls-1" d="M50,39.26l-1-1.72L47.46,35,33.57,11.77,23,6.19l-.13,11.53,13.89,23.2,1.55,2.57,1,1.72a6.3,6.3,0,0,0,8.44,2.18A5.84,5.84,0,0,0,50,39.26Zm-5.25-2.81-5.35,3L26,16.94l0-2.1L29.38,13l1.94,1ZM46.33,39l1,1.72a2.91,2.91,0,0,1-1.13,4.06A3.15,3.15,0,0,1,42,43.73L41,42ZM21,15H3V9H21Zm0,10H3V19H21ZM16,35H3V29H16Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/home.svg b/public/assets/images/icons/red/home.svg
index e733a111e0b9b46f12d2e5eef844dd0ca34fef3b..f575d780ab83236dd1ed8785f73fe5955c12709e 100644
--- a/public/assets/images/icons/red/home.svg
+++ b/public/assets/images/icons/red/home.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="26.93 3.07 3 26.97 10 26.97 27 9.97 44.02 26.93 51 26.97 26.93 3.07"/><polygon class="a" points="11 28.97 11 50.97 21 50.97 21 33.97 33 33.97 33 50.97 43 50.97 43 28.97 27 12.97 11 28.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="26.93 3.07 3 26.97 10 26.97 27 9.97 44.02 26.93 51 26.97 26.93 3.07"/><polygon class="a" points="11 28.97 11 50.97 21 50.97 21 33.97 33 33.97 33 50.97 43 50.97 43 28.97 27 12.97 11 28.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/home2.svg b/public/assets/images/icons/red/home2.svg
index 644ddd3037f865003dc615be2dbe6535d5b0b448..1fe51e213dc94a7133a269fed251108f3732e201 100644
--- a/public/assets/images/icons/red/home2.svg
+++ b/public/assets/images/icons/red/home2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="3 26.97 26.93 3.07 51 26.97 44.02 26.93 27 9.97 10 26.97 3 26.97"/><polygon class="a" points="15 50.97 10 50.97 10 29.97 15 24.97 15 50.97"/><polygon class="a" points="44 50.97 39 50.97 39 24.97 44 29.97 44 50.97"/><rect class="a" x="10" y="45.97" width="34" height="5"/><rect class="a" x="25" y="29.97" width="10" height="17"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="3 26.97 26.93 3.07 51 26.97 44.02 26.93 27 9.97 10 26.97 3 26.97"/><polygon class="a" points="15 50.97 10 50.97 10 29.97 15 24.97 15 50.97"/><polygon class="a" points="44 50.97 39 50.97 39 24.97 44 29.97 44 50.97"/><rect class="a" x="10" y="45.97" width="34" height="5"/><rect class="a" x="25" y="29.97" width="10" height="17"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/info-circle-full.svg b/public/assets/images/icons/red/info-circle-full.svg
index f3955c55b89955e750a81c70ca5f3b707284b55a..4db29257bb28ab3ae5649f37d6df1515cc125a41 100644
--- a/public/assets/images/icons/red/info-circle-full.svg
+++ b/public/assets/images/icons/red/info-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/info-circle.svg b/public/assets/images/icons/red/info-circle.svg
index f3955c55b89955e750a81c70ca5f3b707284b55a..4db29257bb28ab3ae5649f37d6df1515cc125a41 100644
--- a/public/assets/images/icons/red/info-circle.svg
+++ b/public/assets/images/icons/red/info-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/infopage.svg b/public/assets/images/icons/red/infopage.svg
index 1b249dbf6d1d121eda505d505bbb037a29cd975b..b88d606349ba0d945201066d9ab959764df2b23e 100644
--- a/public/assets/images/icons/red/infopage.svg
+++ b/public/assets/images/icons/red/infopage.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/infopage2.svg b/public/assets/images/icons/red/infopage2.svg
index 1b249dbf6d1d121eda505d505bbb037a29cd975b..b88d606349ba0d945201066d9ab959764df2b23e 100644
--- a/public/assets/images/icons/red/infopage2.svg
+++ b/public/assets/images/icons/red/infopage2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/install.svg b/public/assets/images/icons/red/install.svg
index af022894546718af93b36c6ff9f12289d690dde9..3c6d43e8d946aa80507ef0af892f174b315656fb 100644
--- a/public/assets/images/icons/red/install.svg
+++ b/public/assets/images/icons/red/install.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="43 5 34.9 5 27 12.9 19.1 5 11 5 27 21 43 5"/><path class="a" d="M38.29,16.6l0,0a16,16,0,1,1-22.62,0l-3.54-3.53a21,21,0,1,0,29.7,0l0,0Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="43 5 34.9 5 27 12.9 19.1 5 11 5 27 21 43 5"/><path class="a" d="M38.29,16.6l0,0a16,16,0,1,1-22.62,0l-3.54-3.53a21,21,0,1,0,29.7,0l0,0Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/institute.svg b/public/assets/images/icons/red/institute.svg
index 6e80d76dd1a8b8bca9f094ae9b11bd85b3d4a73a..1d457c38c0a3bbb79b49d15b1608f9776e47222c 100644
--- a/public/assets/images/icons/red/institute.svg
+++ b/public/assets/images/icons/red/institute.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="44 24.97 36 24.97 36 47.97 31 47.97 31 24.97 26.89 24.97 23 24.97 23 47.97 18 47.97 18 24.97 10 24.97 10 47.97 6 47.97 6 50.97 48 50.97 48 47.97 44 47.97 44 24.97"/><path class="a" d="M12,22H45v0l6,0L26.93,3.07,3,22h9ZM27,10l11.3,9H15.75Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="44 24.97 36 24.97 36 47.97 31 47.97 31 24.97 26.89 24.97 23 24.97 23 47.97 18 47.97 18 24.97 10 24.97 10 47.97 6 47.97 6 50.97 48 50.97 48 47.97 44 47.97 44 24.97"/><path class="a" d="M12,22H45v0l6,0L26.93,3.07,3,22h9ZM27,10l11.3,9H15.75Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/key.svg b/public/assets/images/icons/red/key.svg
index c241f77ff09ac7da77faa3fc50670c009f3fce37..6ecfb7f1661ade7c615734f250cae48d88bc1a26 100644
--- a/public/assets/images/icons/red/key.svg
+++ b/public/assets/images/icons/red/key.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="key"><path class="cls-1" d="M34.44,3A16.53,16.53,0,0,0,19.12,25.81L3,41.94V51h9.06V44.88h5.88V39h6.12V32.46A16.56,16.56,0,1,0,34.44,3Zm3.88,20.44a7.76,7.76,0,1,1,7.76-7.76A7.77,7.77,0,0,1,38.32,23.44Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="key"><path class="cls-1" d="M34.44,3A16.53,16.53,0,0,0,19.12,25.81L3,41.94V51h9.06V44.88h5.88V39h6.12V32.46A16.56,16.56,0,1,0,34.44,3Zm3.88,20.44a7.76,7.76,0,1,1,7.76-7.76A7.77,7.77,0,0,1,38.32,23.44Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/lightbulb.svg b/public/assets/images/icons/red/lightbulb.svg
index 5ba2ca090fc6e87132283228e565ec378a0b30fe..a13f776cafda21a492fbafd067b4dad209e0302f 100644
--- a/public/assets/images/icons/red/lightbulb.svg
+++ b/public/assets/images/icons/red/lightbulb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M27,3a18.54,18.54,0,0,0-2,.11,17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,27,3Zm7.33,28.92A5,5,0,0,0,32,36.12V38H22V36.13a5,5,0,0,0-2.33-4.24,14,14,0,0,1,5.7-25.83A14.84,14.84,0,0,1,27,6a14,14,0,0,1,7.33,25.92Z"/><path class="a" d="M32.39,9.05A12.51,12.51,0,0,0,27.24,8a12.66,12.66,0,0,0-10.37,5.4,1.73,1.73,0,0,0,.42,2.41,1.69,1.69,0,0,0,1,.32,1.73,1.73,0,0,0,1.42-.74,9.21,9.21,0,0,1,7.54-3.93,9.08,9.08,0,0,1,3.74.8,1.73,1.73,0,1,0,1.41-3.16Z"/><path class="a" d="M17,16.31A1.73,1.73,0,0,0,15,17.58a12.38,12.38,0,0,0-.37,3,12.68,12.68,0,0,0,.28,2.67,1.74,1.74,0,0,0,1.69,1.36,1.55,1.55,0,0,0,.37,0,1.74,1.74,0,0,0,1.33-2.06A8.92,8.92,0,0,1,18,20.61a9.08,9.08,0,0,1,.27-2.2A1.74,1.74,0,0,0,17,16.31Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M27,3a18.54,18.54,0,0,0-2,.11,17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,27,3Zm7.33,28.92A5,5,0,0,0,32,36.12V38H22V36.13a5,5,0,0,0-2.33-4.24,14,14,0,0,1,5.7-25.83A14.84,14.84,0,0,1,27,6a14,14,0,0,1,7.33,25.92Z"/><path class="a" d="M32.39,9.05A12.51,12.51,0,0,0,27.24,8a12.66,12.66,0,0,0-10.37,5.4,1.73,1.73,0,0,0,.42,2.41,1.69,1.69,0,0,0,1,.32,1.73,1.73,0,0,0,1.42-.74,9.21,9.21,0,0,1,7.54-3.93,9.08,9.08,0,0,1,3.74.8,1.73,1.73,0,1,0,1.41-3.16Z"/><path class="a" d="M17,16.31A1.73,1.73,0,0,0,15,17.58a12.38,12.38,0,0,0-.37,3,12.68,12.68,0,0,0,.28,2.67,1.74,1.74,0,0,0,1.69,1.36,1.55,1.55,0,0,0,.37,0,1.74,1.74,0,0,0,1.33-2.06A8.92,8.92,0,0,1,18,20.61a9.08,9.08,0,0,1,.27-2.2A1.74,1.74,0,0,0,17,16.31Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/lightbulb2.svg b/public/assets/images/icons/red/lightbulb2.svg
index 320849c3513b32c758695acb4e901f211b80aec0..345b0ad1bf991c6a4cb69783de760263a9a009dd 100644
--- a/public/assets/images/icons/red/lightbulb2.svg
+++ b/public/assets/images/icons/red/lightbulb2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M25,3.08a17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,25,3.08ZM16.32,17.33A11.15,11.15,0,0,0,16,20a10.48,10.48,0,0,0,.25,2.31,1.51,1.51,0,0,1-1.15,1.79l-.32,0a1.51,1.51,0,0,1-1.47-1.18A14.63,14.63,0,0,1,13,20a14.11,14.11,0,0,1,.41-3.36,1.5,1.5,0,0,1,2.91.72ZM33.46,9.17a1.5,1.5,0,0,1-2,.75A11,11,0,0,0,18,13.66a1.49,1.49,0,0,1-1.23.64,1.5,1.5,0,0,1-1.23-2.36A14,14,0,0,1,32.7,7.18,1.51,1.51,0,0,1,33.46,9.17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M25,3.08a17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,25,3.08ZM16.32,17.33A11.15,11.15,0,0,0,16,20a10.48,10.48,0,0,0,.25,2.31,1.51,1.51,0,0,1-1.15,1.79l-.32,0a1.51,1.51,0,0,1-1.47-1.18A14.63,14.63,0,0,1,13,20a14.11,14.11,0,0,1,.41-3.36,1.5,1.5,0,0,1,2.91.72ZM33.46,9.17a1.5,1.5,0,0,1-2,.75A11,11,0,0,0,18,13.66a1.49,1.49,0,0,1-1.23.64,1.5,1.5,0,0,1-1.23-2.36A14,14,0,0,1,32.7,7.18,1.51,1.51,0,0,1,33.46,9.17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/link-extern.svg b/public/assets/images/icons/red/link-extern.svg
index 324c62e73b60b582ef6cdfb0342d5fc2d796ba90..b7ee6427f68786c551c667188435fe4dffba1c04 100644
--- a/public/assets/images/icons/red/link-extern.svg
+++ b/public/assets/images/icons/red/link-extern.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="17 17 22.06 22.06 31.94 22.06 31.94 31.94 37 37 37 17 17 17"/><path class="a" d="M27,46A19,19,0,0,1,27,8V3A24,24,0,1,0,51,27H46A19,19,0,0,1,27,46Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="17 17 22.06 22.06 31.94 22.06 31.94 31.94 37 37 37 17 17 17"/><path class="a" d="M27,46A19,19,0,0,1,27,8V3A24,24,0,1,0,51,27H46A19,19,0,0,1,27,46Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/link-intern.svg b/public/assets/images/icons/red/link-intern.svg
index d6398f607b87875bbc8edd88e55f3121d9104b30..191b24bd68566beceb3edbc1937837221fe115cd 100644
--- a/public/assets/images/icons/red/link-intern.svg
+++ b/public/assets/images/icons/red/link-intern.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/><polygon class="a" points="22 13 22 20.09 28.91 27 22 33.91 22 41 36 27 22 13"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/><polygon class="a" points="22 13 22 20.09 28.91 27 22 33.91 22 41 36 27 22 13"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/link2.svg b/public/assets/images/icons/red/link2.svg
index 479f43917a04cffbeb4df8effa5436470ea2dbe9..db2facb25e847e71af92b6e06c33b911fd674ef8 100644
--- a/public/assets/images/icons/red/link2.svg
+++ b/public/assets/images/icons/red/link2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM22,41V33.91L28.91,27,22,20.09V13L36,27Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM22,41V33.91L28.91,27,22,20.09V13L36,27Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/link3.svg b/public/assets/images/icons/red/link3.svg
index b661b5c95b6179916dbd3341fe30a6503e90c90a..34f520fecdf23f1f0b012ac0e38827bc25df3821 100644
--- a/public/assets/images/icons/red/link3.svg
+++ b/public/assets/images/icons/red/link3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,51A24,24,0,1,0,3,27,24,24,0,0,0,27,51Zm5-38v7.09L25.09,27,32,33.88V41L18,27Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,51A24,24,0,1,0,3,27,24,24,0,0,0,27,51Zm5-38v7.09L25.09,27,32,33.88V41L18,27Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/literature.svg b/public/assets/images/icons/red/literature.svg
index 4b7ef57841d35a45e4341829ff77b924400a7a6d..16a8ad284966f5155f173c97d14e88d4c1a987fa 100644
--- a/public/assets/images/icons/red/literature.svg
+++ b/public/assets/images/icons/red/literature.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42h3V3Zm0,17.9H33v3H15Zm0,6H33v3H15Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42h3V3Zm0,17.9H33v3H15Zm0,6H33v3H15Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/literature2.svg b/public/assets/images/icons/red/literature2.svg
index 7e197142b4ff568801d0984fa5d3192f0f777255..3eaedacd45fe928e5fb16bb4161aa6fb1f850741 100644
--- a/public/assets/images/icons/red/literature2.svg
+++ b/public/assets/images/icons/red/literature2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42.08h3V3Zm0,12H36V48H15a3,3,0,0,1-3-3V13.94A4.14,4.14,0,0,0,15,15Z"/><rect class="a" x="15" y="20.9" width="17.99" height="3"/><rect class="a" x="15" y="26.9" width="17.99" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42.08h3V3Zm0,12H36V48H15a3,3,0,0,1-3-3V13.94A4.14,4.14,0,0,0,15,15Z"/><rect class="a" x="15" y="20.9" width="17.99" height="3"/><rect class="a" x="15" y="26.9" width="17.99" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/lock-locked.svg b/public/assets/images/icons/red/lock-locked.svg
index 183698a37443941393e6795845cfc3abeab53c6c..5b75551eb04f8abb20487de0c42fe7aa0258ee82 100644
--- a/public/assets/images/icons/red/lock-locked.svg
+++ b/public/assets/images/icons/red/lock-locked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="lock-locked2"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM18,19a9,9,0,0,1,18,0v3H18ZM42,46H12V25H42Z"/><path class="cls-1" d="M24,40a3,3,0,0,0,6,0V35.62a4,4,0,1,0-6,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="lock-locked2"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM18,19a9,9,0,0,1,18,0v3H18ZM42,46H12V25H42Z"/><path class="cls-1" d="M24,40a3,3,0,0,0,6,0V35.62a4,4,0,1,0-6,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/lock-locked2.svg b/public/assets/images/icons/red/lock-locked2.svg
index 37657d3a584a82f4ac90ae45655dc3f9897859cd..e9c34819c63256b0736ab51cb8176545af4bf0f0 100644
--- a/public/assets/images/icons/red/lock-locked2.svg
+++ b/public/assets/images/icons/red/lock-locked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="lock-locked"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM30,35.59V40a3,3,0,0,1-6,0V35.59A3.93,3.93,0,0,1,23,33a4,4,0,1,1,7,2.62ZM36,22H18V19a9,9,0,0,1,18,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="lock-locked"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM30,35.59V40a3,3,0,0,1-6,0V35.59A3.93,3.93,0,0,1,23,33a4,4,0,1,1,7,2.62ZM36,22H18V19a9,9,0,0,1,18,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/lock-unlocked.svg b/public/assets/images/icons/red/lock-unlocked.svg
index 3555b99cf81546d6c040ec6a2c67bbfb39e565e2..705a42718cec629ca6e97d4dcfc2b6a260bd8305 100644
--- a/public/assets/images/icons/red/lock-unlocked.svg
+++ b/public/assets/images/icons/red/lock-unlocked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="lock-unlocked2"><path class="cls-1" d="M24,42a3,3,0,0,0,6,0V37.62a4,4,0,1,0-6,0Z"/><path class="cls-1" d="M18,24V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM42,48H12V27H42Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="lock-unlocked2"><path class="cls-1" d="M24,42a3,3,0,0,0,6,0V37.62a4,4,0,1,0-6,0Z"/><path class="cls-1" d="M18,24V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM42,48H12V27H42Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/lock-unlocked2.svg b/public/assets/images/icons/red/lock-unlocked2.svg
index 25f4353defbd82b1cea5ef9d43a785a835ff28e1..8d3c66b597b9dd044d773891382659882404703b 100644
--- a/public/assets/images/icons/red/lock-unlocked2.svg
+++ b/public/assets/images/icons/red/lock-unlocked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="lock-unlocked"><path class="cls-1" d="M41,24H18V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM30,36.62V42a3,3,0,0,1-6,0V36.62a4,4,0,1,1,6,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="lock-unlocked"><path class="cls-1" d="M41,24H18V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM30,36.62V42a3,3,0,0,1-6,0V36.62a4,4,0,1,1,6,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/log.svg b/public/assets/images/icons/red/log.svg
index 00aa9a2870a650d714361bf5e2c848f584650c58..38f18f828faa4bf380ac01b23b5b57933ed3bf41 100644
--- a/public/assets/images/icons/red/log.svg
+++ b/public/assets/images/icons/red/log.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="log"><path class="cls-1" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><rect class="cls-1" x="15" y="10.97" width="24" height="4"/><rect class="cls-1" x="15" y="17.97" width="23" height="4"/><rect class="cls-1" x="15" y="24.97" width="22" height="4"/><rect class="cls-1" x="15" y="31.97" width="24" height="4"/><rect class="cls-1" x="15" y="38.97" width="19" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="log"><path class="cls-1" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><rect class="cls-1" x="15" y="10.97" width="24" height="4"/><rect class="cls-1" x="15" y="17.97" width="23" height="4"/><rect class="cls-1" x="15" y="24.97" width="22" height="4"/><rect class="cls-1" x="15" y="31.97" width="24" height="4"/><rect class="cls-1" x="15" y="38.97" width="19" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/mail.svg b/public/assets/images/icons/red/mail.svg
index f9d20d0e6e44e893e5d1fd1005a68b9d888995be..b5c9d9d85a48f70cc69790b41bc962d4ae239227 100644
--- a/public/assets/images/icons/red/mail.svg
+++ b/public/assets/images/icons/red/mail.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="3 17.92 3 45 51 45 51 17.83 26.93 37.18 3 17.92"/><polygon class="a" points="3 9 3 12 3 12.06 26.93 31.42 51 12.09 51 12 51 9 3 9"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="3 17.92 3 45 51 45 51 17.83 26.93 37.18 3 17.92"/><polygon class="a" points="3 9 3 12 3 12.06 26.93 31.42 51 12.09 51 12 51 9 3 9"/></svg>
diff --git a/public/assets/images/icons/red/mail2.svg b/public/assets/images/icons/red/mail2.svg
index 6b173355a335516d86744aae5e62957dc5c72581..ed1368a52c35981f4342778072f7d9be056866c3 100644
--- a/public/assets/images/icons/red/mail2.svg
+++ b/public/assets/images/icons/red/mail2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,9v5L27,31,51,14V9ZM27,24.84,11.65,14h30.7Z"/><polygon class="a" points="46 39.97 8 39.97 7.96 21.48 3 17.97 3 44.97 51 44.97 51 17.97 46.03 21.49 46 39.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,9v5L27,31,51,14V9ZM27,24.84,11.65,14h30.7Z"/><polygon class="a" points="46 39.97 8 39.97 7.96 21.48 3 17.97 3 44.97 51 44.97 51 17.97 46.03 21.49 46 39.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/maximize.svg b/public/assets/images/icons/red/maximize.svg
index 5038bebc05fa6daf29920b33a55189c3c486e925..7d1f6ca6da6f10adc81ed121f0774094359c595f 100644
--- a/public/assets/images/icons/red/maximize.svg
+++ b/public/assets/images/icons/red/maximize.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="maximise-1"><polygon points="27 39.03 27 48.03 6 48.03 6 27.03 15 27.03 15 24.03 3 24.03 3 51.03 30 51.03 30 39.03 27 39.03"/><path d="M15,3V39H51V3ZM48,36H18V11.94H48Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="maximise-1"><polygon points="27 39.03 27 48.03 6 48.03 6 27.03 15 27.03 15 24.03 3 24.03 3 51.03 30 51.03 30 39.03 27 39.03"/><path d="M15,3V39H51V3ZM48,36H18V11.94H48Z"/></g></svg>
diff --git a/public/assets/images/icons/red/microphone.svg b/public/assets/images/icons/red/microphone.svg
index 68eb5bdfd15716cf9c88f0dca5cb2a5b9a6dc51f..3addf9d7381ddceb2bdfd832b9087e77ceb97491 100644
--- a/public/assets/images/icons/red/microphone.svg
+++ b/public/assets/images/icons/red/microphone.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,36a7,7,0,0,0,7-7V10a7,7,0,1,0-14,0V29A7,7,0,0,0,27,36Z"/><path class="a" d="M40,29V27a3,3,0,0,0-3-3v4.65A10.24,10.24,0,0,1,27.68,39,10,10,0,0,1,17,29V24a3,3,0,0,0-3,3v2A13,13,0,0,0,25.5,41.88V46H20a3,3,0,0,0-3,3v2H37V49a3,3,0,0,0-3-3H28.5V41.88A13,13,0,0,0,40,29Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,36a7,7,0,0,0,7-7V10a7,7,0,1,0-14,0V29A7,7,0,0,0,27,36Z"/><path class="a" d="M40,29V27a3,3,0,0,0-3-3v4.65A10.24,10.24,0,0,1,27.68,39,10,10,0,0,1,17,29V24a3,3,0,0,0-3,3v2A13,13,0,0,0,25.5,41.88V46H20a3,3,0,0,0-3,3v2H37V49a3,3,0,0,0-3-3H28.5V41.88A13,13,0,0,0,40,29Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/module.svg b/public/assets/images/icons/red/module.svg
index 0772dc377981eb49406344ce182067786c6dee97..a93ac1a7eb09454b66b57963f305d24f49d4eb53 100644
--- a/public/assets/images/icons/red/module.svg
+++ b/public/assets/images/icons/red/module.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="module"><path d="M8.94,26.08a14,14,0,0,1,14-14h0V6.17h0A19.92,19.92,0,0,0,3,26.08H8.94Zm19,12.46a7.48,7.48,0,0,0,0-14.95v7.48H20.44A7.49,7.49,0,0,0,27.93,38.54Zm0-27.39v5.93a14,14,0,1,1-14,14H8A19.91,19.91,0,1,0,27.93,11.15Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="module"><path d="M8.94,26.08a14,14,0,0,1,14-14h0V6.17h0A19.92,19.92,0,0,0,3,26.08H8.94Zm19,12.46a7.48,7.48,0,0,0,0-14.95v7.48H20.44A7.49,7.49,0,0,0,27.93,38.54Zm0-27.39v5.93a14,14,0,1,1-14,14H8A19.91,19.91,0,1,0,27.93,11.15Z"/></g></svg>
diff --git a/public/assets/images/icons/red/network.svg b/public/assets/images/icons/red/network.svg
index a3697b3f0aee595d293bb016017ab7a2aac22c14..7ed9e7041c09f978e12836a3d917953387c8a8ae 100644
--- a/public/assets/images/icons/red/network.svg
+++ b/public/assets/images/icons/red/network.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="network"><path class="cls-1" d="M51,30.43A3.42,3.42,0,0,0,47.57,27a3.36,3.36,0,0,0-2.91,1.73H28.71V23.05a3.39,3.39,0,0,0,1.72-2.91A3.44,3.44,0,0,0,27,16.71a3.36,3.36,0,0,0-2.9,1.72H18.41V9.34a3.36,3.36,0,0,0,1.73-2.91,3.43,3.43,0,1,0-6.85,0A3.38,3.38,0,0,0,15,9.32v9.11H9.33a3.38,3.38,0,0,0-2.9-1.72,3.43,3.43,0,0,0,0,6.86,3.39,3.39,0,0,0,2.9-1.71H15v5.68a3.38,3.38,0,0,0-1.69,2.89,3.43,3.43,0,0,0,3.42,3.43,3.38,3.38,0,0,0,2.9-1.7h5.68V44.67a3.38,3.38,0,0,0-1.72,2.9,3.43,3.43,0,0,0,6.86,0,3.38,3.38,0,0,0-1.72-2.9V32.16H39v9.07a3.36,3.36,0,0,0-1.73,2.91,3.43,3.43,0,1,0,6.85,0,3.37,3.37,0,0,0-1.7-2.89V32.16h2.24a3.37,3.37,0,0,0,2.89,1.7A3.43,3.43,0,0,0,51,30.43Zm-25.71-1.7H19.63a3.29,3.29,0,0,0-1.22-1.21V21.86H24.1a3.39,3.39,0,0,0,1.19,1.19Z"/><circle class="cls-1" cx="35.57" cy="11.57" r="5.14"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="network"><path class="cls-1" d="M51,30.43A3.42,3.42,0,0,0,47.57,27a3.36,3.36,0,0,0-2.91,1.73H28.71V23.05a3.39,3.39,0,0,0,1.72-2.91A3.44,3.44,0,0,0,27,16.71a3.36,3.36,0,0,0-2.9,1.72H18.41V9.34a3.36,3.36,0,0,0,1.73-2.91,3.43,3.43,0,1,0-6.85,0A3.38,3.38,0,0,0,15,9.32v9.11H9.33a3.38,3.38,0,0,0-2.9-1.72,3.43,3.43,0,0,0,0,6.86,3.39,3.39,0,0,0,2.9-1.71H15v5.68a3.38,3.38,0,0,0-1.69,2.89,3.43,3.43,0,0,0,3.42,3.43,3.38,3.38,0,0,0,2.9-1.7h5.68V44.67a3.38,3.38,0,0,0-1.72,2.9,3.43,3.43,0,0,0,6.86,0,3.38,3.38,0,0,0-1.72-2.9V32.16H39v9.07a3.36,3.36,0,0,0-1.73,2.91,3.43,3.43,0,1,0,6.85,0,3.37,3.37,0,0,0-1.7-2.89V32.16h2.24a3.37,3.37,0,0,0,2.89,1.7A3.43,3.43,0,0,0,51,30.43Zm-25.71-1.7H19.63a3.29,3.29,0,0,0-1.22-1.21V21.86H24.1a3.39,3.39,0,0,0,1.19,1.19Z"/><circle class="cls-1" cx="35.57" cy="11.57" r="5.14"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/news.svg b/public/assets/images/icons/red/news.svg
index 9114469814f4c3641cd2d68f4b25cef0fd94c81b..503f529d0e5c53af3b3c43511e8b729be585ca2d 100644
--- a/public/assets/images/icons/red/news.svg
+++ b/public/assets/images/icons/red/news.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/no-activity.svg b/public/assets/images/icons/red/no-activity.svg
index 0c73fc7c501c678b518803a64d6c3c876cd1b918..c2242c803d0b9c81db61fc499ba2f42d6e930a84 100644
--- a/public/assets/images/icons/red/no-activity.svg
+++ b/public/assets/images/icons/red/no-activity.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><path id="no-activity" d="M3,3V51H51V3ZM48,6V26.62H19.23l-4-7.87-3.84,7.87H6V6ZM6,48V29.62H13.3l2-4.13,3.39,6.66,1.73-2.53H48V48Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><path id="no-activity" d="M3,3V51H51V3ZM48,6V26.62H19.23l-4-7.87-3.84,7.87H6V6ZM6,48V29.62H13.3l2-4.13,3.39,6.66,1.73-2.53H48V48Z"/></svg>
diff --git a/public/assets/images/icons/red/oer-campus.svg b/public/assets/images/icons/red/oer-campus.svg
index 9941ef5204302d0657504d17bed166df540f0936..ee2f112d988aa9119a8b7eb27ef2cf21ed013642 100644
--- a/public/assets/images/icons/red/oer-campus.svg
+++ b/public/assets/images/icons/red/oer-campus.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M17,22.07A12.38,12.38,0,1,1,34.58,33.55l1.41.57,8.28-2.83A17.37,17.37,0,1,0,12,22.34c0,.12,0,.23,0,.36Z"/><path class="a" d="M50.78,35.93a3.72,3.72,0,0,0-3.5-2.51,3.62,3.62,0,0,0-1.25.22L35.82,37.19,22.13,31.56l8.73-1.19A3.71,3.71,0,0,0,30.4,23l-.46,0L10.08,25.56a3.68,3.68,0,0,0-1.51.57A2.25,2.25,0,0,0,7.33,27.4l-.18.49c-.05.13-.1.25-.14.38L3.14,38.76a2.22,2.22,0,0,0,.18,1.92c.91,2,5.16,4.86,9.09,6.35l9.44,1.79a8.64,8.64,0,0,0,1.4.12l.45,0a3.81,3.81,0,0,0,.59,0,3.37,3.37,0,0,0,1.2-.21L27,48.23c.4-.12.82-.25,1.29-.41,5.15-1.66,10.9-3.7,13-4.56l.07,0,7.08-2.47A3.79,3.79,0,0,0,50.78,35.93Z"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M17,22.07A12.38,12.38,0,1,1,34.58,33.55l1.41.57,8.28-2.83A17.37,17.37,0,1,0,12,22.34c0,.12,0,.23,0,.36Z"/><path class="a" d="M50.78,35.93a3.72,3.72,0,0,0-3.5-2.51,3.62,3.62,0,0,0-1.25.22L35.82,37.19,22.13,31.56l8.73-1.19A3.71,3.71,0,0,0,30.4,23l-.46,0L10.08,25.56a3.68,3.68,0,0,0-1.51.57A2.25,2.25,0,0,0,7.33,27.4l-.18.49c-.05.13-.1.25-.14.38L3.14,38.76a2.22,2.22,0,0,0,.18,1.92c.91,2,5.16,4.86,9.09,6.35l9.44,1.79a8.64,8.64,0,0,0,1.4.12l.45,0a3.81,3.81,0,0,0,.59,0,3.37,3.37,0,0,0,1.2-.21L27,48.23c.4-.12.82-.25,1.29-.41,5.15-1.66,10.9-3.7,13-4.56l.07,0,7.08-2.47A3.79,3.79,0,0,0,50.78,35.93Z"/></svg>
diff --git a/public/assets/images/icons/red/oer-campus2.svg b/public/assets/images/icons/red/oer-campus2.svg
index 80d12fa276b1a9a6f4b70ca96e8583889406019a..0ec098adc6c1602553e84973812c42f8706b1033 100644
--- a/public/assets/images/icons/red/oer-campus2.svg
+++ b/public/assets/images/icons/red/oer-campus2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/opencast.svg b/public/assets/images/icons/red/opencast.svg
index 5d758e266496cef599ed1b8a121f21045051ecfb..cf55bfaa4ecaf0619cc8d41911b8c976421f572f 100644
--- a/public/assets/images/icons/red/opencast.svg
+++ b/public/assets/images/icons/red/opencast.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M20,10,3,27,20,44,37,27ZM10.08,27,20,17.05,29.9,27,20,36.89Z"/><polygon class="a" points="34.01 9.97 30.5 13.48 43.99 26.97 30.5 40.46 34.01 43.97 51 26.97 34.01 9.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M20,10,3,27,20,44,37,27ZM10.08,27,20,17.05,29.9,27,20,36.89Z"/><polygon class="a" points="34.01 9.97 30.5 13.48 43.99 26.97 30.5 40.46 34.01 43.97 51 26.97 34.01 9.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/opencast2.svg b/public/assets/images/icons/red/opencast2.svg
index c3a2329fdaa43f931e2f8fedc1529a6dce5e11cb..1481d5d13853d2e26969c26d6ee27db87734643b 100644
--- a/public/assets/images/icons/red/opencast2.svg
+++ b/public/assets/images/icons/red/opencast2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="31.02 6.97 29 8.99 46.96 26.97 29 44.95 31.02 46.97 51 26.97 31.02 6.97"/><path class="a" d="M23,7,3,27,23,47,43,27ZM7.29,27,23,11.26,38.71,27,23,42.68Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="31.02 6.97 29 8.99 46.96 26.97 29 44.95 31.02 46.97 51 26.97 31.02 6.97"/><path class="a" d="M23,7,3,27,23,47,43,27ZM7.29,27,23,11.26,38.71,27,23,42.68Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/pause.svg b/public/assets/images/icons/red/pause.svg
index ac914d8f3bc450b6d7dbdd68548ba1fe05527f55..a48c8e2fa93cdefb2d4774e4e70351a6373c9481 100644
--- a/public/assets/images/icons/red/pause.svg
+++ b/public/assets/images/icons/red/pause.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="12.01 45.99 23.99 46 24 8 12 8 12.01 45.99"/><polygon class="a" points="30.01 45.99 41.99 46 42 8 30 8 30.01 45.99"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="12.01 45.99 23.99 46 24 8 12 8 12.01 45.99"/><polygon class="a" points="30.01 45.99 41.99 46 42 8 30 8 30.01 45.99"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/permalink.svg b/public/assets/images/icons/red/permalink.svg
index 82b9648f7b4f788f6a852dcadbd83f9669647aae..905bc531e3ed8135698d4cf1cda54950a67e6a98 100644
--- a/public/assets/images/icons/red/permalink.svg
+++ b/public/assets/images/icons/red/permalink.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/person.svg b/public/assets/images/icons/red/person.svg
index 14e95e40eb5b1a878307c5d47d9b07d262344091..186d4fa34b0b13fa3dbdbed769804804ccfcbc29 100644
--- a/public/assets/images/icons/red/person.svg
+++ b/public/assets/images/icons/red/person.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M4.5,49.5V4.5h45v45Zm14.71-22a7.71,7.71,0,0,0-7.71,7.7v12.3h31V35.22a7.71,7.71,0,0,0-7.7-7.7ZM27,5.55A10.5,10.5,0,1,0,37.5,16,10.5,10.5,0,0,0,27,5.55Z"/><path class="a" d="M48,6V48H44V35.22A9.21,9.21,0,0,0,34.8,26H33.67a12,12,0,0,0-.11-20H48M20.44,6a12,12,0,0,0-.11,20H19.21A9.21,9.21,0,0,0,10,35.22V48H6V6H20.44M51,3H3V51H51V3ZM27,25.05a9,9,0,1,1,9-9,9,9,0,0,1-9,9ZM13,46V35.22A6.2,6.2,0,0,1,19.21,29H34.8a6.2,6.2,0,0,1,6.2,6.2V46Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M4.5,49.5V4.5h45v45Zm14.71-22a7.71,7.71,0,0,0-7.71,7.7v12.3h31V35.22a7.71,7.71,0,0,0-7.7-7.7ZM27,5.55A10.5,10.5,0,1,0,37.5,16,10.5,10.5,0,0,0,27,5.55Z"/><path class="a" d="M48,6V48H44V35.22A9.21,9.21,0,0,0,34.8,26H33.67a12,12,0,0,0-.11-20H48M20.44,6a12,12,0,0,0-.11,20H19.21A9.21,9.21,0,0,0,10,35.22V48H6V6H20.44M51,3H3V51H51V3ZM27,25.05a9,9,0,1,1,9-9,9,9,0,0,1-9,9ZM13,46V35.22A6.2,6.2,0,0,1,19.21,29H34.8a6.2,6.2,0,0,1,6.2,6.2V46Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/person2.svg b/public/assets/images/icons/red/person2.svg
index a0e0b3ef8075326b4adbd5cddfd4e0de01d7cf2a..b3859b3c06f91fab44b4126d709516b3d56d128f 100644
--- a/public/assets/images/icons/red/person2.svg
+++ b/public/assets/images/icons/red/person2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,27.05a9,9,0,1,0-9-9A9,9,0,0,0,27,27.05Z"/><path class="a" d="M3,3V51H51V3ZM48,48H41V37.22A6.2,6.2,0,0,0,34.8,31H19.21A6.2,6.2,0,0,0,13,37.22V48H6V6H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,27.05a9,9,0,1,0-9-9A9,9,0,0,0,27,27.05Z"/><path class="a" d="M3,3V51H51V3ZM48,48H41V37.22A6.2,6.2,0,0,0,34.8,31H19.21A6.2,6.2,0,0,0,13,37.22V48H6V6H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/persons.svg b/public/assets/images/icons/red/persons.svg
index df576a3e7ad3e665431bb0e2010e7b3967def47b..3021eff1597259b75728ecb3a4273d8b77e295d4 100644
--- a/public/assets/images/icons/red/persons.svg
+++ b/public/assets/images/icons/red/persons.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,51H45V9H3ZM24,12a9,9,0,1,1-9,9A9,9,0,0,1,24,12ZM10,40.17A6.21,6.21,0,0,1,16.2,34H31.79A6.21,6.21,0,0,1,38,40.17V46H10Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,51H45V9H3ZM24,12a9,9,0,1,1-9,9A9,9,0,0,1,24,12ZM10,40.17A6.21,6.21,0,0,1,16.2,34H31.79A6.21,6.21,0,0,1,38,40.17V46H10Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/persons2.svg b/public/assets/images/icons/red/persons2.svg
index e38fca705c4907385d03646be304dbbd728b66e9..f5dbfab81014509f32d0b5a77dc9be165b81ee36 100644
--- a/public/assets/images/icons/red/persons2.svg
+++ b/public/assets/images/icons/red/persons2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,51H45V9H3ZM6,12H42V48H38v-4.8A6.21,6.21,0,0,0,31.79,37H16.2a6.21,6.21,0,0,0-6.2,6.2V48H6Z"/><path class="a" d="M24,33a9,9,0,1,0-9-9A9,9,0,0,0,24,33Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,51H45V9H3ZM6,12H42V48H38v-4.8A6.21,6.21,0,0,0,31.79,37H16.2a6.21,6.21,0,0,0-6.2,6.2V48H6Z"/><path class="a" d="M24,33a9,9,0,1,0-9-9A9,9,0,0,0,24,33Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/play.svg b/public/assets/images/icons/red/play.svg
index 671296281067634f20d8092512e9e9823b8c79fb..e0f275ed582bf4cc1fadfac410b4c529486e6db9 100644
--- a/public/assets/images/icons/red/play.svg
+++ b/public/assets/images/icons/red/play.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="arrows"><g id="play"><polygon class="cls-1" points="14.99 44.91 42 26.91 15 8.91 14.99 44.91"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="arrows"><g id="play"><polygon class="cls-1" points="14.99 44.91 42 26.91 15 8.91 14.99 44.91"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/plugin.svg b/public/assets/images/icons/red/plugin.svg
index 03253fe14fff68a275e4de8ef05cf15d98e79908..ac13c8f253de825ff2c7aa285496e474e3114b93 100644
--- a/public/assets/images/icons/red/plugin.svg
+++ b/public/assets/images/icons/red/plugin.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M31.35,6l.54,4.28A16.51,16.51,0,0,0,29,10a17.75,17.75,0,0,0-2.81.23,17,17,0,1,0,9.73,32.29L36.6,48H6V6H31.35M34,3H3V51H40L38.72,40.74a2,2,0,0,0-2-1.74,2,2,0,0,0-1,.26A13.82,13.82,0,0,1,29,41a14,14,0,0,1-2.33-27.81A14.35,14.35,0,0,1,29,13a13.74,13.74,0,0,1,3.54.46,2.4,2.4,0,0,0,.52.07,2,2,0,0,0,2-2.25L34,3Z"/><path class="a" d="M37,3l1.66,13.3a2,2,0,0,1-3.21,1.82,11,11,0,0,0-7.53-2A11,11,0,0,0,29,38a11,11,0,0,0,8.46-4A2,2,0,0,1,41,35C41.88,42,43,51,43,51h8V3Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M31.35,6l.54,4.28A16.51,16.51,0,0,0,29,10a17.75,17.75,0,0,0-2.81.23,17,17,0,1,0,9.73,32.29L36.6,48H6V6H31.35M34,3H3V51H40L38.72,40.74a2,2,0,0,0-2-1.74,2,2,0,0,0-1,.26A13.82,13.82,0,0,1,29,41a14,14,0,0,1-2.33-27.81A14.35,14.35,0,0,1,29,13a13.74,13.74,0,0,1,3.54.46,2.4,2.4,0,0,0,.52.07,2,2,0,0,0,2-2.25L34,3Z"/><path class="a" d="M37,3l1.66,13.3a2,2,0,0,1-3.21,1.82,11,11,0,0,0-7.53-2A11,11,0,0,0,29,38a11,11,0,0,0,8.46-4A2,2,0,0,1,41,35C41.88,42,43,51,43,51h8V3Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/plugin2.svg b/public/assets/images/icons/red/plugin2.svg
index 0c00c11080b795e9f79f15f7ee09f4da2fcf5f35..b6b20d8453efae8adcc485a44c771c3751b98cf3 100644
--- a/public/assets/images/icons/red/plugin2.svg
+++ b/public/assets/images/icons/red/plugin2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M38.75,24.61a7,7,0,0,1,4.6,1.76A1,1,0,0,0,45,25.62v-9.8H33.58a1,1,0,0,1-.75-1.65,6.6,6.6,0,0,0,1.66-4.31,7,7,0,0,0-14-.13,6.61,6.61,0,0,0,1.66,4.45,1,1,0,0,1-.75,1.64H9V51h7.49a1,1,0,0,0,.76-1.64,6.72,6.72,0,0,1-1.67-4.49,7,7,0,0,1,14,.14,6.7,6.7,0,0,1-1.67,4.34A1,1,0,0,0,28.64,51H45V37.27a1,1,0,0,0-1.64-.77,7.05,7.05,0,0,1-4.75,1.76,6.83,6.83,0,1,1,.14-13.65Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M38.75,24.61a7,7,0,0,1,4.6,1.76A1,1,0,0,0,45,25.62v-9.8H33.58a1,1,0,0,1-.75-1.65,6.6,6.6,0,0,0,1.66-4.31,7,7,0,0,0-14-.13,6.61,6.61,0,0,0,1.66,4.45,1,1,0,0,1-.75,1.64H9V51h7.49a1,1,0,0,0,.76-1.64,6.72,6.72,0,0,1-1.67-4.49,7,7,0,0,1,14,.14,6.7,6.7,0,0,1-1.67,4.34A1,1,0,0,0,28.64,51H45V37.27a1,1,0,0,0-1.64-.77,7.05,7.05,0,0,1-4.75,1.76,6.83,6.83,0,1,1,.14-13.65Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/privacy.svg b/public/assets/images/icons/red/privacy.svg
index 56ea37cd2b083d7a195d3bf6870fd903aa1c298b..073d0369db22c7ece52531956050d73f4af988c6 100644
--- a/public/assets/images/icons/red/privacy.svg
+++ b/public/assets/images/icons/red/privacy.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="privacy"><path d="M27.87,14.51H23V24.75h5.13a6.47,6.47,0,0,0,4.4-1.35,4.84,4.84,0,0,0,1.55-3.86Q34.1,14.52,27.87,14.51Z"/><path d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM37.52,24.72a8.21,8.21,0,0,1-3.91,3.2,20,20,0,0,1-7.12,1H23V43.11H18.31V10.34H28.69a10.68,10.68,0,0,1,7.47,2.53A8.71,8.71,0,0,1,39,19.66,9.1,9.1,0,0,1,37.52,24.72Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="privacy"><path d="M27.87,14.51H23V24.75h5.13a6.47,6.47,0,0,0,4.4-1.35,4.84,4.84,0,0,0,1.55-3.86Q34.1,14.52,27.87,14.51Z"/><path d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM37.52,24.72a8.21,8.21,0,0,1-3.91,3.2,20,20,0,0,1-7.12,1H23V43.11H18.31V10.34H28.69a10.68,10.68,0,0,1,7.47,2.53A8.71,8.71,0,0,1,39,19.66,9.1,9.1,0,0,1,37.52,24.72Z"/></g></svg>
diff --git a/public/assets/images/icons/red/question-circle-full.svg b/public/assets/images/icons/red/question-circle-full.svg
index 74ab17e20ad5ed5b4be4768b16c8bc0ae255079c..10672c2b73d0240217df654fda3bbb9932510d24 100644
--- a/public/assets/images/icons/red/question-circle-full.svg
+++ b/public/assets/images/icons/red/question-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/question-circle.svg b/public/assets/images/icons/red/question-circle.svg
index 74ab17e20ad5ed5b4be4768b16c8bc0ae255079c..10672c2b73d0240217df654fda3bbb9932510d24 100644
--- a/public/assets/images/icons/red/question-circle.svg
+++ b/public/assets/images/icons/red/question-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/refresh.svg b/public/assets/images/icons/red/refresh.svg
index 181b00f545d97dc4561dbb8ca06d55ca1f6525d2..1f43565e71ab038a7b02ff9d3f5d779e2da8ed68 100644
--- a/public/assets/images/icons/red/refresh.svg
+++ b/public/assets/images/icons/red/refresh.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="refresh"><path class="cls-1" d="M27,44A17,17,0,0,1,10.63,31.46l4.88,1.31,4.24-2.45L6.54,26.77,3,40l4.24-2.45,1-3.76A19.93,19.93,0,0,0,46.33,32l-2.9-.75A17,17,0,0,1,27,44Z"/><path class="cls-1" d="M46.76,16.51l-1,3.72a19.93,19.93,0,0,0-38.1,1.82l2.9.75a16.95,16.95,0,0,1,32.81-.2l-4.89-1.31-4.24,2.45,13.21,3.55L51,14.06Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="refresh"><path class="cls-1" d="M27,44A17,17,0,0,1,10.63,31.46l4.88,1.31,4.24-2.45L6.54,26.77,3,40l4.24-2.45,1-3.76A19.93,19.93,0,0,0,46.33,32l-2.9-.75A17,17,0,0,1,27,44Z"/><path class="cls-1" d="M46.76,16.51l-1,3.72a19.93,19.93,0,0,0-38.1,1.82l2.9.75a16.95,16.95,0,0,1,32.81-.2l-4.89-1.31-4.24,2.45,13.21,3.55L51,14.06Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/remove-circle-full.svg b/public/assets/images/icons/red/remove-circle-full.svg
index 5eb15005037c0a7e32ca20c024e4a4d04e83752e..0bb76d446b6b395d3d9c644e494b2c028cccc132 100644
--- a/public/assets/images/icons/red/remove-circle-full.svg
+++ b/public/assets/images/icons/red/remove-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/remove-circle.svg b/public/assets/images/icons/red/remove-circle.svg
index 5eb15005037c0a7e32ca20c024e4a4d04e83752e..0bb76d446b6b395d3d9c644e494b2c028cccc132 100644
--- a/public/assets/images/icons/red/remove-circle.svg
+++ b/public/assets/images/icons/red/remove-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/remove.svg b/public/assets/images/icons/red/remove.svg
index 2e742a82af805d27cc0f604c36dbcf6c79d5139e..17759e760870c70fe5d98bdffbd717c951b4d771 100644
--- a/public/assets/images/icons/red/remove.svg
+++ b/public/assets/images/icons/red/remove.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="48 32 48 22 6 22 6 32 48 32"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="48 32 48 22 6 22 6 32 48 32"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/resources-broken.svg b/public/assets/images/icons/red/resources-broken.svg
index e968844bb734c67285fa00491184dc9cb6a4d99f..fda3f32860622485d80b08692f6450e2aa656c6b 100644
--- a/public/assets/images/icons/red/resources-broken.svg
+++ b/public/assets/images/icons/red/resources-broken.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="resources-broken"><polygon class="cls-1" points="24.93 49.54 24.93 36.7 22.46 49.54 24.93 49.54"/><polygon class="cls-1" points="37.76 4.43 31.82 4.43 30.57 10.91 32.8 8.65 36.05 11.94 28.99 19.09 27.54 26.65 37.76 26.65 37.76 4.43"/><path class="cls-1" d="M28.76,31V53H50.69V31Zm14.1,11h0l4.45,4.47L44.18,49.6l-4.45-4.47L35.28,49.6l-3.14-3.15L36.59,42h0l-4.44-4.47L33.7,36l1.58-1.58,4.45,4.47,4.45-4.47,3.13,3.15L42.86,42Z"/><polygon class="cls-1" points="3 27.51 3 49.54 18.82 49.54 19.47 46.14 16.1 46.14 16.1 40.35 11.83 40.35 11.83 46.14 7.76 46.14 7.76 38.74 6.55 38.74 13.97 30.91 20.98 38.31 23.06 27.51 3 27.51"/><polygon class="cls-1" points="20.18 42.47 20.89 38.74 20.18 38.74 20.18 42.47"/><polygon class="cls-1" points="15.86 0.97 15.86 23.19 23.89 23.19 24.61 19.43 17.57 12.29 20.81 9 24.92 13.18 26.04 12.05 28.17 0.97 15.86 0.97"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="resources-broken"><polygon class="cls-1" points="24.93 49.54 24.93 36.7 22.46 49.54 24.93 49.54"/><polygon class="cls-1" points="37.76 4.43 31.82 4.43 30.57 10.91 32.8 8.65 36.05 11.94 28.99 19.09 27.54 26.65 37.76 26.65 37.76 4.43"/><path class="cls-1" d="M28.76,31V53H50.69V31Zm14.1,11h0l4.45,4.47L44.18,49.6l-4.45-4.47L35.28,49.6l-3.14-3.15L36.59,42h0l-4.44-4.47L33.7,36l1.58-1.58,4.45,4.47,4.45-4.47,3.13,3.15L42.86,42Z"/><polygon class="cls-1" points="3 27.51 3 49.54 18.82 49.54 19.47 46.14 16.1 46.14 16.1 40.35 11.83 40.35 11.83 46.14 7.76 46.14 7.76 38.74 6.55 38.74 13.97 30.91 20.98 38.31 23.06 27.51 3 27.51"/><polygon class="cls-1" points="20.18 42.47 20.89 38.74 20.18 38.74 20.18 42.47"/><polygon class="cls-1" points="15.86 0.97 15.86 23.19 23.89 23.19 24.61 19.43 17.57 12.29 20.81 9 24.92 13.18 26.04 12.05 28.17 0.97 15.86 0.97"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/resources.svg b/public/assets/images/icons/red/resources.svg
index a55fe5f77bd080f2790a2017e407b23472fbe524..8bd41e408d892233dfdd0f1af11efddfbaf9512a 100644
--- a/public/assets/images/icons/red/resources.svg
+++ b/public/assets/images/icons/red/resources.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="resources"><path class="cls-1" d="M29,29V51H51V29ZM47.61,44.46,44.46,47.6,40,43.14,35.54,47.6l-3.15-3.14L36.86,40,32.4,35.53l3.14-3.14L40,36.86l4.46-4.47,3.15,3.15L43.14,40Z"/><path class="cls-1" d="M16,3V25H38V3Zm9.12,18.6-7.4-7.4L21,11l4.14,4.14L33,7.18l3.26,3.25Z"/><path class="cls-1" d="M3,29V51H25V29ZM20.23,40.21V47.6H16.14V41.82H11.86V47.6H7.77V40.21H6.56L14,32.39l7.44,7.82Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="resources"><path class="cls-1" d="M29,29V51H51V29ZM47.61,44.46,44.46,47.6,40,43.14,35.54,47.6l-3.15-3.14L36.86,40,32.4,35.53l3.14-3.14L40,36.86l4.46-4.47,3.15,3.15L43.14,40Z"/><path class="cls-1" d="M16,3V25H38V3Zm9.12,18.6-7.4-7.4L21,11l4.14,4.14L33,7.18l3.26,3.25Z"/><path class="cls-1" d="M3,29V51H25V29ZM20.23,40.21V47.6H16.14V41.82H11.86V47.6H7.77V40.21H6.56L14,32.39l7.44,7.82Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/roles2.svg b/public/assets/images/icons/red/roles2.svg
index d3c76409448f2fdddda7ffdcae39f4ad65adfd49..e09f00ada4b1a347f0f9179eca693759e8dc9693 100644
--- a/public/assets/images/icons/red/roles2.svg
+++ b/public/assets/images/icons/red/roles2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="roles2"><path class="cls-1" d="M19,10a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-5A10,10,0,1,0,29,15,10,10,0,0,0,19,5Z"/><path class="cls-1" d="M30,44v0H8V36a3,3,0,0,1,3-3H22.86L26,28H11a8,8,0,0,0-8,8V49H35V44Z"/><path class="cls-1" d="M48.35,5.68a5.4,5.4,0,0,0-7.22,1.87L40.25,9l-1.33,2.21L27,31.1,27.13,41l9.05-4.78L48.09,16.33l1.32-2.21.88-1.47A5,5,0,0,0,48.35,5.68ZM34.26,34.3l-1.66.88-2.91-1.62,0-1.79L41.21,12.5l4.59,2.55Zm8.28-24,.88-1.48A2.71,2.71,0,0,1,47,7.89a2.5,2.5,0,0,1,1,3.48l-.88,1.48Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="roles2"><path class="cls-1" d="M19,10a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-5A10,10,0,1,0,29,15,10,10,0,0,0,19,5Z"/><path class="cls-1" d="M30,44v0H8V36a3,3,0,0,1,3-3H22.86L26,28H11a8,8,0,0,0-8,8V49H35V44Z"/><path class="cls-1" d="M48.35,5.68a5.4,5.4,0,0,0-7.22,1.87L40.25,9l-1.33,2.21L27,31.1,27.13,41l9.05-4.78L48.09,16.33l1.32-2.21.88-1.47A5,5,0,0,0,48.35,5.68ZM34.26,34.3l-1.66.88-2.91-1.62,0-1.79L41.21,12.5l4.59,2.55Zm8.28-24,.88-1.48A2.71,2.71,0,0,1,47,7.89a2.5,2.5,0,0,1,1,3.48l-.88,1.48Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/room.svg b/public/assets/images/icons/red/room.svg
index 349684fd24bb8957e9bafc725bee951658edde9d..322b5b41bfe3b6c2496db156aa759e383f01bb57 100644
--- a/public/assets/images/icons/red/room.svg
+++ b/public/assets/images/icons/red/room.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="room"><polygon points="51 37.2 44.14 37.2 44.14 43.94 9.86 43.94 9.86 9.65 44.14 9.77 44.14 16.62 51 16.62 51 2.79 3 2.79 3 50.79 51 50.79 51 37.2"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="room"><polygon points="51 37.2 44.14 37.2 44.14 43.94 9.86 43.94 9.86 9.65 44.14 9.77 44.14 16.62 51 16.62 51 2.79 3 2.79 3 50.79 51 50.79 51 37.2"/></g></svg>
diff --git a/public/assets/images/icons/red/schedule.svg b/public/assets/images/icons/red/schedule.svg
index 7a61c6450500d3cbdd7486be09d149930faf4ef0..99ed6107a02ab2b47ef38c02955e2940ef4b63c8 100644
--- a/public/assets/images/icons/red/schedule.svg
+++ b/public/assets/images/icons/red/schedule.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M18.68,37.5V31.66L14.35,37.5Zm18-21.06a2.83,2.83,0,0,0,2.83-2.82V5.82a2.83,2.83,0,0,0-5.65,0v7.8A2.82,2.82,0,0,0,36.73,16.44Zm-19.46,0a2.82,2.82,0,0,0,2.82-2.82V5.82a2.82,2.82,0,0,0-5.64,0v7.8A2.82,2.82,0,0,0,17.27,16.44ZM43,12.05v1.89a6.3,6.3,0,0,1-12.6,0V12.05H23.57v1.89a6.3,6.3,0,0,1-12.6,0V12.05H3V51H51V12.05ZM25.36,41.2a3.35,3.35,0,0,1-1.87.46h-.31v2a2.76,2.76,0,0,1-.6,1.93,2.13,2.13,0,0,1-1.62.7h0a2.12,2.12,0,0,1-1.64-.71,2.79,2.79,0,0,1-.61-1.92v-2H12.3A3.38,3.38,0,0,1,10,40.93a2.63,2.63,0,0,1-.83-2,1.94,1.94,0,0,1,.13-.71,3.6,3.6,0,0,1,.34-.68c.13-.2.28-.41.42-.59s.31-.41.51-.68l7.29-9.76A13.23,13.23,0,0,1,19.08,25a2.08,2.08,0,0,1,1.48-.57,2.49,2.49,0,0,1,2,.78,3.26,3.26,0,0,1,.66,2.14V37.51h.06a4.62,4.62,0,0,1,1.92.33,1.77,1.77,0,0,1,.95,1.75A1.83,1.83,0,0,1,25.36,41.2Zm16.35,4.13A2.3,2.3,0,0,1,40,46H29.8a2.71,2.71,0,0,1-1.95-.72,2.36,2.36,0,0,1-.74-1.72A4.06,4.06,0,0,1,27.53,42a5.32,5.32,0,0,1,.92-1.44q1.83-1.9,3.33-3.27a21.23,21.23,0,0,1,2.15-1.83,11.55,11.55,0,0,0,1.8-1.53,6.26,6.26,0,0,0,1.05-1.51A3.46,3.46,0,0,0,37.12,31a2.44,2.44,0,0,0-.34-1.31,2.41,2.41,0,0,0-.94-.88,3,3,0,0,0-1.32-.33,2.72,2.72,0,0,0-2.4,1.35,7.69,7.69,0,0,0-.4,1,5.19,5.19,0,0,1-.82,1.58,2,2,0,0,1-1.6.69,2.11,2.11,0,0,1-1.52-.61,2.24,2.24,0,0,1-.61-1.62,5.64,5.64,0,0,1,.47-2.18A6.06,6.06,0,0,1,29,26.62a6.83,6.83,0,0,1,2.32-1.47,8.85,8.85,0,0,1,3.25-.56,9.35,9.35,0,0,1,3.81.71A6.19,6.19,0,0,1,42,30.88,6.37,6.37,0,0,1,41,34.26a10.22,10.22,0,0,1-1.82,2.31c-.6.54-1.59,1.37-3,2.5a22.87,22.87,0,0,0-2.78,2.57h6.12a3.14,3.14,0,0,1,2,.55,2,2,0,0,1,.77,1.62A2.15,2.15,0,0,1,41.71,45.33Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M18.68,37.5V31.66L14.35,37.5Zm18-21.06a2.83,2.83,0,0,0,2.83-2.82V5.82a2.83,2.83,0,0,0-5.65,0v7.8A2.82,2.82,0,0,0,36.73,16.44Zm-19.46,0a2.82,2.82,0,0,0,2.82-2.82V5.82a2.82,2.82,0,0,0-5.64,0v7.8A2.82,2.82,0,0,0,17.27,16.44ZM43,12.05v1.89a6.3,6.3,0,0,1-12.6,0V12.05H23.57v1.89a6.3,6.3,0,0,1-12.6,0V12.05H3V51H51V12.05ZM25.36,41.2a3.35,3.35,0,0,1-1.87.46h-.31v2a2.76,2.76,0,0,1-.6,1.93,2.13,2.13,0,0,1-1.62.7h0a2.12,2.12,0,0,1-1.64-.71,2.79,2.79,0,0,1-.61-1.92v-2H12.3A3.38,3.38,0,0,1,10,40.93a2.63,2.63,0,0,1-.83-2,1.94,1.94,0,0,1,.13-.71,3.6,3.6,0,0,1,.34-.68c.13-.2.28-.41.42-.59s.31-.41.51-.68l7.29-9.76A13.23,13.23,0,0,1,19.08,25a2.08,2.08,0,0,1,1.48-.57,2.49,2.49,0,0,1,2,.78,3.26,3.26,0,0,1,.66,2.14V37.51h.06a4.62,4.62,0,0,1,1.92.33,1.77,1.77,0,0,1,.95,1.75A1.83,1.83,0,0,1,25.36,41.2Zm16.35,4.13A2.3,2.3,0,0,1,40,46H29.8a2.71,2.71,0,0,1-1.95-.72,2.36,2.36,0,0,1-.74-1.72A4.06,4.06,0,0,1,27.53,42a5.32,5.32,0,0,1,.92-1.44q1.83-1.9,3.33-3.27a21.23,21.23,0,0,1,2.15-1.83,11.55,11.55,0,0,0,1.8-1.53,6.26,6.26,0,0,0,1.05-1.51A3.46,3.46,0,0,0,37.12,31a2.44,2.44,0,0,0-.34-1.31,2.41,2.41,0,0,0-.94-.88,3,3,0,0,0-1.32-.33,2.72,2.72,0,0,0-2.4,1.35,7.69,7.69,0,0,0-.4,1,5.19,5.19,0,0,1-.82,1.58,2,2,0,0,1-1.6.69,2.11,2.11,0,0,1-1.52-.61,2.24,2.24,0,0,1-.61-1.62,5.64,5.64,0,0,1,.47-2.18A6.06,6.06,0,0,1,29,26.62a6.83,6.83,0,0,1,2.32-1.47,8.85,8.85,0,0,1,3.25-.56,9.35,9.35,0,0,1,3.81.71A6.19,6.19,0,0,1,42,30.88,6.37,6.37,0,0,1,41,34.26a10.22,10.22,0,0,1-1.82,2.31c-.6.54-1.59,1.37-3,2.5a22.87,22.87,0,0,0-2.78,2.57h6.12a3.14,3.14,0,0,1,2,.55,2,2,0,0,1,.77,1.62A2.15,2.15,0,0,1,41.71,45.33Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/schedule2.svg b/public/assets/images/icons/red/schedule2.svg
index 04b9ae8c574d98baee619fe3ed9e8b1c81929965..1bc813a8a7a3998b80fb8f6204c5f3ba9b825c2d 100644
--- a/public/assets/images/icons/red/schedule2.svg
+++ b/public/assets/images/icons/red/schedule2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><rect class="a" x="17.93" y="6.97" width="18.09" height="5"/><polygon class="a" points="40.93 6.97 40.93 11.97 46 11.97 46 45.97 8 45.97 8 11.97 13.02 11.97 13.02 6.97 3 6.97 3 50.97 51 50.97 51 6.97 40.93 6.97"/><path class="a" d="M35.47,16A2.62,2.62,0,0,0,38,13.24V5.69a2.51,2.51,0,1,0-5,0v7.55A2.63,2.63,0,0,0,35.47,16Z"/><path class="a" d="M18.52,16A2.63,2.63,0,0,0,21,13.24V5.69A2.63,2.63,0,0,0,18.52,3,2.62,2.62,0,0,0,16,5.69v7.55A2.62,2.62,0,0,0,18.52,16Z"/><path class="a" d="M20.45,36H14a1.92,1.92,0,0,1-2-2,2.77,2.77,0,0,1,.49-1.71l8-11.46A1.87,1.87,0,0,1,22.14,20c1.39,0,1.93.84,1.93,2.09V32.64h1.3a1.67,1.67,0,0,1,0,3.31h-1.3v3c0,1.22-.46,2-1.81,2s-1.81-.81-1.81-2Zm0-10.82H20.4l-5,7.51h5Z"/><path class="a" d="M40.29,36.94A1.59,1.59,0,0,1,42,38.77c0,1.3-.72,1.82-1.91,1.82h-9.7a2,2,0,0,1-2.12-2.14c0-2.06,1.63-4.36,4.86-6.65,3.6-2.55,4.84-3.07,4.84-5.42a2.72,2.72,0,0,0-2.72-2.93c-1.65,0-2.76.75-3.33,3.07-.26,1.08-.6,1.63-1.63,1.63a1.71,1.71,0,0,1-1.89-1.94c0-3.54,3.1-6.24,6.9-6.24,4.14,0,6.6,3.05,6.6,5.71,0,3.86-1.58,5.37-4.32,7.11-2.92,1.86-4.71,3.05-5,4.15Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><rect class="a" x="17.93" y="6.97" width="18.09" height="5"/><polygon class="a" points="40.93 6.97 40.93 11.97 46 11.97 46 45.97 8 45.97 8 11.97 13.02 11.97 13.02 6.97 3 6.97 3 50.97 51 50.97 51 6.97 40.93 6.97"/><path class="a" d="M35.47,16A2.62,2.62,0,0,0,38,13.24V5.69a2.51,2.51,0,1,0-5,0v7.55A2.63,2.63,0,0,0,35.47,16Z"/><path class="a" d="M18.52,16A2.63,2.63,0,0,0,21,13.24V5.69A2.63,2.63,0,0,0,18.52,3,2.62,2.62,0,0,0,16,5.69v7.55A2.62,2.62,0,0,0,18.52,16Z"/><path class="a" d="M20.45,36H14a1.92,1.92,0,0,1-2-2,2.77,2.77,0,0,1,.49-1.71l8-11.46A1.87,1.87,0,0,1,22.14,20c1.39,0,1.93.84,1.93,2.09V32.64h1.3a1.67,1.67,0,0,1,0,3.31h-1.3v3c0,1.22-.46,2-1.81,2s-1.81-.81-1.81-2Zm0-10.82H20.4l-5,7.51h5Z"/><path class="a" d="M40.29,36.94A1.59,1.59,0,0,1,42,38.77c0,1.3-.72,1.82-1.91,1.82h-9.7a2,2,0,0,1-2.12-2.14c0-2.06,1.63-4.36,4.86-6.65,3.6-2.55,4.84-3.07,4.84-5.42a2.72,2.72,0,0,0-2.72-2.93c-1.65,0-2.76.75-3.33,3.07-.26,1.08-.6,1.63-1.63,1.63a1.71,1.71,0,0,1-1.89-1.94c0-3.54,3.1-6.24,6.9-6.24,4.14,0,6.6,3.05,6.6,5.71,0,3.86-1.58,5.37-4.32,7.11-2.92,1.86-4.71,3.05-5,4.15Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/search.svg b/public/assets/images/icons/red/search.svg
index fda331f9d20c1fbb2224621955fa6fdc87712bc1..db7d65acd725c7251ec3f1ac1a20210018d40d7e 100644
--- a/public/assets/images/icons/red/search.svg
+++ b/public/assets/images/icons/red/search.svg
@@ -1 +1 @@
-<svg id="Icons_NEUES_LAYOUT_2021" data-name="Icons – NEUES LAYOUT 2021" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="search2"><path class="cls-1" d="M49.54,42.46,38,31c-.14-.13-.3-.24-.45-.36a18.54,18.54,0,1,0-7,7c.12.15.23.31.36.45l11.5,11.5a5,5,0,0,0,7.08-7.08ZM9,21.5A12.5,12.5,0,1,1,21.5,34,12.52,12.52,0,0,1,9,21.5Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="Icons_NEUES_LAYOUT_2021" data-name="Icons – NEUES LAYOUT 2021" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="search2"><path class="cls-1" d="M49.54,42.46,38,31c-.14-.13-.3-.24-.45-.36a18.54,18.54,0,1,0-7,7c.12.15.23.31.36.45l11.5,11.5a5,5,0,0,0,7.08-7.08ZM9,21.5A12.5,12.5,0,1,1,21.5,34,12.52,12.52,0,0,1,9,21.5Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/service.svg b/public/assets/images/icons/red/service.svg
index 80d12fa276b1a9a6f4b70ca96e8583889406019a..0ec098adc6c1602553e84973812c42f8706b1033 100644
--- a/public/assets/images/icons/red/service.svg
+++ b/public/assets/images/icons/red/service.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/share.svg b/public/assets/images/icons/red/share.svg
index 8ec40bc4fa177711aa6f7c487aeab7a3985d7bc4..8695d9ced0d2c7908ba95663aa1bc7cab0c29691 100644
--- a/public/assets/images/icons/red/share.svg
+++ b/public/assets/images/icons/red/share.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/skype2.svg b/public/assets/images/icons/red/skype2.svg
index e220eaab8fd229a97f82769995ede23027ce1eef..c5ff070147488ba0b27892d3ddb41e8f672d9b1b 100644
--- a/public/assets/images/icons/red/skype2.svg
+++ b/public/assets/images/icons/red/skype2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" shape-rendering="geometricPrecision" fill="#cb1800"><path d="M14.307 9.69c.143-.537.227-1.1.227-1.682a6.525 6.525 0 00-6.525-6.525c-.581 0-1.142.084-1.678.227A3.321 3.321 0 001.71 6.329a6.51 6.51 0 00-.226 1.68 6.525 6.525 0 006.525 6.525 6.45 6.45 0 001.683-.229 3.322 3.322 0 004.615-4.615zm-3.332 1.299a2.43 2.43 0 01-.63.832 3.07 3.07 0 01-1.002.568 3.926 3.926 0 01-1.333.209 4.47 4.47 0 01-1.72-.338 4.481 4.481 0 01-1.464-.96l.908-1.07a3.96 3.96 0 001.083.725 2.93 2.93 0 001.232.277c.496 0 .878-.104 1.145-.311a.996.996 0 00.399-.826.96.96 0 00-.102-.461 1.024 1.024 0 00-.283-.332 2.509 2.509 0 00-.44-.264 9.714 9.714 0 00-.556-.242l-1.205-.529a4.36 4.36 0 01-.65-.34 2.567 2.567 0 01-.576-.487 2.264 2.264 0 01-.562-1.531c0-.352.075-.678.224-.983.149-.3.354-.566.616-.79.262-.227.573-.4.934-.527.361-.127.759-.19 1.192-.19.524 0 1.024.1 1.503.305.478.203.889.477 1.232.818l-.812 1.002a3.653 3.653 0 00-.887-.555 2.577 2.577 0 00-1.036-.203c-.424 0-.76.092-1.009.277a.904.904 0 00-.373.766c0 .17.039.316.116.439.076.122.181.231.312.325.13.096.281.182.453.258.171.078.347.15.528.225l1.192.5c.262.109.503.234.724.381.222.143.411.311.569.498.158.191.28.41.366.658.085.248.128.535.128.861 0 .359-.071.699-.216 1.015z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" shape-rendering="geometricPrecision" fill="#cb1800"><path d="M14.307 9.69c.143-.537.227-1.1.227-1.682a6.525 6.525 0 00-6.525-6.525c-.581 0-1.142.084-1.678.227A3.321 3.321 0 001.71 6.329a6.51 6.51 0 00-.226 1.68 6.525 6.525 0 006.525 6.525 6.45 6.45 0 001.683-.229 3.322 3.322 0 004.615-4.615zm-3.332 1.299a2.43 2.43 0 01-.63.832 3.07 3.07 0 01-1.002.568 3.926 3.926 0 01-1.333.209 4.47 4.47 0 01-1.72-.338 4.481 4.481 0 01-1.464-.96l.908-1.07a3.96 3.96 0 001.083.725 2.93 2.93 0 001.232.277c.496 0 .878-.104 1.145-.311a.996.996 0 00.399-.826.96.96 0 00-.102-.461 1.024 1.024 0 00-.283-.332 2.509 2.509 0 00-.44-.264 9.714 9.714 0 00-.556-.242l-1.205-.529a4.36 4.36 0 01-.65-.34 2.567 2.567 0 01-.576-.487 2.264 2.264 0 01-.562-1.531c0-.352.075-.678.224-.983.149-.3.354-.566.616-.79.262-.227.573-.4.934-.527.361-.127.759-.19 1.192-.19.524 0 1.024.1 1.503.305.478.203.889.477 1.232.818l-.812 1.002a3.653 3.653 0 00-.887-.555 2.577 2.577 0 00-1.036-.203c-.424 0-.76.092-1.009.277a.904.904 0 00-.373.766c0 .17.039.316.116.439.076.122.181.231.312.325.13.096.281.182.453.258.171.078.347.15.528.225l1.192.5c.262.109.503.234.724.381.222.143.411.311.569.498.158.191.28.41.366.658.085.248.128.535.128.861 0 .359-.071.699-.216 1.015z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/smiley.svg b/public/assets/images/icons/red/smiley.svg
index d939985c42aa7a338fc775464dcaf257d4dd8f52..3b4cd38f7eeabf6a1aeee64af809bac8f67a5d70 100644
--- a/public/assets/images/icons/red/smiley.svg
+++ b/public/assets/images/icons/red/smiley.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3Zm0,45A21,21,0,1,1,48,27,21,21,0,0,1,27,48Z"/><path class="a" d="M32.24,25.23c2.18-.15,3.81-2.53,3.63-5.3s-2.11-4.91-4.3-4.77-3.82,2.53-3.63,5.3S30.05,25.37,32.24,25.23Z"/><path class="a" d="M21.26,25.83c2.18-.15,3.81-2.52,3.63-5.3s-2.11-4.91-4.3-4.76S16.77,18.29,17,21.06,19.07,26,21.26,25.83Z"/><path class="a" d="M44.25,23.67a1.5,1.5,0,1,0-3,.42,14.5,14.5,0,0,1-28.72,4.05,1.49,1.49,0,0,0-1.69-1.27A1.51,1.51,0,0,0,9.6,28.58a17.58,17.58,0,0,0,17.32,15,17,17,0,0,0,2.46-.17A17.52,17.52,0,0,0,44.25,23.67Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3Zm0,45A21,21,0,1,1,48,27,21,21,0,0,1,27,48Z"/><path class="a" d="M32.24,25.23c2.18-.15,3.81-2.53,3.63-5.3s-2.11-4.91-4.3-4.77-3.82,2.53-3.63,5.3S30.05,25.37,32.24,25.23Z"/><path class="a" d="M21.26,25.83c2.18-.15,3.81-2.52,3.63-5.3s-2.11-4.91-4.3-4.76S16.77,18.29,17,21.06,19.07,26,21.26,25.83Z"/><path class="a" d="M44.25,23.67a1.5,1.5,0,1,0-3,.42,14.5,14.5,0,0,1-28.72,4.05,1.49,1.49,0,0,0-1.69-1.27A1.51,1.51,0,0,0,9.6,28.58a17.58,17.58,0,0,0,17.32,15,17,17,0,0,0,2.46-.17A17.52,17.52,0,0,0,44.25,23.67Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/spiral.svg b/public/assets/images/icons/red/spiral.svg
index 6a42784bb95274a4304d6064ba47cb6281dc0338..346c9ad57140edeeee7e68bec26e0710b92a122c 100644
--- a/public/assets/images/icons/red/spiral.svg
+++ b/public/assets/images/icons/red/spiral.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="spiral"><path class="cls-1" d="M3,27A24,24,0,1,0,27,3,24,24,0,0,0,3,27ZM44.57,16.35a20.42,20.42,0,0,1-8.48,27A16.06,16.06,0,0,1,14.31,37a12.49,12.49,0,0,1,4.93-17,9.67,9.67,0,0,1,13.12,3.81A7.33,7.33,0,0,1,33,29.47a7.41,7.41,0,0,1-3.55,4.42,5.59,5.59,0,0,1-7.58-2.21,4.13,4.13,0,0,1,1.63-5.61,3,3,0,0,1,4,1.17,1.67,1.67,0,1,0,2.93-1.61,6.33,6.33,0,0,0-8.58-2.49,7.49,7.49,0,0,0-2.95,10.15,8.94,8.94,0,0,0,12.12,3.52,10.73,10.73,0,0,0,4.24-14.58A13,13,0,0,0,17.63,17.1a15.84,15.84,0,0,0-6.25,21.51,19.26,19.26,0,0,0,5.8,6.46A20.56,20.56,0,1,1,44.57,16.35Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="spiral"><path class="cls-1" d="M3,27A24,24,0,1,0,27,3,24,24,0,0,0,3,27ZM44.57,16.35a20.42,20.42,0,0,1-8.48,27A16.06,16.06,0,0,1,14.31,37a12.49,12.49,0,0,1,4.93-17,9.67,9.67,0,0,1,13.12,3.81A7.33,7.33,0,0,1,33,29.47a7.41,7.41,0,0,1-3.55,4.42,5.59,5.59,0,0,1-7.58-2.21,4.13,4.13,0,0,1,1.63-5.61,3,3,0,0,1,4,1.17,1.67,1.67,0,1,0,2.93-1.61,6.33,6.33,0,0,0-8.58-2.49,7.49,7.49,0,0,0-2.95,10.15,8.94,8.94,0,0,0,12.12,3.52,10.73,10.73,0,0,0,4.24-14.58A13,13,0,0,0,17.63,17.1a15.84,15.84,0,0,0-6.25,21.51,19.26,19.26,0,0,0,5.8,6.46A20.56,20.56,0,1,1,44.57,16.35Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/staple.svg b/public/assets/images/icons/red/staple.svg
index 3c9db71fa7b4d40440f92670a1c0c0adb8fede8c..89146d2aff0cfad3f2baa5f7367006f99e442341 100644
--- a/public/assets/images/icons/red/staple.svg
+++ b/public/assets/images/icons/red/staple.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="staple"><path class="cls-1" d="M43.22,9.22a14.61,14.61,0,0,0-20.58,0L6.5,25.27l2.89,2.86,16.13-16a10.51,10.51,0,0,1,14.83,0,10.4,10.4,0,0,1,0,14.75l-16.14,16a7.24,7.24,0,0,1-10.18,0,7.16,7.16,0,0,1,0-10.13l14.13-14h0a3.93,3.93,0,0,1,5.54,0,3.88,3.88,0,0,1,0,5.5l-14.13,14,2.87,2.85,14.14-14a7.9,7.9,0,0,0,0-11.23,8,8,0,0,0-11.24,0h0L11.15,29.89a11.16,11.16,0,0,0,0,15.85,11.34,11.34,0,0,0,15.94,0l16.14-16A14.39,14.39,0,0,0,43.22,9.22Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="staple"><path class="cls-1" d="M43.22,9.22a14.61,14.61,0,0,0-20.58,0L6.5,25.27l2.89,2.86,16.13-16a10.51,10.51,0,0,1,14.83,0,10.4,10.4,0,0,1,0,14.75l-16.14,16a7.24,7.24,0,0,1-10.18,0,7.16,7.16,0,0,1,0-10.13l14.13-14h0a3.93,3.93,0,0,1,5.54,0,3.88,3.88,0,0,1,0,5.5l-14.13,14,2.87,2.85,14.14-14a7.9,7.9,0,0,0,0-11.23,8,8,0,0,0-11.24,0h0L11.15,29.89a11.16,11.16,0,0,0,0,15.85,11.34,11.34,0,0,0,15.94,0l16.14-16A14.39,14.39,0,0,0,43.22,9.22Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/star-empty.svg b/public/assets/images/icons/red/star-empty.svg
index 7a6dfab2caf4d55ed872d686d6755bdddf52324a..b774ecd318bfa7d3d89e5947859ec34a5da4cfdc 100755
--- a/public/assets/images/icons/red/star-empty.svg
+++ b/public/assets/images/icons/red/star-empty.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M10.707 9.59l4.38-3.18H9.672L8.001 1.26 6.328 6.41H.913l4.38 3.18-1.67 5.15 4.378-3.183 4.376 3.183-1.67-5.15zm-1.173-.395l2.481-1.802H8.947l-.946-2.917-.948 2.917H3.985l2.481 1.802-.946 2.918 2.481-1.803 2.479 1.803-.946-2.918z" fill="#cb1800"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M10.707 9.59l4.38-3.18H9.672L8.001 1.26 6.328 6.41H.913l4.38 3.18-1.67 5.15 4.378-3.183 4.376 3.183-1.67-5.15zm-1.173-.395l2.481-1.802H8.947l-.946-2.917-.948 2.917H3.985l2.481 1.802-.946 2.918 2.481-1.803 2.479 1.803-.946-2.918z" fill="#cb1800"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/star-halffull.svg b/public/assets/images/icons/red/star-halffull.svg
index 629d93289dc32363fe5b4a53d977299b8da4f429..d264e8fc599fa92b481a4b7ba7f5de1fcb8be4bc 100755
--- a/public/assets/images/icons/red/star-halffull.svg
+++ b/public/assets/images/icons/red/star-halffull.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M8 11.558L3.623 14.74l1.67-5.151-4.38-3.18h5.415L8.001 1.26l1.671 5.149h5.415l-4.38 3.18 1.67 5.151-4.376-3.183-.001.001.001-1.248 2.479 1.803-.946-2.918 2.481-1.802H8.947l-.946-2.917L8 4.478v7.08z" fill="#cb1800"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M8 11.558L3.623 14.74l1.67-5.151-4.38-3.18h5.415L8.001 1.26l1.671 5.149h5.415l-4.38 3.18 1.67 5.151-4.376-3.183-.001.001.001-1.248 2.479 1.803-.946-2.918 2.481-1.802H8.947l-.946-2.917L8 4.478v7.08z" fill="#cb1800"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/stop.svg b/public/assets/images/icons/red/stop.svg
index a34cb9529a5685018f7e2d3be562b5e4a9ea2509..d5b0403edc8b12c62f9ca5119a85f51ecdadc139 100644
--- a/public/assets/images/icons/red/stop.svg
+++ b/public/assets/images/icons/red/stop.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><rect class="a" x="10" y="8" width="34" height="38"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><rect class="a" x="10" y="8" width="34" height="38"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/table-of-contents.svg b/public/assets/images/icons/red/table-of-contents.svg
index dfc32d5b2ad085e6d62c3861549f216e130d300d..5326145afeb212c27c2a4bb8107cc60ae20ebbc3 100644
--- a/public/assets/images/icons/red/table-of-contents.svg
+++ b/public/assets/images/icons/red/table-of-contents.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="table-of-contents"><rect class="cls-1" x="40.71" y="2.89" width="10.29" height="6.86"/><rect class="cls-1" x="3" y="2.89" width="30.86" height="6.86"/><rect class="cls-1" x="3" y="16.61" width="30.86" height="6.86"/><rect class="cls-1" x="13.29" y="30.32" width="20.57" height="6.86"/><rect class="cls-1" x="3" y="44.04" width="30.86" height="6.86"/><rect class="cls-1" x="40.71" y="16.61" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="30.32" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="44.04" width="10.29" height="6.86"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="table-of-contents"><rect class="cls-1" x="40.71" y="2.89" width="10.29" height="6.86"/><rect class="cls-1" x="3" y="2.89" width="30.86" height="6.86"/><rect class="cls-1" x="3" y="16.61" width="30.86" height="6.86"/><rect class="cls-1" x="13.29" y="30.32" width="20.57" height="6.86"/><rect class="cls-1" x="3" y="44.04" width="30.86" height="6.86"/><rect class="cls-1" x="40.71" y="16.61" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="30.32" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="44.04" width="10.29" height="6.86"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/test.svg b/public/assets/images/icons/red/test.svg
index 5d123a2c1ece5086266cc85adaeb48989da469d1..bf8f2386c800c441a9141e59580e8547d77dcf4c 100644
--- a/public/assets/images/icons/red/test.svg
+++ b/public/assets/images/icons/red/test.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="test"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><polygon class="cls-1" points="49 8.99 46.54 6.5 40.58 12.53 37.45 9.38 35 11.86 40.58 17.5 49 8.99"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="test"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><polygon class="cls-1" points="49 8.99 46.54 6.5 40.58 12.53 37.45 9.38 35 11.86 40.58 17.5 49 8.99"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/tools.svg b/public/assets/images/icons/red/tools.svg
index 52ddd3d3b317bffdaf8871b7d19166dcc69a9f53..f89f8ce6d2b635ee11547991b11487f45c3ca3ad 100644
--- a/public/assets/images/icons/red/tools.svg
+++ b/public/assets/images/icons/red/tools.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="tools"><path class="cls-1" d="M49.32,40.2,37.15,28,28,37.15,40.18,49.31a6.47,6.47,0,0,0,9.14-9.11Z"/><path class="cls-1" d="M26.08,16.94A11.61,11.61,0,0,0,11.28,3.51l6.35,6.36-1.84,5.72L9.86,17.64,3.5,11.27A11.63,11.63,0,0,0,16.93,26.09Z"/><g id="Edit"><polygon class="cls-1" points="3.12 50.72 8.73 48.99 4.91 45.16 3.12 50.72"/><polygon class="cls-1" points="6.53 39.85 14.02 47.39 44.34 17.21 36.85 9.67 6.53 39.85"/><path class="cls-1" d="M49.44,4.65A5.31,5.31,0,0,0,42,4.6l-3,3,7.49,7.55,3-3h0A5.31,5.31,0,0,0,49.44,4.65Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="tools"><path class="cls-1" d="M49.32,40.2,37.15,28,28,37.15,40.18,49.31a6.47,6.47,0,0,0,9.14-9.11Z"/><path class="cls-1" d="M26.08,16.94A11.61,11.61,0,0,0,11.28,3.51l6.35,6.36-1.84,5.72L9.86,17.64,3.5,11.27A11.63,11.63,0,0,0,16.93,26.09Z"/><g id="Edit"><polygon class="cls-1" points="3.12 50.72 8.73 48.99 4.91 45.16 3.12 50.72"/><polygon class="cls-1" points="6.53 39.85 14.02 47.39 44.34 17.21 36.85 9.67 6.53 39.85"/><path class="cls-1" d="M49.44,4.65A5.31,5.31,0,0,0,42,4.6l-3,3,7.49,7.55,3-3h0A5.31,5.31,0,0,0,49.44,4.65Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/topic.svg b/public/assets/images/icons/red/topic.svg
index 2bae6d10d6eb22ebcaa672aa6a3b57b9dc17102a..8f3b161a89f282585d3ff13ff9c2932cb709b330 100644
--- a/public/assets/images/icons/red/topic.svg
+++ b/public/assets/images/icons/red/topic.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="topic"><path d="M42,9V48H12V9H42m3-3H9V51H45V6Z"/><rect x="20.81" y="3" width="12.09" height="8.9"/><rect x="18" y="23.81" width="17.99" height="6.06"/><rect x="18" y="32.8" width="17.99" height="6.3"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="topic"><path d="M42,9V48H12V9H42m3-3H9V51H45V6Z"/><rect x="20.81" y="3" width="12.09" height="8.9"/><rect x="18" y="23.81" width="17.99" height="6.06"/><rect x="18" y="32.8" width="17.99" height="6.3"/></g></svg>
diff --git a/public/assets/images/icons/red/trash.svg b/public/assets/images/icons/red/trash.svg
index 4e9d5286ae751495379fe0b7ad3c16dd8594b542..a50ac2b53657565edf719fa492189f582de6b08a 100644
--- a/public/assets/images/icons/red/trash.svg
+++ b/public/assets/images/icons/red/trash.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M43,8H34.88a6.22,6.22,0,0,0-6.1-5H25.22a6.22,6.22,0,0,0-6.1,5H11a3,3,0,0,0-3,3v2H46V11A3,3,0,0,0,43,8ZM25.22,6h3.56a3.22,3.22,0,0,1,3,2H22.24A3.22,3.22,0,0,1,25.22,6Z"/><path class="a" d="M11,48a3,3,0,0,0,3,3H40a3,3,0,0,0,3-3V15H11Zm3-30H40V48H14Z"/><rect class="a" x="17" y="19.97" width="4" height="26"/><rect class="a" x="25" y="19.97" width="4" height="26"/><rect class="a" x="33" y="19.97" width="4" height="26"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M43,8H34.88a6.22,6.22,0,0,0-6.1-5H25.22a6.22,6.22,0,0,0-6.1,5H11a3,3,0,0,0-3,3v2H46V11A3,3,0,0,0,43,8ZM25.22,6h3.56a3.22,3.22,0,0,1,3,2H22.24A3.22,3.22,0,0,1,25.22,6Z"/><path class="a" d="M11,48a3,3,0,0,0,3,3H40a3,3,0,0,0,3-3V15H11Zm3-30H40V48H14Z"/><rect class="a" x="17" y="19.97" width="4" height="26"/><rect class="a" x="25" y="19.97" width="4" height="26"/><rect class="a" x="33" y="19.97" width="4" height="26"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/upload.svg b/public/assets/images/icons/red/upload.svg
index 10547b25898c5b28ebcaab76b8992dfef134b4d3..f7afa885f050275aed1a0672d20483c2b2bb037a 100644
--- a/public/assets/images/icons/red/upload.svg
+++ b/public/assets/images/icons/red/upload.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/upload2.svg b/public/assets/images/icons/red/upload2.svg
index 10547b25898c5b28ebcaab76b8992dfef134b4d3..f7afa885f050275aed1a0672d20483c2b2bb037a 100644
--- a/public/assets/images/icons/red/upload2.svg
+++ b/public/assets/images/icons/red/upload2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/vcard.svg b/public/assets/images/icons/red/vcard.svg
index 5e90bc5775a6f8c96340bbe1644ea73a11e23506..a6d10e40ebd3da7b3551018ee04a430b899ca2a2 100644
--- a/public/assets/images/icons/red/vcard.svg
+++ b/public/assets/images/icons/red/vcard.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,10V44H51V10Zm8,31V36.21A1.23,1.23,0,0,1,12.24,35H23.76A1.24,1.24,0,0,1,25,36.21V41Zm37,0H28V36.21A4.24,4.24,0,0,0,23.76,32H12.24A4.24,4.24,0,0,0,8,36.21V41H6V13H48Z"/><path class="a" d="M18.1,31a7,7,0,1,0-7-7A7,7,0,0,0,18.1,31Zm0-10.91A3.91,3.91,0,1,1,14.2,24,3.92,3.92,0,0,1,18.1,20.06Z"/><rect class="a" x="31" y="17.97" width="14" height="4"/><rect class="a" x="31" y="24.97" width="14" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#cb1800;}</style></defs><path class="a" d="M3,10V44H51V10Zm8,31V36.21A1.23,1.23,0,0,1,12.24,35H23.76A1.24,1.24,0,0,1,25,36.21V41Zm37,0H28V36.21A4.24,4.24,0,0,0,23.76,32H12.24A4.24,4.24,0,0,0,8,36.21V41H6V13H48Z"/><path class="a" d="M18.1,31a7,7,0,1,0-7-7A7,7,0,0,0,18.1,31Zm0-10.91A3.91,3.91,0,1,1,14.2,24,3.92,3.92,0,0,1,18.1,20.06Z"/><rect class="a" x="31" y="17.97" width="14" height="4"/><rect class="a" x="31" y="24.97" width="14" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/video.svg b/public/assets/images/icons/red/video.svg
index 22c02f8e4dce97adc64597b7b82c48ae3eaed1cf..575861edc6a129148684357317dfb11c515f9d78 100644
--- a/public/assets/images/icons/red/video.svg
+++ b/public/assets/images/icons/red/video.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="video"><path class="cls-1" d="M48,15l-9,6V15.67A3.68,3.68,0,0,0,35.33,12H6.67A3.68,3.68,0,0,0,3,15.67V38.33A3.68,3.68,0,0,0,6.67,42H35.33A3.68,3.68,0,0,0,39,38.33V33l9,6h3V15ZM35.65,38.33a.33.33,0,0,1-.32.32H6.67a.33.33,0,0,1-.32-.32V15.67a.33.33,0,0,1,.32-.32H35.33a.33.33,0,0,1,.32.32Z"/><polygon class="cls-1" points="15 36 28.5 27 15 18 15 36"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="video"><path class="cls-1" d="M48,15l-9,6V15.67A3.68,3.68,0,0,0,35.33,12H6.67A3.68,3.68,0,0,0,3,15.67V38.33A3.68,3.68,0,0,0,6.67,42H35.33A3.68,3.68,0,0,0,39,38.33V33l9,6h3V15ZM35.65,38.33a.33.33,0,0,1-.32.32H6.67a.33.33,0,0,1-.32-.32V15.67a.33.33,0,0,1,.32-.32H35.33a.33.33,0,0,1,.32.32Z"/><polygon class="cls-1" points="15 36 28.5 27 15 18 15 36"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/video2.svg b/public/assets/images/icons/red/video2.svg
index 1f10096c2460082a34f31670eed1ad5c39734eb7..b1e1bfdfb4ffb41d09558a908e51ddb2742d79be 100644
--- a/public/assets/images/icons/red/video2.svg
+++ b/public/assets/images/icons/red/video2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="video2"><path class="cls-1" d="M4.76,17.82,50.48,13l-.54-5.17a2.07,2.07,0,0,0-2-1.85h-.22L5.09,10.49a2.07,2.07,0,0,0-1.84,2.27l.55,5.16h0V43.79A4.2,4.2,0,0,0,8,48H46.55a4.2,4.2,0,0,0,4.21-4.21v-26Zm5.94,3.36L7.17,24.71V21.18ZM46.55,44.65H8a.86.86,0,0,1-.85-.86V27.88H8.73l6.71-6.7h3.19l-6.7,6.7h4.74l6.71-6.7h3.19l-6.71,6.7H24.6l6.71-6.7h3.2l-6.71,6.7h4.74l6.71-6.7h3.19l-6.71,6.7h4.75l6.7-6.7h.23v3l-3.74,3.73h3.74V43.79A.87.87,0,0,1,46.55,44.65Z"/><polygon class="cls-1" points="22.26 43.02 32.32 36.31 22.26 29.6 22.26 43.02"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="video2"><path class="cls-1" d="M4.76,17.82,50.48,13l-.54-5.17a2.07,2.07,0,0,0-2-1.85h-.22L5.09,10.49a2.07,2.07,0,0,0-1.84,2.27l.55,5.16h0V43.79A4.2,4.2,0,0,0,8,48H46.55a4.2,4.2,0,0,0,4.21-4.21v-26Zm5.94,3.36L7.17,24.71V21.18ZM46.55,44.65H8a.86.86,0,0,1-.85-.86V27.88H8.73l6.71-6.7h3.19l-6.7,6.7h4.74l6.71-6.7h3.19l-6.71,6.7H24.6l6.71-6.7h3.2l-6.71,6.7h4.74l6.71-6.7h3.19l-6.71,6.7h4.75l6.7-6.7h.23v3l-3.74,3.73h3.74V43.79A.87.87,0,0,1,46.55,44.65Z"/><polygon class="cls-1" points="22.26 43.02 32.32 36.31 22.26 29.6 22.26 43.02"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/visibility-checked.svg b/public/assets/images/icons/red/visibility-checked.svg
index d31d6d94d318b7f7b2839a066273fcc2e90b90bc..33d13fecaad56cff5ad67ae010daf37259f1502c 100644
--- a/public/assets/images/icons/red/visibility-checked.svg
+++ b/public/assets/images/icons/red/visibility-checked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
diff --git a/public/assets/images/icons/red/visibility-checked2.svg b/public/assets/images/icons/red/visibility-checked2.svg
index d31d6d94d318b7f7b2839a066273fcc2e90b90bc..33d13fecaad56cff5ad67ae010daf37259f1502c 100644
--- a/public/assets/images/icons/red/visibility-checked2.svg
+++ b/public/assets/images/icons/red/visibility-checked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
diff --git a/public/assets/images/icons/red/visibility-invisible.svg b/public/assets/images/icons/red/visibility-invisible.svg
index b4ec3f266abefa350b847b6dac78562c95cfd124..fd7b9f344dd536d0ac8994744c75b3a015b2f506 100644
--- a/public/assets/images/icons/red/visibility-invisible.svg
+++ b/public/assets/images/icons/red/visibility-invisible.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g></svg>
diff --git a/public/assets/images/icons/red/visibility-visible.svg b/public/assets/images/icons/red/visibility-visible.svg
index dc524c01b8103da33eec735c92a7c99be1a394b3..0b5bfaec877baae25b24bbaa3b596ba56f445b0e 100644
--- a/public/assets/images/icons/red/visibility-visible.svg
+++ b/public/assets/images/icons/red/visibility-visible.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="visibility-visible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/><path d="M27,18a9.08,9.08,0,0,0-2.51.39A4.11,4.11,0,0,1,26.3,21.7a4.18,4.18,0,0,1-4.19,4.19,4.13,4.13,0,0,1-3.54-2.08A8.82,8.82,0,0,0,18,27a9,9,0,1,0,9-9Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="visibility-visible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/><path d="M27,18a9.08,9.08,0,0,0-2.51.39A4.11,4.11,0,0,1,26.3,21.7a4.18,4.18,0,0,1-4.19,4.19,4.13,4.13,0,0,1-3.54-2.08A8.82,8.82,0,0,0,18,27a9,9,0,1,0,9-9Z"/></g></svg>
diff --git a/public/assets/images/icons/red/vote-stopped.svg b/public/assets/images/icons/red/vote-stopped.svg
index 69aad8f95df8e6ef3232051434f8096020a73b2d..d52cef1873d1171eec893b7e972e4c973acf73f4 100644
--- a/public/assets/images/icons/red/vote-stopped.svg
+++ b/public/assets/images/icons/red/vote-stopped.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="vote-stopped"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><rect class="cls-1" x="-1.53" y="25.22" width="57.55" height="3" transform="translate(-10.76 23.33) rotate(-39.35)"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="vote-stopped"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><rect class="cls-1" x="-1.53" y="25.22" width="57.55" height="3" transform="translate(-10.76 23.33) rotate(-39.35)"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/vote.svg b/public/assets/images/icons/red/vote.svg
index 48f871b3993cd004e107298362c4cc3d7745f3d3..d3198631c7dd5999ffdc897bba061cae8f666982 100644
--- a/public/assets/images/icons/red/vote.svg
+++ b/public/assets/images/icons/red/vote.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="vote"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="vote"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/wiki.svg b/public/assets/images/icons/red/wiki.svg
index e2fed62986942912b174ebea575e419a1efeb4c9..9ee7b45b777d160179c1f563a926fec7a0ad1925 100644
--- a/public/assets/images/icons/red/wiki.svg
+++ b/public/assets/images/icons/red/wiki.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="wiki"><path class="cls-1" d="M49.83,15a15.17,15.17,0,0,1-10.17,7.9,31.41,31.41,0,0,1,3.45,11.38C46.63,32.05,53.82,25.94,49.83,15ZM4.17,15c-4,10.94,3.2,17,6.72,19.28A31.41,31.41,0,0,1,14.34,22.9,15.17,15.17,0,0,1,4.17,15ZM27,16c-7.1,0-12.85,10.31-12.85,23h25.7C39.85,26.29,34.1,16,27,16Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#cb1800;}</style></defs><g id="wiki"><path class="cls-1" d="M49.83,15a15.17,15.17,0,0,1-10.17,7.9,31.41,31.41,0,0,1,3.45,11.38C46.63,32.05,53.82,25.94,49.83,15ZM4.17,15c-4,10.94,3.2,17,6.72,19.28A31.41,31.41,0,0,1,14.34,22.9,15.17,15.17,0,0,1,4.17,15ZM27,16c-7.1,0-12.85,10.31-12.85,23h25.7C39.85,26.29,34.1,16,27,16Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/red/zoom-in.svg b/public/assets/images/icons/red/zoom-in.svg
index fac3315f85b329497941202bae9ff73b02bf5d44..d691e2db832477d29026ab72c62c08e6896b2496 100644
--- a/public/assets/images/icons/red/zoom-in.svg
+++ b/public/assets/images/icons/red/zoom-in.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="zoom-in"><polygon points="30.44 2.99 30.44 6.42 47.57 6.42 47.57 23.55 51 23.55 51 2.99 30.44 2.99"/><polygon points="6.44 30.41 3.02 30.41 3.02 50.97 23.58 50.97 23.58 47.54 6.44 47.54 6.44 30.41"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="zoom-in"><polygon points="30.44 2.99 30.44 6.42 47.57 6.42 47.57 23.55 51 23.55 51 2.99 30.44 2.99"/><polygon points="6.44 30.41 3.02 30.41 3.02 50.97 23.58 50.97 23.58 47.54 6.44 47.54 6.44 30.41"/></g></svg>
diff --git a/public/assets/images/icons/red/zoom-in2.svg b/public/assets/images/icons/red/zoom-in2.svg
index f542a66cc961a8a6aa89d711b2f3c87d24db77ce..155baae48c9dd66c365e226778218fc1c22734d6 100644
--- a/public/assets/images/icons/red/zoom-in2.svg
+++ b/public/assets/images/icons/red/zoom-in2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="zoom-in2"><path d="M39,15V39H15V15H39m3-3H12V42H42V12Z"/><polygon points="50.98 20.99 47.99 20.99 47.99 6 32.99 6 32.99 3 50.98 3 50.98 20.99"/><polygon points="21 50.98 3.01 50.98 3.01 32.99 6 32.99 6 47.98 21 47.98 21 50.98"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="zoom-in2"><path d="M39,15V39H15V15H39m3-3H12V42H42V12Z"/><polygon points="50.98 20.99 47.99 20.99 47.99 6 32.99 6 32.99 3 50.98 3 50.98 20.99"/><polygon points="21 50.98 3.01 50.98 3.01 32.99 6 32.99 6 47.98 21 47.98 21 50.98"/></g></svg>
diff --git a/public/assets/images/icons/red/zoom-out.svg b/public/assets/images/icons/red/zoom-out.svg
index 02213ffff47fd23f03be90f95f6c485bb0d1551c..f9ed570f09fd58461cce9ebbdfc92a07994eee74 100644
--- a/public/assets/images/icons/red/zoom-out.svg
+++ b/public/assets/images/icons/red/zoom-out.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="zoom-out"><polygon points="51 23.55 30.44 23.55 30.44 2.99 33.86 2.99 33.86 20.12 51 20.12 51 23.55"/><polygon points="23.58 50.97 20.15 50.97 20.15 33.83 3.02 33.83 3.02 30.41 23.58 30.41 23.58 50.97"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="zoom-out"><polygon points="51 23.55 30.44 23.55 30.44 2.99 33.86 2.99 33.86 20.12 51 20.12 51 23.55"/><polygon points="23.58 50.97 20.15 50.97 20.15 33.83 3.02 33.83 3.02 30.41 23.58 30.41 23.58 50.97"/></g></svg>
diff --git a/public/assets/images/icons/red/zoom-out2.svg b/public/assets/images/icons/red/zoom-out2.svg
index 10f7ba0787915a12508bb2c9a7dab6016b883d87..93da16ea7609bb9ae8b41d616176b7e410d713b1 100644
--- a/public/assets/images/icons/red/zoom-out2.svg
+++ b/public/assets/images/icons/red/zoom-out2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="zoom-out2"><path d="M51,18H42V12H36V3H33v9H12V33H3v3h9v6h6v9h3V42H42V21h9ZM39,15v3H36V15ZM15,39V36h3v3Zm24,0H21V33H15V15H33v6h6Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#cb1800"><g id="zoom-out2"><path d="M51,18H42V12H36V3H33v9H12V33H3v3h9v6h6v9h3V42H42V21h9ZM39,15v3H36V15ZM15,39V36h3v3Zm24,0H21V33H15V15H33v6h6Z"/></g></svg>
diff --git a/public/assets/images/icons/white/60a.svg b/public/assets/images/icons/white/60a.svg
index 4931cad7f76d8115464224eeb601adcd34866e3d..2b8dc032a3a577f24d910b580d2c1a568f92b13b 100644
--- a/public/assets/images/icons/white/60a.svg
+++ b/public/assets/images/icons/white/60a.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.09 8.09c0-1.57.82-2.28 1.7-2.28A1.69 1.69 0 016 6.32l-.5.58a.93.93 0 00-.65-.3C4.37 6.6 4 7 4 8.09s.33 1.35.68 1.35.53-.2.53-.68-.21-.61-.57-.61a.76.76 0 00-.64.46L3.94 8a1.18 1.18 0 01.89-.5 1.16 1.16 0 011.25 1.26 1.35 1.35 0 01-1.4 1.41c-.81 0-1.59-.61-1.59-2.08zM6.56 8c0-1.43.6-2.16 1.5-2.16S9.57 6.55 9.57 8s-.6 2.2-1.51 2.2-1.5-.8-1.5-2.2zm2.09 0c0-1.14-.26-1.4-.59-1.4s-.58.26-.58 1.4.26 1.45.58 1.45.59-.33.59-1.45zm1.44 1.18c0-.69.55-1.06 1.85-1.2a.46.46 0 00-.52-.47 1.79 1.79 0 00-.87.29l-.35-.64a2.74 2.74 0 011.4-.43c.84 0 1.31.48 1.31 1.49v1.87h-.8L12 9.76a1.46 1.46 0 01-.95.41.94.94 0 01-.96-.99zm1.85 0v-.61c-.7.09-.92.29-.92.54s.14.31.37.31a.76.76 0 00.55-.28zM8 1a7 7 0 107 7 7 7 0 00-7-7zm0 12.61A5.61 5.61 0 1113.61 8 5.62 5.62 0 018 13.61z" fill="#fff"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.09 8.09c0-1.57.82-2.28 1.7-2.28A1.69 1.69 0 016 6.32l-.5.58a.93.93 0 00-.65-.3C4.37 6.6 4 7 4 8.09s.33 1.35.68 1.35.53-.2.53-.68-.21-.61-.57-.61a.76.76 0 00-.64.46L3.94 8a1.18 1.18 0 01.89-.5 1.16 1.16 0 011.25 1.26 1.35 1.35 0 01-1.4 1.41c-.81 0-1.59-.61-1.59-2.08zM6.56 8c0-1.43.6-2.16 1.5-2.16S9.57 6.55 9.57 8s-.6 2.2-1.51 2.2-1.5-.8-1.5-2.2zm2.09 0c0-1.14-.26-1.4-.59-1.4s-.58.26-.58 1.4.26 1.45.58 1.45.59-.33.59-1.45zm1.44 1.18c0-.69.55-1.06 1.85-1.2a.46.46 0 00-.52-.47 1.79 1.79 0 00-.87.29l-.35-.64a2.74 2.74 0 011.4-.43c.84 0 1.31.48 1.31 1.49v1.87h-.8L12 9.76a1.46 1.46 0 01-.95.41.94.94 0 01-.96-.99zm1.85 0v-.61c-.7.09-.92.29-.92.54s.14.31.37.31a.76.76 0 00.55-.28zM8 1a7 7 0 107 7 7 7 0 00-7-7zm0 12.61A5.61 5.61 0 1113.61 8 5.62 5.62 0 018 13.61z" fill="#fff"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/accept.svg b/public/assets/images/icons/white/accept.svg
index 6ef99f0c10562a0619e1a86891ebcaabc61e3153..4cbd2d434812953e5bd7b2211d763159c8947f55 100644
--- a/public/assets/images/icons/white/accept.svg
+++ b/public/assets/images/icons/white/accept.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/activity.svg b/public/assets/images/icons/white/activity.svg
index 66c0aceea5255ea5398cafa57372e44360926222..d2aa18dacda0aca8dab7b2f795b15098c935ec0b 100644
--- a/public/assets/images/icons/white/activity.svg
+++ b/public/assets/images/icons/white/activity.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
diff --git a/public/assets/images/icons/white/add-circle-full.svg b/public/assets/images/icons/white/add-circle-full.svg
index bdbeb2cb263299202c4f26a42ff54d10b0aa78e8..39945f2c04a8eac565eaf48feac218ccc5190b97 100644
--- a/public/assets/images/icons/white/add-circle-full.svg
+++ b/public/assets/images/icons/white/add-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/add-circle.svg b/public/assets/images/icons/white/add-circle.svg
index bdbeb2cb263299202c4f26a42ff54d10b0aa78e8..39945f2c04a8eac565eaf48feac218ccc5190b97 100644
--- a/public/assets/images/icons/white/add-circle.svg
+++ b/public/assets/images/icons/white/add-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/add.svg b/public/assets/images/icons/white/add.svg
index 254fc9ae8909a991bd472a7138942c5a241d5764..f845b474c6c45bc467ad463db03f5d3c63d32b2d 100644
--- a/public/assets/images/icons/white/add.svg
+++ b/public/assets/images/icons/white/add.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/admin.svg b/public/assets/images/icons/white/admin.svg
index ef1be15d7fb247a4b9411789ab678448d2171092..4aa25e9b20af52c69a66d7000b528b2c2c9a223a 100644
--- a/public/assets/images/icons/white/admin.svg
+++ b/public/assets/images/icons/white/admin.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/aladdin.svg b/public/assets/images/icons/white/aladdin.svg
index 24f2ab5085b4a096d913166eb5523b87986ee7ae..6dce5ab8caafef4718b9b2c6d6017f0d39c6598b 100644
--- a/public/assets/images/icons/white/aladdin.svg
+++ b/public/assets/images/icons/white/aladdin.svg
@@ -1 +1 @@
-<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
+<svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
diff --git a/public/assets/images/icons/white/archive.svg b/public/assets/images/icons/white/archive.svg
index 98b6fb4226319c3f24e10a242d60ebbb241155c9..e205839a7b17fcc351c3f039339ef1e109299df6 100644
--- a/public/assets/images/icons/white/archive.svg
+++ b/public/assets/images/icons/white/archive.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
diff --git a/public/assets/images/icons/white/arr_1down.svg b/public/assets/images/icons/white/arr_1down.svg
index db888b4997dc9dea561ce9a29f215547b04c9565..a423d0e880858cf1f74923d5dfa7deeb64cd0b95 100644
--- a/public/assets/images/icons/white/arr_1down.svg
+++ b/public/assets/images/icons/white/arr_1down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/arr_1left.svg b/public/assets/images/icons/white/arr_1left.svg
index 22aaf6ebffbbddee405b11c872c3636a526067eb..e37cc5f075d7e05fa7bffabca459cbf804dfe3a3 100644
--- a/public/assets/images/icons/white/arr_1left.svg
+++ b/public/assets/images/icons/white/arr_1left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/arr_1right.svg b/public/assets/images/icons/white/arr_1right.svg
index 03fd2d4ea8ce568c15a75a8a3f5fe3dd5bc0e03c..b72b903899951d06a97a89928b346bd0b2a1bfe7 100644
--- a/public/assets/images/icons/white/arr_1right.svg
+++ b/public/assets/images/icons/white/arr_1right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/arr_1sort.svg b/public/assets/images/icons/white/arr_1sort.svg
index a3669d1dc0d2bd117446d35c90f68b1a9a8df3a1..16fde1f3f73a2053d71e1b9bd5e0e204e091da26 100755
--- a/public/assets/images/icons/white/arr_1sort.svg
+++ b/public/assets/images/icons/white/arr_1sort.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/arr_1up.svg b/public/assets/images/icons/white/arr_1up.svg
index f62a9748fa77adf7b1e22af19a0f3037c3af2d8a..cebcdcb0ee0f4491487f1cec28beab4e707d2ad4 100644
--- a/public/assets/images/icons/white/arr_1up.svg
+++ b/public/assets/images/icons/white/arr_1up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/arr_2down.svg b/public/assets/images/icons/white/arr_2down.svg
index 409ab63d3be1887cea8fef0d2680c93ddc093e8d..1411d69638e4e50bade34cb6430a0b0c0566b433 100644
--- a/public/assets/images/icons/white/arr_2down.svg
+++ b/public/assets/images/icons/white/arr_2down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/arr_2left.svg b/public/assets/images/icons/white/arr_2left.svg
index 61d0a8c77947e152de94b55f9f2dc6c70bf1e638..7db460948eb5eaaa4341ebb76b66c99c888703e6 100644
--- a/public/assets/images/icons/white/arr_2left.svg
+++ b/public/assets/images/icons/white/arr_2left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/arr_2right.svg b/public/assets/images/icons/white/arr_2right.svg
index 412a127df4fc44c325490bf73011b6d6dc3305a4..a7e91527c40711014122bf0c6841f552bc12a79f 100644
--- a/public/assets/images/icons/white/arr_2right.svg
+++ b/public/assets/images/icons/white/arr_2right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/arr_2up.svg b/public/assets/images/icons/white/arr_2up.svg
index 29b7eb03119991a4bad43be0f8703fe3df8d6621..769c6d0a0c498782750216342670957cf5908bb0 100644
--- a/public/assets/images/icons/white/arr_2up.svg
+++ b/public/assets/images/icons/white/arr_2up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/arr_eol-down.svg b/public/assets/images/icons/white/arr_eol-down.svg
index 3708eabaf8cfb167e43340942b2d060b70cef434..757df61d9ee37d9e38ae8a32b2ebec7e63d602cf 100644
--- a/public/assets/images/icons/white/arr_eol-down.svg
+++ b/public/assets/images/icons/white/arr_eol-down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="47.98 10.98 37.36 10.98 26.98 21.36 16.61 10.98 5.99 10.98 26.98 31.98 47.98 10.98"/><rect class="a" x="24.51" y="19.48" width="5" height="42" transform="translate(67.5 13.47) rotate(90)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="47.98 10.98 37.36 10.98 26.98 21.36 16.61 10.98 5.99 10.98 26.98 31.98 47.98 10.98"/><rect class="a" x="24.51" y="19.48" width="5" height="42" transform="translate(67.5 13.47) rotate(90)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/arr_eol-left.svg b/public/assets/images/icons/white/arr_eol-left.svg
index 9d545224922657778962a2364829be0ee662f70e..3046131c163226831e3744752d0f447fd9239bbe 100644
--- a/public/assets/images/icons/white/arr_eol-left.svg
+++ b/public/assets/images/icons/white/arr_eol-left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="43 6 43 16.63 32.63 27 43 37.37 43 48 22 27 43 6"/><rect class="a" x="11" y="5.97" width="5" height="42" transform="translate(27 53.94) rotate(-180)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="43 6 43 16.63 32.63 27 43 37.37 43 48 22 27 43 6"/><rect class="a" x="11" y="5.97" width="5" height="42" transform="translate(27 53.94) rotate(-180)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/arr_eol-right.svg b/public/assets/images/icons/white/arr_eol-right.svg
index 58c816a167f83bcdf6f7955fb9f15a7c6a16f45f..751f025767ead8ea9933e1556db270dc011038c7 100644
--- a/public/assets/images/icons/white/arr_eol-right.svg
+++ b/public/assets/images/icons/white/arr_eol-right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="11 6 11 16.63 21.37 27 11 37.37 11 48 32 27 11 6"/><rect class="a" x="38" y="5.97" width="5" height="42"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="11 6 11 16.63 21.37 27 11 37.37 11 48 32 27 11 6"/><rect class="a" x="38" y="5.97" width="5" height="42"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/arr_eol-up.svg b/public/assets/images/icons/white/arr_eol-up.svg
index 2b0c8437aa975f1a4c46265fac569a5cac5b28b9..5b72436082f3209845986490c71a309b21957129 100644
--- a/public/assets/images/icons/white/arr_eol-up.svg
+++ b/public/assets/images/icons/white/arr_eol-up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="6.01 42.98 16.64 42.98 27.02 32.61 37.39 42.98 48.02 42.98 27.02 21.98 6.01 42.98"/><rect class="a" x="24.48" y="-7.51" width="5" height="42" transform="translate(13.5 40.47) rotate(-90)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="6.01 42.98 16.64 42.98 27.02 32.61 37.39 42.98 48.02 42.98 27.02 21.98 6.01 42.98"/><rect class="a" x="24.48" y="-7.51" width="5" height="42" transform="translate(13.5 40.47) rotate(-90)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/audio.svg b/public/assets/images/icons/white/audio.svg
index c5d5565ae00aca1006c4d70bf3bb8a4005432440..654b13a069c4fb51b274a8620ac11b0fbdbcd217 100644
--- a/public/assets/images/icons/white/audio.svg
+++ b/public/assets/images/icons/white/audio.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/audio2.svg b/public/assets/images/icons/white/audio2.svg
index c5d5565ae00aca1006c4d70bf3bb8a4005432440..654b13a069c4fb51b274a8620ac11b0fbdbcd217 100644
--- a/public/assets/images/icons/white/audio2.svg
+++ b/public/assets/images/icons/white/audio2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/audio3.svg b/public/assets/images/icons/white/audio3.svg
index 4eac1bf6e70d84ae33b26cff61071a24f1347365..d52afcaa77cbcc052d1a179ba8b5b41a2e828740 100644
--- a/public/assets/images/icons/white/audio3.svg
+++ b/public/assets/images/icons/white/audio3.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="audio3"><path class="cls-1" d="M40.75,10H3.17V40.72a3.42,3.42,0,0,0,3.41,3.42h41A3.42,3.42,0,0,0,51,40.72V10Zm6.4,30.31H7V13.82h6.4v6.4H40.75v-6.4h6.4Z"/><path class="cls-1" d="M35.62,23.73a5.08,5.08,0,0,0-4.84,6.74H23.35a5.11,5.11,0,1,0-5.67,3.33v.09h17a5.64,5.64,0,0,0,.93.09,5.13,5.13,0,1,0,0-10.25Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="audio3"><path class="cls-1" d="M40.75,10H3.17V40.72a3.42,3.42,0,0,0,3.41,3.42h41A3.42,3.42,0,0,0,51,40.72V10Zm6.4,30.31H7V13.82h6.4v6.4H40.75v-6.4h6.4Z"/><path class="cls-1" d="M35.62,23.73a5.08,5.08,0,0,0-4.84,6.74H23.35a5.11,5.11,0,1,0-5.67,3.33v.09h17a5.64,5.64,0,0,0,.93.09,5.13,5.13,0,1,0,0-10.25Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/block-accordion.svg b/public/assets/images/icons/white/block-accordion.svg
index 2623d78b9d24a661ee8e74a8f2be338eef2a8395..a1419fef3433cc27d6f7122a862197ab3c14a48c 100644
--- a/public/assets/images/icons/white/block-accordion.svg
+++ b/public/assets/images/icons/white/block-accordion.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-accordion"><path class="cls-1" d="M18,7.5v39H48V7.5Zm27,36H21v-9H45Zm0-12H21v-9H45Zm-24-12v-9H45v9Z"/><polygon class="cls-1" points="12 10.5 9 10.5 9 13.5 6 13.5 6 16.5 9 16.5 9 19.5 12 19.5 12 16.5 15 16.5 15 13.5 12 13.5 12 10.5"/><polygon class="cls-1" points="12 22.49 9 22.49 9 25.49 6 25.49 6 28.49 9 28.49 9 31.49 12 31.49 12 28.49 15 28.49 15 25.49 12 25.49 12 22.49"/><polygon class="cls-1" points="12 34.49 9 34.49 9 37.49 6 37.49 6 40.48 9 40.48 9 43.48 12 43.48 12 40.48 15 40.48 15 37.49 12 37.49 12 34.49"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-accordion"><path class="cls-1" d="M18,7.5v39H48V7.5Zm27,36H21v-9H45Zm0-12H21v-9H45Zm-24-12v-9H45v9Z"/><polygon class="cls-1" points="12 10.5 9 10.5 9 13.5 6 13.5 6 16.5 9 16.5 9 19.5 12 19.5 12 16.5 15 16.5 15 13.5 12 13.5 12 10.5"/><polygon class="cls-1" points="12 22.49 9 22.49 9 25.49 6 25.49 6 28.49 9 28.49 9 31.49 12 31.49 12 28.49 15 28.49 15 25.49 12 25.49 12 22.49"/><polygon class="cls-1" points="12 34.49 9 34.49 9 37.49 6 37.49 6 40.48 9 40.48 9 43.48 12 43.48 12 40.48 15 40.48 15 37.49 12 37.49 12 34.49"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/block-canvas.svg b/public/assets/images/icons/white/block-canvas.svg
index 09b07454b90e8f5ae2984414d4de1f3ae19cdfde..773724c7384ff3874bc255c0432ef82c87fc6ac6 100644
--- a/public/assets/images/icons/white/block-canvas.svg
+++ b/public/assets/images/icons/white/block-canvas.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-canvas"><path class="cls-1" d="M48,8.91H6v30h31c2.48,4.54,5,8.6,5.87,8.24s0-4-1.12-8.24H48Zm-3,27H41c-1.64-5.56-3.55-11.1-3.55-11.1a3.38,3.38,0,0,0-6.28,2.52s2,4.1,4.32,8.58H9v-24H45Z"/><path class="cls-1" d="M28.29,16.91a3.29,3.29,0,0,1,.48,2.71s.05.05.07.08a2.31,2.31,0,0,0,.05.74,2.49,2.49,0,1,0,4.79-1.34A7.29,7.29,0,0,0,31,15.43c-1.84-1.26-4.83-1-4.86-.28S27.28,15.76,28.29,16.91Z"/><path class="cls-1" d="M16.33,24.14c.83-.06,1.42-1.34,1.31-2.86s-.86-2.72-1.69-2.66S14.53,20,14.64,21.48,15.5,24.2,16.33,24.14Z"/><path class="cls-1" d="M21.49,20.86c.66-.31.68-1.65.05-3S19.85,15.7,19.19,16s-.68,1.66,0,3S20.84,21.17,21.49,20.86Z"/><path class="cls-1" d="M15.47,31.66a9.41,9.41,0,0,0,6.31.26,8.64,8.64,0,0,0,4.94-4,8.5,8.5,0,0,0,.91-5.9c-1.56,3.58-3.73,6.22-6.76,7.08a10.41,10.41,0,0,1-4.77.34A16.91,16.91,0,0,1,11,27.7,8.46,8.46,0,0,0,15.47,31.66Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-canvas"><path class="cls-1" d="M48,8.91H6v30h31c2.48,4.54,5,8.6,5.87,8.24s0-4-1.12-8.24H48Zm-3,27H41c-1.64-5.56-3.55-11.1-3.55-11.1a3.38,3.38,0,0,0-6.28,2.52s2,4.1,4.32,8.58H9v-24H45Z"/><path class="cls-1" d="M28.29,16.91a3.29,3.29,0,0,1,.48,2.71s.05.05.07.08a2.31,2.31,0,0,0,.05.74,2.49,2.49,0,1,0,4.79-1.34A7.29,7.29,0,0,0,31,15.43c-1.84-1.26-4.83-1-4.86-.28S27.28,15.76,28.29,16.91Z"/><path class="cls-1" d="M16.33,24.14c.83-.06,1.42-1.34,1.31-2.86s-.86-2.72-1.69-2.66S14.53,20,14.64,21.48,15.5,24.2,16.33,24.14Z"/><path class="cls-1" d="M21.49,20.86c.66-.31.68-1.65.05-3S19.85,15.7,19.19,16s-.68,1.66,0,3S20.84,21.17,21.49,20.86Z"/><path class="cls-1" d="M15.47,31.66a9.41,9.41,0,0,0,6.31.26,8.64,8.64,0,0,0,4.94-4,8.5,8.5,0,0,0,.91-5.9c-1.56,3.58-3.73,6.22-6.76,7.08a10.41,10.41,0,0,1-4.77.34A16.91,16.91,0,0,1,11,27.7,8.46,8.46,0,0,0,15.47,31.66Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/block-comparison.svg b/public/assets/images/icons/white/block-comparison.svg
index 047862a5bc01fd5090b6e19ef89fd883389f076a..6153bc5760472542e758ddd0eb82fc0b64c739e3 100644
--- a/public/assets/images/icons/white/block-comparison.svg
+++ b/public/assets/images/icons/white/block-comparison.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-comparison"><polygon class="cls-1" points="30.8 31 32.88 33.08 38.96 26.99 32.88 20.9 30.8 22.98 34.8 26.99 30.8 31"/><polygon class="cls-1" points="23.2 22.98 21.12 20.9 15.03 27 21.12 33.08 23.2 31 19.2 26.99 23.2 22.98"/><path class="cls-1" d="M48,12H28.5V9h-3v3H6V42H25.5v3h3V42H48ZM9,39V15H25.5V39Zm36,0H28.5V15H45Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-comparison"><polygon class="cls-1" points="30.8 31 32.88 33.08 38.96 26.99 32.88 20.9 30.8 22.98 34.8 26.99 30.8 31"/><polygon class="cls-1" points="23.2 22.98 21.12 20.9 15.03 27 21.12 33.08 23.2 31 19.2 26.99 23.2 22.98"/><path class="cls-1" d="M48,12H28.5V9h-3v3H6V42H25.5v3h3V42H48ZM9,39V15H25.5V39Zm36,0H28.5V15H45Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/block-eyecatcher.svg b/public/assets/images/icons/white/block-eyecatcher.svg
index c768a2b23161a43563529ec8db2fc7081255fe10..09c47858d0f6cbdc89ecb90c00790d6a9e85275e 100644
--- a/public/assets/images/icons/white/block-eyecatcher.svg
+++ b/public/assets/images/icons/white/block-eyecatcher.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-eyecatcher"><g id="visibility-visible"><path class="cls-1" d="M27,17A20.39,20.39,0,0,1,44.57,27,20.39,20.39,0,0,1,9.43,27,20.35,20.35,0,0,1,27,17m0-3A23.36,23.36,0,0,0,6.31,26.42L6,27l.3.58a23.4,23.4,0,0,0,41.37,0L48,27l-.31-.57A23.36,23.36,0,0,0,27,14Z"/><path class="cls-1" d="M27,19.08a7.9,7.9,0,0,0-2.19.35,3.6,3.6,0,0,1,1.58,2.93A3.67,3.67,0,0,1,22.72,26a3.6,3.6,0,0,1-3.1-1.83A7.9,7.9,0,1,0,27,19.08Z"/></g><rect class="cls-1" x="6" y="5.91" width="9" height="3"/><rect class="cls-1" x="6" y="5.91" width="3" height="9"/><rect class="cls-1" x="38.99" y="5.91" width="9" height="3"/><rect class="cls-1" x="44.99" y="8.91" width="3" height="6"/><rect class="cls-1" x="44.99" y="38.89" width="3" height="9"/><rect class="cls-1" x="38.99" y="44.89" width="9" height="3"/><rect class="cls-1" x="6" y="38.89" width="3" height="9"/><rect class="cls-1" x="6" y="44.89" width="9" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-eyecatcher"><g id="visibility-visible"><path class="cls-1" d="M27,17A20.39,20.39,0,0,1,44.57,27,20.39,20.39,0,0,1,9.43,27,20.35,20.35,0,0,1,27,17m0-3A23.36,23.36,0,0,0,6.31,26.42L6,27l.3.58a23.4,23.4,0,0,0,41.37,0L48,27l-.31-.57A23.36,23.36,0,0,0,27,14Z"/><path class="cls-1" d="M27,19.08a7.9,7.9,0,0,0-2.19.35,3.6,3.6,0,0,1,1.58,2.93A3.67,3.67,0,0,1,22.72,26a3.6,3.6,0,0,1-3.1-1.83A7.9,7.9,0,1,0,27,19.08Z"/></g><rect class="cls-1" x="6" y="5.91" width="9" height="3"/><rect class="cls-1" x="6" y="5.91" width="3" height="9"/><rect class="cls-1" x="38.99" y="5.91" width="9" height="3"/><rect class="cls-1" x="44.99" y="8.91" width="3" height="6"/><rect class="cls-1" x="44.99" y="38.89" width="3" height="9"/><rect class="cls-1" x="38.99" y="44.89" width="9" height="3"/><rect class="cls-1" x="6" y="38.89" width="3" height="9"/><rect class="cls-1" x="6" y="44.89" width="9" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/block-eyecatcher2.svg b/public/assets/images/icons/white/block-eyecatcher2.svg
index 886bade9951ffcd588222c8b1ff675f559c0fab0..5f9bee6ddb5afe0f77b70f02868080a699bd26c4 100644
--- a/public/assets/images/icons/white/block-eyecatcher2.svg
+++ b/public/assets/images/icons/white/block-eyecatcher2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/block-gallery.svg b/public/assets/images/icons/white/block-gallery.svg
index ae1aee4e2d85f7eda9a5116a4b07cfb06d39932f..20059127acd9f58ae2679eeb7648c8c9487f95b4 100644
--- a/public/assets/images/icons/white/block-gallery.svg
+++ b/public/assets/images/icons/white/block-gallery.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-gallery"><path class="cls-1" d="M36,11.91v12H48v-12Zm9,9H39v-6h6Z"/><path class="cls-1" d="M36,38.89H48v-12H36Zm3-9h6v6H39Z"/><path class="cls-1" d="M33,11.91H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M33,26.9H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M6,23.9H18v-12H6Zm3-9h6v6H9Z"/><path class="cls-1" d="M6,38.89H18v-12H6Zm3-9h6v6H9Z"/><rect class="cls-1" x="19.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="25.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="31.5" y="41.89" width="3" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-gallery"><path class="cls-1" d="M36,11.91v12H48v-12Zm9,9H39v-6h6Z"/><path class="cls-1" d="M36,38.89H48v-12H36Zm3-9h6v6H39Z"/><path class="cls-1" d="M33,11.91H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M33,26.9H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M6,23.9H18v-12H6Zm3-9h6v6H9Z"/><path class="cls-1" d="M6,38.89H18v-12H6Zm3-9h6v6H9Z"/><rect class="cls-1" x="19.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="25.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="31.5" y="41.89" width="3" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/block-gallery2.svg b/public/assets/images/icons/white/block-gallery2.svg
index 79ba8af08f083f6af48ede384d4e555a84850c69..7d9fbc5c3ee10485b30d0f96b9d036bba60e2368 100644
--- a/public/assets/images/icons/white/block-gallery2.svg
+++ b/public/assets/images/icons/white/block-gallery2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-gallery2"><polygon class="cls-1" points="44.87 20.9 42.79 22.98 46.8 26.99 42.79 31 44.87 33.08 50.96 26.99 44.87 20.9"/><polygon class="cls-1" points="9.13 20.9 3.04 27 9.13 33.08 11.21 31 7.2 26.99 11.21 22.98 9.13 20.9"/><path class="cls-1" d="M15,38.89H39v-24H15Zm3-21H36v18H18Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-gallery2"><polygon class="cls-1" points="44.87 20.9 42.79 22.98 46.8 26.99 42.79 31 44.87 33.08 50.96 26.99 44.87 20.9"/><polygon class="cls-1" points="9.13 20.9 3.04 27 9.13 33.08 11.21 31 7.2 26.99 11.21 22.98 9.13 20.9"/><path class="cls-1" d="M15,38.89H39v-24H15Zm3-21H36v18H18Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/block-imagemap.svg b/public/assets/images/icons/white/block-imagemap.svg
index aed22d720feee490371f7862b8748a63ef11e52e..ce2a3d3ab987148cfdba4560989a6a3578c38d1b 100644
--- a/public/assets/images/icons/white/block-imagemap.svg
+++ b/public/assets/images/icons/white/block-imagemap.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-imagemap"><rect class="cls-1" x="26.99" y="17.9" width="6" height="3"/><rect class="cls-1" x="18" y="17.9" width="6" height="3"/><rect class="cls-1" x="35.99" y="17.9" width="6" height="3"/><path class="cls-1" d="M51,17.9H48v-6H36v-3H33v3H6v6H3v3H6v21H33v3h3v-3H48v-21h3ZM45,35.05l-8.71-6.33-1.5,1.18H33v1.4l-3.33,2.61L19.9,25,9,35.09V20.9h6v-3H9v-3H33v3h3v-3h9v3h0v3h0Z"/><rect class="cls-1" x="32.99" y="20.9" width="3" height="6"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-imagemap"><rect class="cls-1" x="26.99" y="17.9" width="6" height="3"/><rect class="cls-1" x="18" y="17.9" width="6" height="3"/><rect class="cls-1" x="35.99" y="17.9" width="6" height="3"/><path class="cls-1" d="M51,17.9H48v-6H36v-3H33v3H6v6H3v3H6v21H33v3h3v-3H48v-21h3ZM45,35.05l-8.71-6.33-1.5,1.18H33v1.4l-3.33,2.61L19.9,25,9,35.09V20.9h6v-3H9v-3H33v3h3v-3h9v3h0v3h0Z"/><rect class="cls-1" x="32.99" y="20.9" width="3" height="6"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/block-imagemap2.svg b/public/assets/images/icons/white/block-imagemap2.svg
index 886bade9951ffcd588222c8b1ff675f559c0fab0..5f9bee6ddb5afe0f77b70f02868080a699bd26c4 100644
--- a/public/assets/images/icons/white/block-imagemap2.svg
+++ b/public/assets/images/icons/white/block-imagemap2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/block-tabs.svg b/public/assets/images/icons/white/block-tabs.svg
index 6baa699955b6518c9da4ec7ae790a5fda5bffd41..efecc96dc9990a073cd6ad31d17586bb1f1d65ed 100644
--- a/public/assets/images/icons/white/block-tabs.svg
+++ b/public/assets/images/icons/white/block-tabs.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-tabs"><path class="cls-1" d="M6,8.91v36H48v-36Zm18,3h9v6H24Zm21,30H9v-30H21v9H45Zm0-24H36v-6h9Z"/><path d="M48,8.91H6v36H48v-36Zm-12,9v-6h9v6Zm-12,0v-6h9v6Zm-15,24v-30H21v9H45v21Z"/><rect class="cls-1" x="12" y="26.9" width="29.99" height="3"/><polygon points="41.99 26.9 12 26.9 12 29.9 41.99 29.9 41.99 26.9 41.99 26.9"/><rect class="cls-1" x="12" y="32.9" width="29.99" height="3"/><polygon points="41.99 32.9 12 32.9 12 35.9 41.99 35.9 41.99 32.9 41.99 32.9"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-tabs"><path class="cls-1" d="M6,8.91v36H48v-36Zm18,3h9v6H24Zm21,30H9v-30H21v9H45Zm0-24H36v-6h9Z"/><path d="M48,8.91H6v36H48v-36Zm-12,9v-6h9v6Zm-12,0v-6h9v6Zm-15,24v-30H21v9H45v21Z"/><rect class="cls-1" x="12" y="26.9" width="29.99" height="3"/><polygon points="41.99 26.9 12 26.9 12 29.9 41.99 29.9 41.99 26.9 41.99 26.9"/><rect class="cls-1" x="12" y="32.9" width="29.99" height="3"/><polygon points="41.99 32.9 12 32.9 12 35.9 41.99 35.9 41.99 32.9 41.99 32.9"/></g></svg>
diff --git a/public/assets/images/icons/white/block-typewriter.svg b/public/assets/images/icons/white/block-typewriter.svg
index 23c039bc5a0c629bb9003473d3fb7e8dc812b90b..e4fe13b693953abcb651ff88eb9244bbbde4a028 100644
--- a/public/assets/images/icons/white/block-typewriter.svg
+++ b/public/assets/images/icons/white/block-typewriter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-typewriter"><polygon class="cls-1" points="42.06 32.9 45.06 32.9 45.06 29.9 42.06 29.9 42.06 12 39.06 12 39.06 29.9 36.06 29.9 36.06 32.9 39.06 32.9 39.06 41.89 33.07 41.89 33.07 44.89 39.06 44.89 39.06 41.98 42.06 41.98 42.06 44.89 48.06 44.89 48.06 41.89 42.06 41.89 42.06 32.9"/><rect class="cls-1" x="33.07" y="8.91" width="6" height="3"/><rect class="cls-1" x="42.06" y="8.91" width="6" height="3"/><path class="cls-1" d="M20.8,14.91l-1-3H12v3h3.21L7,38.89H3v3H8.63a1.09,1.09,0,0,0,.76-.29,1.47,1.47,0,0,0,.41-.67l2.41-7.24H23.78l2.41,7.24a1.73,1.73,0,0,0,.43.69,1.07,1.07,0,0,0,.76.27H33v-3H29ZM13.18,30.76l4.05-12.18A25.75,25.75,0,0,0,18,15.76c.12.54.25,1,.38,1.54s.26.9.38,1.26l4,12.2Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="block-typewriter"><polygon class="cls-1" points="42.06 32.9 45.06 32.9 45.06 29.9 42.06 29.9 42.06 12 39.06 12 39.06 29.9 36.06 29.9 36.06 32.9 39.06 32.9 39.06 41.89 33.07 41.89 33.07 44.89 39.06 44.89 39.06 41.98 42.06 41.98 42.06 44.89 48.06 44.89 48.06 41.89 42.06 41.89 42.06 32.9"/><rect class="cls-1" x="33.07" y="8.91" width="6" height="3"/><rect class="cls-1" x="42.06" y="8.91" width="6" height="3"/><path class="cls-1" d="M20.8,14.91l-1-3H12v3h3.21L7,38.89H3v3H8.63a1.09,1.09,0,0,0,.76-.29,1.47,1.47,0,0,0,.41-.67l2.41-7.24H23.78l2.41,7.24a1.73,1.73,0,0,0,.43.69,1.07,1.07,0,0,0,.76.27H33v-3H29ZM13.18,30.76l4.05-12.18A25.75,25.75,0,0,0,18,15.76c.12.54.25,1,.38,1.54s.26.9.38,1.26l4,12.2Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/blubber-old.svg b/public/assets/images/icons/white/blubber-old.svg
index e8191548d9b92c2f1d948e31b45c4a29e61cc7e5..fb7e59cbae83ba93371948707906201e13504706 100644
--- a/public/assets/images/icons/white/blubber-old.svg
+++ b/public/assets/images/icons/white/blubber-old.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M18,15A15,15,0,1,0,33,30,15,15,0,0,0,18,15Z"/><path class="a" d="M50.85,13.5a8.5,8.5,0,1,0-8.5,8.5A8.5,8.5,0,0,0,50.85,13.5Z"/><path class="a" d="M45,39a5,5,0,1,0,5,5A5,5,0,0,0,45,39Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M18,15A15,15,0,1,0,33,30,15,15,0,0,0,18,15Z"/><path class="a" d="M50.85,13.5a8.5,8.5,0,1,0-8.5,8.5A8.5,8.5,0,0,0,50.85,13.5Z"/><path class="a" d="M45,39a5,5,0,1,0,5,5A5,5,0,0,0,45,39Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/blubber.svg b/public/assets/images/icons/white/blubber.svg
index f228d84510aa5137f9fe9893759e7926f3bd67cd..aee319c7ba16dc2778b17e9a0b3c2dacd87f1cdc 100644
--- a/public/assets/images/icons/white/blubber.svg
+++ b/public/assets/images/icons/white/blubber.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M41,31A10,10,0,1,0,51,41,10,10,0,0,0,41,31Zm0,17a7,7,0,1,1,7-7A7,7,0,0,1,41,48Z"/><path class="a" d="M33,26.83A12,12,0,1,0,23.2,13,14.72,14.72,0,0,0,18,12,15,15,0,1,0,33,27C33,26.94,33,26.88,33,26.83ZM18,39A12,12,0,1,1,30,27,12,12,0,0,1,18,39Zm8-24.65A9,9,0,1,1,35,24a8.63,8.63,0,0,1-2.39-.34A15,15,0,0,0,26,14.35Z"/><path class="a" d="M22.21,17.06A10.71,10.71,0,0,0,18,16.2a10.87,10.87,0,0,0-9.78,6.25,1.29,1.29,0,0,0,.62,1.72,1.23,1.23,0,0,0,.55.13,1.3,1.3,0,0,0,1.18-.75A8.22,8.22,0,0,1,21.2,19.44a1.29,1.29,0,1,0,1-2.38Z"/><path class="a" d="M8.5,25.7A1.3,1.3,0,0,0,7.2,27a10.48,10.48,0,0,0,.14,1.68,1.3,1.3,0,0,0,1.27,1.1l.21,0A1.3,1.3,0,0,0,9.9,28.28,7.8,7.8,0,0,1,9.8,27,1.3,1.3,0,0,0,8.5,25.7Z"/><path class="a" d="M38.66,9.49A1.23,1.23,0,0,0,38,7.89a7.72,7.72,0,0,0-10.64,5.92,1.21,1.21,0,0,0,1,1.39l.19,0a1.21,1.21,0,0,0,1.2-1A5.33,5.33,0,0,1,35,9.72a5.23,5.23,0,0,1,2.06.42A1.23,1.23,0,0,0,38.66,9.49Z"/><path class="a" d="M43.19,35.82A5.62,5.62,0,0,0,35.37,41a6.52,6.52,0,0,0,.07.88,1.13,1.13,0,0,0,1.11.95l.18,0a1.13,1.13,0,0,0,.94-1.29,3,3,0,0,1-.05-.52A3.39,3.39,0,0,1,41,37.62a3.27,3.27,0,0,1,1.31.27,1.12,1.12,0,1,0,.88-2.07Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M41,31A10,10,0,1,0,51,41,10,10,0,0,0,41,31Zm0,17a7,7,0,1,1,7-7A7,7,0,0,1,41,48Z"/><path class="a" d="M33,26.83A12,12,0,1,0,23.2,13,14.72,14.72,0,0,0,18,12,15,15,0,1,0,33,27C33,26.94,33,26.88,33,26.83ZM18,39A12,12,0,1,1,30,27,12,12,0,0,1,18,39Zm8-24.65A9,9,0,1,1,35,24a8.63,8.63,0,0,1-2.39-.34A15,15,0,0,0,26,14.35Z"/><path class="a" d="M22.21,17.06A10.71,10.71,0,0,0,18,16.2a10.87,10.87,0,0,0-9.78,6.25,1.29,1.29,0,0,0,.62,1.72,1.23,1.23,0,0,0,.55.13,1.3,1.3,0,0,0,1.18-.75A8.22,8.22,0,0,1,21.2,19.44a1.29,1.29,0,1,0,1-2.38Z"/><path class="a" d="M8.5,25.7A1.3,1.3,0,0,0,7.2,27a10.48,10.48,0,0,0,.14,1.68,1.3,1.3,0,0,0,1.27,1.1l.21,0A1.3,1.3,0,0,0,9.9,28.28,7.8,7.8,0,0,1,9.8,27,1.3,1.3,0,0,0,8.5,25.7Z"/><path class="a" d="M38.66,9.49A1.23,1.23,0,0,0,38,7.89a7.72,7.72,0,0,0-10.64,5.92,1.21,1.21,0,0,0,1,1.39l.19,0a1.21,1.21,0,0,0,1.2-1A5.33,5.33,0,0,1,35,9.72a5.23,5.23,0,0,1,2.06.42A1.23,1.23,0,0,0,38.66,9.49Z"/><path class="a" d="M43.19,35.82A5.62,5.62,0,0,0,35.37,41a6.52,6.52,0,0,0,.07.88,1.13,1.13,0,0,0,1.11.95l.18,0a1.13,1.13,0,0,0,.94-1.29,3,3,0,0,1-.05-.52A3.39,3.39,0,0,1,41,37.62a3.27,3.27,0,0,1,1.31.27,1.12,1.12,0,1,0,.88-2.07Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/brainstorm.svg b/public/assets/images/icons/white/brainstorm.svg
index 69d24e6a02a4759efecb328d3c5470e8becd6488..932858b9d74e3cec394ed4a7eedac58cb1673ba6 100644
--- a/public/assets/images/icons/white/brainstorm.svg
+++ b/public/assets/images/icons/white/brainstorm.svg
@@ -1 +1 @@
-<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="Brainstorm"><path d="M28.55,25.76c-11.46-1.2-20.19-7-19.5-12.87s10.55-9.72,22-8.53a39,39,0,0,1,5.18.93,40.5,40.5,0,0,0-9.56-2.17C14.38,1.84,3.82,5.93,3.07,12.27S11.69,24.78,24,26.06a40.05,40.05,0,0,0,9.83-.14A39.25,39.25,0,0,1,28.55,25.76Z"/><path d="M25.65,6.28c11.44,1.38,20.06,7.28,19.26,13.17S34.19,29,22.75,27.63a38.62,38.62,0,0,1-5.16-1,40,40,0,0,0,9.52,2.33C39.38,30.42,50,26.5,50.88,20.18S42.49,7.53,30.22,6.05a40.49,40.49,0,0,0-9.84,0A39.6,39.6,0,0,1,25.65,6.28Z"/><path d="M28.32,38.84c-10-1-17.57-6.05-17-11.19A5.46,5.46,0,0,1,12.59,25c-.65-.25-1.39-.55-2.22-.92S9,23.41,8.46,23.13a6.42,6.42,0,0,0-2.31,4c-.64,5.51,7.5,10.89,18.2,12A35.62,35.62,0,0,0,32.9,39,35.58,35.58,0,0,1,28.32,38.84Z"/><path d="M42.91,29.36c-.8.31-1.7.63-2.47.84a23.13,23.13,0,0,1-2.53.51,4.88,4.88,0,0,1,.67,1.4c1.35,5-5.45,11-15.18,13.27a33.74,33.74,0,0,1-4.52.74,35.45,35.45,0,0,0,8.5-1C37.81,42.65,45.1,36.27,43.66,30.9A5.5,5.5,0,0,0,42.91,29.36Z"/><path d="M14.59,43a5.56,5.56,0,0,1,2.72-4.15,15.4,15.4,0,0,1-1.51-.49l-1-.39c-2.1,1.24-3.47,2.93-3.57,4.87C11,47,16.46,50.58,23.45,50.91A19.82,19.82,0,0,0,29,50.4a19.44,19.44,0,0,1-3,.12C19.51,50.21,14.39,46.83,14.59,43Z"/><path d="M42.61,29.57c-.5,0-1.75.93-2.21.9s-1.87.42-2.33.34A4.56,4.56,0,0,1,38.28,32c-.12,2.62-4.69,4.65-10.41,4.15a18.66,18.66,0,0,1-2.59-.43,11.23,11.23,0,0,0,5,1.51c6.15.52,12.38-1.67,12.69-4.84A26.14,26.14,0,0,0,42.61,29.57Z"/><path d="M29.24,8.71c-8.34-2-16.16.32-17.46,5.17A6,6,0,0,0,12.25,18c0-.11,0-.23,0-.34.81-4.73,8.05-7.55,16.16-6.32s13.77,5.88,13.24,10.51a6.36,6.36,0,0,0,.33-.7C43.28,16.25,37.58,10.7,29.24,8.71Z"/></g></svg>
+<svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="Brainstorm"><path d="M28.55,25.76c-11.46-1.2-20.19-7-19.5-12.87s10.55-9.72,22-8.53a39,39,0,0,1,5.18.93,40.5,40.5,0,0,0-9.56-2.17C14.38,1.84,3.82,5.93,3.07,12.27S11.69,24.78,24,26.06a40.05,40.05,0,0,0,9.83-.14A39.25,39.25,0,0,1,28.55,25.76Z"/><path d="M25.65,6.28c11.44,1.38,20.06,7.28,19.26,13.17S34.19,29,22.75,27.63a38.62,38.62,0,0,1-5.16-1,40,40,0,0,0,9.52,2.33C39.38,30.42,50,26.5,50.88,20.18S42.49,7.53,30.22,6.05a40.49,40.49,0,0,0-9.84,0A39.6,39.6,0,0,1,25.65,6.28Z"/><path d="M28.32,38.84c-10-1-17.57-6.05-17-11.19A5.46,5.46,0,0,1,12.59,25c-.65-.25-1.39-.55-2.22-.92S9,23.41,8.46,23.13a6.42,6.42,0,0,0-2.31,4c-.64,5.51,7.5,10.89,18.2,12A35.62,35.62,0,0,0,32.9,39,35.58,35.58,0,0,1,28.32,38.84Z"/><path d="M42.91,29.36c-.8.31-1.7.63-2.47.84a23.13,23.13,0,0,1-2.53.51,4.88,4.88,0,0,1,.67,1.4c1.35,5-5.45,11-15.18,13.27a33.74,33.74,0,0,1-4.52.74,35.45,35.45,0,0,0,8.5-1C37.81,42.65,45.1,36.27,43.66,30.9A5.5,5.5,0,0,0,42.91,29.36Z"/><path d="M14.59,43a5.56,5.56,0,0,1,2.72-4.15,15.4,15.4,0,0,1-1.51-.49l-1-.39c-2.1,1.24-3.47,2.93-3.57,4.87C11,47,16.46,50.58,23.45,50.91A19.82,19.82,0,0,0,29,50.4a19.44,19.44,0,0,1-3,.12C19.51,50.21,14.39,46.83,14.59,43Z"/><path d="M42.61,29.57c-.5,0-1.75.93-2.21.9s-1.87.42-2.33.34A4.56,4.56,0,0,1,38.28,32c-.12,2.62-4.69,4.65-10.41,4.15a18.66,18.66,0,0,1-2.59-.43,11.23,11.23,0,0,0,5,1.51c6.15.52,12.38-1.67,12.69-4.84A26.14,26.14,0,0,0,42.61,29.57Z"/><path d="M29.24,8.71c-8.34-2-16.16.32-17.46,5.17A6,6,0,0,0,12.25,18c0-.11,0-.23,0-.34.81-4.73,8.05-7.55,16.16-6.32s13.77,5.88,13.24,10.51a6.36,6.36,0,0,0,.33-.7C43.28,16.25,37.58,10.7,29.24,8.71Z"/></g></svg>
diff --git a/public/assets/images/icons/white/chat.svg b/public/assets/images/icons/white/chat.svg
index 12340f32222e69d695a246297684931cd1cad8b1..9b712bac898d0d746476d3325e0d831a51948bb3 100644
--- a/public/assets/images/icons/white/chat.svg
+++ b/public/assets/images/icons/white/chat.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/chat2.svg b/public/assets/images/icons/white/chat2.svg
index 12340f32222e69d695a246297684931cd1cad8b1..9b712bac898d0d746476d3325e0d831a51948bb3 100644
--- a/public/assets/images/icons/white/chat2.svg
+++ b/public/assets/images/icons/white/chat2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/check-circle.svg b/public/assets/images/icons/white/check-circle.svg
index 3ee9c27fdb432ae0cf825cc36613d636b2caa7a2..f9755ef590d52c7c1614ebcbbe74fb479d96017c 100644
--- a/public/assets/images/icons/white/check-circle.svg
+++ b/public/assets/images/icons/white/check-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="check-circle"><path class="cls-1" d="M40.84,21.11,36,16.25,24.18,28,18,21.87l-4.84,4.85,11,11ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="check-circle"><path class="cls-1" d="M40.84,21.11,36,16.25,24.18,28,18,21.87l-4.84,4.85,11,11ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/clipboard.svg b/public/assets/images/icons/white/clipboard.svg
index e31e4ec819a1d0f7bd47b1df0b8d309809e6453e..9aa12f09d566f4ac1d8ecddb14c1c77925703041 100644
--- a/public/assets/images/icons/white/clipboard.svg
+++ b/public/assets/images/icons/white/clipboard.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="clipboard"><path class="cls-1" d="M30,23.9v24H9v-24H30m3-3H6v30H33v-30Z"/><polygon class="cls-1" points="47.98 5.91 15 5.91 15 8.91 44.99 8.91 44.99 38.9 47.98 38.9 47.98 5.91 47.98 5.91"/><polygon class="cls-1" points="26.99 14.91 26.99 17.9 33.71 17.9 23.87 27.74 25.99 29.86 35.99 19.86 35.99 26.9 38.99 26.9 38.99 14.91 26.99 14.91"/><rect class="cls-1" x="27" y="3.05" width="8.99" height="5.86"/><rect class="cls-1" x="10.5" y="10.41" width="11.99" height="3" transform="translate(28.41 -4.59) rotate(90)"/><rect class="cls-1" x="35.99" y="38.89" width="11.99" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="clipboard"><path class="cls-1" d="M30,23.9v24H9v-24H30m3-3H6v30H33v-30Z"/><polygon class="cls-1" points="47.98 5.91 15 5.91 15 8.91 44.99 8.91 44.99 38.9 47.98 38.9 47.98 5.91 47.98 5.91"/><polygon class="cls-1" points="26.99 14.91 26.99 17.9 33.71 17.9 23.87 27.74 25.99 29.86 35.99 19.86 35.99 26.9 38.99 26.9 38.99 14.91 26.99 14.91"/><rect class="cls-1" x="27" y="3.05" width="8.99" height="5.86"/><rect class="cls-1" x="10.5" y="10.41" width="11.99" height="3" transform="translate(28.41 -4.59) rotate(90)"/><rect class="cls-1" x="35.99" y="38.89" width="11.99" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/cloud.svg b/public/assets/images/icons/white/cloud.svg
index 616a24b297a0139974ed78bccc05a674c08ddc1d..44c97f980d628c1a08f69a50edffede5c2b36824 100644
--- a/public/assets/images/icons/white/cloud.svg
+++ b/public/assets/images/icons/white/cloud.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><path id="cloud" d="M33.61,16.51a8.1,8.1,0,0,1,8.15,7.94l.06,2.31,2.23.54a5.15,5.15,0,0,1,3.94,5v.17a5.17,5.17,0,0,1-5.15,5H12.08a6.08,6.08,0,0,1,0-12.16,6.9,6.9,0,0,1,1.09.1l4.11.74L16.68,22a2.32,2.32,0,0,1,0-.46,3.26,3.26,0,0,1,5.84-2l2.35,3,2.39-3a8.1,8.1,0,0,1,6.39-3.1m0-3a11.14,11.14,0,0,0-8.76,4.25,6.26,6.26,0,0,0-11.21,3.83,6.44,6.44,0,0,0,.06.89,9.66,9.66,0,0,0-1.62-.14,9.09,9.09,0,0,0,0,18.17H42.84A8.18,8.18,0,0,0,51,32.32h0a8.17,8.17,0,0,0-6.24-7.94A11.16,11.16,0,0,0,33.61,13.5Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><path id="cloud" d="M33.61,16.51a8.1,8.1,0,0,1,8.15,7.94l.06,2.31,2.23.54a5.15,5.15,0,0,1,3.94,5v.17a5.17,5.17,0,0,1-5.15,5H12.08a6.08,6.08,0,0,1,0-12.16,6.9,6.9,0,0,1,1.09.1l4.11.74L16.68,22a2.32,2.32,0,0,1,0-.46,3.26,3.26,0,0,1,5.84-2l2.35,3,2.39-3a8.1,8.1,0,0,1,6.39-3.1m0-3a11.14,11.14,0,0,0-8.76,4.25,6.26,6.26,0,0,0-11.21,3.83,6.44,6.44,0,0,0,.06.89,9.66,9.66,0,0,0-1.62-.14,9.09,9.09,0,0,0,0,18.17H42.84A8.18,8.18,0,0,0,51,32.32h0a8.17,8.17,0,0,0-6.24-7.94A11.16,11.16,0,0,0,33.61,13.5Z"/></svg>
diff --git a/public/assets/images/icons/white/comment.svg b/public/assets/images/icons/white/comment.svg
index 922ef8aa61167c664a2cfed647539bb58e9a20d8..6c808968f28cf83481ea1e943d5a86c05e11ec6c 100644
--- a/public/assets/images/icons/white/comment.svg
+++ b/public/assets/images/icons/white/comment.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="comment"><path class="cls-1" d="M37.91,6.8A6.3,6.3,0,0,0,29.47,9l-1,1.72L26.9,13.27,13,36.47,13.13,48,23.7,42.42,37.6,19.23l1.54-2.58,1-1.72A5.83,5.83,0,0,0,37.91,6.8ZM21.46,40.21l-1.95,1-3.39-1.89,0-2.1L29.57,14.76l5.35,3Zm9.66-28,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06l-1,1.72Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="comment"><path class="cls-1" d="M37.91,6.8A6.3,6.3,0,0,0,29.47,9l-1,1.72L26.9,13.27,13,36.47,13.13,48,23.7,42.42,37.6,19.23l1.54-2.58,1-1.72A5.83,5.83,0,0,0,37.91,6.8ZM21.46,40.21l-1.95,1-3.39-1.89,0-2.1L29.57,14.76l5.35,3Zm9.66-28,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06l-1,1.72Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/comment2.svg b/public/assets/images/icons/white/comment2.svg
index c1aa683784fb2fac18c7792162c9b7d7f9f61a9a..81655abb63866e42c305238964e36867111d50c6 100644
--- a/public/assets/images/icons/white/comment2.svg
+++ b/public/assets/images/icons/white/comment2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="comment"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="comment"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/community.svg b/public/assets/images/icons/white/community.svg
index 71b8c93cd9be3a1e5ea96d093482ca4ca184a40b..78f362750d81202b5042d7a7f91ee399a1acc3e4 100644
--- a/public/assets/images/icons/white/community.svg
+++ b/public/assets/images/icons/white/community.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M37,25a9,9,0,1,0-9-9A9,9,0,0,0,37,25Z"/><path class="a" d="M17,25a9,9,0,1,0-9-9A9,9,0,0,0,17,25Z"/><path class="a" d="M44.79,29H29.2a6.21,6.21,0,0,0-6.2,6.2V48H51V35.17A6.21,6.21,0,0,0,44.79,29Z"/><path class="a" d="M3,35.17V48H20V35.17A9.11,9.11,0,0,1,22.43,29H9.2A6.21,6.21,0,0,0,3,35.17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M37,25a9,9,0,1,0-9-9A9,9,0,0,0,37,25Z"/><path class="a" d="M17,25a9,9,0,1,0-9-9A9,9,0,0,0,17,25Z"/><path class="a" d="M44.79,29H29.2a6.21,6.21,0,0,0-6.2,6.2V48H51V35.17A6.21,6.21,0,0,0,44.79,29Z"/><path class="a" d="M3,35.17V48H20V35.17A9.11,9.11,0,0,1,22.43,29H9.2A6.21,6.21,0,0,0,3,35.17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/community2.svg b/public/assets/images/icons/white/community2.svg
index 529e8300041bc1f4ed4c45412f7a0e70faea479e..7f7b27166eff9e3c5d2a90ae6a89a2473ca541d0 100644
--- a/public/assets/images/icons/white/community2.svg
+++ b/public/assets/images/icons/white/community2.svg
@@ -1 +1 @@
-<svg id="Icons" data-name="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="community2"><path d="M23,15a12.86,12.86,0,0,1,2.09-7,10,10,0,1,0,0,14.08A12.86,12.86,0,0,1,23,15Zm-5,4a4,4,0,1,1,4-4A4,4,0,0,1,18,19Z"/><path d="M36,25A10,10,0,1,1,46,15,10,10,0,0,1,36,25Zm0-14a4,4,0,1,0,4,4A4,4,0,0,0,36,11Z"/><path d="M9,43V36a2,2,0,0,1,2-2h5c0-2,2-6,5-6H11a8,8,0,0,0-8,8V49H16V43Z"/><path d="M51,49H19V36a8,8,0,0,1,8-8H43a8,8,0,0,1,8,8ZM25,43H45V36a2,2,0,0,0-2-2H27a2,2,0,0,0-2,2Z"/></g></svg>
+<svg width="16" height="16" id="Icons" data-name="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="community2"><path d="M23,15a12.86,12.86,0,0,1,2.09-7,10,10,0,1,0,0,14.08A12.86,12.86,0,0,1,23,15Zm-5,4a4,4,0,1,1,4-4A4,4,0,0,1,18,19Z"/><path d="M36,25A10,10,0,1,1,46,15,10,10,0,0,1,36,25Zm0-14a4,4,0,1,0,4,4A4,4,0,0,0,36,11Z"/><path d="M9,43V36a2,2,0,0,1,2-2h5c0-2,2-6,5-6H11a8,8,0,0,0-8,8V49H16V43Z"/><path d="M51,49H19V36a8,8,0,0,1,8-8H43a8,8,0,0,1,8,8ZM25,43H45V36a2,2,0,0,0-2-2H27a2,2,0,0,0-2,2Z"/></g></svg>
diff --git a/public/assets/images/icons/white/content.svg b/public/assets/images/icons/white/content.svg
index b715153fbb240a55a8a2a502c07ced547f1b249d..5f0e2e0e6faa1e20cab867e226f78fa9ab02784a 100644
--- a/public/assets/images/icons/white/content.svg
+++ b/public/assets/images/icons/white/content.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M44.94,9a6.44,6.44,0,0,1-.87,3.82L43.37,14H46V42H8V14H28L30.67,9.5,31,9H3V47H51V9Z"/><polygon class="a" points="26.26 16.97 10.96 16.97 10.96 38.97 20.08 38.97 20.06 36.99 19.96 28.21 19.96 27.65 20.24 27.17 26.26 16.97"/><polygon class="a" points="31.71 33.74 31.43 34.22 30.93 34.48 23.01 38.73 22.56 38.97 42.96 38.97 42.96 16.97 41.6 16.97 31.71 33.74"/><path class="a" d="M22.06,37,30,32.72,40.41,15.05l1.16-2,.77-1.31a4.48,4.48,0,0,0-1.69-6.19,4.69,4.69,0,0,0-6.33,1.66l-.77,1.31-1.16,2L22,28.19ZM36.32,8.37a2.36,2.36,0,0,1,3.17-.83,2.25,2.25,0,0,1,.85,3.1L39.56,12l-4-2.27Zm-1.93,3.28,4,2.26L28.31,31l-1.46.78L24.3,30.38v-1.6Z"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M44.94,9a6.44,6.44,0,0,1-.87,3.82L43.37,14H46V42H8V14H28L30.67,9.5,31,9H3V47H51V9Z"/><polygon class="a" points="26.26 16.97 10.96 16.97 10.96 38.97 20.08 38.97 20.06 36.99 19.96 28.21 19.96 27.65 20.24 27.17 26.26 16.97"/><polygon class="a" points="31.71 33.74 31.43 34.22 30.93 34.48 23.01 38.73 22.56 38.97 42.96 38.97 42.96 16.97 41.6 16.97 31.71 33.74"/><path class="a" d="M22.06,37,30,32.72,40.41,15.05l1.16-2,.77-1.31a4.48,4.48,0,0,0-1.69-6.19,4.69,4.69,0,0,0-6.33,1.66l-.77,1.31-1.16,2L22,28.19ZM36.32,8.37a2.36,2.36,0,0,1,3.17-.83,2.25,2.25,0,0,1,.85,3.1L39.56,12l-4-2.27Zm-1.93,3.28,4,2.26L28.31,31l-1.46.78L24.3,30.38v-1.6Z"/></svg>
diff --git a/public/assets/images/icons/white/courseware.svg b/public/assets/images/icons/white/courseware.svg
index 977a8f5d46d88179dd98e63f25faba9e106ca880..e009badb15d3b14e53a724cfd22fdaabcc9b3f28 100644
--- a/public/assets/images/icons/white/courseware.svg
+++ b/public/assets/images/icons/white/courseware.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="courseware"><polygon class="cls-1" points="30.85 9.37 27 6 23.14 9.37 27 11.16 30.85 9.37"/><polygon class="cls-1" points="37.56 15.24 33.71 11.87 27 15.22 20.28 11.87 16.43 15.24 27.05 21.56 37.56 15.24"/><polygon class="cls-1" points="44.27 21.12 40.42 17.75 27.05 26.97 13.57 17.75 9.72 21.12 27.05 34.5 44.27 21.12"/><polygon class="cls-1" points="47.13 23.62 27.05 40.33 6.86 23.62 3.01 26.99 27 47.98 50.98 26.99 47.13 23.62"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="courseware"><polygon class="cls-1" points="30.85 9.37 27 6 23.14 9.37 27 11.16 30.85 9.37"/><polygon class="cls-1" points="37.56 15.24 33.71 11.87 27 15.22 20.28 11.87 16.43 15.24 27.05 21.56 37.56 15.24"/><polygon class="cls-1" points="44.27 21.12 40.42 17.75 27.05 26.97 13.57 17.75 9.72 21.12 27.05 34.5 44.27 21.12"/><polygon class="cls-1" points="47.13 23.62 27.05 40.33 6.86 23.62 3.01 26.99 27 47.98 50.98 26.99 47.13 23.62"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/crop.svg b/public/assets/images/icons/white/crop.svg
index 24ec7388b4b2678bbfbda09701ea5175ac3f94ea..299691c959ea01d86ef171054968d5c397017792 100644
--- a/public/assets/images/icons/white/crop.svg
+++ b/public/assets/images/icons/white/crop.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="crop"><path d="M3,3V51H51V3ZM48,33h-4.5v2.9H48V48H35.94v-4.5H33V48H6v-12H10.5V33H6V6H33v4.5h2.9V6H48Z"/><rect x="16" y="33.04" width="8.25" height="2.9"/><polygon points="35.94 29.74 33.04 29.74 33.04 33.04 29.75 33.04 29.75 35.94 33.04 35.94 33.04 37.99 35.94 37.99 35.94 35.94 37.99 35.94 37.99 33.04 35.94 33.04 35.94 29.74"/><rect x="33.04" y="16" width="2.9" height="8.25"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="crop"><path d="M3,3V51H51V3ZM48,33h-4.5v2.9H48V48H35.94v-4.5H33V48H6v-12H10.5V33H6V6H33v4.5h2.9V6H48Z"/><rect x="16" y="33.04" width="8.25" height="2.9"/><polygon points="35.94 29.74 33.04 29.74 33.04 33.04 29.75 33.04 29.75 35.94 33.04 35.94 33.04 37.99 35.94 37.99 35.94 35.94 37.99 35.94 37.99 33.04 35.94 33.04 35.94 29.74"/><rect x="33.04" y="16" width="2.9" height="8.25"/></g></svg>
diff --git a/public/assets/images/icons/white/crown.svg b/public/assets/images/icons/white/crown.svg
index 59b27e33a9c8ba9aa1298a1eb5c73709f030d27e..06e7369ba1a01a7d7d81bade2a9bd01b7950f022 100644
--- a/public/assets/images/icons/white/crown.svg
+++ b/public/assets/images/icons/white/crown.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="crown"><path class="cls-1" d="M48,17a3,3,0,0,0-3,3,3,3,0,0,0,.31,1.31L37,26.53,29.88,14.76a4,4,0,1,0-5.76,0L17,26.53,8.21,21A2.94,2.94,0,0,0,9,19a3,3,0,1,0-3.23,3L12,46H42l6-23h0a3,3,0,0,0,0-6ZM14.32,43l-.78-3H40.46l-.78,3Zm26.92-6H12.76l-3-11.42,5.61,3.52L18,30.69l1.58-2.61L26.88,16h.24l7.31,12.09L36,30.69l2.59-1.62,5.6-3.52Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="crown"><path class="cls-1" d="M48,17a3,3,0,0,0-3,3,3,3,0,0,0,.31,1.31L37,26.53,29.88,14.76a4,4,0,1,0-5.76,0L17,26.53,8.21,21A2.94,2.94,0,0,0,9,19a3,3,0,1,0-3.23,3L12,46H42l6-23h0a3,3,0,0,0,0-6ZM14.32,43l-.78-3H40.46l-.78,3Zm26.92-6H12.76l-3-11.42,5.61,3.52L18,30.69l1.58-2.61L26.88,16h.24l7.31,12.09L36,30.69l2.59-1.62,5.6-3.52Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/date-block.svg b/public/assets/images/icons/white/date-block.svg
index 8144b1a59ea07608b89610c0da93d51c531d5ba5..eeadfc2c1d8684196e3afea5c447d8604520573a 100644
--- a/public/assets/images/icons/white/date-block.svg
+++ b/public/assets/images/icons/white/date-block.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="date-block"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM6.77,27A14.86,14.86,0,1,1,21.63,41.84,14.88,14.88,0,0,1,6.77,27Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="date-block"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM6.77,27A14.86,14.86,0,1,1,21.63,41.84,14.88,14.88,0,0,1,6.77,27Z"/></g></svg>
diff --git a/public/assets/images/icons/white/date-cycle.svg b/public/assets/images/icons/white/date-cycle.svg
index 972c2244ca363a4150e73b6a09e9fab26dfb6fa6..c4d900b2aeee80aaa25d336945bd64918e68df28 100644
--- a/public/assets/images/icons/white/date-cycle.svg
+++ b/public/assets/images/icons/white/date-cycle.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="date-cycle"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM21.63,41.84A14.85,14.85,0,1,1,36.48,27,14.88,14.88,0,0,1,21.63,41.84Zm11.23,0a18.58,18.58,0,0,0,0-29.66,14.84,14.84,0,0,1,0,29.66Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="date-cycle"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM21.63,41.84A14.85,14.85,0,1,1,36.48,27,14.88,14.88,0,0,1,21.63,41.84Zm11.23,0a18.58,18.58,0,0,0,0-29.66,14.84,14.84,0,0,1,0,29.66Z"/></g></svg>
diff --git a/public/assets/images/icons/white/date-single.svg b/public/assets/images/icons/white/date-single.svg
index 5660fb5e9095bba29b091d87e83fba0c16a58b9b..f8f16fb6e46c181821aff907964a5bde2abf9a54 100644
--- a/public/assets/images/icons/white/date-single.svg
+++ b/public/assets/images/icons/white/date-single.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="date-single"><path d="M27,8.37A18.62,18.62,0,1,0,45.62,27,18.63,18.63,0,0,0,27,8.37Zm0,33.47A14.85,14.85,0,1,1,41.85,27,14.86,14.86,0,0,1,27,41.84Z"/><polygon points="24.25 14.45 24.25 26 17.1 30.16 19.93 35.12 29.91 29.33 29.97 29.33 29.96 14.45 24.25 14.45"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="date-single"><path d="M27,8.37A18.62,18.62,0,1,0,45.62,27,18.63,18.63,0,0,0,27,8.37Zm0,33.47A14.85,14.85,0,1,1,41.85,27,14.86,14.86,0,0,1,27,41.84Z"/><polygon points="24.25 14.45 24.25 26 17.1 30.16 19.93 35.12 29.91 29.33 29.97 29.33 29.96 14.45 24.25 14.45"/></g></svg>
diff --git a/public/assets/images/icons/white/decline-circle.svg b/public/assets/images/icons/white/decline-circle.svg
index e7d2a29a385629e82f162b03a9e0e4b090b08299..8bdf67a01eacfcc0c12560f22986a5fffcb27c09 100644
--- a/public/assets/images/icons/white/decline-circle.svg
+++ b/public/assets/images/icons/white/decline-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="decline-circle"><path class="cls-1" d="M38.68,34l-7-7,7-7-4.94-5-7,7-7-7L14.75,20l7,7-7,7L19.7,39l7-7,7,7ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="decline-circle"><path class="cls-1" d="M38.68,34l-7-7,7-7-4.94-5-7,7-7-7L14.75,20l7,7-7,7L19.7,39l7-7,7,7ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/decline.svg b/public/assets/images/icons/white/decline.svg
index 85940bae11c48bbdc8f3410e0ae13e93ee8194d2..f14b5c175fc12f695c14bcf11960190fbd76a0a8 100644
--- a/public/assets/images/icons/white/decline.svg
+++ b/public/assets/images/icons/white/decline.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="decline"><polygon id="decline-2" data-name="decline" class="cls-1" points="47.32 38.91 35.4 26.99 47.32 15.07 38.93 6.67 27 18.59 15.07 6.67 6.68 15.06 18.61 26.98 6.67 38.91 15.08 47.32 27.01 35.39 38.93 47.31 47.32 38.91"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="decline"><polygon id="decline-2" data-name="decline" class="cls-1" points="47.32 38.91 35.4 26.99 47.32 15.07 38.93 6.67 27 18.59 15.07 6.67 6.68 15.06 18.61 26.98 6.67 38.91 15.08 47.32 27.01 35.39 38.93 47.31 47.32 38.91"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/door-enter.svg b/public/assets/images/icons/white/door-enter.svg
index 1832780c8e3a9ebbc3b744581a505557ebfe549e..caf240bfb7abd4acc6bfc9c9e3064686fafbbcff 100644
--- a/public/assets/images/icons/white/door-enter.svg
+++ b/public/assets/images/icons/white/door-enter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="door-enter"><path class="cls-1" d="M22,3V45h3V6H37L29,8V51l20-6V3Zm10,7.34,14-3.5V42.74l-14,4.2Z"/><polygon class="cls-1" points="5 13 5 20.09 11.91 27 5 33.91 5 41 19 27 5 13"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="door-enter"><path class="cls-1" d="M22,3V45h3V6H37L29,8V51l20-6V3Zm10,7.34,14-3.5V42.74l-14,4.2Z"/><polygon class="cls-1" points="5 13 5 20.09 11.91 27 5 33.91 5 41 19 27 5 13"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/door-leave.svg b/public/assets/images/icons/white/door-leave.svg
index f0b6ff7c59d4a660ef7e2557efba4889e6d40cf3..55234461f590f16725ab2019c706f2dffdbb5d1c 100644
--- a/public/assets/images/icons/white/door-leave.svg
+++ b/public/assets/images/icons/white/door-leave.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="door-leave"><path class="cls-1" d="M5,45l20,6V8L17,6H29V45h3V3H5Zm3-3V6.81l14,3.5V46.94L8,42.74Z"/><polygon class="cls-1" points="35 13 35 20.09 41.91 27 35 33.91 35 41 49 27 35 13"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="door-leave"><path class="cls-1" d="M5,45l20,6V8L17,6H29V45h3V3H5Zm3-3V6.81l14,3.5V46.94L8,42.74Z"/><polygon class="cls-1" points="35 13 35 20.09 41.91 27 35 33.91 35 41 49 27 35 13"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/download.svg b/public/assets/images/icons/white/download.svg
index cdb755dedf763f9fea247e1222e39c1d6752112f..ad34b0fb211a4a22737efe74d0a8a1b77940ea85 100644
--- a/public/assets/images/icons/white/download.svg
+++ b/public/assets/images/icons/white/download.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/download2.svg b/public/assets/images/icons/white/download2.svg
index cdb755dedf763f9fea247e1222e39c1d6752112f..ad34b0fb211a4a22737efe74d0a8a1b77940ea85 100644
--- a/public/assets/images/icons/white/download2.svg
+++ b/public/assets/images/icons/white/download2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/edit.svg b/public/assets/images/icons/white/edit.svg
index 9dcb12c9ae9a38bf695c633e2a349256f38032dc..e71ea086ffe2e74d3d70f8ef1d57e32cadb884bf 100644
--- a/public/assets/images/icons/white/edit.svg
+++ b/public/assets/images/icons/white/edit.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/exclaim-circle-full.svg b/public/assets/images/icons/white/exclaim-circle-full.svg
index 911537b01c272745374eb7845fa8b2a1da03b73d..4e6f54e812b721f89ec77e636b1dd6b37bdf3c89 100644
--- a/public/assets/images/icons/white/exclaim-circle-full.svg
+++ b/public/assets/images/icons/white/exclaim-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/exclaim-circle.svg b/public/assets/images/icons/white/exclaim-circle.svg
index 911537b01c272745374eb7845fa8b2a1da03b73d..4e6f54e812b721f89ec77e636b1dd6b37bdf3c89 100644
--- a/public/assets/images/icons/white/exclaim-circle.svg
+++ b/public/assets/images/icons/white/exclaim-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/export.svg b/public/assets/images/icons/white/export.svg
index e54802bd1d7875ed6d788ffc672be3371084949c..41fdb638da256f475fb47d78bf07e924d2794482 100644
--- a/public/assets/images/icons/white/export.svg
+++ b/public/assets/images/icons/white/export.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-archive.svg b/public/assets/images/icons/white/file-archive.svg
index f1dccf45c9ef96bfbe8270d18ca0e48c1be613e8..ac8f0938ed7c4078861cb6d7ccb24a583240dfc4 100644
--- a/public/assets/images/icons/white/file-archive.svg
+++ b/public/assets/images/icons/white/file-archive.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><rect class="a" x="27" y="14.97" width="3" height="3"/><rect class="a" x="27" y="20.97" width="3" height="3"/><rect class="a" x="24" y="23.97" width="3" height="3"/><rect class="a" x="27" y="26.97" width="3" height="3"/><rect class="a" x="27" y="32.97" width="3" height="3"/><rect class="a" x="24" y="29.97" width="3" height="3"/><rect class="a" x="24" y="35.97" width="3" height="3"/><rect class="a" x="27" y="38.97" width="3" height="3"/><rect class="a" x="24" y="41.97" width="3" height="3"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm16.45,8.13A1.44,1.44,0,0,1,24,9.65,1.42,1.42,0,0,1,25.24,9h.2a1.42,1.42,0,0,1,.51.18A1.45,1.45,0,0,1,26.45,11.13ZM35,46.71V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-2,2.81V45H27v2.94H13.09V6.1H23.93v2a2.65,2.65,0,0,0-.69.56h0l-3.5,4h0a3.81,3.81,0,0,0-.37.5,3.56,3.56,0,0,0,1.23,4.88,3.49,3.49,0,0,0,3.4.07V21h3V18H24.4a3.55,3.55,0,0,0,1.08-1.1,3.67,3.67,0,0,0,.27-.57h0L26.26,15H27V13c.12-.3.24-.63.4-1H30V6.1H40.91Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><rect class="a" x="27" y="14.97" width="3" height="3"/><rect class="a" x="27" y="20.97" width="3" height="3"/><rect class="a" x="24" y="23.97" width="3" height="3"/><rect class="a" x="27" y="26.97" width="3" height="3"/><rect class="a" x="27" y="32.97" width="3" height="3"/><rect class="a" x="24" y="29.97" width="3" height="3"/><rect class="a" x="24" y="35.97" width="3" height="3"/><rect class="a" x="27" y="38.97" width="3" height="3"/><rect class="a" x="24" y="41.97" width="3" height="3"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm16.45,8.13A1.44,1.44,0,0,1,24,9.65,1.42,1.42,0,0,1,25.24,9h.2a1.42,1.42,0,0,1,.51.18A1.45,1.45,0,0,1,26.45,11.13ZM35,46.71V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-2,2.81V45H27v2.94H13.09V6.1H23.93v2a2.65,2.65,0,0,0-.69.56h0l-3.5,4h0a3.81,3.81,0,0,0-.37.5,3.56,3.56,0,0,0,1.23,4.88,3.49,3.49,0,0,0,3.4.07V21h3V18H24.4a3.55,3.55,0,0,0,1.08-1.1,3.67,3.67,0,0,0,.27-.57h0L26.26,15H27V13c.12-.3.24-.63.4-1H30V6.1H40.91Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-audio.svg b/public/assets/images/icons/white/file-audio.svg
index 02ed1ad0bc09889f5f9913e554819342eb419903..7b69eba1e50cc261a3f4e5b5e944eac1eada1c05 100644
--- a/public/assets/images/icons/white/file-audio.svg
+++ b/public/assets/images/icons/white/file-audio.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="19.14 17.91 16 17.91 16 24.19 19.14 24.19 23.86 27.34 25.43 27.34 25.43 14.76 23.86 14.76 19.14 17.91"/><path class="a" d="M29.73,13.68l-2.06,2.06a7.4,7.4,0,0,1,0,10.46l2.06,2.06A10.3,10.3,0,0,0,29.73,13.68Z"/><path class="a" d="M33.44,10,31.38,12a12.63,12.63,0,0,1,0,17.88L33.44,32A15.55,15.55,0,0,0,33.44,10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="19.14 17.91 16 17.91 16 24.19 19.14 24.19 23.86 27.34 25.43 27.34 25.43 14.76 23.86 14.76 19.14 17.91"/><path class="a" d="M29.73,13.68l-2.06,2.06a7.4,7.4,0,0,1,0,10.46l2.06,2.06A10.3,10.3,0,0,0,29.73,13.68Z"/><path class="a" d="M33.44,10,31.38,12a12.63,12.63,0,0,1,0,17.88L33.44,32A15.55,15.55,0,0,0,33.44,10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-audio2.svg b/public/assets/images/icons/white/file-audio2.svg
index 5fffda24b3a1e53c7a41e8add5770e0925fdccc2..86ba583507ce1a3e09d8334e497540749810c3b1 100644
--- a/public/assets/images/icons/white/file-audio2.svg
+++ b/public/assets/images/icons/white/file-audio2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M21.75,34.72A5.25,5.25,0,0,0,27,29.47V17.22s.77-1.74,3.33.64c3.29,3.06,7.17.56,7.17.56s-4.77-1.15-5.75-4.26A5.25,5.25,0,0,0,27,10.22H23.5V24.54a5.32,5.32,0,0,0-1.75-.32,5.25,5.25,0,0,0,0,10.5Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M21.75,34.72A5.25,5.25,0,0,0,27,29.47V17.22s.77-1.74,3.33.64c3.29,3.06,7.17.56,7.17.56s-4.77-1.15-5.75-4.26A5.25,5.25,0,0,0,27,10.22H23.5V24.54a5.32,5.32,0,0,0-1.75-.32,5.25,5.25,0,0,0,0,10.5Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-big.svg b/public/assets/images/icons/white/file-big.svg
index 9dbb28bf7594ce6a416f420c8a25e0ceb6332cdd..843d1209b8575c8b27de892a858f1fd78bf41f87 100644
--- a/public/assets/images/icons/white/file-big.svg
+++ b/public/assets/images/icons/white/file-big.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-excel.svg b/public/assets/images/icons/white/file-excel.svg
index bbff04b3f4fb813347115a1b37bb2cb1234f6bee..ab549582f8da574fad06bbe876b098eda39b5976 100644
--- a/public/assets/images/icons/white/file-excel.svg
+++ b/public/assets/images/icons/white/file-excel.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M31.41,32,27,24.31,22.6,32H17.5l7.08-11.28L18,10H23l4,7.11L31,10h5L29.39,20.69,36.5,32Z"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm3.09,3.1H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.71V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M31.41,32,27,24.31,22.6,32H17.5l7.08-11.28L18,10H23l4,7.11L31,10h5L29.39,20.69,36.5,32Z"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm3.09,3.1H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.71V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-generic.svg b/public/assets/images/icons/white/file-generic.svg
index 9dbb28bf7594ce6a416f420c8a25e0ceb6332cdd..843d1209b8575c8b27de892a858f1fd78bf41f87 100644
--- a/public/assets/images/icons/white/file-generic.svg
+++ b/public/assets/images/icons/white/file-generic.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-office.svg b/public/assets/images/icons/white/file-office.svg
index 6fe169b70fdbb8f2f1bb1be54374e337bfe6c6c1..8e9eea575a47af174eab3da2df478479e7d7e910 100644
--- a/public/assets/images/icons/white/file-office.svg
+++ b/public/assets/images/icons/white/file-office.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM35,46.68V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09V6.06H40.91Z"/><path class="a" d="M24.56,23H16v3h6.77l-.85,1.41L22,34l6-3.19L36,17.53l.88-1.48.59-1a3.34,3.34,0,0,0-1.29-4.64,3.61,3.61,0,0,0-4.25.54H16v3H30l-.1.16L28.16,17H16v3H26.36ZM35.27,11.9a1.66,1.66,0,0,1,.65,2.32l-.59,1-3.06-1.7.59-1A1.8,1.8,0,0,1,35.27,11.9ZM31.39,15l3.06,1.7-7.7,12.84-1.11.59L23.7,29v-1.2Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM35,46.68V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09V6.06H40.91Z"/><path class="a" d="M24.56,23H16v3h6.77l-.85,1.41L22,34l6-3.19L36,17.53l.88-1.48.59-1a3.34,3.34,0,0,0-1.29-4.64,3.61,3.61,0,0,0-4.25.54H16v3H30l-.1.16L28.16,17H16v3H26.36ZM35.27,11.9a1.66,1.66,0,0,1,.65,2.32l-.59,1-3.06-1.7.59-1A1.8,1.8,0,0,1,35.27,11.9ZM31.39,15l3.06,1.7-7.7,12.84-1.11.59L23.7,29v-1.2Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-pdf.svg b/public/assets/images/icons/white/file-pdf.svg
index 182769874ffb6cc934ef8220ff066a869ac2a463..2a4e92d3bfadc911676faeebff6ed8d1124b30d6 100644
--- a/public/assets/images/icons/white/file-pdf.svg
+++ b/public/assets/images/icons/white/file-pdf.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a,.b{fill:#ffffff;}.b{fill-rule:evenodd;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="b" d="M32.7,24.13c2.19,1.74,4,1,3.71.69C35.63,23.8,34.08,23.8,32.7,24.13Zm2.85-1a8.49,8.49,0,0,0-5,.09A7.88,7.88,0,0,1,26,18c-1.83-5.82,0-7.69.12-4.06l.37,2.47s1.27-3.08.45-5.33c-.71-2-2.77-1.66-2.89,2a20.45,20.45,0,0,0,.64,5.46,53.31,53.31,0,0,1-4.72,10c-2.74,4.27-2.91,2.83-2.24,1.41.79-1.7,2.12-2.58,2.57-3.29,0,0-2.08.16-3.69,2.93-1,1.76-1.14,6.11,3.21,1.39a21,21,0,0,0,2.65-4.08A45.49,45.49,0,0,1,31,24.56a11.5,11.5,0,0,0,3.74,1.68C37.4,26.85,40.1,24.69,35.55,23.15ZM23.18,25l2.2-5c1.46,3.1,3.52,3.73,3.52,3.73C28,23.78,23.18,25,23.18,25Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a,.b{fill:#ffffff;}.b{fill-rule:evenodd;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="b" d="M32.7,24.13c2.19,1.74,4,1,3.71.69C35.63,23.8,34.08,23.8,32.7,24.13Zm2.85-1a8.49,8.49,0,0,0-5,.09A7.88,7.88,0,0,1,26,18c-1.83-5.82,0-7.69.12-4.06l.37,2.47s1.27-3.08.45-5.33c-.71-2-2.77-1.66-2.89,2a20.45,20.45,0,0,0,.64,5.46,53.31,53.31,0,0,1-4.72,10c-2.74,4.27-2.91,2.83-2.24,1.41.79-1.7,2.12-2.58,2.57-3.29,0,0-2.08.16-3.69,2.93-1,1.76-1.14,6.11,3.21,1.39a21,21,0,0,0,2.65-4.08A45.49,45.49,0,0,1,31,24.56a11.5,11.5,0,0,0,3.74,1.68C37.4,26.85,40.1,24.69,35.55,23.15ZM23.18,25l2.2-5c1.46,3.1,3.52,3.73,3.52,3.73C28,23.78,23.18,25,23.18,25Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-pic.svg b/public/assets/images/icons/white/file-pic.svg
index 830621d0667eba23aa28ae41bfb16b9af34cbdde..7f0829344fedb3af15b7f7a5eedff3b31ef00bed 100644
--- a/public/assets/images/icons/white/file-pic.svg
+++ b/public/assets/images/icons/white/file-pic.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M31,16V14a2,2,0,0,0-2-2H25a2,2,0,0,0-2,2v2H18a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H36a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Zm-4,11.8a5,5,0,1,1,5-5A5,5,0,0,1,27,27.77ZM36,22H33V19h3Z"/><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="18" y="13.97" width="4" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M31,16V14a2,2,0,0,0-2-2H25a2,2,0,0,0-2,2v2H18a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H36a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Zm-4,11.8a5,5,0,1,1,5-5A5,5,0,0,1,27,27.77ZM36,22H33V19h3Z"/><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="18" y="13.97" width="4" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-pic2.svg b/public/assets/images/icons/white/file-pic2.svg
index 63c12e477110181b71b522482820604746cd6307..fb2f2e75713801c370e7b2b07b661928285946dd 100644
--- a/public/assets/images/icons/white/file-pic2.svg
+++ b/public/assets/images/icons/white/file-pic2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M38.91,24.39,34.5,21.5l-5.81,4.92L19.47,17l-4.38,5.3L12,26V32H42V26.42Z"/><circle class="a" cx="30" cy="13.97" r="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M38.91,24.39,34.5,21.5l-5.81,4.92L19.47,17l-4.38,5.3L12,26V32H42V26.42Z"/><circle class="a" cx="30" cy="13.97" r="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-ppt.svg b/public/assets/images/icons/white/file-ppt.svg
index 660e36e9896f190c870e9b952957b4984de7db04..76d22dd146f41a3681aa40538af9ca0a37345797 100644
--- a/public/assets/images/icons/white/file-ppt.svg
+++ b/public/assets/images/icons/white/file-ppt.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M27.64,23.69H23.35V32H19V10h8.64c4.6,0,7.36,3.12,7.36,6.86S32.24,23.69,27.64,23.69Zm-.22-9.89H23.35v6h4.07a2.93,2.93,0,0,0,3.23-3A3,3,0,0,0,27.42,13.8Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M27.64,23.69H23.35V32H19V10h8.64c4.6,0,7.36,3.12,7.36,6.86S32.24,23.69,27.64,23.69Zm-.22-9.89H23.35v6h4.07a2.93,2.93,0,0,0,3.23-3A3,3,0,0,0,27.42,13.8Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-presentation.svg b/public/assets/images/icons/white/file-presentation.svg
index a17d54f7a2cc53548d4a9de772baedb7af50752f..64b35878e9007cd24c32b8d8baeba0fafbc261f6 100644
--- a/public/assets/images/icons/white/file-presentation.svg
+++ b/public/assets/images/icons/white/file-presentation.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM40.91,6.06V26H29.82a3.07,3.07,0,0,0-2.92-2H19.1a3.07,3.07,0,0,0-2.92,2H13.09V6.06ZM35,46.68V42h4.64ZM37.91,39H32v5.91a3,3,0,0,1-3,3H13.09V29H16v4H30V29H40.91v7A3,3,0,0,1,37.91,39Z"/><path class="a" d="M23,22a4.5,4.5,0,1,0-4.5-4.5A4.49,4.49,0,0,0,23,22Z"/><rect class="a" x="31" y="8.97" width="7" height="7"/><rect class="a" x="31" y="17.97" width="7" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM40.91,6.06V26H29.82a3.07,3.07,0,0,0-2.92-2H19.1a3.07,3.07,0,0,0-2.92,2H13.09V6.06ZM35,46.68V42h4.64ZM37.91,39H32v5.91a3,3,0,0,1-3,3H13.09V29H16v4H30V29H40.91v7A3,3,0,0,1,37.91,39Z"/><path class="a" d="M23,22a4.5,4.5,0,1,0-4.5-4.5A4.49,4.49,0,0,0,23,22Z"/><rect class="a" x="31" y="8.97" width="7" height="7"/><rect class="a" x="31" y="17.97" width="7" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-small.svg b/public/assets/images/icons/white/file-small.svg
index 9dbb28bf7594ce6a416f420c8a25e0ceb6332cdd..843d1209b8575c8b27de892a858f1fd78bf41f87 100644
--- a/public/assets/images/icons/white/file-small.svg
+++ b/public/assets/images/icons/white/file-small.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-sound.svg b/public/assets/images/icons/white/file-sound.svg
index 0d55485c0085643df13b07a5e34af56772b96d56..f21977200321ab2e0720bc9ff7388d6ad47d5d71 100644
--- a/public/assets/images/icons/white/file-sound.svg
+++ b/public/assets/images/icons/white/file-sound.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.57 17.46 18 17.46 18 22.61 20.57 22.61 24.43 25.18 25.71 25.18 25.71 14.89 24.43 14.89 20.57 17.46"/><path class="a" d="M29.24,14l-1.69,1.68a6.06,6.06,0,0,1,0,8.56l1.69,1.68A8.43,8.43,0,0,0,29.24,14Z"/><path class="a" d="M32.27,11l-1.69,1.69a10.31,10.31,0,0,1,0,14.62L32.27,29A12.73,12.73,0,0,0,32.27,11Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.57 17.46 18 17.46 18 22.61 20.57 22.61 24.43 25.18 25.71 25.18 25.71 14.89 24.43 14.89 20.57 17.46"/><path class="a" d="M29.24,14l-1.69,1.68a6.06,6.06,0,0,1,0,8.56l1.69,1.68A8.43,8.43,0,0,0,29.24,14Z"/><path class="a" d="M32.27,11l-1.69,1.69a10.31,10.31,0,0,1,0,14.62L32.27,29A12.73,12.73,0,0,0,32.27,11Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-spreadsheet.svg b/public/assets/images/icons/white/file-spreadsheet.svg
index b354e02ab542ce0f232b3b33e2c791c7e9083acd..e06af61ae63044093ab1fb333979cb1675ba9116 100644
--- a/public/assets/images/icons/white/file-spreadsheet.svg
+++ b/public/assets/images/icons/white/file-spreadsheet.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="13.97" width="5" height="11"/><rect class="a" x="24.5" y="10.97" width="5" height="14"/><rect class="a" x="33" y="16.97" width="5" height="8"/><rect class="a" x="16" y="26.97" width="22" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="13.97" width="5" height="11"/><rect class="a" x="24.5" y="10.97" width="5" height="14"/><rect class="a" x="33" y="16.97" width="5" height="8"/><rect class="a" x="16" y="26.97" width="22" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-text.svg b/public/assets/images/icons/white/file-text.svg
index ce956f555f1160d5f51a69aad6c9695adc708eae..9593cc8ee067764cb381c4e67313acf11e6378a7 100644
--- a/public/assets/images/icons/white/file-text.svg
+++ b/public/assets/images/icons/white/file-text.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="10.97" width="9" height="9"/><rect class="a" x="28" y="10.97" width="10" height="3"/><rect class="a" x="28" y="16.97" width="10" height="3"/><rect class="a" x="16" y="22.97" width="22" height="3"/><rect class="a" x="16" y="28.97" width="22" height="3"/><rect class="a" x="16" y="34.97" width="13" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="10.97" width="9" height="9"/><rect class="a" x="28" y="10.97" width="10" height="3"/><rect class="a" x="28" y="16.97" width="10" height="3"/><rect class="a" x="16" y="22.97" width="22" height="3"/><rect class="a" x="16" y="28.97" width="22" height="3"/><rect class="a" x="16" y="34.97" width="13" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-video.svg b/public/assets/images/icons/white/file-video.svg
index 780c45cd38f77e80822d03e8775874b1880203b5..607542226b86ce13c1014030dc7cc879e84fad88 100644
--- a/public/assets/images/icons/white/file-video.svg
+++ b/public/assets/images/icons/white/file-video.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M36.62,15.42,32.5,18.17V15.73A1.69,1.69,0,0,0,30.82,14H17.68A1.69,1.69,0,0,0,16,15.73V26.11a1.68,1.68,0,0,0,1.68,1.68H30.82a1.68,1.68,0,0,0,1.68-1.68V23.67l4.12,2.75H38v-11ZM31,26.11a.14.14,0,0,1-.14.14H17.68a.14.14,0,0,1-.14-.14V15.73a.15.15,0,0,1,.14-.15H30.82a.15.15,0,0,1,.14.15Z"/><polygon class="a" points="21.5 25.04 27.69 20.92 21.5 16.79 21.5 25.04"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M36.62,15.42,32.5,18.17V15.73A1.69,1.69,0,0,0,30.82,14H17.68A1.69,1.69,0,0,0,16,15.73V26.11a1.68,1.68,0,0,0,1.68,1.68H30.82a1.68,1.68,0,0,0,1.68-1.68V23.67l4.12,2.75H38v-11ZM31,26.11a.14.14,0,0,1-.14.14H17.68a.14.14,0,0,1-.14-.14V15.73a.15.15,0,0,1,.14-.15H30.82a.15.15,0,0,1,.14.15Z"/><polygon class="a" points="21.5 25.04 27.69 20.92 21.5 16.79 21.5 25.04"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-video2.svg b/public/assets/images/icons/white/file-video2.svg
index 2148e68a6143d3926a95e3a940a3e583929f59e5..47357e4fe34e1c13aae8c5751df3a42ee70ff13a 100644
--- a/public/assets/images/icons/white/file-video2.svg
+++ b/public/assets/images/icons/white/file-video2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.12 30.47 35.88 19.97 20.13 9.47 20.12 30.47"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.12 30.47 35.88 19.97 20.13 9.47 20.12 30.47"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file-word.svg b/public/assets/images/icons/white/file-word.svg
index dfbf5cc6a31867db5daceeac4d604ebb92da50aa..f630340e025db8eca7744f909495700a30633135 100644
--- a/public/assets/images/icons/white/file-word.svg
+++ b/public/assets/images/icons/white/file-word.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M33.2,30H30.28L27,18.44,23.69,30H20.78L16,11h3.65l2.76,12,3.27-12h2.61l3.27,12,2.79-12H38Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M33.2,30H30.28L27,18.44,23.69,30H20.78L16,11h3.65l2.76,12,3.27-12h2.61l3.27,12,2.79-12H38Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file.svg b/public/assets/images/icons/white/file.svg
index 9dbb28bf7594ce6a416f420c8a25e0ceb6332cdd..843d1209b8575c8b27de892a858f1fd78bf41f87 100644
--- a/public/assets/images/icons/white/file.svg
+++ b/public/assets/images/icons/white/file.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/file2.svg b/public/assets/images/icons/white/file2.svg
index 9dbb28bf7594ce6a416f420c8a25e0ceb6332cdd..843d1209b8575c8b27de892a858f1fd78bf41f87 100644
--- a/public/assets/images/icons/white/file2.svg
+++ b/public/assets/images/icons/white/file2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/files.svg b/public/assets/images/icons/white/files.svg
index 96b7a15787084fdd69d7f70d68a48c6f47dc3ff0..d08dd6b74d5790ed4071422f0e01e7fa6f8109e4 100644
--- a/public/assets/images/icons/white/files.svg
+++ b/public/assets/images/icons/white/files.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="a" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="a" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/files2.svg b/public/assets/images/icons/white/files2.svg
index c7556a94e2ea43510bbcae32b4d9fd9ef41418fc..ee893693ab1efba395016e7f32deab1d5147f268 100644
--- a/public/assets/images/icons/white/files2.svg
+++ b/public/assets/images/icons/white/files2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="docs"><g id="files"><path class="cls-1" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="cls-1" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="docs"><g id="files"><path class="cls-1" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="cls-1" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/filter.svg b/public/assets/images/icons/white/filter.svg
index 75b9ffca370e782dfb1133dd06a364bf805470ad..49f7046b973bdcf6b287b5e0973f071c544b4b5b 100644
--- a/public/assets/images/icons/white/filter.svg
+++ b/public/assets/images/icons/white/filter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><path id="filter" d="M21.1,49.89v-20a1.91,1.91,0,0,0-.41-1.19L3,6.22H51L33.54,28.37a3.09,3.09,0,0,0-.65,1.89V43.39ZM9.33,9.29,23.1,26.78a5,5,0,0,1,1.07,3.09V44.69l5.64-3.12V30.26a6.1,6.1,0,0,1,1.32-3.78L44.66,9.29Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><path id="filter" d="M21.1,49.89v-20a1.91,1.91,0,0,0-.41-1.19L3,6.22H51L33.54,28.37a3.09,3.09,0,0,0-.65,1.89V43.39ZM9.33,9.29,23.1,26.78a5,5,0,0,1,1.07,3.09V44.69l5.64-3.12V30.26a6.1,6.1,0,0,1,1.32-3.78L44.66,9.29Z"/></svg>
diff --git a/public/assets/images/icons/white/filter2.svg b/public/assets/images/icons/white/filter2.svg
index 326ab864e2fda6fb096ff379fee700dda5a00161..954b16811a3c0f32485dc7505cc88957c7aa0864 100644
--- a/public/assets/images/icons/white/filter2.svg
+++ b/public/assets/images/icons/white/filter2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="filter2"><polygon points="16.97 30.39 37.02 30.39 42.05 21.7 11.94 21.7 16.97 30.39"/><polygon points="3.01 6.22 8.32 15.41 45.67 15.41 50.98 6.22 3.01 6.22"/><polygon points="27 47.77 33.4 36.68 20.59 36.68 27 47.77"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="filter2"><polygon points="16.97 30.39 37.02 30.39 42.05 21.7 11.94 21.7 16.97 30.39"/><polygon points="3.01 6.22 8.32 15.41 45.67 15.41 50.98 6.22 3.01 6.22"/><polygon points="27 47.77 33.4 36.68 20.59 36.68 27 47.77"/></g></svg>
diff --git a/public/assets/images/icons/white/fishbowl.svg b/public/assets/images/icons/white/fishbowl.svg
index 580a555459c3534640da0c91ed4a6811f2778631..486e0d721d2c4e9b87ccad17fc79fa2fbd820f6c 100644
--- a/public/assets/images/icons/white/fishbowl.svg
+++ b/public/assets/images/icons/white/fishbowl.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="fishbowl"><path class="cls-1" d="M51,27a23.69,23.69,0,0,0-4.25-13.58,1.61,1.61,0,0,0-2.23-.41,1.6,1.6,0,0,0-.41,2.22A20.47,20.47,0,0,1,47.8,27a21.51,21.51,0,0,1-.37,3.87,15,15,0,0,1-12,6.05A15.3,15.3,0,0,1,20.27,21.53c0-.07,0-.15,0-.22A25.31,25.31,0,0,0,7,32.57,20.19,20.19,0,0,1,6.2,27,20.51,20.51,0,0,1,10,15.17,1.59,1.59,0,0,0,9.57,13a1.62,1.62,0,0,0-2.23.39,23.77,23.77,0,0,0,6,33.29,3.21,3.21,0,0,0-.19.92A3.43,3.43,0,0,0,16.54,51H37.37a3.43,3.43,0,0,0,3.42-3.42,3.14,3.14,0,0,0-.18-.86A23.83,23.83,0,0,0,51,27Z"/><path class="cls-1" d="M26.88,16.28A14,14,0,0,0,34,12.43c4.47-4.9,3.31-9.53,3.31-9.53s-4.75-.71-9.22,4.19A13.88,13.88,0,0,0,25,14.54l-5.13,1.63,5.91,5.34Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="fishbowl"><path class="cls-1" d="M51,27a23.69,23.69,0,0,0-4.25-13.58,1.61,1.61,0,0,0-2.23-.41,1.6,1.6,0,0,0-.41,2.22A20.47,20.47,0,0,1,47.8,27a21.51,21.51,0,0,1-.37,3.87,15,15,0,0,1-12,6.05A15.3,15.3,0,0,1,20.27,21.53c0-.07,0-.15,0-.22A25.31,25.31,0,0,0,7,32.57,20.19,20.19,0,0,1,6.2,27,20.51,20.51,0,0,1,10,15.17,1.59,1.59,0,0,0,9.57,13a1.62,1.62,0,0,0-2.23.39,23.77,23.77,0,0,0,6,33.29,3.21,3.21,0,0,0-.19.92A3.43,3.43,0,0,0,16.54,51H37.37a3.43,3.43,0,0,0,3.42-3.42,3.14,3.14,0,0,0-.18-.86A23.83,23.83,0,0,0,51,27Z"/><path class="cls-1" d="M26.88,16.28A14,14,0,0,0,34,12.43c4.47-4.9,3.31-9.53,3.31-9.53s-4.75-.71-9.22,4.19A13.88,13.88,0,0,0,25,14.54l-5.13,1.63,5.91,5.34Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-broken.svg b/public/assets/images/icons/white/folder-broken.svg
index 32d07513b00bd08eb02ea35d50fb0a9d3e06b13c..db40fb26f1fd386043c641d28b6c99f6ef1dc7d5 100644
--- a/public/assets/images/icons/white/folder-broken.svg
+++ b/public/assets/images/icons/white/folder-broken.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-broken2.svg b/public/assets/images/icons/white/folder-broken2.svg
index 32d07513b00bd08eb02ea35d50fb0a9d3e06b13c..db40fb26f1fd386043c641d28b6c99f6ef1dc7d5 100644
--- a/public/assets/images/icons/white/folder-broken2.svg
+++ b/public/assets/images/icons/white/folder-broken2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-date-empty.svg b/public/assets/images/icons/white/folder-date-empty.svg
index 55386f84b7c567a97280dc3dbe0747359e60a048..2d6d56df85b6437e55483495f68f1826b32ba44b 100644
--- a/public/assets/images/icons/white/folder-date-empty.svg
+++ b/public/assets/images/icons/white/folder-date-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-date-empty2.svg b/public/assets/images/icons/white/folder-date-empty2.svg
index 55386f84b7c567a97280dc3dbe0747359e60a048..2d6d56df85b6437e55483495f68f1826b32ba44b 100644
--- a/public/assets/images/icons/white/folder-date-empty2.svg
+++ b/public/assets/images/icons/white/folder-date-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-date-full.svg b/public/assets/images/icons/white/folder-date-full.svg
index 811d1474ef70f0f18b4b3bf8140489c58a2cd9dc..93ac19f97bf3679d76ce1573adce66dc424e5e1f 100644
--- a/public/assets/images/icons/white/folder-date-full.svg
+++ b/public/assets/images/icons/white/folder-date-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-date-full2.svg b/public/assets/images/icons/white/folder-date-full2.svg
index 811d1474ef70f0f18b4b3bf8140489c58a2cd9dc..93ac19f97bf3679d76ce1573adce66dc424e5e1f 100644
--- a/public/assets/images/icons/white/folder-date-full2.svg
+++ b/public/assets/images/icons/white/folder-date-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-edit-empty.svg b/public/assets/images/icons/white/folder-edit-empty.svg
index 8c4c477043740e33b832b6960b542b58762df71c..c284f773e3591af6fbece53b84e2bdaee25ceae1 100644
--- a/public/assets/images/icons/white/folder-edit-empty.svg
+++ b/public/assets/images/icons/white/folder-edit-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-edit-empty2.svg b/public/assets/images/icons/white/folder-edit-empty2.svg
index 8c4c477043740e33b832b6960b542b58762df71c..c284f773e3591af6fbece53b84e2bdaee25ceae1 100644
--- a/public/assets/images/icons/white/folder-edit-empty2.svg
+++ b/public/assets/images/icons/white/folder-edit-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-edit-full.svg b/public/assets/images/icons/white/folder-edit-full.svg
index 9bd8f41e809c7402e1611e64a09e901a6705cbc8..66d3d6f71281e0fcb89d09d8c77ab853e4bf29a7 100644
--- a/public/assets/images/icons/white/folder-edit-full.svg
+++ b/public/assets/images/icons/white/folder-edit-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-edit-full2.svg b/public/assets/images/icons/white/folder-edit-full2.svg
index 9bd8f41e809c7402e1611e64a09e901a6705cbc8..66d3d6f71281e0fcb89d09d8c77ab853e4bf29a7 100644
--- a/public/assets/images/icons/white/folder-edit-full2.svg
+++ b/public/assets/images/icons/white/folder-edit-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-empty.svg b/public/assets/images/icons/white/folder-empty.svg
index 401c9e0af1ab103fe22d5c8a61723a93ae1657b6..3d26b788c05c15f3ae46e0feb6c0a4acb499ff1a 100644
--- a/public/assets/images/icons/white/folder-empty.svg
+++ b/public/assets/images/icons/white/folder-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-empty2.svg b/public/assets/images/icons/white/folder-empty2.svg
index 401c9e0af1ab103fe22d5c8a61723a93ae1657b6..3d26b788c05c15f3ae46e0feb6c0a4acb499ff1a 100644
--- a/public/assets/images/icons/white/folder-empty2.svg
+++ b/public/assets/images/icons/white/folder-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-full.svg b/public/assets/images/icons/white/folder-full.svg
index 4072c64470500ce6ef0fc1a7fa502c2e0cab5428..ad4151498de591ebf7fcdccef3bc10b0c3d1c5c2 100644
--- a/public/assets/images/icons/white/folder-full.svg
+++ b/public/assets/images/icons/white/folder-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-full2.svg b/public/assets/images/icons/white/folder-full2.svg
index 4072c64470500ce6ef0fc1a7fa502c2e0cab5428..ad4151498de591ebf7fcdccef3bc10b0c3d1c5c2 100644
--- a/public/assets/images/icons/white/folder-full2.svg
+++ b/public/assets/images/icons/white/folder-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-group-empty.svg b/public/assets/images/icons/white/folder-group-empty.svg
index f5450d03e253d9a1acd6e0184f9af074e42400ff..9849690cee5abc0396176cb2cc484977a62e86e6 100644
--- a/public/assets/images/icons/white/folder-group-empty.svg
+++ b/public/assets/images/icons/white/folder-group-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-group-empty2.svg b/public/assets/images/icons/white/folder-group-empty2.svg
index f5450d03e253d9a1acd6e0184f9af074e42400ff..9849690cee5abc0396176cb2cc484977a62e86e6 100644
--- a/public/assets/images/icons/white/folder-group-empty2.svg
+++ b/public/assets/images/icons/white/folder-group-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-group-full.svg b/public/assets/images/icons/white/folder-group-full.svg
index 32f7fd86969bb655b4e0aec4ad9734e721495937..ae27ac0aae4d83fb4856d5a65b89117394623db4 100644
--- a/public/assets/images/icons/white/folder-group-full.svg
+++ b/public/assets/images/icons/white/folder-group-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-group-full2.svg b/public/assets/images/icons/white/folder-group-full2.svg
index 32f7fd86969bb655b4e0aec4ad9734e721495937..ae27ac0aae4d83fb4856d5a65b89117394623db4 100644
--- a/public/assets/images/icons/white/folder-group-full2.svg
+++ b/public/assets/images/icons/white/folder-group-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-home-empty.svg b/public/assets/images/icons/white/folder-home-empty.svg
index 084f5e1123240925c83818f1314dca66c7afdbe1..6474909e18e92b9c0459558468490a656fe4181b 100644
--- a/public/assets/images/icons/white/folder-home-empty.svg
+++ b/public/assets/images/icons/white/folder-home-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><polygon class="a" points="26.97 17.47 16 28.45 19.21 28.45 27 20.64 34.8 28.43 38 28.45 26.97 17.47"/><polygon class="a" points="19.67 29.36 19.67 39.47 24.25 39.47 24.25 31.66 29.75 31.66 29.75 39.47 34.33 39.47 34.33 29.36 27 22.02 19.67 29.36"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><polygon class="a" points="26.97 17.47 16 28.45 19.21 28.45 27 20.64 34.8 28.43 38 28.45 26.97 17.47"/><polygon class="a" points="19.67 29.36 19.67 39.47 24.25 39.47 24.25 31.66 29.75 31.66 29.75 39.47 34.33 39.47 34.33 29.36 27 22.02 19.67 29.36"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-home-empty2.svg b/public/assets/images/icons/white/folder-home-empty2.svg
index 22c025485b0880f42c039a08f4a30da0844aa512..fb89c9225241c18f66ee85218267c8cb95cb7097 100644
--- a/public/assets/images/icons/white/folder-home-empty2.svg
+++ b/public/assets/images/icons/white/folder-home-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="27 16.97 16 28.28 17.79 28.28 17.79 38.97 23.84 38.97 23.84 30.61 30.16 30.61 30.16 38.97 36.21 38.97 36.21 28.28 38 28.28 27 16.97"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="27 16.97 16 28.28 17.79 28.28 17.79 38.97 23.84 38.97 23.84 30.61 30.16 30.61 30.16 38.97 36.21 38.97 36.21 28.28 38 28.28 27 16.97"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-home-full.svg b/public/assets/images/icons/white/folder-home-full.svg
index cff6e2f1dca3c1ffef0c0bbc5cddcdd2dfc2375b..9793c580d48268762fed410888d3ff67f6b34395 100644
--- a/public/assets/images/icons/white/folder-home-full.svg
+++ b/public/assets/images/icons/white/folder-home-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="23.98 21.97 15 30.95 17.63 30.95 24 24.56 30.38 30.94 33 30.95 23.98 21.97"/><polygon class="a" points="18 31.7 18 39.97 21.75 39.97 21.75 33.58 26.25 33.58 26.25 39.97 30 39.97 30 31.7 24 25.69 18 31.7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="23.98 21.97 15 30.95 17.63 30.95 24 24.56 30.38 30.94 33 30.95 23.98 21.97"/><polygon class="a" points="18 31.7 18 39.97 21.75 39.97 21.75 33.58 26.25 33.58 26.25 39.97 30 39.97 30 31.7 24 25.69 18 31.7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-home-full2.svg b/public/assets/images/icons/white/folder-home-full2.svg
index 98854bc73b24799d533353e4ac439675800f0ea6..d7968af1312167717d38118fcdfbc9d6bfc470bb 100644
--- a/public/assets/images/icons/white/folder-home-full2.svg
+++ b/public/assets/images/icons/white/folder-home-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="24 22.06 15.04 31.29 16.5 31.29 16.5 40.01 21.42 40.01 21.42 33.19 26.58 33.19 26.58 40.01 31.51 40.01 31.51 31.29 32.97 31.29 24 22.06"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="24 22.06 15.04 31.29 16.5 31.29 16.5 40.01 21.42 40.01 21.42 33.19 26.58 33.19 26.58 40.01 31.51 40.01 31.51 31.29 32.97 31.29 24 22.06"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-inbox-empty.svg b/public/assets/images/icons/white/folder-inbox-empty.svg
index bcb988a9b737e1fe7e887b74d7aff077a997c981..f887b0c5a1ca2d4d1fbb0f20417eb6f9ea0a2c94 100644
--- a/public/assets/images/icons/white/folder-inbox-empty.svg
+++ b/public/assets/images/icons/white/folder-inbox-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M12,17.47v3.06L27,30.91,42,20.53V17.47Zm15,9.7-9.59-6.64H36.59Z"/><polygon class="a" points="38.88 36.41 15.13 36.41 15.1 25.12 12 22.97 12 39.47 42 39.47 42 22.97 38.9 25.12 38.88 36.41"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M12,17.47v3.06L27,30.91,42,20.53V17.47Zm15,9.7-9.59-6.64H36.59Z"/><polygon class="a" points="38.88 36.41 15.13 36.41 15.1 25.12 12 22.97 12 39.47 42 39.47 42 22.97 38.9 25.12 38.88 36.41"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-inbox-full.svg b/public/assets/images/icons/white/folder-inbox-full.svg
index 366cdff2d2cccd7006ea96939e5c39f9e742aac2..df4feb88abc2d961ff1d7e58362d651744ae68b3 100644
--- a/public/assets/images/icons/white/folder-inbox-full.svg
+++ b/public/assets/images/icons/white/folder-inbox-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M12,22.41v2.5l12,8.5,12-8.5v-2.5Zm12,7.93-7.67-5.43H31.67Z"/><polygon class="a" points="33.5 37.91 14.5 37.91 14.48 28.66 12 26.91 12 40.41 36 40.41 36 26.91 33.52 28.66 33.5 37.91"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M12,22.41v2.5l12,8.5,12-8.5v-2.5Zm12,7.93-7.67-5.43H31.67Z"/><polygon class="a" points="33.5 37.91 14.5 37.91 14.48 28.66 12 26.91 12 40.41 36 40.41 36 26.91 33.52 28.66 33.5 37.91"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-lock-empty.svg b/public/assets/images/icons/white/folder-lock-empty.svg
index 98f36cdfc4d3c3cdf5a3334cb17ed83a95aa54bf..8675e3d27ce6c2d82c552f6b24063b85704d4642 100644
--- a/public/assets/images/icons/white/folder-lock-empty.svg
+++ b/public/assets/images/icons/white/folder-lock-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-lock-empty2.svg b/public/assets/images/icons/white/folder-lock-empty2.svg
index 98f36cdfc4d3c3cdf5a3334cb17ed83a95aa54bf..8675e3d27ce6c2d82c552f6b24063b85704d4642 100644
--- a/public/assets/images/icons/white/folder-lock-empty2.svg
+++ b/public/assets/images/icons/white/folder-lock-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-lock-full.svg b/public/assets/images/icons/white/folder-lock-full.svg
index eb24d902d261af5bf0a13b5e6eb9c5b27bfa3aae..9094ef9cb55a9e690efae0ebf56c688797d6ebab 100644
--- a/public/assets/images/icons/white/folder-lock-full.svg
+++ b/public/assets/images/icons/white/folder-lock-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-lock-full2.svg b/public/assets/images/icons/white/folder-lock-full2.svg
index eb24d902d261af5bf0a13b5e6eb9c5b27bfa3aae..9094ef9cb55a9e690efae0ebf56c688797d6ebab 100644
--- a/public/assets/images/icons/white/folder-lock-full2.svg
+++ b/public/assets/images/icons/white/folder-lock-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-parent.svg b/public/assets/images/icons/white/folder-parent.svg
index 6d3b2f7ee3b04daa9b6e05fed3ffbd3c0c1919ee..03d6a950a28bcd644761278510d61e6a7d087daa 100644
--- a/public/assets/images/icons/white/folder-parent.svg
+++ b/public/assets/images/icons/white/folder-parent.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="38 25 30.91 25 24 31.91 17.09 25 10 25 24 39 38 25"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="38 25 30.91 25 24 31.91 17.09 25 10 25 24 39 38 25"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-plugin-market-empty.svg b/public/assets/images/icons/white/folder-plugin-market-empty.svg
index a1e7403a3c5251dee51d2a4c18b20bdb58a3574a..b89e1bf9a6bbc58dd70e5a613c4f9cf88d2295a9 100644
--- a/public/assets/images/icons/white/folder-plugin-market-empty.svg
+++ b/public/assets/images/icons/white/folder-plugin-market-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M31.46,33.48a.92.92,0,0,0-.45.12,6.34,6.34,0,0,1-3.09.8,6.42,6.42,0,0,1-1.07-12.75,7.82,7.82,0,0,1,1.07-.08,6.2,6.2,0,0,1,1.62.21,1,1,0,0,0,.24,0,.91.91,0,0,0,.9-1L30.21,17H16V39H33l-.59-4.69A.91.91,0,0,0,31.46,33.48ZM17.37,37.59V18.34H29l.25,2a7.37,7.37,0,0,0-1.32-.12,8,8,0,0,0-1.29.11,7.79,7.79,0,0,0,1.29,15.48,7.89,7.89,0,0,0,3.17-.68l.31,2.49Z"/><path class="a" d="M31.58,17l.76,6.1a.91.91,0,0,1-1.47.83A5,5,0,0,0,27.42,23a5,5,0,1,0,4.37,8.24.92.92,0,0,1,1.63.45c.4,3.19.91,7.31.91,7.31H38V17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M31.46,33.48a.92.92,0,0,0-.45.12,6.34,6.34,0,0,1-3.09.8,6.42,6.42,0,0,1-1.07-12.75,7.82,7.82,0,0,1,1.07-.08,6.2,6.2,0,0,1,1.62.21,1,1,0,0,0,.24,0,.91.91,0,0,0,.9-1L30.21,17H16V39H33l-.59-4.69A.91.91,0,0,0,31.46,33.48ZM17.37,37.59V18.34H29l.25,2a7.37,7.37,0,0,0-1.32-.12,8,8,0,0,0-1.29.11,7.79,7.79,0,0,0,1.29,15.48,7.89,7.89,0,0,0,3.17-.68l.31,2.49Z"/><path class="a" d="M31.58,17l.76,6.1a.91.91,0,0,1-1.47.83A5,5,0,0,0,27.42,23a5,5,0,1,0,4.37,8.24.92.92,0,0,1,1.63.45c.4,3.19.91,7.31.91,7.31H38V17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-plugin-market-full.svg b/public/assets/images/icons/white/folder-plugin-market-full.svg
index 2bdc3f4f2585fb9b73c23eb7f73ffcebc65bd10b..aabb47b386fa974fbd8f5911688c165716576b96 100644
--- a/public/assets/images/icons/white/folder-plugin-market-full.svg
+++ b/public/assets/images/icons/white/folder-plugin-market-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M27.65,35.48a.74.74,0,0,0-.37.1,5.25,5.25,0,1,1-3.4-9.78,5.1,5.1,0,0,1,.87-.07,5.33,5.33,0,0,1,1.33.17.63.63,0,0,0,.19,0,.74.74,0,0,0,.74-.84L26.63,22H15V40H28.87l-.47-3.84A.75.75,0,0,0,27.65,35.48ZM16.12,38.84V23.09h9.51l.2,1.61a6.47,6.47,0,0,0-1.08-.09,7.42,7.42,0,0,0-1.05.08A6.38,6.38,0,1,0,27.35,36.8l.25,2Z"/><path class="a" d="M27.75,22l.62,5a.75.75,0,0,1-1.2.68,4,4,0,0,0-2.82-.76,4.12,4.12,0,0,0,.4,8.23,4.09,4.09,0,0,0,3.17-1.49.75.75,0,0,1,1.33.37c.33,2.61.75,6,.75,6h3V22Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M27.65,35.48a.74.74,0,0,0-.37.1,5.25,5.25,0,1,1-3.4-9.78,5.1,5.1,0,0,1,.87-.07,5.33,5.33,0,0,1,1.33.17.63.63,0,0,0,.19,0,.74.74,0,0,0,.74-.84L26.63,22H15V40H28.87l-.47-3.84A.75.75,0,0,0,27.65,35.48ZM16.12,38.84V23.09h9.51l.2,1.61a6.47,6.47,0,0,0-1.08-.09,7.42,7.42,0,0,0-1.05.08A6.38,6.38,0,1,0,27.35,36.8l.25,2Z"/><path class="a" d="M27.75,22l.62,5a.75.75,0,0,1-1.2.68,4,4,0,0,0-2.82-.76,4.12,4.12,0,0,0,.4,8.23,4.09,4.09,0,0,0,3.17-1.49.75.75,0,0,1,1.33.37c.33,2.61.75,6,.75,6h3V22Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-public-empty.svg b/public/assets/images/icons/white/folder-public-empty.svg
index 844eb942e5a672a4109a40963b99082316811bc3..07a68dc4558cc240b7b10b0ae85bffc2b51e9f3e 100644
--- a/public/assets/images/icons/white/folder-public-empty.svg
+++ b/public/assets/images/icons/white/folder-public-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-public-empty2.svg b/public/assets/images/icons/white/folder-public-empty2.svg
index 844eb942e5a672a4109a40963b99082316811bc3..07a68dc4558cc240b7b10b0ae85bffc2b51e9f3e 100644
--- a/public/assets/images/icons/white/folder-public-empty2.svg
+++ b/public/assets/images/icons/white/folder-public-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-public-full.svg b/public/assets/images/icons/white/folder-public-full.svg
index 41c168ae231d7985e5248b059727c5c8e957584a..5beb12b2b2fe00205d1889636e65c67711ed547f 100644
--- a/public/assets/images/icons/white/folder-public-full.svg
+++ b/public/assets/images/icons/white/folder-public-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-public-full2.svg b/public/assets/images/icons/white/folder-public-full2.svg
index 41c168ae231d7985e5248b059727c5c8e957584a..5beb12b2b2fe00205d1889636e65c67711ed547f 100644
--- a/public/assets/images/icons/white/folder-public-full2.svg
+++ b/public/assets/images/icons/white/folder-public-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-topic-empty.svg b/public/assets/images/icons/white/folder-topic-empty.svg
index f33aec5558ddb16b43287f682f14316e25a98cde..42f25fe4bd8b0de8652dfaffc66145f8149a5084 100644
--- a/public/assets/images/icons/white/folder-topic-empty.svg
+++ b/public/assets/images/icons/white/folder-topic-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M29.89,18.41V17H24v1.38H18.18V39H35.82V18.41Zm3.59,18.43h-13V20.6H24v.51h5.92V20.6h3.59Z"/><rect class="a" x="22.59" y="26.57" width="8.82" height="2.78"/><rect class="a" x="22.59" y="30.69" width="8.82" height="2.89"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M29.89,18.41V17H24v1.38H18.18V39H35.82V18.41Zm3.59,18.43h-13V20.6H24v.51h5.92V20.6h3.59Z"/><rect class="a" x="22.59" y="26.57" width="8.82" height="2.78"/><rect class="a" x="22.59" y="30.69" width="8.82" height="2.89"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/folder-topic-full.svg b/public/assets/images/icons/white/folder-topic-full.svg
index a8efdc4e214af1a563d2864c26091a3140d8b03c..190baf5786055fd63560a1eadd03cb2a5cb40c91 100644
--- a/public/assets/images/icons/white/folder-topic-full.svg
+++ b/public/assets/images/icons/white/folder-topic-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M26.37,23.15V22H21.52v1.12H16.78V40H31.22V23.15ZM29.3,38.24H18.7V25h2.82v.42h4.85V25H29.3Z"/><rect class="a" x="20.39" y="29.83" width="7.22" height="2.27"/><rect class="a" x="20.39" y="33.21" width="7.22" height="2.36"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M26.37,23.15V22H21.52v1.12H16.78V40H31.22V23.15ZM29.3,38.24H18.7V25h2.82v.42h4.85V25H29.3Z"/><rect class="a" x="20.39" y="29.83" width="7.22" height="2.27"/><rect class="a" x="20.39" y="33.21" width="7.22" height="2.36"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/forum.svg b/public/assets/images/icons/white/forum.svg
index 6147a75467ea9efdb0892bdd0dcf34fcac857748..3050d758bdcb23f6186c34bd9f54143e1fcccb51 100644
--- a/public/assets/images/icons/white/forum.svg
+++ b/public/assets/images/icons/white/forum.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/fullscreen-off.svg b/public/assets/images/icons/white/fullscreen-off.svg
index 2de4547db4a25eb365430588a21e0c6e7606b0bb..2709d176a1c6c4ab1fe63f7793165d223c14def0 100644
--- a/public/assets/images/icons/white/fullscreen-off.svg
+++ b/public/assets/images/icons/white/fullscreen-off.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="fullscreen-off"><polygon points="51 20.13 33.87 20.13 33.87 2.99 37.29 2.99 37.29 16.7 51 16.7 51 20.13"/><polygon points="33.86 50.87 33.86 33.73 51 33.73 51 37.16 37.29 37.16 37.29 50.87 33.86 50.87"/><polygon points="20.16 50.97 16.73 50.97 16.73 37.26 3.02 37.26 3.02 33.84 20.16 33.84 20.16 50.97"/><polygon points="3.02 20.02 3.02 16.6 16.73 16.6 16.73 2.89 20.16 2.89 20.16 20.02 3.02 20.02"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="fullscreen-off"><polygon points="51 20.13 33.87 20.13 33.87 2.99 37.29 2.99 37.29 16.7 51 16.7 51 20.13"/><polygon points="33.86 50.87 33.86 33.73 51 33.73 51 37.16 37.29 37.16 37.29 50.87 33.86 50.87"/><polygon points="20.16 50.97 16.73 50.97 16.73 37.26 3.02 37.26 3.02 33.84 20.16 33.84 20.16 50.97"/><polygon points="3.02 20.02 3.02 16.6 16.73 16.6 16.73 2.89 20.16 2.89 20.16 20.02 3.02 20.02"/></g></svg>
diff --git a/public/assets/images/icons/white/fullscreen-on.svg b/public/assets/images/icons/white/fullscreen-on.svg
index 3a15b0e77e7e7cf28c52aba29b3c8e1b8b89b1c5..a59f1926d5e64657b9f9c1c8584931386fa9b2e0 100644
--- a/public/assets/images/icons/white/fullscreen-on.svg
+++ b/public/assets/images/icons/white/fullscreen-on.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="zoom-in-3"><polygon points="51 20.12 47.57 20.12 47.57 6.42 33.86 6.42 33.86 2.99 51 2.99 51 20.12"/><polygon points="20.15 50.97 3.02 50.97 3.02 33.83 6.44 33.83 6.44 47.54 20.15 47.54 20.15 50.97"/><polygon points="33.86 50.97 33.86 47.54 47.57 47.54 47.57 33.83 51 33.83 51 50.97 33.86 50.97"/><polygon points="3.02 20.12 3.02 2.99 20.15 2.99 20.15 6.42 6.44 6.42 6.44 20.12 3.02 20.12"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="zoom-in-3"><polygon points="51 20.12 47.57 20.12 47.57 6.42 33.86 6.42 33.86 2.99 51 2.99 51 20.12"/><polygon points="20.15 50.97 3.02 50.97 3.02 33.83 6.44 33.83 6.44 47.54 20.15 47.54 20.15 50.97"/><polygon points="33.86 50.97 33.86 47.54 47.57 47.54 47.57 33.83 51 33.83 51 50.97 33.86 50.97"/><polygon points="3.02 20.12 3.02 2.99 20.15 2.99 20.15 6.42 6.44 6.42 6.44 20.12 3.02 20.12"/></g></svg>
diff --git a/public/assets/images/icons/white/graph.svg b/public/assets/images/icons/white/graph.svg
index 9c1c2190a6963f1c0cc5056fa325f79e642f79b7..2688705cb5010178322fdb05d481cbe8bd9c8904 100644
--- a/public/assets/images/icons/white/graph.svg
+++ b/public/assets/images/icons/white/graph.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><path id="graph" class="cls-1" d="M6,44V25.33l9.5,10.36,11.05-12,5.95,5.95L45.23,16.86A3.25,3.25,0,0,0,46,17a3,3,0,1,0-3-3,3.25,3.25,0,0,0,.11.77L32.5,25.35,26.45,19.3l-10.95,12L6,20.89V7H3V47H51V44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><path id="graph" class="cls-1" d="M6,44V25.33l9.5,10.36,11.05-12,5.95,5.95L45.23,16.86A3.25,3.25,0,0,0,46,17a3,3,0,1,0-3-3,3.25,3.25,0,0,0,.11.77L32.5,25.35,26.45,19.3l-10.95,12L6,20.89V7H3V47H51V44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/group.svg b/public/assets/images/icons/white/group.svg
index 7dad396365fc41d355a584eb5bc3b256e2bde5ae..8f2e89a8c37103322c81554167492114908aea10 100644
--- a/public/assets/images/icons/white/group.svg
+++ b/public/assets/images/icons/white/group.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/group2.svg b/public/assets/images/icons/white/group2.svg
index c1bfd4995ade51e925c4a989a7d347a983a443a6..ae2c40a670865f9f22a8bbd12b8aa6ce778b3205 100644
--- a/public/assets/images/icons/white/group2.svg
+++ b/public/assets/images/icons/white/group2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M11.72,24.63a6.16,6.16,0,1,0-6.15-6.16A6.15,6.15,0,0,0,11.72,24.63Z"/><path class="a" d="M14.51,27.55H8.9A5.94,5.94,0,0,0,3,33.49V41.2H20.43V33.49A6,6,0,0,0,14.51,27.55Z"/><path class="a" d="M42.28,31.92a6.16,6.16,0,1,0-6.14-6.15A6.15,6.15,0,0,0,42.28,31.92Z"/><path class="a" d="M45.08,34.85H39.47a5.92,5.92,0,0,0-5.9,5.93V48.5H51V40.78A6,6,0,0,0,45.08,34.85Z"/><path class="a" d="M25.3,17.82a6.16,6.16,0,1,0-6.14-6.16A6.15,6.15,0,0,0,25.3,17.82Z"/><path class="a" d="M34,34.39V26.67a6,6,0,0,0-5.92-5.93H22.49a5.91,5.91,0,0,0-5.88,5.7,7.38,7.38,0,0,1,5.28,7.05v.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M11.72,24.63a6.16,6.16,0,1,0-6.15-6.16A6.15,6.15,0,0,0,11.72,24.63Z"/><path class="a" d="M14.51,27.55H8.9A5.94,5.94,0,0,0,3,33.49V41.2H20.43V33.49A6,6,0,0,0,14.51,27.55Z"/><path class="a" d="M42.28,31.92a6.16,6.16,0,1,0-6.14-6.15A6.15,6.15,0,0,0,42.28,31.92Z"/><path class="a" d="M45.08,34.85H39.47a5.92,5.92,0,0,0-5.9,5.93V48.5H51V40.78A6,6,0,0,0,45.08,34.85Z"/><path class="a" d="M25.3,17.82a6.16,6.16,0,1,0-6.14-6.16A6.15,6.15,0,0,0,25.3,17.82Z"/><path class="a" d="M34,34.39V26.67a6,6,0,0,0-5.92-5.93H22.49a5.91,5.91,0,0,0-5.88,5.7,7.38,7.38,0,0,1,5.28,7.05v.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/group3.svg b/public/assets/images/icons/white/group3.svg
index 7c9058e76fc5fd93807803f9629a28c0fcd5b52c..23197a336f4fb490d30f47dcd76a5980b08c825c 100644
--- a/public/assets/images/icons/white/group3.svg
+++ b/public/assets/images/icons/white/group3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M21.33,27.49a7.83,7.83,0,0,1-2.16,5.39H34.83A7.87,7.87,0,0,1,36.06,21a6.06,6.06,0,0,0-4.68-2.25H22.6A6,6,0,0,0,17.93,21,7.87,7.87,0,0,1,21.33,27.49Z"/><path class="a" d="M27,15.74a6.37,6.37,0,1,0-6.33-6.38A6.34,6.34,0,0,0,27,15.74Z"/><path class="a" d="M13.49,33.86a6.37,6.37,0,1,0-6.33-6.37A6.35,6.35,0,0,0,13.49,33.86Z"/><path class="a" d="M17.87,36.88H9.09A6.13,6.13,0,0,0,3,43v8H24V43A6.15,6.15,0,0,0,17.87,36.88Z"/><path class="a" d="M34.18,27.49a6.34,6.34,0,1,0,6.33-6.37A6.35,6.35,0,0,0,34.18,27.49Z"/><path class="a" d="M44.89,36.88H36.11A6.13,6.13,0,0,0,30,43v8H51V43A6.15,6.15,0,0,0,44.89,36.88Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M21.33,27.49a7.83,7.83,0,0,1-2.16,5.39H34.83A7.87,7.87,0,0,1,36.06,21a6.06,6.06,0,0,0-4.68-2.25H22.6A6,6,0,0,0,17.93,21,7.87,7.87,0,0,1,21.33,27.49Z"/><path class="a" d="M27,15.74a6.37,6.37,0,1,0-6.33-6.38A6.34,6.34,0,0,0,27,15.74Z"/><path class="a" d="M13.49,33.86a6.37,6.37,0,1,0-6.33-6.37A6.35,6.35,0,0,0,13.49,33.86Z"/><path class="a" d="M17.87,36.88H9.09A6.13,6.13,0,0,0,3,43v8H24V43A6.15,6.15,0,0,0,17.87,36.88Z"/><path class="a" d="M34.18,27.49a6.34,6.34,0,1,0,6.33-6.37A6.35,6.35,0,0,0,34.18,27.49Z"/><path class="a" d="M44.89,36.88H36.11A6.13,6.13,0,0,0,30,43v8H51V43A6.15,6.15,0,0,0,44.89,36.88Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/guestbook.svg b/public/assets/images/icons/white/guestbook.svg
index 31d3bb7dfe4c4f618c19f28545beb188e63dabe6..50ec1e48fa45c100ebbc561e0aa278aa1c770afe 100644
--- a/public/assets/images/icons/white/guestbook.svg
+++ b/public/assets/images/icons/white/guestbook.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="guestbook"><path class="cls-1" d="M50,39.26l-1-1.72L47.46,35,33.57,11.77,23,6.19l-.13,11.53,13.89,23.2,1.55,2.57,1,1.72a6.3,6.3,0,0,0,8.44,2.18A5.84,5.84,0,0,0,50,39.26Zm-5.25-2.81-5.35,3L26,16.94l0-2.1L29.38,13l1.94,1ZM46.33,39l1,1.72a2.91,2.91,0,0,1-1.13,4.06A3.15,3.15,0,0,1,42,43.73L41,42ZM21,15H3V9H21Zm0,10H3V19H21ZM16,35H3V29H16Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="guestbook"><path class="cls-1" d="M50,39.26l-1-1.72L47.46,35,33.57,11.77,23,6.19l-.13,11.53,13.89,23.2,1.55,2.57,1,1.72a6.3,6.3,0,0,0,8.44,2.18A5.84,5.84,0,0,0,50,39.26Zm-5.25-2.81-5.35,3L26,16.94l0-2.1L29.38,13l1.94,1ZM46.33,39l1,1.72a2.91,2.91,0,0,1-1.13,4.06A3.15,3.15,0,0,1,42,43.73L41,42ZM21,15H3V9H21Zm0,10H3V19H21ZM16,35H3V29H16Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/hamburger-icon-small.svg b/public/assets/images/icons/white/hamburger-icon-small.svg
index ad3ad1b97f0164e365f847b21405bdf06b1604a5..b4d889c7215498697e7d40e011390b0253eb1d6c 100644
--- a/public/assets/images/icons/white/hamburger-icon-small.svg
+++ b/public/assets/images/icons/white/hamburger-icon-small.svg
@@ -1 +1 @@
-<svg version="1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="#fff"><circle cx="12" cy="12" r="2"/><circle cx="12" cy="5" r="2"/><circle cx="12" cy="19" r="2"/></svg>
\ No newline at end of file
+<svg width="16" height="16" version="1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="#fff"><circle cx="12" cy="12" r="2"/><circle cx="12" cy="5" r="2"/><circle cx="12" cy="19" r="2"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/home.svg b/public/assets/images/icons/white/home.svg
index d3041b4e7d75a29843865d1b715fab27ea57dbb7..4e2bcbafc7d275f290861a111b5af9d8e2a5b64c 100644
--- a/public/assets/images/icons/white/home.svg
+++ b/public/assets/images/icons/white/home.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="26.93 3.07 3 26.97 10 26.97 27 9.97 44.02 26.93 51 26.97 26.93 3.07"/><polygon class="a" points="11 28.97 11 50.97 21 50.97 21 33.97 33 33.97 33 50.97 43 50.97 43 28.97 27 12.97 11 28.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="26.93 3.07 3 26.97 10 26.97 27 9.97 44.02 26.93 51 26.97 26.93 3.07"/><polygon class="a" points="11 28.97 11 50.97 21 50.97 21 33.97 33 33.97 33 50.97 43 50.97 43 28.97 27 12.97 11 28.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/home2.svg b/public/assets/images/icons/white/home2.svg
index 1399df950a5c590c622ed806f6dd59820f2abd77..9dd782da6ecbb166afe2d7bff5aa8c6e48f0672e 100644
--- a/public/assets/images/icons/white/home2.svg
+++ b/public/assets/images/icons/white/home2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="3 26.97 26.93 3.07 51 26.97 44.02 26.93 27 9.97 10 26.97 3 26.97"/><polygon class="a" points="15 50.97 10 50.97 10 29.97 15 24.97 15 50.97"/><polygon class="a" points="44 50.97 39 50.97 39 24.97 44 29.97 44 50.97"/><rect class="a" x="10" y="45.97" width="34" height="5"/><rect class="a" x="25" y="29.97" width="10" height="17"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="3 26.97 26.93 3.07 51 26.97 44.02 26.93 27 9.97 10 26.97 3 26.97"/><polygon class="a" points="15 50.97 10 50.97 10 29.97 15 24.97 15 50.97"/><polygon class="a" points="44 50.97 39 50.97 39 24.97 44 29.97 44 50.97"/><rect class="a" x="10" y="45.97" width="34" height="5"/><rect class="a" x="25" y="29.97" width="10" height="17"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/info-circle-full.svg b/public/assets/images/icons/white/info-circle-full.svg
index eadfe71df191eaf0ceb28c6c8161083013bf03ac..2295ba39568328f141bd1c11d311bdaa990d2e96 100644
--- a/public/assets/images/icons/white/info-circle-full.svg
+++ b/public/assets/images/icons/white/info-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/info-circle.svg b/public/assets/images/icons/white/info-circle.svg
index eadfe71df191eaf0ceb28c6c8161083013bf03ac..2295ba39568328f141bd1c11d311bdaa990d2e96 100644
--- a/public/assets/images/icons/white/info-circle.svg
+++ b/public/assets/images/icons/white/info-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/infopage.svg b/public/assets/images/icons/white/infopage.svg
index e17d3542c13074f686ba36cc7cde8069f01c8d99..22ce3fb8511b7ec38d52bbf71f5825e6560e85f1 100644
--- a/public/assets/images/icons/white/infopage.svg
+++ b/public/assets/images/icons/white/infopage.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/infopage2.svg b/public/assets/images/icons/white/infopage2.svg
index e17d3542c13074f686ba36cc7cde8069f01c8d99..22ce3fb8511b7ec38d52bbf71f5825e6560e85f1 100644
--- a/public/assets/images/icons/white/infopage2.svg
+++ b/public/assets/images/icons/white/infopage2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/install.svg b/public/assets/images/icons/white/install.svg
index ec423538dbc9383955f9adf53072b33bfe8ad339..405defedec4238f87f55a6f2aa373e19ceb756ef 100644
--- a/public/assets/images/icons/white/install.svg
+++ b/public/assets/images/icons/white/install.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="43 5 34.9 5 27 12.9 19.1 5 11 5 27 21 43 5"/><path class="a" d="M38.29,16.6l0,0a16,16,0,1,1-22.62,0l-3.54-3.53a21,21,0,1,0,29.7,0l0,0Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="43 5 34.9 5 27 12.9 19.1 5 11 5 27 21 43 5"/><path class="a" d="M38.29,16.6l0,0a16,16,0,1,1-22.62,0l-3.54-3.53a21,21,0,1,0,29.7,0l0,0Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/institute.svg b/public/assets/images/icons/white/institute.svg
index 15598e23f81b77c3994d24b3c43ce384ae4b1679..447f94cb46f0fd310de9765a7e800a61f3222065 100644
--- a/public/assets/images/icons/white/institute.svg
+++ b/public/assets/images/icons/white/institute.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="44 24.97 36 24.97 36 47.97 31 47.97 31 24.97 26.89 24.97 23 24.97 23 47.97 18 47.97 18 24.97 10 24.97 10 47.97 6 47.97 6 50.97 48 50.97 48 47.97 44 47.97 44 24.97"/><path class="a" d="M12,22H45v0l6,0L26.93,3.07,3,22h9ZM27,10l11.3,9H15.75Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="44 24.97 36 24.97 36 47.97 31 47.97 31 24.97 26.89 24.97 23 24.97 23 47.97 18 47.97 18 24.97 10 24.97 10 47.97 6 47.97 6 50.97 48 50.97 48 47.97 44 47.97 44 24.97"/><path class="a" d="M12,22H45v0l6,0L26.93,3.07,3,22h9ZM27,10l11.3,9H15.75Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/key.svg b/public/assets/images/icons/white/key.svg
index 64e39d3ba8129ac8898b9e04432c69f883319107..bdba811de6096bd07e4f827fcd63d3ad66578a6e 100644
--- a/public/assets/images/icons/white/key.svg
+++ b/public/assets/images/icons/white/key.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="key"><path class="cls-1" d="M34.44,3A16.53,16.53,0,0,0,19.12,25.81L3,41.94V51h9.06V44.88h5.88V39h6.12V32.46A16.56,16.56,0,1,0,34.44,3Zm3.88,20.44a7.76,7.76,0,1,1,7.76-7.76A7.77,7.77,0,0,1,38.32,23.44Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="key"><path class="cls-1" d="M34.44,3A16.53,16.53,0,0,0,19.12,25.81L3,41.94V51h9.06V44.88h5.88V39h6.12V32.46A16.56,16.56,0,1,0,34.44,3Zm3.88,20.44a7.76,7.76,0,1,1,7.76-7.76A7.77,7.77,0,0,1,38.32,23.44Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/lightbulb.svg b/public/assets/images/icons/white/lightbulb.svg
index bd38044354335135bd9e89021bc2d38d0f98aebc..2c0cca5879367084ad1518c0058587d831046c6c 100644
--- a/public/assets/images/icons/white/lightbulb.svg
+++ b/public/assets/images/icons/white/lightbulb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M27,3a18.54,18.54,0,0,0-2,.11,17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,27,3Zm7.33,28.92A5,5,0,0,0,32,36.12V38H22V36.13a5,5,0,0,0-2.33-4.24,14,14,0,0,1,5.7-25.83A14.84,14.84,0,0,1,27,6a14,14,0,0,1,7.33,25.92Z"/><path class="a" d="M32.39,9.05A12.51,12.51,0,0,0,27.24,8a12.66,12.66,0,0,0-10.37,5.4,1.73,1.73,0,0,0,.42,2.41,1.69,1.69,0,0,0,1,.32,1.73,1.73,0,0,0,1.42-.74,9.21,9.21,0,0,1,7.54-3.93,9.08,9.08,0,0,1,3.74.8,1.73,1.73,0,1,0,1.41-3.16Z"/><path class="a" d="M17,16.31A1.73,1.73,0,0,0,15,17.58a12.38,12.38,0,0,0-.37,3,12.68,12.68,0,0,0,.28,2.67,1.74,1.74,0,0,0,1.69,1.36,1.55,1.55,0,0,0,.37,0,1.74,1.74,0,0,0,1.33-2.06A8.92,8.92,0,0,1,18,20.61a9.08,9.08,0,0,1,.27-2.2A1.74,1.74,0,0,0,17,16.31Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M27,3a18.54,18.54,0,0,0-2,.11,17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,27,3Zm7.33,28.92A5,5,0,0,0,32,36.12V38H22V36.13a5,5,0,0,0-2.33-4.24,14,14,0,0,1,5.7-25.83A14.84,14.84,0,0,1,27,6a14,14,0,0,1,7.33,25.92Z"/><path class="a" d="M32.39,9.05A12.51,12.51,0,0,0,27.24,8a12.66,12.66,0,0,0-10.37,5.4,1.73,1.73,0,0,0,.42,2.41,1.69,1.69,0,0,0,1,.32,1.73,1.73,0,0,0,1.42-.74,9.21,9.21,0,0,1,7.54-3.93,9.08,9.08,0,0,1,3.74.8,1.73,1.73,0,1,0,1.41-3.16Z"/><path class="a" d="M17,16.31A1.73,1.73,0,0,0,15,17.58a12.38,12.38,0,0,0-.37,3,12.68,12.68,0,0,0,.28,2.67,1.74,1.74,0,0,0,1.69,1.36,1.55,1.55,0,0,0,.37,0,1.74,1.74,0,0,0,1.33-2.06A8.92,8.92,0,0,1,18,20.61a9.08,9.08,0,0,1,.27-2.2A1.74,1.74,0,0,0,17,16.31Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/lightbulb2.svg b/public/assets/images/icons/white/lightbulb2.svg
index f695c1650b15044695b630821837a0d39edf3b11..8d23e06422233b46eb0a710d3601bf894cfc8caa 100644
--- a/public/assets/images/icons/white/lightbulb2.svg
+++ b/public/assets/images/icons/white/lightbulb2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M25,3.08a17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,25,3.08ZM16.32,17.33A11.15,11.15,0,0,0,16,20a10.48,10.48,0,0,0,.25,2.31,1.51,1.51,0,0,1-1.15,1.79l-.32,0a1.51,1.51,0,0,1-1.47-1.18A14.63,14.63,0,0,1,13,20a14.11,14.11,0,0,1,.41-3.36,1.5,1.5,0,0,1,2.91.72ZM33.46,9.17a1.5,1.5,0,0,1-2,.75A11,11,0,0,0,18,13.66a1.49,1.49,0,0,1-1.23.64,1.5,1.5,0,0,1-1.23-2.36A14,14,0,0,1,32.7,7.18,1.51,1.51,0,0,1,33.46,9.17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M25,3.08a17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,25,3.08ZM16.32,17.33A11.15,11.15,0,0,0,16,20a10.48,10.48,0,0,0,.25,2.31,1.51,1.51,0,0,1-1.15,1.79l-.32,0a1.51,1.51,0,0,1-1.47-1.18A14.63,14.63,0,0,1,13,20a14.11,14.11,0,0,1,.41-3.36,1.5,1.5,0,0,1,2.91.72ZM33.46,9.17a1.5,1.5,0,0,1-2,.75A11,11,0,0,0,18,13.66a1.49,1.49,0,0,1-1.23.64,1.5,1.5,0,0,1-1.23-2.36A14,14,0,0,1,32.7,7.18,1.51,1.51,0,0,1,33.46,9.17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/link-extern.svg b/public/assets/images/icons/white/link-extern.svg
index c8f041b7e0ba964088b9bdc807ccab4f0afb45ee..2c1caa5cd7de35857b8401ff05a08a427cbc97cf 100644
--- a/public/assets/images/icons/white/link-extern.svg
+++ b/public/assets/images/icons/white/link-extern.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="17 17 22.06 22.06 31.94 22.06 31.94 31.94 37 37 37 17 17 17"/><path class="a" d="M27,46A19,19,0,0,1,27,8V3A24,24,0,1,0,51,27H46A19,19,0,0,1,27,46Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="17 17 22.06 22.06 31.94 22.06 31.94 31.94 37 37 37 17 17 17"/><path class="a" d="M27,46A19,19,0,0,1,27,8V3A24,24,0,1,0,51,27H46A19,19,0,0,1,27,46Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/link-intern.svg b/public/assets/images/icons/white/link-intern.svg
index 05f289ded7c29a02434ed59aa382fa3412ef5b45..734e7c7fa0e9cd4cc1e5ce748f479b6bc588970d 100644
--- a/public/assets/images/icons/white/link-intern.svg
+++ b/public/assets/images/icons/white/link-intern.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/><polygon class="a" points="22 13 22 20.09 28.91 27 22 33.91 22 41 36 27 22 13"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/><polygon class="a" points="22 13 22 20.09 28.91 27 22 33.91 22 41 36 27 22 13"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/link2.svg b/public/assets/images/icons/white/link2.svg
index 6ef3504258f63efd2b3fe496d2f1b6f9499540c2..c8ec2a827dbdf580f6f30a4f530e5accec5e973d 100644
--- a/public/assets/images/icons/white/link2.svg
+++ b/public/assets/images/icons/white/link2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM22,41V33.91L28.91,27,22,20.09V13L36,27Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM22,41V33.91L28.91,27,22,20.09V13L36,27Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/link3.svg b/public/assets/images/icons/white/link3.svg
index 190920a1b2f6b31a0257c8d9a1ee42c4c67cfe52..e9f70e3639404ba294ba5cf953b00ec185ebcc79 100644
--- a/public/assets/images/icons/white/link3.svg
+++ b/public/assets/images/icons/white/link3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,51A24,24,0,1,0,3,27,24,24,0,0,0,27,51Zm5-38v7.09L25.09,27,32,33.88V41L18,27Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,51A24,24,0,1,0,3,27,24,24,0,0,0,27,51Zm5-38v7.09L25.09,27,32,33.88V41L18,27Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/literature.svg b/public/assets/images/icons/white/literature.svg
index 1c326be81613ac52d1754bd8a5aacb22ca7aa7da..0870404ef399263194363b943f3977c3048d1fb2 100644
--- a/public/assets/images/icons/white/literature.svg
+++ b/public/assets/images/icons/white/literature.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42h3V3Zm0,17.9H33v3H15Zm0,6H33v3H15Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42h3V3Zm0,17.9H33v3H15Zm0,6H33v3H15Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/literature2.svg b/public/assets/images/icons/white/literature2.svg
index f22f79a1284151fc182ef7181b30526c3aa4bf4e..a92c1276c5d911260565ef789fbe203b095d195b 100644
--- a/public/assets/images/icons/white/literature2.svg
+++ b/public/assets/images/icons/white/literature2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42.08h3V3Zm0,12H36V48H15a3,3,0,0,1-3-3V13.94A4.14,4.14,0,0,0,15,15Z"/><rect class="a" x="15" y="20.9" width="17.99" height="3"/><rect class="a" x="15" y="26.9" width="17.99" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42.08h3V3Zm0,12H36V48H15a3,3,0,0,1-3-3V13.94A4.14,4.14,0,0,0,15,15Z"/><rect class="a" x="15" y="20.9" width="17.99" height="3"/><rect class="a" x="15" y="26.9" width="17.99" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/lock-locked.svg b/public/assets/images/icons/white/lock-locked.svg
index ff9442e0d956c0bc292f35e237d2a864e89e3438..bcb8166580613923b9f2816fec4d6d7a501e63f9 100644
--- a/public/assets/images/icons/white/lock-locked.svg
+++ b/public/assets/images/icons/white/lock-locked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="lock-locked2"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM18,19a9,9,0,0,1,18,0v3H18ZM42,46H12V25H42Z"/><path class="cls-1" d="M24,40a3,3,0,0,0,6,0V35.62a4,4,0,1,0-6,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="lock-locked2"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM18,19a9,9,0,0,1,18,0v3H18ZM42,46H12V25H42Z"/><path class="cls-1" d="M24,40a3,3,0,0,0,6,0V35.62a4,4,0,1,0-6,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/lock-locked2.svg b/public/assets/images/icons/white/lock-locked2.svg
index 6823d7a30c6a3fc31f82f80b52dafba6c89e9747..79305f60155d9d8d47c0b1776959ffc9ceaeca69 100644
--- a/public/assets/images/icons/white/lock-locked2.svg
+++ b/public/assets/images/icons/white/lock-locked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="lock-locked"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM30,35.59V40a3,3,0,0,1-6,0V35.59A3.93,3.93,0,0,1,23,33a4,4,0,1,1,7,2.62ZM36,22H18V19a9,9,0,0,1,18,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="lock-locked"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM30,35.59V40a3,3,0,0,1-6,0V35.59A3.93,3.93,0,0,1,23,33a4,4,0,1,1,7,2.62ZM36,22H18V19a9,9,0,0,1,18,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/lock-unlocked.svg b/public/assets/images/icons/white/lock-unlocked.svg
index b46c0705acabb46b5e59bff226c5cb6d5a4b02aa..415039df184d2419edef9b8c94ab338cbda6e03e 100644
--- a/public/assets/images/icons/white/lock-unlocked.svg
+++ b/public/assets/images/icons/white/lock-unlocked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="lock-unlocked2"><path class="cls-1" d="M24,42a3,3,0,0,0,6,0V37.62a4,4,0,1,0-6,0Z"/><path class="cls-1" d="M18,24V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM42,48H12V27H42Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="lock-unlocked2"><path class="cls-1" d="M24,42a3,3,0,0,0,6,0V37.62a4,4,0,1,0-6,0Z"/><path class="cls-1" d="M18,24V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM42,48H12V27H42Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/lock-unlocked2.svg b/public/assets/images/icons/white/lock-unlocked2.svg
index 9bf8305d5d869bd5697421082ca720097b9d1974..d2d97b4a9744026bde0a88bd9d559b8583e2429a 100644
--- a/public/assets/images/icons/white/lock-unlocked2.svg
+++ b/public/assets/images/icons/white/lock-unlocked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="lock-unlocked"><path class="cls-1" d="M41,24H18V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM30,36.62V42a3,3,0,0,1-6,0V36.62a4,4,0,1,1,6,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="lock-unlocked"><path class="cls-1" d="M41,24H18V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM30,36.62V42a3,3,0,0,1-6,0V36.62a4,4,0,1,1,6,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/log.svg b/public/assets/images/icons/white/log.svg
index 167d556e80accf0063775802fe6ccb547822c9dd..ed99c40588df150955a0467573571c63df6cc12b 100644
--- a/public/assets/images/icons/white/log.svg
+++ b/public/assets/images/icons/white/log.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="log"><path class="cls-1" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><rect class="cls-1" x="15" y="10.97" width="24" height="4"/><rect class="cls-1" x="15" y="17.97" width="23" height="4"/><rect class="cls-1" x="15" y="24.97" width="22" height="4"/><rect class="cls-1" x="15" y="31.97" width="24" height="4"/><rect class="cls-1" x="15" y="38.97" width="19" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="log"><path class="cls-1" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><rect class="cls-1" x="15" y="10.97" width="24" height="4"/><rect class="cls-1" x="15" y="17.97" width="23" height="4"/><rect class="cls-1" x="15" y="24.97" width="22" height="4"/><rect class="cls-1" x="15" y="31.97" width="24" height="4"/><rect class="cls-1" x="15" y="38.97" width="19" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/mail.svg b/public/assets/images/icons/white/mail.svg
index 16741f3d8f713a0b313f69ef8c618f584f991529..0ba14c6666f318f09323bbd86ab8adfd8a2a2be0 100644
--- a/public/assets/images/icons/white/mail.svg
+++ b/public/assets/images/icons/white/mail.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="3 17.92 3 45 51 45 51 17.83 26.93 37.18 3 17.92"/><polygon class="a" points="3 9 3 12 3 12.06 26.93 31.42 51 12.09 51 12 51 9 3 9"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="3 17.92 3 45 51 45 51 17.83 26.93 37.18 3 17.92"/><polygon class="a" points="3 9 3 12 3 12.06 26.93 31.42 51 12.09 51 12 51 9 3 9"/></svg>
diff --git a/public/assets/images/icons/white/mail2.svg b/public/assets/images/icons/white/mail2.svg
index fb14364d59bca2e8373503cf9c44100c89b8a888..3a840a865a4bb328df580f7999c3db98ddd2937e 100644
--- a/public/assets/images/icons/white/mail2.svg
+++ b/public/assets/images/icons/white/mail2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,9v5L27,31,51,14V9ZM27,24.84,11.65,14h30.7Z"/><polygon class="a" points="46 39.97 8 39.97 7.96 21.48 3 17.97 3 44.97 51 44.97 51 17.97 46.03 21.49 46 39.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,9v5L27,31,51,14V9ZM27,24.84,11.65,14h30.7Z"/><polygon class="a" points="46 39.97 8 39.97 7.96 21.48 3 17.97 3 44.97 51 44.97 51 17.97 46.03 21.49 46 39.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/maximize.svg b/public/assets/images/icons/white/maximize.svg
index 841492f394b8fd96e59848b9a0dcc22cc49a7536..8c8cfbd9fa6cb0477cc23343310dcdc866876788 100644
--- a/public/assets/images/icons/white/maximize.svg
+++ b/public/assets/images/icons/white/maximize.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="maximise-1"><polygon points="27 39.03 27 48.03 6 48.03 6 27.03 15 27.03 15 24.03 3 24.03 3 51.03 30 51.03 30 39.03 27 39.03"/><path d="M15,3V39H51V3ZM48,36H18V11.94H48Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="maximise-1"><polygon points="27 39.03 27 48.03 6 48.03 6 27.03 15 27.03 15 24.03 3 24.03 3 51.03 30 51.03 30 39.03 27 39.03"/><path d="M15,3V39H51V3ZM48,36H18V11.94H48Z"/></g></svg>
diff --git a/public/assets/images/icons/white/microphone.svg b/public/assets/images/icons/white/microphone.svg
index 484ba10cf8bc67fdce1061d101fb341f66be5dd2..958c2572635fa637d6ee03a3170cdc0b6913edda 100644
--- a/public/assets/images/icons/white/microphone.svg
+++ b/public/assets/images/icons/white/microphone.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,36a7,7,0,0,0,7-7V10a7,7,0,1,0-14,0V29A7,7,0,0,0,27,36Z"/><path class="a" d="M40,29V27a3,3,0,0,0-3-3v4.65A10.24,10.24,0,0,1,27.68,39,10,10,0,0,1,17,29V24a3,3,0,0,0-3,3v2A13,13,0,0,0,25.5,41.88V46H20a3,3,0,0,0-3,3v2H37V49a3,3,0,0,0-3-3H28.5V41.88A13,13,0,0,0,40,29Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,36a7,7,0,0,0,7-7V10a7,7,0,1,0-14,0V29A7,7,0,0,0,27,36Z"/><path class="a" d="M40,29V27a3,3,0,0,0-3-3v4.65A10.24,10.24,0,0,1,27.68,39,10,10,0,0,1,17,29V24a3,3,0,0,0-3,3v2A13,13,0,0,0,25.5,41.88V46H20a3,3,0,0,0-3,3v2H37V49a3,3,0,0,0-3-3H28.5V41.88A13,13,0,0,0,40,29Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/module.svg b/public/assets/images/icons/white/module.svg
index dbb47d07d19fde50ec82e46a4629ee0ec8f9a07e..691e975af987b7afa30d6e4a07d2b6c951f92580 100644
--- a/public/assets/images/icons/white/module.svg
+++ b/public/assets/images/icons/white/module.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="module"><path d="M8.94,26.08a14,14,0,0,1,14-14h0V6.17h0A19.92,19.92,0,0,0,3,26.08H8.94Zm19,12.46a7.48,7.48,0,0,0,0-14.95v7.48H20.44A7.49,7.49,0,0,0,27.93,38.54Zm0-27.39v5.93a14,14,0,1,1-14,14H8A19.91,19.91,0,1,0,27.93,11.15Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="module"><path d="M8.94,26.08a14,14,0,0,1,14-14h0V6.17h0A19.92,19.92,0,0,0,3,26.08H8.94Zm19,12.46a7.48,7.48,0,0,0,0-14.95v7.48H20.44A7.49,7.49,0,0,0,27.93,38.54Zm0-27.39v5.93a14,14,0,1,1-14,14H8A19.91,19.91,0,1,0,27.93,11.15Z"/></g></svg>
diff --git a/public/assets/images/icons/white/network.svg b/public/assets/images/icons/white/network.svg
index e90597f9a7340dc19819c9c90cdddf7b7cde0d63..532656b18a13f956a5c8554d09ea5b9892718429 100644
--- a/public/assets/images/icons/white/network.svg
+++ b/public/assets/images/icons/white/network.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="network"><path class="cls-1" d="M51,30.43A3.42,3.42,0,0,0,47.57,27a3.36,3.36,0,0,0-2.91,1.73H28.71V23.05a3.39,3.39,0,0,0,1.72-2.91A3.44,3.44,0,0,0,27,16.71a3.36,3.36,0,0,0-2.9,1.72H18.41V9.34a3.36,3.36,0,0,0,1.73-2.91,3.43,3.43,0,1,0-6.85,0A3.38,3.38,0,0,0,15,9.32v9.11H9.33a3.38,3.38,0,0,0-2.9-1.72,3.43,3.43,0,0,0,0,6.86,3.39,3.39,0,0,0,2.9-1.71H15v5.68a3.38,3.38,0,0,0-1.69,2.89,3.43,3.43,0,0,0,3.42,3.43,3.38,3.38,0,0,0,2.9-1.7h5.68V44.67a3.38,3.38,0,0,0-1.72,2.9,3.43,3.43,0,0,0,6.86,0,3.38,3.38,0,0,0-1.72-2.9V32.16H39v9.07a3.36,3.36,0,0,0-1.73,2.91,3.43,3.43,0,1,0,6.85,0,3.37,3.37,0,0,0-1.7-2.89V32.16h2.24a3.37,3.37,0,0,0,2.89,1.7A3.43,3.43,0,0,0,51,30.43Zm-25.71-1.7H19.63a3.29,3.29,0,0,0-1.22-1.21V21.86H24.1a3.39,3.39,0,0,0,1.19,1.19Z"/><circle class="cls-1" cx="35.57" cy="11.57" r="5.14"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="network"><path class="cls-1" d="M51,30.43A3.42,3.42,0,0,0,47.57,27a3.36,3.36,0,0,0-2.91,1.73H28.71V23.05a3.39,3.39,0,0,0,1.72-2.91A3.44,3.44,0,0,0,27,16.71a3.36,3.36,0,0,0-2.9,1.72H18.41V9.34a3.36,3.36,0,0,0,1.73-2.91,3.43,3.43,0,1,0-6.85,0A3.38,3.38,0,0,0,15,9.32v9.11H9.33a3.38,3.38,0,0,0-2.9-1.72,3.43,3.43,0,0,0,0,6.86,3.39,3.39,0,0,0,2.9-1.71H15v5.68a3.38,3.38,0,0,0-1.69,2.89,3.43,3.43,0,0,0,3.42,3.43,3.38,3.38,0,0,0,2.9-1.7h5.68V44.67a3.38,3.38,0,0,0-1.72,2.9,3.43,3.43,0,0,0,6.86,0,3.38,3.38,0,0,0-1.72-2.9V32.16H39v9.07a3.36,3.36,0,0,0-1.73,2.91,3.43,3.43,0,1,0,6.85,0,3.37,3.37,0,0,0-1.7-2.89V32.16h2.24a3.37,3.37,0,0,0,2.89,1.7A3.43,3.43,0,0,0,51,30.43Zm-25.71-1.7H19.63a3.29,3.29,0,0,0-1.22-1.21V21.86H24.1a3.39,3.39,0,0,0,1.19,1.19Z"/><circle class="cls-1" cx="35.57" cy="11.57" r="5.14"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/news.svg b/public/assets/images/icons/white/news.svg
index 24da3d0e9f9d2d909d925322ab4b7e73e7642057..c0a0d4863d3433d2e778a10274c8da3877576bbf 100644
--- a/public/assets/images/icons/white/news.svg
+++ b/public/assets/images/icons/white/news.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/no-activity.svg b/public/assets/images/icons/white/no-activity.svg
index e7329e9299ca9c847d2cccd165b50c5c2a8d25bc..7e59849ece5e98488e417d2d35ed88debf2d2c58 100644
--- a/public/assets/images/icons/white/no-activity.svg
+++ b/public/assets/images/icons/white/no-activity.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><path id="no-activity" d="M3,3V51H51V3ZM48,6V26.62H19.23l-4-7.87-3.84,7.87H6V6ZM6,48V29.62H13.3l2-4.13,3.39,6.66,1.73-2.53H48V48Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><path id="no-activity" d="M3,3V51H51V3ZM48,6V26.62H19.23l-4-7.87-3.84,7.87H6V6ZM6,48V29.62H13.3l2-4.13,3.39,6.66,1.73-2.53H48V48Z"/></svg>
diff --git a/public/assets/images/icons/white/oer-campus.svg b/public/assets/images/icons/white/oer-campus.svg
index 37faf59da5228d7a813553115521d773d57cfadc..b16248d4fa84f983a2a660a2b0d7079e11672a30 100644
--- a/public/assets/images/icons/white/oer-campus.svg
+++ b/public/assets/images/icons/white/oer-campus.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M17,22.07A12.38,12.38,0,1,1,34.58,33.55l1.41.57,8.28-2.83A17.37,17.37,0,1,0,12,22.34c0,.12,0,.23,0,.36Z"/><path class="a" d="M50.78,35.93a3.72,3.72,0,0,0-3.5-2.51,3.62,3.62,0,0,0-1.25.22L35.82,37.19,22.13,31.56l8.73-1.19A3.71,3.71,0,0,0,30.4,23l-.46,0L10.08,25.56a3.68,3.68,0,0,0-1.51.57A2.25,2.25,0,0,0,7.33,27.4l-.18.49c-.05.13-.1.25-.14.38L3.14,38.76a2.22,2.22,0,0,0,.18,1.92c.91,2,5.16,4.86,9.09,6.35l9.44,1.79a8.64,8.64,0,0,0,1.4.12l.45,0a3.81,3.81,0,0,0,.59,0,3.37,3.37,0,0,0,1.2-.21L27,48.23c.4-.12.82-.25,1.29-.41,5.15-1.66,10.9-3.7,13-4.56l.07,0,7.08-2.47A3.79,3.79,0,0,0,50.78,35.93Z"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M17,22.07A12.38,12.38,0,1,1,34.58,33.55l1.41.57,8.28-2.83A17.37,17.37,0,1,0,12,22.34c0,.12,0,.23,0,.36Z"/><path class="a" d="M50.78,35.93a3.72,3.72,0,0,0-3.5-2.51,3.62,3.62,0,0,0-1.25.22L35.82,37.19,22.13,31.56l8.73-1.19A3.71,3.71,0,0,0,30.4,23l-.46,0L10.08,25.56a3.68,3.68,0,0,0-1.51.57A2.25,2.25,0,0,0,7.33,27.4l-.18.49c-.05.13-.1.25-.14.38L3.14,38.76a2.22,2.22,0,0,0,.18,1.92c.91,2,5.16,4.86,9.09,6.35l9.44,1.79a8.64,8.64,0,0,0,1.4.12l.45,0a3.81,3.81,0,0,0,.59,0,3.37,3.37,0,0,0,1.2-.21L27,48.23c.4-.12.82-.25,1.29-.41,5.15-1.66,10.9-3.7,13-4.56l.07,0,7.08-2.47A3.79,3.79,0,0,0,50.78,35.93Z"/></svg>
diff --git a/public/assets/images/icons/white/oer-campus2.svg b/public/assets/images/icons/white/oer-campus2.svg
index 6dca6ff38efa9119c4f4169cb9cf35db5fb4d9b4..94a5aa88007a80955c4b64c89315ed210f6e7b4b 100644
--- a/public/assets/images/icons/white/oer-campus2.svg
+++ b/public/assets/images/icons/white/oer-campus2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/opencast.svg b/public/assets/images/icons/white/opencast.svg
index d267cf579986b80f5427b0403970af21b1c050a6..133678f6baf036b677db8c5fd37ba6a8f9dcfdc4 100644
--- a/public/assets/images/icons/white/opencast.svg
+++ b/public/assets/images/icons/white/opencast.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M20,10,3,27,20,44,37,27ZM10.08,27,20,17.05,29.9,27,20,36.89Z"/><polygon class="a" points="34.01 9.97 30.5 13.48 43.99 26.97 30.5 40.46 34.01 43.97 51 26.97 34.01 9.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M20,10,3,27,20,44,37,27ZM10.08,27,20,17.05,29.9,27,20,36.89Z"/><polygon class="a" points="34.01 9.97 30.5 13.48 43.99 26.97 30.5 40.46 34.01 43.97 51 26.97 34.01 9.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/opencast2.svg b/public/assets/images/icons/white/opencast2.svg
index 3b826b52cfa9e10495c781b631db376c046f00a5..badac9a63860ba34741ab8cebe6f9ca980df496f 100644
--- a/public/assets/images/icons/white/opencast2.svg
+++ b/public/assets/images/icons/white/opencast2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="31.02 6.97 29 8.99 46.96 26.97 29 44.95 31.02 46.97 51 26.97 31.02 6.97"/><path class="a" d="M23,7,3,27,23,47,43,27ZM7.29,27,23,11.26,38.71,27,23,42.68Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="31.02 6.97 29 8.99 46.96 26.97 29 44.95 31.02 46.97 51 26.97 31.02 6.97"/><path class="a" d="M23,7,3,27,23,47,43,27ZM7.29,27,23,11.26,38.71,27,23,42.68Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/pause.svg b/public/assets/images/icons/white/pause.svg
index b30eee4ddb035a8d4a9722952de5eb07b6f3d7b9..61c639db638624ca0215daf528f733ce8c7b8bb3 100644
--- a/public/assets/images/icons/white/pause.svg
+++ b/public/assets/images/icons/white/pause.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="12.01 45.99 23.99 46 24 8 12 8 12.01 45.99"/><polygon class="a" points="30.01 45.99 41.99 46 42 8 30 8 30.01 45.99"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="12.01 45.99 23.99 46 24 8 12 8 12.01 45.99"/><polygon class="a" points="30.01 45.99 41.99 46 42 8 30 8 30.01 45.99"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/permalink.svg b/public/assets/images/icons/white/permalink.svg
index 7dad396365fc41d355a584eb5bc3b256e2bde5ae..8f2e89a8c37103322c81554167492114908aea10 100644
--- a/public/assets/images/icons/white/permalink.svg
+++ b/public/assets/images/icons/white/permalink.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/person.svg b/public/assets/images/icons/white/person.svg
index 5e0e89c14fac298e8b3ccf3ab772c8eb05901234..7eeba64665693d8288ac53f6becc69762167b83c 100644
--- a/public/assets/images/icons/white/person.svg
+++ b/public/assets/images/icons/white/person.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M4.5,49.5V4.5h45v45Zm14.71-22a7.71,7.71,0,0,0-7.71,7.7v12.3h31V35.22a7.71,7.71,0,0,0-7.7-7.7ZM27,5.55A10.5,10.5,0,1,0,37.5,16,10.5,10.5,0,0,0,27,5.55Z"/><path class="a" d="M48,6V48H44V35.22A9.21,9.21,0,0,0,34.8,26H33.67a12,12,0,0,0-.11-20H48M20.44,6a12,12,0,0,0-.11,20H19.21A9.21,9.21,0,0,0,10,35.22V48H6V6H20.44M51,3H3V51H51V3ZM27,25.05a9,9,0,1,1,9-9,9,9,0,0,1-9,9ZM13,46V35.22A6.2,6.2,0,0,1,19.21,29H34.8a6.2,6.2,0,0,1,6.2,6.2V46Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M4.5,49.5V4.5h45v45Zm14.71-22a7.71,7.71,0,0,0-7.71,7.7v12.3h31V35.22a7.71,7.71,0,0,0-7.7-7.7ZM27,5.55A10.5,10.5,0,1,0,37.5,16,10.5,10.5,0,0,0,27,5.55Z"/><path class="a" d="M48,6V48H44V35.22A9.21,9.21,0,0,0,34.8,26H33.67a12,12,0,0,0-.11-20H48M20.44,6a12,12,0,0,0-.11,20H19.21A9.21,9.21,0,0,0,10,35.22V48H6V6H20.44M51,3H3V51H51V3ZM27,25.05a9,9,0,1,1,9-9,9,9,0,0,1-9,9ZM13,46V35.22A6.2,6.2,0,0,1,19.21,29H34.8a6.2,6.2,0,0,1,6.2,6.2V46Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/person2.svg b/public/assets/images/icons/white/person2.svg
index 1cc4c642122008d95b4ca367342021d5b7e1df8f..9d6913ba0bc5873ef4d88d5e0997860dbdcfe5f4 100644
--- a/public/assets/images/icons/white/person2.svg
+++ b/public/assets/images/icons/white/person2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,27.05a9,9,0,1,0-9-9A9,9,0,0,0,27,27.05Z"/><path class="a" d="M3,3V51H51V3ZM48,48H41V37.22A6.2,6.2,0,0,0,34.8,31H19.21A6.2,6.2,0,0,0,13,37.22V48H6V6H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,27.05a9,9,0,1,0-9-9A9,9,0,0,0,27,27.05Z"/><path class="a" d="M3,3V51H51V3ZM48,48H41V37.22A6.2,6.2,0,0,0,34.8,31H19.21A6.2,6.2,0,0,0,13,37.22V48H6V6H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/persons.svg b/public/assets/images/icons/white/persons.svg
index 2999d7484bd2dcd78f595c915a51ef8fb9a28df3..cee97418c6ffcf152ac21a2cd0d5b6fd0669d405 100644
--- a/public/assets/images/icons/white/persons.svg
+++ b/public/assets/images/icons/white/persons.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,51H45V9H3ZM24,12a9,9,0,1,1-9,9A9,9,0,0,1,24,12ZM10,40.17A6.21,6.21,0,0,1,16.2,34H31.79A6.21,6.21,0,0,1,38,40.17V46H10Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,51H45V9H3ZM24,12a9,9,0,1,1-9,9A9,9,0,0,1,24,12ZM10,40.17A6.21,6.21,0,0,1,16.2,34H31.79A6.21,6.21,0,0,1,38,40.17V46H10Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/persons2.svg b/public/assets/images/icons/white/persons2.svg
index e638d92507367d857b1992c08ace73b443387530..02ddee25a191dd6a0e0af3ccee1753d9e9c80ff0 100644
--- a/public/assets/images/icons/white/persons2.svg
+++ b/public/assets/images/icons/white/persons2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,51H45V9H3ZM6,12H42V48H38v-4.8A6.21,6.21,0,0,0,31.79,37H16.2a6.21,6.21,0,0,0-6.2,6.2V48H6Z"/><path class="a" d="M24,33a9,9,0,1,0-9-9A9,9,0,0,0,24,33Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,51H45V9H3ZM6,12H42V48H38v-4.8A6.21,6.21,0,0,0,31.79,37H16.2a6.21,6.21,0,0,0-6.2,6.2V48H6Z"/><path class="a" d="M24,33a9,9,0,1,0-9-9A9,9,0,0,0,24,33Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/play.svg b/public/assets/images/icons/white/play.svg
index 6a50a60f57fcecea4c650055178cfc3577543448..d26703d9b6d1c84b81e2f75cf1aa5c80d0232a7d 100644
--- a/public/assets/images/icons/white/play.svg
+++ b/public/assets/images/icons/white/play.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="arrows"><g id="play"><polygon class="cls-1" points="14.99 44.91 42 26.91 15 8.91 14.99 44.91"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="arrows"><g id="play"><polygon class="cls-1" points="14.99 44.91 42 26.91 15 8.91 14.99 44.91"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/plugin.svg b/public/assets/images/icons/white/plugin.svg
index 6ab1199ed51d3dedfa31bdd8893e110f0c653e3b..66dbfd8b251fc2ad9620d13560e17fa2afbe8fc5 100644
--- a/public/assets/images/icons/white/plugin.svg
+++ b/public/assets/images/icons/white/plugin.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M31.35,6l.54,4.28A16.51,16.51,0,0,0,29,10a17.75,17.75,0,0,0-2.81.23,17,17,0,1,0,9.73,32.29L36.6,48H6V6H31.35M34,3H3V51H40L38.72,40.74a2,2,0,0,0-2-1.74,2,2,0,0,0-1,.26A13.82,13.82,0,0,1,29,41a14,14,0,0,1-2.33-27.81A14.35,14.35,0,0,1,29,13a13.74,13.74,0,0,1,3.54.46,2.4,2.4,0,0,0,.52.07,2,2,0,0,0,2-2.25L34,3Z"/><path class="a" d="M37,3l1.66,13.3a2,2,0,0,1-3.21,1.82,11,11,0,0,0-7.53-2A11,11,0,0,0,29,38a11,11,0,0,0,8.46-4A2,2,0,0,1,41,35C41.88,42,43,51,43,51h8V3Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M31.35,6l.54,4.28A16.51,16.51,0,0,0,29,10a17.75,17.75,0,0,0-2.81.23,17,17,0,1,0,9.73,32.29L36.6,48H6V6H31.35M34,3H3V51H40L38.72,40.74a2,2,0,0,0-2-1.74,2,2,0,0,0-1,.26A13.82,13.82,0,0,1,29,41a14,14,0,0,1-2.33-27.81A14.35,14.35,0,0,1,29,13a13.74,13.74,0,0,1,3.54.46,2.4,2.4,0,0,0,.52.07,2,2,0,0,0,2-2.25L34,3Z"/><path class="a" d="M37,3l1.66,13.3a2,2,0,0,1-3.21,1.82,11,11,0,0,0-7.53-2A11,11,0,0,0,29,38a11,11,0,0,0,8.46-4A2,2,0,0,1,41,35C41.88,42,43,51,43,51h8V3Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/plugin2.svg b/public/assets/images/icons/white/plugin2.svg
index d2ec37b2e5715b88ceed792d6ab820e9d591bae2..d6554ae8c79f76846fcfda7a650a377fd13def57 100644
--- a/public/assets/images/icons/white/plugin2.svg
+++ b/public/assets/images/icons/white/plugin2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M38.75,24.61a7,7,0,0,1,4.6,1.76A1,1,0,0,0,45,25.62v-9.8H33.58a1,1,0,0,1-.75-1.65,6.6,6.6,0,0,0,1.66-4.31,7,7,0,0,0-14-.13,6.61,6.61,0,0,0,1.66,4.45,1,1,0,0,1-.75,1.64H9V51h7.49a1,1,0,0,0,.76-1.64,6.72,6.72,0,0,1-1.67-4.49,7,7,0,0,1,14,.14,6.7,6.7,0,0,1-1.67,4.34A1,1,0,0,0,28.64,51H45V37.27a1,1,0,0,0-1.64-.77,7.05,7.05,0,0,1-4.75,1.76,6.83,6.83,0,1,1,.14-13.65Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M38.75,24.61a7,7,0,0,1,4.6,1.76A1,1,0,0,0,45,25.62v-9.8H33.58a1,1,0,0,1-.75-1.65,6.6,6.6,0,0,0,1.66-4.31,7,7,0,0,0-14-.13,6.61,6.61,0,0,0,1.66,4.45,1,1,0,0,1-.75,1.64H9V51h7.49a1,1,0,0,0,.76-1.64,6.72,6.72,0,0,1-1.67-4.49,7,7,0,0,1,14,.14,6.7,6.7,0,0,1-1.67,4.34A1,1,0,0,0,28.64,51H45V37.27a1,1,0,0,0-1.64-.77,7.05,7.05,0,0,1-4.75,1.76,6.83,6.83,0,1,1,.14-13.65Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/privacy.svg b/public/assets/images/icons/white/privacy.svg
index 2fb014ce004c67eb63fbee590cc3949d1533f15f..a99e1487537db5c55b300c9fe3f118b0381bc121 100644
--- a/public/assets/images/icons/white/privacy.svg
+++ b/public/assets/images/icons/white/privacy.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="privacy"><path d="M27.87,14.51H23V24.75h5.13a6.47,6.47,0,0,0,4.4-1.35,4.84,4.84,0,0,0,1.55-3.86Q34.1,14.52,27.87,14.51Z"/><path d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM37.52,24.72a8.21,8.21,0,0,1-3.91,3.2,20,20,0,0,1-7.12,1H23V43.11H18.31V10.34H28.69a10.68,10.68,0,0,1,7.47,2.53A8.71,8.71,0,0,1,39,19.66,9.1,9.1,0,0,1,37.52,24.72Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="privacy"><path d="M27.87,14.51H23V24.75h5.13a6.47,6.47,0,0,0,4.4-1.35,4.84,4.84,0,0,0,1.55-3.86Q34.1,14.52,27.87,14.51Z"/><path d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM37.52,24.72a8.21,8.21,0,0,1-3.91,3.2,20,20,0,0,1-7.12,1H23V43.11H18.31V10.34H28.69a10.68,10.68,0,0,1,7.47,2.53A8.71,8.71,0,0,1,39,19.66,9.1,9.1,0,0,1,37.52,24.72Z"/></g></svg>
diff --git a/public/assets/images/icons/white/question-circle-full.svg b/public/assets/images/icons/white/question-circle-full.svg
index 8f0a818af669255e38ef96132e0ee62e384d6367..5904309e09a830952272c20c7d75171c97e54624 100644
--- a/public/assets/images/icons/white/question-circle-full.svg
+++ b/public/assets/images/icons/white/question-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/question-circle.svg b/public/assets/images/icons/white/question-circle.svg
index 8f0a818af669255e38ef96132e0ee62e384d6367..5904309e09a830952272c20c7d75171c97e54624 100644
--- a/public/assets/images/icons/white/question-circle.svg
+++ b/public/assets/images/icons/white/question-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/refresh.svg b/public/assets/images/icons/white/refresh.svg
index b1bb45a2899480ad0f272ee7ad4404dba7e22582..3eccecfbf90286b884b0f34473027f6ae0b31bd0 100644
--- a/public/assets/images/icons/white/refresh.svg
+++ b/public/assets/images/icons/white/refresh.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="refresh"><path class="cls-1" d="M27,44A17,17,0,0,1,10.63,31.46l4.88,1.31,4.24-2.45L6.54,26.77,3,40l4.24-2.45,1-3.76A19.93,19.93,0,0,0,46.33,32l-2.9-.75A17,17,0,0,1,27,44Z"/><path class="cls-1" d="M46.76,16.51l-1,3.72a19.93,19.93,0,0,0-38.1,1.82l2.9.75a16.95,16.95,0,0,1,32.81-.2l-4.89-1.31-4.24,2.45,13.21,3.55L51,14.06Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="refresh"><path class="cls-1" d="M27,44A17,17,0,0,1,10.63,31.46l4.88,1.31,4.24-2.45L6.54,26.77,3,40l4.24-2.45,1-3.76A19.93,19.93,0,0,0,46.33,32l-2.9-.75A17,17,0,0,1,27,44Z"/><path class="cls-1" d="M46.76,16.51l-1,3.72a19.93,19.93,0,0,0-38.1,1.82l2.9.75a16.95,16.95,0,0,1,32.81-.2l-4.89-1.31-4.24,2.45,13.21,3.55L51,14.06Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/remove-circle-full.svg b/public/assets/images/icons/white/remove-circle-full.svg
index 28543e718d88ada378e74fb131975682084ddfad..75e29fea1da340855afbdebe42a948e355307019 100644
--- a/public/assets/images/icons/white/remove-circle-full.svg
+++ b/public/assets/images/icons/white/remove-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/remove-circle.svg b/public/assets/images/icons/white/remove-circle.svg
index 28543e718d88ada378e74fb131975682084ddfad..75e29fea1da340855afbdebe42a948e355307019 100644
--- a/public/assets/images/icons/white/remove-circle.svg
+++ b/public/assets/images/icons/white/remove-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/remove.svg b/public/assets/images/icons/white/remove.svg
index f060992b98224f3bbd402be57c010e86c062e523..1d76564e728f5e898e148c39ebe73c56f306edbd 100644
--- a/public/assets/images/icons/white/remove.svg
+++ b/public/assets/images/icons/white/remove.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="48 32 48 22 6 22 6 32 48 32"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="48 32 48 22 6 22 6 32 48 32"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/resources-broken.svg b/public/assets/images/icons/white/resources-broken.svg
index 426d42b665582c3fe013de7a760c85212e0ba73f..f7f868b46075e475dbbe5623558f1030898a9288 100644
--- a/public/assets/images/icons/white/resources-broken.svg
+++ b/public/assets/images/icons/white/resources-broken.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="resources-broken"><polygon class="cls-1" points="24.93 49.54 24.93 36.7 22.46 49.54 24.93 49.54"/><polygon class="cls-1" points="37.76 4.43 31.82 4.43 30.57 10.91 32.8 8.65 36.05 11.94 28.99 19.09 27.54 26.65 37.76 26.65 37.76 4.43"/><path class="cls-1" d="M28.76,31V53H50.69V31Zm14.1,11h0l4.45,4.47L44.18,49.6l-4.45-4.47L35.28,49.6l-3.14-3.15L36.59,42h0l-4.44-4.47L33.7,36l1.58-1.58,4.45,4.47,4.45-4.47,3.13,3.15L42.86,42Z"/><polygon class="cls-1" points="3 27.51 3 49.54 18.82 49.54 19.47 46.14 16.1 46.14 16.1 40.35 11.83 40.35 11.83 46.14 7.76 46.14 7.76 38.74 6.55 38.74 13.97 30.91 20.98 38.31 23.06 27.51 3 27.51"/><polygon class="cls-1" points="20.18 42.47 20.89 38.74 20.18 38.74 20.18 42.47"/><polygon class="cls-1" points="15.86 0.97 15.86 23.19 23.89 23.19 24.61 19.43 17.57 12.29 20.81 9 24.92 13.18 26.04 12.05 28.17 0.97 15.86 0.97"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="resources-broken"><polygon class="cls-1" points="24.93 49.54 24.93 36.7 22.46 49.54 24.93 49.54"/><polygon class="cls-1" points="37.76 4.43 31.82 4.43 30.57 10.91 32.8 8.65 36.05 11.94 28.99 19.09 27.54 26.65 37.76 26.65 37.76 4.43"/><path class="cls-1" d="M28.76,31V53H50.69V31Zm14.1,11h0l4.45,4.47L44.18,49.6l-4.45-4.47L35.28,49.6l-3.14-3.15L36.59,42h0l-4.44-4.47L33.7,36l1.58-1.58,4.45,4.47,4.45-4.47,3.13,3.15L42.86,42Z"/><polygon class="cls-1" points="3 27.51 3 49.54 18.82 49.54 19.47 46.14 16.1 46.14 16.1 40.35 11.83 40.35 11.83 46.14 7.76 46.14 7.76 38.74 6.55 38.74 13.97 30.91 20.98 38.31 23.06 27.51 3 27.51"/><polygon class="cls-1" points="20.18 42.47 20.89 38.74 20.18 38.74 20.18 42.47"/><polygon class="cls-1" points="15.86 0.97 15.86 23.19 23.89 23.19 24.61 19.43 17.57 12.29 20.81 9 24.92 13.18 26.04 12.05 28.17 0.97 15.86 0.97"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/resources.svg b/public/assets/images/icons/white/resources.svg
index e6ee7e5494bdf768c0d9e384b14bd66b2d781bfc..cefe1c1ac56a3c6b6b2c09741f79a5383eabe5f7 100644
--- a/public/assets/images/icons/white/resources.svg
+++ b/public/assets/images/icons/white/resources.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="resources"><path class="cls-1" d="M29,29V51H51V29ZM47.61,44.46,44.46,47.6,40,43.14,35.54,47.6l-3.15-3.14L36.86,40,32.4,35.53l3.14-3.14L40,36.86l4.46-4.47,3.15,3.15L43.14,40Z"/><path class="cls-1" d="M16,3V25H38V3Zm9.12,18.6-7.4-7.4L21,11l4.14,4.14L33,7.18l3.26,3.25Z"/><path class="cls-1" d="M3,29V51H25V29ZM20.23,40.21V47.6H16.14V41.82H11.86V47.6H7.77V40.21H6.56L14,32.39l7.44,7.82Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="resources"><path class="cls-1" d="M29,29V51H51V29ZM47.61,44.46,44.46,47.6,40,43.14,35.54,47.6l-3.15-3.14L36.86,40,32.4,35.53l3.14-3.14L40,36.86l4.46-4.47,3.15,3.15L43.14,40Z"/><path class="cls-1" d="M16,3V25H38V3Zm9.12,18.6-7.4-7.4L21,11l4.14,4.14L33,7.18l3.26,3.25Z"/><path class="cls-1" d="M3,29V51H25V29ZM20.23,40.21V47.6H16.14V41.82H11.86V47.6H7.77V40.21H6.56L14,32.39l7.44,7.82Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/roles2.svg b/public/assets/images/icons/white/roles2.svg
index 779ac53833e771e0de7cc74d9079e69936d8ac6c..ae525a9eb615a818928a16b213327bd62492af27 100644
--- a/public/assets/images/icons/white/roles2.svg
+++ b/public/assets/images/icons/white/roles2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="roles2"><path class="cls-1" d="M19,10a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-5A10,10,0,1,0,29,15,10,10,0,0,0,19,5Z"/><path class="cls-1" d="M30,44v0H8V36a3,3,0,0,1,3-3H22.86L26,28H11a8,8,0,0,0-8,8V49H35V44Z"/><path class="cls-1" d="M48.35,5.68a5.4,5.4,0,0,0-7.22,1.87L40.25,9l-1.33,2.21L27,31.1,27.13,41l9.05-4.78L48.09,16.33l1.32-2.21.88-1.47A5,5,0,0,0,48.35,5.68ZM34.26,34.3l-1.66.88-2.91-1.62,0-1.79L41.21,12.5l4.59,2.55Zm8.28-24,.88-1.48A2.71,2.71,0,0,1,47,7.89a2.5,2.5,0,0,1,1,3.48l-.88,1.48Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="roles2"><path class="cls-1" d="M19,10a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-5A10,10,0,1,0,29,15,10,10,0,0,0,19,5Z"/><path class="cls-1" d="M30,44v0H8V36a3,3,0,0,1,3-3H22.86L26,28H11a8,8,0,0,0-8,8V49H35V44Z"/><path class="cls-1" d="M48.35,5.68a5.4,5.4,0,0,0-7.22,1.87L40.25,9l-1.33,2.21L27,31.1,27.13,41l9.05-4.78L48.09,16.33l1.32-2.21.88-1.47A5,5,0,0,0,48.35,5.68ZM34.26,34.3l-1.66.88-2.91-1.62,0-1.79L41.21,12.5l4.59,2.55Zm8.28-24,.88-1.48A2.71,2.71,0,0,1,47,7.89a2.5,2.5,0,0,1,1,3.48l-.88,1.48Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/room-clear.svg b/public/assets/images/icons/white/room-clear.svg
index c3450ecc6535d3cd112f8e094f660815b2cf66cc..8dcefabf1313eb22e245cfaa710562d77fceb9e5 100644
--- a/public/assets/images/icons/white/room-clear.svg
+++ b/public/assets/images/icons/white/room-clear.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.7.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4.6 8.5l-2.3-2.3 1-1 1.3 1.3L9.9 9l1 1-3.5 3.5z" fill="#fff"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.7.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4.6 8.5l-2.3-2.3 1-1 1.3 1.3L9.9 9l1 1-3.5 3.5z" fill="#fff"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/room-occupied.svg b/public/assets/images/icons/white/room-occupied.svg
index 43ab9e0db4ec520612667d5937c36d622f5d0604..9a5f0db599ca04975c87e307e72388621231a64d 100644
--- a/public/assets/images/icons/white/room-occupied.svg
+++ b/public/assets/images/icons/white/room-occupied.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.7.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-1.5 7.9l-1 1L8 12.5 6.5 14l-1-1L7 11.4 5.5 10l1-1L8 10.4 9.5 9l1 1L9 11.4l1.5 1.5z" fill="#fff"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.7.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-1.5 7.9l-1 1L8 12.5 6.5 14l-1-1L7 11.4 5.5 10l1-1L8 10.4 9.5 9l1 1L9 11.4l1.5 1.5z" fill="#fff"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/room-request.svg b/public/assets/images/icons/white/room-request.svg
index 9452251ea1fe94ca041aaa1d5d57d09c44790755..4c921c4b0aec6b820153c32c2cc910703ee4aaa3 100644
--- a/public/assets/images/icons/white/room-request.svg
+++ b/public/assets/images/icons/white/room-request.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1.1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.8.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4 8.7c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7zm1-2.8c-.3.3-.4.6-.4.9v.1h-1v-.2c0-.4.1-.8.4-1.2.2-.3.4-.5.4-.8 0-.3-.2-.4-.6-.5-.3 0-.6.1-.8.2l-.1-.7c.3-.2.7-.3 1.3-.3 1 0 1.5.6 1.5 1.2-.1.6-.5.9-.7 1.3z" fill="#fff"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5c0-2.2-1.8-4-4-4-1.7 0-3.1 1.1-3.7 2.5v.1c0 .1-.1.2-.1.2 0 .5.4.8.8.8.3 0 .6-.2.8-.5.4-1.1 1.5-1.8 2.8-1.5.8.4 1.4 1 1.6 1.8.4 1.5-.7 2.8-2.1 2.9H6.3C5 7.3 4 8.3 4 9.6V14c0 .5.4 1 1 1h6c.5 0 1-.4 1-1V5zm-4 8.7c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7zm1-2.8c-.3.3-.4.6-.4.9v.1h-1v-.2c0-.4.1-.8.4-1.2.2-.3.4-.5.4-.8 0-.3-.2-.4-.6-.5-.3 0-.6.1-.8.2l-.1-.7c.3-.2.7-.3 1.3-.3 1 0 1.5.6 1.5 1.2-.1.6-.5.9-.7 1.3z" fill="#fff"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/room.svg b/public/assets/images/icons/white/room.svg
index 081f11c7b70967cae22ce08a30bac64f1a031cb9..c7125b78dd51b720d10dd2cffe7885f6e654c293 100644
--- a/public/assets/images/icons/white/room.svg
+++ b/public/assets/images/icons/white/room.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="room"><polygon points="51 37.2 44.14 37.2 44.14 43.94 9.86 43.94 9.86 9.65 44.14 9.77 44.14 16.62 51 16.62 51 2.79 3 2.79 3 50.79 51 50.79 51 37.2"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="room"><polygon points="51 37.2 44.14 37.2 44.14 43.94 9.86 43.94 9.86 9.65 44.14 9.77 44.14 16.62 51 16.62 51 2.79 3 2.79 3 50.79 51 50.79 51 37.2"/></g></svg>
diff --git a/public/assets/images/icons/white/schedule.svg b/public/assets/images/icons/white/schedule.svg
index 03362a583b06fbf0e9822f9896f61ade3615c5b5..135af7d30c065af9bfc34da1cd49361fa1e03247 100644
--- a/public/assets/images/icons/white/schedule.svg
+++ b/public/assets/images/icons/white/schedule.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M18.68,37.5V31.66L14.35,37.5Zm18-21.06a2.83,2.83,0,0,0,2.83-2.82V5.82a2.83,2.83,0,0,0-5.65,0v7.8A2.82,2.82,0,0,0,36.73,16.44Zm-19.46,0a2.82,2.82,0,0,0,2.82-2.82V5.82a2.82,2.82,0,0,0-5.64,0v7.8A2.82,2.82,0,0,0,17.27,16.44ZM43,12.05v1.89a6.3,6.3,0,0,1-12.6,0V12.05H23.57v1.89a6.3,6.3,0,0,1-12.6,0V12.05H3V51H51V12.05ZM25.36,41.2a3.35,3.35,0,0,1-1.87.46h-.31v2a2.76,2.76,0,0,1-.6,1.93,2.13,2.13,0,0,1-1.62.7h0a2.12,2.12,0,0,1-1.64-.71,2.79,2.79,0,0,1-.61-1.92v-2H12.3A3.38,3.38,0,0,1,10,40.93a2.63,2.63,0,0,1-.83-2,1.94,1.94,0,0,1,.13-.71,3.6,3.6,0,0,1,.34-.68c.13-.2.28-.41.42-.59s.31-.41.51-.68l7.29-9.76A13.23,13.23,0,0,1,19.08,25a2.08,2.08,0,0,1,1.48-.57,2.49,2.49,0,0,1,2,.78,3.26,3.26,0,0,1,.66,2.14V37.51h.06a4.62,4.62,0,0,1,1.92.33,1.77,1.77,0,0,1,.95,1.75A1.83,1.83,0,0,1,25.36,41.2Zm16.35,4.13A2.3,2.3,0,0,1,40,46H29.8a2.71,2.71,0,0,1-1.95-.72,2.36,2.36,0,0,1-.74-1.72A4.06,4.06,0,0,1,27.53,42a5.32,5.32,0,0,1,.92-1.44q1.83-1.9,3.33-3.27a21.23,21.23,0,0,1,2.15-1.83,11.55,11.55,0,0,0,1.8-1.53,6.26,6.26,0,0,0,1.05-1.51A3.46,3.46,0,0,0,37.12,31a2.44,2.44,0,0,0-.34-1.31,2.41,2.41,0,0,0-.94-.88,3,3,0,0,0-1.32-.33,2.72,2.72,0,0,0-2.4,1.35,7.69,7.69,0,0,0-.4,1,5.19,5.19,0,0,1-.82,1.58,2,2,0,0,1-1.6.69,2.11,2.11,0,0,1-1.52-.61,2.24,2.24,0,0,1-.61-1.62,5.64,5.64,0,0,1,.47-2.18A6.06,6.06,0,0,1,29,26.62a6.83,6.83,0,0,1,2.32-1.47,8.85,8.85,0,0,1,3.25-.56,9.35,9.35,0,0,1,3.81.71A6.19,6.19,0,0,1,42,30.88,6.37,6.37,0,0,1,41,34.26a10.22,10.22,0,0,1-1.82,2.31c-.6.54-1.59,1.37-3,2.5a22.87,22.87,0,0,0-2.78,2.57h6.12a3.14,3.14,0,0,1,2,.55,2,2,0,0,1,.77,1.62A2.15,2.15,0,0,1,41.71,45.33Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M18.68,37.5V31.66L14.35,37.5Zm18-21.06a2.83,2.83,0,0,0,2.83-2.82V5.82a2.83,2.83,0,0,0-5.65,0v7.8A2.82,2.82,0,0,0,36.73,16.44Zm-19.46,0a2.82,2.82,0,0,0,2.82-2.82V5.82a2.82,2.82,0,0,0-5.64,0v7.8A2.82,2.82,0,0,0,17.27,16.44ZM43,12.05v1.89a6.3,6.3,0,0,1-12.6,0V12.05H23.57v1.89a6.3,6.3,0,0,1-12.6,0V12.05H3V51H51V12.05ZM25.36,41.2a3.35,3.35,0,0,1-1.87.46h-.31v2a2.76,2.76,0,0,1-.6,1.93,2.13,2.13,0,0,1-1.62.7h0a2.12,2.12,0,0,1-1.64-.71,2.79,2.79,0,0,1-.61-1.92v-2H12.3A3.38,3.38,0,0,1,10,40.93a2.63,2.63,0,0,1-.83-2,1.94,1.94,0,0,1,.13-.71,3.6,3.6,0,0,1,.34-.68c.13-.2.28-.41.42-.59s.31-.41.51-.68l7.29-9.76A13.23,13.23,0,0,1,19.08,25a2.08,2.08,0,0,1,1.48-.57,2.49,2.49,0,0,1,2,.78,3.26,3.26,0,0,1,.66,2.14V37.51h.06a4.62,4.62,0,0,1,1.92.33,1.77,1.77,0,0,1,.95,1.75A1.83,1.83,0,0,1,25.36,41.2Zm16.35,4.13A2.3,2.3,0,0,1,40,46H29.8a2.71,2.71,0,0,1-1.95-.72,2.36,2.36,0,0,1-.74-1.72A4.06,4.06,0,0,1,27.53,42a5.32,5.32,0,0,1,.92-1.44q1.83-1.9,3.33-3.27a21.23,21.23,0,0,1,2.15-1.83,11.55,11.55,0,0,0,1.8-1.53,6.26,6.26,0,0,0,1.05-1.51A3.46,3.46,0,0,0,37.12,31a2.44,2.44,0,0,0-.34-1.31,2.41,2.41,0,0,0-.94-.88,3,3,0,0,0-1.32-.33,2.72,2.72,0,0,0-2.4,1.35,7.69,7.69,0,0,0-.4,1,5.19,5.19,0,0,1-.82,1.58,2,2,0,0,1-1.6.69,2.11,2.11,0,0,1-1.52-.61,2.24,2.24,0,0,1-.61-1.62,5.64,5.64,0,0,1,.47-2.18A6.06,6.06,0,0,1,29,26.62a6.83,6.83,0,0,1,2.32-1.47,8.85,8.85,0,0,1,3.25-.56,9.35,9.35,0,0,1,3.81.71A6.19,6.19,0,0,1,42,30.88,6.37,6.37,0,0,1,41,34.26a10.22,10.22,0,0,1-1.82,2.31c-.6.54-1.59,1.37-3,2.5a22.87,22.87,0,0,0-2.78,2.57h6.12a3.14,3.14,0,0,1,2,.55,2,2,0,0,1,.77,1.62A2.15,2.15,0,0,1,41.71,45.33Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/schedule2.svg b/public/assets/images/icons/white/schedule2.svg
index 472db42ea45b4b262f8b5fc090ef9b7894402ba3..b595eb21b49e222492b05619f78fba9cf636cd58 100644
--- a/public/assets/images/icons/white/schedule2.svg
+++ b/public/assets/images/icons/white/schedule2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><rect class="a" x="17.93" y="6.97" width="18.09" height="5"/><polygon class="a" points="40.93 6.97 40.93 11.97 46 11.97 46 45.97 8 45.97 8 11.97 13.02 11.97 13.02 6.97 3 6.97 3 50.97 51 50.97 51 6.97 40.93 6.97"/><path class="a" d="M35.47,16A2.62,2.62,0,0,0,38,13.24V5.69a2.51,2.51,0,1,0-5,0v7.55A2.63,2.63,0,0,0,35.47,16Z"/><path class="a" d="M18.52,16A2.63,2.63,0,0,0,21,13.24V5.69A2.63,2.63,0,0,0,18.52,3,2.62,2.62,0,0,0,16,5.69v7.55A2.62,2.62,0,0,0,18.52,16Z"/><path class="a" d="M20.45,36H14a1.92,1.92,0,0,1-2-2,2.77,2.77,0,0,1,.49-1.71l8-11.46A1.87,1.87,0,0,1,22.14,20c1.39,0,1.93.84,1.93,2.09V32.64h1.3a1.67,1.67,0,0,1,0,3.31h-1.3v3c0,1.22-.46,2-1.81,2s-1.81-.81-1.81-2Zm0-10.82H20.4l-5,7.51h5Z"/><path class="a" d="M40.29,36.94A1.59,1.59,0,0,1,42,38.77c0,1.3-.72,1.82-1.91,1.82h-9.7a2,2,0,0,1-2.12-2.14c0-2.06,1.63-4.36,4.86-6.65,3.6-2.55,4.84-3.07,4.84-5.42a2.72,2.72,0,0,0-2.72-2.93c-1.65,0-2.76.75-3.33,3.07-.26,1.08-.6,1.63-1.63,1.63a1.71,1.71,0,0,1-1.89-1.94c0-3.54,3.1-6.24,6.9-6.24,4.14,0,6.6,3.05,6.6,5.71,0,3.86-1.58,5.37-4.32,7.11-2.92,1.86-4.71,3.05-5,4.15Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><rect class="a" x="17.93" y="6.97" width="18.09" height="5"/><polygon class="a" points="40.93 6.97 40.93 11.97 46 11.97 46 45.97 8 45.97 8 11.97 13.02 11.97 13.02 6.97 3 6.97 3 50.97 51 50.97 51 6.97 40.93 6.97"/><path class="a" d="M35.47,16A2.62,2.62,0,0,0,38,13.24V5.69a2.51,2.51,0,1,0-5,0v7.55A2.63,2.63,0,0,0,35.47,16Z"/><path class="a" d="M18.52,16A2.63,2.63,0,0,0,21,13.24V5.69A2.63,2.63,0,0,0,18.52,3,2.62,2.62,0,0,0,16,5.69v7.55A2.62,2.62,0,0,0,18.52,16Z"/><path class="a" d="M20.45,36H14a1.92,1.92,0,0,1-2-2,2.77,2.77,0,0,1,.49-1.71l8-11.46A1.87,1.87,0,0,1,22.14,20c1.39,0,1.93.84,1.93,2.09V32.64h1.3a1.67,1.67,0,0,1,0,3.31h-1.3v3c0,1.22-.46,2-1.81,2s-1.81-.81-1.81-2Zm0-10.82H20.4l-5,7.51h5Z"/><path class="a" d="M40.29,36.94A1.59,1.59,0,0,1,42,38.77c0,1.3-.72,1.82-1.91,1.82h-9.7a2,2,0,0,1-2.12-2.14c0-2.06,1.63-4.36,4.86-6.65,3.6-2.55,4.84-3.07,4.84-5.42a2.72,2.72,0,0,0-2.72-2.93c-1.65,0-2.76.75-3.33,3.07-.26,1.08-.6,1.63-1.63,1.63a1.71,1.71,0,0,1-1.89-1.94c0-3.54,3.1-6.24,6.9-6.24,4.14,0,6.6,3.05,6.6,5.71,0,3.86-1.58,5.37-4.32,7.11-2.92,1.86-4.71,3.05-5,4.15Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/search.svg b/public/assets/images/icons/white/search.svg
index bd7bfa4848da7362e31d7383c0c5f8424b166c92..97b8cf8572724a06992c9061bcdaf7ca509f05c9 100644
--- a/public/assets/images/icons/white/search.svg
+++ b/public/assets/images/icons/white/search.svg
@@ -1 +1 @@
-<svg id="Icons_NEUES_LAYOUT_2021" data-name="Icons – NEUES LAYOUT 2021" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="search2"><path class="cls-1" d="M49.54,42.46,38,31c-.14-.13-.3-.24-.45-.36a18.54,18.54,0,1,0-7,7c.12.15.23.31.36.45l11.5,11.5a5,5,0,0,0,7.08-7.08ZM9,21.5A12.5,12.5,0,1,1,21.5,34,12.52,12.52,0,0,1,9,21.5Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="Icons_NEUES_LAYOUT_2021" data-name="Icons – NEUES LAYOUT 2021" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="search2"><path class="cls-1" d="M49.54,42.46,38,31c-.14-.13-.3-.24-.45-.36a18.54,18.54,0,1,0-7,7c.12.15.23.31.36.45l11.5,11.5a5,5,0,0,0,7.08-7.08ZM9,21.5A12.5,12.5,0,1,1,21.5,34,12.52,12.52,0,0,1,9,21.5Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/service.svg b/public/assets/images/icons/white/service.svg
index 6dca6ff38efa9119c4f4169cb9cf35db5fb4d9b4..94a5aa88007a80955c4b64c89315ed210f6e7b4b 100644
--- a/public/assets/images/icons/white/service.svg
+++ b/public/assets/images/icons/white/service.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/share.svg b/public/assets/images/icons/white/share.svg
index e54802bd1d7875ed6d788ffc672be3371084949c..41fdb638da256f475fb47d78bf07e924d2794482 100644
--- a/public/assets/images/icons/white/share.svg
+++ b/public/assets/images/icons/white/share.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/smiley.svg b/public/assets/images/icons/white/smiley.svg
index 288c40da270db2e9b594e819159efa4b5f128551..4b86cc5a3583d7ffcaa7678e6740fa81ec1b947b 100644
--- a/public/assets/images/icons/white/smiley.svg
+++ b/public/assets/images/icons/white/smiley.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3Zm0,45A21,21,0,1,1,48,27,21,21,0,0,1,27,48Z"/><path class="a" d="M32.24,25.23c2.18-.15,3.81-2.53,3.63-5.3s-2.11-4.91-4.3-4.77-3.82,2.53-3.63,5.3S30.05,25.37,32.24,25.23Z"/><path class="a" d="M21.26,25.83c2.18-.15,3.81-2.52,3.63-5.3s-2.11-4.91-4.3-4.76S16.77,18.29,17,21.06,19.07,26,21.26,25.83Z"/><path class="a" d="M44.25,23.67a1.5,1.5,0,1,0-3,.42,14.5,14.5,0,0,1-28.72,4.05,1.49,1.49,0,0,0-1.69-1.27A1.51,1.51,0,0,0,9.6,28.58a17.58,17.58,0,0,0,17.32,15,17,17,0,0,0,2.46-.17A17.52,17.52,0,0,0,44.25,23.67Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3Zm0,45A21,21,0,1,1,48,27,21,21,0,0,1,27,48Z"/><path class="a" d="M32.24,25.23c2.18-.15,3.81-2.53,3.63-5.3s-2.11-4.91-4.3-4.77-3.82,2.53-3.63,5.3S30.05,25.37,32.24,25.23Z"/><path class="a" d="M21.26,25.83c2.18-.15,3.81-2.52,3.63-5.3s-2.11-4.91-4.3-4.76S16.77,18.29,17,21.06,19.07,26,21.26,25.83Z"/><path class="a" d="M44.25,23.67a1.5,1.5,0,1,0-3,.42,14.5,14.5,0,0,1-28.72,4.05,1.49,1.49,0,0,0-1.69-1.27A1.51,1.51,0,0,0,9.6,28.58a17.58,17.58,0,0,0,17.32,15,17,17,0,0,0,2.46-.17A17.52,17.52,0,0,0,44.25,23.67Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/spiral.svg b/public/assets/images/icons/white/spiral.svg
index 2a4853d70794d0e184395562bbd222d3d578d71a..472cabb96760ef00909896b827edbb687dfa4424 100644
--- a/public/assets/images/icons/white/spiral.svg
+++ b/public/assets/images/icons/white/spiral.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="spiral"><path class="cls-1" d="M3,27A24,24,0,1,0,27,3,24,24,0,0,0,3,27ZM44.57,16.35a20.42,20.42,0,0,1-8.48,27A16.06,16.06,0,0,1,14.31,37a12.49,12.49,0,0,1,4.93-17,9.67,9.67,0,0,1,13.12,3.81A7.33,7.33,0,0,1,33,29.47a7.41,7.41,0,0,1-3.55,4.42,5.59,5.59,0,0,1-7.58-2.21,4.13,4.13,0,0,1,1.63-5.61,3,3,0,0,1,4,1.17,1.67,1.67,0,1,0,2.93-1.61,6.33,6.33,0,0,0-8.58-2.49,7.49,7.49,0,0,0-2.95,10.15,8.94,8.94,0,0,0,12.12,3.52,10.73,10.73,0,0,0,4.24-14.58A13,13,0,0,0,17.63,17.1a15.84,15.84,0,0,0-6.25,21.51,19.26,19.26,0,0,0,5.8,6.46A20.56,20.56,0,1,1,44.57,16.35Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="spiral"><path class="cls-1" d="M3,27A24,24,0,1,0,27,3,24,24,0,0,0,3,27ZM44.57,16.35a20.42,20.42,0,0,1-8.48,27A16.06,16.06,0,0,1,14.31,37a12.49,12.49,0,0,1,4.93-17,9.67,9.67,0,0,1,13.12,3.81A7.33,7.33,0,0,1,33,29.47a7.41,7.41,0,0,1-3.55,4.42,5.59,5.59,0,0,1-7.58-2.21,4.13,4.13,0,0,1,1.63-5.61,3,3,0,0,1,4,1.17,1.67,1.67,0,1,0,2.93-1.61,6.33,6.33,0,0,0-8.58-2.49,7.49,7.49,0,0,0-2.95,10.15,8.94,8.94,0,0,0,12.12,3.52,10.73,10.73,0,0,0,4.24-14.58A13,13,0,0,0,17.63,17.1a15.84,15.84,0,0,0-6.25,21.51,19.26,19.26,0,0,0,5.8,6.46A20.56,20.56,0,1,1,44.57,16.35Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/staple.svg b/public/assets/images/icons/white/staple.svg
index ebb80720f1c8e8fc9beab44c53ece32fea8a50bf..7119fe0fdd55d8eaeda35501ad62269d1c9975cc 100644
--- a/public/assets/images/icons/white/staple.svg
+++ b/public/assets/images/icons/white/staple.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="staple"><path class="cls-1" d="M43.22,9.22a14.61,14.61,0,0,0-20.58,0L6.5,25.27l2.89,2.86,16.13-16a10.51,10.51,0,0,1,14.83,0,10.4,10.4,0,0,1,0,14.75l-16.14,16a7.24,7.24,0,0,1-10.18,0,7.16,7.16,0,0,1,0-10.13l14.13-14h0a3.93,3.93,0,0,1,5.54,0,3.88,3.88,0,0,1,0,5.5l-14.13,14,2.87,2.85,14.14-14a7.9,7.9,0,0,0,0-11.23,8,8,0,0,0-11.24,0h0L11.15,29.89a11.16,11.16,0,0,0,0,15.85,11.34,11.34,0,0,0,15.94,0l16.14-16A14.39,14.39,0,0,0,43.22,9.22Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="staple"><path class="cls-1" d="M43.22,9.22a14.61,14.61,0,0,0-20.58,0L6.5,25.27l2.89,2.86,16.13-16a10.51,10.51,0,0,1,14.83,0,10.4,10.4,0,0,1,0,14.75l-16.14,16a7.24,7.24,0,0,1-10.18,0,7.16,7.16,0,0,1,0-10.13l14.13-14h0a3.93,3.93,0,0,1,5.54,0,3.88,3.88,0,0,1,0,5.5l-14.13,14,2.87,2.85,14.14-14a7.9,7.9,0,0,0,0-11.23,8,8,0,0,0-11.24,0h0L11.15,29.89a11.16,11.16,0,0,0,0,15.85,11.34,11.34,0,0,0,15.94,0l16.14-16A14.39,14.39,0,0,0,43.22,9.22Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/star-empty.svg b/public/assets/images/icons/white/star-empty.svg
index da4c70620fde8d0068b509acbc7382690d0bef23..04d70556e0695a05f843ad3967fd4d928f4b972d 100755
--- a/public/assets/images/icons/white/star-empty.svg
+++ b/public/assets/images/icons/white/star-empty.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M10.707 9.59l4.38-3.18H9.672L8.001 1.26 6.328 6.41H.913l4.38 3.18-1.67 5.15 4.378-3.183 4.376 3.183-1.67-5.15zm-1.173-.395l2.481-1.802H8.947l-.946-2.917-.948 2.917H3.985l2.481 1.802-.946 2.918 2.481-1.803 2.479 1.803-.946-2.918z" fill="#fff"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M10.707 9.59l4.38-3.18H9.672L8.001 1.26 6.328 6.41H.913l4.38 3.18-1.67 5.15 4.378-3.183 4.376 3.183-1.67-5.15zm-1.173-.395l2.481-1.802H8.947l-.946-2.917-.948 2.917H3.985l2.481 1.802-.946 2.918 2.481-1.803 2.479 1.803-.946-2.918z" fill="#fff"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/star-halffull.svg b/public/assets/images/icons/white/star-halffull.svg
index f44b1a05a05f298bb03e2925225cf7b54a6ce5da..9dab3f141206f8e23cf8af9b49547e4b303a57c5 100755
--- a/public/assets/images/icons/white/star-halffull.svg
+++ b/public/assets/images/icons/white/star-halffull.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M8 11.558L3.623 14.74l1.67-5.151-4.38-3.18h5.415L8.001 1.26l1.671 5.149h5.415l-4.38 3.18 1.67 5.151-4.376-3.183-.001.001.001-1.248 2.479 1.803-.946-2.918 2.481-1.802H8.947l-.946-2.917L8 4.478v7.08z" fill="#fff"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M8 11.558L3.623 14.74l1.67-5.151-4.38-3.18h5.415L8.001 1.26l1.671 5.149h5.415l-4.38 3.18 1.67 5.151-4.376-3.183-.001.001.001-1.248 2.479 1.803-.946-2.918 2.481-1.802H8.947l-.946-2.917L8 4.478v7.08z" fill="#fff"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/stop.svg b/public/assets/images/icons/white/stop.svg
index 67f0b304fa0b6c795b08fa7eefcaa856690d89f2..bf081dfe1606f24c1ef79069b78e3f41dd0617d8 100644
--- a/public/assets/images/icons/white/stop.svg
+++ b/public/assets/images/icons/white/stop.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><rect class="a" x="10" y="8" width="34" height="38"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><rect class="a" x="10" y="8" width="34" height="38"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/table-of-contents.svg b/public/assets/images/icons/white/table-of-contents.svg
index d662803ed08b7cd5e635e4b10968b1267d3b686d..27bde9596e1744c66196cda272c40a60242791b2 100644
--- a/public/assets/images/icons/white/table-of-contents.svg
+++ b/public/assets/images/icons/white/table-of-contents.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="table-of-contents"><rect class="cls-1" x="40.71" y="2.89" width="10.29" height="6.86"/><rect class="cls-1" x="3" y="2.89" width="30.86" height="6.86"/><rect class="cls-1" x="3" y="16.61" width="30.86" height="6.86"/><rect class="cls-1" x="13.29" y="30.32" width="20.57" height="6.86"/><rect class="cls-1" x="3" y="44.04" width="30.86" height="6.86"/><rect class="cls-1" x="40.71" y="16.61" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="30.32" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="44.04" width="10.29" height="6.86"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="table-of-contents"><rect class="cls-1" x="40.71" y="2.89" width="10.29" height="6.86"/><rect class="cls-1" x="3" y="2.89" width="30.86" height="6.86"/><rect class="cls-1" x="3" y="16.61" width="30.86" height="6.86"/><rect class="cls-1" x="13.29" y="30.32" width="20.57" height="6.86"/><rect class="cls-1" x="3" y="44.04" width="30.86" height="6.86"/><rect class="cls-1" x="40.71" y="16.61" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="30.32" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="44.04" width="10.29" height="6.86"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/test.svg b/public/assets/images/icons/white/test.svg
index b6d0465f6e4c2a9854454dcf2f4fe71dfb1e296d..3671dd6e8f9613b41acf3c3d59f9ab476ac85e8e 100644
--- a/public/assets/images/icons/white/test.svg
+++ b/public/assets/images/icons/white/test.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="test"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><polygon class="cls-1" points="49 8.99 46.54 6.5 40.58 12.53 37.45 9.38 35 11.86 40.58 17.5 49 8.99"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="test"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><polygon class="cls-1" points="49 8.99 46.54 6.5 40.58 12.53 37.45 9.38 35 11.86 40.58 17.5 49 8.99"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/tools.svg b/public/assets/images/icons/white/tools.svg
index 177ecab7c125d2eab31533a517225eb2a04cb0b1..ef4728fe163adddf7f834f318ed86ff245395aa3 100644
--- a/public/assets/images/icons/white/tools.svg
+++ b/public/assets/images/icons/white/tools.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="tools"><path class="cls-1" d="M49.32,40.2,37.15,28,28,37.15,40.18,49.31a6.47,6.47,0,0,0,9.14-9.11Z"/><path class="cls-1" d="M26.08,16.94A11.61,11.61,0,0,0,11.28,3.51l6.35,6.36-1.84,5.72L9.86,17.64,3.5,11.27A11.63,11.63,0,0,0,16.93,26.09Z"/><g id="Edit"><polygon class="cls-1" points="3.12 50.72 8.73 48.99 4.91 45.16 3.12 50.72"/><polygon class="cls-1" points="6.53 39.85 14.02 47.39 44.34 17.21 36.85 9.67 6.53 39.85"/><path class="cls-1" d="M49.44,4.65A5.31,5.31,0,0,0,42,4.6l-3,3,7.49,7.55,3-3h0A5.31,5.31,0,0,0,49.44,4.65Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="tools"><path class="cls-1" d="M49.32,40.2,37.15,28,28,37.15,40.18,49.31a6.47,6.47,0,0,0,9.14-9.11Z"/><path class="cls-1" d="M26.08,16.94A11.61,11.61,0,0,0,11.28,3.51l6.35,6.36-1.84,5.72L9.86,17.64,3.5,11.27A11.63,11.63,0,0,0,16.93,26.09Z"/><g id="Edit"><polygon class="cls-1" points="3.12 50.72 8.73 48.99 4.91 45.16 3.12 50.72"/><polygon class="cls-1" points="6.53 39.85 14.02 47.39 44.34 17.21 36.85 9.67 6.53 39.85"/><path class="cls-1" d="M49.44,4.65A5.31,5.31,0,0,0,42,4.6l-3,3,7.49,7.55,3-3h0A5.31,5.31,0,0,0,49.44,4.65Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/topic.svg b/public/assets/images/icons/white/topic.svg
index 5df66aed6e3bc4cfb86fda3da928a239edb72b5d..bd703f560b125546cba7251e28f2fb108aed2a36 100644
--- a/public/assets/images/icons/white/topic.svg
+++ b/public/assets/images/icons/white/topic.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="topic"><path d="M42,9V48H12V9H42m3-3H9V51H45V6Z"/><rect x="20.81" y="3" width="12.09" height="8.9"/><rect x="18" y="23.81" width="17.99" height="6.06"/><rect x="18" y="32.8" width="17.99" height="6.3"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="topic"><path d="M42,9V48H12V9H42m3-3H9V51H45V6Z"/><rect x="20.81" y="3" width="12.09" height="8.9"/><rect x="18" y="23.81" width="17.99" height="6.06"/><rect x="18" y="32.8" width="17.99" height="6.3"/></g></svg>
diff --git a/public/assets/images/icons/white/trash.svg b/public/assets/images/icons/white/trash.svg
index a8e82c409e2f2f18651cc62cd69f4e2e59a6e459..cdb0870943ce53f87524c8d86810eea096dd7827 100644
--- a/public/assets/images/icons/white/trash.svg
+++ b/public/assets/images/icons/white/trash.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M43,8H34.88a6.22,6.22,0,0,0-6.1-5H25.22a6.22,6.22,0,0,0-6.1,5H11a3,3,0,0,0-3,3v2H46V11A3,3,0,0,0,43,8ZM25.22,6h3.56a3.22,3.22,0,0,1,3,2H22.24A3.22,3.22,0,0,1,25.22,6Z"/><path class="a" d="M11,48a3,3,0,0,0,3,3H40a3,3,0,0,0,3-3V15H11Zm3-30H40V48H14Z"/><rect class="a" x="17" y="19.97" width="4" height="26"/><rect class="a" x="25" y="19.97" width="4" height="26"/><rect class="a" x="33" y="19.97" width="4" height="26"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M43,8H34.88a6.22,6.22,0,0,0-6.1-5H25.22a6.22,6.22,0,0,0-6.1,5H11a3,3,0,0,0-3,3v2H46V11A3,3,0,0,0,43,8ZM25.22,6h3.56a3.22,3.22,0,0,1,3,2H22.24A3.22,3.22,0,0,1,25.22,6Z"/><path class="a" d="M11,48a3,3,0,0,0,3,3H40a3,3,0,0,0,3-3V15H11Zm3-30H40V48H14Z"/><rect class="a" x="17" y="19.97" width="4" height="26"/><rect class="a" x="25" y="19.97" width="4" height="26"/><rect class="a" x="33" y="19.97" width="4" height="26"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/upload.svg b/public/assets/images/icons/white/upload.svg
index 9ce8446d40ab2aff60914788076f3b90d389bf16..3babb99c716620c3cb2d40bf558456fbfaf8c145 100644
--- a/public/assets/images/icons/white/upload.svg
+++ b/public/assets/images/icons/white/upload.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/upload2.svg b/public/assets/images/icons/white/upload2.svg
index 9ce8446d40ab2aff60914788076f3b90d389bf16..3babb99c716620c3cb2d40bf558456fbfaf8c145 100644
--- a/public/assets/images/icons/white/upload2.svg
+++ b/public/assets/images/icons/white/upload2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/vcard.svg b/public/assets/images/icons/white/vcard.svg
index 4f60475ecb7dd4c51018514a5416a1eddbc1cb96..19b019fbff266c33226c70cd17634ed0deb5b523 100644
--- a/public/assets/images/icons/white/vcard.svg
+++ b/public/assets/images/icons/white/vcard.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,10V44H51V10Zm8,31V36.21A1.23,1.23,0,0,1,12.24,35H23.76A1.24,1.24,0,0,1,25,36.21V41Zm37,0H28V36.21A4.24,4.24,0,0,0,23.76,32H12.24A4.24,4.24,0,0,0,8,36.21V41H6V13H48Z"/><path class="a" d="M18.1,31a7,7,0,1,0-7-7A7,7,0,0,0,18.1,31Zm0-10.91A3.91,3.91,0,1,1,14.2,24,3.92,3.92,0,0,1,18.1,20.06Z"/><rect class="a" x="31" y="17.97" width="14" height="4"/><rect class="a" x="31" y="24.97" width="14" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffffff;}</style></defs><path class="a" d="M3,10V44H51V10Zm8,31V36.21A1.23,1.23,0,0,1,12.24,35H23.76A1.24,1.24,0,0,1,25,36.21V41Zm37,0H28V36.21A4.24,4.24,0,0,0,23.76,32H12.24A4.24,4.24,0,0,0,8,36.21V41H6V13H48Z"/><path class="a" d="M18.1,31a7,7,0,1,0-7-7A7,7,0,0,0,18.1,31Zm0-10.91A3.91,3.91,0,1,1,14.2,24,3.92,3.92,0,0,1,18.1,20.06Z"/><rect class="a" x="31" y="17.97" width="14" height="4"/><rect class="a" x="31" y="24.97" width="14" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/video.svg b/public/assets/images/icons/white/video.svg
index 687d0bb46eb16fd09fa3578f802b458ec6ab21a1..20263812aeed6e9a573a9dd4a61462d82bd3116d 100644
--- a/public/assets/images/icons/white/video.svg
+++ b/public/assets/images/icons/white/video.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="video"><path class="cls-1" d="M48,15l-9,6V15.67A3.68,3.68,0,0,0,35.33,12H6.67A3.68,3.68,0,0,0,3,15.67V38.33A3.68,3.68,0,0,0,6.67,42H35.33A3.68,3.68,0,0,0,39,38.33V33l9,6h3V15ZM35.65,38.33a.33.33,0,0,1-.32.32H6.67a.33.33,0,0,1-.32-.32V15.67a.33.33,0,0,1,.32-.32H35.33a.33.33,0,0,1,.32.32Z"/><polygon class="cls-1" points="15 36 28.5 27 15 18 15 36"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="video"><path class="cls-1" d="M48,15l-9,6V15.67A3.68,3.68,0,0,0,35.33,12H6.67A3.68,3.68,0,0,0,3,15.67V38.33A3.68,3.68,0,0,0,6.67,42H35.33A3.68,3.68,0,0,0,39,38.33V33l9,6h3V15ZM35.65,38.33a.33.33,0,0,1-.32.32H6.67a.33.33,0,0,1-.32-.32V15.67a.33.33,0,0,1,.32-.32H35.33a.33.33,0,0,1,.32.32Z"/><polygon class="cls-1" points="15 36 28.5 27 15 18 15 36"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/video2.svg b/public/assets/images/icons/white/video2.svg
index 7fd62b8d44e89aec45b1c2f2bc66cc50d699ddd9..576026bd35d9b59793c3cb681be295ecab6fd156 100644
--- a/public/assets/images/icons/white/video2.svg
+++ b/public/assets/images/icons/white/video2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="video2"><path class="cls-1" d="M4.76,17.82,50.48,13l-.54-5.17a2.07,2.07,0,0,0-2-1.85h-.22L5.09,10.49a2.07,2.07,0,0,0-1.84,2.27l.55,5.16h0V43.79A4.2,4.2,0,0,0,8,48H46.55a4.2,4.2,0,0,0,4.21-4.21v-26Zm5.94,3.36L7.17,24.71V21.18ZM46.55,44.65H8a.86.86,0,0,1-.85-.86V27.88H8.73l6.71-6.7h3.19l-6.7,6.7h4.74l6.71-6.7h3.19l-6.71,6.7H24.6l6.71-6.7h3.2l-6.71,6.7h4.74l6.71-6.7h3.19l-6.71,6.7h4.75l6.7-6.7h.23v3l-3.74,3.73h3.74V43.79A.87.87,0,0,1,46.55,44.65Z"/><polygon class="cls-1" points="22.26 43.02 32.32 36.31 22.26 29.6 22.26 43.02"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="video2"><path class="cls-1" d="M4.76,17.82,50.48,13l-.54-5.17a2.07,2.07,0,0,0-2-1.85h-.22L5.09,10.49a2.07,2.07,0,0,0-1.84,2.27l.55,5.16h0V43.79A4.2,4.2,0,0,0,8,48H46.55a4.2,4.2,0,0,0,4.21-4.21v-26Zm5.94,3.36L7.17,24.71V21.18ZM46.55,44.65H8a.86.86,0,0,1-.85-.86V27.88H8.73l6.71-6.7h3.19l-6.7,6.7h4.74l6.71-6.7h3.19l-6.71,6.7H24.6l6.71-6.7h3.2l-6.71,6.7h4.74l6.71-6.7h3.19l-6.71,6.7h4.75l6.7-6.7h.23v3l-3.74,3.73h3.74V43.79A.87.87,0,0,1,46.55,44.65Z"/><polygon class="cls-1" points="22.26 43.02 32.32 36.31 22.26 29.6 22.26 43.02"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/visibility-checked.svg b/public/assets/images/icons/white/visibility-checked.svg
index d5712843c64557d14ecae0a6103bcdfccb96a22f..6d8ad4168743b9bc4721e03eec8b56b97f8ec586 100644
--- a/public/assets/images/icons/white/visibility-checked.svg
+++ b/public/assets/images/icons/white/visibility-checked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
diff --git a/public/assets/images/icons/white/visibility-checked2.svg b/public/assets/images/icons/white/visibility-checked2.svg
index d5712843c64557d14ecae0a6103bcdfccb96a22f..6d8ad4168743b9bc4721e03eec8b56b97f8ec586 100644
--- a/public/assets/images/icons/white/visibility-checked2.svg
+++ b/public/assets/images/icons/white/visibility-checked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
diff --git a/public/assets/images/icons/white/visibility-invisible.svg b/public/assets/images/icons/white/visibility-invisible.svg
index 00eda81b31fd1eae878f47329dd48ebb64cb3016..63684277be559f402f282035ca0a1ea2c7908b82 100644
--- a/public/assets/images/icons/white/visibility-invisible.svg
+++ b/public/assets/images/icons/white/visibility-invisible.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g></svg>
diff --git a/public/assets/images/icons/white/visibility-visible.svg b/public/assets/images/icons/white/visibility-visible.svg
index 2a62a41f6911fafee670d9cd5f5eeaca12e4338b..691627f9d168c1246884a1e7b022c186e561f187 100644
--- a/public/assets/images/icons/white/visibility-visible.svg
+++ b/public/assets/images/icons/white/visibility-visible.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="visibility-visible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/><path d="M27,18a9.08,9.08,0,0,0-2.51.39A4.11,4.11,0,0,1,26.3,21.7a4.18,4.18,0,0,1-4.19,4.19,4.13,4.13,0,0,1-3.54-2.08A8.82,8.82,0,0,0,18,27a9,9,0,1,0,9-9Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="visibility-visible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/><path d="M27,18a9.08,9.08,0,0,0-2.51.39A4.11,4.11,0,0,1,26.3,21.7a4.18,4.18,0,0,1-4.19,4.19,4.13,4.13,0,0,1-3.54-2.08A8.82,8.82,0,0,0,18,27a9,9,0,1,0,9-9Z"/></g></svg>
diff --git a/public/assets/images/icons/white/vote-stopped.svg b/public/assets/images/icons/white/vote-stopped.svg
index 18ede81c97f94ecfe41314779b507d2cad9fcf51..439eaadb106193896668b01ef8e9e6c2dc3dfbfe 100644
--- a/public/assets/images/icons/white/vote-stopped.svg
+++ b/public/assets/images/icons/white/vote-stopped.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="vote-stopped"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><rect class="cls-1" x="-1.53" y="25.22" width="57.55" height="3" transform="translate(-10.76 23.33) rotate(-39.35)"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="vote-stopped"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><rect class="cls-1" x="-1.53" y="25.22" width="57.55" height="3" transform="translate(-10.76 23.33) rotate(-39.35)"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/vote.svg b/public/assets/images/icons/white/vote.svg
index 1fe37bbc22d53e566b7dbe0df6b39c6d918377a5..6acd3d109d0b42311f78927b1be79ebf9f84e9a5 100644
--- a/public/assets/images/icons/white/vote.svg
+++ b/public/assets/images/icons/white/vote.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="vote"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="vote"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/wiki.svg b/public/assets/images/icons/white/wiki.svg
index 830a78def327bff3e2a5c989bdcaf64ba755ee4a..a705f7be48e403a9d358d2ecd330adb4b47f19d4 100644
--- a/public/assets/images/icons/white/wiki.svg
+++ b/public/assets/images/icons/white/wiki.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="wiki"><path class="cls-1" d="M49.83,15a15.17,15.17,0,0,1-10.17,7.9,31.41,31.41,0,0,1,3.45,11.38C46.63,32.05,53.82,25.94,49.83,15ZM4.17,15c-4,10.94,3.2,17,6.72,19.28A31.41,31.41,0,0,1,14.34,22.9,15.17,15.17,0,0,1,4.17,15ZM27,16c-7.1,0-12.85,10.31-12.85,23h25.7C39.85,26.29,34.1,16,27,16Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffffff;}</style></defs><g id="wiki"><path class="cls-1" d="M49.83,15a15.17,15.17,0,0,1-10.17,7.9,31.41,31.41,0,0,1,3.45,11.38C46.63,32.05,53.82,25.94,49.83,15ZM4.17,15c-4,10.94,3.2,17,6.72,19.28A31.41,31.41,0,0,1,14.34,22.9,15.17,15.17,0,0,1,4.17,15ZM27,16c-7.1,0-12.85,10.31-12.85,23h25.7C39.85,26.29,34.1,16,27,16Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/white/zoom-in.svg b/public/assets/images/icons/white/zoom-in.svg
index 4e890b157ff5cfe42915bfe83e2e6e55eb67f2a4..5037abcb9aa76684b6b9b2d33844d7b936217fd6 100644
--- a/public/assets/images/icons/white/zoom-in.svg
+++ b/public/assets/images/icons/white/zoom-in.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="zoom-in"><polygon points="30.44 2.99 30.44 6.42 47.57 6.42 47.57 23.55 51 23.55 51 2.99 30.44 2.99"/><polygon points="6.44 30.41 3.02 30.41 3.02 50.97 23.58 50.97 23.58 47.54 6.44 47.54 6.44 30.41"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="zoom-in"><polygon points="30.44 2.99 30.44 6.42 47.57 6.42 47.57 23.55 51 23.55 51 2.99 30.44 2.99"/><polygon points="6.44 30.41 3.02 30.41 3.02 50.97 23.58 50.97 23.58 47.54 6.44 47.54 6.44 30.41"/></g></svg>
diff --git a/public/assets/images/icons/white/zoom-in2.svg b/public/assets/images/icons/white/zoom-in2.svg
index 584de66e858f8740344acf26f230419b621ee40e..a4fe7dcf11bc27be6ef3f9b05be54b4f5bf38dcd 100644
--- a/public/assets/images/icons/white/zoom-in2.svg
+++ b/public/assets/images/icons/white/zoom-in2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="zoom-in2"><path d="M39,15V39H15V15H39m3-3H12V42H42V12Z"/><polygon points="50.98 20.99 47.99 20.99 47.99 6 32.99 6 32.99 3 50.98 3 50.98 20.99"/><polygon points="21 50.98 3.01 50.98 3.01 32.99 6 32.99 6 47.98 21 47.98 21 50.98"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="zoom-in2"><path d="M39,15V39H15V15H39m3-3H12V42H42V12Z"/><polygon points="50.98 20.99 47.99 20.99 47.99 6 32.99 6 32.99 3 50.98 3 50.98 20.99"/><polygon points="21 50.98 3.01 50.98 3.01 32.99 6 32.99 6 47.98 21 47.98 21 50.98"/></g></svg>
diff --git a/public/assets/images/icons/white/zoom-out.svg b/public/assets/images/icons/white/zoom-out.svg
index e4c3f5daa834cee3502bb7b44d0cc684bb150e1a..54b2237f2c4041278b4fae6a79b7874f9231734c 100644
--- a/public/assets/images/icons/white/zoom-out.svg
+++ b/public/assets/images/icons/white/zoom-out.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="zoom-out"><polygon points="51 23.55 30.44 23.55 30.44 2.99 33.86 2.99 33.86 20.12 51 20.12 51 23.55"/><polygon points="23.58 50.97 20.15 50.97 20.15 33.83 3.02 33.83 3.02 30.41 23.58 30.41 23.58 50.97"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="zoom-out"><polygon points="51 23.55 30.44 23.55 30.44 2.99 33.86 2.99 33.86 20.12 51 20.12 51 23.55"/><polygon points="23.58 50.97 20.15 50.97 20.15 33.83 3.02 33.83 3.02 30.41 23.58 30.41 23.58 50.97"/></g></svg>
diff --git a/public/assets/images/icons/white/zoom-out2.svg b/public/assets/images/icons/white/zoom-out2.svg
index 6d04a2a06afe2d547900db57a2b880db5ea67d93..9d4d7bc3a0ce3ae911e04fdb13d6201e9128cdb3 100644
--- a/public/assets/images/icons/white/zoom-out2.svg
+++ b/public/assets/images/icons/white/zoom-out2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="zoom-out2"><path d="M51,18H42V12H36V3H33v9H12V33H3v3h9v6h6v9h3V42H42V21h9ZM39,15v3H36V15ZM15,39V36h3v3Zm24,0H21V33H15V15H33v6h6Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffffff"><g id="zoom-out2"><path d="M51,18H42V12H36V3H33v9H12V33H3v3h9v6h6v9h3V42H42V21h9ZM39,15v3H36V15ZM15,39V36h3v3Zm24,0H21V33H15V15H33v6h6Z"/></g></svg>
diff --git a/public/assets/images/icons/yellow/accept.svg b/public/assets/images/icons/yellow/accept.svg
index 383017b65c9b61e001fd958a0ba4da389e3d234e..5fd20d029affe9af9ac9200c602c9e4b960e8817 100644
--- a/public/assets/images/icons/yellow/accept.svg
+++ b/public/assets/images/icons/yellow/accept.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/activity.svg b/public/assets/images/icons/yellow/activity.svg
index c7dc8fe16822ab38ab9196971c98d7719720dfd9..74a861f0a31fd6895a8c9b49669f80646fe76b2f 100644
--- a/public/assets/images/icons/yellow/activity.svg
+++ b/public/assets/images/icons/yellow/activity.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
diff --git a/public/assets/images/icons/yellow/add-circle-full.svg b/public/assets/images/icons/yellow/add-circle-full.svg
index f0232cf702e2d9c1294480d386ca7c5df82d4f57..c690ea5dde11d47a2796ef70b3bc23c6e7954d0a 100644
--- a/public/assets/images/icons/yellow/add-circle-full.svg
+++ b/public/assets/images/icons/yellow/add-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/add-circle.svg b/public/assets/images/icons/yellow/add-circle.svg
index f0232cf702e2d9c1294480d386ca7c5df82d4f57..c690ea5dde11d47a2796ef70b3bc23c6e7954d0a 100644
--- a/public/assets/images/icons/yellow/add-circle.svg
+++ b/public/assets/images/icons/yellow/add-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/add.svg b/public/assets/images/icons/yellow/add.svg
index a982ac30f63a67c9551f82df079df84073a46559..81e02bb0351369698e9ffaee3ef3d5e629ef0270 100644
--- a/public/assets/images/icons/yellow/add.svg
+++ b/public/assets/images/icons/yellow/add.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/admin.svg b/public/assets/images/icons/yellow/admin.svg
index 46c16f2c8e441c813776302d91dc2412e78e7c73..83a33096a581a9d0970a0d8567b95000bc487153 100644
--- a/public/assets/images/icons/yellow/admin.svg
+++ b/public/assets/images/icons/yellow/admin.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/aladdin.svg b/public/assets/images/icons/yellow/aladdin.svg
index cd35fb5529a7fe3ca21b25e89676fab7f92e0e19..9a36bcb6ff4fffbec5fcda1714db853141584cb2 100644
--- a/public/assets/images/icons/yellow/aladdin.svg
+++ b/public/assets/images/icons/yellow/aladdin.svg
@@ -1 +1 @@
-<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
+<svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
diff --git a/public/assets/images/icons/yellow/archive.svg b/public/assets/images/icons/yellow/archive.svg
index 3db3e3e2092a427793c09d32f15bb579541cb938..97578009bea71c6549aaf837dc1c2d3d74269a5d 100644
--- a/public/assets/images/icons/yellow/archive.svg
+++ b/public/assets/images/icons/yellow/archive.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
diff --git a/public/assets/images/icons/yellow/arr_1down.svg b/public/assets/images/icons/yellow/arr_1down.svg
index bac2a196877b0c56543c51ecdd52ed21f7ce2434..30744804381a697436c361dc0d76908671239d2e 100644
--- a/public/assets/images/icons/yellow/arr_1down.svg
+++ b/public/assets/images/icons/yellow/arr_1down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/arr_1left.svg b/public/assets/images/icons/yellow/arr_1left.svg
index f1cf1fc7baccc4376025eb0bbe1a8692ee10fe70..57162da1f9aa576f5025b4df43b89bb33424c209 100644
--- a/public/assets/images/icons/yellow/arr_1left.svg
+++ b/public/assets/images/icons/yellow/arr_1left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/arr_1right.svg b/public/assets/images/icons/yellow/arr_1right.svg
index 34f029ea5d6d80841b4268ff661e2529b5bb3451..caddf7beeb8337eae3566b0ce467f0b1d449bbc7 100644
--- a/public/assets/images/icons/yellow/arr_1right.svg
+++ b/public/assets/images/icons/yellow/arr_1right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/arr_1sort.svg b/public/assets/images/icons/yellow/arr_1sort.svg
index eea5e5eb13cc240ebdf36c3d01e541229e518760..dfd4d22eec258a8ba312890d3014752fdcde0156 100755
--- a/public/assets/images/icons/yellow/arr_1sort.svg
+++ b/public/assets/images/icons/yellow/arr_1sort.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/arr_1up.svg b/public/assets/images/icons/yellow/arr_1up.svg
index 9ff967e4629f2002a15835c8537ca6a54d54c9ea..0cbaa633a96be3506e233e4302dbf239d1430b60 100644
--- a/public/assets/images/icons/yellow/arr_1up.svg
+++ b/public/assets/images/icons/yellow/arr_1up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/arr_2down.svg b/public/assets/images/icons/yellow/arr_2down.svg
index e1182ad3c2a0a4ce5bbd36f3dd1ca1e025a96d89..49248c0e6f2909d49755cd372372cfbf510777c7 100644
--- a/public/assets/images/icons/yellow/arr_2down.svg
+++ b/public/assets/images/icons/yellow/arr_2down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/arr_2left.svg b/public/assets/images/icons/yellow/arr_2left.svg
index 287587f4ffb783680076d67f54a47e415369e42b..2dba1b267072c478b040d46033de9f6514ff490f 100644
--- a/public/assets/images/icons/yellow/arr_2left.svg
+++ b/public/assets/images/icons/yellow/arr_2left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/arr_2right.svg b/public/assets/images/icons/yellow/arr_2right.svg
index b2cdb3ff68d600dce7d0e7960cd07385fd5bfa62..857033b0180dc505158056be43e490664a6fe715 100644
--- a/public/assets/images/icons/yellow/arr_2right.svg
+++ b/public/assets/images/icons/yellow/arr_2right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/arr_2up.svg b/public/assets/images/icons/yellow/arr_2up.svg
index 2d061efae08f4d290737abf4df95cbbb5ce5d265..341dcbf9f7e09dc816fe612efd702906f9013400 100644
--- a/public/assets/images/icons/yellow/arr_2up.svg
+++ b/public/assets/images/icons/yellow/arr_2up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/arr_eol-down.svg b/public/assets/images/icons/yellow/arr_eol-down.svg
index 8d1784728346696273c25b0d25fceb342e6da623..2bc9b21ad18f426def1d041f4712e135cbf00e88 100644
--- a/public/assets/images/icons/yellow/arr_eol-down.svg
+++ b/public/assets/images/icons/yellow/arr_eol-down.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="47.98 10.98 37.36 10.98 26.98 21.36 16.61 10.98 5.99 10.98 26.98 31.98 47.98 10.98"/><rect class="a" x="24.51" y="19.48" width="5" height="42" transform="translate(67.5 13.47) rotate(90)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="47.98 10.98 37.36 10.98 26.98 21.36 16.61 10.98 5.99 10.98 26.98 31.98 47.98 10.98"/><rect class="a" x="24.51" y="19.48" width="5" height="42" transform="translate(67.5 13.47) rotate(90)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/arr_eol-left.svg b/public/assets/images/icons/yellow/arr_eol-left.svg
index 2116cc0dbe6c588564b1e090fc162f02e2a3434a..d09d4688cc6de3f80a805b54024eebfd8fccf539 100644
--- a/public/assets/images/icons/yellow/arr_eol-left.svg
+++ b/public/assets/images/icons/yellow/arr_eol-left.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="43 6 43 16.63 32.63 27 43 37.37 43 48 22 27 43 6"/><rect class="a" x="11" y="5.97" width="5" height="42" transform="translate(27 53.94) rotate(-180)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="43 6 43 16.63 32.63 27 43 37.37 43 48 22 27 43 6"/><rect class="a" x="11" y="5.97" width="5" height="42" transform="translate(27 53.94) rotate(-180)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/arr_eol-right.svg b/public/assets/images/icons/yellow/arr_eol-right.svg
index 6c872a85d0f422fc7578e90ef40d2922d6b0c607..869cf15565403c02d8c29c282deb8f2f9bc9f543 100644
--- a/public/assets/images/icons/yellow/arr_eol-right.svg
+++ b/public/assets/images/icons/yellow/arr_eol-right.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="11 6 11 16.63 21.37 27 11 37.37 11 48 32 27 11 6"/><rect class="a" x="38" y="5.97" width="5" height="42"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="11 6 11 16.63 21.37 27 11 37.37 11 48 32 27 11 6"/><rect class="a" x="38" y="5.97" width="5" height="42"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/arr_eol-up.svg b/public/assets/images/icons/yellow/arr_eol-up.svg
index 1e63f492898b1602f98e66436373481fb481a381..a4cd890e1c8f25d042fd009c89feceffd96cb284 100644
--- a/public/assets/images/icons/yellow/arr_eol-up.svg
+++ b/public/assets/images/icons/yellow/arr_eol-up.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="6.01 42.98 16.64 42.98 27.02 32.61 37.39 42.98 48.02 42.98 27.02 21.98 6.01 42.98"/><rect class="a" x="24.48" y="-7.51" width="5" height="42" transform="translate(13.5 40.47) rotate(-90)"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="6.01 42.98 16.64 42.98 27.02 32.61 37.39 42.98 48.02 42.98 27.02 21.98 6.01 42.98"/><rect class="a" x="24.48" y="-7.51" width="5" height="42" transform="translate(13.5 40.47) rotate(-90)"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/audio.svg b/public/assets/images/icons/yellow/audio.svg
index 814f38997d144a36f1b31e9a5bec729820e50f29..e7683f5f3ade86dfc67b993d4a020bcedc9ba873 100644
--- a/public/assets/images/icons/yellow/audio.svg
+++ b/public/assets/images/icons/yellow/audio.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/audio2.svg b/public/assets/images/icons/yellow/audio2.svg
index 814f38997d144a36f1b31e9a5bec729820e50f29..e7683f5f3ade86dfc67b993d4a020bcedc9ba873 100644
--- a/public/assets/images/icons/yellow/audio2.svg
+++ b/public/assets/images/icons/yellow/audio2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="audio2"><polygon class="cls-1" points="11.35 20.82 5 20.82 5 33.42 11.35 33.42 20.87 39.71 24.04 39.71 24.04 14.53 20.87 14.53 11.35 20.82"/><path class="cls-1" d="M39.84,5,37.59,7.23a27.83,27.83,0,0,1,0,39.54L39.83,49A31,31,0,0,0,39.84,5Z"/><path class="cls-1" d="M35.43,9.36l-2.24,2.23a21.7,21.7,0,0,1,0,30.82h0l2.25,2.22A24.84,24.84,0,0,0,35.43,9.36Z"/><path class="cls-1" d="M31,13.77,28.74,16a15.51,15.51,0,0,1,0,22L31,40.23A18.63,18.63,0,0,0,31,13.77Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/audio3.svg b/public/assets/images/icons/yellow/audio3.svg
index a7780bec16a2572669e5acc453daf54e3eb41f14..49359451b5d2e8f964004daf0be043f6d029a792 100644
--- a/public/assets/images/icons/yellow/audio3.svg
+++ b/public/assets/images/icons/yellow/audio3.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="audio3"><path class="cls-1" d="M40.75,10H3.17V40.72a3.42,3.42,0,0,0,3.41,3.42h41A3.42,3.42,0,0,0,51,40.72V10Zm6.4,30.31H7V13.82h6.4v6.4H40.75v-6.4h6.4Z"/><path class="cls-1" d="M35.62,23.73a5.08,5.08,0,0,0-4.84,6.74H23.35a5.11,5.11,0,1,0-5.67,3.33v.09h17a5.64,5.64,0,0,0,.93.09,5.13,5.13,0,1,0,0-10.25Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="audio3"><path class="cls-1" d="M40.75,10H3.17V40.72a3.42,3.42,0,0,0,3.41,3.42h41A3.42,3.42,0,0,0,51,40.72V10Zm6.4,30.31H7V13.82h6.4v6.4H40.75v-6.4h6.4Z"/><path class="cls-1" d="M35.62,23.73a5.08,5.08,0,0,0-4.84,6.74H23.35a5.11,5.11,0,1,0-5.67,3.33v.09h17a5.64,5.64,0,0,0,.93.09,5.13,5.13,0,1,0,0-10.25Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/block-accordion.svg b/public/assets/images/icons/yellow/block-accordion.svg
index 3deaa4ce8a13307ee977d4eef83e761714e62ac3..76dc6cdf6339c0b319ec513f49f07b15fd451fcb 100644
--- a/public/assets/images/icons/yellow/block-accordion.svg
+++ b/public/assets/images/icons/yellow/block-accordion.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-accordion"><path class="cls-1" d="M18,7.5v39H48V7.5Zm27,36H21v-9H45Zm0-12H21v-9H45Zm-24-12v-9H45v9Z"/><polygon class="cls-1" points="12 10.5 9 10.5 9 13.5 6 13.5 6 16.5 9 16.5 9 19.5 12 19.5 12 16.5 15 16.5 15 13.5 12 13.5 12 10.5"/><polygon class="cls-1" points="12 22.49 9 22.49 9 25.49 6 25.49 6 28.49 9 28.49 9 31.49 12 31.49 12 28.49 15 28.49 15 25.49 12 25.49 12 22.49"/><polygon class="cls-1" points="12 34.49 9 34.49 9 37.49 6 37.49 6 40.48 9 40.48 9 43.48 12 43.48 12 40.48 15 40.48 15 37.49 12 37.49 12 34.49"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-accordion"><path class="cls-1" d="M18,7.5v39H48V7.5Zm27,36H21v-9H45Zm0-12H21v-9H45Zm-24-12v-9H45v9Z"/><polygon class="cls-1" points="12 10.5 9 10.5 9 13.5 6 13.5 6 16.5 9 16.5 9 19.5 12 19.5 12 16.5 15 16.5 15 13.5 12 13.5 12 10.5"/><polygon class="cls-1" points="12 22.49 9 22.49 9 25.49 6 25.49 6 28.49 9 28.49 9 31.49 12 31.49 12 28.49 15 28.49 15 25.49 12 25.49 12 22.49"/><polygon class="cls-1" points="12 34.49 9 34.49 9 37.49 6 37.49 6 40.48 9 40.48 9 43.48 12 43.48 12 40.48 15 40.48 15 37.49 12 37.49 12 34.49"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/block-canvas.svg b/public/assets/images/icons/yellow/block-canvas.svg
index b6e162dd4e807cb503772149a1aa109c2425a2dd..66890f346c877edec1182df8a60e87820a03e5d7 100644
--- a/public/assets/images/icons/yellow/block-canvas.svg
+++ b/public/assets/images/icons/yellow/block-canvas.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-canvas"><path class="cls-1" d="M48,8.91H6v30h31c2.48,4.54,5,8.6,5.87,8.24s0-4-1.12-8.24H48Zm-3,27H41c-1.64-5.56-3.55-11.1-3.55-11.1a3.38,3.38,0,0,0-6.28,2.52s2,4.1,4.32,8.58H9v-24H45Z"/><path class="cls-1" d="M28.29,16.91a3.29,3.29,0,0,1,.48,2.71s.05.05.07.08a2.31,2.31,0,0,0,.05.74,2.49,2.49,0,1,0,4.79-1.34A7.29,7.29,0,0,0,31,15.43c-1.84-1.26-4.83-1-4.86-.28S27.28,15.76,28.29,16.91Z"/><path class="cls-1" d="M16.33,24.14c.83-.06,1.42-1.34,1.31-2.86s-.86-2.72-1.69-2.66S14.53,20,14.64,21.48,15.5,24.2,16.33,24.14Z"/><path class="cls-1" d="M21.49,20.86c.66-.31.68-1.65.05-3S19.85,15.7,19.19,16s-.68,1.66,0,3S20.84,21.17,21.49,20.86Z"/><path class="cls-1" d="M15.47,31.66a9.41,9.41,0,0,0,6.31.26,8.64,8.64,0,0,0,4.94-4,8.5,8.5,0,0,0,.91-5.9c-1.56,3.58-3.73,6.22-6.76,7.08a10.41,10.41,0,0,1-4.77.34A16.91,16.91,0,0,1,11,27.7,8.46,8.46,0,0,0,15.47,31.66Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-canvas"><path class="cls-1" d="M48,8.91H6v30h31c2.48,4.54,5,8.6,5.87,8.24s0-4-1.12-8.24H48Zm-3,27H41c-1.64-5.56-3.55-11.1-3.55-11.1a3.38,3.38,0,0,0-6.28,2.52s2,4.1,4.32,8.58H9v-24H45Z"/><path class="cls-1" d="M28.29,16.91a3.29,3.29,0,0,1,.48,2.71s.05.05.07.08a2.31,2.31,0,0,0,.05.74,2.49,2.49,0,1,0,4.79-1.34A7.29,7.29,0,0,0,31,15.43c-1.84-1.26-4.83-1-4.86-.28S27.28,15.76,28.29,16.91Z"/><path class="cls-1" d="M16.33,24.14c.83-.06,1.42-1.34,1.31-2.86s-.86-2.72-1.69-2.66S14.53,20,14.64,21.48,15.5,24.2,16.33,24.14Z"/><path class="cls-1" d="M21.49,20.86c.66-.31.68-1.65.05-3S19.85,15.7,19.19,16s-.68,1.66,0,3S20.84,21.17,21.49,20.86Z"/><path class="cls-1" d="M15.47,31.66a9.41,9.41,0,0,0,6.31.26,8.64,8.64,0,0,0,4.94-4,8.5,8.5,0,0,0,.91-5.9c-1.56,3.58-3.73,6.22-6.76,7.08a10.41,10.41,0,0,1-4.77.34A16.91,16.91,0,0,1,11,27.7,8.46,8.46,0,0,0,15.47,31.66Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/block-comparison.svg b/public/assets/images/icons/yellow/block-comparison.svg
index a242faaaf61f30e69f12475cc0ade48a2b049ac3..e61e9bc965e8c4d9556ad2800344c819a85872f5 100644
--- a/public/assets/images/icons/yellow/block-comparison.svg
+++ b/public/assets/images/icons/yellow/block-comparison.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-comparison"><polygon class="cls-1" points="30.8 31 32.88 33.08 38.96 26.99 32.88 20.9 30.8 22.98 34.8 26.99 30.8 31"/><polygon class="cls-1" points="23.2 22.98 21.12 20.9 15.03 27 21.12 33.08 23.2 31 19.2 26.99 23.2 22.98"/><path class="cls-1" d="M48,12H28.5V9h-3v3H6V42H25.5v3h3V42H48ZM9,39V15H25.5V39Zm36,0H28.5V15H45Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-comparison"><polygon class="cls-1" points="30.8 31 32.88 33.08 38.96 26.99 32.88 20.9 30.8 22.98 34.8 26.99 30.8 31"/><polygon class="cls-1" points="23.2 22.98 21.12 20.9 15.03 27 21.12 33.08 23.2 31 19.2 26.99 23.2 22.98"/><path class="cls-1" d="M48,12H28.5V9h-3v3H6V42H25.5v3h3V42H48ZM9,39V15H25.5V39Zm36,0H28.5V15H45Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/block-eyecatcher.svg b/public/assets/images/icons/yellow/block-eyecatcher.svg
index 52f801612d60c01cc970a5ea0a468eab588e6617..c01bf08ae0950c16cc059cd7a025e452473a450e 100644
--- a/public/assets/images/icons/yellow/block-eyecatcher.svg
+++ b/public/assets/images/icons/yellow/block-eyecatcher.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-eyecatcher"><g id="visibility-visible"><path class="cls-1" d="M27,17A20.39,20.39,0,0,1,44.57,27,20.39,20.39,0,0,1,9.43,27,20.35,20.35,0,0,1,27,17m0-3A23.36,23.36,0,0,0,6.31,26.42L6,27l.3.58a23.4,23.4,0,0,0,41.37,0L48,27l-.31-.57A23.36,23.36,0,0,0,27,14Z"/><path class="cls-1" d="M27,19.08a7.9,7.9,0,0,0-2.19.35,3.6,3.6,0,0,1,1.58,2.93A3.67,3.67,0,0,1,22.72,26a3.6,3.6,0,0,1-3.1-1.83A7.9,7.9,0,1,0,27,19.08Z"/></g><rect class="cls-1" x="6" y="5.91" width="9" height="3"/><rect class="cls-1" x="6" y="5.91" width="3" height="9"/><rect class="cls-1" x="38.99" y="5.91" width="9" height="3"/><rect class="cls-1" x="44.99" y="8.91" width="3" height="6"/><rect class="cls-1" x="44.99" y="38.89" width="3" height="9"/><rect class="cls-1" x="38.99" y="44.89" width="9" height="3"/><rect class="cls-1" x="6" y="38.89" width="3" height="9"/><rect class="cls-1" x="6" y="44.89" width="9" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-eyecatcher"><g id="visibility-visible"><path class="cls-1" d="M27,17A20.39,20.39,0,0,1,44.57,27,20.39,20.39,0,0,1,9.43,27,20.35,20.35,0,0,1,27,17m0-3A23.36,23.36,0,0,0,6.31,26.42L6,27l.3.58a23.4,23.4,0,0,0,41.37,0L48,27l-.31-.57A23.36,23.36,0,0,0,27,14Z"/><path class="cls-1" d="M27,19.08a7.9,7.9,0,0,0-2.19.35,3.6,3.6,0,0,1,1.58,2.93A3.67,3.67,0,0,1,22.72,26a3.6,3.6,0,0,1-3.1-1.83A7.9,7.9,0,1,0,27,19.08Z"/></g><rect class="cls-1" x="6" y="5.91" width="9" height="3"/><rect class="cls-1" x="6" y="5.91" width="3" height="9"/><rect class="cls-1" x="38.99" y="5.91" width="9" height="3"/><rect class="cls-1" x="44.99" y="8.91" width="3" height="6"/><rect class="cls-1" x="44.99" y="38.89" width="3" height="9"/><rect class="cls-1" x="38.99" y="44.89" width="9" height="3"/><rect class="cls-1" x="6" y="38.89" width="3" height="9"/><rect class="cls-1" x="6" y="44.89" width="9" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/block-eyecatcher2.svg b/public/assets/images/icons/yellow/block-eyecatcher2.svg
index 522041993e243022d3e8df118172c883b5aa26f8..496b25a1fadcd204f503f954c874ad882896fb08 100644
--- a/public/assets/images/icons/yellow/block-eyecatcher2.svg
+++ b/public/assets/images/icons/yellow/block-eyecatcher2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/block-gallery.svg b/public/assets/images/icons/yellow/block-gallery.svg
index 6774a5988f846f8c598f8ff2c13e08685bbf5f72..940df1e2af20bf988e96542e7f7fa7c2c501d286 100644
--- a/public/assets/images/icons/yellow/block-gallery.svg
+++ b/public/assets/images/icons/yellow/block-gallery.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-gallery"><path class="cls-1" d="M36,11.91v12H48v-12Zm9,9H39v-6h6Z"/><path class="cls-1" d="M36,38.89H48v-12H36Zm3-9h6v6H39Z"/><path class="cls-1" d="M33,11.91H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M33,26.9H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M6,23.9H18v-12H6Zm3-9h6v6H9Z"/><path class="cls-1" d="M6,38.89H18v-12H6Zm3-9h6v6H9Z"/><rect class="cls-1" x="19.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="25.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="31.5" y="41.89" width="3" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-gallery"><path class="cls-1" d="M36,11.91v12H48v-12Zm9,9H39v-6h6Z"/><path class="cls-1" d="M36,38.89H48v-12H36Zm3-9h6v6H39Z"/><path class="cls-1" d="M33,11.91H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M33,26.9H21v12H33Zm-3,9H24v-6h6Z"/><path class="cls-1" d="M6,23.9H18v-12H6Zm3-9h6v6H9Z"/><path class="cls-1" d="M6,38.89H18v-12H6Zm3-9h6v6H9Z"/><rect class="cls-1" x="19.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="25.5" y="41.89" width="3" height="3"/><rect class="cls-1" x="31.5" y="41.89" width="3" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/block-gallery2.svg b/public/assets/images/icons/yellow/block-gallery2.svg
index bce72e31cabee12fbe083b1161fcc9851f00eec4..2daaa7733029d2b3675712bb35e12cb585e2128d 100644
--- a/public/assets/images/icons/yellow/block-gallery2.svg
+++ b/public/assets/images/icons/yellow/block-gallery2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-gallery2"><polygon class="cls-1" points="44.87 20.9 42.79 22.98 46.8 26.99 42.79 31 44.87 33.08 50.96 26.99 44.87 20.9"/><polygon class="cls-1" points="9.13 20.9 3.04 27 9.13 33.08 11.21 31 7.2 26.99 11.21 22.98 9.13 20.9"/><path class="cls-1" d="M15,38.89H39v-24H15Zm3-21H36v18H18Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-gallery2"><polygon class="cls-1" points="44.87 20.9 42.79 22.98 46.8 26.99 42.79 31 44.87 33.08 50.96 26.99 44.87 20.9"/><polygon class="cls-1" points="9.13 20.9 3.04 27 9.13 33.08 11.21 31 7.2 26.99 11.21 22.98 9.13 20.9"/><path class="cls-1" d="M15,38.89H39v-24H15Zm3-21H36v18H18Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/block-imagemap.svg b/public/assets/images/icons/yellow/block-imagemap.svg
index 5e0b92ed3e94ea002775f75451eee710a528fcc7..fd1d1965e45510b53fdd32e86025a130d6e8e368 100644
--- a/public/assets/images/icons/yellow/block-imagemap.svg
+++ b/public/assets/images/icons/yellow/block-imagemap.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-imagemap"><rect class="cls-1" x="26.99" y="17.9" width="6" height="3"/><rect class="cls-1" x="18" y="17.9" width="6" height="3"/><rect class="cls-1" x="35.99" y="17.9" width="6" height="3"/><path class="cls-1" d="M51,17.9H48v-6H36v-3H33v3H6v6H3v3H6v21H33v3h3v-3H48v-21h3ZM45,35.05l-8.71-6.33-1.5,1.18H33v1.4l-3.33,2.61L19.9,25,9,35.09V20.9h6v-3H9v-3H33v3h3v-3h9v3h0v3h0Z"/><rect class="cls-1" x="32.99" y="20.9" width="3" height="6"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-imagemap"><rect class="cls-1" x="26.99" y="17.9" width="6" height="3"/><rect class="cls-1" x="18" y="17.9" width="6" height="3"/><rect class="cls-1" x="35.99" y="17.9" width="6" height="3"/><path class="cls-1" d="M51,17.9H48v-6H36v-3H33v3H6v6H3v3H6v21H33v3h3v-3H48v-21h3ZM45,35.05l-8.71-6.33-1.5,1.18H33v1.4l-3.33,2.61L19.9,25,9,35.09V20.9h6v-3H9v-3H33v3h3v-3h9v3h0v3h0Z"/><rect class="cls-1" x="32.99" y="20.9" width="3" height="6"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/block-imagemap2.svg b/public/assets/images/icons/yellow/block-imagemap2.svg
index 522041993e243022d3e8df118172c883b5aa26f8..496b25a1fadcd204f503f954c874ad882896fb08 100644
--- a/public/assets/images/icons/yellow/block-imagemap2.svg
+++ b/public/assets/images/icons/yellow/block-imagemap2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-imagemap2"><polygon class="cls-1" points="9 14.9 44.99 14.9 44.99 31 47.99 33.64 47.99 11.91 6 11.91 6 41.89 27 41.89 27 38.89 9 38.89 9 14.9"/><rect class="cls-1" x="18" y="17.9" width="3" height="6"/><rect class="cls-1" x="12" y="23.9" width="6" height="3"/><rect class="cls-1" x="21" y="23.9" width="6" height="3"/><rect class="cls-1" x="18" y="26.9" width="3" height="6"/><polygon class="cls-1" points="29.99 20.9 29.96 48.98 39.26 41.72 50.87 39.67 29.99 20.9"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/block-tabs.svg b/public/assets/images/icons/yellow/block-tabs.svg
index 6527e169187a2ef40f4bd4ffb0db0b489b71cb36..5d7325f8adcac21c999381ab608ba2d54070380c 100644
--- a/public/assets/images/icons/yellow/block-tabs.svg
+++ b/public/assets/images/icons/yellow/block-tabs.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-tabs"><path class="cls-1" d="M6,8.91v36H48v-36Zm18,3h9v6H24Zm21,30H9v-30H21v9H45Zm0-24H36v-6h9Z"/><path d="M48,8.91H6v36H48v-36Zm-12,9v-6h9v6Zm-12,0v-6h9v6Zm-15,24v-30H21v9H45v21Z"/><rect class="cls-1" x="12" y="26.9" width="29.99" height="3"/><polygon points="41.99 26.9 12 26.9 12 29.9 41.99 29.9 41.99 26.9 41.99 26.9"/><rect class="cls-1" x="12" y="32.9" width="29.99" height="3"/><polygon points="41.99 32.9 12 32.9 12 35.9 41.99 35.9 41.99 32.9 41.99 32.9"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-tabs"><path class="cls-1" d="M6,8.91v36H48v-36Zm18,3h9v6H24Zm21,30H9v-30H21v9H45Zm0-24H36v-6h9Z"/><path d="M48,8.91H6v36H48v-36Zm-12,9v-6h9v6Zm-12,0v-6h9v6Zm-15,24v-30H21v9H45v21Z"/><rect class="cls-1" x="12" y="26.9" width="29.99" height="3"/><polygon points="41.99 26.9 12 26.9 12 29.9 41.99 29.9 41.99 26.9 41.99 26.9"/><rect class="cls-1" x="12" y="32.9" width="29.99" height="3"/><polygon points="41.99 32.9 12 32.9 12 35.9 41.99 35.9 41.99 32.9 41.99 32.9"/></g></svg>
diff --git a/public/assets/images/icons/yellow/block-typewriter.svg b/public/assets/images/icons/yellow/block-typewriter.svg
index 0963dd18ff3162abbed8a99783938d2fcc93ab8b..a6a025ab85df9020747f67fbc0269863dd829bcb 100644
--- a/public/assets/images/icons/yellow/block-typewriter.svg
+++ b/public/assets/images/icons/yellow/block-typewriter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-typewriter"><polygon class="cls-1" points="42.06 32.9 45.06 32.9 45.06 29.9 42.06 29.9 42.06 12 39.06 12 39.06 29.9 36.06 29.9 36.06 32.9 39.06 32.9 39.06 41.89 33.07 41.89 33.07 44.89 39.06 44.89 39.06 41.98 42.06 41.98 42.06 44.89 48.06 44.89 48.06 41.89 42.06 41.89 42.06 32.9"/><rect class="cls-1" x="33.07" y="8.91" width="6" height="3"/><rect class="cls-1" x="42.06" y="8.91" width="6" height="3"/><path class="cls-1" d="M20.8,14.91l-1-3H12v3h3.21L7,38.89H3v3H8.63a1.09,1.09,0,0,0,.76-.29,1.47,1.47,0,0,0,.41-.67l2.41-7.24H23.78l2.41,7.24a1.73,1.73,0,0,0,.43.69,1.07,1.07,0,0,0,.76.27H33v-3H29ZM13.18,30.76l4.05-12.18A25.75,25.75,0,0,0,18,15.76c.12.54.25,1,.38,1.54s.26.9.38,1.26l4,12.2Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="block-typewriter"><polygon class="cls-1" points="42.06 32.9 45.06 32.9 45.06 29.9 42.06 29.9 42.06 12 39.06 12 39.06 29.9 36.06 29.9 36.06 32.9 39.06 32.9 39.06 41.89 33.07 41.89 33.07 44.89 39.06 44.89 39.06 41.98 42.06 41.98 42.06 44.89 48.06 44.89 48.06 41.89 42.06 41.89 42.06 32.9"/><rect class="cls-1" x="33.07" y="8.91" width="6" height="3"/><rect class="cls-1" x="42.06" y="8.91" width="6" height="3"/><path class="cls-1" d="M20.8,14.91l-1-3H12v3h3.21L7,38.89H3v3H8.63a1.09,1.09,0,0,0,.76-.29,1.47,1.47,0,0,0,.41-.67l2.41-7.24H23.78l2.41,7.24a1.73,1.73,0,0,0,.43.69,1.07,1.07,0,0,0,.76.27H33v-3H29ZM13.18,30.76l4.05-12.18A25.75,25.75,0,0,0,18,15.76c.12.54.25,1,.38,1.54s.26.9.38,1.26l4,12.2Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/blubber-old.svg b/public/assets/images/icons/yellow/blubber-old.svg
index 37e75916e04ec7065dbe8be2a8538134deff572e..63951ece990086598db3a426ee29eebcd5504a56 100644
--- a/public/assets/images/icons/yellow/blubber-old.svg
+++ b/public/assets/images/icons/yellow/blubber-old.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M18,15A15,15,0,1,0,33,30,15,15,0,0,0,18,15Z"/><path class="a" d="M50.85,13.5a8.5,8.5,0,1,0-8.5,8.5A8.5,8.5,0,0,0,50.85,13.5Z"/><path class="a" d="M45,39a5,5,0,1,0,5,5A5,5,0,0,0,45,39Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M18,15A15,15,0,1,0,33,30,15,15,0,0,0,18,15Z"/><path class="a" d="M50.85,13.5a8.5,8.5,0,1,0-8.5,8.5A8.5,8.5,0,0,0,50.85,13.5Z"/><path class="a" d="M45,39a5,5,0,1,0,5,5A5,5,0,0,0,45,39Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/blubber.svg b/public/assets/images/icons/yellow/blubber.svg
index 01027fbc0ecd6e20e3aec1a98d0bb6b28a04bb61..ad483f9bbe7bcddb3d46b89a6d36782e42d5c71c 100644
--- a/public/assets/images/icons/yellow/blubber.svg
+++ b/public/assets/images/icons/yellow/blubber.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M41,31A10,10,0,1,0,51,41,10,10,0,0,0,41,31Zm0,17a7,7,0,1,1,7-7A7,7,0,0,1,41,48Z"/><path class="a" d="M33,26.83A12,12,0,1,0,23.2,13,14.72,14.72,0,0,0,18,12,15,15,0,1,0,33,27C33,26.94,33,26.88,33,26.83ZM18,39A12,12,0,1,1,30,27,12,12,0,0,1,18,39Zm8-24.65A9,9,0,1,1,35,24a8.63,8.63,0,0,1-2.39-.34A15,15,0,0,0,26,14.35Z"/><path class="a" d="M22.21,17.06A10.71,10.71,0,0,0,18,16.2a10.87,10.87,0,0,0-9.78,6.25,1.29,1.29,0,0,0,.62,1.72,1.23,1.23,0,0,0,.55.13,1.3,1.3,0,0,0,1.18-.75A8.22,8.22,0,0,1,21.2,19.44a1.29,1.29,0,1,0,1-2.38Z"/><path class="a" d="M8.5,25.7A1.3,1.3,0,0,0,7.2,27a10.48,10.48,0,0,0,.14,1.68,1.3,1.3,0,0,0,1.27,1.1l.21,0A1.3,1.3,0,0,0,9.9,28.28,7.8,7.8,0,0,1,9.8,27,1.3,1.3,0,0,0,8.5,25.7Z"/><path class="a" d="M38.66,9.49A1.23,1.23,0,0,0,38,7.89a7.72,7.72,0,0,0-10.64,5.92,1.21,1.21,0,0,0,1,1.39l.19,0a1.21,1.21,0,0,0,1.2-1A5.33,5.33,0,0,1,35,9.72a5.23,5.23,0,0,1,2.06.42A1.23,1.23,0,0,0,38.66,9.49Z"/><path class="a" d="M43.19,35.82A5.62,5.62,0,0,0,35.37,41a6.52,6.52,0,0,0,.07.88,1.13,1.13,0,0,0,1.11.95l.18,0a1.13,1.13,0,0,0,.94-1.29,3,3,0,0,1-.05-.52A3.39,3.39,0,0,1,41,37.62a3.27,3.27,0,0,1,1.31.27,1.12,1.12,0,1,0,.88-2.07Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M41,31A10,10,0,1,0,51,41,10,10,0,0,0,41,31Zm0,17a7,7,0,1,1,7-7A7,7,0,0,1,41,48Z"/><path class="a" d="M33,26.83A12,12,0,1,0,23.2,13,14.72,14.72,0,0,0,18,12,15,15,0,1,0,33,27C33,26.94,33,26.88,33,26.83ZM18,39A12,12,0,1,1,30,27,12,12,0,0,1,18,39Zm8-24.65A9,9,0,1,1,35,24a8.63,8.63,0,0,1-2.39-.34A15,15,0,0,0,26,14.35Z"/><path class="a" d="M22.21,17.06A10.71,10.71,0,0,0,18,16.2a10.87,10.87,0,0,0-9.78,6.25,1.29,1.29,0,0,0,.62,1.72,1.23,1.23,0,0,0,.55.13,1.3,1.3,0,0,0,1.18-.75A8.22,8.22,0,0,1,21.2,19.44a1.29,1.29,0,1,0,1-2.38Z"/><path class="a" d="M8.5,25.7A1.3,1.3,0,0,0,7.2,27a10.48,10.48,0,0,0,.14,1.68,1.3,1.3,0,0,0,1.27,1.1l.21,0A1.3,1.3,0,0,0,9.9,28.28,7.8,7.8,0,0,1,9.8,27,1.3,1.3,0,0,0,8.5,25.7Z"/><path class="a" d="M38.66,9.49A1.23,1.23,0,0,0,38,7.89a7.72,7.72,0,0,0-10.64,5.92,1.21,1.21,0,0,0,1,1.39l.19,0a1.21,1.21,0,0,0,1.2-1A5.33,5.33,0,0,1,35,9.72a5.23,5.23,0,0,1,2.06.42A1.23,1.23,0,0,0,38.66,9.49Z"/><path class="a" d="M43.19,35.82A5.62,5.62,0,0,0,35.37,41a6.52,6.52,0,0,0,.07.88,1.13,1.13,0,0,0,1.11.95l.18,0a1.13,1.13,0,0,0,.94-1.29,3,3,0,0,1-.05-.52A3.39,3.39,0,0,1,41,37.62a3.27,3.27,0,0,1,1.31.27,1.12,1.12,0,1,0,.88-2.07Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/brainstorm.svg b/public/assets/images/icons/yellow/brainstorm.svg
index d5285d5a235dc51fd963dd94ddea536a7c4a64d6..c914de89983ef9f3b55446cae3cb53fddbf2432b 100644
--- a/public/assets/images/icons/yellow/brainstorm.svg
+++ b/public/assets/images/icons/yellow/brainstorm.svg
@@ -1 +1 @@
-<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="Brainstorm"><path d="M28.55,25.76c-11.46-1.2-20.19-7-19.5-12.87s10.55-9.72,22-8.53a39,39,0,0,1,5.18.93,40.5,40.5,0,0,0-9.56-2.17C14.38,1.84,3.82,5.93,3.07,12.27S11.69,24.78,24,26.06a40.05,40.05,0,0,0,9.83-.14A39.25,39.25,0,0,1,28.55,25.76Z"/><path d="M25.65,6.28c11.44,1.38,20.06,7.28,19.26,13.17S34.19,29,22.75,27.63a38.62,38.62,0,0,1-5.16-1,40,40,0,0,0,9.52,2.33C39.38,30.42,50,26.5,50.88,20.18S42.49,7.53,30.22,6.05a40.49,40.49,0,0,0-9.84,0A39.6,39.6,0,0,1,25.65,6.28Z"/><path d="M28.32,38.84c-10-1-17.57-6.05-17-11.19A5.46,5.46,0,0,1,12.59,25c-.65-.25-1.39-.55-2.22-.92S9,23.41,8.46,23.13a6.42,6.42,0,0,0-2.31,4c-.64,5.51,7.5,10.89,18.2,12A35.62,35.62,0,0,0,32.9,39,35.58,35.58,0,0,1,28.32,38.84Z"/><path d="M42.91,29.36c-.8.31-1.7.63-2.47.84a23.13,23.13,0,0,1-2.53.51,4.88,4.88,0,0,1,.67,1.4c1.35,5-5.45,11-15.18,13.27a33.74,33.74,0,0,1-4.52.74,35.45,35.45,0,0,0,8.5-1C37.81,42.65,45.1,36.27,43.66,30.9A5.5,5.5,0,0,0,42.91,29.36Z"/><path d="M14.59,43a5.56,5.56,0,0,1,2.72-4.15,15.4,15.4,0,0,1-1.51-.49l-1-.39c-2.1,1.24-3.47,2.93-3.57,4.87C11,47,16.46,50.58,23.45,50.91A19.82,19.82,0,0,0,29,50.4a19.44,19.44,0,0,1-3,.12C19.51,50.21,14.39,46.83,14.59,43Z"/><path d="M42.61,29.57c-.5,0-1.75.93-2.21.9s-1.87.42-2.33.34A4.56,4.56,0,0,1,38.28,32c-.12,2.62-4.69,4.65-10.41,4.15a18.66,18.66,0,0,1-2.59-.43,11.23,11.23,0,0,0,5,1.51c6.15.52,12.38-1.67,12.69-4.84A26.14,26.14,0,0,0,42.61,29.57Z"/><path d="M29.24,8.71c-8.34-2-16.16.32-17.46,5.17A6,6,0,0,0,12.25,18c0-.11,0-.23,0-.34.81-4.73,8.05-7.55,16.16-6.32s13.77,5.88,13.24,10.51a6.36,6.36,0,0,0,.33-.7C43.28,16.25,37.58,10.7,29.24,8.71Z"/></g></svg>
+<svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="Brainstorm"><path d="M28.55,25.76c-11.46-1.2-20.19-7-19.5-12.87s10.55-9.72,22-8.53a39,39,0,0,1,5.18.93,40.5,40.5,0,0,0-9.56-2.17C14.38,1.84,3.82,5.93,3.07,12.27S11.69,24.78,24,26.06a40.05,40.05,0,0,0,9.83-.14A39.25,39.25,0,0,1,28.55,25.76Z"/><path d="M25.65,6.28c11.44,1.38,20.06,7.28,19.26,13.17S34.19,29,22.75,27.63a38.62,38.62,0,0,1-5.16-1,40,40,0,0,0,9.52,2.33C39.38,30.42,50,26.5,50.88,20.18S42.49,7.53,30.22,6.05a40.49,40.49,0,0,0-9.84,0A39.6,39.6,0,0,1,25.65,6.28Z"/><path d="M28.32,38.84c-10-1-17.57-6.05-17-11.19A5.46,5.46,0,0,1,12.59,25c-.65-.25-1.39-.55-2.22-.92S9,23.41,8.46,23.13a6.42,6.42,0,0,0-2.31,4c-.64,5.51,7.5,10.89,18.2,12A35.62,35.62,0,0,0,32.9,39,35.58,35.58,0,0,1,28.32,38.84Z"/><path d="M42.91,29.36c-.8.31-1.7.63-2.47.84a23.13,23.13,0,0,1-2.53.51,4.88,4.88,0,0,1,.67,1.4c1.35,5-5.45,11-15.18,13.27a33.74,33.74,0,0,1-4.52.74,35.45,35.45,0,0,0,8.5-1C37.81,42.65,45.1,36.27,43.66,30.9A5.5,5.5,0,0,0,42.91,29.36Z"/><path d="M14.59,43a5.56,5.56,0,0,1,2.72-4.15,15.4,15.4,0,0,1-1.51-.49l-1-.39c-2.1,1.24-3.47,2.93-3.57,4.87C11,47,16.46,50.58,23.45,50.91A19.82,19.82,0,0,0,29,50.4a19.44,19.44,0,0,1-3,.12C19.51,50.21,14.39,46.83,14.59,43Z"/><path d="M42.61,29.57c-.5,0-1.75.93-2.21.9s-1.87.42-2.33.34A4.56,4.56,0,0,1,38.28,32c-.12,2.62-4.69,4.65-10.41,4.15a18.66,18.66,0,0,1-2.59-.43,11.23,11.23,0,0,0,5,1.51c6.15.52,12.38-1.67,12.69-4.84A26.14,26.14,0,0,0,42.61,29.57Z"/><path d="M29.24,8.71c-8.34-2-16.16.32-17.46,5.17A6,6,0,0,0,12.25,18c0-.11,0-.23,0-.34.81-4.73,8.05-7.55,16.16-6.32s13.77,5.88,13.24,10.51a6.36,6.36,0,0,0,.33-.7C43.28,16.25,37.58,10.7,29.24,8.71Z"/></g></svg>
diff --git a/public/assets/images/icons/yellow/chat.svg b/public/assets/images/icons/yellow/chat.svg
index 01e082e2672268195e278147eeb5fca92c9c3b4d..842c141b76f7d143e6f44ec154484d201c1f9f15 100644
--- a/public/assets/images/icons/yellow/chat.svg
+++ b/public/assets/images/icons/yellow/chat.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/chat2.svg b/public/assets/images/icons/yellow/chat2.svg
index 01e082e2672268195e278147eeb5fca92c9c3b4d..842c141b76f7d143e6f44ec154484d201c1f9f15 100644
--- a/public/assets/images/icons/yellow/chat2.svg
+++ b/public/assets/images/icons/yellow/chat2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="chat"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/><circle class="cls-1" cx="15" cy="22" r="4"/><circle class="cls-1" cx="27" cy="22" r="4"/><circle class="cls-1" cx="39" cy="22" r="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/check-circle.svg b/public/assets/images/icons/yellow/check-circle.svg
index ca7c3deacf443c9943722866f314ba3fe4458116..c7a5cbb3a285eafc41d4b332a93d5b4348d93703 100644
--- a/public/assets/images/icons/yellow/check-circle.svg
+++ b/public/assets/images/icons/yellow/check-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="check-circle"><path class="cls-1" d="M40.84,21.11,36,16.25,24.18,28,18,21.87l-4.84,4.85,11,11ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="check-circle"><path class="cls-1" d="M40.84,21.11,36,16.25,24.18,28,18,21.87l-4.84,4.85,11,11ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/clipboard.svg b/public/assets/images/icons/yellow/clipboard.svg
index 402053198062c4af454339f82f5b56cec89659a3..917d0351a2635e038c62257c3e964aa7d395afed 100644
--- a/public/assets/images/icons/yellow/clipboard.svg
+++ b/public/assets/images/icons/yellow/clipboard.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="clipboard"><path class="cls-1" d="M30,23.9v24H9v-24H30m3-3H6v30H33v-30Z"/><polygon class="cls-1" points="47.98 5.91 15 5.91 15 8.91 44.99 8.91 44.99 38.9 47.98 38.9 47.98 5.91 47.98 5.91"/><polygon class="cls-1" points="26.99 14.91 26.99 17.9 33.71 17.9 23.87 27.74 25.99 29.86 35.99 19.86 35.99 26.9 38.99 26.9 38.99 14.91 26.99 14.91"/><rect class="cls-1" x="27" y="3.05" width="8.99" height="5.86"/><rect class="cls-1" x="10.5" y="10.41" width="11.99" height="3" transform="translate(28.41 -4.59) rotate(90)"/><rect class="cls-1" x="35.99" y="38.89" width="11.99" height="3"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="clipboard"><path class="cls-1" d="M30,23.9v24H9v-24H30m3-3H6v30H33v-30Z"/><polygon class="cls-1" points="47.98 5.91 15 5.91 15 8.91 44.99 8.91 44.99 38.9 47.98 38.9 47.98 5.91 47.98 5.91"/><polygon class="cls-1" points="26.99 14.91 26.99 17.9 33.71 17.9 23.87 27.74 25.99 29.86 35.99 19.86 35.99 26.9 38.99 26.9 38.99 14.91 26.99 14.91"/><rect class="cls-1" x="27" y="3.05" width="8.99" height="5.86"/><rect class="cls-1" x="10.5" y="10.41" width="11.99" height="3" transform="translate(28.41 -4.59) rotate(90)"/><rect class="cls-1" x="35.99" y="38.89" width="11.99" height="3"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/cloud.svg b/public/assets/images/icons/yellow/cloud.svg
index b848219d4d4fec27695583551773fe9bb3808fac..04df209532fede39cf6b28929ffe4622ee342d52 100644
--- a/public/assets/images/icons/yellow/cloud.svg
+++ b/public/assets/images/icons/yellow/cloud.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><path id="cloud" d="M33.61,16.51a8.1,8.1,0,0,1,8.15,7.94l.06,2.31,2.23.54a5.15,5.15,0,0,1,3.94,5v.17a5.17,5.17,0,0,1-5.15,5H12.08a6.08,6.08,0,0,1,0-12.16,6.9,6.9,0,0,1,1.09.1l4.11.74L16.68,22a2.32,2.32,0,0,1,0-.46,3.26,3.26,0,0,1,5.84-2l2.35,3,2.39-3a8.1,8.1,0,0,1,6.39-3.1m0-3a11.14,11.14,0,0,0-8.76,4.25,6.26,6.26,0,0,0-11.21,3.83,6.44,6.44,0,0,0,.06.89,9.66,9.66,0,0,0-1.62-.14,9.09,9.09,0,0,0,0,18.17H42.84A8.18,8.18,0,0,0,51,32.32h0a8.17,8.17,0,0,0-6.24-7.94A11.16,11.16,0,0,0,33.61,13.5Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><path id="cloud" d="M33.61,16.51a8.1,8.1,0,0,1,8.15,7.94l.06,2.31,2.23.54a5.15,5.15,0,0,1,3.94,5v.17a5.17,5.17,0,0,1-5.15,5H12.08a6.08,6.08,0,0,1,0-12.16,6.9,6.9,0,0,1,1.09.1l4.11.74L16.68,22a2.32,2.32,0,0,1,0-.46,3.26,3.26,0,0,1,5.84-2l2.35,3,2.39-3a8.1,8.1,0,0,1,6.39-3.1m0-3a11.14,11.14,0,0,0-8.76,4.25,6.26,6.26,0,0,0-11.21,3.83,6.44,6.44,0,0,0,.06.89,9.66,9.66,0,0,0-1.62-.14,9.09,9.09,0,0,0,0,18.17H42.84A8.18,8.18,0,0,0,51,32.32h0a8.17,8.17,0,0,0-6.24-7.94A11.16,11.16,0,0,0,33.61,13.5Z"/></svg>
diff --git a/public/assets/images/icons/yellow/comment.svg b/public/assets/images/icons/yellow/comment.svg
index a0dac83d1a75123d24209b67fbe4cd927d0e4d34..7df33ecb0387448794556d52eda7f35eb45b2061 100644
--- a/public/assets/images/icons/yellow/comment.svg
+++ b/public/assets/images/icons/yellow/comment.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="comment"><path class="cls-1" d="M37.91,6.8A6.3,6.3,0,0,0,29.47,9l-1,1.72L26.9,13.27,13,36.47,13.13,48,23.7,42.42,37.6,19.23l1.54-2.58,1-1.72A5.83,5.83,0,0,0,37.91,6.8ZM21.46,40.21l-1.95,1-3.39-1.89,0-2.1L29.57,14.76l5.35,3Zm9.66-28,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06l-1,1.72Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="comment"><path class="cls-1" d="M37.91,6.8A6.3,6.3,0,0,0,29.47,9l-1,1.72L26.9,13.27,13,36.47,13.13,48,23.7,42.42,37.6,19.23l1.54-2.58,1-1.72A5.83,5.83,0,0,0,37.91,6.8ZM21.46,40.21l-1.95,1-3.39-1.89,0-2.1L29.57,14.76l5.35,3Zm9.66-28,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06l-1,1.72Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/comment2.svg b/public/assets/images/icons/yellow/comment2.svg
index 752c1b6b4ce95bac959554b57262cb51232bb03e..0bcc9f63603d9ae3d244b7a3ed283b4ca55cfd82 100644
--- a/public/assets/images/icons/yellow/comment2.svg
+++ b/public/assets/images/icons/yellow/comment2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="comment"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="comment"><path class="cls-1" d="M45.41,6H8.59A5.61,5.61,0,0,0,3,11.59V33.41A5.61,5.61,0,0,0,8.59,39H16l0,9A12.07,12.07,0,0,0,27.6,39H45.41A5.61,5.61,0,0,0,51,33.41V11.59A5.61,5.61,0,0,0,45.41,6ZM48,33.41A2.59,2.59,0,0,1,45.41,36H25a9,9,0,0,1-6,8.48L19,36H8.59A2.59,2.59,0,0,1,6,33.41V11.59A2.59,2.59,0,0,1,8.59,9H45.41A2.59,2.59,0,0,1,48,11.59Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/community.svg b/public/assets/images/icons/yellow/community.svg
index 8097f2aacc9dc11c09908a09e2cfd2b9cccbe16f..08940b242dbda9350b37eb2938883d7122d42ee1 100644
--- a/public/assets/images/icons/yellow/community.svg
+++ b/public/assets/images/icons/yellow/community.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M37,25a9,9,0,1,0-9-9A9,9,0,0,0,37,25Z"/><path class="a" d="M17,25a9,9,0,1,0-9-9A9,9,0,0,0,17,25Z"/><path class="a" d="M44.79,29H29.2a6.21,6.21,0,0,0-6.2,6.2V48H51V35.17A6.21,6.21,0,0,0,44.79,29Z"/><path class="a" d="M3,35.17V48H20V35.17A9.11,9.11,0,0,1,22.43,29H9.2A6.21,6.21,0,0,0,3,35.17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M37,25a9,9,0,1,0-9-9A9,9,0,0,0,37,25Z"/><path class="a" d="M17,25a9,9,0,1,0-9-9A9,9,0,0,0,17,25Z"/><path class="a" d="M44.79,29H29.2a6.21,6.21,0,0,0-6.2,6.2V48H51V35.17A6.21,6.21,0,0,0,44.79,29Z"/><path class="a" d="M3,35.17V48H20V35.17A9.11,9.11,0,0,1,22.43,29H9.2A6.21,6.21,0,0,0,3,35.17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/community2.svg b/public/assets/images/icons/yellow/community2.svg
index 90c48ff59b2245e79150c9ea17696700d3e61b78..6c0631fbea101ba5ac32395168f388995d1ca21e 100644
--- a/public/assets/images/icons/yellow/community2.svg
+++ b/public/assets/images/icons/yellow/community2.svg
@@ -1 +1 @@
-<svg id="Icons" data-name="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="community2"><path d="M23,15a12.86,12.86,0,0,1,2.09-7,10,10,0,1,0,0,14.08A12.86,12.86,0,0,1,23,15Zm-5,4a4,4,0,1,1,4-4A4,4,0,0,1,18,19Z"/><path d="M36,25A10,10,0,1,1,46,15,10,10,0,0,1,36,25Zm0-14a4,4,0,1,0,4,4A4,4,0,0,0,36,11Z"/><path d="M9,43V36a2,2,0,0,1,2-2h5c0-2,2-6,5-6H11a8,8,0,0,0-8,8V49H16V43Z"/><path d="M51,49H19V36a8,8,0,0,1,8-8H43a8,8,0,0,1,8,8ZM25,43H45V36a2,2,0,0,0-2-2H27a2,2,0,0,0-2,2Z"/></g></svg>
+<svg width="16" height="16" id="Icons" data-name="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="community2"><path d="M23,15a12.86,12.86,0,0,1,2.09-7,10,10,0,1,0,0,14.08A12.86,12.86,0,0,1,23,15Zm-5,4a4,4,0,1,1,4-4A4,4,0,0,1,18,19Z"/><path d="M36,25A10,10,0,1,1,46,15,10,10,0,0,1,36,25Zm0-14a4,4,0,1,0,4,4A4,4,0,0,0,36,11Z"/><path d="M9,43V36a2,2,0,0,1,2-2h5c0-2,2-6,5-6H11a8,8,0,0,0-8,8V49H16V43Z"/><path d="M51,49H19V36a8,8,0,0,1,8-8H43a8,8,0,0,1,8,8ZM25,43H45V36a2,2,0,0,0-2-2H27a2,2,0,0,0-2,2Z"/></g></svg>
diff --git a/public/assets/images/icons/yellow/content.svg b/public/assets/images/icons/yellow/content.svg
index e3619eb6cf2dbc0b795fe4c9322040016653b402..5380dad8d65943dbba47b7f1011084d9a2af6fec 100644
--- a/public/assets/images/icons/yellow/content.svg
+++ b/public/assets/images/icons/yellow/content.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M44.94,9a6.44,6.44,0,0,1-.87,3.82L43.37,14H46V42H8V14H28L30.67,9.5,31,9H3V47H51V9Z"/><polygon class="a" points="26.26 16.97 10.96 16.97 10.96 38.97 20.08 38.97 20.06 36.99 19.96 28.21 19.96 27.65 20.24 27.17 26.26 16.97"/><polygon class="a" points="31.71 33.74 31.43 34.22 30.93 34.48 23.01 38.73 22.56 38.97 42.96 38.97 42.96 16.97 41.6 16.97 31.71 33.74"/><path class="a" d="M22.06,37,30,32.72,40.41,15.05l1.16-2,.77-1.31a4.48,4.48,0,0,0-1.69-6.19,4.69,4.69,0,0,0-6.33,1.66l-.77,1.31-1.16,2L22,28.19ZM36.32,8.37a2.36,2.36,0,0,1,3.17-.83,2.25,2.25,0,0,1,.85,3.1L39.56,12l-4-2.27Zm-1.93,3.28,4,2.26L28.31,31l-1.46.78L24.3,30.38v-1.6Z"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M44.94,9a6.44,6.44,0,0,1-.87,3.82L43.37,14H46V42H8V14H28L30.67,9.5,31,9H3V47H51V9Z"/><polygon class="a" points="26.26 16.97 10.96 16.97 10.96 38.97 20.08 38.97 20.06 36.99 19.96 28.21 19.96 27.65 20.24 27.17 26.26 16.97"/><polygon class="a" points="31.71 33.74 31.43 34.22 30.93 34.48 23.01 38.73 22.56 38.97 42.96 38.97 42.96 16.97 41.6 16.97 31.71 33.74"/><path class="a" d="M22.06,37,30,32.72,40.41,15.05l1.16-2,.77-1.31a4.48,4.48,0,0,0-1.69-6.19,4.69,4.69,0,0,0-6.33,1.66l-.77,1.31-1.16,2L22,28.19ZM36.32,8.37a2.36,2.36,0,0,1,3.17-.83,2.25,2.25,0,0,1,.85,3.1L39.56,12l-4-2.27Zm-1.93,3.28,4,2.26L28.31,31l-1.46.78L24.3,30.38v-1.6Z"/></svg>
diff --git a/public/assets/images/icons/yellow/courseware.svg b/public/assets/images/icons/yellow/courseware.svg
index 9494ab9641c074413b812b984aa34eda7b4bfb13..8eb7eeeba56d8a756f09ee3a96571c8bad3f4707 100755
--- a/public/assets/images/icons/yellow/courseware.svg
+++ b/public/assets/images/icons/yellow/courseware.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="courseware"><polygon class="cls-1" points="30.85 9.37 27 6 23.14 9.37 27 11.16 30.85 9.37"/><polygon class="cls-1" points="37.56 15.24 33.71 11.87 27 15.22 20.28 11.87 16.43 15.24 27.05 21.56 37.56 15.24"/><polygon class="cls-1" points="44.27 21.12 40.42 17.75 27.05 26.97 13.57 17.75 9.72 21.12 27.05 34.5 44.27 21.12"/><polygon class="cls-1" points="47.13 23.62 27.05 40.33 6.86 23.62 3.01 26.99 27 47.98 50.98 26.99 47.13 23.62"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="courseware"><polygon class="cls-1" points="30.85 9.37 27 6 23.14 9.37 27 11.16 30.85 9.37"/><polygon class="cls-1" points="37.56 15.24 33.71 11.87 27 15.22 20.28 11.87 16.43 15.24 27.05 21.56 37.56 15.24"/><polygon class="cls-1" points="44.27 21.12 40.42 17.75 27.05 26.97 13.57 17.75 9.72 21.12 27.05 34.5 44.27 21.12"/><polygon class="cls-1" points="47.13 23.62 27.05 40.33 6.86 23.62 3.01 26.99 27 47.98 50.98 26.99 47.13 23.62"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/crop.svg b/public/assets/images/icons/yellow/crop.svg
index 365074df8dee5a826460140c0fb35e0e1ebab357..a87c23de50e884c03f9c99546e0af4bdad965f8c 100644
--- a/public/assets/images/icons/yellow/crop.svg
+++ b/public/assets/images/icons/yellow/crop.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="crop"><path d="M3,3V51H51V3ZM48,33h-4.5v2.9H48V48H35.94v-4.5H33V48H6v-12H10.5V33H6V6H33v4.5h2.9V6H48Z"/><rect x="16" y="33.04" width="8.25" height="2.9"/><polygon points="35.94 29.74 33.04 29.74 33.04 33.04 29.75 33.04 29.75 35.94 33.04 35.94 33.04 37.99 35.94 37.99 35.94 35.94 37.99 35.94 37.99 33.04 35.94 33.04 35.94 29.74"/><rect x="33.04" y="16" width="2.9" height="8.25"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="crop"><path d="M3,3V51H51V3ZM48,33h-4.5v2.9H48V48H35.94v-4.5H33V48H6v-12H10.5V33H6V6H33v4.5h2.9V6H48Z"/><rect x="16" y="33.04" width="8.25" height="2.9"/><polygon points="35.94 29.74 33.04 29.74 33.04 33.04 29.75 33.04 29.75 35.94 33.04 35.94 33.04 37.99 35.94 37.99 35.94 35.94 37.99 35.94 37.99 33.04 35.94 33.04 35.94 29.74"/><rect x="33.04" y="16" width="2.9" height="8.25"/></g></svg>
diff --git a/public/assets/images/icons/yellow/crown.svg b/public/assets/images/icons/yellow/crown.svg
index 3e3ab7438334a477d70d178da82dbac1cf3134bf..7eb1bbd2e8b749460f2eb408552fb6ecb14f8b4c 100644
--- a/public/assets/images/icons/yellow/crown.svg
+++ b/public/assets/images/icons/yellow/crown.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="crown"><path class="cls-1" d="M48,17a3,3,0,0,0-3,3,3,3,0,0,0,.31,1.31L37,26.53,29.88,14.76a4,4,0,1,0-5.76,0L17,26.53,8.21,21A2.94,2.94,0,0,0,9,19a3,3,0,1,0-3.23,3L12,46H42l6-23h0a3,3,0,0,0,0-6ZM14.32,43l-.78-3H40.46l-.78,3Zm26.92-6H12.76l-3-11.42,5.61,3.52L18,30.69l1.58-2.61L26.88,16h.24l7.31,12.09L36,30.69l2.59-1.62,5.6-3.52Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="crown"><path class="cls-1" d="M48,17a3,3,0,0,0-3,3,3,3,0,0,0,.31,1.31L37,26.53,29.88,14.76a4,4,0,1,0-5.76,0L17,26.53,8.21,21A2.94,2.94,0,0,0,9,19a3,3,0,1,0-3.23,3L12,46H42l6-23h0a3,3,0,0,0,0-6ZM14.32,43l-.78-3H40.46l-.78,3Zm26.92-6H12.76l-3-11.42,5.61,3.52L18,30.69l1.58-2.61L26.88,16h.24l7.31,12.09L36,30.69l2.59-1.62,5.6-3.52Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/date-block.svg b/public/assets/images/icons/yellow/date-block.svg
index 11e4fe95ad5e1b7d4cfc4faa0014a9cff43aace8..5587c1491360d2db4bca45f50e423e1d0df1ea9d 100644
--- a/public/assets/images/icons/yellow/date-block.svg
+++ b/public/assets/images/icons/yellow/date-block.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="date-block"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM6.77,27A14.86,14.86,0,1,1,21.63,41.84,14.88,14.88,0,0,1,6.77,27Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="date-block"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM6.77,27A14.86,14.86,0,1,1,21.63,41.84,14.88,14.88,0,0,1,6.77,27Z"/></g></svg>
diff --git a/public/assets/images/icons/yellow/date-cycle.svg b/public/assets/images/icons/yellow/date-cycle.svg
index 8859dd93c27ee0df02e7899272bd281a55c71a98..d61e234f32de23e2183e8d35bb95362ef0988761 100644
--- a/public/assets/images/icons/yellow/date-cycle.svg
+++ b/public/assets/images/icons/yellow/date-cycle.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="date-cycle"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM21.63,41.84A14.85,14.85,0,1,1,36.48,27,14.88,14.88,0,0,1,21.63,41.84Zm11.23,0a18.58,18.58,0,0,0,0-29.66,14.84,14.84,0,0,1,0,29.66Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="date-cycle"><polygon points="18.88 14.45 18.88 26 11.73 30.16 14.56 35.12 24.54 29.33 24.6 29.33 24.59 14.45 18.88 14.45"/><path d="M32.37,8.37H21.63a18.62,18.62,0,1,0,0,37.24H32.37a18.62,18.62,0,0,0,0-37.24ZM21.63,41.84A14.85,14.85,0,1,1,36.48,27,14.88,14.88,0,0,1,21.63,41.84Zm11.23,0a18.58,18.58,0,0,0,0-29.66,14.84,14.84,0,0,1,0,29.66Z"/></g></svg>
diff --git a/public/assets/images/icons/yellow/date-single.svg b/public/assets/images/icons/yellow/date-single.svg
index dd536b5bce4ea22098696c804f97c3446363ad15..1645e515eba42a2c8b287fff5bab12599d4fcb46 100644
--- a/public/assets/images/icons/yellow/date-single.svg
+++ b/public/assets/images/icons/yellow/date-single.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="date-single"><path d="M27,8.37A18.62,18.62,0,1,0,45.62,27,18.63,18.63,0,0,0,27,8.37Zm0,33.47A14.85,14.85,0,1,1,41.85,27,14.86,14.86,0,0,1,27,41.84Z"/><polygon points="24.25 14.45 24.25 26 17.1 30.16 19.93 35.12 29.91 29.33 29.97 29.33 29.96 14.45 24.25 14.45"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="date-single"><path d="M27,8.37A18.62,18.62,0,1,0,45.62,27,18.63,18.63,0,0,0,27,8.37Zm0,33.47A14.85,14.85,0,1,1,41.85,27,14.86,14.86,0,0,1,27,41.84Z"/><polygon points="24.25 14.45 24.25 26 17.1 30.16 19.93 35.12 29.91 29.33 29.97 29.33 29.96 14.45 24.25 14.45"/></g></svg>
diff --git a/public/assets/images/icons/yellow/decline-circle.svg b/public/assets/images/icons/yellow/decline-circle.svg
index c9328b169e1aea3bdd1355eab961122f0b4ca03b..7aed9cd495cd3ebc669cc12ccb1567aecb29264e 100644
--- a/public/assets/images/icons/yellow/decline-circle.svg
+++ b/public/assets/images/icons/yellow/decline-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="decline-circle"><path class="cls-1" d="M38.68,34l-7-7,7-7-4.94-5-7,7-7-7L14.75,20l7,7-7,7L19.7,39l7-7,7,7ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="decline-circle"><path class="cls-1" d="M38.68,34l-7-7,7-7-4.94-5-7,7-7-7L14.75,20l7,7-7,7L19.7,39l7-7,7,7ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/decline.svg b/public/assets/images/icons/yellow/decline.svg
index 44fd9050f0ad2aa01b80a0c1c316f78434889c0e..3fafd27532a24a5a1b789e3902aac56daa465a84 100644
--- a/public/assets/images/icons/yellow/decline.svg
+++ b/public/assets/images/icons/yellow/decline.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="decline"><polygon id="decline-2" data-name="decline" class="cls-1" points="47.32 38.91 35.4 26.99 47.32 15.07 38.93 6.67 27 18.59 15.07 6.67 6.68 15.06 18.61 26.98 6.67 38.91 15.08 47.32 27.01 35.39 38.93 47.31 47.32 38.91"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="decline"><polygon id="decline-2" data-name="decline" class="cls-1" points="47.32 38.91 35.4 26.99 47.32 15.07 38.93 6.67 27 18.59 15.07 6.67 6.68 15.06 18.61 26.98 6.67 38.91 15.08 47.32 27.01 35.39 38.93 47.31 47.32 38.91"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/door-enter.svg b/public/assets/images/icons/yellow/door-enter.svg
index e55dfbe589e89b176ce490cbf66a8c515331cb3c..e64f2ffc06dd03e7a0f99a223eb7239ae9e086c1 100644
--- a/public/assets/images/icons/yellow/door-enter.svg
+++ b/public/assets/images/icons/yellow/door-enter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="door-enter"><path class="cls-1" d="M22,3V45h3V6H37L29,8V51l20-6V3Zm10,7.34,14-3.5V42.74l-14,4.2Z"/><polygon class="cls-1" points="5 13 5 20.09 11.91 27 5 33.91 5 41 19 27 5 13"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="door-enter"><path class="cls-1" d="M22,3V45h3V6H37L29,8V51l20-6V3Zm10,7.34,14-3.5V42.74l-14,4.2Z"/><polygon class="cls-1" points="5 13 5 20.09 11.91 27 5 33.91 5 41 19 27 5 13"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/door-leave.svg b/public/assets/images/icons/yellow/door-leave.svg
index b8e07096bb5b7311933c1cddcb350efd9bf8d72a..37e7d40f2aff5101a329612b9f7495df28e382ea 100644
--- a/public/assets/images/icons/yellow/door-leave.svg
+++ b/public/assets/images/icons/yellow/door-leave.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="door-leave"><path class="cls-1" d="M5,45l20,6V8L17,6H29V45h3V3H5Zm3-3V6.81l14,3.5V46.94L8,42.74Z"/><polygon class="cls-1" points="35 13 35 20.09 41.91 27 35 33.91 35 41 49 27 35 13"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="door-leave"><path class="cls-1" d="M5,45l20,6V8L17,6H29V45h3V3H5Zm3-3V6.81l14,3.5V46.94L8,42.74Z"/><polygon class="cls-1" points="35 13 35 20.09 41.91 27 35 33.91 35 41 49 27 35 13"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/download.svg b/public/assets/images/icons/yellow/download.svg
index cdc14c4f14fef7b0fa6d24de8a27b298cf91a083..5b5ba64e1b1f8bd4a89b8da59112ee89853a9c1b 100644
--- a/public/assets/images/icons/yellow/download.svg
+++ b/public/assets/images/icons/yellow/download.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/download2.svg b/public/assets/images/icons/yellow/download2.svg
index cdc14c4f14fef7b0fa6d24de8a27b298cf91a083..5b5ba64e1b1f8bd4a89b8da59112ee89853a9c1b 100644
--- a/public/assets/images/icons/yellow/download2.svg
+++ b/public/assets/images/icons/yellow/download2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="41 7 33.91 7 27 13.91 20.09 7 13 7 27 21 41 7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/edit.svg b/public/assets/images/icons/yellow/edit.svg
index 222e70d51a7b6fa131c1b282bbfbad23fa1fb480..9195a3edc751dd4314c8011aee1066e52450e679 100644
--- a/public/assets/images/icons/yellow/edit.svg
+++ b/public/assets/images/icons/yellow/edit.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="edit2"><path class="cls-1" d="M47.91,4.8A6.3,6.3,0,0,0,39.47,7l-1,1.72-1.53,2.55,10.7,5.95,1.53-2.55,1-1.72A5.83,5.83,0,0,0,47.91,4.8Zm-1.44,8.36-5.35-3,1-1.71a3.15,3.15,0,0,1,4.22-1.09,2.92,2.92,0,0,1,1.13,4.06Z"/><polygon class="cls-1" points="43.39 18.29 38.05 15.31 37.15 14.82 35.37 13.82 23 34.47 23.13 46 33.7 40.42 46.07 19.78 44.28 18.79 43.39 18.29"/><path class="cls-1" d="M32,9V47H6V9H32m3-3H3V50H35V6Z"/><rect class="cls-1" x="9" y="11.97" width="20" height="4"/><rect class="cls-1" x="9" y="18.97" width="20" height="4"/><rect class="cls-1" x="9" y="25.97" width="13" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/exclaim-circle-full.svg b/public/assets/images/icons/yellow/exclaim-circle-full.svg
index 4717d87215a7be7d37de3ca1b257c4b8d5a7abd0..679aa61aad5925d08ffd6e90316ed47f9305697a 100644
--- a/public/assets/images/icons/yellow/exclaim-circle-full.svg
+++ b/public/assets/images/icons/yellow/exclaim-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/exclaim-circle.svg b/public/assets/images/icons/yellow/exclaim-circle.svg
index 4717d87215a7be7d37de3ca1b257c4b8d5a7abd0..679aa61aad5925d08ffd6e90316ed47f9305697a 100644
--- a/public/assets/images/icons/yellow/exclaim-circle.svg
+++ b/public/assets/images/icons/yellow/exclaim-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="exclaim-circle"><path class="cls-1" d="M27,34.26a3.83,3.83,0,0,0-4,4,3.8,3.8,0,0,0,3.91,4H27a3.78,3.78,0,0,0,3.92-4A3.81,3.81,0,0,0,27,34.26Zm2.51-2.21,1-19.95h-7l1,19.95ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/export.svg b/public/assets/images/icons/yellow/export.svg
index ae39ea83237ffde850d7a457c9d4cce9344f988f..84f6fdfba1e1365b150b67c8e0790134db004bf6 100644
--- a/public/assets/images/icons/yellow/export.svg
+++ b/public/assets/images/icons/yellow/export.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-archive.svg b/public/assets/images/icons/yellow/file-archive.svg
index 91949158b5341cc1a29d7c44bce2662bac8ad763..5494b54e5146e02c666b0175ad646aa9eac3c9ab 100644
--- a/public/assets/images/icons/yellow/file-archive.svg
+++ b/public/assets/images/icons/yellow/file-archive.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><rect class="a" x="27" y="14.97" width="3" height="3"/><rect class="a" x="27" y="20.97" width="3" height="3"/><rect class="a" x="24" y="23.97" width="3" height="3"/><rect class="a" x="27" y="26.97" width="3" height="3"/><rect class="a" x="27" y="32.97" width="3" height="3"/><rect class="a" x="24" y="29.97" width="3" height="3"/><rect class="a" x="24" y="35.97" width="3" height="3"/><rect class="a" x="27" y="38.97" width="3" height="3"/><rect class="a" x="24" y="41.97" width="3" height="3"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm16.45,8.13A1.44,1.44,0,0,1,24,9.65,1.42,1.42,0,0,1,25.24,9h.2a1.42,1.42,0,0,1,.51.18A1.45,1.45,0,0,1,26.45,11.13ZM35,46.71V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-2,2.81V45H27v2.94H13.09V6.1H23.93v2a2.65,2.65,0,0,0-.69.56h0l-3.5,4h0a3.81,3.81,0,0,0-.37.5,3.56,3.56,0,0,0,1.23,4.88,3.49,3.49,0,0,0,3.4.07V21h3V18H24.4a3.55,3.55,0,0,0,1.08-1.1,3.67,3.67,0,0,0,.27-.57h0L26.26,15H27V13c.12-.3.24-.63.4-1H30V6.1H40.91Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><rect class="a" x="27" y="14.97" width="3" height="3"/><rect class="a" x="27" y="20.97" width="3" height="3"/><rect class="a" x="24" y="23.97" width="3" height="3"/><rect class="a" x="27" y="26.97" width="3" height="3"/><rect class="a" x="27" y="32.97" width="3" height="3"/><rect class="a" x="24" y="29.97" width="3" height="3"/><rect class="a" x="24" y="35.97" width="3" height="3"/><rect class="a" x="27" y="38.97" width="3" height="3"/><rect class="a" x="24" y="41.97" width="3" height="3"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm16.45,8.13A1.44,1.44,0,0,1,24,9.65,1.42,1.42,0,0,1,25.24,9h.2a1.42,1.42,0,0,1,.51.18A1.45,1.45,0,0,1,26.45,11.13ZM35,46.71V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-2,2.81V45H27v2.94H13.09V6.1H23.93v2a2.65,2.65,0,0,0-.69.56h0l-3.5,4h0a3.81,3.81,0,0,0-.37.5,3.56,3.56,0,0,0,1.23,4.88,3.49,3.49,0,0,0,3.4.07V21h3V18H24.4a3.55,3.55,0,0,0,1.08-1.1,3.67,3.67,0,0,0,.27-.57h0L26.26,15H27V13c.12-.3.24-.63.4-1H30V6.1H40.91Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-audio.svg b/public/assets/images/icons/yellow/file-audio.svg
index a006b8a4f47bd9926b6af9301e98c3c5cde22bbc..f1bcfdceb8c00c700aa49408246520d1881e21c2 100644
--- a/public/assets/images/icons/yellow/file-audio.svg
+++ b/public/assets/images/icons/yellow/file-audio.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="19.14 17.91 16 17.91 16 24.19 19.14 24.19 23.86 27.34 25.43 27.34 25.43 14.76 23.86 14.76 19.14 17.91"/><path class="a" d="M29.73,13.68l-2.06,2.06a7.4,7.4,0,0,1,0,10.46l2.06,2.06A10.3,10.3,0,0,0,29.73,13.68Z"/><path class="a" d="M33.44,10,31.38,12a12.63,12.63,0,0,1,0,17.88L33.44,32A15.55,15.55,0,0,0,33.44,10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="19.14 17.91 16 17.91 16 24.19 19.14 24.19 23.86 27.34 25.43 27.34 25.43 14.76 23.86 14.76 19.14 17.91"/><path class="a" d="M29.73,13.68l-2.06,2.06a7.4,7.4,0,0,1,0,10.46l2.06,2.06A10.3,10.3,0,0,0,29.73,13.68Z"/><path class="a" d="M33.44,10,31.38,12a12.63,12.63,0,0,1,0,17.88L33.44,32A15.55,15.55,0,0,0,33.44,10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-audio2.svg b/public/assets/images/icons/yellow/file-audio2.svg
index aa45e7324b34ce921bb3ea41913b8e2501d377ac..ffbca671f4dce0f432109ad078efc594214f6c59 100644
--- a/public/assets/images/icons/yellow/file-audio2.svg
+++ b/public/assets/images/icons/yellow/file-audio2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M21.75,34.72A5.25,5.25,0,0,0,27,29.47V17.22s.77-1.74,3.33.64c3.29,3.06,7.17.56,7.17.56s-4.77-1.15-5.75-4.26A5.25,5.25,0,0,0,27,10.22H23.5V24.54a5.32,5.32,0,0,0-1.75-.32,5.25,5.25,0,0,0,0,10.5Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M21.75,34.72A5.25,5.25,0,0,0,27,29.47V17.22s.77-1.74,3.33.64c3.29,3.06,7.17.56,7.17.56s-4.77-1.15-5.75-4.26A5.25,5.25,0,0,0,27,10.22H23.5V24.54a5.32,5.32,0,0,0-1.75-.32,5.25,5.25,0,0,0,0,10.5Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-big.svg b/public/assets/images/icons/yellow/file-big.svg
index d57c626bb6190f1b12f9c6f95cf166580e9e5d24..c76824661bf13e4125946828349f5502d43df4c3 100644
--- a/public/assets/images/icons/yellow/file-big.svg
+++ b/public/assets/images/icons/yellow/file-big.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-excel.svg b/public/assets/images/icons/yellow/file-excel.svg
index e17e713648f5f9e10e1cf1aa9bef3918fc2e691f..b22845bbcdfc7b83ebcebdf74d02751d0cccbe9d 100644
--- a/public/assets/images/icons/yellow/file-excel.svg
+++ b/public/assets/images/icons/yellow/file-excel.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M31.41,32,27,24.31,22.6,32H17.5l7.08-11.28L18,10H23l4,7.11L31,10h5L29.39,20.69,36.5,32Z"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm3.09,3.1H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.71V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M31.41,32,27,24.31,22.6,32H17.5l7.08-11.28L18,10H23l4,7.11L31,10h5L29.39,20.69,36.5,32Z"/><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.47A6,6,0,0,0,44,39.53V3Zm3.09,3.1H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.71V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-generic.svg b/public/assets/images/icons/yellow/file-generic.svg
index d57c626bb6190f1b12f9c6f95cf166580e9e5d24..c76824661bf13e4125946828349f5502d43df4c3 100644
--- a/public/assets/images/icons/yellow/file-generic.svg
+++ b/public/assets/images/icons/yellow/file-generic.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-office.svg b/public/assets/images/icons/yellow/file-office.svg
index 08e17250161a6901f92959314feae48381c9dffa..288eff34258cbfaf57d4adddf80e1457c572311f 100644
--- a/public/assets/images/icons/yellow/file-office.svg
+++ b/public/assets/images/icons/yellow/file-office.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM35,46.68V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09V6.06H40.91Z"/><path class="a" d="M24.56,23H16v3h6.77l-.85,1.41L22,34l6-3.19L36,17.53l.88-1.48.59-1a3.34,3.34,0,0,0-1.29-4.64,3.61,3.61,0,0,0-4.25.54H16v3H30l-.1.16L28.16,17H16v3H26.36ZM35.27,11.9a1.66,1.66,0,0,1,.65,2.32l-.59,1-3.06-1.7.59-1A1.8,1.8,0,0,1,35.27,11.9ZM31.39,15l3.06,1.7-7.7,12.84-1.11.59L23.7,29v-1.2Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM35,46.68V42h4.64ZM40.91,36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09V6.06H40.91Z"/><path class="a" d="M24.56,23H16v3h6.77l-.85,1.41L22,34l6-3.19L36,17.53l.88-1.48.59-1a3.34,3.34,0,0,0-1.29-4.64,3.61,3.61,0,0,0-4.25.54H16v3H30l-.1.16L28.16,17H16v3H26.36ZM35.27,11.9a1.66,1.66,0,0,1,.65,2.32l-.59,1-3.06-1.7.59-1A1.8,1.8,0,0,1,35.27,11.9ZM31.39,15l3.06,1.7-7.7,12.84-1.11.59L23.7,29v-1.2Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-pdf.svg b/public/assets/images/icons/yellow/file-pdf.svg
index 27f0f04068c265b3f15ccef789042970342abe5b..578a3ea5f907cd1ec610b48a23c913c3aebc273e 100644
--- a/public/assets/images/icons/yellow/file-pdf.svg
+++ b/public/assets/images/icons/yellow/file-pdf.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a,.b{fill:#ffad00;}.b{fill-rule:evenodd;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="b" d="M32.7,24.13c2.19,1.74,4,1,3.71.69C35.63,23.8,34.08,23.8,32.7,24.13Zm2.85-1a8.49,8.49,0,0,0-5,.09A7.88,7.88,0,0,1,26,18c-1.83-5.82,0-7.69.12-4.06l.37,2.47s1.27-3.08.45-5.33c-.71-2-2.77-1.66-2.89,2a20.45,20.45,0,0,0,.64,5.46,53.31,53.31,0,0,1-4.72,10c-2.74,4.27-2.91,2.83-2.24,1.41.79-1.7,2.12-2.58,2.57-3.29,0,0-2.08.16-3.69,2.93-1,1.76-1.14,6.11,3.21,1.39a21,21,0,0,0,2.65-4.08A45.49,45.49,0,0,1,31,24.56a11.5,11.5,0,0,0,3.74,1.68C37.4,26.85,40.1,24.69,35.55,23.15ZM23.18,25l2.2-5c1.46,3.1,3.52,3.73,3.52,3.73C28,23.78,23.18,25,23.18,25Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a,.b{fill:#ffad00;}.b{fill-rule:evenodd;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="b" d="M32.7,24.13c2.19,1.74,4,1,3.71.69C35.63,23.8,34.08,23.8,32.7,24.13Zm2.85-1a8.49,8.49,0,0,0-5,.09A7.88,7.88,0,0,1,26,18c-1.83-5.82,0-7.69.12-4.06l.37,2.47s1.27-3.08.45-5.33c-.71-2-2.77-1.66-2.89,2a20.45,20.45,0,0,0,.64,5.46,53.31,53.31,0,0,1-4.72,10c-2.74,4.27-2.91,2.83-2.24,1.41.79-1.7,2.12-2.58,2.57-3.29,0,0-2.08.16-3.69,2.93-1,1.76-1.14,6.11,3.21,1.39a21,21,0,0,0,2.65-4.08A45.49,45.49,0,0,1,31,24.56a11.5,11.5,0,0,0,3.74,1.68C37.4,26.85,40.1,24.69,35.55,23.15ZM23.18,25l2.2-5c1.46,3.1,3.52,3.73,3.52,3.73C28,23.78,23.18,25,23.18,25Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-pic.svg b/public/assets/images/icons/yellow/file-pic.svg
index 9c2f73b40fc196c5fc3303e5ad53bbe4a6d82dc4..23db50b3527ece49ce33b8f16234a6558929c1ba 100644
--- a/public/assets/images/icons/yellow/file-pic.svg
+++ b/public/assets/images/icons/yellow/file-pic.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M31,16V14a2,2,0,0,0-2-2H25a2,2,0,0,0-2,2v2H18a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H36a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Zm-4,11.8a5,5,0,1,1,5-5A5,5,0,0,1,27,27.77ZM36,22H33V19h3Z"/><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="18" y="13.97" width="4" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M31,16V14a2,2,0,0,0-2-2H25a2,2,0,0,0-2,2v2H18a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H36a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Zm-4,11.8a5,5,0,1,1,5-5A5,5,0,0,1,27,27.77ZM36,22H33V19h3Z"/><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="18" y="13.97" width="4" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-pic2.svg b/public/assets/images/icons/yellow/file-pic2.svg
index 98dcce11b9484199a77fafb0187d915c8955d5a1..a708177b1bb27288abea60f9907e3be49e11a4f2 100644
--- a/public/assets/images/icons/yellow/file-pic2.svg
+++ b/public/assets/images/icons/yellow/file-pic2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M38.91,24.39,34.5,21.5l-5.81,4.92L19.47,17l-4.38,5.3L12,26V32H42V26.42Z"/><circle class="a" cx="30" cy="13.97" r="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M38.91,24.39,34.5,21.5l-5.81,4.92L19.47,17l-4.38,5.3L12,26V32H42V26.42Z"/><circle class="a" cx="30" cy="13.97" r="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-ppt.svg b/public/assets/images/icons/yellow/file-ppt.svg
index 49218fa6a9c3c2a6036f0a9956ea8376cf2a6c00..ecc33ea4f0c4314c524256b7547d48e88de1b33c 100644
--- a/public/assets/images/icons/yellow/file-ppt.svg
+++ b/public/assets/images/icons/yellow/file-ppt.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M27.64,23.69H23.35V32H19V10h8.64c4.6,0,7.36,3.12,7.36,6.86S32.24,23.69,27.64,23.69Zm-.22-9.89H23.35v6h4.07a2.93,2.93,0,0,0,3.23-3A3,3,0,0,0,27.42,13.8Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.61a6,6,0,0,0,4.27-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M27.64,23.69H23.35V32H19V10h8.64c4.6,0,7.36,3.12,7.36,6.86S32.24,23.69,27.64,23.69Zm-.22-9.89H23.35v6h4.07a2.93,2.93,0,0,0,3.23-3A3,3,0,0,0,27.42,13.8Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-presentation.svg b/public/assets/images/icons/yellow/file-presentation.svg
index 907f10852199c331d8b167c795e2088d2b8e4cf6..eb9b9f01144e344b9c72f5ee1b3f904ff9ea4d77 100644
--- a/public/assets/images/icons/yellow/file-presentation.svg
+++ b/public/assets/images/icons/yellow/file-presentation.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM40.91,6.06V26H29.82a3.07,3.07,0,0,0-2.92-2H19.1a3.07,3.07,0,0,0-2.92,2H13.09V6.06ZM35,46.68V42h4.64ZM37.91,39H32v5.91a3,3,0,0,1-3,3H13.09V29H16v4H30V29H40.91v7A3,3,0,0,1,37.91,39Z"/><path class="a" d="M23,22a4.5,4.5,0,1,0-4.5-4.5A4.49,4.49,0,0,0,23,22Z"/><rect class="a" x="31" y="8.97" width="7" height="7"/><rect class="a" x="31" y="17.97" width="7" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3ZM40.91,6.06V26H29.82a3.07,3.07,0,0,0-2.92-2H19.1a3.07,3.07,0,0,0-2.92,2H13.09V6.06ZM35,46.68V42h4.64ZM37.91,39H32v5.91a3,3,0,0,1-3,3H13.09V29H16v4H30V29H40.91v7A3,3,0,0,1,37.91,39Z"/><path class="a" d="M23,22a4.5,4.5,0,1,0-4.5-4.5A4.49,4.49,0,0,0,23,22Z"/><rect class="a" x="31" y="8.97" width="7" height="7"/><rect class="a" x="31" y="17.97" width="7" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-small.svg b/public/assets/images/icons/yellow/file-small.svg
index d57c626bb6190f1b12f9c6f95cf166580e9e5d24..c76824661bf13e4125946828349f5502d43df4c3 100644
--- a/public/assets/images/icons/yellow/file-small.svg
+++ b/public/assets/images/icons/yellow/file-small.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-sound.svg b/public/assets/images/icons/yellow/file-sound.svg
index 77ef72a68d2c6a8363c58a149fa829ed02a012b0..094792f0ab5f96d7eecfc37bfe9134bef2894de6 100644
--- a/public/assets/images/icons/yellow/file-sound.svg
+++ b/public/assets/images/icons/yellow/file-sound.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.57 17.46 18 17.46 18 22.61 20.57 22.61 24.43 25.18 25.71 25.18 25.71 14.89 24.43 14.89 20.57 17.46"/><path class="a" d="M29.24,14l-1.69,1.68a6.06,6.06,0,0,1,0,8.56l1.69,1.68A8.43,8.43,0,0,0,29.24,14Z"/><path class="a" d="M32.27,11l-1.69,1.69a10.31,10.31,0,0,1,0,14.62L32.27,29A12.73,12.73,0,0,0,32.27,11Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.57 17.46 18 17.46 18 22.61 20.57 22.61 24.43 25.18 25.71 25.18 25.71 14.89 24.43 14.89 20.57 17.46"/><path class="a" d="M29.24,14l-1.69,1.68a6.06,6.06,0,0,1,0,8.56l1.69,1.68A8.43,8.43,0,0,0,29.24,14Z"/><path class="a" d="M32.27,11l-1.69,1.69a10.31,10.31,0,0,1,0,14.62L32.27,29A12.73,12.73,0,0,0,32.27,11Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-spreadsheet.svg b/public/assets/images/icons/yellow/file-spreadsheet.svg
index 6f3ad1cfd80115bb6eab99b60262d56bbd720240..fb98242b7c71b43211bdd9252ffab9a8bcdee5f2 100644
--- a/public/assets/images/icons/yellow/file-spreadsheet.svg
+++ b/public/assets/images/icons/yellow/file-spreadsheet.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="13.97" width="5" height="11"/><rect class="a" x="24.5" y="10.97" width="5" height="14"/><rect class="a" x="33" y="16.97" width="5" height="8"/><rect class="a" x="16" y="26.97" width="22" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="13.97" width="5" height="11"/><rect class="a" x="24.5" y="10.97" width="5" height="14"/><rect class="a" x="33" y="16.97" width="5" height="8"/><rect class="a" x="16" y="26.97" width="22" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-text.svg b/public/assets/images/icons/yellow/file-text.svg
index 04ea7d447f488e225d0b4f1e7390c24301d664fb..f950a778dabbda7b6fc5dda3dbae0df175984a25 100644
--- a/public/assets/images/icons/yellow/file-text.svg
+++ b/public/assets/images/icons/yellow/file-text.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="10.97" width="9" height="9"/><rect class="a" x="28" y="10.97" width="10" height="3"/><rect class="a" x="28" y="16.97" width="10" height="3"/><rect class="a" x="16" y="22.97" width="22" height="3"/><rect class="a" x="16" y="28.97" width="22" height="3"/><rect class="a" x="16" y="34.97" width="13" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><rect class="a" x="16" y="10.97" width="9" height="9"/><rect class="a" x="28" y="10.97" width="10" height="3"/><rect class="a" x="28" y="16.97" width="10" height="3"/><rect class="a" x="16" y="22.97" width="22" height="3"/><rect class="a" x="16" y="28.97" width="22" height="3"/><rect class="a" x="16" y="34.97" width="13" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-video.svg b/public/assets/images/icons/yellow/file-video.svg
index 94b56b7b6a446b267a56368df7889f8f7dd4d36a..9d5d223eee94e8b8b8b572d44b6f600474a7279d 100644
--- a/public/assets/images/icons/yellow/file-video.svg
+++ b/public/assets/images/icons/yellow/file-video.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M36.62,15.42,32.5,18.17V15.73A1.69,1.69,0,0,0,30.82,14H17.68A1.69,1.69,0,0,0,16,15.73V26.11a1.68,1.68,0,0,0,1.68,1.68H30.82a1.68,1.68,0,0,0,1.68-1.68V23.67l4.12,2.75H38v-11ZM31,26.11a.14.14,0,0,1-.14.14H17.68a.14.14,0,0,1-.14-.14V15.73a.15.15,0,0,1,.14-.15H30.82a.15.15,0,0,1,.14.15Z"/><polygon class="a" points="21.5 25.04 27.69 20.92 21.5 16.79 21.5 25.04"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M36.62,15.42,32.5,18.17V15.73A1.69,1.69,0,0,0,30.82,14H17.68A1.69,1.69,0,0,0,16,15.73V26.11a1.68,1.68,0,0,0,1.68,1.68H30.82a1.68,1.68,0,0,0,1.68-1.68V23.67l4.12,2.75H38v-11ZM31,26.11a.14.14,0,0,1-.14.14H17.68a.14.14,0,0,1-.14-.14V15.73a.15.15,0,0,1,.14-.15H30.82a.15.15,0,0,1,.14.15Z"/><polygon class="a" points="21.5 25.04 27.69 20.92 21.5 16.79 21.5 25.04"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-video2.svg b/public/assets/images/icons/yellow/file-video2.svg
index 898923e799744dfb5175443778c56d9d84366bdb..2107971ee9773e5c352e212b026f90eb76547ed8 100644
--- a/public/assets/images/icons/yellow/file-video2.svg
+++ b/public/assets/images/icons/yellow/file-video2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.12 30.47 35.88 19.97 20.13 9.47 20.12 30.47"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><polygon class="a" points="20.12 30.47 35.88 19.97 20.13 9.47 20.12 30.47"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file-word.svg b/public/assets/images/icons/yellow/file-word.svg
index 1b6bec1cd6c9f4fdba71148fcfb9fe75017502ee..eaf8dc3440653b3430c37e892d3ce9eff581ec82 100644
--- a/public/assets/images/icons/yellow/file-word.svg
+++ b/public/assets/images/icons/yellow/file-word.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M33.2,30H30.28L27,18.44,23.69,30H20.78L16,11h3.65l2.76,12,3.27-12h2.61l3.27,12,2.79-12H38Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/><path class="a" d="M33.2,30H30.28L27,18.44,23.69,30H20.78L16,11h3.65l2.76,12,3.27-12h2.61l3.27,12,2.79-12H38Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file.svg b/public/assets/images/icons/yellow/file.svg
index d57c626bb6190f1b12f9c6f95cf166580e9e5d24..c76824661bf13e4125946828349f5502d43df4c3 100644
--- a/public/assets/images/icons/yellow/file.svg
+++ b/public/assets/images/icons/yellow/file.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/file2.svg b/public/assets/images/icons/yellow/file2.svg
index d57c626bb6190f1b12f9c6f95cf166580e9e5d24..c76824661bf13e4125946828349f5502d43df4c3 100644
--- a/public/assets/images/icons/yellow/file2.svg
+++ b/public/assets/images/icons/yellow/file2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M10,3V51H32.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,44,39.49V3Zm3.09,3.09H40.91V36a3,3,0,0,1-3,3H32v5.91a3,3,0,0,1-3,3H13.09ZM35,46.68V42h4.64Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/files.svg b/public/assets/images/icons/yellow/files.svg
index 6af86422d048ffa46e62438e91ea32d83b782c8d..85cf7102d74f581e6f98c02986bebf6dbc886bcd 100644
--- a/public/assets/images/icons/yellow/files.svg
+++ b/public/assets/images/icons/yellow/files.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="a" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="a" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/files2.svg b/public/assets/images/icons/yellow/files2.svg
index 49d786c93eeec86816620c904ce468960a9e265d..ebd216a1b4ad335e1d63197dbd1036e3bae3ccb0 100644
--- a/public/assets/images/icons/yellow/files2.svg
+++ b/public/assets/images/icons/yellow/files2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="docs"><g id="files"><path class="cls-1" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="cls-1" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="docs"><g id="files"><path class="cls-1" d="M9,51H27.6a6,6,0,0,0,4.28-1.79l5.39-5.48A6,6,0,0,0,39,39.49V9H9Zm21-4.29V42h4.64ZM12.09,12.06H35.91V36a3,3,0,0,1-3,3H27v5.91a3,3,0,0,1-3,3H12.09Z"/><path class="cls-1" d="M42,3H15V6H42V36a3.17,3.17,0,0,0,2.08-1A2.78,2.78,0,0,0,45,33V3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/filter.svg b/public/assets/images/icons/yellow/filter.svg
index 1eb606f20fdf0ff67c05ee8581464f51c693630a..dbaa313864457947675ed7ee25d39d51f290aa2a 100644
--- a/public/assets/images/icons/yellow/filter.svg
+++ b/public/assets/images/icons/yellow/filter.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><path id="filter" d="M21.1,49.89v-20a1.91,1.91,0,0,0-.41-1.19L3,6.22H51L33.54,28.37a3.09,3.09,0,0,0-.65,1.89V43.39ZM9.33,9.29,23.1,26.78a5,5,0,0,1,1.07,3.09V44.69l5.64-3.12V30.26a6.1,6.1,0,0,1,1.32-3.78L44.66,9.29Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><path id="filter" d="M21.1,49.89v-20a1.91,1.91,0,0,0-.41-1.19L3,6.22H51L33.54,28.37a3.09,3.09,0,0,0-.65,1.89V43.39ZM9.33,9.29,23.1,26.78a5,5,0,0,1,1.07,3.09V44.69l5.64-3.12V30.26a6.1,6.1,0,0,1,1.32-3.78L44.66,9.29Z"/></svg>
diff --git a/public/assets/images/icons/yellow/filter2.svg b/public/assets/images/icons/yellow/filter2.svg
index baf34b548244ca9ada19319be8ecbdede6499d0b..0f9da02423d1583e8281c1c647d23902132708b0 100644
--- a/public/assets/images/icons/yellow/filter2.svg
+++ b/public/assets/images/icons/yellow/filter2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="filter2"><polygon points="16.97 30.39 37.02 30.39 42.05 21.7 11.94 21.7 16.97 30.39"/><polygon points="3.01 6.22 8.32 15.41 45.67 15.41 50.98 6.22 3.01 6.22"/><polygon points="27 47.77 33.4 36.68 20.59 36.68 27 47.77"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="filter2"><polygon points="16.97 30.39 37.02 30.39 42.05 21.7 11.94 21.7 16.97 30.39"/><polygon points="3.01 6.22 8.32 15.41 45.67 15.41 50.98 6.22 3.01 6.22"/><polygon points="27 47.77 33.4 36.68 20.59 36.68 27 47.77"/></g></svg>
diff --git a/public/assets/images/icons/yellow/fishbowl.svg b/public/assets/images/icons/yellow/fishbowl.svg
index 4d422a40a97b8cc8804ba29baa682cc1fb5a1bab..af2ba50255001d864ea7f4573ab08538831e5db1 100644
--- a/public/assets/images/icons/yellow/fishbowl.svg
+++ b/public/assets/images/icons/yellow/fishbowl.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="fishbowl"><path class="cls-1" d="M51,27a23.69,23.69,0,0,0-4.25-13.58,1.61,1.61,0,0,0-2.23-.41,1.6,1.6,0,0,0-.41,2.22A20.47,20.47,0,0,1,47.8,27a21.51,21.51,0,0,1-.37,3.87,15,15,0,0,1-12,6.05A15.3,15.3,0,0,1,20.27,21.53c0-.07,0-.15,0-.22A25.31,25.31,0,0,0,7,32.57,20.19,20.19,0,0,1,6.2,27,20.51,20.51,0,0,1,10,15.17,1.59,1.59,0,0,0,9.57,13a1.62,1.62,0,0,0-2.23.39,23.77,23.77,0,0,0,6,33.29,3.21,3.21,0,0,0-.19.92A3.43,3.43,0,0,0,16.54,51H37.37a3.43,3.43,0,0,0,3.42-3.42,3.14,3.14,0,0,0-.18-.86A23.83,23.83,0,0,0,51,27Z"/><path class="cls-1" d="M26.88,16.28A14,14,0,0,0,34,12.43c4.47-4.9,3.31-9.53,3.31-9.53s-4.75-.71-9.22,4.19A13.88,13.88,0,0,0,25,14.54l-5.13,1.63,5.91,5.34Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="fishbowl"><path class="cls-1" d="M51,27a23.69,23.69,0,0,0-4.25-13.58,1.61,1.61,0,0,0-2.23-.41,1.6,1.6,0,0,0-.41,2.22A20.47,20.47,0,0,1,47.8,27a21.51,21.51,0,0,1-.37,3.87,15,15,0,0,1-12,6.05A15.3,15.3,0,0,1,20.27,21.53c0-.07,0-.15,0-.22A25.31,25.31,0,0,0,7,32.57,20.19,20.19,0,0,1,6.2,27,20.51,20.51,0,0,1,10,15.17,1.59,1.59,0,0,0,9.57,13a1.62,1.62,0,0,0-2.23.39,23.77,23.77,0,0,0,6,33.29,3.21,3.21,0,0,0-.19.92A3.43,3.43,0,0,0,16.54,51H37.37a3.43,3.43,0,0,0,3.42-3.42,3.14,3.14,0,0,0-.18-.86A23.83,23.83,0,0,0,51,27Z"/><path class="cls-1" d="M26.88,16.28A14,14,0,0,0,34,12.43c4.47-4.9,3.31-9.53,3.31-9.53s-4.75-.71-9.22,4.19A13.88,13.88,0,0,0,25,14.54l-5.13,1.63,5.91,5.34Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-broken.svg b/public/assets/images/icons/yellow/folder-broken.svg
index 3daa935208eef127527fd331b9977883ad3800d3..5aeb20c671f7c5e86e6e6768a36938e18009be6a 100644
--- a/public/assets/images/icons/yellow/folder-broken.svg
+++ b/public/assets/images/icons/yellow/folder-broken.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-broken2.svg b/public/assets/images/icons/yellow/folder-broken2.svg
index 3daa935208eef127527fd331b9977883ad3800d3..5aeb20c671f7c5e86e6e6768a36938e18009be6a 100644
--- a/public/assets/images/icons/yellow/folder-broken2.svg
+++ b/public/assets/images/icons/yellow/folder-broken2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M23.91,41H6V11.94H29.07L29.7,9H28V7.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V9H3V44H23.27Z"/><polygon class="a" points="32.7 14.03 32.07 16.94 48 16.94 48 46.03 26.91 46.03 26.27 49.03 51 49.03 51 14.03 32.7 14.03"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-date-empty.svg b/public/assets/images/icons/yellow/folder-date-empty.svg
index 6b1501a177d3bbe8fcc2ac93a2c48b0b9cc77579..c453cfb410d97c045404e23ce28c864769b4f5bc 100644
--- a/public/assets/images/icons/yellow/folder-date-empty.svg
+++ b/public/assets/images/icons/yellow/folder-date-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-date-empty2.svg b/public/assets/images/icons/yellow/folder-date-empty2.svg
index 6b1501a177d3bbe8fcc2ac93a2c48b0b9cc77579..c453cfb410d97c045404e23ce28c864769b4f5bc 100644
--- a/public/assets/images/icons/yellow/folder-date-empty2.svg
+++ b/public/assets/images/icons/yellow/folder-date-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,17A11,11,0,1,0,38,28,11,11,0,0,0,27,17ZM27,36.8A8.77,8.77,0,1,1,35.78,28,8.78,8.78,0,0,1,27,36.8Z"/><polygon class="a" points="25.38 20.62 25.38 27.45 21.16 29.91 22.83 32.83 28.72 29.41 28.76 29.41 28.75 20.62 25.38 20.62"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-date-full.svg b/public/assets/images/icons/yellow/folder-date-full.svg
index 43be0976bce62a1421aac7658bcd38a3b4b79ab4..97475a46e795c372a1ae571c54ec009a1da5684b 100644
--- a/public/assets/images/icons/yellow/folder-date-full.svg
+++ b/public/assets/images/icons/yellow/folder-date-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-date-full2.svg b/public/assets/images/icons/yellow/folder-date-full2.svg
index 43be0976bce62a1421aac7658bcd38a3b4b79ab4..97475a46e795c372a1ae571c54ec009a1da5684b 100644
--- a/public/assets/images/icons/yellow/folder-date-full2.svg
+++ b/public/assets/images/icons/yellow/folder-date-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M24,22a9,9,0,1,0,9,9A9,9,0,0,0,24,22Zm0,16.18A7.18,7.18,0,1,1,31.18,31,7.19,7.19,0,0,1,24,38.21Z"/><polygon class="a" points="22.68 24.97 22.68 30.55 19.22 32.56 20.59 34.96 25.41 32.16 25.44 32.16 25.43 24.97 22.68 24.97"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-edit-empty.svg b/public/assets/images/icons/yellow/folder-edit-empty.svg
index 2a55291246524814018b99fafe6f503dc96d737e..a7dec225c01915e5fb103b852a060ebc900d67cc 100644
--- a/public/assets/images/icons/yellow/folder-edit-empty.svg
+++ b/public/assets/images/icons/yellow/folder-edit-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-edit-empty2.svg b/public/assets/images/icons/yellow/folder-edit-empty2.svg
index 2a55291246524814018b99fafe6f503dc96d737e..a7dec225c01915e5fb103b852a060ebc900d67cc 100644
--- a/public/assets/images/icons/yellow/folder-edit-empty2.svg
+++ b/public/assets/images/icons/yellow/folder-edit-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M32.71,17.39a3.29,3.29,0,0,0-4.41,1.14l-.54.9L27,20.78,19.67,32.93l.06,6,5.54-2.92L32.55,23.9l.81-1.35.54-.9A3.06,3.06,0,0,0,32.71,17.39ZM24.1,34.89l-1,.54-1.78-1v-1.1l7.06-11.78,2.8,1.56Zm5.06-14.68.54-.9a1.64,1.64,0,0,1,2.21-.57,1.54,1.54,0,0,1,.59,2.13l-.54.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-edit-full.svg b/public/assets/images/icons/yellow/folder-edit-full.svg
index c08f291ccf781fcd23922863005a7f565804e2b3..79bb4cfec803ccb9519669fe319718a147cb9228 100644
--- a/public/assets/images/icons/yellow/folder-edit-full.svg
+++ b/public/assets/images/icons/yellow/folder-edit-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-edit-full2.svg b/public/assets/images/icons/yellow/folder-edit-full2.svg
index c08f291ccf781fcd23922863005a7f565804e2b3..79bb4cfec803ccb9519669fe319718a147cb9228 100644
--- a/public/assets/images/icons/yellow/folder-edit-full2.svg
+++ b/public/assets/images/icons/yellow/folder-edit-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M28.68,22.31a2.71,2.71,0,0,0-3.62.94l-.44.73L24,25.09,18,35,18.06,40l4.53-2.39,5.95-9.94.66-1.11.44-.73A2.5,2.5,0,0,0,28.68,22.31ZM21.62,36.63l-.83.44-1.45-.81v-.9l5.77-9.64L27.4,27Zm4.14-12,.45-.74a1.33,1.33,0,0,1,1.8-.46,1.25,1.25,0,0,1,.49,1.74l-.44.74Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-empty.svg b/public/assets/images/icons/yellow/folder-empty.svg
index 5c818062a0c01e5c3d7a98bbbaceb0abfc38691f..d4b15579590ecb1b9f38c49884ad6ede4330a40e 100644
--- a/public/assets/images/icons/yellow/folder-empty.svg
+++ b/public/assets/images/icons/yellow/folder-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-empty2.svg b/public/assets/images/icons/yellow/folder-empty2.svg
index 5c818062a0c01e5c3d7a98bbbaceb0abfc38691f..d4b15579590ecb1b9f38c49884ad6ede4330a40e 100644
--- a/public/assets/images/icons/yellow/folder-empty2.svg
+++ b/public/assets/images/icons/yellow/folder-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-full.svg b/public/assets/images/icons/yellow/folder-full.svg
index 79dc7ceaf341299ddb56b8fe7d899849511fece8..2fa148f0be05e75b6dad1a21adb878c21029575d 100644
--- a/public/assets/images/icons/yellow/folder-full.svg
+++ b/public/assets/images/icons/yellow/folder-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-full2.svg b/public/assets/images/icons/yellow/folder-full2.svg
index 79dc7ceaf341299ddb56b8fe7d899849511fece8..2fa148f0be05e75b6dad1a21adb878c21029575d 100644
--- a/public/assets/images/icons/yellow/folder-full2.svg
+++ b/public/assets/images/icons/yellow/folder-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-group-empty.svg b/public/assets/images/icons/yellow/folder-group-empty.svg
index 38c057f60db8309ba1d4775b9d12a86818409cac..e230ef16e7a584a71671e1db4a6ab513d8c60e98 100644
--- a/public/assets/images/icons/yellow/folder-group-empty.svg
+++ b/public/assets/images/icons/yellow/folder-group-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-group-empty2.svg b/public/assets/images/icons/yellow/folder-group-empty2.svg
index 38c057f60db8309ba1d4775b9d12a86818409cac..e230ef16e7a584a71671e1db4a6ab513d8c60e98 100644
--- a/public/assets/images/icons/yellow/folder-group-empty2.svg
+++ b/public/assets/images/icons/yellow/folder-group-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M18.44,26.65A3.44,3.44,0,1,0,15,23.21,3.43,3.43,0,0,0,18.44,26.65Z"/><path class="a" d="M20,28.28H16.87a3.32,3.32,0,0,0-3.31,3.31V35.9h9.76V31.59A3.32,3.32,0,0,0,20,28.28Z"/><path class="a" d="M35.56,30.72a3.44,3.44,0,1,0-3.44-3.44A3.44,3.44,0,0,0,35.56,30.72Z"/><path class="a" d="M37.12,32.35H34a3.31,3.31,0,0,0-3.3,3.31V40h9.76V35.66A3.33,3.33,0,0,0,37.12,32.35Z"/><path class="a" d="M26.05,22.84a3.44,3.44,0,1,0-3.44-3.43A3.43,3.43,0,0,0,26.05,22.84Z"/><path class="a" d="M30.93,32.1V27.79a3.32,3.32,0,0,0-3.32-3.31H24.47a3.29,3.29,0,0,0-3.28,3.18,4.12,4.12,0,0,1,2.95,3.93v.51Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-group-full.svg b/public/assets/images/icons/yellow/folder-group-full.svg
index f6432b9581aabba6bfb5fcaa04944df90b9c2db1..b1d8b741c9754548ebc74cf2a915baa804bb9c54 100644
--- a/public/assets/images/icons/yellow/folder-group-full.svg
+++ b/public/assets/images/icons/yellow/folder-group-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-group-full2.svg b/public/assets/images/icons/yellow/folder-group-full2.svg
index f6432b9581aabba6bfb5fcaa04944df90b9c2db1..b1d8b741c9754548ebc74cf2a915baa804bb9c54 100644
--- a/public/assets/images/icons/yellow/folder-group-full2.svg
+++ b/public/assets/images/icons/yellow/folder-group-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M17.59,30A2.58,2.58,0,1,0,15,27.46,2.57,2.57,0,0,0,17.59,30Z"/><path class="a" d="M18.76,31.26H16.41a2.48,2.48,0,0,0-2.47,2.48V37h7.31V33.74A2.49,2.49,0,0,0,18.76,31.26Z"/><path class="a" d="M30.41,33.09a2.58,2.58,0,1,0-2.58-2.57A2.57,2.57,0,0,0,30.41,33.09Z"/><path class="a" d="M31.58,34.31H29.23a2.48,2.48,0,0,0-2.47,2.48V40h7.3V36.79A2.49,2.49,0,0,0,31.58,34.31Z"/><path class="a" d="M23.29,27.19a2.58,2.58,0,1,0-2.57-2.57A2.58,2.58,0,0,0,23.29,27.19Z"/><path class="a" d="M26.94,34.12V30.89a2.49,2.49,0,0,0-2.48-2.48H22.11a2.48,2.48,0,0,0-2.46,2.39,3.08,3.08,0,0,1,2.21,2.94v.38Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-home-empty.svg b/public/assets/images/icons/yellow/folder-home-empty.svg
index a41a6cdb2c9154c3c404bec362cf565c194c4a39..cfb7609e574bd35f33451606474dfdb8b5887535 100644
--- a/public/assets/images/icons/yellow/folder-home-empty.svg
+++ b/public/assets/images/icons/yellow/folder-home-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><polygon class="a" points="26.97 17.47 16 28.45 19.21 28.45 27 20.64 34.8 28.43 38 28.45 26.97 17.47"/><polygon class="a" points="19.67 29.36 19.67 39.47 24.25 39.47 24.25 31.66 29.75 31.66 29.75 39.47 34.33 39.47 34.33 29.36 27 22.02 19.67 29.36"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><polygon class="a" points="26.97 17.47 16 28.45 19.21 28.45 27 20.64 34.8 28.43 38 28.45 26.97 17.47"/><polygon class="a" points="19.67 29.36 19.67 39.47 24.25 39.47 24.25 31.66 29.75 31.66 29.75 39.47 34.33 39.47 34.33 29.36 27 22.02 19.67 29.36"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-home-empty2.svg b/public/assets/images/icons/yellow/folder-home-empty2.svg
index 1ee8e80606ea11d26562fb5a03dd58c7a0a332f3..78adecbef8bb1a4108041e834868beef03d8c816 100644
--- a/public/assets/images/icons/yellow/folder-home-empty2.svg
+++ b/public/assets/images/icons/yellow/folder-home-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="27 16.97 16 28.28 17.79 28.28 17.79 38.97 23.84 38.97 23.84 30.61 30.16 30.61 30.16 38.97 36.21 38.97 36.21 28.28 38 28.28 27 16.97"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="27 16.97 16 28.28 17.79 28.28 17.79 38.97 23.84 38.97 23.84 30.61 30.16 30.61 30.16 38.97 36.21 38.97 36.21 28.28 38 28.28 27 16.97"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-home-full.svg b/public/assets/images/icons/yellow/folder-home-full.svg
index da6bb4d1d8b90d9f06d94e4237dd4261837820c7..0891f787a0d73269099d22abab3bb225b91d92e8 100644
--- a/public/assets/images/icons/yellow/folder-home-full.svg
+++ b/public/assets/images/icons/yellow/folder-home-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="23.98 21.97 15 30.95 17.63 30.95 24 24.56 30.38 30.94 33 30.95 23.98 21.97"/><polygon class="a" points="18 31.7 18 39.97 21.75 39.97 21.75 33.58 26.25 33.58 26.25 39.97 30 39.97 30 31.7 24 25.69 18 31.7"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="23.98 21.97 15 30.95 17.63 30.95 24 24.56 30.38 30.94 33 30.95 23.98 21.97"/><polygon class="a" points="18 31.7 18 39.97 21.75 39.97 21.75 33.58 26.25 33.58 26.25 39.97 30 39.97 30 31.7 24 25.69 18 31.7"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-home-full2.svg b/public/assets/images/icons/yellow/folder-home-full2.svg
index 74c95bbf06a5903c5bc99984518034f9b7f418b5..dfbb0b019c03752f405e322d0ed93871f02b7917 100644
--- a/public/assets/images/icons/yellow/folder-home-full2.svg
+++ b/public/assets/images/icons/yellow/folder-home-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="24 22.06 15.04 31.29 16.5 31.29 16.5 40.01 21.42 40.01 21.42 33.19 26.58 33.19 26.58 40.01 31.51 40.01 31.51 31.29 32.97 31.29 24 22.06"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="24 22.06 15.04 31.29 16.5 31.29 16.5 40.01 21.42 40.01 21.42 33.19 26.58 33.19 26.58 40.01 31.51 40.01 31.51 31.29 32.97 31.29 24 22.06"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-inbox-empty.svg b/public/assets/images/icons/yellow/folder-inbox-empty.svg
index f7bf19cdcbab01b2935b38b256c1a0e39e89140a..0f88ced27c2599e2d61c5e431750565719e81b56 100644
--- a/public/assets/images/icons/yellow/folder-inbox-empty.svg
+++ b/public/assets/images/icons/yellow/folder-inbox-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M12,17.47v3.06L27,30.91,42,20.53V17.47Zm15,9.7-9.59-6.64H36.59Z"/><polygon class="a" points="38.88 36.41 15.13 36.41 15.1 25.12 12 22.97 12 39.47 42 39.47 42 22.97 38.9 25.12 38.88 36.41"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M12,17.47v3.06L27,30.91,42,20.53V17.47Zm15,9.7-9.59-6.64H36.59Z"/><polygon class="a" points="38.88 36.41 15.13 36.41 15.1 25.12 12 22.97 12 39.47 42 39.47 42 22.97 38.9 25.12 38.88 36.41"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-inbox-full.svg b/public/assets/images/icons/yellow/folder-inbox-full.svg
index 7aaf21ad24e8c51e1a9ff3743b5f67f74ab16d39..b919cd3cc5212f7c79173111b4de51f94b1fe762 100644
--- a/public/assets/images/icons/yellow/folder-inbox-full.svg
+++ b/public/assets/images/icons/yellow/folder-inbox-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M12,22.41v2.5l12,8.5,12-8.5v-2.5Zm12,7.93-7.67-5.43H31.67Z"/><polygon class="a" points="33.5 37.91 14.5 37.91 14.48 28.66 12 26.91 12 40.41 36 40.41 36 26.91 33.52 28.66 33.5 37.91"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M12,22.41v2.5l12,8.5,12-8.5v-2.5Zm12,7.93-7.67-5.43H31.67Z"/><polygon class="a" points="33.5 37.91 14.5 37.91 14.48 28.66 12 26.91 12 40.41 36 40.41 36 26.91 33.52 28.66 33.5 37.91"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-lock-empty.svg b/public/assets/images/icons/yellow/folder-lock-empty.svg
index 46b72fcfb218765501c53cbf4d9bb221ef26b29d..85924913b4ba3c814b071c809f7052ce027f3a84 100644
--- a/public/assets/images/icons/yellow/folder-lock-empty.svg
+++ b/public/assets/images/icons/yellow/folder-lock-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-lock-empty2.svg b/public/assets/images/icons/yellow/folder-lock-empty2.svg
index 46b72fcfb218765501c53cbf4d9bb221ef26b29d..85924913b4ba3c814b071c809f7052ce027f3a84 100644
--- a/public/assets/images/icons/yellow/folder-lock-empty2.svg
+++ b/public/assets/images/icons/yellow/folder-lock-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M23.11,23.31a3.89,3.89,0,1,1,7.78,0v1.93h2.39V23.31a6.28,6.28,0,1,0-12.55,0v1.93h2.38Zm-4.42,3.58V39H35.32V26.89ZM28.47,35a1.47,1.47,0,0,1-2.93,0V31a1.47,1.47,0,0,1,2.93,0Z"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-lock-full.svg b/public/assets/images/icons/yellow/folder-lock-full.svg
index e376c29d01d279aa1bd02c24317fb697861665a8..21b0f63a0857b6d95f099fd412b61bebd00a70f5 100644
--- a/public/assets/images/icons/yellow/folder-lock-full.svg
+++ b/public/assets/images/icons/yellow/folder-lock-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-lock-full2.svg b/public/assets/images/icons/yellow/folder-lock-full2.svg
index e376c29d01d279aa1bd02c24317fb697861665a8..21b0f63a0857b6d95f099fd412b61bebd00a70f5 100644
--- a/public/assets/images/icons/yellow/folder-lock-full2.svg
+++ b/public/assets/images/icons/yellow/folder-lock-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M20.73,27.06a3.27,3.27,0,1,1,6.54,0v1.63h2V27.06a5.28,5.28,0,0,0-10.56,0v1.63h2Zm-3.72,3v10.2H31V30.08Zm8.22,6.79a1.23,1.23,0,0,1-2.46,0V33.48a1.23,1.23,0,0,1,2.46,0Z"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-parent.svg b/public/assets/images/icons/yellow/folder-parent.svg
index 49705ebbe56115acab12d453973142bf95b16a89..a4766e9cfca34a430ae0ef0855ce68be61b19753 100644
--- a/public/assets/images/icons/yellow/folder-parent.svg
+++ b/public/assets/images/icons/yellow/folder-parent.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="38 25 30.91 25 24 31.91 17.09 25 10 25 24 39 38 25"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><polygon class="a" points="38 25 30.91 25 24 31.91 17.09 25 10 25 24 39 38 25"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-plugin-market-empty.svg b/public/assets/images/icons/yellow/folder-plugin-market-empty.svg
index a36b054da9e839078b55599fc7ed2b8b13bc3c17..e408960708c0ede2544b12ef994c1b7d8e4da1ad 100644
--- a/public/assets/images/icons/yellow/folder-plugin-market-empty.svg
+++ b/public/assets/images/icons/yellow/folder-plugin-market-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M31.46,33.48a.92.92,0,0,0-.45.12,6.34,6.34,0,0,1-3.09.8,6.42,6.42,0,0,1-1.07-12.75,7.82,7.82,0,0,1,1.07-.08,6.2,6.2,0,0,1,1.62.21,1,1,0,0,0,.24,0,.91.91,0,0,0,.9-1L30.21,17H16V39H33l-.59-4.69A.91.91,0,0,0,31.46,33.48ZM17.37,37.59V18.34H29l.25,2a7.37,7.37,0,0,0-1.32-.12,8,8,0,0,0-1.29.11,7.79,7.79,0,0,0,1.29,15.48,7.89,7.89,0,0,0,3.17-.68l.31,2.49Z"/><path class="a" d="M31.58,17l.76,6.1a.91.91,0,0,1-1.47.83A5,5,0,0,0,27.42,23a5,5,0,1,0,4.37,8.24.92.92,0,0,1,1.63.45c.4,3.19.91,7.31.91,7.31H38V17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M31.46,33.48a.92.92,0,0,0-.45.12,6.34,6.34,0,0,1-3.09.8,6.42,6.42,0,0,1-1.07-12.75,7.82,7.82,0,0,1,1.07-.08,6.2,6.2,0,0,1,1.62.21,1,1,0,0,0,.24,0,.91.91,0,0,0,.9-1L30.21,17H16V39H33l-.59-4.69A.91.91,0,0,0,31.46,33.48ZM17.37,37.59V18.34H29l.25,2a7.37,7.37,0,0,0-1.32-.12,8,8,0,0,0-1.29.11,7.79,7.79,0,0,0,1.29,15.48,7.89,7.89,0,0,0,3.17-.68l.31,2.49Z"/><path class="a" d="M31.58,17l.76,6.1a.91.91,0,0,1-1.47.83A5,5,0,0,0,27.42,23a5,5,0,1,0,4.37,8.24.92.92,0,0,1,1.63.45c.4,3.19.91,7.31.91,7.31H38V17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-plugin-market-full.svg b/public/assets/images/icons/yellow/folder-plugin-market-full.svg
index 2298f8380acbcd0dcbad21dc2054d572a18fa117..a1290fb8dea3d9488623a8e5337b88d7b52c5e35 100644
--- a/public/assets/images/icons/yellow/folder-plugin-market-full.svg
+++ b/public/assets/images/icons/yellow/folder-plugin-market-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M27.65,35.48a.74.74,0,0,0-.37.1,5.25,5.25,0,1,1-3.4-9.78,5.1,5.1,0,0,1,.87-.07,5.33,5.33,0,0,1,1.33.17.63.63,0,0,0,.19,0,.74.74,0,0,0,.74-.84L26.63,22H15V40H28.87l-.47-3.84A.75.75,0,0,0,27.65,35.48ZM16.12,38.84V23.09h9.51l.2,1.61a6.47,6.47,0,0,0-1.08-.09,7.42,7.42,0,0,0-1.05.08A6.38,6.38,0,1,0,27.35,36.8l.25,2Z"/><path class="a" d="M27.75,22l.62,5a.75.75,0,0,1-1.2.68,4,4,0,0,0-2.82-.76,4.12,4.12,0,0,0,.4,8.23,4.09,4.09,0,0,0,3.17-1.49.75.75,0,0,1,1.33.37c.33,2.61.75,6,.75,6h3V22Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M27.65,35.48a.74.74,0,0,0-.37.1,5.25,5.25,0,1,1-3.4-9.78,5.1,5.1,0,0,1,.87-.07,5.33,5.33,0,0,1,1.33.17.63.63,0,0,0,.19,0,.74.74,0,0,0,.74-.84L26.63,22H15V40H28.87l-.47-3.84A.75.75,0,0,0,27.65,35.48ZM16.12,38.84V23.09h9.51l.2,1.61a6.47,6.47,0,0,0-1.08-.09,7.42,7.42,0,0,0-1.05.08A6.38,6.38,0,1,0,27.35,36.8l.25,2Z"/><path class="a" d="M27.75,22l.62,5a.75.75,0,0,1-1.2.68,4,4,0,0,0-2.82-.76,4.12,4.12,0,0,0,.4,8.23,4.09,4.09,0,0,0,3.17-1.49.75.75,0,0,1,1.33.37c.33,2.61.75,6,.75,6h3V22Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-public-empty.svg b/public/assets/images/icons/yellow/folder-public-empty.svg
index ddd1891c11fdc7ac400f8d037d1ab6314bcd3e44..8e288ff6691c05f7eadd92443ebb763c931cc731 100644
--- a/public/assets/images/icons/yellow/folder-public-empty.svg
+++ b/public/assets/images/icons/yellow/folder-public-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-public-empty2.svg b/public/assets/images/icons/yellow/folder-public-empty2.svg
index ddd1891c11fdc7ac400f8d037d1ab6314bcd3e44..8e288ff6691c05f7eadd92443ebb763c931cc731 100644
--- a/public/assets/images/icons/yellow/folder-public-empty2.svg
+++ b/public/assets/images/icons/yellow/folder-public-empty2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/><path class="a" d="M27,17a11.5,11.5,0,1,0,11.5,11.5A11.5,11.5,0,0,0,27,17Zm.82,8.48c.8,0,1.63-.1,2.45-.2.06.75.11,1.55.13,2.4H27.82Zm0-1.63V19.34a8.27,8.27,0,0,1,1.42.25,28.48,28.48,0,0,1,.84,4C29.33,23.72,28.56,23.78,27.82,23.82Zm-1.64,0c-.72,0-1.48-.1-2.24-.19a27.44,27.44,0,0,1,.84-4,9.31,9.31,0,0,1,1.4-.24Zm0,1.64v2.2H23.63c0-.86.06-1.66.13-2.41C24.57,25.34,25.4,25.42,26.18,25.45ZM22,27.65H17.87a9.22,9.22,0,0,1,.93-3.26c.83.18,2,.42,3.33.63C22.06,25.83,22,26.71,22,27.65Zm0,1.64q0,1.5.15,2.79c-1.3.2-2.45.44-3.27.62a9.17,9.17,0,0,1-1-3.41Zm1.63,0h2.56v2.37c-.79,0-1.61.1-2.42.19C23.69,31.06,23.64,30.2,23.62,29.29Zm2.56,4V37.6a8.79,8.79,0,0,1-1.45-.25A28.54,28.54,0,0,1,24,33.48C24.69,33.39,25.45,33.32,26.18,33.29Zm1.64,0c.73,0,1.5.1,2.27.2a27.2,27.2,0,0,1-.79,3.84,9,9,0,0,1-1.48.26Zm0-1.64V29.29h2.59c0,.92-.07,1.78-.14,2.58C29.45,31.77,28.62,31.69,27.82,31.66ZM32,29.29h4.09a9.22,9.22,0,0,1-1,3.42c-.82-.18-2-.41-3.24-.61C32,31.24,32,30.3,32,29.29Zm0-1.64c0-.93-.08-1.81-.15-2.63,1.32-.2,2.49-.44,3.31-.63a9,9,0,0,1,.93,3.26Zm2.24-4.73c-.71.15-1.6.32-2.58.48a29,29,0,0,0-.58-3.11A9.15,9.15,0,0,1,34.28,22.92ZM22.89,20.28a31.56,31.56,0,0,0-.57,3.11c-1-.16-1.87-.33-2.6-.48A9.37,9.37,0,0,1,22.89,20.28ZM19.83,34.17c.7-.15,1.56-.31,2.5-.46.16,1.17.35,2.16.53,2.94A9.34,9.34,0,0,1,19.83,34.17Zm11.35,2.45a28,28,0,0,0,.53-2.89c.91.15,1.76.31,2.46.45A9.18,9.18,0,0,1,31.18,36.62Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-public-full.svg b/public/assets/images/icons/yellow/folder-public-full.svg
index d52a786032cea0bea943db6eaf371826356db953..924f091aec7ea693867007b5ee2278478102ba2b 100644
--- a/public/assets/images/icons/yellow/folder-public-full.svg
+++ b/public/assets/images/icons/yellow/folder-public-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-public-full2.svg b/public/assets/images/icons/yellow/folder-public-full2.svg
index d52a786032cea0bea943db6eaf371826356db953..924f091aec7ea693867007b5ee2278478102ba2b 100644
--- a/public/assets/images/icons/yellow/folder-public-full2.svg
+++ b/public/assets/images/icons/yellow/folder-public-full2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/><path class="a" d="M23.5,21.47A9.5,9.5,0,1,0,33,31,9.5,9.5,0,0,0,23.5,21.47Zm.68,7c.66,0,1.35-.09,2-.17.05.62.09,1.28.11,2H24.18Zm0-1.35v-3.7a7.52,7.52,0,0,1,1.17.2,24.75,24.75,0,0,1,.7,3.34C25.42,27,24.79,27.1,24.18,27.13Zm-1.35,0c-.6,0-1.23-.08-1.86-.16a22.11,22.11,0,0,1,.7-3.33,6.25,6.25,0,0,1,1.16-.2Zm0,1.36v1.81H20.71c0-.71.06-1.37.11-2C21.49,28.39,22.17,28.45,22.83,28.48Zm-3.47,1.81H16a7.21,7.21,0,0,1,.77-2.69c.68.15,1.66.34,2.75.52C19.42,28.79,19.38,29.51,19.36,30.29Zm0,1.36c0,.82.06,1.59.12,2.3-1.06.17-2,.36-2.7.51A7.57,7.57,0,0,1,16,31.65Zm1.35,0h2.12v2c-.66,0-1.34.09-2,.17C20.77,33.11,20.73,32.4,20.71,31.65ZM22.83,35v3.56a6.69,6.69,0,0,1-1.2-.21A23.35,23.35,0,0,1,21,35.11C21.59,35,22.22,35,22.83,35Zm1.35,0c.6,0,1.24.08,1.87.16a21.19,21.19,0,0,1-.65,3.17,6.11,6.11,0,0,1-1.22.22Zm0-1.36v-2h2.13c0,.76,0,1.47-.11,2.13C25.52,33.69,24.83,33.63,24.18,33.6Zm3.48-2H31a7.5,7.5,0,0,1-.83,2.82c-.67-.15-1.62-.34-2.67-.5C27.61,33.26,27.65,32.48,27.66,31.65Zm0-1.36c0-.77-.06-1.49-.12-2.17,1.09-.17,2.06-.37,2.74-.52A7.45,7.45,0,0,1,31,30.29Zm1.86-3.91c-.6.13-1.33.27-2.14.4a25.57,25.57,0,0,0-.47-2.57A7.82,7.82,0,0,1,29.52,26.38ZM20.11,24.2c-.16.66-.33,1.53-.48,2.57-.8-.13-1.54-.27-2.14-.39A7.58,7.58,0,0,1,20.11,24.2ZM17.57,35.68c.59-.12,1.3-.26,2.07-.38.13,1,.29,1.78.44,2.42A7.63,7.63,0,0,1,17.57,35.68Zm9.39,2c.15-.63.3-1.43.43-2.39.75.13,1.45.26,2,.38A7.72,7.72,0,0,1,27,37.7Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-topic-empty.svg b/public/assets/images/icons/yellow/folder-topic-empty.svg
index 29a4485c0278a0a31ad841debf3de4613ec94e7f..78abd641fa81b91120a05a0b0bed6063a4a0f0a4 100644
--- a/public/assets/images/icons/yellow/folder-topic-empty.svg
+++ b/public/assets/images/icons/yellow/folder-topic-empty.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M29.89,18.41V17H24v1.38H18.18V39H35.82V18.41Zm3.59,18.43h-13V20.6H24v.51h5.92V20.6h3.59Z"/><rect class="a" x="22.59" y="26.57" width="8.82" height="2.78"/><rect class="a" x="22.59" y="30.69" width="8.82" height="2.89"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M29.89,18.41V17H24v1.38H18.18V39H35.82V18.41Zm3.59,18.43h-13V20.6H24v.51h5.92V20.6h3.59Z"/><rect class="a" x="22.59" y="26.57" width="8.82" height="2.78"/><rect class="a" x="22.59" y="30.69" width="8.82" height="2.89"/><path class="a" d="M28,11V9.94a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3V11H3V46H51V11ZM48,43H6V13.94H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/folder-topic-full.svg b/public/assets/images/icons/yellow/folder-topic-full.svg
index 3a92c3319ab413f45973e342f5dbb7724f049d93..a64bd0592c7bdec63f27cf07e623f5ccf8242427 100644
--- a/public/assets/images/icons/yellow/folder-topic-full.svg
+++ b/public/assets/images/icons/yellow/folder-topic-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M26.37,23.15V22H21.52v1.12H16.78V40H31.22V23.15ZM29.3,38.24H18.7V25h2.82v.42h4.85V25H29.3Z"/><rect class="a" x="20.39" y="29.83" width="7.22" height="2.27"/><rect class="a" x="20.39" y="33.21" width="7.22" height="2.36"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M26.37,23.15V22H21.52v1.12H16.78V40H31.22V23.15ZM29.3,38.24H18.7V25h2.82v.42h4.85V25H29.3Z"/><rect class="a" x="20.39" y="29.83" width="7.22" height="2.27"/><rect class="a" x="20.39" y="33.21" width="7.22" height="2.36"/><path class="a" d="M3,45.94H45v-30H3Zm3-27H42v24H6Z"/><path class="a" d="M30,10V9.94a3,3,0,0,0-3-3H18a3,3,0,0,0-3,3V10H9v2.91H48V40h3V10Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/forum.svg b/public/assets/images/icons/yellow/forum.svg
index f2f1c9ffa9888807542f0bd87770564d4d782009..b1fc693cf04298381f2e04f26d7fe4990182249b 100644
--- a/public/assets/images/icons/yellow/forum.svg
+++ b/public/assets/images/icons/yellow/forum.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="forum"><path class="cls-1" d="M40.41,11H8.59A5.61,5.61,0,0,0,3,16.56V33.38A5.61,5.61,0,0,0,8.59,39H14l0,9A12.07,12.07,0,0,0,25.6,39H40.41A5.61,5.61,0,0,0,46,33.38V16.56A5.61,5.61,0,0,0,40.41,11ZM43,33.38A2.59,2.59,0,0,1,40.41,36H23a9,9,0,0,1-6,8.48L17,36H8.59A2.59,2.59,0,0,1,6,33.38V16.56A2.59,2.59,0,0,1,8.59,14H40.41A2.59,2.59,0,0,1,43,16.56Z"/><path class="cls-1" d="M45.53,6H13.47A5.46,5.46,0,0,0,8.6,9H46V9a2.47,2.47,0,0,1,2,2.42V33.37a5.49,5.49,0,0,0,3-4.87V11.44A5.48,5.48,0,0,0,45.53,6Z"/><rect class="cls-1" x="10" y="18.97" width="30" height="4"/><rect class="cls-1" x="10" y="25.97" width="30" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/fullscreen-off.svg b/public/assets/images/icons/yellow/fullscreen-off.svg
index 22b1ea564da81fc37fbfa9693d5303dc47d3c5ea..a98b0e00c124d504592d5948811c4bcebd09ec64 100644
--- a/public/assets/images/icons/yellow/fullscreen-off.svg
+++ b/public/assets/images/icons/yellow/fullscreen-off.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="fullscreen-off"><polygon points="51 20.13 33.87 20.13 33.87 2.99 37.29 2.99 37.29 16.7 51 16.7 51 20.13"/><polygon points="33.86 50.87 33.86 33.73 51 33.73 51 37.16 37.29 37.16 37.29 50.87 33.86 50.87"/><polygon points="20.16 50.97 16.73 50.97 16.73 37.26 3.02 37.26 3.02 33.84 20.16 33.84 20.16 50.97"/><polygon points="3.02 20.02 3.02 16.6 16.73 16.6 16.73 2.89 20.16 2.89 20.16 20.02 3.02 20.02"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="fullscreen-off"><polygon points="51 20.13 33.87 20.13 33.87 2.99 37.29 2.99 37.29 16.7 51 16.7 51 20.13"/><polygon points="33.86 50.87 33.86 33.73 51 33.73 51 37.16 37.29 37.16 37.29 50.87 33.86 50.87"/><polygon points="20.16 50.97 16.73 50.97 16.73 37.26 3.02 37.26 3.02 33.84 20.16 33.84 20.16 50.97"/><polygon points="3.02 20.02 3.02 16.6 16.73 16.6 16.73 2.89 20.16 2.89 20.16 20.02 3.02 20.02"/></g></svg>
diff --git a/public/assets/images/icons/yellow/fullscreen-on.svg b/public/assets/images/icons/yellow/fullscreen-on.svg
index e4cf47a02a99d0cccced531e07eb59c2bf1a6e86..3a3d01b8ca76e7cad309363deb394b5ded2efd5f 100644
--- a/public/assets/images/icons/yellow/fullscreen-on.svg
+++ b/public/assets/images/icons/yellow/fullscreen-on.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="zoom-in-3"><polygon points="51 20.12 47.57 20.12 47.57 6.42 33.86 6.42 33.86 2.99 51 2.99 51 20.12"/><polygon points="20.15 50.97 3.02 50.97 3.02 33.83 6.44 33.83 6.44 47.54 20.15 47.54 20.15 50.97"/><polygon points="33.86 50.97 33.86 47.54 47.57 47.54 47.57 33.83 51 33.83 51 50.97 33.86 50.97"/><polygon points="3.02 20.12 3.02 2.99 20.15 2.99 20.15 6.42 6.44 6.42 6.44 20.12 3.02 20.12"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="zoom-in-3"><polygon points="51 20.12 47.57 20.12 47.57 6.42 33.86 6.42 33.86 2.99 51 2.99 51 20.12"/><polygon points="20.15 50.97 3.02 50.97 3.02 33.83 6.44 33.83 6.44 47.54 20.15 47.54 20.15 50.97"/><polygon points="33.86 50.97 33.86 47.54 47.57 47.54 47.57 33.83 51 33.83 51 50.97 33.86 50.97"/><polygon points="3.02 20.12 3.02 2.99 20.15 2.99 20.15 6.42 6.44 6.42 6.44 20.12 3.02 20.12"/></g></svg>
diff --git a/public/assets/images/icons/yellow/graph.svg b/public/assets/images/icons/yellow/graph.svg
index cdc90b7f8e9cf04d6113c82095da47ea2173a802..6dbbf929a0b8eb62ce9066890d429b89cb36126d 100644
--- a/public/assets/images/icons/yellow/graph.svg
+++ b/public/assets/images/icons/yellow/graph.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><path id="graph" class="cls-1" d="M6,44V25.33l9.5,10.36,11.05-12,5.95,5.95L45.23,16.86A3.25,3.25,0,0,0,46,17a3,3,0,1,0-3-3,3.25,3.25,0,0,0,.11.77L32.5,25.35,26.45,19.3l-10.95,12L6,20.89V7H3V47H51V44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><path id="graph" class="cls-1" d="M6,44V25.33l9.5,10.36,11.05-12,5.95,5.95L45.23,16.86A3.25,3.25,0,0,0,46,17a3,3,0,1,0-3-3,3.25,3.25,0,0,0,.11.77L32.5,25.35,26.45,19.3l-10.95,12L6,20.89V7H3V47H51V44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/group.svg b/public/assets/images/icons/yellow/group.svg
index ed1c6b15bd93f52e8c54c891662831086391c729..904df01f6577b5982e143d8e129cd0f4d7794138 100644
--- a/public/assets/images/icons/yellow/group.svg
+++ b/public/assets/images/icons/yellow/group.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/group2.svg b/public/assets/images/icons/yellow/group2.svg
index 1f9143a14e385b979cb26935efbd371f1fc22d2c..59c6854fdcb726fb67382d1a67887992c1f8150d 100644
--- a/public/assets/images/icons/yellow/group2.svg
+++ b/public/assets/images/icons/yellow/group2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M11.72,24.63a6.16,6.16,0,1,0-6.15-6.16A6.15,6.15,0,0,0,11.72,24.63Z"/><path class="a" d="M14.51,27.55H8.9A5.94,5.94,0,0,0,3,33.49V41.2H20.43V33.49A6,6,0,0,0,14.51,27.55Z"/><path class="a" d="M42.28,31.92a6.16,6.16,0,1,0-6.14-6.15A6.15,6.15,0,0,0,42.28,31.92Z"/><path class="a" d="M45.08,34.85H39.47a5.92,5.92,0,0,0-5.9,5.93V48.5H51V40.78A6,6,0,0,0,45.08,34.85Z"/><path class="a" d="M25.3,17.82a6.16,6.16,0,1,0-6.14-6.16A6.15,6.15,0,0,0,25.3,17.82Z"/><path class="a" d="M34,34.39V26.67a6,6,0,0,0-5.92-5.93H22.49a5.91,5.91,0,0,0-5.88,5.7,7.38,7.38,0,0,1,5.28,7.05v.9Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M11.72,24.63a6.16,6.16,0,1,0-6.15-6.16A6.15,6.15,0,0,0,11.72,24.63Z"/><path class="a" d="M14.51,27.55H8.9A5.94,5.94,0,0,0,3,33.49V41.2H20.43V33.49A6,6,0,0,0,14.51,27.55Z"/><path class="a" d="M42.28,31.92a6.16,6.16,0,1,0-6.14-6.15A6.15,6.15,0,0,0,42.28,31.92Z"/><path class="a" d="M45.08,34.85H39.47a5.92,5.92,0,0,0-5.9,5.93V48.5H51V40.78A6,6,0,0,0,45.08,34.85Z"/><path class="a" d="M25.3,17.82a6.16,6.16,0,1,0-6.14-6.16A6.15,6.15,0,0,0,25.3,17.82Z"/><path class="a" d="M34,34.39V26.67a6,6,0,0,0-5.92-5.93H22.49a5.91,5.91,0,0,0-5.88,5.7,7.38,7.38,0,0,1,5.28,7.05v.9Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/group3.svg b/public/assets/images/icons/yellow/group3.svg
index 796946a810f6bce4d00581a2ef2aacfe3cf4d334..8619c44424651e28d608faba503cb48fff1bd186 100644
--- a/public/assets/images/icons/yellow/group3.svg
+++ b/public/assets/images/icons/yellow/group3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M21.33,27.49a7.83,7.83,0,0,1-2.16,5.39H34.83A7.87,7.87,0,0,1,36.06,21a6.06,6.06,0,0,0-4.68-2.25H22.6A6,6,0,0,0,17.93,21,7.87,7.87,0,0,1,21.33,27.49Z"/><path class="a" d="M27,15.74a6.37,6.37,0,1,0-6.33-6.38A6.34,6.34,0,0,0,27,15.74Z"/><path class="a" d="M13.49,33.86a6.37,6.37,0,1,0-6.33-6.37A6.35,6.35,0,0,0,13.49,33.86Z"/><path class="a" d="M17.87,36.88H9.09A6.13,6.13,0,0,0,3,43v8H24V43A6.15,6.15,0,0,0,17.87,36.88Z"/><path class="a" d="M34.18,27.49a6.34,6.34,0,1,0,6.33-6.37A6.35,6.35,0,0,0,34.18,27.49Z"/><path class="a" d="M44.89,36.88H36.11A6.13,6.13,0,0,0,30,43v8H51V43A6.15,6.15,0,0,0,44.89,36.88Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M21.33,27.49a7.83,7.83,0,0,1-2.16,5.39H34.83A7.87,7.87,0,0,1,36.06,21a6.06,6.06,0,0,0-4.68-2.25H22.6A6,6,0,0,0,17.93,21,7.87,7.87,0,0,1,21.33,27.49Z"/><path class="a" d="M27,15.74a6.37,6.37,0,1,0-6.33-6.38A6.34,6.34,0,0,0,27,15.74Z"/><path class="a" d="M13.49,33.86a6.37,6.37,0,1,0-6.33-6.37A6.35,6.35,0,0,0,13.49,33.86Z"/><path class="a" d="M17.87,36.88H9.09A6.13,6.13,0,0,0,3,43v8H24V43A6.15,6.15,0,0,0,17.87,36.88Z"/><path class="a" d="M34.18,27.49a6.34,6.34,0,1,0,6.33-6.37A6.35,6.35,0,0,0,34.18,27.49Z"/><path class="a" d="M44.89,36.88H36.11A6.13,6.13,0,0,0,30,43v8H51V43A6.15,6.15,0,0,0,44.89,36.88Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/guestbook.svg b/public/assets/images/icons/yellow/guestbook.svg
index a35093675b1f811bf5624d6db81db7e04737a4b7..4762397a664662307284e4a48adeb21a491ba2b5 100644
--- a/public/assets/images/icons/yellow/guestbook.svg
+++ b/public/assets/images/icons/yellow/guestbook.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="guestbook"><path class="cls-1" d="M50,39.26l-1-1.72L47.46,35,33.57,11.77,23,6.19l-.13,11.53,13.89,23.2,1.55,2.57,1,1.72a6.3,6.3,0,0,0,8.44,2.18A5.84,5.84,0,0,0,50,39.26Zm-5.25-2.81-5.35,3L26,16.94l0-2.1L29.38,13l1.94,1ZM46.33,39l1,1.72a2.91,2.91,0,0,1-1.13,4.06A3.15,3.15,0,0,1,42,43.73L41,42ZM21,15H3V9H21Zm0,10H3V19H21ZM16,35H3V29H16Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="guestbook"><path class="cls-1" d="M50,39.26l-1-1.72L47.46,35,33.57,11.77,23,6.19l-.13,11.53,13.89,23.2,1.55,2.57,1,1.72a6.3,6.3,0,0,0,8.44,2.18A5.84,5.84,0,0,0,50,39.26Zm-5.25-2.81-5.35,3L26,16.94l0-2.1L29.38,13l1.94,1ZM46.33,39l1,1.72a2.91,2.91,0,0,1-1.13,4.06A3.15,3.15,0,0,1,42,43.73L41,42ZM21,15H3V9H21Zm0,10H3V19H21ZM16,35H3V29H16Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/home.svg b/public/assets/images/icons/yellow/home.svg
index e1cd92dbc5e66023239bdd12bb5a57b648b487e4..6c5c246597c022c8beabdeadd405e9706e95e0b2 100644
--- a/public/assets/images/icons/yellow/home.svg
+++ b/public/assets/images/icons/yellow/home.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="26.93 3.07 3 26.97 10 26.97 27 9.97 44.02 26.93 51 26.97 26.93 3.07"/><polygon class="a" points="11 28.97 11 50.97 21 50.97 21 33.97 33 33.97 33 50.97 43 50.97 43 28.97 27 12.97 11 28.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="26.93 3.07 3 26.97 10 26.97 27 9.97 44.02 26.93 51 26.97 26.93 3.07"/><polygon class="a" points="11 28.97 11 50.97 21 50.97 21 33.97 33 33.97 33 50.97 43 50.97 43 28.97 27 12.97 11 28.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/home2.svg b/public/assets/images/icons/yellow/home2.svg
index 379997c8125c99b5727cc503475200f95894fe06..cbfb4ff8e7cef2db34435046db550c9bf79a7173 100644
--- a/public/assets/images/icons/yellow/home2.svg
+++ b/public/assets/images/icons/yellow/home2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="3 26.97 26.93 3.07 51 26.97 44.02 26.93 27 9.97 10 26.97 3 26.97"/><polygon class="a" points="15 50.97 10 50.97 10 29.97 15 24.97 15 50.97"/><polygon class="a" points="44 50.97 39 50.97 39 24.97 44 29.97 44 50.97"/><rect class="a" x="10" y="45.97" width="34" height="5"/><rect class="a" x="25" y="29.97" width="10" height="17"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="3 26.97 26.93 3.07 51 26.97 44.02 26.93 27 9.97 10 26.97 3 26.97"/><polygon class="a" points="15 50.97 10 50.97 10 29.97 15 24.97 15 50.97"/><polygon class="a" points="44 50.97 39 50.97 39 24.97 44 29.97 44 50.97"/><rect class="a" x="10" y="45.97" width="34" height="5"/><rect class="a" x="25" y="29.97" width="10" height="17"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/info-circle-full.svg b/public/assets/images/icons/yellow/info-circle-full.svg
index 07f49549f4c29749619ee5049981409e28790827..160fc14ca809380ce357c033a089986bee1a77ae 100644
--- a/public/assets/images/icons/yellow/info-circle-full.svg
+++ b/public/assets/images/icons/yellow/info-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/info-circle.svg b/public/assets/images/icons/yellow/info-circle.svg
index 07f49549f4c29749619ee5049981409e28790827..160fc14ca809380ce357c033a089986bee1a77ae 100644
--- a/public/assets/images/icons/yellow/info-circle.svg
+++ b/public/assets/images/icons/yellow/info-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="info-circle"><path class="cls-1" d="M27.43,17.87A3.49,3.49,0,1,0,24,14.39,3.45,3.45,0,0,0,27.43,17.87Zm3.37,3.58H20.58v2.6h3.35V38H20.56v3.46H34.17V38H30.8ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/infopage.svg b/public/assets/images/icons/yellow/infopage.svg
index e3aa76304958e3ad70dadb7f4173f6e40faac405..9512577a35e679276392ab225c1d9726a6f7c924 100644
--- a/public/assets/images/icons/yellow/infopage.svg
+++ b/public/assets/images/icons/yellow/infopage.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/infopage2.svg b/public/assets/images/icons/yellow/infopage2.svg
index e3aa76304958e3ad70dadb7f4173f6e40faac405..9512577a35e679276392ab225c1d9726a6f7c924 100644
--- a/public/assets/images/icons/yellow/infopage2.svg
+++ b/public/assets/images/icons/yellow/infopage2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><path class="a" d="M27,18a4,4,0,1,0-4-4A4,4,0,0,0,27,18Zm4,21.81V21H18.93v3h4V39.81h-4V44H35V39.81Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/install.svg b/public/assets/images/icons/yellow/install.svg
index b7a127d43debbee000c4622bd2a432c950e44568..336d1c5bec5eeb417f06f9134a04b057b3a9213a 100644
--- a/public/assets/images/icons/yellow/install.svg
+++ b/public/assets/images/icons/yellow/install.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="43 5 34.9 5 27 12.9 19.1 5 11 5 27 21 43 5"/><path class="a" d="M38.29,16.6l0,0a16,16,0,1,1-22.62,0l-3.54-3.53a21,21,0,1,0,29.7,0l0,0Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="43 5 34.9 5 27 12.9 19.1 5 11 5 27 21 43 5"/><path class="a" d="M38.29,16.6l0,0a16,16,0,1,1-22.62,0l-3.54-3.53a21,21,0,1,0,29.7,0l0,0Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/institute.svg b/public/assets/images/icons/yellow/institute.svg
index 72331757ae16bec383fe5d306b66fa1337ef1797..6f8b50651acf8f0b0d027a26a5f8c66ca563d9db 100644
--- a/public/assets/images/icons/yellow/institute.svg
+++ b/public/assets/images/icons/yellow/institute.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="44 24.97 36 24.97 36 47.97 31 47.97 31 24.97 26.89 24.97 23 24.97 23 47.97 18 47.97 18 24.97 10 24.97 10 47.97 6 47.97 6 50.97 48 50.97 48 47.97 44 47.97 44 24.97"/><path class="a" d="M12,22H45v0l6,0L26.93,3.07,3,22h9ZM27,10l11.3,9H15.75Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="44 24.97 36 24.97 36 47.97 31 47.97 31 24.97 26.89 24.97 23 24.97 23 47.97 18 47.97 18 24.97 10 24.97 10 47.97 6 47.97 6 50.97 48 50.97 48 47.97 44 47.97 44 24.97"/><path class="a" d="M12,22H45v0l6,0L26.93,3.07,3,22h9ZM27,10l11.3,9H15.75Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/key.svg b/public/assets/images/icons/yellow/key.svg
index 75b4b5e25e58ac6f0a368e3252d8df14d1c471ca..dd940f2a41ed7baaa319ee91af484d555de44b01 100644
--- a/public/assets/images/icons/yellow/key.svg
+++ b/public/assets/images/icons/yellow/key.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="key"><path class="cls-1" d="M34.44,3A16.53,16.53,0,0,0,19.12,25.81L3,41.94V51h9.06V44.88h5.88V39h6.12V32.46A16.56,16.56,0,1,0,34.44,3Zm3.88,20.44a7.76,7.76,0,1,1,7.76-7.76A7.77,7.77,0,0,1,38.32,23.44Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="key"><path class="cls-1" d="M34.44,3A16.53,16.53,0,0,0,19.12,25.81L3,41.94V51h9.06V44.88h5.88V39h6.12V32.46A16.56,16.56,0,1,0,34.44,3Zm3.88,20.44a7.76,7.76,0,1,1,7.76-7.76A7.77,7.77,0,0,1,38.32,23.44Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/lightbulb.svg b/public/assets/images/icons/yellow/lightbulb.svg
index 629d1a79e41d40824bab1f07b82cd8c13d57d106..459d6cccbfaf3b0df0df1bbb1991539f1366d827 100644
--- a/public/assets/images/icons/yellow/lightbulb.svg
+++ b/public/assets/images/icons/yellow/lightbulb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M27,3a18.54,18.54,0,0,0-2,.11,17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,27,3Zm7.33,28.92A5,5,0,0,0,32,36.12V38H22V36.13a5,5,0,0,0-2.33-4.24,14,14,0,0,1,5.7-25.83A14.84,14.84,0,0,1,27,6a14,14,0,0,1,7.33,25.92Z"/><path class="a" d="M32.39,9.05A12.51,12.51,0,0,0,27.24,8a12.66,12.66,0,0,0-10.37,5.4,1.73,1.73,0,0,0,.42,2.41,1.69,1.69,0,0,0,1,.32,1.73,1.73,0,0,0,1.42-.74,9.21,9.21,0,0,1,7.54-3.93,9.08,9.08,0,0,1,3.74.8,1.73,1.73,0,1,0,1.41-3.16Z"/><path class="a" d="M17,16.31A1.73,1.73,0,0,0,15,17.58a12.38,12.38,0,0,0-.37,3,12.68,12.68,0,0,0,.28,2.67,1.74,1.74,0,0,0,1.69,1.36,1.55,1.55,0,0,0,.37,0,1.74,1.74,0,0,0,1.33-2.06A8.92,8.92,0,0,1,18,20.61a9.08,9.08,0,0,1,.27-2.2A1.74,1.74,0,0,0,17,16.31Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M27,3a18.54,18.54,0,0,0-2,.11,17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,27,3Zm7.33,28.92A5,5,0,0,0,32,36.12V38H22V36.13a5,5,0,0,0-2.33-4.24,14,14,0,0,1,5.7-25.83A14.84,14.84,0,0,1,27,6a14,14,0,0,1,7.33,25.92Z"/><path class="a" d="M32.39,9.05A12.51,12.51,0,0,0,27.24,8a12.66,12.66,0,0,0-10.37,5.4,1.73,1.73,0,0,0,.42,2.41,1.69,1.69,0,0,0,1,.32,1.73,1.73,0,0,0,1.42-.74,9.21,9.21,0,0,1,7.54-3.93,9.08,9.08,0,0,1,3.74.8,1.73,1.73,0,1,0,1.41-3.16Z"/><path class="a" d="M17,16.31A1.73,1.73,0,0,0,15,17.58a12.38,12.38,0,0,0-.37,3,12.68,12.68,0,0,0,.28,2.67,1.74,1.74,0,0,0,1.69,1.36,1.55,1.55,0,0,0,.37,0,1.74,1.74,0,0,0,1.33-2.06A8.92,8.92,0,0,1,18,20.61a9.08,9.08,0,0,1,.27-2.2A1.74,1.74,0,0,0,17,16.31Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/lightbulb2.svg b/public/assets/images/icons/yellow/lightbulb2.svg
index 42a2930b1076ad2403047574529140ee2dbf21d6..a8449c8a4027bde096d3e88dc513cd56c208d077 100644
--- a/public/assets/images/icons/yellow/lightbulb2.svg
+++ b/public/assets/images/icons/yellow/lightbulb2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M25,3.08a17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,25,3.08ZM16.32,17.33A11.15,11.15,0,0,0,16,20a10.48,10.48,0,0,0,.25,2.31,1.51,1.51,0,0,1-1.15,1.79l-.32,0a1.51,1.51,0,0,1-1.47-1.18A14.63,14.63,0,0,1,13,20a14.11,14.11,0,0,1,.41-3.36,1.5,1.5,0,0,1,2.91.72ZM33.46,9.17a1.5,1.5,0,0,1-2,.75A11,11,0,0,0,18,13.66a1.49,1.49,0,0,1-1.23.64,1.5,1.5,0,0,1-1.23-2.36A14,14,0,0,1,32.7,7.18,1.51,1.51,0,0,1,33.46,9.17Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M32.5,43h-11a1.5,1.5,0,0,0,0,3h11a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M31.5,48h-9a1.5,1.5,0,0,0,0,3h9a1.5,1.5,0,0,0,0-3Z"/><path class="a" d="M25,3.08a17,17,0,0,0-6.95,31.37A2,2,0,0,1,19,36.13v3.34A1.5,1.5,0,0,0,20.5,41h13a1.5,1.5,0,0,0,1.5-1.5V36.12a2,2,0,0,1,.9-1.67A17,17,0,0,0,25,3.08ZM16.32,17.33A11.15,11.15,0,0,0,16,20a10.48,10.48,0,0,0,.25,2.31,1.51,1.51,0,0,1-1.15,1.79l-.32,0a1.51,1.51,0,0,1-1.47-1.18A14.63,14.63,0,0,1,13,20a14.11,14.11,0,0,1,.41-3.36,1.5,1.5,0,0,1,2.91.72ZM33.46,9.17a1.5,1.5,0,0,1-2,.75A11,11,0,0,0,18,13.66a1.49,1.49,0,0,1-1.23.64,1.5,1.5,0,0,1-1.23-2.36A14,14,0,0,1,32.7,7.18,1.51,1.51,0,0,1,33.46,9.17Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/link-extern.svg b/public/assets/images/icons/yellow/link-extern.svg
index 1a5948d7a7271f457524dee028623d33c747dd2e..14f69bb35220a25ab7645e112ee1a66be6402aa8 100644
--- a/public/assets/images/icons/yellow/link-extern.svg
+++ b/public/assets/images/icons/yellow/link-extern.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="17 17 22.06 22.06 31.94 22.06 31.94 31.94 37 37 37 17 17 17"/><path class="a" d="M27,46A19,19,0,0,1,27,8V3A24,24,0,1,0,51,27H46A19,19,0,0,1,27,46Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="17 17 22.06 22.06 31.94 22.06 31.94 31.94 37 37 37 17 17 17"/><path class="a" d="M27,46A19,19,0,0,1,27,8V3A24,24,0,1,0,51,27H46A19,19,0,0,1,27,46Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/link-intern.svg b/public/assets/images/icons/yellow/link-intern.svg
index 92a67b7998352bbb9007f2f64c00a6f86dd5aec7..00e84bf82335275eff94af200c7ce7e2cb9a9988 100644
--- a/public/assets/images/icons/yellow/link-intern.svg
+++ b/public/assets/images/icons/yellow/link-intern.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/><polygon class="a" points="22 13 22 20.09 28.91 27 22 33.91 22 41 36 27 22 13"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/><polygon class="a" points="22 13 22 20.09 28.91 27 22 33.91 22 41 36 27 22 13"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/link2.svg b/public/assets/images/icons/yellow/link2.svg
index 728dd31c41102915f88a48fdf9e9423872105262..9d76fd89a78a6ab8768be4c11691205002f95d2b 100644
--- a/public/assets/images/icons/yellow/link2.svg
+++ b/public/assets/images/icons/yellow/link2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM22,41V33.91L28.91,27,22,20.09V13L36,27Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM22,41V33.91L28.91,27,22,20.09V13L36,27Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/link3.svg b/public/assets/images/icons/yellow/link3.svg
index 6b692950d53c1202496e924aef46c8339a19300b..62f13770046c9c4480a5e0b71c8194a2ef5ddf94 100644
--- a/public/assets/images/icons/yellow/link3.svg
+++ b/public/assets/images/icons/yellow/link3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,51A24,24,0,1,0,3,27,24,24,0,0,0,27,51Zm5-38v7.09L25.09,27,32,33.88V41L18,27Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,51A24,24,0,1,0,3,27,24,24,0,0,0,27,51Zm5-38v7.09L25.09,27,32,33.88V41L18,27Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/literature.svg b/public/assets/images/icons/yellow/literature.svg
index 0c973645a8127efffcda9d31befb7642f6c0e0bb..5763347e0ab6a8456cf9cb61e1da170004330ee7 100644
--- a/public/assets/images/icons/yellow/literature.svg
+++ b/public/assets/images/icons/yellow/literature.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42h3V3Zm0,17.9H33v3H15Zm0,6H33v3H15Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42h3V3Zm0,17.9H33v3H15Zm0,6H33v3H15Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/literature2.svg b/public/assets/images/icons/yellow/literature2.svg
index 2bf7a365c9c3c0c17c16eac1ebd7297e2f56c8a7..31a8300cbe83c7cab5dc2000766184ae033eccff 100644
--- a/public/assets/images/icons/yellow/literature2.svg
+++ b/public/assets/images/icons/yellow/literature2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42.08h3V3Zm0,12H36V48H15a3,3,0,0,1-3-3V13.94A4.14,4.14,0,0,0,15,15Z"/><rect class="a" x="15" y="20.9" width="17.99" height="3"/><rect class="a" x="15" y="26.9" width="17.99" height="3"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M15,3A6,6,0,0,0,9,9V45.31A5.69,5.69,0,0,0,14.69,51H39V12H15.06A3.06,3.06,0,0,1,12,8.94,2.94,2.94,0,0,1,14.94,6H42V42.08h3V3Zm0,12H36V48H15a3,3,0,0,1-3-3V13.94A4.14,4.14,0,0,0,15,15Z"/><rect class="a" x="15" y="20.9" width="17.99" height="3"/><rect class="a" x="15" y="26.9" width="17.99" height="3"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/lock-locked.svg b/public/assets/images/icons/yellow/lock-locked.svg
index ea1dc24f599df2401102022fad98d98a0ad5e033..1902a76560f136e6b74a69b7c37ee7d5a717acd0 100644
--- a/public/assets/images/icons/yellow/lock-locked.svg
+++ b/public/assets/images/icons/yellow/lock-locked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="lock-locked2"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM18,19a9,9,0,0,1,18,0v3H18ZM42,46H12V25H42Z"/><path class="cls-1" d="M24,40a3,3,0,0,0,6,0V35.62a4,4,0,1,0-6,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="lock-locked2"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM18,19a9,9,0,0,1,18,0v3H18ZM42,46H12V25H42Z"/><path class="cls-1" d="M24,40a3,3,0,0,0,6,0V35.62a4,4,0,1,0-6,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/lock-locked2.svg b/public/assets/images/icons/yellow/lock-locked2.svg
index 9cdc41f8aad1b5f7773f6cf20e72147bdcf6f3dc..d334a35a431a73a508b9e0fe16260c44f07e6e90 100644
--- a/public/assets/images/icons/yellow/lock-locked2.svg
+++ b/public/assets/images/icons/yellow/lock-locked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="lock-locked"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM30,35.59V40a3,3,0,0,1-6,0V35.59A3.93,3.93,0,0,1,23,33a4,4,0,1,1,7,2.62ZM36,22H18V19a9,9,0,0,1,18,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="lock-locked"><path class="cls-1" d="M41,22V19a14,14,0,0,0-28,0v3H9V49H45V22ZM30,35.59V40a3,3,0,0,1-6,0V35.59A3.93,3.93,0,0,1,23,33a4,4,0,1,1,7,2.62ZM36,22H18V19a9,9,0,0,1,18,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/lock-unlocked.svg b/public/assets/images/icons/yellow/lock-unlocked.svg
index 38022fd9101353929d0cbe9c7004fb65426c6e2a..eefd73801d738431eb9399878129cc0d809d2a22 100644
--- a/public/assets/images/icons/yellow/lock-unlocked.svg
+++ b/public/assets/images/icons/yellow/lock-unlocked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="lock-unlocked2"><path class="cls-1" d="M24,42a3,3,0,0,0,6,0V37.62a4,4,0,1,0-6,0Z"/><path class="cls-1" d="M18,24V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM42,48H12V27H42Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="lock-unlocked2"><path class="cls-1" d="M24,42a3,3,0,0,0,6,0V37.62a4,4,0,1,0-6,0Z"/><path class="cls-1" d="M18,24V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM42,48H12V27H42Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/lock-unlocked2.svg b/public/assets/images/icons/yellow/lock-unlocked2.svg
index a368aca158ec9615a2319a0be84868b0222aa4bf..457fe2afacc9a6aff2a4fb29be295c08713c1e28 100644
--- a/public/assets/images/icons/yellow/lock-unlocked2.svg
+++ b/public/assets/images/icons/yellow/lock-unlocked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="lock-unlocked"><path class="cls-1" d="M41,24H18V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM30,36.62V42a3,3,0,0,1-6,0V36.62a4,4,0,1,1,6,0Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="lock-unlocked"><path class="cls-1" d="M41,24H18V17a9,9,0,0,1,17.77-2h5.07A14,14,0,0,0,13,17v7H9V51H45V24ZM30,36.62V42a3,3,0,0,1-6,0V36.62a4,4,0,1,1,6,0Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/log.svg b/public/assets/images/icons/yellow/log.svg
index c0ee3230cbf7103060cc3023063512a23661cb89..0e4cfc34d5e3a9d00c80449a8c108e4776f44a89 100644
--- a/public/assets/images/icons/yellow/log.svg
+++ b/public/assets/images/icons/yellow/log.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="log"><path class="cls-1" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><rect class="cls-1" x="15" y="10.97" width="24" height="4"/><rect class="cls-1" x="15" y="17.97" width="23" height="4"/><rect class="cls-1" x="15" y="24.97" width="22" height="4"/><rect class="cls-1" x="15" y="31.97" width="24" height="4"/><rect class="cls-1" x="15" y="38.97" width="19" height="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="log"><path class="cls-1" d="M42,6V48H12V6H42m3-3H9V51H45V3Z"/><rect class="cls-1" x="15" y="10.97" width="24" height="4"/><rect class="cls-1" x="15" y="17.97" width="23" height="4"/><rect class="cls-1" x="15" y="24.97" width="22" height="4"/><rect class="cls-1" x="15" y="31.97" width="24" height="4"/><rect class="cls-1" x="15" y="38.97" width="19" height="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/mail.svg b/public/assets/images/icons/yellow/mail.svg
index 0a0b4f2477703e0b059f3a498aac6a8cce010920..622ff31ede5381a8c37328900c13fc614c3f2cdf 100644
--- a/public/assets/images/icons/yellow/mail.svg
+++ b/public/assets/images/icons/yellow/mail.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="3 17.92 3 45 51 45 51 17.83 26.93 37.18 3 17.92"/><polygon class="a" points="3 9 3 12 3 12.06 26.93 31.42 51 12.09 51 12 51 9 3 9"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="3 17.92 3 45 51 45 51 17.83 26.93 37.18 3 17.92"/><polygon class="a" points="3 9 3 12 3 12.06 26.93 31.42 51 12.09 51 12 51 9 3 9"/></svg>
diff --git a/public/assets/images/icons/yellow/mail2.svg b/public/assets/images/icons/yellow/mail2.svg
index 25bfe9fa7fb82356cfa18749619fe85336a695be..54454802ff46edaddae65e8482c310651353c188 100644
--- a/public/assets/images/icons/yellow/mail2.svg
+++ b/public/assets/images/icons/yellow/mail2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,9v5L27,31,51,14V9ZM27,24.84,11.65,14h30.7Z"/><polygon class="a" points="46 39.97 8 39.97 7.96 21.48 3 17.97 3 44.97 51 44.97 51 17.97 46.03 21.49 46 39.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,9v5L27,31,51,14V9ZM27,24.84,11.65,14h30.7Z"/><polygon class="a" points="46 39.97 8 39.97 7.96 21.48 3 17.97 3 44.97 51 44.97 51 17.97 46.03 21.49 46 39.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/maximize.svg b/public/assets/images/icons/yellow/maximize.svg
index cd33a1da07fa309126dc8479a1332d2fcdaebb58..38e42dd93da837dabd9c4e1a7558c6f81d985878 100644
--- a/public/assets/images/icons/yellow/maximize.svg
+++ b/public/assets/images/icons/yellow/maximize.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="maximise-1"><polygon points="27 39.03 27 48.03 6 48.03 6 27.03 15 27.03 15 24.03 3 24.03 3 51.03 30 51.03 30 39.03 27 39.03"/><path d="M15,3V39H51V3ZM48,36H18V11.94H48Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="maximise-1"><polygon points="27 39.03 27 48.03 6 48.03 6 27.03 15 27.03 15 24.03 3 24.03 3 51.03 30 51.03 30 39.03 27 39.03"/><path d="M15,3V39H51V3ZM48,36H18V11.94H48Z"/></g></svg>
diff --git a/public/assets/images/icons/yellow/microphone.svg b/public/assets/images/icons/yellow/microphone.svg
index fd94f790f2dbd6effc3074afa414983671475cec..3cd643e2cfb5a57315adec8a2f5d9fa22cef369f 100644
--- a/public/assets/images/icons/yellow/microphone.svg
+++ b/public/assets/images/icons/yellow/microphone.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,36a7,7,0,0,0,7-7V10a7,7,0,1,0-14,0V29A7,7,0,0,0,27,36Z"/><path class="a" d="M40,29V27a3,3,0,0,0-3-3v4.65A10.24,10.24,0,0,1,27.68,39,10,10,0,0,1,17,29V24a3,3,0,0,0-3,3v2A13,13,0,0,0,25.5,41.88V46H20a3,3,0,0,0-3,3v2H37V49a3,3,0,0,0-3-3H28.5V41.88A13,13,0,0,0,40,29Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,36a7,7,0,0,0,7-7V10a7,7,0,1,0-14,0V29A7,7,0,0,0,27,36Z"/><path class="a" d="M40,29V27a3,3,0,0,0-3-3v4.65A10.24,10.24,0,0,1,27.68,39,10,10,0,0,1,17,29V24a3,3,0,0,0-3,3v2A13,13,0,0,0,25.5,41.88V46H20a3,3,0,0,0-3,3v2H37V49a3,3,0,0,0-3-3H28.5V41.88A13,13,0,0,0,40,29Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/module.svg b/public/assets/images/icons/yellow/module.svg
index 04d181f50ad13891ac7f212d2eea3f1d857fd2a2..b8cd0d056a962c20274ed0961de3c920567302b3 100644
--- a/public/assets/images/icons/yellow/module.svg
+++ b/public/assets/images/icons/yellow/module.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="module"><path d="M8.94,26.08a14,14,0,0,1,14-14h0V6.17h0A19.92,19.92,0,0,0,3,26.08H8.94Zm19,12.46a7.48,7.48,0,0,0,0-14.95v7.48H20.44A7.49,7.49,0,0,0,27.93,38.54Zm0-27.39v5.93a14,14,0,1,1-14,14H8A19.91,19.91,0,1,0,27.93,11.15Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="module"><path d="M8.94,26.08a14,14,0,0,1,14-14h0V6.17h0A19.92,19.92,0,0,0,3,26.08H8.94Zm19,12.46a7.48,7.48,0,0,0,0-14.95v7.48H20.44A7.49,7.49,0,0,0,27.93,38.54Zm0-27.39v5.93a14,14,0,1,1-14,14H8A19.91,19.91,0,1,0,27.93,11.15Z"/></g></svg>
diff --git a/public/assets/images/icons/yellow/network.svg b/public/assets/images/icons/yellow/network.svg
index fd95c1c17d7fbc86be25ec0da51f041771d44796..215f81e58a5fc0b034c920f7a1af4f8ac2d1d60e 100644
--- a/public/assets/images/icons/yellow/network.svg
+++ b/public/assets/images/icons/yellow/network.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="network"><path class="cls-1" d="M51,30.43A3.42,3.42,0,0,0,47.57,27a3.36,3.36,0,0,0-2.91,1.73H28.71V23.05a3.39,3.39,0,0,0,1.72-2.91A3.44,3.44,0,0,0,27,16.71a3.36,3.36,0,0,0-2.9,1.72H18.41V9.34a3.36,3.36,0,0,0,1.73-2.91,3.43,3.43,0,1,0-6.85,0A3.38,3.38,0,0,0,15,9.32v9.11H9.33a3.38,3.38,0,0,0-2.9-1.72,3.43,3.43,0,0,0,0,6.86,3.39,3.39,0,0,0,2.9-1.71H15v5.68a3.38,3.38,0,0,0-1.69,2.89,3.43,3.43,0,0,0,3.42,3.43,3.38,3.38,0,0,0,2.9-1.7h5.68V44.67a3.38,3.38,0,0,0-1.72,2.9,3.43,3.43,0,0,0,6.86,0,3.38,3.38,0,0,0-1.72-2.9V32.16H39v9.07a3.36,3.36,0,0,0-1.73,2.91,3.43,3.43,0,1,0,6.85,0,3.37,3.37,0,0,0-1.7-2.89V32.16h2.24a3.37,3.37,0,0,0,2.89,1.7A3.43,3.43,0,0,0,51,30.43Zm-25.71-1.7H19.63a3.29,3.29,0,0,0-1.22-1.21V21.86H24.1a3.39,3.39,0,0,0,1.19,1.19Z"/><circle class="cls-1" cx="35.57" cy="11.57" r="5.14"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="network"><path class="cls-1" d="M51,30.43A3.42,3.42,0,0,0,47.57,27a3.36,3.36,0,0,0-2.91,1.73H28.71V23.05a3.39,3.39,0,0,0,1.72-2.91A3.44,3.44,0,0,0,27,16.71a3.36,3.36,0,0,0-2.9,1.72H18.41V9.34a3.36,3.36,0,0,0,1.73-2.91,3.43,3.43,0,1,0-6.85,0A3.38,3.38,0,0,0,15,9.32v9.11H9.33a3.38,3.38,0,0,0-2.9-1.72,3.43,3.43,0,0,0,0,6.86,3.39,3.39,0,0,0,2.9-1.71H15v5.68a3.38,3.38,0,0,0-1.69,2.89,3.43,3.43,0,0,0,3.42,3.43,3.38,3.38,0,0,0,2.9-1.7h5.68V44.67a3.38,3.38,0,0,0-1.72,2.9,3.43,3.43,0,0,0,6.86,0,3.38,3.38,0,0,0-1.72-2.9V32.16H39v9.07a3.36,3.36,0,0,0-1.73,2.91,3.43,3.43,0,1,0,6.85,0,3.37,3.37,0,0,0-1.7-2.89V32.16h2.24a3.37,3.37,0,0,0,2.89,1.7A3.43,3.43,0,0,0,51,30.43Zm-25.71-1.7H19.63a3.29,3.29,0,0,0-1.22-1.21V21.86H24.1a3.39,3.39,0,0,0,1.19,1.19Z"/><circle class="cls-1" cx="35.57" cy="11.57" r="5.14"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/news.svg b/public/assets/images/icons/yellow/news.svg
index 1193e4e27546cdb8719555d84d8bc6ffc4ff5a58..f56821a105b62d0b8526a760822323843957562f 100644
--- a/public/assets/images/icons/yellow/news.svg
+++ b/public/assets/images/icons/yellow/news.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,6V48H15a5.34,5.34,0,0,0,.87-.06l34-9A1.52,1.52,0,0,0,51,37.31L51,6ZM19.85,43.79,37.47,28.51l9,8.24ZM48,34.12,37.53,24.48,34.64,27H9v4H30l-3.45,3H9v4H22l-8,7H6V9H48Z"/><rect class="a" x="9" y="12" width="11" height="11"/><rect class="a" x="24" y="12" width="21" height="4"/><rect class="a" x="24" y="19" width="21" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/no-activity.svg b/public/assets/images/icons/yellow/no-activity.svg
index 4ba283d590fa0ab74b410b9db53d03da1369ae46..6ba98fbe164aaf7456f11e67ec2d6fa9ec2b6600 100644
--- a/public/assets/images/icons/yellow/no-activity.svg
+++ b/public/assets/images/icons/yellow/no-activity.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><path id="no-activity" d="M3,3V51H51V3ZM48,6V26.62H19.23l-4-7.87-3.84,7.87H6V6ZM6,48V29.62H13.3l2-4.13,3.39,6.66,1.73-2.53H48V48Z"/></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><path id="no-activity" d="M3,3V51H51V3ZM48,6V26.62H19.23l-4-7.87-3.84,7.87H6V6ZM6,48V29.62H13.3l2-4.13,3.39,6.66,1.73-2.53H48V48Z"/></svg>
diff --git a/public/assets/images/icons/yellow/oer-campus.svg b/public/assets/images/icons/yellow/oer-campus.svg
index f1fe042608b040e8a07a4fb178ef9754e0f801b4..8d72a577dfd007408c7a21d271fcffa07568a512 100644
--- a/public/assets/images/icons/yellow/oer-campus.svg
+++ b/public/assets/images/icons/yellow/oer-campus.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M17,22.07A12.38,12.38,0,1,1,34.58,33.55l1.41.57,8.28-2.83A17.37,17.37,0,1,0,12,22.34c0,.12,0,.23,0,.36Z"/><path class="a" d="M50.78,35.93a3.72,3.72,0,0,0-3.5-2.51,3.62,3.62,0,0,0-1.25.22L35.82,37.19,22.13,31.56l8.73-1.19A3.71,3.71,0,0,0,30.4,23l-.46,0L10.08,25.56a3.68,3.68,0,0,0-1.51.57A2.25,2.25,0,0,0,7.33,27.4l-.18.49c-.05.13-.1.25-.14.38L3.14,38.76a2.22,2.22,0,0,0,.18,1.92c.91,2,5.16,4.86,9.09,6.35l9.44,1.79a8.64,8.64,0,0,0,1.4.12l.45,0a3.81,3.81,0,0,0,.59,0,3.37,3.37,0,0,0,1.2-.21L27,48.23c.4-.12.82-.25,1.29-.41,5.15-1.66,10.9-3.7,13-4.56l.07,0,7.08-2.47A3.79,3.79,0,0,0,50.78,35.93Z"/></svg>
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M17,22.07A12.38,12.38,0,1,1,34.58,33.55l1.41.57,8.28-2.83A17.37,17.37,0,1,0,12,22.34c0,.12,0,.23,0,.36Z"/><path class="a" d="M50.78,35.93a3.72,3.72,0,0,0-3.5-2.51,3.62,3.62,0,0,0-1.25.22L35.82,37.19,22.13,31.56l8.73-1.19A3.71,3.71,0,0,0,30.4,23l-.46,0L10.08,25.56a3.68,3.68,0,0,0-1.51.57A2.25,2.25,0,0,0,7.33,27.4l-.18.49c-.05.13-.1.25-.14.38L3.14,38.76a2.22,2.22,0,0,0,.18,1.92c.91,2,5.16,4.86,9.09,6.35l9.44,1.79a8.64,8.64,0,0,0,1.4.12l.45,0a3.81,3.81,0,0,0,.59,0,3.37,3.37,0,0,0,1.2-.21L27,48.23c.4-.12.82-.25,1.29-.41,5.15-1.66,10.9-3.7,13-4.56l.07,0,7.08-2.47A3.79,3.79,0,0,0,50.78,35.93Z"/></svg>
diff --git a/public/assets/images/icons/yellow/oer-campus2.svg b/public/assets/images/icons/yellow/oer-campus2.svg
index 1f5cbb6902dd64805e379e3ccdc027d7a6282d1e..6cf7a0f67a3eab5c58f775990c7dc3e095d2756e 100644
--- a/public/assets/images/icons/yellow/oer-campus2.svg
+++ b/public/assets/images/icons/yellow/oer-campus2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/opencast.svg b/public/assets/images/icons/yellow/opencast.svg
index 232f10212a593f641a409528ea9eee9cdcda14be..0d02a4f584a9c6251a4a2ab4ecbad67c043fb0b9 100644
--- a/public/assets/images/icons/yellow/opencast.svg
+++ b/public/assets/images/icons/yellow/opencast.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M20,10,3,27,20,44,37,27ZM10.08,27,20,17.05,29.9,27,20,36.89Z"/><polygon class="a" points="34.01 9.97 30.5 13.48 43.99 26.97 30.5 40.46 34.01 43.97 51 26.97 34.01 9.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M20,10,3,27,20,44,37,27ZM10.08,27,20,17.05,29.9,27,20,36.89Z"/><polygon class="a" points="34.01 9.97 30.5 13.48 43.99 26.97 30.5 40.46 34.01 43.97 51 26.97 34.01 9.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/opencast2.svg b/public/assets/images/icons/yellow/opencast2.svg
index d0f2dec50c63ab5b7b59b5697ab2041d3943a3fc..b366842c739852a08c10349ebbc9e189085fb3ce 100644
--- a/public/assets/images/icons/yellow/opencast2.svg
+++ b/public/assets/images/icons/yellow/opencast2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="31.02 6.97 29 8.99 46.96 26.97 29 44.95 31.02 46.97 51 26.97 31.02 6.97"/><path class="a" d="M23,7,3,27,23,47,43,27ZM7.29,27,23,11.26,38.71,27,23,42.68Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="31.02 6.97 29 8.99 46.96 26.97 29 44.95 31.02 46.97 51 26.97 31.02 6.97"/><path class="a" d="M23,7,3,27,23,47,43,27ZM7.29,27,23,11.26,38.71,27,23,42.68Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/pause.svg b/public/assets/images/icons/yellow/pause.svg
index b3e36bc775b098facb30d66128abc2736a841acb..8276704584998bd77407c909fda6e767a5bbc115 100644
--- a/public/assets/images/icons/yellow/pause.svg
+++ b/public/assets/images/icons/yellow/pause.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="12.01 45.99 23.99 46 24 8 12 8 12.01 45.99"/><polygon class="a" points="30.01 45.99 41.99 46 42 8 30 8 30.01 45.99"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="12.01 45.99 23.99 46 24 8 12 8 12.01 45.99"/><polygon class="a" points="30.01 45.99 41.99 46 42 8 30 8 30.01 45.99"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/permalink.svg b/public/assets/images/icons/yellow/permalink.svg
index ed1c6b15bd93f52e8c54c891662831086391c729..904df01f6577b5982e143d8e129cd0f4d7794138 100644
--- a/public/assets/images/icons/yellow/permalink.svg
+++ b/public/assets/images/icons/yellow/permalink.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="group"><path class="cls-1" d="M42.51,18h-7a8.48,8.48,0,0,0-7.18,4H41a5,5,0,0,1,0,10H28.3a8.51,8.51,0,0,0,7.18,4h7A8.51,8.51,0,0,0,51,27.48v-1A8.51,8.51,0,0,0,42.51,18Z"/><path class="cls-1" d="M13,32a5,5,0,0,1,0-10H25.7a8.49,8.49,0,0,0-7.19-4h-7A8.51,8.51,0,0,0,3,26.45v1A8.51,8.51,0,0,0,11.48,36h7a8.51,8.51,0,0,0,7.19-4Z"/><rect class="cls-1" x="14" y="22.97" width="26" height="8" rx="4"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/person.svg b/public/assets/images/icons/yellow/person.svg
index c746f92e7e25f7ce058ec58c03806fd81df01790..6dd659e19d2cb1d2f9c3fb97536654eebb74e88f 100644
--- a/public/assets/images/icons/yellow/person.svg
+++ b/public/assets/images/icons/yellow/person.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M4.5,49.5V4.5h45v45Zm14.71-22a7.71,7.71,0,0,0-7.71,7.7v12.3h31V35.22a7.71,7.71,0,0,0-7.7-7.7ZM27,5.55A10.5,10.5,0,1,0,37.5,16,10.5,10.5,0,0,0,27,5.55Z"/><path class="a" d="M48,6V48H44V35.22A9.21,9.21,0,0,0,34.8,26H33.67a12,12,0,0,0-.11-20H48M20.44,6a12,12,0,0,0-.11,20H19.21A9.21,9.21,0,0,0,10,35.22V48H6V6H20.44M51,3H3V51H51V3ZM27,25.05a9,9,0,1,1,9-9,9,9,0,0,1-9,9ZM13,46V35.22A6.2,6.2,0,0,1,19.21,29H34.8a6.2,6.2,0,0,1,6.2,6.2V46Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M4.5,49.5V4.5h45v45Zm14.71-22a7.71,7.71,0,0,0-7.71,7.7v12.3h31V35.22a7.71,7.71,0,0,0-7.7-7.7ZM27,5.55A10.5,10.5,0,1,0,37.5,16,10.5,10.5,0,0,0,27,5.55Z"/><path class="a" d="M48,6V48H44V35.22A9.21,9.21,0,0,0,34.8,26H33.67a12,12,0,0,0-.11-20H48M20.44,6a12,12,0,0,0-.11,20H19.21A9.21,9.21,0,0,0,10,35.22V48H6V6H20.44M51,3H3V51H51V3ZM27,25.05a9,9,0,1,1,9-9,9,9,0,0,1-9,9ZM13,46V35.22A6.2,6.2,0,0,1,19.21,29H34.8a6.2,6.2,0,0,1,6.2,6.2V46Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/person2.svg b/public/assets/images/icons/yellow/person2.svg
index 8c30df44f1084183d57df56f99e754f5bf1bcff2..3f38fbb2827e7f932202d52a26b22e124f3fb4d2 100644
--- a/public/assets/images/icons/yellow/person2.svg
+++ b/public/assets/images/icons/yellow/person2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,27.05a9,9,0,1,0-9-9A9,9,0,0,0,27,27.05Z"/><path class="a" d="M3,3V51H51V3ZM48,48H41V37.22A6.2,6.2,0,0,0,34.8,31H19.21A6.2,6.2,0,0,0,13,37.22V48H6V6H48Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,27.05a9,9,0,1,0-9-9A9,9,0,0,0,27,27.05Z"/><path class="a" d="M3,3V51H51V3ZM48,48H41V37.22A6.2,6.2,0,0,0,34.8,31H19.21A6.2,6.2,0,0,0,13,37.22V48H6V6H48Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/persons.svg b/public/assets/images/icons/yellow/persons.svg
index 72bcc7970e76fdb362f6cf0bdd415f55782c1a44..510cea7a9c9b0ca97192e118e480b915d3181f58 100644
--- a/public/assets/images/icons/yellow/persons.svg
+++ b/public/assets/images/icons/yellow/persons.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,51H45V9H3ZM24,12a9,9,0,1,1-9,9A9,9,0,0,1,24,12ZM10,40.17A6.21,6.21,0,0,1,16.2,34H31.79A6.21,6.21,0,0,1,38,40.17V46H10Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,51H45V9H3ZM24,12a9,9,0,1,1-9,9A9,9,0,0,1,24,12ZM10,40.17A6.21,6.21,0,0,1,16.2,34H31.79A6.21,6.21,0,0,1,38,40.17V46H10Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/persons2.svg b/public/assets/images/icons/yellow/persons2.svg
index c8a70adce302740477937198f55edd5e39554f12..98bc2747f880dba91fc081d785cbea0594755ce4 100644
--- a/public/assets/images/icons/yellow/persons2.svg
+++ b/public/assets/images/icons/yellow/persons2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,51H45V9H3ZM6,12H42V48H38v-4.8A6.21,6.21,0,0,0,31.79,37H16.2a6.21,6.21,0,0,0-6.2,6.2V48H6Z"/><path class="a" d="M24,33a9,9,0,1,0-9-9A9,9,0,0,0,24,33Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,51H45V9H3ZM6,12H42V48H38v-4.8A6.21,6.21,0,0,0,31.79,37H16.2a6.21,6.21,0,0,0-6.2,6.2V48H6Z"/><path class="a" d="M24,33a9,9,0,1,0-9-9A9,9,0,0,0,24,33Z"/><polygon class="a" points="48 2.97 9 2.97 9 5.97 48 5.97 48 44.97 51 44.97 51 5.97 51 2.97 48 2.97"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/play.svg b/public/assets/images/icons/yellow/play.svg
index fc97fbcf6438a77481fdb310971c8780287b2262..199933215a5f9d8fb2163ab511c89fb6010d3dea 100644
--- a/public/assets/images/icons/yellow/play.svg
+++ b/public/assets/images/icons/yellow/play.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="arrows"><g id="play"><polygon class="cls-1" points="14.99 44.91 42 26.91 15 8.91 14.99 44.91"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="arrows"><g id="play"><polygon class="cls-1" points="14.99 44.91 42 26.91 15 8.91 14.99 44.91"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/plugin.svg b/public/assets/images/icons/yellow/plugin.svg
index b1cdceac5f80e4644be849be4689f501c5807ac5..b6ba9b1d0ea7597c4e698bc5aa3f30d7fd7de00b 100644
--- a/public/assets/images/icons/yellow/plugin.svg
+++ b/public/assets/images/icons/yellow/plugin.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M31.35,6l.54,4.28A16.51,16.51,0,0,0,29,10a17.75,17.75,0,0,0-2.81.23,17,17,0,1,0,9.73,32.29L36.6,48H6V6H31.35M34,3H3V51H40L38.72,40.74a2,2,0,0,0-2-1.74,2,2,0,0,0-1,.26A13.82,13.82,0,0,1,29,41a14,14,0,0,1-2.33-27.81A14.35,14.35,0,0,1,29,13a13.74,13.74,0,0,1,3.54.46,2.4,2.4,0,0,0,.52.07,2,2,0,0,0,2-2.25L34,3Z"/><path class="a" d="M37,3l1.66,13.3a2,2,0,0,1-3.21,1.82,11,11,0,0,0-7.53-2A11,11,0,0,0,29,38a11,11,0,0,0,8.46-4A2,2,0,0,1,41,35C41.88,42,43,51,43,51h8V3Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M31.35,6l.54,4.28A16.51,16.51,0,0,0,29,10a17.75,17.75,0,0,0-2.81.23,17,17,0,1,0,9.73,32.29L36.6,48H6V6H31.35M34,3H3V51H40L38.72,40.74a2,2,0,0,0-2-1.74,2,2,0,0,0-1,.26A13.82,13.82,0,0,1,29,41a14,14,0,0,1-2.33-27.81A14.35,14.35,0,0,1,29,13a13.74,13.74,0,0,1,3.54.46,2.4,2.4,0,0,0,.52.07,2,2,0,0,0,2-2.25L34,3Z"/><path class="a" d="M37,3l1.66,13.3a2,2,0,0,1-3.21,1.82,11,11,0,0,0-7.53-2A11,11,0,0,0,29,38a11,11,0,0,0,8.46-4A2,2,0,0,1,41,35C41.88,42,43,51,43,51h8V3Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/plugin2.svg b/public/assets/images/icons/yellow/plugin2.svg
index a6a79b9f3081114331bbba5493e3c3bb71be9a6b..6d68500b703f646d68a0c3f2169ee0502707d3c5 100644
--- a/public/assets/images/icons/yellow/plugin2.svg
+++ b/public/assets/images/icons/yellow/plugin2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M38.75,24.61a7,7,0,0,1,4.6,1.76A1,1,0,0,0,45,25.62v-9.8H33.58a1,1,0,0,1-.75-1.65,6.6,6.6,0,0,0,1.66-4.31,7,7,0,0,0-14-.13,6.61,6.61,0,0,0,1.66,4.45,1,1,0,0,1-.75,1.64H9V51h7.49a1,1,0,0,0,.76-1.64,6.72,6.72,0,0,1-1.67-4.49,7,7,0,0,1,14,.14,6.7,6.7,0,0,1-1.67,4.34A1,1,0,0,0,28.64,51H45V37.27a1,1,0,0,0-1.64-.77,7.05,7.05,0,0,1-4.75,1.76,6.83,6.83,0,1,1,.14-13.65Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M38.75,24.61a7,7,0,0,1,4.6,1.76A1,1,0,0,0,45,25.62v-9.8H33.58a1,1,0,0,1-.75-1.65,6.6,6.6,0,0,0,1.66-4.31,7,7,0,0,0-14-.13,6.61,6.61,0,0,0,1.66,4.45,1,1,0,0,1-.75,1.64H9V51h7.49a1,1,0,0,0,.76-1.64,6.72,6.72,0,0,1-1.67-4.49,7,7,0,0,1,14,.14,6.7,6.7,0,0,1-1.67,4.34A1,1,0,0,0,28.64,51H45V37.27a1,1,0,0,0-1.64-.77,7.05,7.05,0,0,1-4.75,1.76,6.83,6.83,0,1,1,.14-13.65Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/privacy.svg b/public/assets/images/icons/yellow/privacy.svg
index ffb50c88f5a42ef197a9cc6eacf60a21d77ae3f1..96ae3f9f374b89098bb61850754f9739dbf3f029 100644
--- a/public/assets/images/icons/yellow/privacy.svg
+++ b/public/assets/images/icons/yellow/privacy.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="privacy"><path d="M27.87,14.51H23V24.75h5.13a6.47,6.47,0,0,0,4.4-1.35,4.84,4.84,0,0,0,1.55-3.86Q34.1,14.52,27.87,14.51Z"/><path d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM37.52,24.72a8.21,8.21,0,0,1-3.91,3.2,20,20,0,0,1-7.12,1H23V43.11H18.31V10.34H28.69a10.68,10.68,0,0,1,7.47,2.53A8.71,8.71,0,0,1,39,19.66,9.1,9.1,0,0,1,37.52,24.72Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="privacy"><path d="M27.87,14.51H23V24.75h5.13a6.47,6.47,0,0,0,4.4-1.35,4.84,4.84,0,0,0,1.55-3.86Q34.1,14.52,27.87,14.51Z"/><path d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3ZM37.52,24.72a8.21,8.21,0,0,1-3.91,3.2,20,20,0,0,1-7.12,1H23V43.11H18.31V10.34H28.69a10.68,10.68,0,0,1,7.47,2.53A8.71,8.71,0,0,1,39,19.66,9.1,9.1,0,0,1,37.52,24.72Z"/></g></svg>
diff --git a/public/assets/images/icons/yellow/question-circle-full.svg b/public/assets/images/icons/yellow/question-circle-full.svg
index 5b8c24bbd8c53e421421631b71f4ffaf0c364717..5e3b50524856b7f6ab99b08d3b57178d61d4fba6 100644
--- a/public/assets/images/icons/yellow/question-circle-full.svg
+++ b/public/assets/images/icons/yellow/question-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/question-circle.svg b/public/assets/images/icons/yellow/question-circle.svg
index 5b8c24bbd8c53e421421631b71f4ffaf0c364717..5e3b50524856b7f6ab99b08d3b57178d61d4fba6 100644
--- a/public/assets/images/icons/yellow/question-circle.svg
+++ b/public/assets/images/icons/yellow/question-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="question-circle"><path class="cls-1" d="M26.72,34.54a3.74,3.74,0,0,0-3.87,3.94,3.76,3.76,0,0,0,3.83,4h0a3.79,3.79,0,0,0,3.92-4A3.75,3.75,0,0,0,26.72,34.54Zm.61-22.41a15.07,15.07,0,0,0-7.26,1.79l1.48,4.74a8.21,8.21,0,0,1,4.31-1.3C28,17.44,29,18.44,29,20s-1.13,2.88-2.53,4.57a9.42,9.42,0,0,0-2.56,6.79l0,1.13h5.79v-.78A7.43,7.43,0,0,1,32,26.23c1.65-1.83,3.69-4,3.69-7.31C35.68,15.31,33.07,12.13,27.33,12.13ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/refresh.svg b/public/assets/images/icons/yellow/refresh.svg
index 43db05d34765544001875c3a727b9865a7d85ed9..8584a47b1662445e2c2700b3e0ea22cadbaa449e 100644
--- a/public/assets/images/icons/yellow/refresh.svg
+++ b/public/assets/images/icons/yellow/refresh.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="refresh"><path class="cls-1" d="M27,44A17,17,0,0,1,10.63,31.46l4.88,1.31,4.24-2.45L6.54,26.77,3,40l4.24-2.45,1-3.76A19.93,19.93,0,0,0,46.33,32l-2.9-.75A17,17,0,0,1,27,44Z"/><path class="cls-1" d="M46.76,16.51l-1,3.72a19.93,19.93,0,0,0-38.1,1.82l2.9.75a16.95,16.95,0,0,1,32.81-.2l-4.89-1.31-4.24,2.45,13.21,3.55L51,14.06Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="refresh"><path class="cls-1" d="M27,44A17,17,0,0,1,10.63,31.46l4.88,1.31,4.24-2.45L6.54,26.77,3,40l4.24-2.45,1-3.76A19.93,19.93,0,0,0,46.33,32l-2.9-.75A17,17,0,0,1,27,44Z"/><path class="cls-1" d="M46.76,16.51l-1,3.72a19.93,19.93,0,0,0-38.1,1.82l2.9.75a16.95,16.95,0,0,1,32.81-.2l-4.89-1.31-4.24,2.45,13.21,3.55L51,14.06Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/remove-circle-full.svg b/public/assets/images/icons/yellow/remove-circle-full.svg
index ebecb9fd086b0442a7b7c195f901b7ddfc93c944..37a2b29cf2c88d33c5597bca68cfd9064bcee7f0 100644
--- a/public/assets/images/icons/yellow/remove-circle-full.svg
+++ b/public/assets/images/icons/yellow/remove-circle-full.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/remove-circle.svg b/public/assets/images/icons/yellow/remove-circle.svg
index ebecb9fd086b0442a7b7c195f901b7ddfc93c944..37a2b29cf2c88d33c5597bca68cfd9064bcee7f0 100644
--- a/public/assets/images/icons/yellow/remove-circle.svg
+++ b/public/assets/images/icons/yellow/remove-circle.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="messagebox"><g id="remove-circle"><path class="cls-1" d="M40.63,30.41V23.59H13.24v6.82ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/remove.svg b/public/assets/images/icons/yellow/remove.svg
index 9634b371f11f4a1a5a9c871d7fd60e34c7975851..5683ec71e75b3cc1d6966baf88840eab0d06f0cf 100644
--- a/public/assets/images/icons/yellow/remove.svg
+++ b/public/assets/images/icons/yellow/remove.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="48 32 48 22 6 22 6 32 48 32"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="48 32 48 22 6 22 6 32 48 32"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/resources-broken.svg b/public/assets/images/icons/yellow/resources-broken.svg
index 1a33a78641390204e8c0a5315d42661da9c311e4..9881031e25904f1514f448d15bc92c4a9d15a320 100644
--- a/public/assets/images/icons/yellow/resources-broken.svg
+++ b/public/assets/images/icons/yellow/resources-broken.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="resources-broken"><polygon class="cls-1" points="24.93 49.54 24.93 36.7 22.46 49.54 24.93 49.54"/><polygon class="cls-1" points="37.76 4.43 31.82 4.43 30.57 10.91 32.8 8.65 36.05 11.94 28.99 19.09 27.54 26.65 37.76 26.65 37.76 4.43"/><path class="cls-1" d="M28.76,31V53H50.69V31Zm14.1,11h0l4.45,4.47L44.18,49.6l-4.45-4.47L35.28,49.6l-3.14-3.15L36.59,42h0l-4.44-4.47L33.7,36l1.58-1.58,4.45,4.47,4.45-4.47,3.13,3.15L42.86,42Z"/><polygon class="cls-1" points="3 27.51 3 49.54 18.82 49.54 19.47 46.14 16.1 46.14 16.1 40.35 11.83 40.35 11.83 46.14 7.76 46.14 7.76 38.74 6.55 38.74 13.97 30.91 20.98 38.31 23.06 27.51 3 27.51"/><polygon class="cls-1" points="20.18 42.47 20.89 38.74 20.18 38.74 20.18 42.47"/><polygon class="cls-1" points="15.86 0.97 15.86 23.19 23.89 23.19 24.61 19.43 17.57 12.29 20.81 9 24.92 13.18 26.04 12.05 28.17 0.97 15.86 0.97"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="resources-broken"><polygon class="cls-1" points="24.93 49.54 24.93 36.7 22.46 49.54 24.93 49.54"/><polygon class="cls-1" points="37.76 4.43 31.82 4.43 30.57 10.91 32.8 8.65 36.05 11.94 28.99 19.09 27.54 26.65 37.76 26.65 37.76 4.43"/><path class="cls-1" d="M28.76,31V53H50.69V31Zm14.1,11h0l4.45,4.47L44.18,49.6l-4.45-4.47L35.28,49.6l-3.14-3.15L36.59,42h0l-4.44-4.47L33.7,36l1.58-1.58,4.45,4.47,4.45-4.47,3.13,3.15L42.86,42Z"/><polygon class="cls-1" points="3 27.51 3 49.54 18.82 49.54 19.47 46.14 16.1 46.14 16.1 40.35 11.83 40.35 11.83 46.14 7.76 46.14 7.76 38.74 6.55 38.74 13.97 30.91 20.98 38.31 23.06 27.51 3 27.51"/><polygon class="cls-1" points="20.18 42.47 20.89 38.74 20.18 38.74 20.18 42.47"/><polygon class="cls-1" points="15.86 0.97 15.86 23.19 23.89 23.19 24.61 19.43 17.57 12.29 20.81 9 24.92 13.18 26.04 12.05 28.17 0.97 15.86 0.97"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/resources.svg b/public/assets/images/icons/yellow/resources.svg
index 69d66cfc5a42c4e27f1ea312b0e41628ced0621e..459e0b5b92951ffe944c5dc81b42af45a2d143ba 100644
--- a/public/assets/images/icons/yellow/resources.svg
+++ b/public/assets/images/icons/yellow/resources.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="resources"><path class="cls-1" d="M29,29V51H51V29ZM47.61,44.46,44.46,47.6,40,43.14,35.54,47.6l-3.15-3.14L36.86,40,32.4,35.53l3.14-3.14L40,36.86l4.46-4.47,3.15,3.15L43.14,40Z"/><path class="cls-1" d="M16,3V25H38V3Zm9.12,18.6-7.4-7.4L21,11l4.14,4.14L33,7.18l3.26,3.25Z"/><path class="cls-1" d="M3,29V51H25V29ZM20.23,40.21V47.6H16.14V41.82H11.86V47.6H7.77V40.21H6.56L14,32.39l7.44,7.82Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="resources"><path class="cls-1" d="M29,29V51H51V29ZM47.61,44.46,44.46,47.6,40,43.14,35.54,47.6l-3.15-3.14L36.86,40,32.4,35.53l3.14-3.14L40,36.86l4.46-4.47,3.15,3.15L43.14,40Z"/><path class="cls-1" d="M16,3V25H38V3Zm9.12,18.6-7.4-7.4L21,11l4.14,4.14L33,7.18l3.26,3.25Z"/><path class="cls-1" d="M3,29V51H25V29ZM20.23,40.21V47.6H16.14V41.82H11.86V47.6H7.77V40.21H6.56L14,32.39l7.44,7.82Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/roles2.svg b/public/assets/images/icons/yellow/roles2.svg
index 6a2fff8e4f176abbbfb9cbfbb0d4ad6af57fa9b7..17cd51798b3af906fdef816160d41d9f7fc98fd6 100644
--- a/public/assets/images/icons/yellow/roles2.svg
+++ b/public/assets/images/icons/yellow/roles2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="roles2"><path class="cls-1" d="M19,10a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-5A10,10,0,1,0,29,15,10,10,0,0,0,19,5Z"/><path class="cls-1" d="M30,44v0H8V36a3,3,0,0,1,3-3H22.86L26,28H11a8,8,0,0,0-8,8V49H35V44Z"/><path class="cls-1" d="M48.35,5.68a5.4,5.4,0,0,0-7.22,1.87L40.25,9l-1.33,2.21L27,31.1,27.13,41l9.05-4.78L48.09,16.33l1.32-2.21.88-1.47A5,5,0,0,0,48.35,5.68ZM34.26,34.3l-1.66.88-2.91-1.62,0-1.79L41.21,12.5l4.59,2.55Zm8.28-24,.88-1.48A2.71,2.71,0,0,1,47,7.89a2.5,2.5,0,0,1,1,3.48l-.88,1.48Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="roles2"><path class="cls-1" d="M19,10a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-5A10,10,0,1,0,29,15,10,10,0,0,0,19,5Z"/><path class="cls-1" d="M30,44v0H8V36a3,3,0,0,1,3-3H22.86L26,28H11a8,8,0,0,0-8,8V49H35V44Z"/><path class="cls-1" d="M48.35,5.68a5.4,5.4,0,0,0-7.22,1.87L40.25,9l-1.33,2.21L27,31.1,27.13,41l9.05-4.78L48.09,16.33l1.32-2.21.88-1.47A5,5,0,0,0,48.35,5.68ZM34.26,34.3l-1.66.88-2.91-1.62,0-1.79L41.21,12.5l4.59,2.55Zm8.28-24,.88-1.48A2.71,2.71,0,0,1,47,7.89a2.5,2.5,0,0,1,1,3.48l-.88,1.48Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/room.svg b/public/assets/images/icons/yellow/room.svg
index 019ea4f9d5f8ff530d7d09e1a95214816ce7b060..17d1d07ca6706adc13754fc00283872d20cf99be 100644
--- a/public/assets/images/icons/yellow/room.svg
+++ b/public/assets/images/icons/yellow/room.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="room"><polygon points="51 37.2 44.14 37.2 44.14 43.94 9.86 43.94 9.86 9.65 44.14 9.77 44.14 16.62 51 16.62 51 2.79 3 2.79 3 50.79 51 50.79 51 37.2"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="room"><polygon points="51 37.2 44.14 37.2 44.14 43.94 9.86 43.94 9.86 9.65 44.14 9.77 44.14 16.62 51 16.62 51 2.79 3 2.79 3 50.79 51 50.79 51 37.2"/></g></svg>
diff --git a/public/assets/images/icons/yellow/schedule.svg b/public/assets/images/icons/yellow/schedule.svg
index 9bc4454164d51d93be454be829f1c2fbba9a34b2..d6b383d01b113bcb3e4733f2231651975f94a4be 100644
--- a/public/assets/images/icons/yellow/schedule.svg
+++ b/public/assets/images/icons/yellow/schedule.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M18.68,37.5V31.66L14.35,37.5Zm18-21.06a2.83,2.83,0,0,0,2.83-2.82V5.82a2.83,2.83,0,0,0-5.65,0v7.8A2.82,2.82,0,0,0,36.73,16.44Zm-19.46,0a2.82,2.82,0,0,0,2.82-2.82V5.82a2.82,2.82,0,0,0-5.64,0v7.8A2.82,2.82,0,0,0,17.27,16.44ZM43,12.05v1.89a6.3,6.3,0,0,1-12.6,0V12.05H23.57v1.89a6.3,6.3,0,0,1-12.6,0V12.05H3V51H51V12.05ZM25.36,41.2a3.35,3.35,0,0,1-1.87.46h-.31v2a2.76,2.76,0,0,1-.6,1.93,2.13,2.13,0,0,1-1.62.7h0a2.12,2.12,0,0,1-1.64-.71,2.79,2.79,0,0,1-.61-1.92v-2H12.3A3.38,3.38,0,0,1,10,40.93a2.63,2.63,0,0,1-.83-2,1.94,1.94,0,0,1,.13-.71,3.6,3.6,0,0,1,.34-.68c.13-.2.28-.41.42-.59s.31-.41.51-.68l7.29-9.76A13.23,13.23,0,0,1,19.08,25a2.08,2.08,0,0,1,1.48-.57,2.49,2.49,0,0,1,2,.78,3.26,3.26,0,0,1,.66,2.14V37.51h.06a4.62,4.62,0,0,1,1.92.33,1.77,1.77,0,0,1,.95,1.75A1.83,1.83,0,0,1,25.36,41.2Zm16.35,4.13A2.3,2.3,0,0,1,40,46H29.8a2.71,2.71,0,0,1-1.95-.72,2.36,2.36,0,0,1-.74-1.72A4.06,4.06,0,0,1,27.53,42a5.32,5.32,0,0,1,.92-1.44q1.83-1.9,3.33-3.27a21.23,21.23,0,0,1,2.15-1.83,11.55,11.55,0,0,0,1.8-1.53,6.26,6.26,0,0,0,1.05-1.51A3.46,3.46,0,0,0,37.12,31a2.44,2.44,0,0,0-.34-1.31,2.41,2.41,0,0,0-.94-.88,3,3,0,0,0-1.32-.33,2.72,2.72,0,0,0-2.4,1.35,7.69,7.69,0,0,0-.4,1,5.19,5.19,0,0,1-.82,1.58,2,2,0,0,1-1.6.69,2.11,2.11,0,0,1-1.52-.61,2.24,2.24,0,0,1-.61-1.62,5.64,5.64,0,0,1,.47-2.18A6.06,6.06,0,0,1,29,26.62a6.83,6.83,0,0,1,2.32-1.47,8.85,8.85,0,0,1,3.25-.56,9.35,9.35,0,0,1,3.81.71A6.19,6.19,0,0,1,42,30.88,6.37,6.37,0,0,1,41,34.26a10.22,10.22,0,0,1-1.82,2.31c-.6.54-1.59,1.37-3,2.5a22.87,22.87,0,0,0-2.78,2.57h6.12a3.14,3.14,0,0,1,2,.55,2,2,0,0,1,.77,1.62A2.15,2.15,0,0,1,41.71,45.33Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M18.68,37.5V31.66L14.35,37.5Zm18-21.06a2.83,2.83,0,0,0,2.83-2.82V5.82a2.83,2.83,0,0,0-5.65,0v7.8A2.82,2.82,0,0,0,36.73,16.44Zm-19.46,0a2.82,2.82,0,0,0,2.82-2.82V5.82a2.82,2.82,0,0,0-5.64,0v7.8A2.82,2.82,0,0,0,17.27,16.44ZM43,12.05v1.89a6.3,6.3,0,0,1-12.6,0V12.05H23.57v1.89a6.3,6.3,0,0,1-12.6,0V12.05H3V51H51V12.05ZM25.36,41.2a3.35,3.35,0,0,1-1.87.46h-.31v2a2.76,2.76,0,0,1-.6,1.93,2.13,2.13,0,0,1-1.62.7h0a2.12,2.12,0,0,1-1.64-.71,2.79,2.79,0,0,1-.61-1.92v-2H12.3A3.38,3.38,0,0,1,10,40.93a2.63,2.63,0,0,1-.83-2,1.94,1.94,0,0,1,.13-.71,3.6,3.6,0,0,1,.34-.68c.13-.2.28-.41.42-.59s.31-.41.51-.68l7.29-9.76A13.23,13.23,0,0,1,19.08,25a2.08,2.08,0,0,1,1.48-.57,2.49,2.49,0,0,1,2,.78,3.26,3.26,0,0,1,.66,2.14V37.51h.06a4.62,4.62,0,0,1,1.92.33,1.77,1.77,0,0,1,.95,1.75A1.83,1.83,0,0,1,25.36,41.2Zm16.35,4.13A2.3,2.3,0,0,1,40,46H29.8a2.71,2.71,0,0,1-1.95-.72,2.36,2.36,0,0,1-.74-1.72A4.06,4.06,0,0,1,27.53,42a5.32,5.32,0,0,1,.92-1.44q1.83-1.9,3.33-3.27a21.23,21.23,0,0,1,2.15-1.83,11.55,11.55,0,0,0,1.8-1.53,6.26,6.26,0,0,0,1.05-1.51A3.46,3.46,0,0,0,37.12,31a2.44,2.44,0,0,0-.34-1.31,2.41,2.41,0,0,0-.94-.88,3,3,0,0,0-1.32-.33,2.72,2.72,0,0,0-2.4,1.35,7.69,7.69,0,0,0-.4,1,5.19,5.19,0,0,1-.82,1.58,2,2,0,0,1-1.6.69,2.11,2.11,0,0,1-1.52-.61,2.24,2.24,0,0,1-.61-1.62,5.64,5.64,0,0,1,.47-2.18A6.06,6.06,0,0,1,29,26.62a6.83,6.83,0,0,1,2.32-1.47,8.85,8.85,0,0,1,3.25-.56,9.35,9.35,0,0,1,3.81.71A6.19,6.19,0,0,1,42,30.88,6.37,6.37,0,0,1,41,34.26a10.22,10.22,0,0,1-1.82,2.31c-.6.54-1.59,1.37-3,2.5a22.87,22.87,0,0,0-2.78,2.57h6.12a3.14,3.14,0,0,1,2,.55,2,2,0,0,1,.77,1.62A2.15,2.15,0,0,1,41.71,45.33Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/schedule2.svg b/public/assets/images/icons/yellow/schedule2.svg
index 803e551129b53cb908a41d5b1e8bcc3b1c4e9c9f..2d688e12ba32b3c589ebd9603407c5c5783188a6 100644
--- a/public/assets/images/icons/yellow/schedule2.svg
+++ b/public/assets/images/icons/yellow/schedule2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><rect class="a" x="17.93" y="6.97" width="18.09" height="5"/><polygon class="a" points="40.93 6.97 40.93 11.97 46 11.97 46 45.97 8 45.97 8 11.97 13.02 11.97 13.02 6.97 3 6.97 3 50.97 51 50.97 51 6.97 40.93 6.97"/><path class="a" d="M35.47,16A2.62,2.62,0,0,0,38,13.24V5.69a2.51,2.51,0,1,0-5,0v7.55A2.63,2.63,0,0,0,35.47,16Z"/><path class="a" d="M18.52,16A2.63,2.63,0,0,0,21,13.24V5.69A2.63,2.63,0,0,0,18.52,3,2.62,2.62,0,0,0,16,5.69v7.55A2.62,2.62,0,0,0,18.52,16Z"/><path class="a" d="M20.45,36H14a1.92,1.92,0,0,1-2-2,2.77,2.77,0,0,1,.49-1.71l8-11.46A1.87,1.87,0,0,1,22.14,20c1.39,0,1.93.84,1.93,2.09V32.64h1.3a1.67,1.67,0,0,1,0,3.31h-1.3v3c0,1.22-.46,2-1.81,2s-1.81-.81-1.81-2Zm0-10.82H20.4l-5,7.51h5Z"/><path class="a" d="M40.29,36.94A1.59,1.59,0,0,1,42,38.77c0,1.3-.72,1.82-1.91,1.82h-9.7a2,2,0,0,1-2.12-2.14c0-2.06,1.63-4.36,4.86-6.65,3.6-2.55,4.84-3.07,4.84-5.42a2.72,2.72,0,0,0-2.72-2.93c-1.65,0-2.76.75-3.33,3.07-.26,1.08-.6,1.63-1.63,1.63a1.71,1.71,0,0,1-1.89-1.94c0-3.54,3.1-6.24,6.9-6.24,4.14,0,6.6,3.05,6.6,5.71,0,3.86-1.58,5.37-4.32,7.11-2.92,1.86-4.71,3.05-5,4.15Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><rect class="a" x="17.93" y="6.97" width="18.09" height="5"/><polygon class="a" points="40.93 6.97 40.93 11.97 46 11.97 46 45.97 8 45.97 8 11.97 13.02 11.97 13.02 6.97 3 6.97 3 50.97 51 50.97 51 6.97 40.93 6.97"/><path class="a" d="M35.47,16A2.62,2.62,0,0,0,38,13.24V5.69a2.51,2.51,0,1,0-5,0v7.55A2.63,2.63,0,0,0,35.47,16Z"/><path class="a" d="M18.52,16A2.63,2.63,0,0,0,21,13.24V5.69A2.63,2.63,0,0,0,18.52,3,2.62,2.62,0,0,0,16,5.69v7.55A2.62,2.62,0,0,0,18.52,16Z"/><path class="a" d="M20.45,36H14a1.92,1.92,0,0,1-2-2,2.77,2.77,0,0,1,.49-1.71l8-11.46A1.87,1.87,0,0,1,22.14,20c1.39,0,1.93.84,1.93,2.09V32.64h1.3a1.67,1.67,0,0,1,0,3.31h-1.3v3c0,1.22-.46,2-1.81,2s-1.81-.81-1.81-2Zm0-10.82H20.4l-5,7.51h5Z"/><path class="a" d="M40.29,36.94A1.59,1.59,0,0,1,42,38.77c0,1.3-.72,1.82-1.91,1.82h-9.7a2,2,0,0,1-2.12-2.14c0-2.06,1.63-4.36,4.86-6.65,3.6-2.55,4.84-3.07,4.84-5.42a2.72,2.72,0,0,0-2.72-2.93c-1.65,0-2.76.75-3.33,3.07-.26,1.08-.6,1.63-1.63,1.63a1.71,1.71,0,0,1-1.89-1.94c0-3.54,3.1-6.24,6.9-6.24,4.14,0,6.6,3.05,6.6,5.71,0,3.86-1.58,5.37-4.32,7.11-2.92,1.86-4.71,3.05-5,4.15Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/search.svg b/public/assets/images/icons/yellow/search.svg
index 87fefd86d6edf86f6914d9c5eb68bbce066322ee..4fdc81b536447d28749a1e918f5d272eea3309db 100644
--- a/public/assets/images/icons/yellow/search.svg
+++ b/public/assets/images/icons/yellow/search.svg
@@ -1 +1 @@
-<svg id="Icons_NEUES_LAYOUT_2021" data-name="Icons – NEUES LAYOUT 2021" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="search2"><path class="cls-1" d="M49.54,42.46,38,31c-.14-.13-.3-.24-.45-.36a18.54,18.54,0,1,0-7,7c.12.15.23.31.36.45l11.5,11.5a5,5,0,0,0,7.08-7.08ZM9,21.5A12.5,12.5,0,1,1,21.5,34,12.52,12.52,0,0,1,9,21.5Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="Icons_NEUES_LAYOUT_2021" data-name="Icons – NEUES LAYOUT 2021" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="search2"><path class="cls-1" d="M49.54,42.46,38,31c-.14-.13-.3-.24-.45-.36a18.54,18.54,0,1,0-7,7c.12.15.23.31.36.45l11.5,11.5a5,5,0,0,0,7.08-7.08ZM9,21.5A12.5,12.5,0,1,1,21.5,34,12.52,12.52,0,0,1,9,21.5Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/service.svg b/public/assets/images/icons/yellow/service.svg
index 1f5cbb6902dd64805e379e3ccdc027d7a6282d1e..6cf7a0f67a3eab5c58f775990c7dc3e095d2756e 100644
--- a/public/assets/images/icons/yellow/service.svg
+++ b/public/assets/images/icons/yellow/service.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="33.79 22.79 33.79 13.21 24.21 13.21 24.21 18 29 18 29 22.79 33.79 22.79"/><polygon class="a" points="20.11 9.11 37.89 9.11 37.89 26.89 29 26.89 29 31 42 31 42 5 16 5 16 18 20.11 18 20.11 9.11"/><path class="a" d="M45.59,34.44a3,3,0,0,0-4.13-1.1l-7.61,4.35L20.59,35.78S24,26.92,24.37,25v0a3.05,3.05,0,0,0,.18-1,2.91,2.91,0,0,0-5.27-1.75s0,0,0,0l-.05.06v0c-4,5.59-9.66,11.92-9.75,12.43l-.07.42a2.87,2.87,0,0,0-.05.31L8,43.84a1.76,1.76,0,0,0,.43,1.49c1,1.46,4.83,3.08,8.18,3.67h7.79a6.88,6.88,0,0,0,1.48-.19,3,3,0,0,0,1.41-.4l1.15-.65,1-.52c3.87-2.09,8.15-4.57,9.74-5.58l0,0,5.28-3A3,3,0,0,0,45.59,34.44Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/share.svg b/public/assets/images/icons/yellow/share.svg
index ae39ea83237ffde850d7a457c9d4cce9344f988f..84f6fdfba1e1365b150b67c8e0790134db004bf6 100644
--- a/public/assets/images/icons/yellow/share.svg
+++ b/public/assets/images/icons/yellow/share.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><polygon class="a" points="38 45.97 8 45.97 8 15.97 30 15.97 33 12.97 5 12.97 5 48.97 41 48.97 41 20.97 38 23.97 38 45.97"/><polygon class="a" points="29.09 5.09 34.11 10.11 40.33 10.11 20.06 30.37 23.6 33.91 43.89 13.61 43.89 19.89 48.91 24.91 48.91 5.09 29.09 5.09"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/smiley.svg b/public/assets/images/icons/yellow/smiley.svg
index e1203cd21871cdc822374c66c6d36c2b9e90337c..bbbd2e68d074185325ed94a43fa26b26723d30de 100644
--- a/public/assets/images/icons/yellow/smiley.svg
+++ b/public/assets/images/icons/yellow/smiley.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3Zm0,45A21,21,0,1,1,48,27,21,21,0,0,1,27,48Z"/><path class="a" d="M32.24,25.23c2.18-.15,3.81-2.53,3.63-5.3s-2.11-4.91-4.3-4.77-3.82,2.53-3.63,5.3S30.05,25.37,32.24,25.23Z"/><path class="a" d="M21.26,25.83c2.18-.15,3.81-2.52,3.63-5.3s-2.11-4.91-4.3-4.76S16.77,18.29,17,21.06,19.07,26,21.26,25.83Z"/><path class="a" d="M44.25,23.67a1.5,1.5,0,1,0-3,.42,14.5,14.5,0,0,1-28.72,4.05,1.49,1.49,0,0,0-1.69-1.27A1.51,1.51,0,0,0,9.6,28.58a17.58,17.58,0,0,0,17.32,15,17,17,0,0,0,2.46-.17A17.52,17.52,0,0,0,44.25,23.67Z"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M27,3A24,24,0,1,0,51,27,24,24,0,0,0,27,3Zm0,45A21,21,0,1,1,48,27,21,21,0,0,1,27,48Z"/><path class="a" d="M32.24,25.23c2.18-.15,3.81-2.53,3.63-5.3s-2.11-4.91-4.3-4.77-3.82,2.53-3.63,5.3S30.05,25.37,32.24,25.23Z"/><path class="a" d="M21.26,25.83c2.18-.15,3.81-2.52,3.63-5.3s-2.11-4.91-4.3-4.76S16.77,18.29,17,21.06,19.07,26,21.26,25.83Z"/><path class="a" d="M44.25,23.67a1.5,1.5,0,1,0-3,.42,14.5,14.5,0,0,1-28.72,4.05,1.49,1.49,0,0,0-1.69-1.27A1.51,1.51,0,0,0,9.6,28.58a17.58,17.58,0,0,0,17.32,15,17,17,0,0,0,2.46-.17A17.52,17.52,0,0,0,44.25,23.67Z"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/spiral.svg b/public/assets/images/icons/yellow/spiral.svg
index b228c53e2ca013e17dc7e52f8e88df4f5f3dc79f..ddc51be24bd61f0216ac6783bdb42256cfe6aad1 100644
--- a/public/assets/images/icons/yellow/spiral.svg
+++ b/public/assets/images/icons/yellow/spiral.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="spiral"><path class="cls-1" d="M3,27A24,24,0,1,0,27,3,24,24,0,0,0,3,27ZM44.57,16.35a20.42,20.42,0,0,1-8.48,27A16.06,16.06,0,0,1,14.31,37a12.49,12.49,0,0,1,4.93-17,9.67,9.67,0,0,1,13.12,3.81A7.33,7.33,0,0,1,33,29.47a7.41,7.41,0,0,1-3.55,4.42,5.59,5.59,0,0,1-7.58-2.21,4.13,4.13,0,0,1,1.63-5.61,3,3,0,0,1,4,1.17,1.67,1.67,0,1,0,2.93-1.61,6.33,6.33,0,0,0-8.58-2.49,7.49,7.49,0,0,0-2.95,10.15,8.94,8.94,0,0,0,12.12,3.52,10.73,10.73,0,0,0,4.24-14.58A13,13,0,0,0,17.63,17.1a15.84,15.84,0,0,0-6.25,21.51,19.26,19.26,0,0,0,5.8,6.46A20.56,20.56,0,1,1,44.57,16.35Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="spiral"><path class="cls-1" d="M3,27A24,24,0,1,0,27,3,24,24,0,0,0,3,27ZM44.57,16.35a20.42,20.42,0,0,1-8.48,27A16.06,16.06,0,0,1,14.31,37a12.49,12.49,0,0,1,4.93-17,9.67,9.67,0,0,1,13.12,3.81A7.33,7.33,0,0,1,33,29.47a7.41,7.41,0,0,1-3.55,4.42,5.59,5.59,0,0,1-7.58-2.21,4.13,4.13,0,0,1,1.63-5.61,3,3,0,0,1,4,1.17,1.67,1.67,0,1,0,2.93-1.61,6.33,6.33,0,0,0-8.58-2.49,7.49,7.49,0,0,0-2.95,10.15,8.94,8.94,0,0,0,12.12,3.52,10.73,10.73,0,0,0,4.24-14.58A13,13,0,0,0,17.63,17.1a15.84,15.84,0,0,0-6.25,21.51,19.26,19.26,0,0,0,5.8,6.46A20.56,20.56,0,1,1,44.57,16.35Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/staple.svg b/public/assets/images/icons/yellow/staple.svg
index d005781f6c87f9bb77c38d34ed26482bd6c1f158..0f553df454cf1605afbf34b911617f51e4ef15ba 100644
--- a/public/assets/images/icons/yellow/staple.svg
+++ b/public/assets/images/icons/yellow/staple.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="staple"><path class="cls-1" d="M43.22,9.22a14.61,14.61,0,0,0-20.58,0L6.5,25.27l2.89,2.86,16.13-16a10.51,10.51,0,0,1,14.83,0,10.4,10.4,0,0,1,0,14.75l-16.14,16a7.24,7.24,0,0,1-10.18,0,7.16,7.16,0,0,1,0-10.13l14.13-14h0a3.93,3.93,0,0,1,5.54,0,3.88,3.88,0,0,1,0,5.5l-14.13,14,2.87,2.85,14.14-14a7.9,7.9,0,0,0,0-11.23,8,8,0,0,0-11.24,0h0L11.15,29.89a11.16,11.16,0,0,0,0,15.85,11.34,11.34,0,0,0,15.94,0l16.14-16A14.39,14.39,0,0,0,43.22,9.22Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="staple"><path class="cls-1" d="M43.22,9.22a14.61,14.61,0,0,0-20.58,0L6.5,25.27l2.89,2.86,16.13-16a10.51,10.51,0,0,1,14.83,0,10.4,10.4,0,0,1,0,14.75l-16.14,16a7.24,7.24,0,0,1-10.18,0,7.16,7.16,0,0,1,0-10.13l14.13-14h0a3.93,3.93,0,0,1,5.54,0,3.88,3.88,0,0,1,0,5.5l-14.13,14,2.87,2.85,14.14-14a7.9,7.9,0,0,0,0-11.23,8,8,0,0,0-11.24,0h0L11.15,29.89a11.16,11.16,0,0,0,0,15.85,11.34,11.34,0,0,0,15.94,0l16.14-16A14.39,14.39,0,0,0,43.22,9.22Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/star-empty.svg b/public/assets/images/icons/yellow/star-empty.svg
index f12ab20939146fe650eb5777672aab8419118093..5397fcb276a5ebb86462b5caa69e18c3069d4344 100755
--- a/public/assets/images/icons/yellow/star-empty.svg
+++ b/public/assets/images/icons/yellow/star-empty.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M10.707 9.59l4.38-3.18H9.672L8.001 1.26 6.328 6.41H.913l4.38 3.18-1.67 5.15 4.378-3.183 4.376 3.183-1.67-5.15zm-1.173-.395l2.481-1.802H8.947l-.946-2.917-.948 2.917H3.985l2.481 1.802-.946 2.918 2.481-1.803 2.479 1.803-.946-2.918z" fill="#ffad00"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M10.707 9.59l4.38-3.18H9.672L8.001 1.26 6.328 6.41H.913l4.38 3.18-1.67 5.15 4.378-3.183 4.376 3.183-1.67-5.15zm-1.173-.395l2.481-1.802H8.947l-.946-2.917-.948 2.917H3.985l2.481 1.802-.946 2.918 2.481-1.803 2.479 1.803-.946-2.918z" fill="#ffad00"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/star-halffull.svg b/public/assets/images/icons/yellow/star-halffull.svg
index 8243dfe393d6151a73263ded3ac2b17a8c25f45d..aeb86375a98d28c246993f7444cfd8248cb42a8e 100755
--- a/public/assets/images/icons/yellow/star-halffull.svg
+++ b/public/assets/images/icons/yellow/star-halffull.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M8 11.558L3.623 14.74l1.67-5.151-4.38-3.18h5.415L8.001 1.26l1.671 5.149h5.415l-4.38 3.18 1.67 5.151-4.376-3.183-.001.001.001-1.248 2.479 1.803-.946-2.918 2.481-1.802H8.947l-.946-2.917L8 4.478v7.08z" fill="#ffad00"/></svg>
\ No newline at end of file
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M8 11.558L3.623 14.74l1.67-5.151-4.38-3.18h5.415L8.001 1.26l1.671 5.149h5.415l-4.38 3.18 1.67 5.151-4.376-3.183-.001.001.001-1.248 2.479 1.803-.946-2.918 2.481-1.802H8.947l-.946-2.917L8 4.478v7.08z" fill="#ffad00"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/stop.svg b/public/assets/images/icons/yellow/stop.svg
index 9efba85808feb178dc34c4350a5b31105d1f6117..ebaf7bdb57717221d293ec27f8884da460a42cf1 100644
--- a/public/assets/images/icons/yellow/stop.svg
+++ b/public/assets/images/icons/yellow/stop.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><rect class="a" x="10" y="8" width="34" height="38"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><rect class="a" x="10" y="8" width="34" height="38"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/table-of-contents.svg b/public/assets/images/icons/yellow/table-of-contents.svg
index e36b6b51fa19b666fd8c5ad5466cffe3be2aa2eb..c2a3d388b30a743d3da2bb09aa3a3276e73a7305 100755
--- a/public/assets/images/icons/yellow/table-of-contents.svg
+++ b/public/assets/images/icons/yellow/table-of-contents.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="table-of-contents"><rect class="cls-1" x="40.71" y="2.89" width="10.29" height="6.86"/><rect class="cls-1" x="3" y="2.89" width="30.86" height="6.86"/><rect class="cls-1" x="3" y="16.61" width="30.86" height="6.86"/><rect class="cls-1" x="13.29" y="30.32" width="20.57" height="6.86"/><rect class="cls-1" x="3" y="44.04" width="30.86" height="6.86"/><rect class="cls-1" x="40.71" y="16.61" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="30.32" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="44.04" width="10.29" height="6.86"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="table-of-contents"><rect class="cls-1" x="40.71" y="2.89" width="10.29" height="6.86"/><rect class="cls-1" x="3" y="2.89" width="30.86" height="6.86"/><rect class="cls-1" x="3" y="16.61" width="30.86" height="6.86"/><rect class="cls-1" x="13.29" y="30.32" width="20.57" height="6.86"/><rect class="cls-1" x="3" y="44.04" width="30.86" height="6.86"/><rect class="cls-1" x="40.71" y="16.61" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="30.32" width="10.29" height="6.86"/><rect class="cls-1" x="40.71" y="44.04" width="10.29" height="6.86"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/test.svg b/public/assets/images/icons/yellow/test.svg
index 6dd468e25b8ce09113cf62bed8687fc0d8f9154f..b18788ca70d89a8722d7b9275367458c45236238 100644
--- a/public/assets/images/icons/yellow/test.svg
+++ b/public/assets/images/icons/yellow/test.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="test"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><polygon class="cls-1" points="49 8.99 46.54 6.5 40.58 12.53 37.45 9.38 35 11.86 40.58 17.5 49 8.99"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="test"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><polygon class="cls-1" points="49 8.99 46.54 6.5 40.58 12.53 37.45 9.38 35 11.86 40.58 17.5 49 8.99"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/tools.svg b/public/assets/images/icons/yellow/tools.svg
index 8325fd5ee1311867f9e28f172a66247b9ff1acef..40c39a3893e65d54b974f8c52fc4e5892236d2dd 100644
--- a/public/assets/images/icons/yellow/tools.svg
+++ b/public/assets/images/icons/yellow/tools.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="tools"><path class="cls-1" d="M49.32,40.2,37.15,28,28,37.15,40.18,49.31a6.47,6.47,0,0,0,9.14-9.11Z"/><path class="cls-1" d="M26.08,16.94A11.61,11.61,0,0,0,11.28,3.51l6.35,6.36-1.84,5.72L9.86,17.64,3.5,11.27A11.63,11.63,0,0,0,16.93,26.09Z"/><g id="Edit"><polygon class="cls-1" points="3.12 50.72 8.73 48.99 4.91 45.16 3.12 50.72"/><polygon class="cls-1" points="6.53 39.85 14.02 47.39 44.34 17.21 36.85 9.67 6.53 39.85"/><path class="cls-1" d="M49.44,4.65A5.31,5.31,0,0,0,42,4.6l-3,3,7.49,7.55,3-3h0A5.31,5.31,0,0,0,49.44,4.65Z"/></g></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="tools"><path class="cls-1" d="M49.32,40.2,37.15,28,28,37.15,40.18,49.31a6.47,6.47,0,0,0,9.14-9.11Z"/><path class="cls-1" d="M26.08,16.94A11.61,11.61,0,0,0,11.28,3.51l6.35,6.36-1.84,5.72L9.86,17.64,3.5,11.27A11.63,11.63,0,0,0,16.93,26.09Z"/><g id="Edit"><polygon class="cls-1" points="3.12 50.72 8.73 48.99 4.91 45.16 3.12 50.72"/><polygon class="cls-1" points="6.53 39.85 14.02 47.39 44.34 17.21 36.85 9.67 6.53 39.85"/><path class="cls-1" d="M49.44,4.65A5.31,5.31,0,0,0,42,4.6l-3,3,7.49,7.55,3-3h0A5.31,5.31,0,0,0,49.44,4.65Z"/></g></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/topic.svg b/public/assets/images/icons/yellow/topic.svg
index f0c0ae88ea4511559bfe4c463161d06b911e277a..ba667db30ad5fe48fc3cbd0e4184d46a8cb9eb5c 100644
--- a/public/assets/images/icons/yellow/topic.svg
+++ b/public/assets/images/icons/yellow/topic.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="topic"><path d="M42,9V48H12V9H42m3-3H9V51H45V6Z"/><rect x="20.81" y="3" width="12.09" height="8.9"/><rect x="18" y="23.81" width="17.99" height="6.06"/><rect x="18" y="32.8" width="17.99" height="6.3"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="topic"><path d="M42,9V48H12V9H42m3-3H9V51H45V6Z"/><rect x="20.81" y="3" width="12.09" height="8.9"/><rect x="18" y="23.81" width="17.99" height="6.06"/><rect x="18" y="32.8" width="17.99" height="6.3"/></g></svg>
diff --git a/public/assets/images/icons/yellow/trash.svg b/public/assets/images/icons/yellow/trash.svg
index 65eb36abf3ae64036b0bbff855a65e0b2f1b3461..23bcde2bfc73b950afbe3592dc43a0cf6d1cc48d 100644
--- a/public/assets/images/icons/yellow/trash.svg
+++ b/public/assets/images/icons/yellow/trash.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M43,8H34.88a6.22,6.22,0,0,0-6.1-5H25.22a6.22,6.22,0,0,0-6.1,5H11a3,3,0,0,0-3,3v2H46V11A3,3,0,0,0,43,8ZM25.22,6h3.56a3.22,3.22,0,0,1,3,2H22.24A3.22,3.22,0,0,1,25.22,6Z"/><path class="a" d="M11,48a3,3,0,0,0,3,3H40a3,3,0,0,0,3-3V15H11Zm3-30H40V48H14Z"/><rect class="a" x="17" y="19.97" width="4" height="26"/><rect class="a" x="25" y="19.97" width="4" height="26"/><rect class="a" x="33" y="19.97" width="4" height="26"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M43,8H34.88a6.22,6.22,0,0,0-6.1-5H25.22a6.22,6.22,0,0,0-6.1,5H11a3,3,0,0,0-3,3v2H46V11A3,3,0,0,0,43,8ZM25.22,6h3.56a3.22,3.22,0,0,1,3,2H22.24A3.22,3.22,0,0,1,25.22,6Z"/><path class="a" d="M11,48a3,3,0,0,0,3,3H40a3,3,0,0,0,3-3V15H11Zm3-30H40V48H14Z"/><rect class="a" x="17" y="19.97" width="4" height="26"/><rect class="a" x="25" y="19.97" width="4" height="26"/><rect class="a" x="33" y="19.97" width="4" height="26"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/upload.svg b/public/assets/images/icons/yellow/upload.svg
index 72224fd7cc72c4ee6d2e7cf4285481220fa3d1bc..0412d8045771b2993bc73803cf841655f03bb952 100644
--- a/public/assets/images/icons/yellow/upload.svg
+++ b/public/assets/images/icons/yellow/upload.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/upload2.svg b/public/assets/images/icons/yellow/upload2.svg
index 72224fd7cc72c4ee6d2e7cf4285481220fa3d1bc..0412d8045771b2993bc73803cf841655f03bb952 100644
--- a/public/assets/images/icons/yellow/upload2.svg
+++ b/public/assets/images/icons/yellow/upload2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M48,28.9v15H6v-15H48m3-3H3v21H51v-21Z"/><circle class="a" cx="38.99" cy="34.9" r="3"/><polygon class="a" points="13 21 20.09 21 27 14.09 33.91 21 41 21 27 7 13 21"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/vcard.svg b/public/assets/images/icons/yellow/vcard.svg
index 8706925d1a18143dfd6312d98e0c9fa5bad26412..c86b610bde83dad3a966fbb671e34abe3bb0e2df 100644
--- a/public/assets/images/icons/yellow/vcard.svg
+++ b/public/assets/images/icons/yellow/vcard.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,10V44H51V10Zm8,31V36.21A1.23,1.23,0,0,1,12.24,35H23.76A1.24,1.24,0,0,1,25,36.21V41Zm37,0H28V36.21A4.24,4.24,0,0,0,23.76,32H12.24A4.24,4.24,0,0,0,8,36.21V41H6V13H48Z"/><path class="a" d="M18.1,31a7,7,0,1,0-7-7A7,7,0,0,0,18.1,31Zm0-10.91A3.91,3.91,0,1,1,14.2,24,3.92,3.92,0,0,1,18.1,20.06Z"/><rect class="a" x="31" y="17.97" width="14" height="4"/><rect class="a" x="31" y="24.97" width="14" height="4"/></svg>
\ No newline at end of file
+<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#ffad00;}</style></defs><path class="a" d="M3,10V44H51V10Zm8,31V36.21A1.23,1.23,0,0,1,12.24,35H23.76A1.24,1.24,0,0,1,25,36.21V41Zm37,0H28V36.21A4.24,4.24,0,0,0,23.76,32H12.24A4.24,4.24,0,0,0,8,36.21V41H6V13H48Z"/><path class="a" d="M18.1,31a7,7,0,1,0-7-7A7,7,0,0,0,18.1,31Zm0-10.91A3.91,3.91,0,1,1,14.2,24,3.92,3.92,0,0,1,18.1,20.06Z"/><rect class="a" x="31" y="17.97" width="14" height="4"/><rect class="a" x="31" y="24.97" width="14" height="4"/></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/video.svg b/public/assets/images/icons/yellow/video.svg
index ce4d45eba8aa4b8b037ec670d2344d31dcf82163..5a44c928ab6fcf2b2895d36a5b605f2fc9e2d329 100644
--- a/public/assets/images/icons/yellow/video.svg
+++ b/public/assets/images/icons/yellow/video.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="video"><path class="cls-1" d="M48,15l-9,6V15.67A3.68,3.68,0,0,0,35.33,12H6.67A3.68,3.68,0,0,0,3,15.67V38.33A3.68,3.68,0,0,0,6.67,42H35.33A3.68,3.68,0,0,0,39,38.33V33l9,6h3V15ZM35.65,38.33a.33.33,0,0,1-.32.32H6.67a.33.33,0,0,1-.32-.32V15.67a.33.33,0,0,1,.32-.32H35.33a.33.33,0,0,1,.32.32Z"/><polygon class="cls-1" points="15 36 28.5 27 15 18 15 36"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="video"><path class="cls-1" d="M48,15l-9,6V15.67A3.68,3.68,0,0,0,35.33,12H6.67A3.68,3.68,0,0,0,3,15.67V38.33A3.68,3.68,0,0,0,6.67,42H35.33A3.68,3.68,0,0,0,39,38.33V33l9,6h3V15ZM35.65,38.33a.33.33,0,0,1-.32.32H6.67a.33.33,0,0,1-.32-.32V15.67a.33.33,0,0,1,.32-.32H35.33a.33.33,0,0,1,.32.32Z"/><polygon class="cls-1" points="15 36 28.5 27 15 18 15 36"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/video2.svg b/public/assets/images/icons/yellow/video2.svg
index 4ddc9bb337af48092d2651ea7e650e36e64eef28..5cfd181b38ef0cd21b23e6654d9162f71ee7775a 100644
--- a/public/assets/images/icons/yellow/video2.svg
+++ b/public/assets/images/icons/yellow/video2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="video2"><path class="cls-1" d="M4.76,17.82,50.48,13l-.54-5.17a2.07,2.07,0,0,0-2-1.85h-.22L5.09,10.49a2.07,2.07,0,0,0-1.84,2.27l.55,5.16h0V43.79A4.2,4.2,0,0,0,8,48H46.55a4.2,4.2,0,0,0,4.21-4.21v-26Zm5.94,3.36L7.17,24.71V21.18ZM46.55,44.65H8a.86.86,0,0,1-.85-.86V27.88H8.73l6.71-6.7h3.19l-6.7,6.7h4.74l6.71-6.7h3.19l-6.71,6.7H24.6l6.71-6.7h3.2l-6.71,6.7h4.74l6.71-6.7h3.19l-6.71,6.7h4.75l6.7-6.7h.23v3l-3.74,3.73h3.74V43.79A.87.87,0,0,1,46.55,44.65Z"/><polygon class="cls-1" points="22.26 43.02 32.32 36.31 22.26 29.6 22.26 43.02"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="video2"><path class="cls-1" d="M4.76,17.82,50.48,13l-.54-5.17a2.07,2.07,0,0,0-2-1.85h-.22L5.09,10.49a2.07,2.07,0,0,0-1.84,2.27l.55,5.16h0V43.79A4.2,4.2,0,0,0,8,48H46.55a4.2,4.2,0,0,0,4.21-4.21v-26Zm5.94,3.36L7.17,24.71V21.18ZM46.55,44.65H8a.86.86,0,0,1-.85-.86V27.88H8.73l6.71-6.7h3.19l-6.7,6.7h4.74l6.71-6.7h3.19l-6.71,6.7H24.6l6.71-6.7h3.2l-6.71,6.7h4.74l6.71-6.7h3.19l-6.71,6.7h4.75l6.7-6.7h.23v3l-3.74,3.73h3.74V43.79A.87.87,0,0,1,46.55,44.65Z"/><polygon class="cls-1" points="22.26 43.02 32.32 36.31 22.26 29.6 22.26 43.02"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/visibility-checked.svg b/public/assets/images/icons/yellow/visibility-checked.svg
index 13be47f8116d2505e28c87ee98a1e0500b5d096f..0208a63851efaca24f57ba056742b674961fd79d 100644
--- a/public/assets/images/icons/yellow/visibility-checked.svg
+++ b/public/assets/images/icons/yellow/visibility-checked.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
diff --git a/public/assets/images/icons/yellow/visibility-checked2.svg b/public/assets/images/icons/yellow/visibility-checked2.svg
index 13be47f8116d2505e28c87ee98a1e0500b5d096f..0208a63851efaca24f57ba056742b674961fd79d 100644
--- a/public/assets/images/icons/yellow/visibility-checked2.svg
+++ b/public/assets/images/icons/yellow/visibility-checked2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="visibility-checked"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g><polygon points="38.37 23.32 34.33 19.28 24.53 29.08 19.4 23.95 15.37 27.98 24.54 37.14 38.37 23.32"/></g></svg>
diff --git a/public/assets/images/icons/yellow/visibility-invisible.svg b/public/assets/images/icons/yellow/visibility-invisible.svg
index 7bce99a787f06eab4fb9f12d8809071b226e33f6..f23db4b1d2a20bc9c6b3d69e37b1ed5de13f5723 100644
--- a/public/assets/images/icons/yellow/visibility-invisible.svg
+++ b/public/assets/images/icons/yellow/visibility-invisible.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="visibility-invisible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/></g></svg>
diff --git a/public/assets/images/icons/yellow/visibility-visible.svg b/public/assets/images/icons/yellow/visibility-visible.svg
index acf1685073521a177c7430b9da2778b652ee152d..a94901062a773929c5007bd30fafbc1e0e2bf8a3 100644
--- a/public/assets/images/icons/yellow/visibility-visible.svg
+++ b/public/assets/images/icons/yellow/visibility-visible.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="visibility-visible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/><path d="M27,18a9.08,9.08,0,0,0-2.51.39A4.11,4.11,0,0,1,26.3,21.7a4.18,4.18,0,0,1-4.19,4.19,4.13,4.13,0,0,1-3.54-2.08A8.82,8.82,0,0,0,18,27a9,9,0,1,0,9-9Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="visibility-visible"><path d="M27,41.88A26.69,26.69,0,0,1,3.37,27.65L3,27l.35-.65a26.72,26.72,0,0,1,47.25,0L51,27l-.35.66A26.7,26.7,0,0,1,27,41.88ZM6.2,27a23.93,23.93,0,0,0,41.59,0A23.93,23.93,0,0,0,6.2,27Z"/><path d="M27,18a9.08,9.08,0,0,0-2.51.39A4.11,4.11,0,0,1,26.3,21.7a4.18,4.18,0,0,1-4.19,4.19,4.13,4.13,0,0,1-3.54-2.08A8.82,8.82,0,0,0,18,27a9,9,0,1,0,9-9Z"/></g></svg>
diff --git a/public/assets/images/icons/yellow/vote-stopped.svg b/public/assets/images/icons/yellow/vote-stopped.svg
index a54677e71711f5ef7272ae0cc963c3b5af27a1d4..a2d252325d0374932aa1bc62b9f5774ee8dcd61b 100644
--- a/public/assets/images/icons/yellow/vote-stopped.svg
+++ b/public/assets/images/icons/yellow/vote-stopped.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="vote-stopped"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><rect class="cls-1" x="-1.53" y="25.22" width="57.55" height="3" transform="translate(-10.76 23.33) rotate(-39.35)"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="vote-stopped"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/><rect class="cls-1" x="-1.53" y="25.22" width="57.55" height="3" transform="translate(-10.76 23.33) rotate(-39.35)"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/vote.svg b/public/assets/images/icons/yellow/vote.svg
index 42dd6653d3f16a13d1e37f46973ae38d5ad77c50..d796f7cbc0ef9ce7edd1a135d298712dcbb2d6f8 100644
--- a/public/assets/images/icons/yellow/vote.svg
+++ b/public/assets/images/icons/yellow/vote.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="vote"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="vote"><polygon class="cls-1" points="6 43.97 6 6.97 3 6.97 3 43.97 3 46.97 6 46.97 51 46.97 51 43.97 6 43.97"/><rect class="cls-1" x="8" y="30.97" width="8" height="11"/><rect class="cls-1" x="19" y="12.97" width="8" height="29"/><rect class="cls-1" x="30" y="23.97" width="8" height="18"/><rect class="cls-1" x="41" y="19.97" width="8" height="22"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/wiki.svg b/public/assets/images/icons/yellow/wiki.svg
index 9036bf89dfca58032a5b5d9584aff1e5d059115f..f63929365e6cfe57b324382133092c4ff7ce40b3 100644
--- a/public/assets/images/icons/yellow/wiki.svg
+++ b/public/assets/images/icons/yellow/wiki.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="wiki"><path class="cls-1" d="M49.83,15a15.17,15.17,0,0,1-10.17,7.9,31.41,31.41,0,0,1,3.45,11.38C46.63,32.05,53.82,25.94,49.83,15ZM4.17,15c-4,10.94,3.2,17,6.72,19.28A31.41,31.41,0,0,1,14.34,22.9,15.17,15.17,0,0,1,4.17,15ZM27,16c-7.1,0-12.85,10.31-12.85,23h25.7C39.85,26.29,34.1,16,27,16Z"/></g></svg>
\ No newline at end of file
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#ffad00;}</style></defs><g id="wiki"><path class="cls-1" d="M49.83,15a15.17,15.17,0,0,1-10.17,7.9,31.41,31.41,0,0,1,3.45,11.38C46.63,32.05,53.82,25.94,49.83,15ZM4.17,15c-4,10.94,3.2,17,6.72,19.28A31.41,31.41,0,0,1,14.34,22.9,15.17,15.17,0,0,1,4.17,15ZM27,16c-7.1,0-12.85,10.31-12.85,23h25.7C39.85,26.29,34.1,16,27,16Z"/></g></svg>
\ No newline at end of file
diff --git a/public/assets/images/icons/yellow/zoom-in.svg b/public/assets/images/icons/yellow/zoom-in.svg
index 5e72ad2134cbe84763fa229cdd72a4ec542e9d57..059111aec6335199bc7dd998055b87a09c85f1d3 100644
--- a/public/assets/images/icons/yellow/zoom-in.svg
+++ b/public/assets/images/icons/yellow/zoom-in.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="zoom-in"><polygon points="30.44 2.99 30.44 6.42 47.57 6.42 47.57 23.55 51 23.55 51 2.99 30.44 2.99"/><polygon points="6.44 30.41 3.02 30.41 3.02 50.97 23.58 50.97 23.58 47.54 6.44 47.54 6.44 30.41"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="zoom-in"><polygon points="30.44 2.99 30.44 6.42 47.57 6.42 47.57 23.55 51 23.55 51 2.99 30.44 2.99"/><polygon points="6.44 30.41 3.02 30.41 3.02 50.97 23.58 50.97 23.58 47.54 6.44 47.54 6.44 30.41"/></g></svg>
diff --git a/public/assets/images/icons/yellow/zoom-in2.svg b/public/assets/images/icons/yellow/zoom-in2.svg
index eb892bd29eaa7c5246a53761f5ba6deef65c5945..c90c50555eab9869f1faf6e97a8a073e3b68bf7a 100644
--- a/public/assets/images/icons/yellow/zoom-in2.svg
+++ b/public/assets/images/icons/yellow/zoom-in2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="zoom-in2"><path d="M39,15V39H15V15H39m3-3H12V42H42V12Z"/><polygon points="50.98 20.99 47.99 20.99 47.99 6 32.99 6 32.99 3 50.98 3 50.98 20.99"/><polygon points="21 50.98 3.01 50.98 3.01 32.99 6 32.99 6 47.98 21 47.98 21 50.98"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="zoom-in2"><path d="M39,15V39H15V15H39m3-3H12V42H42V12Z"/><polygon points="50.98 20.99 47.99 20.99 47.99 6 32.99 6 32.99 3 50.98 3 50.98 20.99"/><polygon points="21 50.98 3.01 50.98 3.01 32.99 6 32.99 6 47.98 21 47.98 21 50.98"/></g></svg>
diff --git a/public/assets/images/icons/yellow/zoom-out.svg b/public/assets/images/icons/yellow/zoom-out.svg
index 0d05e3898a83e255456f52334fbd1a4c059fd440..7b135d6cf6a99e5f39effbdd3e34f2a94d3af266 100644
--- a/public/assets/images/icons/yellow/zoom-out.svg
+++ b/public/assets/images/icons/yellow/zoom-out.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="zoom-out"><polygon points="51 23.55 30.44 23.55 30.44 2.99 33.86 2.99 33.86 20.12 51 20.12 51 23.55"/><polygon points="23.58 50.97 20.15 50.97 20.15 33.83 3.02 33.83 3.02 30.41 23.58 30.41 23.58 50.97"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="zoom-out"><polygon points="51 23.55 30.44 23.55 30.44 2.99 33.86 2.99 33.86 20.12 51 20.12 51 23.55"/><polygon points="23.58 50.97 20.15 50.97 20.15 33.83 3.02 33.83 3.02 30.41 23.58 30.41 23.58 50.97"/></g></svg>
diff --git a/public/assets/images/icons/yellow/zoom-out2.svg b/public/assets/images/icons/yellow/zoom-out2.svg
index 82fb90539787d03ef5486157388701f0a56fd709..f96f0218cded52543b350fb82da60b63cb963b28 100644
--- a/public/assets/images/icons/yellow/zoom-out2.svg
+++ b/public/assets/images/icons/yellow/zoom-out2.svg
@@ -1 +1 @@
-<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="zoom-out2"><path d="M51,18H42V12H36V3H33v9H12V33H3v3h9v6h6v9h3V42H42V21h9ZM39,15v3H36V15ZM15,39V36h3v3Zm24,0H21V33H15V15H33v6h6Z"/></g></svg>
+<svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#ffad00"><g id="zoom-out2"><path d="M51,18H42V12H36V3H33v9H12V33H3v3h9v6h6v9h3V42H42V21h9ZM39,15v3H36V15ZM15,39V36h3v3Zm24,0H21V33H15V15H33v6h6Z"/></g></svg>