twntyx-css 1.0.2 → 1.0.5
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/llm/components/ai-orb.json +0 -1
- package/llm/components/ai-perl.json +5 -13
- package/llm/components/all-components.json +13 -5
- package/llm/components/{banner-marketplace.json → banner-funding.json} +8 -8
- package/llm/components/breadcrumb.json +0 -1
- package/llm/components/button-container.json +1 -0
- package/llm/components/chat-ai.json +100 -6
- package/llm/components/chat-footer.json +24 -3
- package/llm/components/checkmark.json +0 -1
- package/llm/components/command-palette.json +0 -1
- package/llm/components/countdown.json +1 -1
- package/llm/components/divider.json +1 -1
- package/llm/components/kbd.json +1 -1
- package/llm/components/key-value.json +2 -10
- package/llm/components/{skeleton.json → loader-skeleton.json} +7 -5
- package/llm/components/{loader.json → loader-symbol.json} +8 -10
- package/llm/components/{empty-state.json → loader-text.json} +22 -20
- package/llm/components/progress-bullet.json +0 -1
- package/llm/components/state.json +2 -1
- package/llm/components/stepper.json +1 -1
- package/llm/components/steps.json +6 -95
- package/llm/components/surface.json +2 -0
- package/llm/components/tabs.json +1 -0
- package/llm/components/{input-group.json → template-navbar.json} +28 -43
- package/llm/components/text-input.json +8 -169
- package/llm/components/toast.json +0 -2
- package/llm/components/tooltip.json +1 -1
- package/llm/examples/ai-perl.html +1 -1
- package/llm/examples/banner-funding.html +1 -0
- package/llm/examples/chat-ai.html +1 -1
- package/llm/examples/chat-footer.html +1 -1
- package/llm/examples/key-value.html +1 -1
- package/llm/examples/loader-skeleton.html +1 -0
- package/llm/examples/loader-symbol.html +1 -0
- package/llm/examples/loader-text.html +1 -0
- package/llm/examples/steps.html +1 -1
- package/llm/examples/template-navbar.html +1 -0
- package/llm/index.json +73 -88
- package/llm/patterns.json +2 -2
- package/llm/tokens.json +657 -367
- package/package.json +1 -1
- package/styles/ai.css +3 -7
- package/styles/animation.css +228 -94
- package/styles/button.css +50 -39
- package/styles/card.css +3 -3
- package/styles/colors.css +525 -283
- package/styles/datepicker.css +8 -15
- package/styles/divider.css +1 -1
- package/styles/form.css +6 -8
- package/styles/globals.css +62 -64
- package/styles/key-value.css +4 -3
- package/styles/loader.css +25 -31
- package/styles/logotype.css +6 -6
- package/styles/scrollbar.css +2 -2
- package/styles/shared.css +17 -17
- package/styles/skeleton.css +2 -1
- package/styles/state.css +109 -97
- package/styles/steps.css +2 -2
- package/styles/surface.css +74 -90
- package/styles/table.css +3 -3
- package/styles/toast.css +3 -5
- package/llm/components/navbar.json +0 -158
- package/llm/examples/banner-marketplace.html +0 -1
- package/llm/examples/empty-state.html +0 -1
- package/llm/examples/input-group.html +0 -1
- package/llm/examples/loader.html +0 -1
- package/llm/examples/navbar.html +0 -1
- package/llm/examples/skeleton.html +0 -1
- package/styles/empty-state.css +0 -48
- package/styles/navbar.css +0 -48
package/styles/datepicker.css
CHANGED
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
/*----------------------------*/
|
|
4
4
|
|
|
5
5
|
@utility datepicker {
|
|
6
|
-
@apply
|
|
7
|
-
flex
|
|
6
|
+
@apply flex
|
|
8
7
|
overflow-hidden
|
|
9
8
|
flex-col
|
|
10
9
|
w-80
|
|
@@ -37,8 +36,7 @@
|
|
|
37
36
|
@apply flex items-center justify-center;
|
|
38
37
|
|
|
39
38
|
button {
|
|
40
|
-
@apply
|
|
41
|
-
flex
|
|
39
|
+
@apply flex
|
|
42
40
|
justify-center
|
|
43
41
|
items-center
|
|
44
42
|
m-px
|
|
@@ -54,8 +52,7 @@
|
|
|
54
52
|
disabled:pointer-events-none
|
|
55
53
|
focus:outline-hidden
|
|
56
54
|
focus:border-background-brand
|
|
57
|
-
focus:text-text-brand
|
|
58
|
-
;
|
|
55
|
+
focus:text-text-brand;
|
|
59
56
|
}
|
|
60
57
|
|
|
61
58
|
&:has(.range-start) ~ li > div,
|
|
@@ -66,7 +63,7 @@
|
|
|
66
63
|
> div.range-end ~ div {
|
|
67
64
|
@apply bg-transparent dark:bg-transparent;
|
|
68
65
|
}
|
|
69
|
-
|
|
66
|
+
|
|
70
67
|
> div {
|
|
71
68
|
&.is-selected,
|
|
72
69
|
&.range-start,
|
|
@@ -89,8 +86,6 @@
|
|
|
89
86
|
@apply rounded-r-full;
|
|
90
87
|
}
|
|
91
88
|
}
|
|
92
|
-
|
|
93
|
-
|
|
94
89
|
}
|
|
95
90
|
}
|
|
96
91
|
}
|
|
@@ -99,19 +94,17 @@
|
|
|
99
94
|
@apply flex items-center justify-between pb-3 mx-1.5 text-sm gap-1;
|
|
100
95
|
|
|
101
96
|
select {
|
|
102
|
-
@apply
|
|
103
|
-
appearance-none
|
|
97
|
+
@apply appearance-none
|
|
104
98
|
include-active
|
|
105
99
|
bg-transparent
|
|
106
100
|
px-1!
|
|
107
101
|
bg-none
|
|
108
102
|
rounded-sm
|
|
109
103
|
flex-1
|
|
110
|
-
font-medium
|
|
111
|
-
|
|
112
|
-
&:first-of-type {
|
|
104
|
+
font-medium;
|
|
105
|
+
/* &:first-of-type {
|
|
113
106
|
@apply text-right;
|
|
114
|
-
}
|
|
107
|
+
} */
|
|
115
108
|
}
|
|
116
109
|
}
|
|
117
110
|
|
package/styles/divider.css
CHANGED
package/styles/form.css
CHANGED
|
@@ -2,9 +2,8 @@
|
|
|
2
2
|
/* FORM */
|
|
3
3
|
/*----------------------------*/
|
|
4
4
|
|
|
5
|
-
.form-input {
|
|
6
|
-
@apply
|
|
7
|
-
items-center
|
|
5
|
+
/* .form-input {
|
|
6
|
+
@apply items-center
|
|
8
7
|
px-4
|
|
9
8
|
py-2
|
|
10
9
|
w-full
|
|
@@ -22,10 +21,9 @@
|
|
|
22
21
|
include-border-secondary
|
|
23
22
|
outline-2
|
|
24
23
|
outline-offset-2
|
|
25
|
-
outline-line-brand/0
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
24
|
+
outline-line-brand/0;
|
|
25
|
+
} */
|
|
26
|
+
/*
|
|
29
27
|
.input-group > input,
|
|
30
28
|
.form-input {
|
|
31
29
|
@apply
|
|
@@ -83,4 +81,4 @@
|
|
|
83
81
|
;
|
|
84
82
|
}
|
|
85
83
|
|
|
86
|
-
}
|
|
84
|
+
} */
|
package/styles/globals.css
CHANGED
|
@@ -1,67 +1,65 @@
|
|
|
1
|
-
@import
|
|
2
|
-
@import
|
|
1
|
+
@import 'tailwindcss';
|
|
2
|
+
@import './theme.css';
|
|
3
3
|
|
|
4
|
-
@import
|
|
5
|
-
@import
|
|
4
|
+
@import './colors.css';
|
|
5
|
+
@import './shared.css';
|
|
6
6
|
|
|
7
|
-
@import
|
|
8
|
-
@import
|
|
9
|
-
@import
|
|
10
|
-
@import
|
|
11
|
-
@import
|
|
12
|
-
@import
|
|
13
|
-
@import
|
|
14
|
-
@import
|
|
15
|
-
@import
|
|
16
|
-
@import
|
|
17
|
-
@import
|
|
18
|
-
@import
|
|
19
|
-
@import
|
|
20
|
-
@import
|
|
21
|
-
@import
|
|
22
|
-
@import
|
|
23
|
-
@import
|
|
24
|
-
@import
|
|
25
|
-
@import
|
|
26
|
-
@import
|
|
27
|
-
@import
|
|
28
|
-
@import
|
|
29
|
-
@import
|
|
30
|
-
@import
|
|
31
|
-
@import
|
|
32
|
-
@import
|
|
33
|
-
@import
|
|
34
|
-
@import
|
|
35
|
-
@import
|
|
36
|
-
@import
|
|
37
|
-
@import
|
|
38
|
-
@import
|
|
39
|
-
@import
|
|
40
|
-
@import
|
|
41
|
-
@import
|
|
42
|
-
@import
|
|
43
|
-
@import
|
|
44
|
-
@import
|
|
45
|
-
@import
|
|
46
|
-
@import
|
|
47
|
-
@import
|
|
48
|
-
@import
|
|
49
|
-
@import
|
|
50
|
-
@import
|
|
51
|
-
@import
|
|
52
|
-
@import
|
|
53
|
-
@import
|
|
54
|
-
@import
|
|
55
|
-
@import
|
|
56
|
-
@import
|
|
57
|
-
@import
|
|
58
|
-
@import
|
|
59
|
-
@import
|
|
60
|
-
@import
|
|
61
|
-
@import
|
|
62
|
-
@import
|
|
63
|
-
@import
|
|
64
|
-
@import "./typography.css";
|
|
65
|
-
@import "./utility.css";
|
|
7
|
+
@import './ai.css';
|
|
8
|
+
@import './animation.css';
|
|
9
|
+
@import './avatar.css';
|
|
10
|
+
@import './background-ai.css';
|
|
11
|
+
@import './banner.css';
|
|
12
|
+
@import './breadcrumb.css';
|
|
13
|
+
@import './button.css';
|
|
14
|
+
@import './badge.css';
|
|
15
|
+
@import './card.css';
|
|
16
|
+
@import './chart-pie.css';
|
|
17
|
+
@import './chart-stacked.css';
|
|
18
|
+
@import './chat.css';
|
|
19
|
+
@import './checkmark.css';
|
|
20
|
+
@import './code.css';
|
|
21
|
+
@import './collapsible.css';
|
|
22
|
+
@import './countdown.css';
|
|
23
|
+
@import './datepicker.css';
|
|
24
|
+
@import './divider.css';
|
|
25
|
+
@import './drawer.css';
|
|
26
|
+
@import './fieldset.css';
|
|
27
|
+
@import './field.css';
|
|
28
|
+
@import './font.css';
|
|
29
|
+
@import './dropdown.css';
|
|
30
|
+
@import './form-shared.css';
|
|
31
|
+
@import './form-checkbox-radio-toggle.css';
|
|
32
|
+
@import './form-fileupload.css';
|
|
33
|
+
@import './form-rangeslider.css';
|
|
34
|
+
@import './form-text-select.css';
|
|
35
|
+
@import './combobox.css';
|
|
36
|
+
@import './command.css';
|
|
37
|
+
@import './input-group.css';
|
|
38
|
+
@import './join.css';
|
|
39
|
+
@import './key-value.css';
|
|
40
|
+
@import './kbd.css';
|
|
41
|
+
@import './link.css';
|
|
42
|
+
@import './logotype.css';
|
|
43
|
+
@import './loader.css';
|
|
44
|
+
@import './menu.css';
|
|
45
|
+
@import './modal.css';
|
|
46
|
+
@import './pagination.css';
|
|
47
|
+
@import './panel.css';
|
|
48
|
+
@import './popover.css';
|
|
49
|
+
@import './progress.css';
|
|
50
|
+
@import './scrollbar.css';
|
|
51
|
+
@import './shadow.css';
|
|
52
|
+
@import './skeleton.css';
|
|
53
|
+
@import './state.css';
|
|
54
|
+
@import './stepper.css';
|
|
55
|
+
@import './steps.css';
|
|
56
|
+
@import './surface.css';
|
|
57
|
+
@import './tab.css';
|
|
58
|
+
@import './table.css';
|
|
59
|
+
@import './timeline.css';
|
|
60
|
+
@import './toast.css';
|
|
61
|
+
@import './tooltip.css';
|
|
62
|
+
@import './typography.css';
|
|
63
|
+
@import './utility.css';
|
|
66
64
|
|
|
67
|
-
@import
|
|
65
|
+
@import './package-quill.css';
|
package/styles/key-value.css
CHANGED
|
@@ -3,17 +3,17 @@
|
|
|
3
3
|
/*----------------------------*/
|
|
4
4
|
|
|
5
5
|
@utility key-value {
|
|
6
|
-
@apply p-3 divide-y divide-line-default;
|
|
6
|
+
@apply p-3 divide-y divide-line-default text-sm;
|
|
7
7
|
|
|
8
8
|
> :where(div, .key-value-item) {
|
|
9
9
|
@apply grid grid-cols-[minmax(0,1fr)_minmax(0,2fr)] gap-3 py-2;
|
|
10
10
|
|
|
11
11
|
> :where(dt, .key-value-key) {
|
|
12
|
-
@apply text-
|
|
12
|
+
@apply text-text-tertiary;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
> :where(dd, .key-value-value) {
|
|
16
|
-
@apply text-
|
|
16
|
+
@apply text-text-default text-right font-semibold inline-flex items-center gap-2 justify-end;
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
@utility key-value-compact {
|
|
41
|
+
@apply text-xs;
|
|
41
42
|
.key-value-item {
|
|
42
43
|
@apply py-1.5;
|
|
43
44
|
}
|
package/styles/loader.css
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
/*----------------------------*/
|
|
4
4
|
|
|
5
5
|
@utility loader-base {
|
|
6
|
-
@apply block relative mx-auto
|
|
6
|
+
@apply block relative mx-auto size-16 mask bg-current;
|
|
7
7
|
/* mask-mode: alpha; */
|
|
8
|
-
mask-image: url(
|
|
8
|
+
mask-image: url('data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22g%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201000%201000%22%3E%3Cdefs%3E%3Cstyle%3E%20*%2C%20g%2C%20circle%2C%20path%20%7B%20transform-origin%3A%20center%3B%20transform-box%3A%20fill-box%3B%20stroke-linejoin%3A%20round%3B%20--duration%3A%203s%3B%20%7D%20.cls-1%20%7B%20stroke%3A%20%23000%3B%20%7D%20.cls-1%2C%20.cls-2%20%7B%20fill%3A%20none%3B%20stroke-miterlimit%3A%2010%3B%20stroke-width%3A%2053.9px%3B%20%7D%20.cls-2%20%7B%20stroke%3A%20rgba(0%2C%200%2C%200%2C%200.25)%3B%20%7D%20.rotate%20%7B%20animation%3A%20rotate%20calc(var(--duration)%20%2F%204)%20linear%20infinite%3B%20%7D%20%40keyframes%20rotate%20%7B%200%25%20%7B%20transform%3A%20rotate(0deg)%3B%20%7D%20100%25%20%7B%20transform%3A%20rotate(360deg)%3B%20%7D%20%7D%20%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22base%22%20class%3D%22rotate%22%3E%3Ccircle%20class%3D%22cls-2%22%20cx%3D%22500%22%20cy%3D%22500%22%20r%3D%22365.24%22%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M241.73%2C241.73c142.64-142.64%2C373.9-142.64%2C516.53%2C0%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
@utility loader {
|
|
@@ -37,19 +37,19 @@
|
|
|
37
37
|
.loader-cube {
|
|
38
38
|
@apply block relative mx-auto mask bg-current;
|
|
39
39
|
mask-mode: alpha;
|
|
40
|
-
mask-image: url(
|
|
40
|
+
mask-image: url('data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22g%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%201000%201000%22%3E%3Cdefs%3E%3Cstyle%3E%20*%2C%20g%20%7B%20transform-origin%3A%20center%3B%20transform-box%3A%20fill-box%3B%20stroke-linejoin%3A%20round%3B%20--duration%3A%203s%3B%20%7D%20.cls-1%20%7B%20mask%3A%20url(%23mask)%3B%20%7D%20.cls-2%20%7B%20filter%3A%20url(%23luminosity-invert)%3B%20%7D%20.cls-3%20%7B%20stroke%3A%20%23fff%3B%20%7D%20.cls-3%2C%20.cls-4%20%7B%20fill%3A%20none%3B%20stroke-miterlimit%3A%2010%3B%20stroke-width%3A%2053.9px%3B%20%7D%20.cls-4%20%7B%20stroke%3Argb(100%2C%20100%2C%20100)%20%7D%20.rotate%20%7B%20animation%3A%20rotate%20calc(var(--duration)%20%2F%204)%20linear%20infinite%3B%20%7D%20%40keyframes%20rotate%20%7B%200%25%20%7B%20transform%3A%20rotate(0deg)%3B%20%7D%20100%25%20%7B%20transform%3A%20rotate(360deg)%3B%20%7D%20%7D%20.rotate-invert%20%7B%20animation%3A%20rotate-invert%20calc(var(--duration)%20*%203)%20linear%20infinite%3B%20%7D%20%40keyframes%20rotate-invert%20%7B%200%25%20%7B%20transform%3A%20rotate(0deg)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%3B%20%7D%208.333%25%2C%2016.666%25%20%7B%20transform%3A%20rotate(60deg)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%3B%20%7D%2025%25%2C%2033.333%25%20%7B%20transform%3A%20rotate(120deg)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%3B%20%7D%2041.666%25%2C%2050%25%20%7B%20transform%3A%20rotate(180deg)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%3B%20%7D%2058.333%25%2C%2066.666%25%20%7B%20transform%3A%20rotate(240deg)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%3B%20%7D%2075%25%2C%2083.333%25%20%7B%20transform%3A%20rotate(300deg)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%3B%20%7D%2091.666%25%2C%20100%25%20%7B%20transform%3A%20rotate(360deg)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%3B%20%7D%20%7D%20%3C%2Fstyle%3E%3Cfilter%20id%3D%22luminosity-invert%22%20x%3D%2224.98%22%20y%3D%22.57%22%20width%3D%22949.83%22%20height%3D%22999.18%22%20color-interpolation-filters%3D%22sRGB%22%20filterUnits%3D%22userSpaceOnUse%22%3E%3CfeColorMatrix%20result%3D%22cm%22%20values%3D%22-1%200%200%200%201%200%20-1%200%200%201%200%200%20-1%200%201%200%200%200%201%200%22%2F%3E%3C%2Ffilter%3E%3Cmask%20id%3D%22mask%22%20x%3D%2224.98%22%20y%3D%22.57%22%20width%3D%22949.83%22%20height%3D%22999.18%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cg%20class%3D%22cls-2%22%3E%3Cg%3E%3Cg%20id%3D%22mask-2%22%20data-name%3D%22mask%22%3E%3Cpath%20id%3D%22shape%22%20d%3D%22M817.1%2C134.91l-159.48-92.08c-97.6-56.35-217.84-56.35-315.44%2C0l-159.48%2C92.08C85.11%2C191.26%2C24.98%2C295.39%2C24.98%2C408.08v184.15c0%2C112.7%2C60.12%2C216.83%2C157.72%2C273.18l159.48%2C92.08c97.6%2C56.35%2C217.84%2C56.35%2C315.44%2C0l159.48-92.08c97.6-56.35%2C157.72-160.48%2C157.72-273.18v-184.15c0-112.69-60.12-216.83-157.72-273.18Z%22%2F%3E%3C%2Fg%3E%3Cg%20class%3D%22rotate%22%3E%3Ccircle%20class%3D%22cls-4%22%20cx%3D%22500%22%20cy%3D%22500%22%20r%3D%22365.24%22%2F%3E%3Cpath%20class%3D%22cls-3%22%20d%3D%22M241.73%2C241.73c142.64-142.64%2C373.9-142.64%2C516.53%2C0%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fmask%3E%3C%2Fdefs%3E%3Cg%20class%3D%22cls-1%20rotate-invert%22%3E%3Cpath%20id%3D%22shape-2%22%20data-name%3D%22shape%22%20d%3D%22M817.1%2C134.91l-159.48-92.08c-97.6-56.35-217.84-56.35-315.44%2C0l-159.48%2C92.08C85.11%2C191.26%2C24.98%2C295.39%2C24.98%2C408.08v184.15c0%2C112.7%2C60.12%2C216.83%2C157.72%2C273.18l159.48%2C92.08c97.6%2C56.35%2C217.84%2C56.35%2C315.44%2C0l159.48-92.08c97.6-56.35%2C157.72-160.48%2C157.72-273.18v-184.15c0-112.69-60.12-216.83-157.72-273.18Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
.loader-wheel {
|
|
44
44
|
@apply block relative mx-auto mask bg-current;
|
|
45
45
|
mask-mode: alpha;
|
|
46
|
-
mask-image: url(
|
|
46
|
+
mask-image: url('data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22g%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%201000%201000%22%3E%3Cdefs%3E%3Cstyle%3E%20*%2C%20g%20%7B%20transform-origin%3A%20center%3B%20transform-box%3A%20fill-box%3B%20stroke-linejoin%3A%20round%3B%20--duration%3A%203s%3B%20%7D%20.cls-1%2C%20.cls-2%2C%20.cls-3%20%7B%20fill%3A%20none%3B%20%7D%20.cls-4%20%7B%20mask%3A%20url(%23mask)%3B%20%7D%20.cls-5%20%7B%20filter%3A%20url(%23luminosity-invert)%3B%20%7D%20.cls-2%20%7B%20stroke%3A%20%23fff%3B%20stroke-width%3A%2053.9px%3B%20%7D%20.cls-2%2C%20.cls-3%20%7B%20stroke-miterlimit%3A%2010%3B%20%7D%20.cls-3%20%7B%20stroke%3A%20%23000%3B%20stroke-width%3A%20107.8px%3B%20%7D%20.rotate%20%7B%20animation%3A%20rotate%20var(--duration)%20linear%20infinite%3B%20%7D%20.rotate-2%20%7B%20animation-delay%3A%20calc(var(--duration)%20%2F%2070)%3B%20%7D%20%40keyframes%20rotate%20%7B%200%25%20%7B%20transform%3A%20rotate(0turn)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%20%7D%2050%25%2C%20100%25%20%7B%20transform%3A%20rotate(0.5turn)%3B%20%7D%20%7D%20.rotate-full%20%7B%20animation%3A%20rotate-full%20calc(var(--duration)%20*%205)%20linear%20infinite%3B%20%7D%20%40keyframes%20rotate-full%20%7B%200%25%20%7B%20transform%3A%20rotate(0turn)%3B%20%7D%20100%25%20%7B%20transform%3A%20rotate(1turn)%3B%20%7D%20%7D%20.rotate-invert%20%7B%20animation%3A%20rotate-invert%20calc(var(--duration)%20*%206)%20linear%20infinite%3B%20%7D%20%40keyframes%20rotate-invert%20%7B%200%25%20%7B%20transform%3A%20rotate(0deg)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%3B%20%7D%208.333%25%2C%2016.666%25%20%7B%20transform%3A%20rotate(-60deg)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%3B%20%7D%2025%25%2C%2033.333%25%20%7B%20transform%3A%20rotate(-120deg)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%3B%20%7D%2041.666%25%2C%2050%25%20%7B%20transform%3A%20rotate(-180deg)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%3B%20%7D%2058.333%25%2C%2066.666%25%20%7B%20transform%3A%20rotate(-240deg)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%3B%20%7D%2075%25%2C%2083.333%25%20%7B%20transform%3A%20rotate(-300deg)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%3B%20%7D%2091.666%25%2C%20100%25%20%7B%20transform%3A%20rotate(-360deg)%3B%20animation-timing-function%3A%20cubic-bezier(0.78%2C%200%2C%200.22%2C%201)%3B%20%7D%20%7D%20%3C%2Fstyle%3E%3Cfilter%20id%3D%22luminosity-invert%22%20x%3D%2224.98%22%20y%3D%22.57%22%20width%3D%22949.83%22%20height%3D%22999.18%22%20color-interpolation-filters%3D%22sRGB%22%20filterUnits%3D%22userSpaceOnUse%22%3E%3CfeColorMatrix%20result%3D%22cm%22%20values%3D%22-1%200%200%200%201%200%20-1%200%200%201%200%200%20-1%200%201%200%200%200%201%200%22%2F%3E%3C%2Ffilter%3E%3Cmask%20id%3D%22mask%22%20x%3D%2224.98%22%20y%3D%22.57%22%20width%3D%22949.83%22%20height%3D%22999.18%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cg%20class%3D%22cls-5%22%3E%3Cg%3E%3Cg%20id%3D%22mask-2%22%20data-name%3D%22mask%22%3E%3Cpath%20id%3D%22shape%22%20d%3D%22M817.1%2C134.91l-159.48-92.08c-97.6-56.35-217.84-56.35-315.44%2C0l-159.48%2C92.08C85.11%2C191.26%2C24.98%2C295.39%2C24.98%2C408.08v184.15c0%2C112.7%2C60.12%2C216.83%2C157.72%2C273.18l159.48%2C92.08c97.6%2C56.35%2C217.84%2C56.35%2C315.44%2C0l159.48-92.08c97.6-56.35%2C157.72-160.48%2C157.72-273.18v-184.15c0-112.69-60.12-216.83-157.72-273.18Z%22%2F%3E%3C%2Fg%3E%3Cg%20class%3D%22rotate-full%22%3E%3Cg%20id%3D%22L-0%22%20class%3D%22rotate%22%3E%3Cpath%20class%3D%22cls-2%22%20d%3D%22M755.5%2C609.75c59.81%2C139.26-6.49%2C205.56-145.75%2C145.75-141.11-60.61-304.65-224.14-365.26-365.26-59.81-139.26%2C6.49-205.56%2C145.75-145.75%2C141.11%2C60.61%2C304.65%2C224.14%2C365.26%2C365.26Z%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22R-1%22%20class%3D%22rotate%20rotate-2%22%3E%3Ccircle%20id%3D%22center%22%20class%3D%22cls-1%22%20cx%3D%22500%22%20cy%3D%22500%22%20r%3D%22365.24%22%2F%3E%3Cpath%20class%3D%22cls-3%22%20d%3D%22M609.75%2C244.49c139.26-59.81%2C205.56%2C6.49%2C145.75%2C145.75-60.61%2C141.11-224.14%2C304.65-365.26%2C365.26-139.26%2C59.81-205.56-6.49-145.75-145.75%2C60.61-141.11%2C224.14-304.65%2C365.26-365.26Z%22%2F%3E%3Cpath%20class%3D%22cls-2%22%20d%3D%22M609.75%2C244.49c139.26-59.81%2C205.56%2C6.49%2C145.75%2C145.75-60.61%2C141.11-224.14%2C304.65-365.26%2C365.26-139.26%2C59.81-205.56-6.49-145.75-145.75%2C60.61-141.11%2C224.14-304.65%2C365.26-365.26Z%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22L-1%22%20class%3D%22rotate%22%3E%3Cg%20id%3D%22L-3%22%3E%3Ccircle%20id%3D%22center-2%22%20data-name%3D%22center%22%20class%3D%22cls-1%22%20cx%3D%22500%22%20cy%3D%22500%22%20r%3D%22365.24%22%2F%3E%3Cpath%20class%3D%22cls-3%22%20d%3D%22M398.57%2C604.69c-66.81-66.47-123.52-143.31-154.07-214.44-60.61-141.11%2C4.65-206.37%2C145.75-145.75%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22L-2%22%3E%3Cpath%20class%3D%22cls-2%22%20d%3D%22M441.45%2C644.7c-84.95-74.26-160.04-168.52-196.96-254.46-59.81-139.26%2C6.49-205.56%2C145.75-145.75%2C5.54%2C2.38%2C11.12%2C4.92%2C16.72%2C7.61%22%2F%3E%3Ccircle%20id%3D%22center-3%22%20data-name%3D%22center%22%20class%3D%22cls-1%22%20cx%3D%22500%22%20cy%3D%22500%22%20r%3D%22365.24%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22L-1-2%22%20data-name%3D%22L-1%22%3E%3Cpath%20class%3D%22cls-3%22%20d%3D%22M558.54%2C355.29c84.95%2C74.26%2C160.04%2C168.52%2C196.96%2C254.46%2C59.81%2C139.26-6.49%2C205.56-145.75%2C145.75-5.56-2.39-11.16-4.94-16.79-7.64%22%2F%3E%3Ccircle%20id%3D%22center-4%22%20data-name%3D%22center%22%20class%3D%22cls-1%22%20cx%3D%22500%22%20cy%3D%22500%22%20r%3D%22365.24%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22L-0-2%22%20data-name%3D%22L-0%22%3E%3Cpath%20class%3D%22cls-2%22%20d%3D%22M558.54%2C355.29c84.95%2C74.26%2C160.04%2C168.52%2C196.96%2C254.46%2C59.81%2C139.26-6.49%2C205.56-145.75%2C145.75-5.56-2.39-11.16-4.94-16.79-7.64%22%2F%3E%3Ccircle%20id%3D%22center-5%22%20data-name%3D%22center%22%20class%3D%22cls-1%22%20cx%3D%22500%22%20cy%3D%22500%22%20r%3D%22365.24%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Ccircle%20class%3D%22cls-2%22%20cx%3D%22500%22%20cy%3D%22500%22%20r%3D%22365.24%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fmask%3E%3C%2Fdefs%3E%3Cg%20class%3D%22cls-4%20rotate-invert%22%3E%3Cpath%20id%3D%22shape-2%22%20data-name%3D%22shape%22%20d%3D%22M817.1%2C134.91l-159.48-92.08c-97.6-56.35-217.84-56.35-315.44%2C0l-159.48%2C92.08C85.11%2C191.26%2C24.98%2C295.39%2C24.98%2C408.08v184.15c0%2C112.7%2C60.12%2C216.83%2C157.72%2C273.18l159.48%2C92.08c97.6%2C56.35%2C217.84%2C56.35%2C315.44%2C0l159.48-92.08c97.6-56.35%2C157.72-160.48%2C157.72-273.18v-184.15c0-112.69-60.12-216.83-157.72-273.18Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
.loader-static {
|
|
50
50
|
@apply block relative mx-auto mask bg-current;
|
|
51
51
|
mask-mode: alpha;
|
|
52
|
-
mask-image: url(
|
|
52
|
+
mask-image: url('data:image/svg+xml,%3Csvg%20width%3D%22353%22%20height%3D%22371%22%20viewBox%3D%220%200%20353%20371%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M293.868%2049.8799L234.702%2015.6917C198.494%20-5.23057%20153.885%20-5.23057%20117.678%2015.6917L58.5123%2049.8799C22.3047%2070.8017%200%20109.467%200%20151.312V219.688C0%20261.533%2022.3047%20300.198%2058.5123%20321.12L117.678%20355.308C153.885%20376.231%20198.494%20376.231%20234.702%20355.308L293.868%20321.12C330.075%20300.198%20352.38%20261.533%20352.38%20219.688V151.312C352.38%20109.467%20330.075%2070.8017%20293.868%2049.8799ZM279.073%20288.47C251.588%20315.978%20215.053%20331.125%20176.193%20331.125C137.324%20331.125%20100.788%20315.978%2073.3029%20288.47C45.8181%20260.967%2030.6844%20224.395%2030.6844%20185.497C30.6844%20146.6%2045.8181%20110.033%2073.3029%2082.53C100.788%2055.0219%20137.324%2039.8754%20176.193%2039.8754C215.053%2039.8754%20251.588%2055.0219%20279.073%2082.53C306.558%20110.033%20321.692%20146.6%20321.692%20185.497C321.692%20224.395%20306.558%20260.967%20279.073%20288.47ZM266.895%20173.946C272.181%20165.475%20276.633%20156.949%20280.176%20148.674C283.621%20140.646%20285.893%20133.513%20287.338%20127.112C296.699%20144.907%20301.696%20164.812%20301.696%20185.497C301.696%20206.175%20296.704%20226.071%20287.353%20243.861C285.893%20237.47%20283.594%20230.337%20280.176%20222.323C265.741%20188.576%20235.953%20151.504%20202.321%20122.622C201.442%20122.558%20200.82%20122.512%20199.939%20122.448C195.427%20125.319%20190.915%20128.449%20186.403%20131.838C186.373%20133.126%20186.36%20133.683%20186.33%20134.971C193.552%20141.017%20200.597%20147.48%20207.391%20154.278C230.987%20177.895%20250.983%20205.11%20261.782%20230.229C270.518%20250.564%20271.785%20266.703%20265.299%20273.915C265.17%20274.044%20265.062%20274.188%20264.933%20274.317C264.806%20274.444%20264.667%20274.55%20264.54%20274.674C257.334%20281.167%20241.212%20279.9%20220.889%20271.154C215.176%20268.717%20209.378%20265.754%20203.49%20262.348C202.661%20262.414%20202.05%20262.463%20201.22%20262.529C196.692%20266.236%20192.163%20269.749%20187.634%20273.02C187.678%20274.447%20187.693%20274.92%20187.737%20276.346C196.203%20281.561%20204.721%20286.018%20212.99%20289.567C220.999%20292.987%20228.126%20295.291%20234.512%20296.747C216.732%20306.111%20196.853%20311.112%20176.193%20311.112C155.533%20311.112%20135.649%20306.113%20117.872%20296.752C124.26%20295.291%20131.39%20292.989%20139.404%20289.567C173.122%20275.117%20210.164%20245.305%20239.118%20211.738C239.185%20210.86%20239.231%20210.241%20239.297%20209.362C236.43%20204.837%20233.303%20200.25%20229.916%20195.655C228.616%20195.62%20228.059%20195.604%20226.759%20195.568C199.648%20228.009%20163.849%20257.226%20131.507%20271.154C111.115%20279.929%2094.8465%20281.185%2087.7702%20274.618C87.6653%20274.511%2087.5456%20274.423%2087.4407%20274.317C87.3455%20274.222%2087.2649%20274.115%2087.1697%20274.019C80.5866%20266.854%2081.8363%20250.654%2090.6139%20230.229C93.0475%20224.513%2096.0074%20218.623%2099.4095%20212.723C99.3392%20211.888%2099.2884%20211.279%2099.2186%20210.445C95.5206%20205.988%2092.0203%20201.474%2088.8154%20196.949C87.4002%20196.992%2086.9159%20197.006%2085.5011%20197.048C80.2156%20205.52%2075.7623%20214.045%2072.2167%20222.323C68.7676%20230.363%2066.4927%20237.504%2065.0477%20243.912C55.6794%20226.11%2050.6804%20206.194%2050.6804%20185.497C50.6804%20164.803%2055.6794%20144.89%2065.0501%20127.088C66.4927%20133.493%2068.7676%20140.634%2072.2167%20148.674C73.7178%20152.077%2075.3166%20155.478%2077.018%20158.981C80.0154%20164.786%2083.4156%20170.688%2087.1136%20176.593C89.6131%20180.494%2092.2127%20184.298%2094.8123%20188.199C96.3134%20190.203%2097.8122%20192.203%2099.3133%20194.304C102.211%20198.206%20105.311%20202.11%20108.411%20205.911C115.609%20214.618%20123.408%20223.222%20131.607%20231.328C137.551%20237.277%20143.765%20242.96%20149.991%20248.377C150.864%20248.448%20151.48%20248.499%20152.354%20248.571C156.879%20245.756%20161.467%20242.566%20166.062%20239.156C166.094%20237.86%20166.107%20237.31%20166.139%20236.014C159.113%20230.169%20152.19%20223.912%20145.603%20217.32C142.403%20214.117%20139.306%20210.914%20136.306%20207.714C134.306%20205.51%20132.205%20203.209%20130.206%20200.908C128.106%20198.606%20126.107%20196.205%20124.308%20193.904C124.108%20193.803%20124.008%20193.603%20124.008%20193.503C121.308%20190.403%20118.809%20187.2%20116.61%20184.097C114.11%20180.895%20111.708%20177.694%20109.609%20174.492C105.01%20167.888%20100.912%20161.282%2097.4119%20154.779C96.0132%20152.177%2094.6121%20149.576%2093.4136%20146.974C92.4128%20144.87%2091.5146%20142.769%2090.6139%20140.769C81.8461%20120.362%2080.5915%20104.177%2087.1527%2097.0023C87.2552%2096.8997%2087.3406%2096.7849%2087.4431%2096.6823C87.5871%2096.5382%2087.7458%2096.4185%2087.8898%2096.2768C89.3202%2094.9844%2091.0288%2093.973%2093.1134%2093.3378C101.613%2090.6359%20115.309%2092.8395%20131.507%2099.8411C137.223%20102.283%20143.029%20105.247%20148.921%20108.578C149.736%20108.512%20150.343%20108.463%20151.159%20108.398C155.689%20104.76%20160.219%20101.254%20164.748%2097.9849C164.701%2096.5548%20164.686%2096.0838%20164.639%2094.6536C156.113%2089.4379%20147.676%2084.9799%20139.404%2081.4307C131.377%2077.9812%20124.247%2075.7068%20117.85%2074.2605C135.632%2064.8916%20155.523%2059.8884%20176.193%2059.8884C196.86%2059.8884%20216.749%2064.8916%20234.534%2074.263C228.138%2075.7092%20221.011%2077.9836%20212.99%2081.4307C200.993%2086.5341%20188.495%2093.6383%20176.198%20102.245C170.498%20106.146%20164.799%20110.351%20159.302%20114.851C144.403%20126.76%20130.106%20140.268%20117.308%20154.779C115.96%20156.287%20114.675%20157.796%20113.352%20159.255C113.268%20160.158%20113.21%20160.778%20113.127%20161.681C115.994%20166.19%20119.124%20170.706%20122.572%20175.279C123.864%20175.304%20124.424%20175.314%20125.715%20175.339C127.811%20172.821%20129.958%20170.354%20132.105%20167.888C136.306%20163.283%20140.604%20158.681%20145.003%20154.278C154.9%20144.372%20165.499%20135.064%20176.198%20126.861C181.797%20122.556%20187.495%20118.554%20193.094%20114.851C202.392%20108.848%20211.792%20103.745%20220.889%2099.8411C232.586%2094.7401%20242.984%2092.2385%20251.083%2092.2385C256.89%2092.2385%20261.472%2093.6408%20264.489%2096.2768C264.633%2096.4209%20264.794%2096.5382%20264.935%2096.6823C265.062%2096.8118%20265.172%2096.9535%20265.299%2097.083C271.785%20104.292%20270.518%20120.431%20261.782%20140.769C259.347%20146.48%20256.392%20152.365%20252.991%20158.262C253.066%20159.104%20253.12%20159.715%20253.195%20160.556C256.949%20165.007%20260.394%20169.519%20263.578%20174.039C264.995%20174%20265.477%20173.986%20266.895%20173.946Z%22%20fill%3D%22%23FDFCF5%22%2F%3E%3C%2Fsvg%3E');
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
[data-loader] {
|
|
@@ -64,10 +64,10 @@
|
|
|
64
64
|
@apply animate-loading-text-gradient;
|
|
65
65
|
|
|
66
66
|
&:not([class*='from-']) {
|
|
67
|
-
@apply from-text-default
|
|
67
|
+
@apply from-text-default;
|
|
68
68
|
}
|
|
69
69
|
&:not([class*='to-']) {
|
|
70
|
-
@apply to-text-default;
|
|
70
|
+
@apply to-text-default/10;
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
|
|
@@ -75,26 +75,26 @@
|
|
|
75
75
|
|
|
76
76
|
.loader,
|
|
77
77
|
.loader-wheel,
|
|
78
|
-
.loader-cube
|
|
79
|
-
|
|
78
|
+
.loader-cube,
|
|
79
|
+
.loader-static {
|
|
80
80
|
&:not([class*='size-']) {
|
|
81
81
|
@apply size-16;
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
82
|
+
|
|
83
|
+
&.loader-xl {
|
|
84
|
+
@apply size-32;
|
|
85
|
+
}
|
|
86
|
+
&.loader-lg {
|
|
87
|
+
@apply size-24;
|
|
88
|
+
}
|
|
89
|
+
&.loader-md {
|
|
90
|
+
@apply size-16;
|
|
91
|
+
}
|
|
92
|
+
&.loader-sm {
|
|
93
|
+
@apply size-10;
|
|
94
|
+
}
|
|
95
|
+
&.loader-xs {
|
|
96
|
+
@apply size-6;
|
|
97
|
+
}
|
|
98
98
|
}
|
|
99
99
|
}
|
|
100
100
|
|
|
@@ -183,9 +183,3 @@
|
|
|
183
183
|
box-shadow: 0 2.25em 0 0;
|
|
184
184
|
}
|
|
185
185
|
}
|
|
186
|
-
|
|
187
|
-
/* Text Gradient */
|
|
188
|
-
|
|
189
|
-
.animate-loading-text-gradient {
|
|
190
|
-
@apply from-core-ui-700 to-core-black/10 dark:from-core-ui-200 dark:to-core-white/10;
|
|
191
|
-
}
|
package/styles/logotype.css
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
/* LOGOTYPE */
|
|
3
3
|
/*----------------------------*/
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
@utility logotype {
|
|
6
6
|
@apply block relative aspect-1229/371 w-auto min-h-8 mask bg-current;
|
|
7
|
-
mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%221229%22%20height%3D%22371%22%20viewBox%3D%220%200%201229%20371%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1216.03%20130.76C1214.25%20130.76%201212.57%20130.425%201211.01%20129.753C1209.44%20129.081%201208.06%20128.149%201206.87%20126.957C1205.68%20125.765%201204.74%20124.387%201204.07%20122.822C1203.39%20121.257%201203.06%20119.578%201203.07%20117.784C1203.08%20115.99%201203.42%20114.31%201204.09%20112.745C1204.77%20111.181%201205.7%20109.802%201206.89%20108.61C1208.07%20107.418%201209.45%20106.486%201211.01%20105.814C1212.58%20105.143%201214.25%20104.807%201216.03%20104.807C1217.83%20104.807%201219.51%20105.143%201221.07%20105.814C1222.64%20106.486%201224.02%20107.418%201225.2%20108.61C1226.38%20109.802%201227.31%20111.181%201227.98%20112.745C1228.65%20114.31%201228.99%20115.99%201229%20117.784C1229.01%20119.578%201228.68%20121.257%201228%20122.822C1227.33%20124.387%201226.4%20125.765%201225.22%20126.957C1224.03%20128.149%201222.65%20129.081%201221.08%20129.753C1219.51%20130.425%201217.83%20130.76%201216.03%20130.76ZM1216.03%20127.91C1217.43%20127.91%201218.75%20127.648%201219.98%20127.123C1221.2%20126.599%201222.28%20125.874%201223.2%20124.948C1224.13%20124.022%201224.85%20122.947%201225.38%20121.722C1225.9%20120.497%201226.16%20119.189%201226.15%20117.796C1226.14%20116.395%201225.88%20115.08%201225.35%20113.852C1224.83%20112.622%201224.1%20111.545%201223.18%20110.619C1222.26%20109.694%201221.18%20108.969%201219.96%20108.444C1218.74%20107.92%201217.43%20107.658%201216.03%20107.658C1214.64%20107.658%201213.34%20107.92%201212.12%20108.444C1210.9%20108.969%201209.82%20109.696%201208.9%20110.625C1207.97%20111.555%201207.25%20112.633%201206.72%20113.857C1206.19%20115.082%201205.92%20116.395%201205.92%20117.796C1205.91%20119.18%201206.17%20120.485%201206.69%20121.71C1207.21%20122.935%201207.94%20124.01%201208.87%20124.936C1209.8%20125.861%201210.87%20126.588%201212.1%20127.117C1213.32%20127.646%201214.63%20127.91%201216.03%20127.91ZM1208.86%20117.784C1208.86%20116.44%201209.19%20115.215%201209.85%20114.11C1210.5%20113.003%201211.38%20112.123%201212.49%20111.467C1213.59%20110.812%201214.81%20110.484%201216.16%20110.484C1217.32%20110.484%201218.39%20110.734%201219.38%20111.234C1220.37%20111.733%201221.18%20112.415%201221.83%20113.28C1222.48%20114.144%201222.88%20115.121%201223.03%20116.211H1220.06C1219.9%20115.367%201219.44%20114.676%201218.7%20114.14C1217.95%20113.603%201217.11%20113.335%201216.16%20113.335C1215.34%20113.335%201214.59%20113.536%201213.92%20113.938C1213.25%20114.338%201212.71%20114.876%201212.31%20115.547C1211.91%20116.218%201211.71%20116.964%201211.71%20117.784C1211.71%20118.603%201211.91%20119.348%201212.31%20120.02C1212.71%20120.692%201213.25%20121.228%201213.92%20121.63C1214.59%20122.032%201215.34%20122.232%201216.16%20122.232C1217.11%20122.232%201217.91%20121.964%201218.57%20121.427C1219.23%20120.89%201219.64%20120.2%201219.81%20119.356H1222.79C1222.63%20120.446%201222.25%20121.423%201221.64%20122.288C1221.04%20123.152%201220.26%20123.834%201219.32%20124.333C1218.37%20124.833%201217.32%20125.083%201216.16%20125.083C1214.81%20125.083%201213.59%20124.755%201212.49%20124.1C1211.38%20123.445%201210.5%20122.564%201209.85%20121.458C1209.19%20120.352%201208.86%20119.127%201208.86%20117.784Z%22%20fill%3D%22%23FDFCF5%22%2F%3E%3Cpath%20d%3D%22M293.868%2049.8799L234.702%2015.6917C198.494%20-5.23057%20153.885%20-5.23057%20117.678%2015.6917L58.5123%2049.8799C22.3047%2070.8017%200%20109.467%200%20151.312V219.688C0%20261.533%2022.3047%20300.198%2058.5123%20321.12L117.678%20355.308C153.885%20376.231%20198.494%20376.231%20234.702%20355.308L293.868%20321.12C330.075%20300.198%20352.38%20261.533%20352.38%20219.688V151.312C352.38%20109.467%20330.075%2070.8017%20293.868%2049.8799ZM279.073%20288.47C251.588%20315.978%20215.053%20331.125%20176.193%20331.125C137.324%20331.125%20100.788%20315.978%2073.3029%20288.47C45.8181%20260.967%2030.6844%20224.395%2030.6844%20185.497C30.6844%20146.6%2045.8181%20110.033%2073.3029%2082.53C100.788%2055.0219%20137.324%2039.8754%20176.193%2039.8754C215.053%2039.8754%20251.588%2055.0219%20279.073%2082.53C306.558%20110.033%20321.692%20146.6%20321.692%20185.497C321.692%20224.395%20306.558%20260.967%20279.073%20288.47ZM266.895%20173.946C272.181%20165.475%20276.633%20156.949%20280.176%20148.674C283.621%20140.646%20285.893%20133.513%20287.338%20127.112C296.699%20144.907%20301.696%20164.812%20301.696%20185.497C301.696%20206.175%20296.704%20226.071%20287.353%20243.861C285.893%20237.47%20283.594%20230.337%20280.176%20222.323C265.741%20188.576%20235.953%20151.504%20202.321%20122.622C201.442%20122.558%20200.82%20122.512%20199.939%20122.448C195.427%20125.319%20190.915%20128.449%20186.403%20131.838C186.373%20133.126%20186.36%20133.683%20186.33%20134.971C193.552%20141.017%20200.597%20147.48%20207.391%20154.278C230.987%20177.895%20250.983%20205.11%20261.782%20230.229C270.518%20250.564%20271.785%20266.703%20265.299%20273.915C265.17%20274.044%20265.062%20274.188%20264.933%20274.317C264.806%20274.444%20264.667%20274.55%20264.54%20274.674C257.334%20281.167%20241.212%20279.9%20220.889%20271.154C215.176%20268.717%20209.378%20265.754%20203.49%20262.348C202.661%20262.414%20202.05%20262.463%20201.22%20262.529C196.692%20266.236%20192.163%20269.749%20187.634%20273.02C187.678%20274.447%20187.693%20274.92%20187.737%20276.346C196.203%20281.561%20204.721%20286.018%20212.99%20289.567C220.999%20292.987%20228.126%20295.291%20234.512%20296.747C216.732%20306.111%20196.853%20311.112%20176.193%20311.112C155.533%20311.112%20135.649%20306.113%20117.872%20296.752C124.26%20295.291%20131.39%20292.989%20139.404%20289.567C173.122%20275.117%20210.164%20245.305%20239.118%20211.738C239.185%20210.86%20239.231%20210.241%20239.297%20209.362C236.43%20204.837%20233.303%20200.25%20229.916%20195.655C228.616%20195.62%20228.059%20195.604%20226.759%20195.568C199.648%20228.009%20163.849%20257.226%20131.507%20271.154C111.115%20279.929%2094.8465%20281.185%2087.7702%20274.618C87.6653%20274.511%2087.5456%20274.423%2087.4407%20274.317C87.3455%20274.222%2087.2649%20274.115%2087.1697%20274.019C80.5866%20266.854%2081.8363%20250.654%2090.6139%20230.229C93.0475%20224.513%2096.0074%20218.623%2099.4095%20212.723C99.3392%20211.888%2099.2884%20211.279%2099.2186%20210.445C95.5206%20205.988%2092.0203%20201.474%2088.8154%20196.949C87.4002%20196.992%2086.9159%20197.006%2085.5011%20197.048C80.2156%20205.52%2075.7623%20214.045%2072.2167%20222.323C68.7676%20230.363%2066.4927%20237.504%2065.0477%20243.912C55.6794%20226.11%2050.6804%20206.194%2050.6804%20185.497C50.6804%20164.803%2055.6794%20144.89%2065.0501%20127.088C66.4927%20133.493%2068.7676%20140.634%2072.2167%20148.674C73.7178%20152.077%2075.3166%20155.478%2077.018%20158.981C80.0154%20164.786%2083.4156%20170.688%2087.1136%20176.593C89.6131%20180.494%2092.2127%20184.298%2094.8123%20188.199C96.3134%20190.203%2097.8122%20192.203%2099.3133%20194.304C102.211%20198.206%20105.311%20202.11%20108.411%20205.911C115.609%20214.618%20123.408%20223.222%20131.607%20231.328C137.551%20237.277%20143.765%20242.96%20149.991%20248.377C150.864%20248.448%20151.48%20248.499%20152.354%20248.571C156.879%20245.756%20161.467%20242.566%20166.062%20239.156C166.094%20237.86%20166.107%20237.31%20166.139%20236.014C159.113%20230.169%20152.19%20223.912%20145.603%20217.32C142.403%20214.117%20139.306%20210.914%20136.306%20207.714C134.306%20205.51%20132.205%20203.209%20130.206%20200.908C128.106%20198.606%20126.107%20196.205%20124.308%20193.904C124.108%20193.803%20124.008%20193.603%20124.008%20193.503C121.308%20190.403%20118.809%20187.2%20116.61%20184.097C114.11%20180.895%20111.708%20177.694%20109.609%20174.492C105.01%20167.888%20100.912%20161.282%2097.4119%20154.779C96.0132%20152.177%2094.6121%20149.576%2093.4136%20146.974C92.4128%20144.87%2091.5146%20142.769%2090.6139%20140.769C81.8461%20120.362%2080.5915%20104.177%2087.1527%2097.0023C87.2552%2096.8997%2087.3406%2096.7849%2087.4431%2096.6823C87.5871%2096.5382%2087.7458%2096.4185%2087.8898%2096.2768C89.3202%2094.9844%2091.0288%2093.973%2093.1134%2093.3378C101.613%2090.6359%20115.309%2092.8395%20131.507%2099.8411C137.223%20102.283%20143.029%20105.247%20148.921%20108.578C149.736%20108.512%20150.343%20108.463%20151.159%20108.398C155.689%20104.76%20160.219%20101.254%20164.748%2097.9849C164.701%2096.5548%20164.686%2096.0838%20164.639%2094.6536C156.113%2089.4379%20147.676%2084.9799%20139.404%2081.4307C131.377%2077.9812%20124.247%2075.7068%20117.85%2074.2605C135.632%2064.8916%20155.523%2059.8884%20176.193%2059.8884C196.86%2059.8884%20216.749%2064.8916%20234.534%2074.263C228.138%2075.7092%20221.011%2077.9836%20212.99%2081.4307C200.993%2086.5341%20188.495%2093.6383%20176.198%20102.245C170.498%20106.146%20164.799%20110.351%20159.302%20114.851C144.403%20126.76%20130.106%20140.268%20117.308%20154.779C115.96%20156.287%20114.675%20157.796%20113.352%20159.255C113.268%20160.158%20113.21%20160.778%20113.127%20161.681C115.994%20166.19%20119.124%20170.706%20122.572%20175.279C123.864%20175.304%20124.424%20175.314%20125.715%20175.339C127.811%20172.821%20129.958%20170.354%20132.105%20167.888C136.306%20163.283%20140.604%20158.681%20145.003%20154.278C154.9%20144.372%20165.499%20135.064%20176.198%20126.861C181.797%20122.556%20187.495%20118.554%20193.094%20114.851C202.392%20108.848%20211.792%20103.745%20220.889%2099.8411C232.586%2094.7401%20242.984%2092.2385%20251.083%2092.2385C256.89%2092.2385%20261.472%2093.6408%20264.489%2096.2768C264.633%2096.4209%20264.794%2096.5382%20264.935%2096.6823C265.062%2096.8118%20265.172%2096.9535%20265.299%2097.083C271.785%20104.292%20270.518%20120.431%20261.782%20140.769C259.347%20146.48%20256.392%20152.365%20252.991%20158.262C253.066%20159.104%20253.12%20159.715%20253.195%20160.556C256.949%20165.007%20260.394%20169.519%20263.578%20174.039C264.995%20174%20265.477%20173.986%20266.895%20173.946Z%22%20fill%3D%22%23FDFCF5%22%2F%3E%3Cpath%20d%3D%22M498.545%20235.889C493.925%20242.714%20487.327%20246.016%20478.309%20246.016C461.592%20246.016%20455.212%20237.43%20455.212%20220.039V125.377H442.675C441.135%20125.377%20440.475%20124.277%20440.475%20122.075C440.475%20119.873%20441.135%20118.773%20442.675%20118.773H448.174C458.512%20118.773%20466.651%20108.646%20468.629%2095.2178C469.071%2093.6768%20469.949%2093.0162%20471.49%2093.0162C473.029%2093.0162%20473.909%2093.8966%20473.909%2095.6575V118.773H498.104C499.424%20118.773%20500.084%20119.873%20500.084%20122.075C500.084%20124.277%20499.424%20125.377%20498.104%20125.377H473.909V220.92C473.909%20232.148%20476.549%20237.651%20483.808%20237.871C488.865%20238.311%20493.925%20233.688%20494.585%20233.688C496.565%20231.707%20498.104%20231.046%20498.764%20231.487C499.863%20232.148%20499.644%20233.688%20498.545%20235.889ZM698.045%20145.63L659.773%20243.594C659.332%20244.916%20658.674%20245.576%20657.572%20245.576L655.153%20245.355L654.934%20245.576H646.135C645.036%20245.576%20644.155%20244.916%20643.716%20243.594L612.042%20160.38L579.267%20244.696C578.607%20246.016%20577.947%20246.677%20577.069%20246.677L574.649%20246.457L574.429%20246.677H565.411C564.311%20246.677%20563.651%20246.016%20563.21%20244.696L522.74%20137.925C519.219%20128.9%20517.68%20126.698%20514.161%20124.716C511.96%20123.396%20510.64%20122.515%20510.64%20121.415C510.64%20120.314%20511.742%20119.654%20514.161%20119.873C515.921%20119.873%20523.4%20120.093%20528.457%20120.093C532.857%20120.093%20540.115%20119.873%20541.214%20119.873C543.634%20119.654%20544.954%20120.314%20544.954%20121.415C544.954%20122.736%20543.415%20123.396%20541.656%20124.716C539.896%20126.038%20539.676%20128.679%20540.996%20132.422L542.755%20137.045C542.976%20137.485%20542.976%20137.705%20542.976%20137.925L576.848%20233.468L607.863%20149.373L603.243%20137.045C600.824%20130.22%20597.965%20125.597%20594.665%20123.616C592.245%20122.075%20591.146%20121.195%20591.146%20120.534C591.146%20119.434%20592.245%20118.773%20594.665%20118.773C596.205%20118.773%20603.903%20118.993%20608.963%20118.993C615.782%20118.993%20619.961%20118.993%20621.72%20118.773C624.139%20118.773%20625.459%20119.434%20625.459%20120.534C625.459%20121.855%20623.919%20122.515%20622.159%20123.836C620.4%20125.157%20620.179%20127.799%20621.499%20131.541L623.479%20137.045L657.133%20232.367L686.168%20154.216C689.906%20143.87%20690.126%20139.027%20687.486%20133.082C686.387%20130.22%20685.508%20128.019%20685.287%20126.698C683.749%20118.993%20687.486%20112.609%20694.305%20113.489C706.844%20115.47%20703.325%20132.202%20698.045%20145.63ZM847.615%20242.494C847.615%20243.594%20846.295%20244.255%20843.875%20244.255C842.336%20244.035%20837.937%20244.035%20831.118%20244.035C824.08%20244.035%20819.681%20244.035%20818.14%20244.255C815.721%20244.255%20814.401%20243.594%20814.401%20242.494C814.401%20240.733%20816.162%20241.173%20817.921%20239.412C820.341%20237.871%20821.44%20233.248%20821.44%20225.983V168.966C821.44%20139.907%20810.442%20125.377%20788.226%20125.377C776.129%20125.377%20767.111%20129.78%20760.731%20138.366C754.354%20146.952%20751.274%20156.857%20751.274%20167.645V225.983C751.274%20233.248%20752.592%20237.871%20755.012%20239.412C757.433%20240.953%20758.533%20242.053%20758.533%20242.494C758.533%20243.594%20757.213%20244.255%20754.793%20244.255C753.253%20244.035%20748.855%20244.035%20742.036%20244.035C734.996%20244.035%20730.597%20244.035%20729.058%20244.255C726.639%20244.255%20725.319%20243.594%20725.319%20242.494C725.319%20240.733%20727.078%20241.173%20728.837%20239.412C731.257%20237.871%20732.577%20233.248%20732.577%20225.983V146.291C732.577%20139.027%20731.257%20134.403%20728.837%20132.862C726.418%20131.321%20725.319%20130.22%20725.319%20129.34C725.319%20128.239%20725.979%20127.579%20727.299%20127.138C734.336%20125.157%20741.155%20122.515%20747.535%20118.773C749.074%20117.672%20750.173%20118.113%20750.394%20120.093L751.054%20138.366L751.274%20142.109V145.63C757.433%20129.559%20770.63%20115.911%20794.385%20115.911C826.279%20115.911%20840.356%20132.202%20840.356%20168.966V225.983C840.356%20233.248%20841.676%20237.871%20844.096%20239.412C846.515%20240.953%20847.615%20242.053%20847.615%20242.494ZM923.277%20235.889C918.657%20242.714%20912.059%20246.016%20903.041%20246.016C886.324%20246.016%20879.944%20237.43%20879.944%20220.039V125.377H867.408C865.867%20125.377%20865.207%20124.277%20865.207%20122.075C865.207%20119.873%20865.867%20118.773%20867.408%20118.773H872.907C883.244%20118.773%20891.383%20108.646%20893.361%2095.2178C893.803%2093.6768%20894.682%2093.0162%20896.222%2093.0162C897.761%2093.0162%20898.642%2093.8966%20898.642%2095.6575V118.773H922.836C924.156%20118.773%20924.816%20119.873%20924.816%20122.075C924.816%20124.277%20924.156%20125.377%20922.836%20125.377H898.642V220.92C898.642%20232.148%20901.282%20237.651%20908.54%20237.871C913.598%20238.311%20918.657%20233.688%20919.317%20233.688C921.297%20231.707%20922.836%20231.046%20923.496%20231.487C924.596%20232.148%20924.377%20233.688%20923.277%20235.889ZM1058.55%20120.534C1058.55%20121.195%201057.45%20122.075%201055.25%20123.616C1051.51%20125.157%201047.99%20130.22%201044.69%20138.806L1004%20240.073C991.684%20270.673%20980.904%20285.642%20961.328%20286.303C946.812%20287.183%20942.193%20275.955%20948.352%20271.773C953.631%20267.59%20957.809%20270.892%20964.628%20271.553C977.827%20272.653%20985.964%20262.967%20993.664%20245.355L947.692%20137.045C943.513%20127.359%20942.633%20125.597%20939.333%20123.616C936.913%20122.075%20935.814%20121.195%20935.814%20120.534C935.814%20119.434%20936.913%20118.773%20939.333%20118.773C941.313%20118.993%20946.152%20118.993%20953.41%20118.993C960.45%20118.993%20964.849%20118.993%20966.827%20118.773C969.249%20118.773%20970.567%20119.434%20970.567%20120.534C970.567%20122.295%20968.807%20121.855%20967.048%20123.616C963.75%20126.257%20964.189%20127.579%20967.928%20137.045L1002.24%20224.222L1036.33%20138.806C1039.85%20130.22%201040.95%20125.377%201036.11%20123.616C1033.69%20122.295%201032.6%20121.195%201032.6%20120.534C1032.6%20119.434%201033.92%20118.773%201036.33%20118.773C1038.09%20118.993%201041.39%20118.993%201046.01%20118.993C1048.43%20118.993%201053.27%20118.773%201055.03%20118.773C1057.45%20118.773%201058.55%20119.434%201058.55%20120.534ZM1210.76%20244.255C1209%20244.035%201202.4%20244.035%201190.74%20244.035C1182.38%20244.035%201177.32%20244.035%201175.78%20244.255C1173.36%20244.255%201172.27%20243.594%201172.27%20242.494C1172.27%20241.393%201173.36%20240.512%201175.78%20239.412C1179.08%20237.651%201178.42%20233.248%201173.81%20225.983L1133.99%20171.168L1100.78%20218.278C1094.4%20227.304%201091.98%20235.669%201095.28%20238.532C1096.6%20240.512%201099.24%20240.953%201099.24%20242.494C1099.24%20243.594%201098.14%20244.255%201095.72%20244.255H1089.34C1086.04%20244.035%201083.62%20244.035%201082.08%20244.035L1070.87%20244.255C1064.71%20244.255%201065.15%20241.173%201069.32%20239.412C1076.36%20236.77%201081.86%20231.927%201091.54%20218.498L1130.03%20165.664L1084.5%20102.922C1079.22%2095.4377%201074.38%2091.0344%201069.77%2089.4934C1065.37%2087.7325%201065.37%2084.6504%201069.98%2084.6504C1071.74%2084.8703%201078.34%2084.8703%201090%2084.8703C1098.36%2084.8703%201103.42%2084.8703%201104.96%2084.6504C1107.38%2084.6504%201108.48%2085.311%201108.48%2086.4113C1108.48%2087.0719%201107.38%2087.9523%201104.96%2089.4934C1101.22%2091.4751%201101.88%2095.8774%201106.94%20102.922L1144.77%20155.316L1176.23%20110.627C1182.38%20101.602%201184.8%2093.236%201181.5%2090.3738C1180.84%2089.4934%201177.76%2087.5126%201177.76%2086.4113C1177.55%2085.311%201178.64%2084.6504%201181.28%2084.6504C1182.16%2084.6504%201184.14%2084.6504%201187.44%2084.8703H1194.92L1205.92%2084.6504C1209%2084.6504%201210.54%2085.311%201210.54%2086.4113C1210.76%2087.5126%201209.88%2088.6129%201207.46%2089.4934C1200.42%2091.9149%201195.14%2096.538%201185.24%20110.407L1148.95%20160.6L1196.02%20225.983C1201.52%20233.688%201206.36%20238.091%201210.76%20239.412C1215.16%20241.173%201215.16%20244.255%201210.76%20244.255Z%22%20fill%3D%22%23FDFCF5%22%2F%3E%3C%2Fsvg%3E");
|
|
7
|
+
mask-image: url('data:image/svg+xml,%3Csvg%20width%3D%221229%22%20height%3D%22371%22%20viewBox%3D%220%200%201229%20371%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1216.03%20130.76C1214.25%20130.76%201212.57%20130.425%201211.01%20129.753C1209.44%20129.081%201208.06%20128.149%201206.87%20126.957C1205.68%20125.765%201204.74%20124.387%201204.07%20122.822C1203.39%20121.257%201203.06%20119.578%201203.07%20117.784C1203.08%20115.99%201203.42%20114.31%201204.09%20112.745C1204.77%20111.181%201205.7%20109.802%201206.89%20108.61C1208.07%20107.418%201209.45%20106.486%201211.01%20105.814C1212.58%20105.143%201214.25%20104.807%201216.03%20104.807C1217.83%20104.807%201219.51%20105.143%201221.07%20105.814C1222.64%20106.486%201224.02%20107.418%201225.2%20108.61C1226.38%20109.802%201227.31%20111.181%201227.98%20112.745C1228.65%20114.31%201228.99%20115.99%201229%20117.784C1229.01%20119.578%201228.68%20121.257%201228%20122.822C1227.33%20124.387%201226.4%20125.765%201225.22%20126.957C1224.03%20128.149%201222.65%20129.081%201221.08%20129.753C1219.51%20130.425%201217.83%20130.76%201216.03%20130.76ZM1216.03%20127.91C1217.43%20127.91%201218.75%20127.648%201219.98%20127.123C1221.2%20126.599%201222.28%20125.874%201223.2%20124.948C1224.13%20124.022%201224.85%20122.947%201225.38%20121.722C1225.9%20120.497%201226.16%20119.189%201226.15%20117.796C1226.14%20116.395%201225.88%20115.08%201225.35%20113.852C1224.83%20112.622%201224.1%20111.545%201223.18%20110.619C1222.26%20109.694%201221.18%20108.969%201219.96%20108.444C1218.74%20107.92%201217.43%20107.658%201216.03%20107.658C1214.64%20107.658%201213.34%20107.92%201212.12%20108.444C1210.9%20108.969%201209.82%20109.696%201208.9%20110.625C1207.97%20111.555%201207.25%20112.633%201206.72%20113.857C1206.19%20115.082%201205.92%20116.395%201205.92%20117.796C1205.91%20119.18%201206.17%20120.485%201206.69%20121.71C1207.21%20122.935%201207.94%20124.01%201208.87%20124.936C1209.8%20125.861%201210.87%20126.588%201212.1%20127.117C1213.32%20127.646%201214.63%20127.91%201216.03%20127.91ZM1208.86%20117.784C1208.86%20116.44%201209.19%20115.215%201209.85%20114.11C1210.5%20113.003%201211.38%20112.123%201212.49%20111.467C1213.59%20110.812%201214.81%20110.484%201216.16%20110.484C1217.32%20110.484%201218.39%20110.734%201219.38%20111.234C1220.37%20111.733%201221.18%20112.415%201221.83%20113.28C1222.48%20114.144%201222.88%20115.121%201223.03%20116.211H1220.06C1219.9%20115.367%201219.44%20114.676%201218.7%20114.14C1217.95%20113.603%201217.11%20113.335%201216.16%20113.335C1215.34%20113.335%201214.59%20113.536%201213.92%20113.938C1213.25%20114.338%201212.71%20114.876%201212.31%20115.547C1211.91%20116.218%201211.71%20116.964%201211.71%20117.784C1211.71%20118.603%201211.91%20119.348%201212.31%20120.02C1212.71%20120.692%201213.25%20121.228%201213.92%20121.63C1214.59%20122.032%201215.34%20122.232%201216.16%20122.232C1217.11%20122.232%201217.91%20121.964%201218.57%20121.427C1219.23%20120.89%201219.64%20120.2%201219.81%20119.356H1222.79C1222.63%20120.446%201222.25%20121.423%201221.64%20122.288C1221.04%20123.152%201220.26%20123.834%201219.32%20124.333C1218.37%20124.833%201217.32%20125.083%201216.16%20125.083C1214.81%20125.083%201213.59%20124.755%201212.49%20124.1C1211.38%20123.445%201210.5%20122.564%201209.85%20121.458C1209.19%20120.352%201208.86%20119.127%201208.86%20117.784Z%22%20fill%3D%22%23FDFCF5%22%2F%3E%3Cpath%20d%3D%22M293.868%2049.8799L234.702%2015.6917C198.494%20-5.23057%20153.885%20-5.23057%20117.678%2015.6917L58.5123%2049.8799C22.3047%2070.8017%200%20109.467%200%20151.312V219.688C0%20261.533%2022.3047%20300.198%2058.5123%20321.12L117.678%20355.308C153.885%20376.231%20198.494%20376.231%20234.702%20355.308L293.868%20321.12C330.075%20300.198%20352.38%20261.533%20352.38%20219.688V151.312C352.38%20109.467%20330.075%2070.8017%20293.868%2049.8799ZM279.073%20288.47C251.588%20315.978%20215.053%20331.125%20176.193%20331.125C137.324%20331.125%20100.788%20315.978%2073.3029%20288.47C45.8181%20260.967%2030.6844%20224.395%2030.6844%20185.497C30.6844%20146.6%2045.8181%20110.033%2073.3029%2082.53C100.788%2055.0219%20137.324%2039.8754%20176.193%2039.8754C215.053%2039.8754%20251.588%2055.0219%20279.073%2082.53C306.558%20110.033%20321.692%20146.6%20321.692%20185.497C321.692%20224.395%20306.558%20260.967%20279.073%20288.47ZM266.895%20173.946C272.181%20165.475%20276.633%20156.949%20280.176%20148.674C283.621%20140.646%20285.893%20133.513%20287.338%20127.112C296.699%20144.907%20301.696%20164.812%20301.696%20185.497C301.696%20206.175%20296.704%20226.071%20287.353%20243.861C285.893%20237.47%20283.594%20230.337%20280.176%20222.323C265.741%20188.576%20235.953%20151.504%20202.321%20122.622C201.442%20122.558%20200.82%20122.512%20199.939%20122.448C195.427%20125.319%20190.915%20128.449%20186.403%20131.838C186.373%20133.126%20186.36%20133.683%20186.33%20134.971C193.552%20141.017%20200.597%20147.48%20207.391%20154.278C230.987%20177.895%20250.983%20205.11%20261.782%20230.229C270.518%20250.564%20271.785%20266.703%20265.299%20273.915C265.17%20274.044%20265.062%20274.188%20264.933%20274.317C264.806%20274.444%20264.667%20274.55%20264.54%20274.674C257.334%20281.167%20241.212%20279.9%20220.889%20271.154C215.176%20268.717%20209.378%20265.754%20203.49%20262.348C202.661%20262.414%20202.05%20262.463%20201.22%20262.529C196.692%20266.236%20192.163%20269.749%20187.634%20273.02C187.678%20274.447%20187.693%20274.92%20187.737%20276.346C196.203%20281.561%20204.721%20286.018%20212.99%20289.567C220.999%20292.987%20228.126%20295.291%20234.512%20296.747C216.732%20306.111%20196.853%20311.112%20176.193%20311.112C155.533%20311.112%20135.649%20306.113%20117.872%20296.752C124.26%20295.291%20131.39%20292.989%20139.404%20289.567C173.122%20275.117%20210.164%20245.305%20239.118%20211.738C239.185%20210.86%20239.231%20210.241%20239.297%20209.362C236.43%20204.837%20233.303%20200.25%20229.916%20195.655C228.616%20195.62%20228.059%20195.604%20226.759%20195.568C199.648%20228.009%20163.849%20257.226%20131.507%20271.154C111.115%20279.929%2094.8465%20281.185%2087.7702%20274.618C87.6653%20274.511%2087.5456%20274.423%2087.4407%20274.317C87.3455%20274.222%2087.2649%20274.115%2087.1697%20274.019C80.5866%20266.854%2081.8363%20250.654%2090.6139%20230.229C93.0475%20224.513%2096.0074%20218.623%2099.4095%20212.723C99.3392%20211.888%2099.2884%20211.279%2099.2186%20210.445C95.5206%20205.988%2092.0203%20201.474%2088.8154%20196.949C87.4002%20196.992%2086.9159%20197.006%2085.5011%20197.048C80.2156%20205.52%2075.7623%20214.045%2072.2167%20222.323C68.7676%20230.363%2066.4927%20237.504%2065.0477%20243.912C55.6794%20226.11%2050.6804%20206.194%2050.6804%20185.497C50.6804%20164.803%2055.6794%20144.89%2065.0501%20127.088C66.4927%20133.493%2068.7676%20140.634%2072.2167%20148.674C73.7178%20152.077%2075.3166%20155.478%2077.018%20158.981C80.0154%20164.786%2083.4156%20170.688%2087.1136%20176.593C89.6131%20180.494%2092.2127%20184.298%2094.8123%20188.199C96.3134%20190.203%2097.8122%20192.203%2099.3133%20194.304C102.211%20198.206%20105.311%20202.11%20108.411%20205.911C115.609%20214.618%20123.408%20223.222%20131.607%20231.328C137.551%20237.277%20143.765%20242.96%20149.991%20248.377C150.864%20248.448%20151.48%20248.499%20152.354%20248.571C156.879%20245.756%20161.467%20242.566%20166.062%20239.156C166.094%20237.86%20166.107%20237.31%20166.139%20236.014C159.113%20230.169%20152.19%20223.912%20145.603%20217.32C142.403%20214.117%20139.306%20210.914%20136.306%20207.714C134.306%20205.51%20132.205%20203.209%20130.206%20200.908C128.106%20198.606%20126.107%20196.205%20124.308%20193.904C124.108%20193.803%20124.008%20193.603%20124.008%20193.503C121.308%20190.403%20118.809%20187.2%20116.61%20184.097C114.11%20180.895%20111.708%20177.694%20109.609%20174.492C105.01%20167.888%20100.912%20161.282%2097.4119%20154.779C96.0132%20152.177%2094.6121%20149.576%2093.4136%20146.974C92.4128%20144.87%2091.5146%20142.769%2090.6139%20140.769C81.8461%20120.362%2080.5915%20104.177%2087.1527%2097.0023C87.2552%2096.8997%2087.3406%2096.7849%2087.4431%2096.6823C87.5871%2096.5382%2087.7458%2096.4185%2087.8898%2096.2768C89.3202%2094.9844%2091.0288%2093.973%2093.1134%2093.3378C101.613%2090.6359%20115.309%2092.8395%20131.507%2099.8411C137.223%20102.283%20143.029%20105.247%20148.921%20108.578C149.736%20108.512%20150.343%20108.463%20151.159%20108.398C155.689%20104.76%20160.219%20101.254%20164.748%2097.9849C164.701%2096.5548%20164.686%2096.0838%20164.639%2094.6536C156.113%2089.4379%20147.676%2084.9799%20139.404%2081.4307C131.377%2077.9812%20124.247%2075.7068%20117.85%2074.2605C135.632%2064.8916%20155.523%2059.8884%20176.193%2059.8884C196.86%2059.8884%20216.749%2064.8916%20234.534%2074.263C228.138%2075.7092%20221.011%2077.9836%20212.99%2081.4307C200.993%2086.5341%20188.495%2093.6383%20176.198%20102.245C170.498%20106.146%20164.799%20110.351%20159.302%20114.851C144.403%20126.76%20130.106%20140.268%20117.308%20154.779C115.96%20156.287%20114.675%20157.796%20113.352%20159.255C113.268%20160.158%20113.21%20160.778%20113.127%20161.681C115.994%20166.19%20119.124%20170.706%20122.572%20175.279C123.864%20175.304%20124.424%20175.314%20125.715%20175.339C127.811%20172.821%20129.958%20170.354%20132.105%20167.888C136.306%20163.283%20140.604%20158.681%20145.003%20154.278C154.9%20144.372%20165.499%20135.064%20176.198%20126.861C181.797%20122.556%20187.495%20118.554%20193.094%20114.851C202.392%20108.848%20211.792%20103.745%20220.889%2099.8411C232.586%2094.7401%20242.984%2092.2385%20251.083%2092.2385C256.89%2092.2385%20261.472%2093.6408%20264.489%2096.2768C264.633%2096.4209%20264.794%2096.5382%20264.935%2096.6823C265.062%2096.8118%20265.172%2096.9535%20265.299%2097.083C271.785%20104.292%20270.518%20120.431%20261.782%20140.769C259.347%20146.48%20256.392%20152.365%20252.991%20158.262C253.066%20159.104%20253.12%20159.715%20253.195%20160.556C256.949%20165.007%20260.394%20169.519%20263.578%20174.039C264.995%20174%20265.477%20173.986%20266.895%20173.946Z%22%20fill%3D%22%23FDFCF5%22%2F%3E%3Cpath%20d%3D%22M498.545%20235.889C493.925%20242.714%20487.327%20246.016%20478.309%20246.016C461.592%20246.016%20455.212%20237.43%20455.212%20220.039V125.377H442.675C441.135%20125.377%20440.475%20124.277%20440.475%20122.075C440.475%20119.873%20441.135%20118.773%20442.675%20118.773H448.174C458.512%20118.773%20466.651%20108.646%20468.629%2095.2178C469.071%2093.6768%20469.949%2093.0162%20471.49%2093.0162C473.029%2093.0162%20473.909%2093.8966%20473.909%2095.6575V118.773H498.104C499.424%20118.773%20500.084%20119.873%20500.084%20122.075C500.084%20124.277%20499.424%20125.377%20498.104%20125.377H473.909V220.92C473.909%20232.148%20476.549%20237.651%20483.808%20237.871C488.865%20238.311%20493.925%20233.688%20494.585%20233.688C496.565%20231.707%20498.104%20231.046%20498.764%20231.487C499.863%20232.148%20499.644%20233.688%20498.545%20235.889ZM698.045%20145.63L659.773%20243.594C659.332%20244.916%20658.674%20245.576%20657.572%20245.576L655.153%20245.355L654.934%20245.576H646.135C645.036%20245.576%20644.155%20244.916%20643.716%20243.594L612.042%20160.38L579.267%20244.696C578.607%20246.016%20577.947%20246.677%20577.069%20246.677L574.649%20246.457L574.429%20246.677H565.411C564.311%20246.677%20563.651%20246.016%20563.21%20244.696L522.74%20137.925C519.219%20128.9%20517.68%20126.698%20514.161%20124.716C511.96%20123.396%20510.64%20122.515%20510.64%20121.415C510.64%20120.314%20511.742%20119.654%20514.161%20119.873C515.921%20119.873%20523.4%20120.093%20528.457%20120.093C532.857%20120.093%20540.115%20119.873%20541.214%20119.873C543.634%20119.654%20544.954%20120.314%20544.954%20121.415C544.954%20122.736%20543.415%20123.396%20541.656%20124.716C539.896%20126.038%20539.676%20128.679%20540.996%20132.422L542.755%20137.045C542.976%20137.485%20542.976%20137.705%20542.976%20137.925L576.848%20233.468L607.863%20149.373L603.243%20137.045C600.824%20130.22%20597.965%20125.597%20594.665%20123.616C592.245%20122.075%20591.146%20121.195%20591.146%20120.534C591.146%20119.434%20592.245%20118.773%20594.665%20118.773C596.205%20118.773%20603.903%20118.993%20608.963%20118.993C615.782%20118.993%20619.961%20118.993%20621.72%20118.773C624.139%20118.773%20625.459%20119.434%20625.459%20120.534C625.459%20121.855%20623.919%20122.515%20622.159%20123.836C620.4%20125.157%20620.179%20127.799%20621.499%20131.541L623.479%20137.045L657.133%20232.367L686.168%20154.216C689.906%20143.87%20690.126%20139.027%20687.486%20133.082C686.387%20130.22%20685.508%20128.019%20685.287%20126.698C683.749%20118.993%20687.486%20112.609%20694.305%20113.489C706.844%20115.47%20703.325%20132.202%20698.045%20145.63ZM847.615%20242.494C847.615%20243.594%20846.295%20244.255%20843.875%20244.255C842.336%20244.035%20837.937%20244.035%20831.118%20244.035C824.08%20244.035%20819.681%20244.035%20818.14%20244.255C815.721%20244.255%20814.401%20243.594%20814.401%20242.494C814.401%20240.733%20816.162%20241.173%20817.921%20239.412C820.341%20237.871%20821.44%20233.248%20821.44%20225.983V168.966C821.44%20139.907%20810.442%20125.377%20788.226%20125.377C776.129%20125.377%20767.111%20129.78%20760.731%20138.366C754.354%20146.952%20751.274%20156.857%20751.274%20167.645V225.983C751.274%20233.248%20752.592%20237.871%20755.012%20239.412C757.433%20240.953%20758.533%20242.053%20758.533%20242.494C758.533%20243.594%20757.213%20244.255%20754.793%20244.255C753.253%20244.035%20748.855%20244.035%20742.036%20244.035C734.996%20244.035%20730.597%20244.035%20729.058%20244.255C726.639%20244.255%20725.319%20243.594%20725.319%20242.494C725.319%20240.733%20727.078%20241.173%20728.837%20239.412C731.257%20237.871%20732.577%20233.248%20732.577%20225.983V146.291C732.577%20139.027%20731.257%20134.403%20728.837%20132.862C726.418%20131.321%20725.319%20130.22%20725.319%20129.34C725.319%20128.239%20725.979%20127.579%20727.299%20127.138C734.336%20125.157%20741.155%20122.515%20747.535%20118.773C749.074%20117.672%20750.173%20118.113%20750.394%20120.093L751.054%20138.366L751.274%20142.109V145.63C757.433%20129.559%20770.63%20115.911%20794.385%20115.911C826.279%20115.911%20840.356%20132.202%20840.356%20168.966V225.983C840.356%20233.248%20841.676%20237.871%20844.096%20239.412C846.515%20240.953%20847.615%20242.053%20847.615%20242.494ZM923.277%20235.889C918.657%20242.714%20912.059%20246.016%20903.041%20246.016C886.324%20246.016%20879.944%20237.43%20879.944%20220.039V125.377H867.408C865.867%20125.377%20865.207%20124.277%20865.207%20122.075C865.207%20119.873%20865.867%20118.773%20867.408%20118.773H872.907C883.244%20118.773%20891.383%20108.646%20893.361%2095.2178C893.803%2093.6768%20894.682%2093.0162%20896.222%2093.0162C897.761%2093.0162%20898.642%2093.8966%20898.642%2095.6575V118.773H922.836C924.156%20118.773%20924.816%20119.873%20924.816%20122.075C924.816%20124.277%20924.156%20125.377%20922.836%20125.377H898.642V220.92C898.642%20232.148%20901.282%20237.651%20908.54%20237.871C913.598%20238.311%20918.657%20233.688%20919.317%20233.688C921.297%20231.707%20922.836%20231.046%20923.496%20231.487C924.596%20232.148%20924.377%20233.688%20923.277%20235.889ZM1058.55%20120.534C1058.55%20121.195%201057.45%20122.075%201055.25%20123.616C1051.51%20125.157%201047.99%20130.22%201044.69%20138.806L1004%20240.073C991.684%20270.673%20980.904%20285.642%20961.328%20286.303C946.812%20287.183%20942.193%20275.955%20948.352%20271.773C953.631%20267.59%20957.809%20270.892%20964.628%20271.553C977.827%20272.653%20985.964%20262.967%20993.664%20245.355L947.692%20137.045C943.513%20127.359%20942.633%20125.597%20939.333%20123.616C936.913%20122.075%20935.814%20121.195%20935.814%20120.534C935.814%20119.434%20936.913%20118.773%20939.333%20118.773C941.313%20118.993%20946.152%20118.993%20953.41%20118.993C960.45%20118.993%20964.849%20118.993%20966.827%20118.773C969.249%20118.773%20970.567%20119.434%20970.567%20120.534C970.567%20122.295%20968.807%20121.855%20967.048%20123.616C963.75%20126.257%20964.189%20127.579%20967.928%20137.045L1002.24%20224.222L1036.33%20138.806C1039.85%20130.22%201040.95%20125.377%201036.11%20123.616C1033.69%20122.295%201032.6%20121.195%201032.6%20120.534C1032.6%20119.434%201033.92%20118.773%201036.33%20118.773C1038.09%20118.993%201041.39%20118.993%201046.01%20118.993C1048.43%20118.993%201053.27%20118.773%201055.03%20118.773C1057.45%20118.773%201058.55%20119.434%201058.55%20120.534ZM1210.76%20244.255C1209%20244.035%201202.4%20244.035%201190.74%20244.035C1182.38%20244.035%201177.32%20244.035%201175.78%20244.255C1173.36%20244.255%201172.27%20243.594%201172.27%20242.494C1172.27%20241.393%201173.36%20240.512%201175.78%20239.412C1179.08%20237.651%201178.42%20233.248%201173.81%20225.983L1133.99%20171.168L1100.78%20218.278C1094.4%20227.304%201091.98%20235.669%201095.28%20238.532C1096.6%20240.512%201099.24%20240.953%201099.24%20242.494C1099.24%20243.594%201098.14%20244.255%201095.72%20244.255H1089.34C1086.04%20244.035%201083.62%20244.035%201082.08%20244.035L1070.87%20244.255C1064.71%20244.255%201065.15%20241.173%201069.32%20239.412C1076.36%20236.77%201081.86%20231.927%201091.54%20218.498L1130.03%20165.664L1084.5%20102.922C1079.22%2095.4377%201074.38%2091.0344%201069.77%2089.4934C1065.37%2087.7325%201065.37%2084.6504%201069.98%2084.6504C1071.74%2084.8703%201078.34%2084.8703%201090%2084.8703C1098.36%2084.8703%201103.42%2084.8703%201104.96%2084.6504C1107.38%2084.6504%201108.48%2085.311%201108.48%2086.4113C1108.48%2087.0719%201107.38%2087.9523%201104.96%2089.4934C1101.22%2091.4751%201101.88%2095.8774%201106.94%20102.922L1144.77%20155.316L1176.23%20110.627C1182.38%20101.602%201184.8%2093.236%201181.5%2090.3738C1180.84%2089.4934%201177.76%2087.5126%201177.76%2086.4113C1177.55%2085.311%201178.64%2084.6504%201181.28%2084.6504C1182.16%2084.6504%201184.14%2084.6504%201187.44%2084.8703H1194.92L1205.92%2084.6504C1209%2084.6504%201210.54%2085.311%201210.54%2086.4113C1210.76%2087.5126%201209.88%2088.6129%201207.46%2089.4934C1200.42%2091.9149%201195.14%2096.538%201185.24%20110.407L1148.95%20160.6L1196.02%20225.983C1201.52%20233.688%201206.36%20238.091%201210.76%20239.412C1215.16%20241.173%201215.16%20244.255%201210.76%20244.255Z%22%20fill%3D%22%23FDFCF5%22%2F%3E%3C%2Fsvg%3E');
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
10
|
+
@utility logotype-symbol {
|
|
11
|
+
@apply block relative aspect-352/371 w-auto min-h-8 mask bg-current;
|
|
12
|
+
mask-image: url('data:image/svg+xml,%3Csvg%20width%3D%22353%22%20height%3D%22371%22%20viewBox%3D%220%200%20353%20371%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M293.868%2049.8799L234.702%2015.6917C198.494%20-5.23057%20153.885%20-5.23057%20117.678%2015.6917L58.5123%2049.8799C22.3047%2070.8017%200%20109.467%200%20151.312V219.688C0%20261.533%2022.3047%20300.198%2058.5123%20321.12L117.678%20355.308C153.885%20376.231%20198.494%20376.231%20234.702%20355.308L293.868%20321.12C330.075%20300.198%20352.38%20261.533%20352.38%20219.688V151.312C352.38%20109.467%20330.075%2070.8017%20293.868%2049.8799ZM279.073%20288.47C251.588%20315.978%20215.053%20331.125%20176.193%20331.125C137.324%20331.125%20100.788%20315.978%2073.3029%20288.47C45.8181%20260.967%2030.6844%20224.395%2030.6844%20185.497C30.6844%20146.6%2045.8181%20110.033%2073.3029%2082.53C100.788%2055.0219%20137.324%2039.8754%20176.193%2039.8754C215.053%2039.8754%20251.588%2055.0219%20279.073%2082.53C306.558%20110.033%20321.692%20146.6%20321.692%20185.497C321.692%20224.395%20306.558%20260.967%20279.073%20288.47ZM266.895%20173.946C272.181%20165.475%20276.633%20156.949%20280.176%20148.674C283.621%20140.646%20285.893%20133.513%20287.338%20127.112C296.699%20144.907%20301.696%20164.812%20301.696%20185.497C301.696%20206.175%20296.704%20226.071%20287.353%20243.861C285.893%20237.47%20283.594%20230.337%20280.176%20222.323C265.741%20188.576%20235.953%20151.504%20202.321%20122.622C201.442%20122.558%20200.82%20122.512%20199.939%20122.448C195.427%20125.319%20190.915%20128.449%20186.403%20131.838C186.373%20133.126%20186.36%20133.683%20186.33%20134.971C193.552%20141.017%20200.597%20147.48%20207.391%20154.278C230.987%20177.895%20250.983%20205.11%20261.782%20230.229C270.518%20250.564%20271.785%20266.703%20265.299%20273.915C265.17%20274.044%20265.062%20274.188%20264.933%20274.317C264.806%20274.444%20264.667%20274.55%20264.54%20274.674C257.334%20281.167%20241.212%20279.9%20220.889%20271.154C215.176%20268.717%20209.378%20265.754%20203.49%20262.348C202.661%20262.414%20202.05%20262.463%20201.22%20262.529C196.692%20266.236%20192.163%20269.749%20187.634%20273.02C187.678%20274.447%20187.693%20274.92%20187.737%20276.346C196.203%20281.561%20204.721%20286.018%20212.99%20289.567C220.999%20292.987%20228.126%20295.291%20234.512%20296.747C216.732%20306.111%20196.853%20311.112%20176.193%20311.112C155.533%20311.112%20135.649%20306.113%20117.872%20296.752C124.26%20295.291%20131.39%20292.989%20139.404%20289.567C173.122%20275.117%20210.164%20245.305%20239.118%20211.738C239.185%20210.86%20239.231%20210.241%20239.297%20209.362C236.43%20204.837%20233.303%20200.25%20229.916%20195.655C228.616%20195.62%20228.059%20195.604%20226.759%20195.568C199.648%20228.009%20163.849%20257.226%20131.507%20271.154C111.115%20279.929%2094.8465%20281.185%2087.7702%20274.618C87.6653%20274.511%2087.5456%20274.423%2087.4407%20274.317C87.3455%20274.222%2087.2649%20274.115%2087.1697%20274.019C80.5866%20266.854%2081.8363%20250.654%2090.6139%20230.229C93.0475%20224.513%2096.0074%20218.623%2099.4095%20212.723C99.3392%20211.888%2099.2884%20211.279%2099.2186%20210.445C95.5206%20205.988%2092.0203%20201.474%2088.8154%20196.949C87.4002%20196.992%2086.9159%20197.006%2085.5011%20197.048C80.2156%20205.52%2075.7623%20214.045%2072.2167%20222.323C68.7676%20230.363%2066.4927%20237.504%2065.0477%20243.912C55.6794%20226.11%2050.6804%20206.194%2050.6804%20185.497C50.6804%20164.803%2055.6794%20144.89%2065.0501%20127.088C66.4927%20133.493%2068.7676%20140.634%2072.2167%20148.674C73.7178%20152.077%2075.3166%20155.478%2077.018%20158.981C80.0154%20164.786%2083.4156%20170.688%2087.1136%20176.593C89.6131%20180.494%2092.2127%20184.298%2094.8123%20188.199C96.3134%20190.203%2097.8122%20192.203%2099.3133%20194.304C102.211%20198.206%20105.311%20202.11%20108.411%20205.911C115.609%20214.618%20123.408%20223.222%20131.607%20231.328C137.551%20237.277%20143.765%20242.96%20149.991%20248.377C150.864%20248.448%20151.48%20248.499%20152.354%20248.571C156.879%20245.756%20161.467%20242.566%20166.062%20239.156C166.094%20237.86%20166.107%20237.31%20166.139%20236.014C159.113%20230.169%20152.19%20223.912%20145.603%20217.32C142.403%20214.117%20139.306%20210.914%20136.306%20207.714C134.306%20205.51%20132.205%20203.209%20130.206%20200.908C128.106%20198.606%20126.107%20196.205%20124.308%20193.904C124.108%20193.803%20124.008%20193.603%20124.008%20193.503C121.308%20190.403%20118.809%20187.2%20116.61%20184.097C114.11%20180.895%20111.708%20177.694%20109.609%20174.492C105.01%20167.888%20100.912%20161.282%2097.4119%20154.779C96.0132%20152.177%2094.6121%20149.576%2093.4136%20146.974C92.4128%20144.87%2091.5146%20142.769%2090.6139%20140.769C81.8461%20120.362%2080.5915%20104.177%2087.1527%2097.0023C87.2552%2096.8997%2087.3406%2096.7849%2087.4431%2096.6823C87.5871%2096.5382%2087.7458%2096.4185%2087.8898%2096.2768C89.3202%2094.9844%2091.0288%2093.973%2093.1134%2093.3378C101.613%2090.6359%20115.309%2092.8395%20131.507%2099.8411C137.223%20102.283%20143.029%20105.247%20148.921%20108.578C149.736%20108.512%20150.343%20108.463%20151.159%20108.398C155.689%20104.76%20160.219%20101.254%20164.748%2097.9849C164.701%2096.5548%20164.686%2096.0838%20164.639%2094.6536C156.113%2089.4379%20147.676%2084.9799%20139.404%2081.4307C131.377%2077.9812%20124.247%2075.7068%20117.85%2074.2605C135.632%2064.8916%20155.523%2059.8884%20176.193%2059.8884C196.86%2059.8884%20216.749%2064.8916%20234.534%2074.263C228.138%2075.7092%20221.011%2077.9836%20212.99%2081.4307C200.993%2086.5341%20188.495%2093.6383%20176.198%20102.245C170.498%20106.146%20164.799%20110.351%20159.302%20114.851C144.403%20126.76%20130.106%20140.268%20117.308%20154.779C115.96%20156.287%20114.675%20157.796%20113.352%20159.255C113.268%20160.158%20113.21%20160.778%20113.127%20161.681C115.994%20166.19%20119.124%20170.706%20122.572%20175.279C123.864%20175.304%20124.424%20175.314%20125.715%20175.339C127.811%20172.821%20129.958%20170.354%20132.105%20167.888C136.306%20163.283%20140.604%20158.681%20145.003%20154.278C154.9%20144.372%20165.499%20135.064%20176.198%20126.861C181.797%20122.556%20187.495%20118.554%20193.094%20114.851C202.392%20108.848%20211.792%20103.745%20220.889%2099.8411C232.586%2094.7401%20242.984%2092.2385%20251.083%2092.2385C256.89%2092.2385%20261.472%2093.6408%20264.489%2096.2768C264.633%2096.4209%20264.794%2096.5382%20264.935%2096.6823C265.062%2096.8118%20265.172%2096.9535%20265.299%2097.083C271.785%20104.292%20270.518%20120.431%20261.782%20140.769C259.347%20146.48%20256.392%20152.365%20252.991%20158.262C253.066%20159.104%20253.12%20159.715%20253.195%20160.556C256.949%20165.007%20260.394%20169.519%20263.578%20174.039C264.995%20174%20265.477%20173.986%20266.895%20173.946Z%22%20fill%3D%22%23FDFCF5%22%2F%3E%3C%2Fsvg%3E');
|
|
13
|
+
}
|
package/styles/scrollbar.css
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
/*----------------------------*/
|
|
4
4
|
|
|
5
5
|
@utility scrollbar {
|
|
6
|
-
@apply [&::-webkit-scrollbar]:w-
|
|
7
|
-
[&::-webkit-scrollbar]:h-
|
|
6
|
+
@apply [&::-webkit-scrollbar]:w-1.5
|
|
7
|
+
[&::-webkit-scrollbar]:h-1.5
|
|
8
8
|
[&::-webkit-scrollbar-track]:bg-core-ui-100
|
|
9
9
|
dark:[&::-webkit-scrollbar-track]:bg-core-ui-700
|
|
10
10
|
[&::-webkit-scrollbar-thumb]:bg-core-ui-300
|