@lumston/ds-angular 0.0.6 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/lumston-ds-angular-src-data-display.mjs +215 -0
- package/fesm2022/lumston-ds-angular-src-data-display.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular-src-dropdown.mjs +94 -0
- package/fesm2022/lumston-ds-angular-src-dropdown.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular-src-feedback.mjs +400 -0
- package/fesm2022/lumston-ds-angular-src-feedback.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular-src-icon.mjs +148 -0
- package/fesm2022/lumston-ds-angular-src-icon.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular-src-inputs.mjs +1132 -0
- package/fesm2022/lumston-ds-angular-src-inputs.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular-src-navigation.mjs +473 -0
- package/fesm2022/lumston-ds-angular-src-navigation.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular-src-overlay.mjs +1038 -0
- package/fesm2022/lumston-ds-angular-src-overlay.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular-src-typography.mjs +303 -0
- package/fesm2022/lumston-ds-angular-src-typography.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular.mjs +90 -65
- package/fesm2022/lumston-ds-angular.mjs.map +1 -1
- package/package.json +58 -32
- package/styles/index.css +4 -0
- package/styles/ls-icons.css +482 -0
- package/types/lumston-ds-angular-src-data-display.d.ts +50 -0
- package/types/lumston-ds-angular-src-data-display.d.ts.map +1 -0
- package/types/lumston-ds-angular-src-dropdown.d.ts +28 -0
- package/types/lumston-ds-angular-src-dropdown.d.ts.map +1 -0
- package/types/lumston-ds-angular-src-feedback.d.ts +75 -0
- package/types/lumston-ds-angular-src-feedback.d.ts.map +1 -0
- package/types/lumston-ds-angular-src-icon.d.ts +27 -0
- package/types/lumston-ds-angular-src-icon.d.ts.map +1 -0
- package/types/lumston-ds-angular-src-inputs.d.ts +201 -0
- package/types/lumston-ds-angular-src-inputs.d.ts.map +1 -0
- package/types/lumston-ds-angular-src-navigation.d.ts +186 -0
- package/types/lumston-ds-angular-src-navigation.d.ts.map +1 -0
- package/types/lumston-ds-angular-src-overlay.d.ts +357 -0
- package/types/lumston-ds-angular-src-overlay.d.ts.map +1 -0
- package/types/lumston-ds-angular-src-typography.d.ts +51 -0
- package/types/lumston-ds-angular-src-typography.d.ts.map +1 -0
- package/types/lumston-ds-angular.d.ts.map +1 -1
- package/styles/data-display/badge/badge.styles.css +0 -244
- package/styles/data-display/chip/chip.styles.css +0 -245
- package/styles/dropdown/dropdown.styles.css +0 -14
- package/styles/feedback/alert/alert.styles.css +0 -304
- package/styles/feedback/loader/loader.styles.css +0 -132
- package/styles/feedback/progress-bar/progress-bar.styles.css +0 -193
- package/styles/icon/icon.styles.css +0 -11
- package/styles/inputs/button/button.styles.css +0 -377
- package/styles/inputs/checkbox/checkbox.styles.css +0 -157
- package/styles/inputs/icon-button/icon-button.styles.css +0 -157
- package/styles/inputs/radio-button/radio-button.styles.css +0 -274
- package/styles/inputs/slider/slider.styles.css +0 -228
- package/styles/inputs/switch/switch.styles.css +0 -483
- package/styles/media/avatar/avatar.styles.css +0 -112
- package/styles/media/avatar-group/avatar-group.styles.css +0 -37
- package/styles/media/logo/logo.styles.css +0 -40
- package/styles/navigation/breadcrumb/breadcrumb.styles.css +0 -144
- package/styles/navigation/pagination/pagination.styles.css +0 -336
- package/styles/overlay/menu/menu.styles.css +0 -138
- package/styles/overlay/modal/modal.styles.css +0 -178
- package/styles/overlay/popover/popover.styles.css +0 -112
- package/styles/overlay/tooltip/tooltip.styles.css +0 -172
- package/styles/styles/index.css +0 -28
- package/styles/typography/link/link.styles.css +0 -93
- package/styles/typography/tag/tag.styles.css +0 -274
- package/styles/typography/text/text.styles.css +0 -176
- /package/styles/{styles/_base.css → _base.css} +0 -0
- /package/styles/{styles/_tokens.css → _tokens.css} +0 -0
|
@@ -0,0 +1,482 @@
|
|
|
1
|
+
/* ============================================================
|
|
2
|
+
Lumston Icons — ls-icons.css
|
|
3
|
+
Uso: <i class="ls-icon ls-home"></i>
|
|
4
|
+
Install on app: "node_modules/@lumston/ds-angular/styles/ls-icons.css"
|
|
5
|
+
============================================================ */
|
|
6
|
+
|
|
7
|
+
/* ── Variables ── */
|
|
8
|
+
:root {
|
|
9
|
+
--ls-color-primary: #6366f1;
|
|
10
|
+
--ls-color-secondary: #8b5cf6;
|
|
11
|
+
--ls-color-error: #ef4444;
|
|
12
|
+
--ls-color-info: #3b82f6;
|
|
13
|
+
--ls-color-success: #22c55e;
|
|
14
|
+
--ls-color-warning: #f59e0b;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/* ── Base ── */
|
|
18
|
+
.ls-icon {
|
|
19
|
+
display: inline-block;
|
|
20
|
+
width: 1em;
|
|
21
|
+
height: 1em;
|
|
22
|
+
font-size: 24px;
|
|
23
|
+
background-color: currentColor;
|
|
24
|
+
-webkit-mask-repeat: no-repeat;
|
|
25
|
+
mask-repeat: no-repeat;
|
|
26
|
+
-webkit-mask-position: center;
|
|
27
|
+
mask-position: center;
|
|
28
|
+
-webkit-mask-size: contain;
|
|
29
|
+
mask-size: contain;
|
|
30
|
+
vertical-align: middle;
|
|
31
|
+
flex-shrink: 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/* ── Sizes ── */
|
|
35
|
+
.ls-icon-xs { font-size: 12px; }
|
|
36
|
+
.ls-icon-sm { font-size: 16px; }
|
|
37
|
+
.ls-icon-md { font-size: 24px; }
|
|
38
|
+
.ls-icon-lg { font-size: 32px; }
|
|
39
|
+
.ls-icon-xl { font-size: 48px; }
|
|
40
|
+
|
|
41
|
+
/* ── Colors ── */
|
|
42
|
+
.ls-icon-primary { color: var(--ls-color-primary); }
|
|
43
|
+
.ls-icon-secondary { color: var(--ls-color-secondary); }
|
|
44
|
+
.ls-icon-error { color: var(--ls-color-error); }
|
|
45
|
+
.ls-icon-info { color: var(--ls-color-info); }
|
|
46
|
+
.ls-icon-success { color: var(--ls-color-success); }
|
|
47
|
+
.ls-icon-warning { color: var(--ls-color-warning); }
|
|
48
|
+
.ls-icon-white { color: #ffffff; }
|
|
49
|
+
.ls-icon-inherit { color: inherit; }
|
|
50
|
+
|
|
51
|
+
/* ============================================================
|
|
52
|
+
UI GENERAL
|
|
53
|
+
============================================================ */
|
|
54
|
+
|
|
55
|
+
/* home */
|
|
56
|
+
.ls-home {
|
|
57
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10.182V20a1 1 0 001 1h5v-5h4v5h5a1 1 0 001-1V10.182a1 1 0 00-.383-.784l-8-6.222a1 1 0 00-1.234 0l-8 6.222A1 1 0 003 10.182z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
58
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10.182V20a1 1 0 001 1h5v-5h4v5h5a1 1 0 001-1V10.182a1 1 0 00-.383-.784l-8-6.222a1 1 0 00-1.234 0l-8 6.222A1 1 0 003 10.182z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
59
|
+
}
|
|
60
|
+
.ls-home-solid {
|
|
61
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10.182V20a1 1 0 001 1h5v-5h4v5h5a1 1 0 001-1V10.182a1 1 0 00-.383-.784l-8-6.222a1 1 0 00-1.234 0l-8 6.222A1 1 0 003 10.182z' fill='black'/%3E%3C/svg%3E");
|
|
62
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10.182V20a1 1 0 001 1h5v-5h4v5h5a1 1 0 001-1V10.182a1 1 0 00-.383-.784l-8-6.222a1 1 0 00-1.234 0l-8 6.222A1 1 0 003 10.182z' fill='black'/%3E%3C/svg%3E");
|
|
63
|
+
}
|
|
64
|
+
.ls-home-duotone {
|
|
65
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10.182V20a1 1 0 001 1h5v-5h4v5h5a1 1 0 001-1V10.182a1 1 0 00-.383-.784l-8-6.222a1 1 0 00-1.234 0l-8 6.222A1 1 0 003 10.182z' fill='black' opacity='.3'/%3E%3Cpath d='M9 21v-5h4v5M3 10.182l9-7 9 7' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
66
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10.182V20a1 1 0 001 1h5v-5h4v5h5a1 1 0 001-1V10.182a1 1 0 00-.383-.784l-8-6.222a1 1 0 00-1.234 0l-8 6.222A1 1 0 003 10.182z' fill='black' opacity='.3'/%3E%3Cpath d='M9 21v-5h4v5M3 10.182l9-7 9 7' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
67
|
+
}
|
|
68
|
+
.ls-home-bold {
|
|
69
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10.182V20a1 1 0 001 1h5v-5h4v5h5a1 1 0 001-1V10.182a1 1 0 00-.383-.784l-8-6.222a1 1 0 00-1.234 0l-8 6.222A1 1 0 003 10.182z' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
70
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10.182V20a1 1 0 001 1h5v-5h4v5h5a1 1 0 001-1V10.182a1 1 0 00-.383-.784l-8-6.222a1 1 0 00-1.234 0l-8 6.222A1 1 0 003 10.182z' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/* search */
|
|
74
|
+
.ls-search {
|
|
75
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='8' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M21 21l-4.35-4.35' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
76
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='8' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M21 21l-4.35-4.35' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
77
|
+
}
|
|
78
|
+
.ls-search-solid {
|
|
79
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 2a9 9 0 106.32 15.49l3.1 3.1a1 1 0 001.41-1.41l-3.1-3.1A9 9 0 0011 2zm-7 9a7 7 0 1114 0A7 7 0 014 11z' fill='black'/%3E%3C/svg%3E");
|
|
80
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 2a9 9 0 106.32 15.49l3.1 3.1a1 1 0 001.41-1.41l-3.1-3.1A9 9 0 0011 2zm-7 9a7 7 0 1114 0A7 7 0 014 11z' fill='black'/%3E%3C/svg%3E");
|
|
81
|
+
}
|
|
82
|
+
.ls-search-duotone {
|
|
83
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='8' fill='black' opacity='.3'/%3E%3Ccircle cx='11' cy='11' r='8' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M21 21l-4.35-4.35' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
84
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='8' fill='black' opacity='.3'/%3E%3Ccircle cx='11' cy='11' r='8' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M21 21l-4.35-4.35' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
85
|
+
}
|
|
86
|
+
.ls-search-bold {
|
|
87
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='8' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M21 21l-4.35-4.35' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
88
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='8' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M21 21l-4.35-4.35' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* user */
|
|
92
|
+
.ls-user {
|
|
93
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='7' r='4' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
|
|
94
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='7' r='4' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
|
|
95
|
+
}
|
|
96
|
+
.ls-user-solid {
|
|
97
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 11a4 4 0 100-8 4 4 0 000 8zm-7 9a7 7 0 1114 0H5z' fill='black'/%3E%3C/svg%3E");
|
|
98
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 11a4 4 0 100-8 4 4 0 000 8zm-7 9a7 7 0 1114 0H5z' fill='black'/%3E%3C/svg%3E");
|
|
99
|
+
}
|
|
100
|
+
.ls-user-duotone {
|
|
101
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='7' r='4' fill='black' opacity='.3'/%3E%3Cpath d='M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='7' r='4' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
|
|
102
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='7' r='4' fill='black' opacity='.3'/%3E%3Cpath d='M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='7' r='4' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
|
|
103
|
+
}
|
|
104
|
+
.ls-user-bold {
|
|
105
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='7' r='4' stroke='black' stroke-width='2.5'/%3E%3C/svg%3E");
|
|
106
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='7' r='4' stroke='black' stroke-width='2.5'/%3E%3C/svg%3E");
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/* heart */
|
|
110
|
+
.ls-heart {
|
|
111
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
112
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
113
|
+
}
|
|
114
|
+
.ls-heart-solid {
|
|
115
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z' fill='black'/%3E%3C/svg%3E");
|
|
116
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z' fill='black'/%3E%3C/svg%3E");
|
|
117
|
+
}
|
|
118
|
+
.ls-heart-duotone {
|
|
119
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
120
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
121
|
+
}
|
|
122
|
+
.ls-heart-bold {
|
|
123
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
124
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/* star */
|
|
128
|
+
.ls-star {
|
|
129
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
130
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
131
|
+
}
|
|
132
|
+
.ls-star-solid {
|
|
133
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2' fill='black'/%3E%3C/svg%3E");
|
|
134
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2' fill='black'/%3E%3C/svg%3E");
|
|
135
|
+
}
|
|
136
|
+
.ls-star-duotone {
|
|
137
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
138
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
139
|
+
}
|
|
140
|
+
.ls-star-bold {
|
|
141
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
142
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/* bell */
|
|
146
|
+
.ls-bell {
|
|
147
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9M13.73 21a2 2 0 01-3.46 0' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
148
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9M13.73 21a2 2 0 01-3.46 0' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
149
|
+
}
|
|
150
|
+
.ls-bell-solid {
|
|
151
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a6 6 0 00-6 6c0 5.25-2.5 7.5-3 8.5a.5.5 0 00.5.5h17a.5.5 0 00.5-.5C20.5 15.5 18 13.25 18 8a6 6 0 00-6-6zm-1.73 19a2 2 0 003.46 0H10.27z' fill='black'/%3E%3C/svg%3E");
|
|
152
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a6 6 0 00-6 6c0 5.25-2.5 7.5-3 8.5a.5.5 0 00.5.5h17a.5.5 0 00.5-.5C20.5 15.5 18 13.25 18 8a6 6 0 00-6-6zm-1.73 19a2 2 0 003.46 0H10.27z' fill='black'/%3E%3C/svg%3E");
|
|
153
|
+
}
|
|
154
|
+
.ls-bell-duotone {
|
|
155
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9' fill='black' opacity='.3'/%3E%3Cpath d='M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9M13.73 21a2 2 0 01-3.46 0' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
156
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9' fill='black' opacity='.3'/%3E%3Cpath d='M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9M13.73 21a2 2 0 01-3.46 0' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
157
|
+
}
|
|
158
|
+
.ls-bell-bold {
|
|
159
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9M13.73 21a2 2 0 01-3.46 0' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
160
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9M13.73 21a2 2 0 01-3.46 0' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/* bookmark */
|
|
164
|
+
.ls-bookmark {
|
|
165
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
166
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
167
|
+
}
|
|
168
|
+
.ls-bookmark-solid {
|
|
169
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z' fill='black'/%3E%3C/svg%3E");
|
|
170
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z' fill='black'/%3E%3C/svg%3E");
|
|
171
|
+
}
|
|
172
|
+
.ls-bookmark-duotone {
|
|
173
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
174
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
175
|
+
}
|
|
176
|
+
.ls-bookmark-bold {
|
|
177
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
178
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
/* eye */
|
|
182
|
+
.ls-eye {
|
|
183
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='12' r='3' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
|
|
184
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='12' r='3' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
|
|
185
|
+
}
|
|
186
|
+
.ls-eye-solid {
|
|
187
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4C7 4 2.73 7.11 1 12c1.73 4.89 6 8 11 8s9.27-3.11 11-8c-1.73-4.89-6-8-11-8zm0 13a5 5 0 110-10 5 5 0 010 10zm0-8a3 3 0 100 6 3 3 0 000-6z' fill='black'/%3E%3C/svg%3E");
|
|
188
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4C7 4 2.73 7.11 1 12c1.73 4.89 6 8 11 8s9.27-3.11 11-8c-1.73-4.89-6-8-11-8zm0 13a5 5 0 110-10 5 5 0 010 10zm0-8a3 3 0 100 6 3 3 0 000-6z' fill='black'/%3E%3C/svg%3E");
|
|
189
|
+
}
|
|
190
|
+
.ls-eye-duotone {
|
|
191
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z' fill='black' opacity='.3'/%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='12' r='3' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
|
|
192
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z' fill='black' opacity='.3'/%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='12' r='3' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
|
|
193
|
+
}
|
|
194
|
+
.ls-eye-bold {
|
|
195
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z' stroke='black' stroke-width='2.5'/%3E%3Ccircle cx='12' cy='12' r='3' stroke='black' stroke-width='2.5'/%3E%3C/svg%3E");
|
|
196
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z' stroke='black' stroke-width='2.5'/%3E%3Ccircle cx='12' cy='12' r='3' stroke='black' stroke-width='2.5'/%3E%3C/svg%3E");
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
/* lock */
|
|
200
|
+
.ls-lock {
|
|
201
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
202
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
203
|
+
}
|
|
204
|
+
.ls-lock-solid {
|
|
205
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 11V7A5 5 0 007 7v4H5a2 2 0 00-2 2v7a2 2 0 002 2h14a2 2 0 002-2v-7a2 2 0 00-2-2h-2z' fill='black'/%3E%3C/svg%3E");
|
|
206
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 11V7A5 5 0 007 7v4H5a2 2 0 00-2 2v7a2 2 0 002 2h14a2 2 0 002-2v-7a2 2 0 00-2-2h-2z' fill='black'/%3E%3C/svg%3E");
|
|
207
|
+
}
|
|
208
|
+
.ls-lock-duotone {
|
|
209
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' fill='black' opacity='.3'/%3E%3Crect x='3' y='11' width='18' height='11' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
210
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' fill='black' opacity='.3'/%3E%3Crect x='3' y='11' width='18' height='11' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
211
|
+
}
|
|
212
|
+
.ls-lock-bold {
|
|
213
|
+
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
214
|
+
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
/* ============================================================
|
|
218
|
+
NAVIGATION
|
|
219
|
+
============================================================ */
|
|
220
|
+
|
|
221
|
+
/* arrow-up */
|
|
222
|
+
.ls-arrow-up { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 19V5M5 12l7-7 7 7' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 19V5M5 12l7-7 7 7' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
223
|
+
.ls-arrow-up-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 3.293l7.707 7.707-1.414 1.414L13 7.121V21h-2V7.121l-5.293 5.293-1.414-1.414L12 3.293z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 3.293l7.707 7.707-1.414 1.414L13 7.121V21h-2V7.121l-5.293 5.293-1.414-1.414L12 3.293z' fill='black'/%3E%3C/svg%3E"); }
|
|
224
|
+
.ls-arrow-up-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpath d='M12 16V8M8 12l4-4 4 4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpath d='M12 16V8M8 12l4-4 4 4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
225
|
+
.ls-arrow-up-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 19V5M5 12l7-7 7 7' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 19V5M5 12l7-7 7 7' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
226
|
+
|
|
227
|
+
/* arrow-down */
|
|
228
|
+
.ls-arrow-down { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5v14M5 12l7 7 7-7' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5v14M5 12l7 7 7-7' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
229
|
+
.ls-arrow-down-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 20.707l-7.707-7.707 1.414-1.414L11 16.879V3h2v13.879l5.293-5.293 1.414 1.414L12 20.707z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 20.707l-7.707-7.707 1.414-1.414L11 16.879V3h2v13.879l5.293-5.293 1.414 1.414L12 20.707z' fill='black'/%3E%3C/svg%3E"); }
|
|
230
|
+
.ls-arrow-down-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpath d='M12 8v8M8 12l4 4 4-4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpath d='M12 8v8M8 12l4 4 4-4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
231
|
+
.ls-arrow-down-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5v14M5 12l7 7 7-7' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5v14M5 12l7 7 7-7' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
232
|
+
|
|
233
|
+
/* arrow-left */
|
|
234
|
+
.ls-arrow-left { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 12H5M12 5l-7 7 7 7' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 12H5M12 5l-7 7 7 7' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
235
|
+
.ls-arrow-left-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.293 12L11 4.293l1.414 1.414L7.121 11H21v2H7.121l5.293 5.293L11 19.707 3.293 12z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.293 12L11 4.293l1.414 1.414L7.121 11H21v2H7.121l5.293 5.293L11 19.707 3.293 12z' fill='black'/%3E%3C/svg%3E"); }
|
|
236
|
+
.ls-arrow-left-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpath d='M16 12H8M12 8l-4 4 4 4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpath d='M16 12H8M12 8l-4 4 4 4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
237
|
+
.ls-arrow-left-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 12H5M12 5l-7 7 7 7' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 12H5M12 5l-7 7 7 7' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
238
|
+
|
|
239
|
+
/* arrow-right */
|
|
240
|
+
.ls-arrow-right { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
241
|
+
.ls-arrow-right-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.707 12L13 4.293l-1.414 1.414L16.879 11H3v2h13.879l-5.293 5.293L13 19.707 20.707 12z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.707 12L13 4.293l-1.414 1.414L16.879 11H3v2h13.879l-5.293 5.293L13 19.707 20.707 12z' fill='black'/%3E%3C/svg%3E"); }
|
|
242
|
+
.ls-arrow-right-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpath d='M8 12h8M12 8l4 4-4 4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpath d='M8 12h8M12 8l4 4-4 4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
243
|
+
.ls-arrow-right-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
244
|
+
|
|
245
|
+
/* chevron-up */
|
|
246
|
+
.ls-chevron-up { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='18 15 12 9 6 15' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='18 15 12 9 6 15' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
247
|
+
.ls-chevron-up-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.293 15.707a1 1 0 001.414 0L12 9.121l6.293 6.586a1 1 0 001.414-1.414l-7-7.329a1 1 0 00-1.414 0l-7 7.329a1 1 0 000 1.414z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.293 15.707a1 1 0 001.414 0L12 9.121l6.293 6.586a1 1 0 001.414-1.414l-7-7.329a1 1 0 00-1.414 0l-7 7.329a1 1 0 000 1.414z' fill='black'/%3E%3C/svg%3E"); }
|
|
248
|
+
.ls-chevron-up-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpolyline points='16 14 12 10 8 14' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpolyline points='16 14 12 10 8 14' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
249
|
+
.ls-chevron-up-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='18 15 12 9 6 15' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='18 15 12 9 6 15' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
250
|
+
|
|
251
|
+
/* chevron-down */
|
|
252
|
+
.ls-chevron-down { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
253
|
+
.ls-chevron-down-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.293 8.293a1 1 0 011.414 0L12 14.879l6.293-6.586a1 1 0 011.414 1.414l-7 7.329a1 1 0 01-1.414 0l-7-7.329a1 1 0 010-1.414z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.293 8.293a1 1 0 011.414 0L12 14.879l6.293-6.586a1 1 0 011.414 1.414l-7 7.329a1 1 0 01-1.414 0l-7-7.329a1 1 0 010-1.414z' fill='black'/%3E%3C/svg%3E"); }
|
|
254
|
+
.ls-chevron-down-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpolyline points='8 10 12 14 16 10' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpolyline points='8 10 12 14 16 10' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
255
|
+
.ls-chevron-down-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
256
|
+
|
|
257
|
+
/* chevron-left */
|
|
258
|
+
.ls-chevron-left { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='15 18 9 12 15 6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='15 18 9 12 15 6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
259
|
+
.ls-chevron-left-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.707 4.293a1 1 0 010 1.414L9.121 12l6.586 6.293a1 1 0 01-1.414 1.414l-7.329-7a1 1 0 010-1.414l7.329-7a1 1 0 011.414 0z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.707 4.293a1 1 0 010 1.414L9.121 12l6.586 6.293a1 1 0 01-1.414 1.414l-7.329-7a1 1 0 010-1.414l7.329-7a1 1 0 011.414 0z' fill='black'/%3E%3C/svg%3E"); }
|
|
260
|
+
.ls-chevron-left-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpolyline points='14 16 10 12 14 8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpolyline points='14 16 10 12 14 8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
261
|
+
.ls-chevron-left-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='15 18 9 12 15 6' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='15 18 9 12 15 6' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
262
|
+
|
|
263
|
+
/* chevron-right */
|
|
264
|
+
.ls-chevron-right { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 18 15 12 9 6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 18 15 12 9 6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
265
|
+
.ls-chevron-right-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.293 4.293a1 1 0 000 1.414L14.879 12l-6.586 6.293a1 1 0 001.414 1.414l7.329-7a1 1 0 000-1.414l-7.329-7a1 1 0 00-1.414 0z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.293 4.293a1 1 0 000 1.414L14.879 12l-6.586 6.293a1 1 0 001.414 1.414l7.329-7a1 1 0 000-1.414l-7.329-7a1 1 0 00-1.414 0z' fill='black'/%3E%3C/svg%3E"); }
|
|
266
|
+
.ls-chevron-right-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpolyline points='10 16 14 12 10 8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpolyline points='10 16 14 12 10 8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
267
|
+
.ls-chevron-right-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 18 15 12 9 6' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 18 15 12 9 6' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
268
|
+
|
|
269
|
+
/* chevron-left-double */
|
|
270
|
+
.ls-chevron-left-double { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='11 18 5 12 11 6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='18 18 12 12 18 6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='11 18 5 12 11 6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='18 18 12 12 18 6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
271
|
+
.ls-chevron-left-double-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.707 4.293a1 1 0 010 1.414L5.121 12l6.586 6.293a1 1 0 01-1.414 1.414l-7.329-7a1 1 0 010-1.414l7.329-7a1 1 0 011.414 0z' fill='black'/%3E%3Cpath d='M19.707 4.293a1 1 0 010 1.414L13.121 12l6.586 6.293a1 1 0 01-1.414 1.414l-7.329-7a1 1 0 010-1.414l7.329-7a1 1 0 011.414 0z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.707 4.293a1 1 0 010 1.414L5.121 12l6.586 6.293a1 1 0 01-1.414 1.414l-7.329-7a1 1 0 010-1.414l7.329-7a1 1 0 011.414 0z' fill='black'/%3E%3Cpath d='M19.707 4.293a1 1 0 010 1.414L13.121 12l6.586 6.293a1 1 0 01-1.414 1.414l-7.329-7a1 1 0 010-1.414l7.329-7a1 1 0 011.414 0z' fill='black'/%3E%3C/svg%3E"); }
|
|
272
|
+
.ls-chevron-left-double-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpolyline points='10 16 6 12 10 8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='15 16 11 12 15 8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpolyline points='10 16 6 12 10 8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='15 16 11 12 15 8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
273
|
+
.ls-chevron-left-double-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='11 18 5 12 11 6' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='18 18 12 12 18 6' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='11 18 5 12 11 6' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='18 18 12 12 18 6' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
274
|
+
|
|
275
|
+
/* chevron-right-double */
|
|
276
|
+
.ls-chevron-right-double { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 18 12 12 6 6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='13 18 19 12 13 6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 18 12 12 6 6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='13 18 19 12 13 6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
277
|
+
.ls-chevron-right-double-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.293 4.293a1 1 0 000 1.414L10.879 12l-6.586 6.293a1 1 0 001.414 1.414l7.329-7a1 1 0 000-1.414l-7.329-7a1 1 0 00-1.414 0z' fill='black'/%3E%3Cpath d='M12.293 4.293a1 1 0 000 1.414L18.879 12l-6.586 6.293a1 1 0 001.414 1.414l7.329-7a1 1 0 000-1.414l-7.329-7a1 1 0 00-1.414 0z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.293 4.293a1 1 0 000 1.414L10.879 12l-6.586 6.293a1 1 0 001.414 1.414l7.329-7a1 1 0 000-1.414l-7.329-7a1 1 0 00-1.414 0z' fill='black'/%3E%3Cpath d='M12.293 4.293a1 1 0 000 1.414L18.879 12l-6.586 6.293a1 1 0 001.414 1.414l7.329-7a1 1 0 000-1.414l-7.329-7a1 1 0 00-1.414 0z' fill='black'/%3E%3C/svg%3E"); }
|
|
278
|
+
.ls-chevron-right-double-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpolyline points='9 16 13 12 9 8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='14 16 18 12 14 8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpolyline points='9 16 13 12 9 8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='14 16 18 12 14 8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
279
|
+
.ls-chevron-right-double-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 18 12 12 6 6' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='13 18 19 12 13 6' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 18 12 12 6 6' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='13 18 19 12 13 6' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
280
|
+
|
|
281
|
+
/* ============================================================
|
|
282
|
+
ACTIONS
|
|
283
|
+
============================================================ */
|
|
284
|
+
.ls-edit { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
285
|
+
.ls-edit-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.707 5.826l-2.534-2.534a1 1 0 00-1.414 0l-9.52 9.52-1.24 4.95 4.95-1.24 9.52-9.52a1 1 0 000-1.176zM4 20h16v2H4v-2z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.707 5.826l-2.534-2.534a1 1 0 00-1.414 0l-9.52 9.52-1.24 4.95 4.95-1.24 9.52-9.52a1 1 0 000-1.176zM4 20h16v2H4v-2z' fill='black'/%3E%3C/svg%3E"); }
|
|
286
|
+
.ls-edit-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
287
|
+
.ls-edit-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
288
|
+
|
|
289
|
+
.ls-trash { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3 6 5 6 21 6' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3 6 5 6 21 6' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
290
|
+
.ls-trash-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 3h6a1 1 0 011 1v1H8V4a1 1 0 011-1zM3 7h18l-1.5 13A2 2 0 0117.5 22h-11A2 2 0 014.5 20L3 7z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 3h6a1 1 0 011 1v1H8V4a1 1 0 011-1zM3 7h18l-1.5 13A2 2 0 0117.5 22h-11A2 2 0 014.5 20L3 7z' fill='black'/%3E%3C/svg%3E"); }
|
|
291
|
+
.ls-trash-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6' fill='black' opacity='.3'/%3E%3Cpolyline points='3 6 5 6 21 6' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6' fill='black' opacity='.3'/%3E%3Cpolyline points='3 6 5 6 21 6' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
292
|
+
.ls-trash-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3 6 5 6 21 6' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3 6 5 6 21 6' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
293
|
+
|
|
294
|
+
.ls-plus { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='12' y1='5' x2='12' y2='19' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='5' y1='12' x2='19' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='12' y1='5' x2='12' y2='19' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='5' y1='12' x2='19' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
295
|
+
.ls-plus-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 11V5h2v6h6v2h-6v6h-2v-6H5v-2h6z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 11V5h2v6h6v2h-6v6h-2v-6H5v-2h6z' fill='black'/%3E%3C/svg%3E"); }
|
|
296
|
+
.ls-plus-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cline x1='12' y1='8' x2='12' y2='16' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='8' y1='12' x2='16' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cline x1='12' y1='8' x2='12' y2='16' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='8' y1='12' x2='16' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
297
|
+
.ls-plus-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='12' y1='5' x2='12' y2='19' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='5' y1='12' x2='19' y2='12' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='12' y1='5' x2='12' y2='19' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='5' y1='12' x2='19' y2='12' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
298
|
+
|
|
299
|
+
.ls-minus { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='5' y1='12' x2='19' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='5' y1='12' x2='19' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
300
|
+
.ls-minus-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 11h14v2H5v-2z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 11h14v2H5v-2z' fill='black'/%3E%3C/svg%3E"); }
|
|
301
|
+
.ls-minus-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cline x1='8' y1='12' x2='16' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cline x1='8' y1='12' x2='16' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
302
|
+
.ls-minus-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='5' y1='12' x2='19' y2='12' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='5' y1='12' x2='19' y2='12' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
303
|
+
|
|
304
|
+
.ls-check { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
305
|
+
.ls-check-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z' fill='black'/%3E%3C/svg%3E"); }
|
|
306
|
+
.ls-check-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpolyline points='16 9 10.5 15 8 12.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cpolyline points='16 9 10.5 15 8 12.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
307
|
+
.ls-check-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
308
|
+
|
|
309
|
+
.ls-x { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='6' y1='6' x2='18' y2='18' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='6' y1='6' x2='18' y2='18' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
310
|
+
.ls-x-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z' fill='black'/%3E%3C/svg%3E"); }
|
|
311
|
+
.ls-x-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cline x1='15' y1='9' x2='9' y2='15' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='9' y1='9' x2='15' y2='15' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Cline x1='15' y1='9' x2='9' y2='15' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='9' y1='9' x2='15' y2='15' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
312
|
+
.ls-x-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='6' y1='6' x2='18' y2='18' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='6' y1='6' x2='18' y2='18' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
313
|
+
|
|
314
|
+
.ls-copy { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='9' y='9' width='13' height='13' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='9' y='9' width='13' height='13' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
315
|
+
.ls-copy-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 4a2 2 0 00-2 2v9a2 2 0 002 2h1V9a2 2 0 012-2h6V6a2 2 0 00-2-2H8zm3 6a2 2 0 00-2 2v7a2 2 0 002 2h8a2 2 0 002-2v-7a2 2 0 00-2-2h-8z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 4a2 2 0 00-2 2v9a2 2 0 002 2h1V9a2 2 0 012-2h6V6a2 2 0 00-2-2H8zm3 6a2 2 0 00-2 2v7a2 2 0 002 2h8a2 2 0 002-2v-7a2 2 0 00-2-2h-8z' fill='black'/%3E%3C/svg%3E"); }
|
|
316
|
+
.ls-copy-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='9' y='9' width='13' height='13' rx='2' fill='black' opacity='.3'/%3E%3Crect x='9' y='9' width='13' height='13' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='9' y='9' width='13' height='13' rx='2' fill='black' opacity='.3'/%3E%3Crect x='9' y='9' width='13' height='13' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
317
|
+
.ls-copy-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='9' y='9' width='13' height='13' rx='2' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='9' y='9' width='13' height='13' rx='2' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
318
|
+
|
|
319
|
+
.ls-download { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M7 10l5 5 5-5M12 15V3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M7 10l5 5 5-5M12 15V3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
320
|
+
.ls-download-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 3h-2v10.586l-3.293-3.293-1.414 1.414L12 17.414l5.707-5.707-1.414-1.414L13 13.586V3zM3 19h18v2H3v-2z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 3h-2v10.586l-3.293-3.293-1.414 1.414L12 17.414l5.707-5.707-1.414-1.414L13 13.586V3zM3 19h18v2H3v-2z' fill='black'/%3E%3C/svg%3E"); }
|
|
321
|
+
.ls-download-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='15' width='18' height='6' rx='1' fill='black' opacity='.3'/%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M7 10l5 5 5-5M12 15V3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='15' width='18' height='6' rx='1' fill='black' opacity='.3'/%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M7 10l5 5 5-5M12 15V3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
322
|
+
.ls-download-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M7 10l5 5 5-5M12 15V3' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M7 10l5 5 5-5M12 15V3' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
323
|
+
|
|
324
|
+
.ls-upload { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M17 8l-5-5-5 5M12 3v12' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M17 8l-5-5-5 5M12 3v12' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
325
|
+
.ls-upload-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 3.586L5.293 9.293l1.414 1.414L11 6.414V15h2V6.414l4.293 4.293 1.414-1.414L13 3.586A1 1 0 0011 3.586zM3 19h18v2H3v-2z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 3.586L5.293 9.293l1.414 1.414L11 6.414V15h2V6.414l4.293 4.293 1.414-1.414L13 3.586A1 1 0 0011 3.586zM3 19h18v2H3v-2z' fill='black'/%3E%3C/svg%3E"); }
|
|
326
|
+
.ls-upload-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='15' width='18' height='6' rx='1' fill='black' opacity='.3'/%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M17 8l-5-5-5 5M12 3v12' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='15' width='18' height='6' rx='1' fill='black' opacity='.3'/%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M17 8l-5-5-5 5M12 3v12' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
327
|
+
.ls-upload-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M17 8l-5-5-5 5M12 3v12' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M17 8l-5-5-5 5M12 3v12' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
328
|
+
|
|
329
|
+
.ls-refresh { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='23 4 23 10 17 10' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.49 15a9 9 0 11-2.12-9.36L23 10' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='23 4 23 10 17 10' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.49 15a9 9 0 11-2.12-9.36L23 10' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
330
|
+
.ls-refresh-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 2c-5.621 0-10.211 4.443-10.475 10h-2.525l3.984 5.999 4.016-5.999h-2.51c.246-3.308 3.008-5.999 6.51-6 1.794.001 3.434.677 4.678 1.787l1.422-1.657c-1.64-1.407-3.765-2.131-6.1-2.13zm6.984 6.001l-4.016 6h2.51c-.246 3.308-3.007 5.998-6.51 6-1.794-.001-3.434-.677-4.678-1.787l-1.422 1.657c1.639 1.407 3.765 2.131 6.1 2.13 5.621 0 10.211-4.443 10.475-10h2.525l-3.984-5.999z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 2c-5.621 0-10.211 4.443-10.475 10h-2.525l3.984 5.999 4.016-5.999h-2.51c.246-3.308 3.008-5.999 6.51-6 1.794.001 3.434.677 4.678 1.787l1.422-1.657c-1.64-1.407-3.765-2.131-6.1-2.13zm6.984 6.001l-4.016 6h2.51c-.246 3.308-3.007 5.998-6.51 6-1.794-.001-3.434-.677-4.678-1.787l-1.422 1.657c1.639 1.407 3.765 2.131 6.1 2.13 5.621 0 10.211-4.443 10.475-10h2.525l-3.984-5.999z' fill='black'/%3E%3C/svg%3E"); }
|
|
331
|
+
.ls-refresh-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' fill='black' opacity='.3'/%3E%3Cpolyline points='23 4 23 10 17 10' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.49 15a9 9 0 11-2.12-9.36L23 10' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' fill='black' opacity='.3'/%3E%3Cpolyline points='23 4 23 10 17 10' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.49 15a9 9 0 11-2.12-9.36L23 10' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
332
|
+
.ls-refresh-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='23 4 23 10 17 10' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.49 15a9 9 0 11-2.12-9.36L23 10' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='23 4 23 10 17 10' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.49 15a9 9 0 11-2.12-9.36L23 10' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
333
|
+
|
|
334
|
+
/* ============================================================
|
|
335
|
+
COMMUNICATION
|
|
336
|
+
============================================================ */
|
|
337
|
+
.ls-mail { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z' stroke='black' stroke-width='1.5'/%3E%3Cpolyline points='22 6 12 13 2 6' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z' stroke='black' stroke-width='1.5'/%3E%3Cpolyline points='22 6 12 13 2 6' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
338
|
+
.ls-mail-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4.7l-8 5.334L4 8.7V6.297l8 5.333 8-5.333V8.7z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4.7l-8 5.334L4 8.7V6.297l8 5.333 8-5.333V8.7z' fill='black'/%3E%3C/svg%3E"); }
|
|
339
|
+
.ls-mail-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z' fill='black' opacity='.3'/%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z' stroke='black' stroke-width='1.5'/%3E%3Cpolyline points='22 6 12 13 2 6' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z' fill='black' opacity='.3'/%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z' stroke='black' stroke-width='1.5'/%3E%3Cpolyline points='22 6 12 13 2 6' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
340
|
+
.ls-mail-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z' stroke='black' stroke-width='2.5'/%3E%3Cpolyline points='22 6 12 13 2 6' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z' stroke='black' stroke-width='2.5'/%3E%3Cpolyline points='22 6 12 13 2 6' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
341
|
+
|
|
342
|
+
.ls-chat { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
343
|
+
.ls-chat-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 2H4a2 2 0 00-2 2v18l4-4h14a2 2 0 002-2V4a2 2 0 00-2-2z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 2H4a2 2 0 00-2 2v18l4-4h14a2 2 0 002-2V4a2 2 0 00-2-2z' fill='black'/%3E%3C/svg%3E"); }
|
|
344
|
+
.ls-chat-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
345
|
+
.ls-chat-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
346
|
+
|
|
347
|
+
.ls-phone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.81a19.79 19.79 0 01-3.07-8.63A2 2 0 012 1h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L6.09 8.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.81a19.79 19.79 0 01-3.07-8.63A2 2 0 012 1h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L6.09 8.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
348
|
+
.ls-phone-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z' fill='black'/%3E%3C/svg%3E"); }
|
|
349
|
+
.ls-phone-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.81a19.79 19.79 0 01-3.07-8.63A2 2 0 012 1h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L6.09 8.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.81a19.79 19.79 0 01-3.07-8.63A2 2 0 012 1h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L6.09 8.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
350
|
+
.ls-phone-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.81a19.79 19.79 0 01-3.07-8.63A2 2 0 012 1h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L6.09 8.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.81a19.79 19.79 0 01-3.07-8.63A2 2 0 012 1h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L6.09 8.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
351
|
+
|
|
352
|
+
.ls-send { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='22' y1='2' x2='11' y2='13' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2' stroke='black' stroke-width='1.5' fill='none' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='22' y1='2' x2='11' y2='13' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2' stroke='black' stroke-width='1.5' fill='none' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
353
|
+
.ls-send-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.01 21L23 12 2.01 3 2 10l15 2-15 2 .01 7z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.01 21L23 12 2.01 3 2 10l15 2-15 2 .01 7z' fill='black'/%3E%3C/svg%3E"); }
|
|
354
|
+
.ls-send-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2' fill='black' opacity='.3'/%3E%3Cline x1='22' y1='2' x2='11' y2='13' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2' stroke='black' stroke-width='1.5' fill='none' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2' fill='black' opacity='.3'/%3E%3Cline x1='22' y1='2' x2='11' y2='13' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2' stroke='black' stroke-width='1.5' fill='none' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
355
|
+
.ls-send-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='22' y1='2' x2='11' y2='13' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2' stroke='black' stroke-width='2.5' fill='none' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='22' y1='2' x2='11' y2='13' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2' stroke='black' stroke-width='2.5' fill='none' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
356
|
+
|
|
357
|
+
.ls-message { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
358
|
+
.ls-message-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 2H4a2 2 0 00-2 2v18l4-4h14a2 2 0 002-2V4a2 2 0 00-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 2H4a2 2 0 00-2 2v18l4-4h14a2 2 0 002-2V4a2 2 0 00-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z' fill='black'/%3E%3C/svg%3E"); }
|
|
359
|
+
.ls-message-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
360
|
+
.ls-message-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
361
|
+
|
|
362
|
+
/* ============================================================
|
|
363
|
+
FILES
|
|
364
|
+
============================================================ */
|
|
365
|
+
.ls-file { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V9z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpolyline points='13 2 13 9 20 9' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V9z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpolyline points='13 2 13 9 20 9' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
366
|
+
.ls-file-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6zm-1 1.5L18.5 8H13V3.5z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6zm-1 1.5L18.5 8H13V3.5z' fill='black'/%3E%3C/svg%3E"); }
|
|
367
|
+
.ls-file-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V9z' fill='black' opacity='.3'/%3E%3Cpath d='M13 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V9z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpolyline points='13 2 13 9 20 9' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V9z' fill='black' opacity='.3'/%3E%3Cpath d='M13 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V9z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpolyline points='13 2 13 9 20 9' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
368
|
+
.ls-file-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V9z' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3Cpolyline points='13 2 13 9 20 9' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V9z' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3Cpolyline points='13 2 13 9 20 9' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
369
|
+
|
|
370
|
+
.ls-folder { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
371
|
+
.ls-folder-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V8a2 2 0 00-2-2h-8l-2-2z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V8a2 2 0 00-2-2h-8l-2-2z' fill='black'/%3E%3C/svg%3E"); }
|
|
372
|
+
.ls-folder-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
373
|
+
.ls-folder-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
374
|
+
|
|
375
|
+
.ls-image { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5' stroke='black' stroke-width='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5' stroke='black' stroke-width='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
376
|
+
.ls-image-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 3H3a2 2 0 00-2 2v14a2 2 0 002 2h18a2 2 0 002-2V5a2 2 0 00-2-2zM8.5 7a1.5 1.5 0 110 3 1.5 1.5 0 010-3zM5 19l5-8 3 5 2-3 5 6H5z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 3H3a2 2 0 00-2 2v14a2 2 0 002 2h18a2 2 0 002-2V5a2 2 0 00-2-2zM8.5 7a1.5 1.5 0 110 3 1.5 1.5 0 010-3zM5 19l5-8 3 5 2-3 5 6H5z' fill='black'/%3E%3C/svg%3E"); }
|
|
377
|
+
.ls-image-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' fill='black' opacity='.3'/%3E%3Crect x='3' y='3' width='18' height='18' rx='2' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5' stroke='black' stroke-width='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' fill='black' opacity='.3'/%3E%3Crect x='3' y='3' width='18' height='18' rx='2' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5' stroke='black' stroke-width='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
378
|
+
.ls-image-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' stroke='black' stroke-width='2.5'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5' stroke='black' stroke-width='2.5'/%3E%3Cpolyline points='21 15 16 10 5 21' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' stroke='black' stroke-width='2.5'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5' stroke='black' stroke-width='2.5'/%3E%3Cpolyline points='21 15 16 10 5 21' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
379
|
+
|
|
380
|
+
.ls-cloud { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
381
|
+
.ls-cloud-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.35 10.04A7.49 7.49 0 0012 4a7.49 7.49 0 00-7.35 6.04A5.5 5.5 0 005.5 21h13a5.5 5.5 0 00.85-10.96z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.35 10.04A7.49 7.49 0 0012 4a7.49 7.49 0 00-7.35 6.04A5.5 5.5 0 005.5 21h13a5.5 5.5 0 00.85-10.96z' fill='black'/%3E%3C/svg%3E"); }
|
|
382
|
+
.ls-cloud-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
383
|
+
.ls-cloud-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
384
|
+
|
|
385
|
+
/* ============================================================
|
|
386
|
+
MULTIMEDIA
|
|
387
|
+
============================================================ */
|
|
388
|
+
.ls-play { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='5 3 19 12 5 21 5 3' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='5 3 19 12 5 21 5 3' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
389
|
+
.ls-play-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='5 3 19 12 5 21 5 3' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='5 3 19 12 5 21 5 3' fill='black'/%3E%3C/svg%3E"); }
|
|
390
|
+
.ls-play-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='5 3 19 12 5 21 5 3' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='5 3 19 12 5 21 5 3' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
391
|
+
.ls-play-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='5 3 19 12 5 21 5 3' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='5 3 19 12 5 21 5 3' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
392
|
+
|
|
393
|
+
.ls-pause { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='4' width='4' height='16' rx='1' stroke='black' stroke-width='1.5'/%3E%3Crect x='14' y='4' width='4' height='16' rx='1' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='4' width='4' height='16' rx='1' stroke='black' stroke-width='1.5'/%3E%3Crect x='14' y='4' width='4' height='16' rx='1' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E"); }
|
|
394
|
+
.ls-pause-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='4' width='4' height='16' rx='1' fill='black'/%3E%3Crect x='14' y='4' width='4' height='16' rx='1' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='4' width='4' height='16' rx='1' fill='black'/%3E%3Crect x='14' y='4' width='4' height='16' rx='1' fill='black'/%3E%3C/svg%3E"); }
|
|
395
|
+
.ls-pause-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='4' width='4' height='16' rx='1' fill='black' opacity='.3'/%3E%3Crect x='14' y='4' width='4' height='16' rx='1' fill='black' opacity='.3'/%3E%3Crect x='6' y='4' width='4' height='16' rx='1' stroke='black' stroke-width='1.5'/%3E%3Crect x='14' y='4' width='4' height='16' rx='1' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='4' width='4' height='16' rx='1' fill='black' opacity='.3'/%3E%3Crect x='14' y='4' width='4' height='16' rx='1' fill='black' opacity='.3'/%3E%3Crect x='6' y='4' width='4' height='16' rx='1' stroke='black' stroke-width='1.5'/%3E%3Crect x='14' y='4' width='4' height='16' rx='1' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E"); }
|
|
396
|
+
.ls-pause-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='4' width='4' height='16' rx='1' stroke='black' stroke-width='2.5'/%3E%3Crect x='14' y='4' width='4' height='16' rx='1' stroke='black' stroke-width='2.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='4' width='4' height='16' rx='1' stroke='black' stroke-width='2.5'/%3E%3Crect x='14' y='4' width='4' height='16' rx='1' stroke='black' stroke-width='2.5'/%3E%3C/svg%3E"); }
|
|
397
|
+
|
|
398
|
+
.ls-stop { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E"); }
|
|
399
|
+
.ls-stop-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' fill='black'/%3E%3C/svg%3E"); }
|
|
400
|
+
.ls-stop-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' fill='black' opacity='.3'/%3E%3Crect x='3' y='3' width='18' height='18' rx='2' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' fill='black' opacity='.3'/%3E%3Crect x='3' y='3' width='18' height='18' rx='2' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E"); }
|
|
401
|
+
.ls-stop-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' stroke='black' stroke-width='2.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' stroke='black' stroke-width='2.5'/%3E%3C/svg%3E"); }
|
|
402
|
+
|
|
403
|
+
.ls-volume { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M19.07 4.93a10 10 0 010 14.14M15.54 8.46a5 5 0 010 7.07' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M19.07 4.93a10 10 0 010 14.14M15.54 8.46a5 5 0 010 7.07' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
404
|
+
.ls-volume-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3A4.5 4.5 0 0014 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77 0-4.28-2.99-7.86-7-8.77z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3A4.5 4.5 0 0014 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77 0-4.28-2.99-7.86-7-8.77z' fill='black'/%3E%3C/svg%3E"); }
|
|
405
|
+
.ls-volume-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5' fill='black' opacity='.3'/%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M19.07 4.93a10 10 0 010 14.14M15.54 8.46a5 5 0 010 7.07' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5' fill='black' opacity='.3'/%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M19.07 4.93a10 10 0 010 14.14M15.54 8.46a5 5 0 010 7.07' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
406
|
+
.ls-volume-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3Cpath d='M19.07 4.93a10 10 0 010 14.14M15.54 8.46a5 5 0 010 7.07' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3Cpath d='M19.07 4.93a10 10 0 010 14.14M15.54 8.46a5 5 0 010 7.07' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
407
|
+
|
|
408
|
+
.ls-music { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18V5l12-2v13' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='6' cy='18' r='3' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='18' cy='16' r='3' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18V5l12-2v13' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='6' cy='18' r='3' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='18' cy='16' r='3' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E"); }
|
|
409
|
+
.ls-music-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3v10.55A4 4 0 1014 17V7h4V3h-6zM6 21a2 2 0 110-4 2 2 0 010 4z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3v10.55A4 4 0 1014 17V7h4V3h-6zM6 21a2 2 0 110-4 2 2 0 010 4z' fill='black'/%3E%3C/svg%3E"); }
|
|
410
|
+
.ls-music-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6' cy='18' r='3' fill='black' opacity='.3'/%3E%3Ccircle cx='18' cy='16' r='3' fill='black' opacity='.3'/%3E%3Cpath d='M9 18V5l12-2v13' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='6' cy='18' r='3' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='18' cy='16' r='3' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6' cy='18' r='3' fill='black' opacity='.3'/%3E%3Ccircle cx='18' cy='16' r='3' fill='black' opacity='.3'/%3E%3Cpath d='M9 18V5l12-2v13' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='6' cy='18' r='3' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='18' cy='16' r='3' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E"); }
|
|
411
|
+
.ls-music-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18V5l12-2v13' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='6' cy='18' r='3' stroke='black' stroke-width='2.5'/%3E%3Ccircle cx='18' cy='16' r='3' stroke='black' stroke-width='2.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18V5l12-2v13' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='6' cy='18' r='3' stroke='black' stroke-width='2.5'/%3E%3Ccircle cx='18' cy='16' r='3' stroke='black' stroke-width='2.5'/%3E%3C/svg%3E"); }
|
|
412
|
+
|
|
413
|
+
/* ============================================================
|
|
414
|
+
E-COMMERCE
|
|
415
|
+
============================================================ */
|
|
416
|
+
.ls-cart { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='21' r='1' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='20' cy='21' r='1' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 002 1.61h9.72a2 2 0 002-1.61L23 6H6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='21' r='1' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='20' cy='21' r='1' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 002 1.61h9.72a2 2 0 002-1.61L23 6H6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
417
|
+
.ls-cart-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-9.83-3h11.66l2.17-8H5.21L3.17 1H1v2h1.5l3.5 15.73A3 3 0 007 20h12v-2H7.42L7.17 15z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-9.83-3h11.66l2.17-8H5.21L3.17 1H1v2h1.5l3.5 15.73A3 3 0 007 20h12v-2H7.42L7.17 15z' fill='black'/%3E%3C/svg%3E"); }
|
|
418
|
+
.ls-cart-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6h17l-2.68 10.39a2 2 0 01-2 1.61H8.68a2 2 0 01-2-1.61L4 2H1' fill='black' opacity='.3'/%3E%3Ccircle cx='9' cy='21' r='1' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='20' cy='21' r='1' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 002 1.61h9.72a2 2 0 002-1.61L23 6H6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6h17l-2.68 10.39a2 2 0 01-2 1.61H8.68a2 2 0 01-2-1.61L4 2H1' fill='black' opacity='.3'/%3E%3Ccircle cx='9' cy='21' r='1' stroke='black' stroke-width='1.5'/%3E%3Ccircle cx='20' cy='21' r='1' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 002 1.61h9.72a2 2 0 002-1.61L23 6H6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
419
|
+
.ls-cart-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='21' r='1' stroke='black' stroke-width='2.5'/%3E%3Ccircle cx='20' cy='21' r='1' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 002 1.61h9.72a2 2 0 002-1.61L23 6H6' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='21' r='1' stroke='black' stroke-width='2.5'/%3E%3Ccircle cx='20' cy='21' r='1' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 002 1.61h9.72a2 2 0 002-1.61L23 6H6' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
420
|
+
|
|
421
|
+
.ls-bag { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4zM3 6h18M16 10a4 4 0 01-8 0' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4zM3 6h18M16 10a4 4 0 01-8 0' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
422
|
+
.ls-bag-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-1.66 0-3-1.34-3-3h2c0 .55.45 1 1 1s1-.45 1-1h2c0 1.66-1.34 3-3 3z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-1.66 0-3-1.34-3-3h2c0 .55.45 1 1 1s1-.45 1-1h2c0 1.66-1.34 3-3 3z' fill='black'/%3E%3C/svg%3E"); }
|
|
423
|
+
.ls-bag-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6h18v14a2 2 0 01-2 2H5a2 2 0 01-2-2V6z' fill='black' opacity='.3'/%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4zM3 6h18M16 10a4 4 0 01-8 0' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6h18v14a2 2 0 01-2 2H5a2 2 0 01-2-2V6z' fill='black' opacity='.3'/%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4zM3 6h18M16 10a4 4 0 01-8 0' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
424
|
+
.ls-bag-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4zM3 6h18M16 10a4 4 0 01-8 0' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4zM3 6h18M16 10a4 4 0 01-8 0' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
425
|
+
|
|
426
|
+
.ls-tag { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 01-2.83 0L2 12V2h10l8.59 8.59a2 2 0 010 2.82z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cline x1='7' y1='7' x2='7.01' y2='7' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 01-2.83 0L2 12V2h10l8.59 8.59a2 2 0 010 2.82z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cline x1='7' y1='7' x2='7.01' y2='7' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
427
|
+
.ls-tag-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.41 2H3a1 1 0 00-1 1v8.41a1 1 0 00.29.71l9 9a1 1 0 001.41 0l8-8a1 1 0 000-1.41l-9-9A1 1 0 0011.41 2zM7 8a1 1 0 110-2 1 1 0 010 2z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.41 2H3a1 1 0 00-1 1v8.41a1 1 0 00.29.71l9 9a1 1 0 001.41 0l8-8a1 1 0 000-1.41l-9-9A1 1 0 0011.41 2zM7 8a1 1 0 110-2 1 1 0 010 2z' fill='black'/%3E%3C/svg%3E"); }
|
|
428
|
+
.ls-tag-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 01-2.83 0L2 12V2h10l8.59 8.59a2 2 0 010 2.82z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cline x1='7' y1='7' x2='7.01' y2='7' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 01-2.83 0L2 12V2h10l8.59 8.59a2 2 0 010 2.82z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cline x1='7' y1='7' x2='7.01' y2='7' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
429
|
+
.ls-tag-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 01-2.83 0L2 12V2h10l8.59 8.59a2 2 0 010 2.82z' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3Cline x1='7' y1='7' x2='7.01' y2='7' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 01-2.83 0L2 12V2h10l8.59 8.59a2 2 0 010 2.82z' stroke='black' stroke-width='2.5' stroke-linejoin='round'/%3E%3Cline x1='7' y1='7' x2='7.01' y2='7' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
430
|
+
|
|
431
|
+
.ls-wallet { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='5' width='20' height='14' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M16 12h2M2 10h20' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='5' width='20' height='14' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M16 12h2M2 10h20' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
432
|
+
.ls-wallet-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 7H3a1 1 0 01-1-1V5a2 2 0 012-2h16a2 2 0 012 2v1a1 1 0 01-1 1zm1 2v8a2 2 0 01-2 2H4a2 2 0 01-2-2V9h20zm-5 4a1 1 0 100 2h2a1 1 0 100-2h-2z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 7H3a1 1 0 01-1-1V5a2 2 0 012-2h16a2 2 0 012 2v1a1 1 0 01-1 1zm1 2v8a2 2 0 01-2 2H4a2 2 0 01-2-2V9h20zm-5 4a1 1 0 100 2h2a1 1 0 100-2h-2z' fill='black'/%3E%3C/svg%3E"); }
|
|
433
|
+
.ls-wallet-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='5' width='20' height='14' rx='2' fill='black' opacity='.3'/%3E%3Crect x='2' y='5' width='20' height='14' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M16 12h2M2 10h20' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='5' width='20' height='14' rx='2' fill='black' opacity='.3'/%3E%3Crect x='2' y='5' width='20' height='14' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M16 12h2M2 10h20' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
434
|
+
.ls-wallet-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='5' width='20' height='14' rx='2' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M16 12h2M2 10h20' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='5' width='20' height='14' rx='2' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M16 12h2M2 10h20' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
435
|
+
|
|
436
|
+
/* menu */
|
|
437
|
+
.ls-menu { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='3' y1='6' x2='21' y2='6' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='3' y1='12' x2='21' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='3' y1='18' x2='21' y2='18' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='3' y1='6' x2='21' y2='6' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='3' y1='12' x2='21' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='3' y1='18' x2='21' y2='18' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
438
|
+
.ls-menu-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5h18v2H3V5zm0 6h18v2H3v-2zm0 6h18v2H3v-2z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5h18v2H3V5zm0 6h18v2H3v-2zm0 6h18v2H3v-2z' fill='black'/%3E%3C/svg%3E"); }
|
|
439
|
+
.ls-menu-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='3' y1='6' x2='21' y2='6' stroke='black' stroke-width='1.5' stroke-linecap='round' opacity='.3'/%3E%3Cline x1='3' y1='12' x2='21' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='3' y1='18' x2='21' y2='18' stroke='black' stroke-width='1.5' stroke-linecap='round' opacity='.3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='3' y1='6' x2='21' y2='6' stroke='black' stroke-width='1.5' stroke-linecap='round' opacity='.3'/%3E%3Cline x1='3' y1='12' x2='21' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='3' y1='18' x2='21' y2='18' stroke='black' stroke-width='1.5' stroke-linecap='round' opacity='.3'/%3E%3C/svg%3E"); }
|
|
440
|
+
.ls-menu-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='3' y1='6' x2='21' y2='6' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='3' y1='12' x2='21' y2='12' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='3' y1='18' x2='21' y2='18' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='3' y1='6' x2='21' y2='6' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='3' y1='12' x2='21' y2='12' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='3' y1='18' x2='21' y2='18' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
441
|
+
|
|
442
|
+
/* x-circle */
|
|
443
|
+
.ls-x-circle { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='black' stroke-width='1.5'/%3E%3Cline x1='15' y1='9' x2='9' y2='15' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='9' y1='9' x2='15' y2='15' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='black' stroke-width='1.5'/%3E%3Cline x1='15' y1='9' x2='9' y2='15' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='9' y1='9' x2='15' y2='15' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
444
|
+
.ls-x-circle-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z' fill='black'/%3E%3C/svg%3E"); }
|
|
445
|
+
.ls-x-circle-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Ccircle cx='12' cy='12' r='10' stroke='black' stroke-width='1.5'/%3E%3Cline x1='15' y1='9' x2='9' y2='15' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='9' y1='9' x2='15' y2='15' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='black' opacity='.3'/%3E%3Ccircle cx='12' cy='12' r='10' stroke='black' stroke-width='1.5'/%3E%3Cline x1='15' y1='9' x2='9' y2='15' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='9' y1='9' x2='15' y2='15' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
446
|
+
.ls-x-circle-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='black' stroke-width='2.5'/%3E%3Cline x1='15' y1='9' x2='9' y2='15' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='9' y1='9' x2='15' y2='15' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='black' stroke-width='2.5'/%3E%3Cline x1='15' y1='9' x2='9' y2='15' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='9' y1='9' x2='15' y2='15' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
447
|
+
|
|
448
|
+
/* sun */
|
|
449
|
+
.ls-sun { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='5' stroke='black' stroke-width='1.5'/%3E%3Cline x1='12' y1='2' x2='12' y2='4' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='12' y1='20' x2='12' y2='22' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='4.22' y1='4.22' x2='5.64' y2='5.64' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='18.36' y1='18.36' x2='19.78' y2='19.78' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='2' y1='12' x2='4' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='20' y1='12' x2='22' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='4.22' y1='19.78' x2='5.64' y2='18.36' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='18.36' y1='5.64' x2='19.78' y2='4.22' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='5' stroke='black' stroke-width='1.5'/%3E%3Cline x1='12' y1='2' x2='12' y2='4' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='12' y1='20' x2='12' y2='22' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='4.22' y1='4.22' x2='5.64' y2='5.64' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='18.36' y1='18.36' x2='19.78' y2='19.78' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='2' y1='12' x2='4' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='20' y1='12' x2='22' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='4.22' y1='19.78' x2='5.64' y2='18.36' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='18.36' y1='5.64' x2='19.78' y2='4.22' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
450
|
+
.ls-sun-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 7a5 5 0 100 10A5 5 0 0012 7zm0-5a1 1 0 011 1v2a1 1 0 11-2 0V3a1 1 0 011-1zm0 16a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1zM3 11a1 1 0 110 2H1a1 1 0 110-2h2zm20 0a1 1 0 110 2h-2a1 1 0 110-2h2zM5.64 4.22a1 1 0 010 1.42L4.22 7.06a1 1 0 01-1.42-1.42L4.22 4.22a1 1 0 011.42 0zm14.14 12.72a1 1 0 010 1.42l-1.42 1.42a1 1 0 01-1.42-1.42l1.42-1.42a1 1 0 011.42 0zM4.22 19.78a1 1 0 01-1.42-1.42l1.42-1.42a1 1 0 011.42 1.42l-1.42 1.42zm15.56-15.56a1 1 0 010 1.42l-1.42 1.42a1 1 0 01-1.42-1.42l1.42-1.42a1 1 0 011.42 0z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 7a5 5 0 100 10A5 5 0 0012 7zm0-5a1 1 0 011 1v2a1 1 0 11-2 0V3a1 1 0 011-1zm0 16a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1zM3 11a1 1 0 110 2H1a1 1 0 110-2h2zm20 0a1 1 0 110 2h-2a1 1 0 110-2h2zM5.64 4.22a1 1 0 010 1.42L4.22 7.06a1 1 0 01-1.42-1.42L4.22 4.22a1 1 0 011.42 0zm14.14 12.72a1 1 0 010 1.42l-1.42 1.42a1 1 0 01-1.42-1.42l1.42-1.42a1 1 0 011.42 0zM4.22 19.78a1 1 0 01-1.42-1.42l1.42-1.42a1 1 0 011.42 1.42l-1.42 1.42zm15.56-15.56a1 1 0 010 1.42l-1.42 1.42a1 1 0 01-1.42-1.42l1.42-1.42a1 1 0 011.42 0z' fill='black'/%3E%3C/svg%3E"); }
|
|
451
|
+
.ls-sun-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='5' fill='black' opacity='.3'/%3E%3Ccircle cx='12' cy='12' r='5' stroke='black' stroke-width='1.5'/%3E%3Cline x1='12' y1='2' x2='12' y2='4' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='12' y1='20' x2='12' y2='22' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='4.22' y1='4.22' x2='5.64' y2='5.64' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='18.36' y1='18.36' x2='19.78' y2='19.78' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='2' y1='12' x2='4' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='20' y1='12' x2='22' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='4.22' y1='19.78' x2='5.64' y2='18.36' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='18.36' y1='5.64' x2='19.78' y2='4.22' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='5' fill='black' opacity='.3'/%3E%3Ccircle cx='12' cy='12' r='5' stroke='black' stroke-width='1.5'/%3E%3Cline x1='12' y1='2' x2='12' y2='4' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='12' y1='20' x2='12' y2='22' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='4.22' y1='4.22' x2='5.64' y2='5.64' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='18.36' y1='18.36' x2='19.78' y2='19.78' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='2' y1='12' x2='4' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='20' y1='12' x2='22' y2='12' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='4.22' y1='19.78' x2='5.64' y2='18.36' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='18.36' y1='5.64' x2='19.78' y2='4.22' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
452
|
+
.ls-sun-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='5' stroke='black' stroke-width='2.5'/%3E%3Cline x1='12' y1='2' x2='12' y2='4' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='12' y1='20' x2='12' y2='22' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='4.22' y1='4.22' x2='5.64' y2='5.64' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='18.36' y1='18.36' x2='19.78' y2='19.78' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='2' y1='12' x2='4' y2='12' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='20' y1='12' x2='22' y2='12' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='4.22' y1='19.78' x2='5.64' y2='18.36' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='18.36' y1='5.64' x2='19.78' y2='4.22' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='5' stroke='black' stroke-width='2.5'/%3E%3Cline x1='12' y1='2' x2='12' y2='4' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='12' y1='20' x2='12' y2='22' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='4.22' y1='4.22' x2='5.64' y2='5.64' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='18.36' y1='18.36' x2='19.78' y2='19.78' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='2' y1='12' x2='4' y2='12' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='20' y1='12' x2='22' y2='12' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='4.22' y1='19.78' x2='5.64' y2='18.36' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='18.36' y1='5.64' x2='19.78' y2='4.22' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
|
|
453
|
+
|
|
454
|
+
/* moon */
|
|
455
|
+
.ls-moon { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
456
|
+
.ls-moon-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z' fill='black'/%3E%3C/svg%3E"); }
|
|
457
|
+
.ls-moon-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
458
|
+
.ls-moon-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
459
|
+
|
|
460
|
+
/* laptop */
|
|
461
|
+
.ls-laptop { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='4' width='20' height='13' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M1 21h22M8 21l1-4h6l1 4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='4' width='20' height='13' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M1 21h22M8 21l1-4h6l1 4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
462
|
+
.ls-laptop-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 4H2a2 2 0 00-2 2v10a2 2 0 002 2h7l-1 3H7v2h10v-2h-1l-1-3h7a2 2 0 002-2V6a2 2 0 00-2-2zm-9 15h-2l1-3h2l-1 3zM2 14V6h20l.001 8H2z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 4H2a2 2 0 00-2 2v10a2 2 0 002 2h7l-1 3H7v2h10v-2h-1l-1-3h7a2 2 0 002-2V6a2 2 0 00-2-2zm-9 15h-2l1-3h2l-1 3zM2 14V6h20l.001 8H2z' fill='black'/%3E%3C/svg%3E"); }
|
|
463
|
+
.ls-laptop-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='4' width='20' height='13' rx='2' fill='black' opacity='.3'/%3E%3Crect x='2' y='4' width='20' height='13' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M1 21h22M8 21l1-4h6l1 4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='4' width='20' height='13' rx='2' fill='black' opacity='.3'/%3E%3Crect x='2' y='4' width='20' height='13' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M1 21h22M8 21l1-4h6l1 4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
464
|
+
.ls-laptop-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='4' width='20' height='13' rx='2' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M1 21h22M8 21l1-4h6l1 4' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='4' width='20' height='13' rx='2' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M1 21h22M8 21l1-4h6l1 4' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
465
|
+
|
|
466
|
+
/* carets-down */
|
|
467
|
+
.ls-carets-down { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='6 3 12 9 18 3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='6 3 12 9 18 3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
468
|
+
.ls-carets-down-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.293 8.293a1 1 0 011.414 0L12 13.586l5.293-5.293a1 1 0 011.414 1.414l-6 6a1 1 0 01-1.414 0l-6-6a1 1 0 010-1.414z' fill='black'/%3E%3Cpath d='M5.293 2.293a1 1 0 011.414 0L12 7.586l5.293-5.293a1 1 0 011.414 1.414l-6 6a1 1 0 01-1.414 0l-6-6a1 1 0 010-1.414z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.293 8.293a1 1 0 011.414 0L12 13.586l5.293-5.293a1 1 0 011.414 1.414l-6 6a1 1 0 01-1.414 0l-6-6a1 1 0 010-1.414z' fill='black'/%3E%3Cpath d='M5.293 2.293a1 1 0 011.414 0L12 7.586l5.293-5.293a1 1 0 011.414 1.414l-6 6a1 1 0 01-1.414 0l-6-6a1 1 0 010-1.414z' fill='black'/%3E%3C/svg%3E"); }
|
|
469
|
+
.ls-carets-down-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='6 3 12 9 18 3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='.3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='6 3 12 9 18 3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='.3'/%3E%3C/svg%3E"); }
|
|
470
|
+
.ls-carets-down-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='6 3 12 9 18 3' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='6 3 12 9 18 3' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
471
|
+
|
|
472
|
+
/* settings */
|
|
473
|
+
.ls-settings { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 010 2.83 2 2 0 01-2.83 0l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-2 2 2 2 0 01-2-2v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83 0 2 2 0 010-2.83l.06-.06A1.65 1.65 0 004.68 15a1.65 1.65 0 00-1.51-1H3a2 2 0 01-2-2 2 2 0 012-2h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 010-2.83 2 2 0 012.83 0l.06.06A1.65 1.65 0 009 4.68a1.65 1.65 0 001-1.51V3a2 2 0 012-2 2 2 0 012 2v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 0 2 2 0 010 2.83l-.06.06A1.65 1.65 0 0019.4 9a1.65 1.65 0 001.51 1H21a2 2 0 012 2 2 2 0 01-2 2h-.09a1.65 1.65 0 00-1.51 1z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 010 2.83 2 2 0 01-2.83 0l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-2 2 2 2 0 01-2-2v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83 0 2 2 0 010-2.83l.06-.06A1.65 1.65 0 004.68 15a1.65 1.65 0 00-1.51-1H3a2 2 0 01-2-2 2 2 0 012-2h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 010-2.83 2 2 0 012.83 0l.06.06A1.65 1.65 0 009 4.68a1.65 1.65 0 001-1.51V3a2 2 0 012-2 2 2 0 012 2v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 0 2 2 0 010 2.83l-.06.06A1.65 1.65 0 0019.4 9a1.65 1.65 0 001.51 1H21a2 2 0 012 2 2 2 0 01-2 2h-.09a1.65 1.65 0 00-1.51 1z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
474
|
+
.ls-settings-solid { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 15a3 3 0 100-6 3 3 0 000 6zm7.94-3.26a6.08 6.08 0 00.05-.74c0-.25-.02-.51-.05-.74l1.6-1.25a.38.38 0 00.09-.49l-1.52-2.63a.38.38 0 00-.46-.17l-1.89.76a5.5 5.5 0 00-1.27-.74l-.29-2.01A.37.37 0 0015.83 3h-3.05a.37.37 0 00-.37.31l-.29 2.01a5.8 5.8 0 00-1.27.74l-1.89-.76a.37.37 0 00-.46.17L7.98 7.84a.37.37 0 00.09.49l1.6 1.25a5.9 5.9 0 00-.05.74c0 .25.02.5.05.74l-1.6 1.25a.38.38 0 00-.09.49l1.52 2.63c.1.17.3.23.46.17l1.89-.76c.4.28.82.52 1.27.74l.29 2.01c.05.2.22.31.37.31h3.05c.16 0 .32-.12.37-.31l.29-2.01a5.8 5.8 0 001.27-.74l1.89.76c.17.06.36 0 .46-.17l1.52-2.63a.38.38 0 00-.09-.49l-1.6-1.25z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 15a3 3 0 100-6 3 3 0 000 6zm7.94-3.26a6.08 6.08 0 00.05-.74c0-.25-.02-.51-.05-.74l1.6-1.25a.38.38 0 00.09-.49l-1.52-2.63a.38.38 0 00-.46-.17l-1.89.76a5.5 5.5 0 00-1.27-.74l-.29-2.01A.37.37 0 0015.83 3h-3.05a.37.37 0 00-.37.31l-.29 2.01a5.8 5.8 0 00-1.27.74l-1.89-.76a.37.37 0 00-.46.17L7.98 7.84a.37.37 0 00.09.49l1.6 1.25a5.9 5.9 0 00-.05.74c0 .25.02.5.05.74l-1.6 1.25a.38.38 0 00-.09.49l1.52 2.63c.1.17.3.23.46.17l1.89-.76c.4.28.82.52 1.27.74l.29 2.01c.05.2.22.31.37.31h3.05c.16 0 .32-.12.37-.31l.29-2.01a5.8 5.8 0 001.27-.74l1.89.76c.17.06.36 0 .46-.17l1.52-2.63a.38.38 0 00-.09-.49l-1.6-1.25z' fill='black'/%3E%3C/svg%3E"); }
|
|
475
|
+
.ls-settings-duotone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3' fill='black' opacity='.3'/%3E%3Ccircle cx='12' cy='12' r='3' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 010 2.83 2 2 0 01-2.83 0l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-2 2 2 2 0 01-2-2v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83 0 2 2 0 010-2.83l.06-.06A1.65 1.65 0 004.68 15a1.65 1.65 0 00-1.51-1H3a2 2 0 01-2-2 2 2 0 012-2h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 010-2.83 2 2 0 012.83 0l.06.06A1.65 1.65 0 009 4.68a1.65 1.65 0 001-1.51V3a2 2 0 012-2 2 2 0 012 2v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 0 2 2 0 010 2.83l-.06.06A1.65 1.65 0 0019.4 9a1.65 1.65 0 001.51 1H21a2 2 0 012 2 2 2 0 01-2 2h-.09a1.65 1.65 0 00-1.51 1z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3' fill='black' opacity='.3'/%3E%3Ccircle cx='12' cy='12' r='3' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 010 2.83 2 2 0 01-2.83 0l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-2 2 2 2 0 01-2-2v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83 0 2 2 0 010-2.83l.06-.06A1.65 1.65 0 004.68 15a1.65 1.65 0 00-1.51-1H3a2 2 0 01-2-2 2 2 0 012-2h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 010-2.83 2 2 0 012.83 0l.06.06A1.65 1.65 0 009 4.68a1.65 1.65 0 001-1.51V3a2 2 0 012-2 2 2 0 012 2v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 0 2 2 0 010 2.83l-.06.06A1.65 1.65 0 0019.4 9a1.65 1.65 0 001.51 1H21a2 2 0 012 2 2 2 0 01-2 2h-.09a1.65 1.65 0 00-1.51 1z' fill='black' opacity='.3' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
476
|
+
.ls-settings-bold { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 010 2.83 2 2 0 01-2.83 0l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-2 2 2 2 0 01-2-2v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83 0 2 2 0 010-2.83l.06-.06A1.65 1.65 0 004.68 15a1.65 1.65 0 00-1.51-1H3a2 2 0 01-2-2 2 2 0 012-2h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 010-2.83 2 2 0 012.83 0l.06.06A1.65 1.65 0 009 4.68a1.65 1.65 0 001-1.51V3a2 2 0 012-2 2 2 0 012 2v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 0 2 2 0 010 2.83l-.06.06A1.65 1.65 0 0019.4 9a1.65 1.65 0 001.51 1H21a2 2 0 012 2 2 2 0 01-2 2h-.09a1.65 1.65 0 00-1.51 1z' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 010 2.83 2 2 0 01-2.83 0l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-2 2 2 2 0 01-2-2v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83 0 2 2 0 010-2.83l.06-.06A1.65 1.65 0 004.68 15a1.65 1.65 0 00-1.51-1H3a2 2 0 01-2-2 2 2 0 012-2h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 010-2.83 2 2 0 012.83 0l.06.06A1.65 1.65 0 009 4.68a1.65 1.65 0 001-1.51V3a2 2 0 012-2 2 2 0 012 2v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 0 2 2 0 010 2.83l-.06.06A1.65 1.65 0 0019.4 9a1.65 1.65 0 001.51 1H21a2 2 0 012 2 2 2 0 01-2 2h-.09a1.65 1.65 0 00-1.51 1z' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
|
|
477
|
+
|
|
478
|
+
/* menu-documentation */
|
|
479
|
+
.ls-menu-documentation { -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 4.69434V18.6943C4 20.3512 5.34315 21.6943 7 21.6943H17C18.6569 21.6943 20 20.3512 20 18.6943V8.69434C20 7.03748 18.6569 5.69434 17 5.69434H5C4.44772 5.69434 4 5.24662 4 4.69434ZM7.25 11.6943C7.25 11.2801 7.58579 10.9443 8 10.9443H16C16.4142 10.9443 16.75 11.2801 16.75 11.6943C16.75 12.1085 16.4142 12.4443 16 12.4443H8C7.58579 12.4443 7.25 12.1085 7.25 11.6943ZM7.25 15.1943C7.25 14.7801 7.58579 14.4443 8 14.4443H13.5C13.9142 14.4443 14.25 14.7801 14.25 15.1943C14.25 15.6085 13.9142 15.9443 13.5 15.9443H8C7.58579 15.9443 7.25 15.6085 7.25 15.1943Z' fill='black'/%3E%3Cpath opacity='.5' d='M18 4.00038V5.86504C17.6872 5.75449 17.3506 5.69434 17 5.69434H5C4.44772 5.69434 4 5.24662 4 4.69434V4.62329C4 4.09027 4.39193 3.63837 4.91959 3.56299L15.7172 2.02048C16.922 1.84835 18 2.78328 18 4.00038Z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 4.69434V18.6943C4 20.3512 5.34315 21.6943 7 21.6943H17C18.6569 21.6943 20 20.3512 20 18.6943V8.69434C20 7.03748 18.6569 5.69434 17 5.69434H5C4.44772 5.69434 4 5.24662 4 4.69434ZM7.25 11.6943C7.25 11.2801 7.58579 10.9443 8 10.9443H16C16.4142 10.9443 16.75 11.2801 16.75 11.6943C16.75 12.1085 16.4142 12.4443 16 12.4443H8C7.58579 12.4443 7.25 12.1085 7.25 11.6943ZM7.25 15.1943C7.25 14.7801 7.58579 14.4443 8 14.4443H13.5C13.9142 14.4443 14.25 14.7801 14.25 15.1943C14.25 15.6085 13.9142 15.9443 13.5 15.9443H8C7.58579 15.9443 7.25 15.6085 7.25 15.1943Z' fill='black'/%3E%3Cpath opacity='.5' d='M18 4.00038V5.86504C17.6872 5.75449 17.3506 5.69434 17 5.69434H5C4.44772 5.69434 4 5.24662 4 4.69434V4.62329C4 4.09027 4.39193 3.63837 4.91959 3.56299L15.7172 2.02048C16.922 1.84835 18 2.78328 18 4.00038Z' fill='black'/%3E%3C/svg%3E"); }
|
|
480
|
+
|
|
481
|
+
/* menu-components */
|
|
482
|
+
.ls-menu-components { -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.42229 20.6181C10.1779 21.5395 11.0557 22.0001 12 22.0001V12.0001L2.63802 7.07275C2.62423 7.09491 2.6107 7.11727 2.5974 7.13986C2 8.15436 2 9.41678 2 11.9416V12.0586C2 14.5834 2 15.8459 2.5974 16.8604C3.19479 17.8749 4.27063 18.4395 6.42229 19.5686L8.42229 20.6181Z' fill='black'/%3E%3Cpath opacity='.7' d='M17.5774 4.43152L15.5774 3.38197C13.8218 2.46066 12.944 2 11.9997 2C11.0554 2 10.1776 2.46066 8.42197 3.38197L6.42197 4.43152C4.31821 5.53552 3.24291 6.09982 2.6377 7.07264L11.9997 12L21.3617 7.07264C20.7564 6.09982 19.6811 5.53552 17.5774 4.43152Z' fill='black'/%3E%3Cpath opacity='.5' d='M21.4026 7.13986C21.3893 7.11727 21.3758 7.09491 21.362 7.07275L12 12.0001V22.0001C12.9443 22.0001 13.8221 21.5395 15.5777 20.6181L17.5777 19.5686C19.7294 18.4395 20.8052 17.8749 21.4026 16.8604C22 15.8459 22 14.5834 22 12.0586V11.9416C22 9.41678 22 8.15436 21.4026 7.13986Z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.42229 20.6181C10.1779 21.5395 11.0557 22.0001 12 22.0001V12.0001L2.63802 7.07275C2.62423 7.09491 2.6107 7.11727 2.5974 7.13986C2 8.15436 2 9.41678 2 11.9416V12.0586C2 14.5834 2 15.8459 2.5974 16.8604C3.19479 17.8749 4.27063 18.4395 6.42229 19.5686L8.42229 20.6181Z' fill='black'/%3E%3Cpath opacity='.7' d='M17.5774 4.43152L15.5774 3.38197C13.8218 2.46066 12.944 2 11.9997 2C11.0554 2 10.1776 2.46066 8.42197 3.38197L6.42197 4.43152C4.31821 5.53552 3.24291 6.09982 2.6377 7.07264L11.9997 12L21.3617 7.07264C20.7564 6.09982 19.6811 5.53552 17.5774 4.43152Z' fill='black'/%3E%3Cpath opacity='.5' d='M21.4026 7.13986C21.3893 7.11727 21.3758 7.09491 21.362 7.07275L12 12.0001V22.0001C12.9443 22.0001 13.8221 21.5395 15.5777 20.6181L17.5777 19.5686C19.7294 18.4395 20.8052 17.8749 21.4026 16.8604C22 15.8459 22 14.5834 22 12.0586V11.9416C22 9.41678 22 8.15436 21.4026 7.13986Z' fill='black'/%3E%3C/svg%3E"); }
|