@turquoisehealth/pit-viper 2.35.1 → 2.37.0
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/_site/assets/css/pit-viper-v2-scoped.css +4946 -0
- package/_site/assets/css/pit-viper-v2.css +8 -5
- package/_site/assets/css/pit-viper.css +8 -5
- package/_src/assets/sprite-v2.svg +1 -1
- package/_src/assets/sprite.svg +1 -1
- package/package.json +2 -1
- package/pv-components/dist/vue/base/pv-components-base.js +18 -32
- package/pv-components/dist/vue/base/pv-components-base.mjs +1152 -1169
- package/pv-components/dist/vue/charts/pv-components-charts.js +41 -41
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +9940 -9947
- package/pv-components/dist/vue/tables/pv-components-tables.js +29 -29
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +3133 -3140
- package/pv-components/dist/web/pv-components.iife.js +18 -32
|
@@ -0,0 +1,4946 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
/* toggle color styles should align with secondary and tertiary buttons */
|
|
3
|
+
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900");
|
|
4
|
+
:root {
|
|
5
|
+
--select-background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath d='M4.16663 6L8.16663 10L12.1666 6' stroke='%2389989B' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/* toggle color styles should align with secondary and tertiary buttons */
|
|
9
|
+
.pv-v2 {
|
|
10
|
+
font-family: var(--font-family-body, Inter, sans-serif);
|
|
11
|
+
font-weight: 400;
|
|
12
|
+
font-size: 100%;
|
|
13
|
+
line-height: 1.5;
|
|
14
|
+
color: var(--color-text-body, #121313);
|
|
15
|
+
background-color: var(--color-background-body, #FFFFFF);
|
|
16
|
+
-webkit-font-smoothing: antialiased;
|
|
17
|
+
/* Remove all animations and transitions for people that prefer not to see them */
|
|
18
|
+
/* naming aligns with the corresponding button styles.
|
|
19
|
+
default = secondary. there is no "primary". */
|
|
20
|
+
}
|
|
21
|
+
.pv-v2 :where(*) {
|
|
22
|
+
box-sizing: border-box;
|
|
23
|
+
margin: 0;
|
|
24
|
+
outline-color: #36C5BA;
|
|
25
|
+
}
|
|
26
|
+
.pv-v2 :where(input, button, textarea, select) {
|
|
27
|
+
font: inherit;
|
|
28
|
+
}
|
|
29
|
+
.pv-v2 :where(label) {
|
|
30
|
+
display: block;
|
|
31
|
+
font-weight: 600;
|
|
32
|
+
}
|
|
33
|
+
@media (prefers-reduced-motion: reduce) {
|
|
34
|
+
.pv-v2 * {
|
|
35
|
+
animation-duration: 0.01s !important;
|
|
36
|
+
animation-iteration-count: 1 !important;
|
|
37
|
+
transition-duration: 0.01s !important;
|
|
38
|
+
scroll-behavior: auto !important;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
.pv-v2 :root {
|
|
42
|
+
interpolate-size: allow-keywords;
|
|
43
|
+
}
|
|
44
|
+
.pv-v2 :where(html) {
|
|
45
|
+
scroll-behavior: smooth;
|
|
46
|
+
scroll-padding: 1rem;
|
|
47
|
+
}
|
|
48
|
+
.pv-v2 :where(html, body) {
|
|
49
|
+
height: 100%;
|
|
50
|
+
}
|
|
51
|
+
.pv-v2 :where(body) {
|
|
52
|
+
font-family: var(--font-family-body, Inter, sans-serif);
|
|
53
|
+
font-weight: 400;
|
|
54
|
+
font-size: 100%;
|
|
55
|
+
line-height: 1.5;
|
|
56
|
+
color: var(--color-text-body, #121313);
|
|
57
|
+
background-color: var(--color-background-body, #FFFFFF);
|
|
58
|
+
-webkit-font-smoothing: antialiased;
|
|
59
|
+
}
|
|
60
|
+
.pv-v2 :where(strong) {
|
|
61
|
+
font-weight: 700;
|
|
62
|
+
}
|
|
63
|
+
.pv-v2 :where(a),
|
|
64
|
+
.pv-v2 [class*=pv-button-link] {
|
|
65
|
+
font-weight: var(--link-font-weight, 500);
|
|
66
|
+
text-decoration: none;
|
|
67
|
+
color: var(--color-text-interactive, inherit);
|
|
68
|
+
}
|
|
69
|
+
.pv-v2 :where(a):hover,
|
|
70
|
+
.pv-v2 [class*=pv-button-link]:hover {
|
|
71
|
+
text-decoration: underline;
|
|
72
|
+
}
|
|
73
|
+
.pv-v2 :is(ul, ol):not([role=list]) {
|
|
74
|
+
padding-inline-start: 1em;
|
|
75
|
+
}
|
|
76
|
+
.pv-v2 :where(ol) > ::marker {
|
|
77
|
+
font-weight: 600;
|
|
78
|
+
}
|
|
79
|
+
.pv-v2 :where(dfn) {
|
|
80
|
+
text-decoration-line: underline;
|
|
81
|
+
text-decoration-style: dotted;
|
|
82
|
+
text-underline-offset: 4px;
|
|
83
|
+
font-style: normal;
|
|
84
|
+
}
|
|
85
|
+
.pv-v2 :where(blockquote):not(.pv-blockquote) {
|
|
86
|
+
border: 0 solid #E3E7EA;
|
|
87
|
+
border-inline-start-width: 0.25rem;
|
|
88
|
+
padding-inline-start: 1.5rem;
|
|
89
|
+
}
|
|
90
|
+
.pv-v2 :where([role=list]) {
|
|
91
|
+
list-style: none;
|
|
92
|
+
padding-inline-start: 0;
|
|
93
|
+
}
|
|
94
|
+
.pv-v2 :where(svg, img) {
|
|
95
|
+
display: block;
|
|
96
|
+
}
|
|
97
|
+
.pv-v2 :where(img) {
|
|
98
|
+
max-width: 100%;
|
|
99
|
+
}
|
|
100
|
+
.pv-v2 [class*=pv-icon] {
|
|
101
|
+
width: 1rem;
|
|
102
|
+
aspect-ratio: 1;
|
|
103
|
+
fill: currentColor;
|
|
104
|
+
flex-shrink: 0;
|
|
105
|
+
}
|
|
106
|
+
.pv-v2 .pv-icon-brand {
|
|
107
|
+
fill: #218C88;
|
|
108
|
+
}
|
|
109
|
+
.pv-v2 .pv-icon-10 {
|
|
110
|
+
width: 0.625rem;
|
|
111
|
+
}
|
|
112
|
+
.pv-v2 .pv-icon-12 {
|
|
113
|
+
width: 0.75rem;
|
|
114
|
+
}
|
|
115
|
+
.pv-v2 .pv-icon-20 {
|
|
116
|
+
width: 1.25rem;
|
|
117
|
+
}
|
|
118
|
+
.pv-v2 .pv-icon-24 {
|
|
119
|
+
width: 1.5rem;
|
|
120
|
+
}
|
|
121
|
+
.pv-v2 .pv-icon-32 {
|
|
122
|
+
width: 2rem;
|
|
123
|
+
}
|
|
124
|
+
.pv-v2 .pv-icon-64 {
|
|
125
|
+
width: 4rem;
|
|
126
|
+
}
|
|
127
|
+
.pv-v2 [class*=pv-display] {
|
|
128
|
+
font-family: "Inter", sans-serif;
|
|
129
|
+
font-weight: 600;
|
|
130
|
+
letter-spacing: 0.01em;
|
|
131
|
+
}
|
|
132
|
+
.pv-v2 [class*=pv-heading] {
|
|
133
|
+
font-family: var(--font-family-body, Inter, sans-serif);
|
|
134
|
+
font-weight: 600;
|
|
135
|
+
letter-spacing: 0.2px;
|
|
136
|
+
}
|
|
137
|
+
.pv-v2 [class*=pv-text-body] {
|
|
138
|
+
font-family: var(--font-family-body, Inter, sans-serif);
|
|
139
|
+
font-weight: 400;
|
|
140
|
+
}
|
|
141
|
+
.pv-v2 .pv-display-1 {
|
|
142
|
+
font-size: clamp(3rem, 1.5rem + 4vw, 4rem);
|
|
143
|
+
line-height: 1.1875;
|
|
144
|
+
}
|
|
145
|
+
.pv-v2 .pv-display-2 {
|
|
146
|
+
font-size: clamp(2.5rem, 1.75rem + 2vw, 3rem);
|
|
147
|
+
line-height: 1.16666666;
|
|
148
|
+
}
|
|
149
|
+
.pv-v2 .pv-display-3 {
|
|
150
|
+
font-size: clamp(2rem, 1.625rem + 1vw, 2.25rem);
|
|
151
|
+
line-height: 1.2222222;
|
|
152
|
+
}
|
|
153
|
+
.pv-v2 .pv-display-4 {
|
|
154
|
+
font-size: 1.5rem;
|
|
155
|
+
line-height: 1.3333333;
|
|
156
|
+
}
|
|
157
|
+
.pv-v2 .pv-heading-1 {
|
|
158
|
+
font-size: var(--font-size-heading-1, 1.25rem);
|
|
159
|
+
line-height: var(--line-height-heading-1, 1.2);
|
|
160
|
+
}
|
|
161
|
+
.pv-v2 .pv-heading-2 {
|
|
162
|
+
font-size: var(--font-size-heading-2, 1rem);
|
|
163
|
+
line-height: var(--line-height-heading-2, 1.5);
|
|
164
|
+
}
|
|
165
|
+
.pv-v2 .pv-heading-3 {
|
|
166
|
+
font-size: var(--font-size-heading-3, 0.875rem);
|
|
167
|
+
line-height: var(--line-height-heading-3, 1.4285714);
|
|
168
|
+
}
|
|
169
|
+
.pv-v2 .pv-heading-4 {
|
|
170
|
+
font-size: var(--font-size-heading-4, 0.75rem);
|
|
171
|
+
line-height: var(--line-height-heading-4, 1.3333333);
|
|
172
|
+
}
|
|
173
|
+
.pv-v2 .pv-heading-5 {
|
|
174
|
+
font-size: var(--font-size-heading-5, 0.75rem);
|
|
175
|
+
line-height: var(--line-height-heading-5, 1.3333333);
|
|
176
|
+
}
|
|
177
|
+
.pv-v2 .pv-text-body-xl {
|
|
178
|
+
font-size: var(--font-size-xl, 0.875rem);
|
|
179
|
+
line-height: var(--line-height-xl, 1.1428571);
|
|
180
|
+
}
|
|
181
|
+
.pv-v2 .pv-text-body-lg {
|
|
182
|
+
font-size: var(--font-size-l, 0.875rem);
|
|
183
|
+
line-height: var(--line-height-l, 1.1428571);
|
|
184
|
+
}
|
|
185
|
+
.pv-v2 .pv-text-body-md {
|
|
186
|
+
font-size: var(--font-size-m, 0.75rem);
|
|
187
|
+
line-height: var(--line-height-m, 1.33333333);
|
|
188
|
+
}
|
|
189
|
+
.pv-v2 .pv-text-body-sm {
|
|
190
|
+
font-size: var(--font-size-s, 0.6875rem);
|
|
191
|
+
line-height: var(--line-height-s, 1.45454545);
|
|
192
|
+
}
|
|
193
|
+
.pv-v2 .pv-text-body-xs {
|
|
194
|
+
font-size: var(--font-size-xs, 0.6875rem);
|
|
195
|
+
line-height: var(--line-height-xs, 1.45454545);
|
|
196
|
+
}
|
|
197
|
+
.pv-v2 .pv-text-body-xxs {
|
|
198
|
+
font-size: var(--font-size-xxs, 0.6875rem);
|
|
199
|
+
line-height: var(--line-height-xxs, 1.45454545);
|
|
200
|
+
letter-spacing: 0.12px;
|
|
201
|
+
}
|
|
202
|
+
.pv-v2 [class*=pv-text-title] {
|
|
203
|
+
font-weight: var(--font-weight-semibold, 600);
|
|
204
|
+
}
|
|
205
|
+
.pv-v2 .pv-text-title-xl {
|
|
206
|
+
font-size: var(--font-size-title-xl, 0.875rem);
|
|
207
|
+
line-height: var(--line-height-title-xl, 1.1428571);
|
|
208
|
+
}
|
|
209
|
+
.pv-v2 .pv-text-title-lg {
|
|
210
|
+
font-size: var(--font-size-title-l, 0.875rem);
|
|
211
|
+
line-height: var(--line-height-title-l, 1.1428571);
|
|
212
|
+
}
|
|
213
|
+
.pv-v2 .pv-text-title-md {
|
|
214
|
+
font-size: var(--font-size-title-m, 0.75rem);
|
|
215
|
+
line-height: var(--line-height-title-m, 1.33333333);
|
|
216
|
+
}
|
|
217
|
+
.pv-v2 .pv-text-title-sm {
|
|
218
|
+
font-size: var(--font-size-title-s, 0.6875rem);
|
|
219
|
+
line-height: var(--line-height-title-s, 1.45454545);
|
|
220
|
+
}
|
|
221
|
+
.pv-v2 .pv-text-title-xs {
|
|
222
|
+
font-size: var(--font-size-title-xs, 0.6875rem);
|
|
223
|
+
line-height: var(--line-height-title-xs, 1.45454545);
|
|
224
|
+
}
|
|
225
|
+
.pv-v2 .pv-text-eyebrow-lg {
|
|
226
|
+
font-weight: var(--font-weight-bold, 700);
|
|
227
|
+
letter-spacing: 0.0375rem;
|
|
228
|
+
text-transform: uppercase;
|
|
229
|
+
font-size: var(--font-size-xs, 0.6875rem);
|
|
230
|
+
line-height: var(--line-height-xs, 1.45454545);
|
|
231
|
+
}
|
|
232
|
+
.pv-v2 .pv-text-eyebrow-sm {
|
|
233
|
+
font-weight: var(--font-weight-bold, 700);
|
|
234
|
+
letter-spacing: 0.0375rem;
|
|
235
|
+
text-transform: uppercase;
|
|
236
|
+
font-size: var(--font-size-xxs, 0.6875rem);
|
|
237
|
+
line-height: var(--line-height-xxs, 1.45454545);
|
|
238
|
+
}
|
|
239
|
+
.pv-v2 .pv-text-center {
|
|
240
|
+
text-align: center;
|
|
241
|
+
}
|
|
242
|
+
.pv-v2 .pv-text-right {
|
|
243
|
+
text-align: right;
|
|
244
|
+
}
|
|
245
|
+
.pv-v2 .pv-text-left {
|
|
246
|
+
text-align: left;
|
|
247
|
+
}
|
|
248
|
+
.pv-v2 .pv-text-uppercase {
|
|
249
|
+
text-transform: uppercase;
|
|
250
|
+
}
|
|
251
|
+
.pv-v2 .pv-line-clamp {
|
|
252
|
+
--lines: 3;
|
|
253
|
+
display: -webkit-box;
|
|
254
|
+
line-clamp: var(--lines);
|
|
255
|
+
-webkit-line-clamp: var(--lines);
|
|
256
|
+
-webkit-box-orient: vertical;
|
|
257
|
+
overflow: hidden;
|
|
258
|
+
text-overflow: ellipsis;
|
|
259
|
+
}
|
|
260
|
+
.pv-v2 [data-list-style] {
|
|
261
|
+
padding-inline-start: 0.5ch;
|
|
262
|
+
}
|
|
263
|
+
.pv-v2 [data-list-style]::marker {
|
|
264
|
+
font-size: 1.75rem;
|
|
265
|
+
line-height: 1;
|
|
266
|
+
}
|
|
267
|
+
.pv-v2 [data-list-style=do] {
|
|
268
|
+
list-style-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23176F6F' fill-rule='evenodd' d='M10 19.167A9.167 9.167 0 1 0 10 .834a9.167 9.167 0 0 0 0 18.333Zm4.457-10.96a1 1 0 0 0-1.414-1.414L8.75 11.086 6.957 9.293a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.414 0l5-5Z' clip-rule='evenodd'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h20v20H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
|
|
269
|
+
}
|
|
270
|
+
.pv-v2 [data-list-style=dont] {
|
|
271
|
+
list-style-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23A2191F' fill-rule='evenodd' d='M10 19.167A9.167 9.167 0 1 0 10 .834a9.167 9.167 0 0 0 0 18.333Zm3.653-11.406a1 1 0 0 0-1.414-1.414L10 8.586l-2.24-2.24a1 1 0 0 0-1.413 1.415l2.239 2.24-2.24 2.238a1 1 0 1 0 1.415 1.414L10 11.415l2.24 2.24a1 1 0 0 0 1.413-1.415L11.414 10l2.24-2.239Z' clip-rule='evenodd'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h20v20H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
|
|
272
|
+
}
|
|
273
|
+
.pv-v2 [data-list-style=check] {
|
|
274
|
+
list-style: none;
|
|
275
|
+
}
|
|
276
|
+
.pv-v2 [data-list-style=check] li {
|
|
277
|
+
position: relative;
|
|
278
|
+
padding-inline-start: 1.375rem;
|
|
279
|
+
}
|
|
280
|
+
.pv-v2 [data-list-style=check] li:before {
|
|
281
|
+
content: "";
|
|
282
|
+
display: block;
|
|
283
|
+
position: absolute;
|
|
284
|
+
left: 0;
|
|
285
|
+
top: 0.25em;
|
|
286
|
+
width: 20px;
|
|
287
|
+
height: 20px;
|
|
288
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%232CA8A1' d='M17.55 4.116a1.25 1.25 0 0 1 0 1.768L8.384 15.05a1.25 1.25 0 0 1-1.768 0l-4.167-4.167a1.25 1.25 0 0 1 1.768-1.768L7.5 12.4l8.283-8.283a1.25 1.25 0 0 1 1.768 0Z'/%3E%3C/svg%3E");
|
|
289
|
+
background-size: 16px 16px;
|
|
290
|
+
background-repeat: no-repeat;
|
|
291
|
+
}
|
|
292
|
+
.pv-v2 [data-list-style=display] {
|
|
293
|
+
counter-increment: display;
|
|
294
|
+
display: flex;
|
|
295
|
+
align-items: start;
|
|
296
|
+
gap: 8px;
|
|
297
|
+
list-style: none;
|
|
298
|
+
position: relative;
|
|
299
|
+
padding-bottom: 1rem;
|
|
300
|
+
}
|
|
301
|
+
.pv-v2 [data-list-style=display]::before {
|
|
302
|
+
content: counter(display) ".";
|
|
303
|
+
color: #16696D;
|
|
304
|
+
font-family: "Inter", sans-serif;
|
|
305
|
+
font-size: 1.5rem;
|
|
306
|
+
}
|
|
307
|
+
.pv-v2 [data-list-incomplete] {
|
|
308
|
+
color: #4B595C;
|
|
309
|
+
}
|
|
310
|
+
.pv-v2 [data-list-incomplete]::before {
|
|
311
|
+
color: #4B595C;
|
|
312
|
+
}
|
|
313
|
+
.pv-v2 .pv-blockquote {
|
|
314
|
+
font-size: 1.5rem;
|
|
315
|
+
line-height: 1.3333333;
|
|
316
|
+
font-weight: 600;
|
|
317
|
+
padding-block-start: 80px;
|
|
318
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 84 60'%3E%3Cpath fill='%23E29578' d='M61.36 25.286C62.418 14.57 70.458 9.643 84 7.714V0C58.398 1.071 44.645 14.571 44.645 35.571 44.645 49.93 52.474 60 64.957 60c10.368 0 18.62-6.857 18.62-17.786 0-9.857-5.925-15.214-13.965-16.928H61.36Zm-44.856 0c1.27-10.715 9.31-15.643 22.851-17.572V0C13.753 1.071 0 14.571 0 35.571 0 49.93 7.829 60 20.312 60c10.368 0 18.62-6.857 18.62-17.786 0-9.857-5.924-15.214-13.965-16.928h-8.463Z'/%3E%3C/svg%3E");
|
|
319
|
+
background-repeat: no-repeat;
|
|
320
|
+
background-size: 84px 60px;
|
|
321
|
+
background-position: top left;
|
|
322
|
+
}
|
|
323
|
+
.pv-v2 .pv-blockquote cite {
|
|
324
|
+
font-size: 1.375rem;
|
|
325
|
+
line-height: 1.45454545;
|
|
326
|
+
font-weight: 400;
|
|
327
|
+
}
|
|
328
|
+
@media (width >= 768px) {
|
|
329
|
+
.pv-v2 .pv-blockquote {
|
|
330
|
+
font-size: 2.5rem;
|
|
331
|
+
line-height: 1.4;
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
.pv-v2 .pv-kbd {
|
|
335
|
+
display: inline-block;
|
|
336
|
+
font-size: var(--kbd-font-size, 0.6875rem);
|
|
337
|
+
line-height: var(--kbd-line-height, 1rem);
|
|
338
|
+
font-weight: var(--kbd-font-weight, 500);
|
|
339
|
+
color: var(--kbd-color, #89989B);
|
|
340
|
+
border: var(--kbd-border, 1px solid transparent);
|
|
341
|
+
border-radius: var(--kbd-radius, 4px);
|
|
342
|
+
padding: var(--kbd-padding, 0 0.25rem);
|
|
343
|
+
background-color: var(--kbd-background-color, #FFFFFF);
|
|
344
|
+
min-width: var(--kbd-width, 1rem);
|
|
345
|
+
max-height: var(--kbd-width, 1rem);
|
|
346
|
+
box-shadow: 0px 4px 6px 0px rgba(45, 46, 47, 0.05), 0px 0.5px 1.5px 0px rgba(45, 47, 47, 0.15);
|
|
347
|
+
}
|
|
348
|
+
.pv-v2 .pv-link-external {
|
|
349
|
+
padding-inline-end: 1rem;
|
|
350
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23176F6F' d='M4.666 5.467a.8.8 0 0 1 0-1.6h6.667a.8.8 0 0 1 .8.8v6.666a.8.8 0 1 1-1.6 0V6.598l-5.301 5.3a.8.8 0 0 1-1.131-1.13l5.3-5.301H4.667Z'/%3E%3C/svg%3E");
|
|
351
|
+
background-size: 14px 14px;
|
|
352
|
+
background-repeat: no-repeat;
|
|
353
|
+
background-position: top 1px right;
|
|
354
|
+
transition-duration: 0.125s;
|
|
355
|
+
transition-property: background-position;
|
|
356
|
+
transition-timing-function: ease-in-out;
|
|
357
|
+
}
|
|
358
|
+
.pv-v2 .pv-link-external:hover, .pv-v2 .pv-link-external:focus {
|
|
359
|
+
background-position: top right -1px;
|
|
360
|
+
}
|
|
361
|
+
.pv-v2 .pv-text-inverse .pv-link-external {
|
|
362
|
+
color: #FFFFFF;
|
|
363
|
+
padding-inline-end: 1rem;
|
|
364
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M4.666 5.467a.8.8 0 0 1 0-1.6h6.667a.8.8 0 0 1 .8.8v6.666a.8.8 0 1 1-1.6 0V6.598l-5.301 5.3a.8.8 0 0 1-1.131-1.13l5.3-5.301H4.667Z'/%3E%3C/svg%3E");
|
|
365
|
+
background-size: 14px 14px;
|
|
366
|
+
background-repeat: no-repeat;
|
|
367
|
+
background-position: top 2px right;
|
|
368
|
+
}
|
|
369
|
+
.pv-v2 .pv-mark {
|
|
370
|
+
background-color: #FAECCC;
|
|
371
|
+
border-radius: 2px;
|
|
372
|
+
padding-inline: 0.25rem;
|
|
373
|
+
color: inherit;
|
|
374
|
+
}
|
|
375
|
+
.pv-v2 :where([class*=pv-button]),
|
|
376
|
+
.pv-v2 :where([class*=pv-segmented-control] button) {
|
|
377
|
+
background-color: transparent;
|
|
378
|
+
border: 1px solid transparent;
|
|
379
|
+
cursor: pointer;
|
|
380
|
+
display: flex;
|
|
381
|
+
align-items: center;
|
|
382
|
+
justify-content: center;
|
|
383
|
+
gap: var(--button-gap, 0.25rem);
|
|
384
|
+
white-space: nowrap;
|
|
385
|
+
font-weight: var(--button-font-weight, 500);
|
|
386
|
+
line-height: var(--button-line-height, 1.33333333);
|
|
387
|
+
border-radius: var(--button-radius, 4px);
|
|
388
|
+
font-size: var(--button-font-size, 0.75rem);
|
|
389
|
+
transition-duration: 0.125s;
|
|
390
|
+
transition-property: background-color, color;
|
|
391
|
+
}
|
|
392
|
+
.pv-v2 :where([class*=pv-button]):disabled,
|
|
393
|
+
.pv-v2 :where([class*=pv-segmented-control] button):disabled {
|
|
394
|
+
color: var(--button-disabled-color, #4B595C);
|
|
395
|
+
background-color: var(--button-disabled-background-color, #ECECEC);
|
|
396
|
+
cursor: unset;
|
|
397
|
+
}
|
|
398
|
+
.pv-v2 :where([class*=pv-button]):hover,
|
|
399
|
+
.pv-v2 :where([class*=pv-segmented-control] button):hover {
|
|
400
|
+
text-decoration: none;
|
|
401
|
+
}
|
|
402
|
+
.pv-v2 .pv-button-primary,
|
|
403
|
+
.pv-v2 .pv-button-secondary,
|
|
404
|
+
.pv-v2 .pv-button-tertiary,
|
|
405
|
+
.pv-v2 .pv-button-ghost,
|
|
406
|
+
.pv-v2 .pv-button-destructive,
|
|
407
|
+
.pv-v2 .pv-button-ghost-destructive {
|
|
408
|
+
padding: var(--button-padding, calc(0.25rem - 1px) 0.5rem);
|
|
409
|
+
}
|
|
410
|
+
.pv-v2 .pv-button-primary:not(:disabled):hover, .pv-v2 .pv-button-primary:not(:disabled):focus-visible,
|
|
411
|
+
.pv-v2 .pv-button-secondary:not(:disabled):hover,
|
|
412
|
+
.pv-v2 .pv-button-secondary:not(:disabled):focus-visible,
|
|
413
|
+
.pv-v2 .pv-button-tertiary:not(:disabled):hover,
|
|
414
|
+
.pv-v2 .pv-button-tertiary:not(:disabled):focus-visible,
|
|
415
|
+
.pv-v2 .pv-button-ghost:not(:disabled):hover,
|
|
416
|
+
.pv-v2 .pv-button-ghost:not(:disabled):focus-visible,
|
|
417
|
+
.pv-v2 .pv-button-destructive:not(:disabled):hover,
|
|
418
|
+
.pv-v2 .pv-button-destructive:not(:disabled):focus-visible,
|
|
419
|
+
.pv-v2 .pv-button-ghost-destructive:not(:disabled):hover,
|
|
420
|
+
.pv-v2 .pv-button-ghost-destructive:not(:disabled):focus-visible {
|
|
421
|
+
text-decoration: none;
|
|
422
|
+
}
|
|
423
|
+
.pv-v2 .pv-button-primary:disabled,
|
|
424
|
+
.pv-v2 .pv-button-secondary:disabled,
|
|
425
|
+
.pv-v2 .pv-button-tertiary:disabled,
|
|
426
|
+
.pv-v2 .pv-button-ghost:disabled,
|
|
427
|
+
.pv-v2 .pv-button-destructive:disabled,
|
|
428
|
+
.pv-v2 .pv-button-ghost-destructive:disabled {
|
|
429
|
+
color: var(--button-disabled-color, #4B595C);
|
|
430
|
+
background-color: var(--button-disabled-background-color, #ECECEC);
|
|
431
|
+
}
|
|
432
|
+
.pv-v2 .pv-button-primary {
|
|
433
|
+
color: var(--button-primary-color, #FFFFFF);
|
|
434
|
+
background-color: var(--button-primary-background-color, #16696D);
|
|
435
|
+
}
|
|
436
|
+
.pv-v2 .pv-button-primary:not(:disabled):hover, .pv-v2 .pv-button-primary:not(:disabled):focus-visible {
|
|
437
|
+
color: var(--button-primary-hover-color, #FFFFFF);
|
|
438
|
+
background-color: var(--button-primary-hover-background-color, #0D5256);
|
|
439
|
+
}
|
|
440
|
+
.pv-v2 .pv-button-primary:not(:disabled):active {
|
|
441
|
+
background-color: var(--button-primary-pressed-background-color, #02363D);
|
|
442
|
+
}
|
|
443
|
+
.pv-v2 .pv-button-primary.pv-button-inverse {
|
|
444
|
+
color: #121313;
|
|
445
|
+
background-color: #A8E6E1;
|
|
446
|
+
}
|
|
447
|
+
.pv-v2 .pv-button-primary.pv-button-inverse:not(disabled):hover, .pv-v2 .pv-button-primary.pv-button-inverse:not(disabled):focus-visible {
|
|
448
|
+
color: #121313;
|
|
449
|
+
background-color: #E2F7F5;
|
|
450
|
+
}
|
|
451
|
+
.pv-v2 .pv-button-secondary {
|
|
452
|
+
color: var(--button-secondary-color, #121313);
|
|
453
|
+
background-color: var(--button-secondary-background-color, #FFFFFF);
|
|
454
|
+
border-color: var(--button-secondary-border-color, #E3E7EA);
|
|
455
|
+
}
|
|
456
|
+
.pv-v2 .pv-button-secondary:not(:disabled):hover, .pv-v2 .pv-button-secondary:not(:disabled):focus-visible {
|
|
457
|
+
color: var(--button-secondary-hover-color, #121313);
|
|
458
|
+
background-color: var(--button-secondary-hover-background-color, #E8F2F4);
|
|
459
|
+
}
|
|
460
|
+
.pv-v2 .pv-button-secondary:not(:disabled):active {
|
|
461
|
+
background-color: var(--button-secondary-pressed-background-color, #C7D8DB);
|
|
462
|
+
}
|
|
463
|
+
.pv-v2 .pv-button-secondary.pv-button-inverse {
|
|
464
|
+
color: var(--color-text-body, #121313);
|
|
465
|
+
background-color: var(--color-background-body, #FFFFFF);
|
|
466
|
+
}
|
|
467
|
+
.pv-v2 .pv-button-secondary.pv-button-inverse:not(:disabled):hover, .pv-v2 .pv-button-secondary.pv-button-inverse:not(:disabled):focus-visible {
|
|
468
|
+
color: var(--color-text-body, #121313);
|
|
469
|
+
background-color: var(--color-background-brand-accent, #E8F2F4);
|
|
470
|
+
}
|
|
471
|
+
.pv-v2 .pv-button-secondary.pv-button-inverse:not(:disabled):active {
|
|
472
|
+
background-color: var(--color-background-interactive, #A8E6E1);
|
|
473
|
+
}
|
|
474
|
+
.pv-v2 .pv-button-tertiary {
|
|
475
|
+
background-color: var(--button-tertiary-background-color, #FFFFFF);
|
|
476
|
+
border-color: var(--button-tertiary-border-color, transparent);
|
|
477
|
+
}
|
|
478
|
+
.pv-v2 .pv-button-tertiary:not(:disabled) {
|
|
479
|
+
color: var(--button-tertiary-color, #121313);
|
|
480
|
+
}
|
|
481
|
+
.pv-v2 .pv-button-tertiary:not(:disabled):hover, .pv-v2 .pv-button-tertiary:not(:disabled):focus-visible {
|
|
482
|
+
background-color: var(--button-tertiary-hover-background-color, #E8F2F4);
|
|
483
|
+
}
|
|
484
|
+
.pv-v2 .pv-button-tertiary:not(:disabled):active {
|
|
485
|
+
background-color: var(--button-tertiary-pressed-background-color, #C7D8DB);
|
|
486
|
+
}
|
|
487
|
+
.pv-v2 .pv-button-destructive {
|
|
488
|
+
color: var(--button-destructive-color, #801A00);
|
|
489
|
+
background-color: var(--button-destructive-background-color, #FFEFEB);
|
|
490
|
+
}
|
|
491
|
+
.pv-v2 .pv-button-destructive:not(:disabled):hover, .pv-v2 .pv-button-destructive:not(:disabled):focus-visible {
|
|
492
|
+
background-color: var(--button-destructive-hover-background-color, #FEE0D8);
|
|
493
|
+
}
|
|
494
|
+
.pv-v2 .pv-button-destructive:not(:disabled):active {
|
|
495
|
+
background-color: var(--button-destructive-pressed-background-color, #FFAD99);
|
|
496
|
+
}
|
|
497
|
+
.pv-v2 .pv-button-ghost {
|
|
498
|
+
color: var(--button-ghost-color, #121313);
|
|
499
|
+
}
|
|
500
|
+
.pv-v2 .pv-button-ghost:not(:disabled):hover, .pv-v2 .pv-button-ghost:not(:disabled):focus-visible {
|
|
501
|
+
background-color: var(--button-ghost-hover-background-color, #E8F2F4);
|
|
502
|
+
}
|
|
503
|
+
.pv-v2 .pv-button-ghost:not(:disabled):active {
|
|
504
|
+
background-color: var(--button-ghost-pressed-background-color, #C7D8DB);
|
|
505
|
+
}
|
|
506
|
+
.pv-v2 .pv-button-ghost.pv-button-inverse {
|
|
507
|
+
color: #FFFFFF;
|
|
508
|
+
}
|
|
509
|
+
.pv-v2 .pv-button-ghost.pv-button-inverse:not(disabled):hover, .pv-v2 .pv-button-ghost.pv-button-inverse:not(disabled):focus-visible {
|
|
510
|
+
color: #FFFFFF;
|
|
511
|
+
background-color: #16696D;
|
|
512
|
+
}
|
|
513
|
+
.pv-v2 .pv-button-ghost-destructive {
|
|
514
|
+
color: #801A00;
|
|
515
|
+
}
|
|
516
|
+
.pv-v2 .pv-button-ghost-destructive:not(:disabled):hover, .pv-v2 .pv-button-ghost-destructive:not(:disabled):focus-visible {
|
|
517
|
+
color: #801A00;
|
|
518
|
+
background-color: #FEE0D8;
|
|
519
|
+
}
|
|
520
|
+
.pv-v2 .pv-button-ghost-destructive:not(:disabled):active {
|
|
521
|
+
background-color: #FFAD99;
|
|
522
|
+
}
|
|
523
|
+
.pv-v2 .pv-button-primary-outline {
|
|
524
|
+
border: 1px solid var(--button-primary-outline-border-color, #E3E7EA);
|
|
525
|
+
color: var(--button-primary-outline-color, #121313);
|
|
526
|
+
padding: calc(0.5rem - 1px) 0.75rem;
|
|
527
|
+
}
|
|
528
|
+
.pv-v2 .pv-button-primary-outline:not(:disabled):hover, .pv-v2 .pv-button-primary-outline:not(:disabled):focus-visible {
|
|
529
|
+
background-color: var(--button-primary-outline-hover-background-color, #E8F2F4);
|
|
530
|
+
color: var(--button-primary-outline-hover-color, #121313);
|
|
531
|
+
}
|
|
532
|
+
.pv-v2 .pv-button-primary-outline:disabled {
|
|
533
|
+
border-color: #E3E7EA;
|
|
534
|
+
color: #4B595C;
|
|
535
|
+
}
|
|
536
|
+
.pv-v2 .pv-button-secondary-outline {
|
|
537
|
+
border: 1px solid var(--button-secondary-outline-border-color, #E3E7EA);
|
|
538
|
+
color: var(--button-secondary-outline-color, #121313);
|
|
539
|
+
padding: calc(0.5rem - 1px) 0.75rem;
|
|
540
|
+
}
|
|
541
|
+
.pv-v2 .pv-button-secondary-outline:not(:disabled):hover, .pv-v2 .pv-button-secondary-outline:not(:disabled):focus-visible {
|
|
542
|
+
background-color: var(--button-secondary-outline-hover-background-color, #E8F2F4);
|
|
543
|
+
color: var(--button-secondary-outline-hover-color, #121313);
|
|
544
|
+
}
|
|
545
|
+
.pv-v2 .pv-button-secondary-outline:active {
|
|
546
|
+
background-color: var(--button-secondary-outline-pressed-background-color, #C7D8DB);
|
|
547
|
+
}
|
|
548
|
+
.pv-v2 .pv-button-secondary-outline:disabled {
|
|
549
|
+
border-color: #E3E7EA;
|
|
550
|
+
color: #4B595C;
|
|
551
|
+
}
|
|
552
|
+
.pv-v2 .pv-button-secondary-outline.pv-button-inverse {
|
|
553
|
+
color: var(--color-text-inverse, #FFFFFF);
|
|
554
|
+
}
|
|
555
|
+
.pv-v2 .pv-button-secondary-outline.pv-button-inverse:not(:disabled):hover, .pv-v2 .pv-button-secondary-outline.pv-button-inverse:not(:disabled):focus-visible {
|
|
556
|
+
background-color: var(--color-background-body, #FFFFFF);
|
|
557
|
+
color: var(--color-text-body, #121313);
|
|
558
|
+
}
|
|
559
|
+
.pv-v2 .pv-button-secondary-outline.pv-button-inverse:active {
|
|
560
|
+
color: var(--color-text-body, #121313);
|
|
561
|
+
background-color: var(--color-background-interactive, #A8E6E1);
|
|
562
|
+
}
|
|
563
|
+
.pv-v2 .pv-button-xsmall {
|
|
564
|
+
padding: var(--button-xsmall-padding, calc(0.125rem - 1px) 0.25rem);
|
|
565
|
+
}
|
|
566
|
+
.pv-v2 .pv-button-small {
|
|
567
|
+
padding: var(--button-small-padding, calc(0.125rem - 1px) 0.25rem);
|
|
568
|
+
}
|
|
569
|
+
.pv-v2 .pv-button-small.pv-button-primary-outline {
|
|
570
|
+
padding: calc(0.25rem - 1px) 0.5rem;
|
|
571
|
+
}
|
|
572
|
+
.pv-v2 .pv-button-large {
|
|
573
|
+
padding: var(--button-large-padding, calc(0.5rem - 1px) 0.75rem);
|
|
574
|
+
gap: var(--button-large-gap, 0.5rem);
|
|
575
|
+
}
|
|
576
|
+
.pv-v2 [class*=pv-button]:not(.pv-button-icon):has(svg:is(:only-child)) {
|
|
577
|
+
padding: var(--button-icon-only-padding, calc(0.25rem - 1px));
|
|
578
|
+
}
|
|
579
|
+
.pv-v2 [class*=pv-button]:not(.pv-button-icon):has(svg:is(:only-child)).pv-button-small {
|
|
580
|
+
padding: var(--button-small-icon-only-padding, calc(0.125rem - 1px));
|
|
581
|
+
}
|
|
582
|
+
.pv-v2 [class*=pv-button]:not(.pv-button-icon):has(svg:is(:only-child)).pv-button-large {
|
|
583
|
+
padding: var(--button-large-icon-only-padding, calc(0.5rem - 1px));
|
|
584
|
+
}
|
|
585
|
+
.pv-v2 .pv-button-icon {
|
|
586
|
+
padding: 0.5rem;
|
|
587
|
+
border-radius: 4px;
|
|
588
|
+
display: grid;
|
|
589
|
+
place-items: center;
|
|
590
|
+
color: currentColor;
|
|
591
|
+
background-color: transparent;
|
|
592
|
+
}
|
|
593
|
+
.pv-v2 .pv-button-icon:hover, .pv-v2 .pv-button-icon:focus-visible {
|
|
594
|
+
background-color: #E8F2F4;
|
|
595
|
+
}
|
|
596
|
+
.pv-v2 .pv-button-icon:active {
|
|
597
|
+
background-color: #C7D8DB;
|
|
598
|
+
}
|
|
599
|
+
.pv-v2 .pv-button-icon:disabled {
|
|
600
|
+
color: #7D898D;
|
|
601
|
+
background-color: #ECECEC;
|
|
602
|
+
}
|
|
603
|
+
.pv-v2 .pv-button-icon.pv-button-small {
|
|
604
|
+
padding: calc(0.25rem - 1px);
|
|
605
|
+
}
|
|
606
|
+
.pv-v2 .pv-button-icon.pv-button-xsmall {
|
|
607
|
+
padding: calc(0.125rem - 1px);
|
|
608
|
+
}
|
|
609
|
+
.pv-v2 .pv-button-icon-outline {
|
|
610
|
+
background-color: #F7F8F8;
|
|
611
|
+
border: 1px solid #E3E7EA;
|
|
612
|
+
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
|
|
613
|
+
color: #121313;
|
|
614
|
+
font-size: 0.8rem;
|
|
615
|
+
height: 2.5rem;
|
|
616
|
+
padding: 0.5rem 0.7rem;
|
|
617
|
+
}
|
|
618
|
+
.pv-v2 .pv-button-icon-outline:hover, .pv-v2 .pv-button-icon-outline:focus-visible {
|
|
619
|
+
background-color: #FFFFFF;
|
|
620
|
+
box-shadow: 0px 12px 16px 0px rgba(0, 0, 0, 0.1), 0px 8px 12px -4px rgba(0, 0, 0, 0.08), 0px 0px 1px 0 rgba(0, 0, 0, 0.3);
|
|
621
|
+
transition-duration: 0.3s;
|
|
622
|
+
transition-property: box-shadow;
|
|
623
|
+
}
|
|
624
|
+
.pv-v2 [class*=pv-button-link] {
|
|
625
|
+
color: var(--button-link-color, #16696D);
|
|
626
|
+
padding: 0;
|
|
627
|
+
border-radius: 0;
|
|
628
|
+
font-weight: var(--button-font-weight, 500);
|
|
629
|
+
}
|
|
630
|
+
.pv-v2 [class*=pv-button-link]:not(:disabled) {
|
|
631
|
+
border-bottom: 2px solid currentColor;
|
|
632
|
+
}
|
|
633
|
+
.pv-v2 [class*=pv-button-link]:hover:not(:disabled), .pv-v2 [class*=pv-button-link]:focus-visible:not(:disabled) {
|
|
634
|
+
color: var(--button-link-hover-color, #0D5256);
|
|
635
|
+
}
|
|
636
|
+
.pv-v2 [class*=pv-button-link]:hover, .pv-v2 [class*=pv-button-link]:focus-visible {
|
|
637
|
+
text-decoration: none;
|
|
638
|
+
}
|
|
639
|
+
.pv-v2 [class*=pv-button-link]:disabled {
|
|
640
|
+
color: #4B595C;
|
|
641
|
+
background-color: transparent;
|
|
642
|
+
}
|
|
643
|
+
.pv-v2 [class*=pv-button-link].pv-button-inverse {
|
|
644
|
+
color: var(--button-link-inverse-color, #FFFFFF);
|
|
645
|
+
}
|
|
646
|
+
.pv-v2 [class*=pv-button-link].pv-button-inverse:hover:not(:disabled), .pv-v2 [class*=pv-button-link].pv-button-inverse:focus-visible:not(:disabled) {
|
|
647
|
+
color: var(--button-link-inverse-hover-color, #A8E6E1);
|
|
648
|
+
}
|
|
649
|
+
.pv-v2 [class*=pv-button-link].pv-button-inverse:disabled {
|
|
650
|
+
color: var(--button-link-inverse-disabled-color, #6E7784);
|
|
651
|
+
}
|
|
652
|
+
.pv-v2 .pv-button-link-destructive {
|
|
653
|
+
color: var(--button-link-destructive-color, #801A00);
|
|
654
|
+
}
|
|
655
|
+
.pv-v2 .pv-button-link-destructive:not(:disabled):hover, .pv-v2 .pv-button-link-destructive:not(:disabled):focus-visible {
|
|
656
|
+
color: var(--button-link-destructive-hover-color, #801A00);
|
|
657
|
+
}
|
|
658
|
+
.pv-v2 [class*=pv-segmented-control] {
|
|
659
|
+
padding: 0.125rem;
|
|
660
|
+
background-color: #F0F2F2;
|
|
661
|
+
border-radius: 4px;
|
|
662
|
+
display: inline-flex;
|
|
663
|
+
align-items: center;
|
|
664
|
+
gap: 0.125rem;
|
|
665
|
+
}
|
|
666
|
+
.pv-v2 [class*=pv-segmented-control] button {
|
|
667
|
+
padding: 0.125rem 0.5rem;
|
|
668
|
+
gap: 0.125rem;
|
|
669
|
+
}
|
|
670
|
+
.pv-v2 [class*=pv-segmented-control] button[data-active],
|
|
671
|
+
.pv-v2 [class*=pv-segmented-control] button:hover:not(:disabled) {
|
|
672
|
+
box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.1);
|
|
673
|
+
}
|
|
674
|
+
.pv-v2 [class*=pv-segmented-control] button[data-active] {
|
|
675
|
+
background-color: #FFFFFF;
|
|
676
|
+
}
|
|
677
|
+
.pv-v2 [class*=pv-segmented-control] button:hover:not(:disabled),
|
|
678
|
+
.pv-v2 [class*=pv-segmented-control] button:focus-visible:not(:disabled) {
|
|
679
|
+
background-color: #E8F2F4;
|
|
680
|
+
}
|
|
681
|
+
.pv-v2 [class*=pv-segmented-control] button:active:not(:disabled) {
|
|
682
|
+
background-color: #C7D8DB;
|
|
683
|
+
}
|
|
684
|
+
.pv-v2 .pv-segmented-control-icon button {
|
|
685
|
+
padding: 0.125rem;
|
|
686
|
+
}
|
|
687
|
+
.pv-v2 .pv-segmented-control-large {
|
|
688
|
+
padding: 0.25rem;
|
|
689
|
+
}
|
|
690
|
+
.pv-v2 .pv-segmented-control-large button {
|
|
691
|
+
padding: 0.25rem 0.5rem;
|
|
692
|
+
}
|
|
693
|
+
.pv-v2 .pv-segmented-control-large.pv-segmented-control-icon button {
|
|
694
|
+
padding: 0.25rem;
|
|
695
|
+
}
|
|
696
|
+
.pv-v2 .pv-button-transformer {
|
|
697
|
+
gap: 2px;
|
|
698
|
+
transition-duration: 0.125s;
|
|
699
|
+
transition-property: background-color, box-shadow;
|
|
700
|
+
transition-timing-function: ease-in-out;
|
|
701
|
+
}
|
|
702
|
+
.pv-v2 .pv-button-transformer span {
|
|
703
|
+
width: 0;
|
|
704
|
+
height: 0;
|
|
705
|
+
padding: 0;
|
|
706
|
+
margin: -1px;
|
|
707
|
+
overflow: hidden;
|
|
708
|
+
clip: rect(0, 0, 0, 0);
|
|
709
|
+
white-space: nowrap;
|
|
710
|
+
border: 0;
|
|
711
|
+
position: absolute;
|
|
712
|
+
opacity: 0;
|
|
713
|
+
transition-duration: 0.3s;
|
|
714
|
+
transition-property: transform, width;
|
|
715
|
+
transition-timing-function: ease-in-out;
|
|
716
|
+
transform: translateX(4px);
|
|
717
|
+
}
|
|
718
|
+
.pv-v2 .pv-button-transformer svg {
|
|
719
|
+
display: block;
|
|
720
|
+
transition-duration: 0.125s;
|
|
721
|
+
transition-property: transform;
|
|
722
|
+
transition-timing-function: ease-in-out;
|
|
723
|
+
}
|
|
724
|
+
.pv-v2 .pv-button-transformer:hover span, .pv-v2 .pv-button-transformer:focus-visible span {
|
|
725
|
+
width: unset;
|
|
726
|
+
height: unset;
|
|
727
|
+
padding: unset;
|
|
728
|
+
margin: unset;
|
|
729
|
+
overflow: unset;
|
|
730
|
+
clip: unset;
|
|
731
|
+
white-space: unset;
|
|
732
|
+
border: unset;
|
|
733
|
+
position: unset;
|
|
734
|
+
min-width: 2rem;
|
|
735
|
+
opacity: 1;
|
|
736
|
+
transition-duration: 0.3s;
|
|
737
|
+
transition-property: opacity, transform, width;
|
|
738
|
+
transform: translateX(0);
|
|
739
|
+
}
|
|
740
|
+
.pv-v2 .pv-button-shadow {
|
|
741
|
+
box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.05), 0px 4px 6px -2px rgba(0, 0, 0, 0.04), 0px 0px 0px 0 rgba(0, 0, 0, 0.15);
|
|
742
|
+
}
|
|
743
|
+
.pv-v2 [class*=pv-button-floating] {
|
|
744
|
+
--right: 1rem;
|
|
745
|
+
--bottom: 1rem;
|
|
746
|
+
position: absolute;
|
|
747
|
+
right: var(--right);
|
|
748
|
+
bottom: var(--bottom);
|
|
749
|
+
z-index: 50;
|
|
750
|
+
background-color: #16696D;
|
|
751
|
+
color: #FFFFFF;
|
|
752
|
+
width: 3rem;
|
|
753
|
+
aspect-ratio: 1;
|
|
754
|
+
border-radius: 50%;
|
|
755
|
+
padding: 0.75rem;
|
|
756
|
+
box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.05), 0px 4px 6px -2px rgba(0, 0, 0, 0.04), 0px 0px 0px 0 rgba(0, 0, 0, 0.15);
|
|
757
|
+
}
|
|
758
|
+
.pv-v2 [class*=pv-button-floating]:hover:not(:disabled), .pv-v2 [class*=pv-button-floating]:focus-visible:not(:disabled) {
|
|
759
|
+
background-color: #02363D;
|
|
760
|
+
}
|
|
761
|
+
.pv-v2 [class*=pv-button-floating]:active:not(:disabled) {
|
|
762
|
+
background-color: #02363D;
|
|
763
|
+
}
|
|
764
|
+
.pv-v2 [class*=pv-button-floating]:disabled {
|
|
765
|
+
background-color: #6E7784;
|
|
766
|
+
}
|
|
767
|
+
.pv-v2 [class*=pv-button-floating].pv-button-small {
|
|
768
|
+
width: 2rem;
|
|
769
|
+
padding: 0.5rem;
|
|
770
|
+
}
|
|
771
|
+
.pv-v2 .pv-button-floating-on-dark {
|
|
772
|
+
background-color: #A8E6E1;
|
|
773
|
+
color: #121313;
|
|
774
|
+
}
|
|
775
|
+
.pv-v2 .pv-button-floating-on-dark:hover:not(:disabled), .pv-v2 .pv-button-floating-on-dark:focus-visible:not(:disabled) {
|
|
776
|
+
background-color: #E8F2F4;
|
|
777
|
+
}
|
|
778
|
+
.pv-v2 .pv-button-floating-on-dark:active:not(:disabled) {
|
|
779
|
+
background-color: #6FD6CE;
|
|
780
|
+
}
|
|
781
|
+
.pv-v2 .pv-button-floating-on-dark:disabled {
|
|
782
|
+
background-color: #DCDFE4;
|
|
783
|
+
}
|
|
784
|
+
.pv-v2 .pv-alpha-button,
|
|
785
|
+
.pv-v2 [data-collapsed] .pv-alpha-button {
|
|
786
|
+
width: min-content;
|
|
787
|
+
background-color: #FFFFFF;
|
|
788
|
+
border-radius: 4px;
|
|
789
|
+
border: 0;
|
|
790
|
+
padding: 0.5rem;
|
|
791
|
+
display: flex;
|
|
792
|
+
align-items: center;
|
|
793
|
+
justify-content: space-between;
|
|
794
|
+
cursor: pointer;
|
|
795
|
+
}
|
|
796
|
+
.pv-v2 .pv-alpha-button span:first-child,
|
|
797
|
+
.pv-v2 [data-collapsed] .pv-alpha-button span:first-child {
|
|
798
|
+
display: none;
|
|
799
|
+
font-size: 0.9375rem;
|
|
800
|
+
font-weight: 600;
|
|
801
|
+
}
|
|
802
|
+
.pv-v2 .pv-alpha-button span:last-child,
|
|
803
|
+
.pv-v2 [data-collapsed] .pv-alpha-button span:last-child {
|
|
804
|
+
display: inline-block;
|
|
805
|
+
background-color: #FFEB99;
|
|
806
|
+
border-radius: 4px;
|
|
807
|
+
padding: 0.125rem;
|
|
808
|
+
font-size: 0.6875rem;
|
|
809
|
+
line-height: 1rem;
|
|
810
|
+
font-weight: 700;
|
|
811
|
+
text-transform: uppercase;
|
|
812
|
+
}
|
|
813
|
+
.pv-v2 .pv-alpha-button:hover, .pv-v2 .pv-alpha-button:focus-visible, .pv-v2 .pv-alpha-button:active,
|
|
814
|
+
.pv-v2 [data-collapsed] .pv-alpha-button:hover,
|
|
815
|
+
.pv-v2 [data-collapsed] .pv-alpha-button:focus-visible,
|
|
816
|
+
.pv-v2 [data-collapsed] .pv-alpha-button:active {
|
|
817
|
+
background-color: #176F6F;
|
|
818
|
+
}
|
|
819
|
+
.pv-v2 .pv-alpha-button:hover span:first-child, .pv-v2 .pv-alpha-button:focus-visible span:first-child, .pv-v2 .pv-alpha-button:active span:first-child,
|
|
820
|
+
.pv-v2 [data-collapsed] .pv-alpha-button:hover span:first-child,
|
|
821
|
+
.pv-v2 [data-collapsed] .pv-alpha-button:focus-visible span:first-child,
|
|
822
|
+
.pv-v2 [data-collapsed] .pv-alpha-button:active span:first-child {
|
|
823
|
+
color: #FFFFFF;
|
|
824
|
+
}
|
|
825
|
+
.pv-v2 .pv-alpha-button:active,
|
|
826
|
+
.pv-v2 [data-collapsed] .pv-alpha-button:active {
|
|
827
|
+
background-color: #0D5256;
|
|
828
|
+
}
|
|
829
|
+
@media (width >= 768px) {
|
|
830
|
+
.pv-v2 .pv-alpha-button {
|
|
831
|
+
width: 100%;
|
|
832
|
+
}
|
|
833
|
+
.pv-v2 .pv-alpha-button span:first-child {
|
|
834
|
+
display: inline-block;
|
|
835
|
+
}
|
|
836
|
+
.pv-v2 .pv-alpha-button span:last-child {
|
|
837
|
+
padding: 0.125rem 0.5rem;
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
.pv-v2 .pv-input-text,
|
|
841
|
+
.pv-v2 .pv-input-search,
|
|
842
|
+
.pv-v2 .pv-input-date,
|
|
843
|
+
.pv-v2 .pv-textarea,
|
|
844
|
+
.pv-v2 .pv-select,
|
|
845
|
+
.pv-v2 .pv-select-multiple {
|
|
846
|
+
color: #121313;
|
|
847
|
+
padding: var(--text-input-padding, calc(0.5rem - 1px) 0.75rem);
|
|
848
|
+
font-size: var(--text-input-font-size, 0.75rem);
|
|
849
|
+
line-height: var(--text-input-line-height, 1.33333333);
|
|
850
|
+
border: var(--text-input-border-width, 1px) solid var(--text-input-border-color, #E3E7EA);
|
|
851
|
+
border-radius: var(--text-input-radius, 4px);
|
|
852
|
+
appearance: none;
|
|
853
|
+
background-color: #fff;
|
|
854
|
+
width: 100%;
|
|
855
|
+
min-width: fit-content;
|
|
856
|
+
transition-duration: 0.125s;
|
|
857
|
+
transition-property: background-color, border-color, color;
|
|
858
|
+
}
|
|
859
|
+
.pv-v2 .pv-input-text:not(:disabled, [data-invalid]):hover,
|
|
860
|
+
.pv-v2 .pv-input-search:not(:disabled, [data-invalid]):hover,
|
|
861
|
+
.pv-v2 .pv-input-date:not(:disabled, [data-invalid]):hover,
|
|
862
|
+
.pv-v2 .pv-textarea:not(:disabled, [data-invalid]):hover,
|
|
863
|
+
.pv-v2 .pv-select:not(:disabled, [data-invalid]):hover,
|
|
864
|
+
.pv-v2 .pv-select-multiple:not(:disabled, [data-invalid]):hover {
|
|
865
|
+
border-color: var(--text-input-hover-border-color, #D2D8DC);
|
|
866
|
+
}
|
|
867
|
+
.pv-v2 .pv-input-text:not(:disabled, [data-invalid]):focus-visible,
|
|
868
|
+
.pv-v2 .pv-input-search:not(:disabled, [data-invalid]):focus-visible,
|
|
869
|
+
.pv-v2 .pv-input-date:not(:disabled, [data-invalid]):focus-visible,
|
|
870
|
+
.pv-v2 .pv-textarea:not(:disabled, [data-invalid]):focus-visible,
|
|
871
|
+
.pv-v2 .pv-select:not(:disabled, [data-invalid]):focus-visible,
|
|
872
|
+
.pv-v2 .pv-select-multiple:not(:disabled, [data-invalid]):focus-visible {
|
|
873
|
+
border-color: var(--text-input-focus-border-color, #36C5BA);
|
|
874
|
+
outline: none;
|
|
875
|
+
}
|
|
876
|
+
.pv-v2 .pv-input-text[data-invalid], .pv-v2 .pv-input-text:user-invalid,
|
|
877
|
+
.pv-v2 .pv-input-search[data-invalid],
|
|
878
|
+
.pv-v2 .pv-input-search:user-invalid,
|
|
879
|
+
.pv-v2 .pv-input-date[data-invalid],
|
|
880
|
+
.pv-v2 .pv-input-date:user-invalid,
|
|
881
|
+
.pv-v2 .pv-textarea[data-invalid],
|
|
882
|
+
.pv-v2 .pv-textarea:user-invalid,
|
|
883
|
+
.pv-v2 .pv-select[data-invalid],
|
|
884
|
+
.pv-v2 .pv-select:user-invalid,
|
|
885
|
+
.pv-v2 .pv-select-multiple[data-invalid],
|
|
886
|
+
.pv-v2 .pv-select-multiple:user-invalid {
|
|
887
|
+
border-color: var(--text-input-error-border-color, #FF471A);
|
|
888
|
+
background-image: var(--text-input-error-image, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1c6.071 0 11 4.929 11 11s-4.929 11-11 11S1 18.071 1 12 5.929 1 12 1Zm0 2c-4.967 0-9 4.033-9 9s4.033 9 9 9 9-4.033 9-9-4.033-9-9-9Zm0 12.042a1 1 0 1 1 0 2 1 1 0 0 1 0-2ZM11 8a1 1 0 0 1 2 0v4a1 1 0 0 1-2 0V8Z' fill='%23FF471A'/%3E%3C/svg%3E"));
|
|
889
|
+
background-repeat: no-repeat;
|
|
890
|
+
background-size: 1rem 1rem;
|
|
891
|
+
background-position: right 0.5rem center;
|
|
892
|
+
padding-inline-end: 2rem;
|
|
893
|
+
}
|
|
894
|
+
.pv-v2 .pv-input-text[data-invalid].pv-text-right, .pv-v2 .pv-input-text.pv-text-right:user-invalid,
|
|
895
|
+
.pv-v2 .pv-input-search[data-invalid].pv-text-right,
|
|
896
|
+
.pv-v2 .pv-input-search.pv-text-right:user-invalid,
|
|
897
|
+
.pv-v2 .pv-input-date[data-invalid].pv-text-right,
|
|
898
|
+
.pv-v2 .pv-input-date.pv-text-right:user-invalid,
|
|
899
|
+
.pv-v2 .pv-textarea[data-invalid].pv-text-right,
|
|
900
|
+
.pv-v2 .pv-textarea.pv-text-right:user-invalid,
|
|
901
|
+
.pv-v2 .pv-select[data-invalid].pv-text-right,
|
|
902
|
+
.pv-v2 .pv-select.pv-text-right:user-invalid,
|
|
903
|
+
.pv-v2 .pv-select-multiple[data-invalid].pv-text-right,
|
|
904
|
+
.pv-v2 .pv-select-multiple.pv-text-right:user-invalid {
|
|
905
|
+
background-position: left 0.5rem center;
|
|
906
|
+
padding-inline-end: 0.75rem;
|
|
907
|
+
padding-inline-start: 2rem;
|
|
908
|
+
}
|
|
909
|
+
.pv-v2 .pv-input-text:disabled, .pv-v2 .pv-input-text[readonly],
|
|
910
|
+
.pv-v2 .pv-input-search:disabled,
|
|
911
|
+
.pv-v2 .pv-input-search[readonly],
|
|
912
|
+
.pv-v2 .pv-input-date:disabled,
|
|
913
|
+
.pv-v2 .pv-input-date[readonly],
|
|
914
|
+
.pv-v2 .pv-textarea:disabled,
|
|
915
|
+
.pv-v2 .pv-textarea[readonly],
|
|
916
|
+
.pv-v2 .pv-select:disabled,
|
|
917
|
+
.pv-v2 .pv-select[readonly],
|
|
918
|
+
.pv-v2 .pv-select-multiple:disabled,
|
|
919
|
+
.pv-v2 .pv-select-multiple[readonly] {
|
|
920
|
+
color: var(--text-input-disabled-text-color, #7D898D);
|
|
921
|
+
background-color: var(--text-input-disabled-background-color, #ECECEC);
|
|
922
|
+
}
|
|
923
|
+
.pv-v2 .pv-input-search::placeholder {
|
|
924
|
+
color: var(--text-input-placeholder-color, #89989B);
|
|
925
|
+
}
|
|
926
|
+
.pv-v2 .pv-input-search {
|
|
927
|
+
padding-inline-start: 2.25rem;
|
|
928
|
+
background-image: var(--search-background-image, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2302363D' d='m18.032 16.618 3.675 3.675a1 1 0 0 1-1.414 1.414l-3.675-3.675A8.961 8.961 0 0 1 11 20a9 9 0 0 1-9-9 9 9 0 0 1 9-9 9 9 0 0 1 9 9 8.961 8.961 0 0 1-1.968 5.618ZM18 11a7 7 0 1 0-14 0 7 7 0 0 0 14 0Z'/%3E%3C/svg%3E"));
|
|
929
|
+
background-repeat: no-repeat;
|
|
930
|
+
background-size: 1rem 1rem;
|
|
931
|
+
background-position: top 50% left 0.75rem;
|
|
932
|
+
background-color: #F7F8F8;
|
|
933
|
+
border-radius: 8px;
|
|
934
|
+
border-color: transparent;
|
|
935
|
+
}
|
|
936
|
+
.pv-v2 .pv-input-search:hover:not(:disabled) {
|
|
937
|
+
box-shadow: 0px 0.25px 3px 0px rgba(0, 0, 0, 0.2);
|
|
938
|
+
}
|
|
939
|
+
.pv-v2 .pv-input-search:focus-visible {
|
|
940
|
+
border-color: #36C5BA;
|
|
941
|
+
}
|
|
942
|
+
.pv-v2 .pv-select,
|
|
943
|
+
.pv-v2 .pv-select-multiple {
|
|
944
|
+
padding-inline-end: 2rem;
|
|
945
|
+
background-repeat: no-repeat;
|
|
946
|
+
background-size: 1rem 1rem;
|
|
947
|
+
background-position: top 50% right 0.5rem;
|
|
948
|
+
text-align: unset;
|
|
949
|
+
}
|
|
950
|
+
.pv-v2 .pv-select:not(:disabled, [data-invalid]):focus-visible, .pv-v2 .pv-select:not(:disabled, [data-invalid]):hover,
|
|
951
|
+
.pv-v2 .pv-select-multiple:not(:disabled, [data-invalid]):focus-visible,
|
|
952
|
+
.pv-v2 .pv-select-multiple:not(:disabled, [data-invalid]):hover {
|
|
953
|
+
cursor: pointer;
|
|
954
|
+
}
|
|
955
|
+
.pv-v2 .pv-select:disabled, .pv-v2 .pv-select:disabled > option,
|
|
956
|
+
.pv-v2 .pv-select-multiple:disabled,
|
|
957
|
+
.pv-v2 .pv-select-multiple:disabled > option {
|
|
958
|
+
color: #121313;
|
|
959
|
+
opacity: 1;
|
|
960
|
+
}
|
|
961
|
+
.pv-v2 .pv-select {
|
|
962
|
+
background-image: var(--select-background-image, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2302363D' d='m7.1 9.9 4.3 5.1c.1.1.2.1.3.2.1 0 .2.1.3.1s.2 0 .3-.1c.1 0 .2-.1.3-.2L17 9.9c.4-.5.1-1.2-.6-1.2H7.6c-.6 0-1 .8-.5 1.2z'/%3E%3C/svg%3E"));
|
|
963
|
+
}
|
|
964
|
+
.pv-v2 .pv-select-multiple {
|
|
965
|
+
background-image: var(--select-multiple-closed-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.151 8.151a1.2 1.2 0 0 1 1.698 0L12 13.303l5.151-5.152A1.2 1.2 0 1 1 18.85 9.85l-6 6a1.2 1.2 0 0 1-1.697 0l-6-6a1.2 1.2 0 0 1 0-1.698Z' fill='%2302363D'/%3E%3C/svg%3E"));
|
|
966
|
+
}
|
|
967
|
+
.pv-v2 .pv-textarea {
|
|
968
|
+
--resize: vertical;
|
|
969
|
+
resize: var(--resize);
|
|
970
|
+
}
|
|
971
|
+
.pv-v2 .pv-label,
|
|
972
|
+
.pv-v2 .pv-input-group > label {
|
|
973
|
+
font-size: var(--label-font-size, 0.6875rem);
|
|
974
|
+
font-weight: var(--label-font-weight, 400);
|
|
975
|
+
letter-spacing: 0.12px;
|
|
976
|
+
position: relative;
|
|
977
|
+
z-index: 1;
|
|
978
|
+
}
|
|
979
|
+
.pv-v2 label:has(input:not(:disabled)).pv-label-hover:hover {
|
|
980
|
+
cursor: pointer;
|
|
981
|
+
}
|
|
982
|
+
.pv-v2 .pv-checkbox,
|
|
983
|
+
.pv-v2 .pv-radio {
|
|
984
|
+
position: relative;
|
|
985
|
+
appearance: none;
|
|
986
|
+
width: 1rem;
|
|
987
|
+
height: 1rem;
|
|
988
|
+
background-color: #FFFFFF;
|
|
989
|
+
border: 2px solid var(--checkbox-border, #D2D8DC);
|
|
990
|
+
flex-shrink: 0;
|
|
991
|
+
transition-duration: 0.125s;
|
|
992
|
+
transition-property: background-color, border-color;
|
|
993
|
+
}
|
|
994
|
+
.pv-v2 .pv-checkbox + span,
|
|
995
|
+
.pv-v2 .pv-radio + span {
|
|
996
|
+
font-weight: 400;
|
|
997
|
+
transition-duration: 0.125s;
|
|
998
|
+
transition-property: color;
|
|
999
|
+
}
|
|
1000
|
+
.pv-v2 .pv-checkbox:not(:disabled):focus-visible, .pv-v2 .pv-checkbox:not(:disabled):hover,
|
|
1001
|
+
.pv-v2 .pv-radio:not(:disabled):focus-visible,
|
|
1002
|
+
.pv-v2 .pv-radio:not(:disabled):hover {
|
|
1003
|
+
background-color: var(--checkbox-hover-background-color, #F7F8F8);
|
|
1004
|
+
border-color: var(--checkbox-hover-border-color, #D2D8DC);
|
|
1005
|
+
cursor: pointer;
|
|
1006
|
+
outline-color: var(--checkbox-hover-outline-color, transparent);
|
|
1007
|
+
}
|
|
1008
|
+
.pv-v2 .pv-checkbox:not(:disabled):focus-visible:checked, .pv-v2 .pv-checkbox:not(:disabled):focus-visible:indeterminate, .pv-v2 .pv-checkbox:not(:disabled):hover:checked, .pv-v2 .pv-checkbox:not(:disabled):hover:indeterminate,
|
|
1009
|
+
.pv-v2 .pv-radio:not(:disabled):focus-visible:checked,
|
|
1010
|
+
.pv-v2 .pv-radio:not(:disabled):focus-visible:indeterminate,
|
|
1011
|
+
.pv-v2 .pv-radio:not(:disabled):hover:checked,
|
|
1012
|
+
.pv-v2 .pv-radio:not(:disabled):hover:indeterminate {
|
|
1013
|
+
border-color: var(--checkbox-checked-hover-border-color, #0D5256);
|
|
1014
|
+
background-color: var(--checkbox-checked-hover-background-color, #0D5256);
|
|
1015
|
+
}
|
|
1016
|
+
.pv-v2 .pv-checkbox:not(:disabled):focus-visible:checked:before, .pv-v2 .pv-checkbox:not(:disabled):focus-visible:indeterminate:before, .pv-v2 .pv-checkbox:not(:disabled):hover:checked:before, .pv-v2 .pv-checkbox:not(:disabled):hover:indeterminate:before,
|
|
1017
|
+
.pv-v2 .pv-radio:not(:disabled):focus-visible:checked:before,
|
|
1018
|
+
.pv-v2 .pv-radio:not(:disabled):focus-visible:indeterminate:before,
|
|
1019
|
+
.pv-v2 .pv-radio:not(:disabled):hover:checked:before,
|
|
1020
|
+
.pv-v2 .pv-radio:not(:disabled):hover:indeterminate:before {
|
|
1021
|
+
background-color: var(--checkbox-checked-hover-before-background-color, #E4F8F6);
|
|
1022
|
+
}
|
|
1023
|
+
.pv-v2 .pv-checkbox:not(:disabled):active,
|
|
1024
|
+
.pv-v2 .pv-radio:not(:disabled):active {
|
|
1025
|
+
background-color: var(--checkbox-pressed-background-color, #C7D8DB);
|
|
1026
|
+
}
|
|
1027
|
+
.pv-v2 .pv-checkbox:not(:disabled):active:checked, .pv-v2 .pv-checkbox:not(:disabled):active:indeterminate,
|
|
1028
|
+
.pv-v2 .pv-radio:not(:disabled):active:checked,
|
|
1029
|
+
.pv-v2 .pv-radio:not(:disabled):active:indeterminate {
|
|
1030
|
+
background-color: var(--checkbox-checked-pressed-background-color, #02363D);
|
|
1031
|
+
}
|
|
1032
|
+
.pv-v2 .pv-checkbox:checked, .pv-v2 .pv-checkbox:indeterminate,
|
|
1033
|
+
.pv-v2 .pv-radio:checked,
|
|
1034
|
+
.pv-v2 .pv-radio:indeterminate {
|
|
1035
|
+
background-color: var(--checkbox-checked-background-color, #16696D);
|
|
1036
|
+
border-color: var(--checkbox-checked-border-color, #16696D);
|
|
1037
|
+
}
|
|
1038
|
+
.pv-v2 .pv-checkbox:disabled,
|
|
1039
|
+
.pv-v2 .pv-radio:disabled {
|
|
1040
|
+
background-color: var(--checkbox-disabled-background-color, #ECECEC);
|
|
1041
|
+
}
|
|
1042
|
+
.pv-v2 .pv-checkbox:disabled:checked,
|
|
1043
|
+
.pv-v2 .pv-radio:disabled:checked {
|
|
1044
|
+
background-color: var(--checkbox-checked-disabled-background-color, #ECECEC);
|
|
1045
|
+
border-color: var(--checkbox-checked-disabled-border-color, #ECECEC);
|
|
1046
|
+
}
|
|
1047
|
+
.pv-v2 .pv-checkbox:disabled + span,
|
|
1048
|
+
.pv-v2 .pv-radio:disabled + span {
|
|
1049
|
+
color: #4B595C;
|
|
1050
|
+
}
|
|
1051
|
+
.pv-v2 .pv-checkbox {
|
|
1052
|
+
border-radius: 2px;
|
|
1053
|
+
}
|
|
1054
|
+
.pv-v2 .pv-checkbox:checked, .pv-v2 .pv-checkbox:indeterminate {
|
|
1055
|
+
background-repeat: no-repeat;
|
|
1056
|
+
background-size: 0.75rem;
|
|
1057
|
+
background-position: 50% 50%;
|
|
1058
|
+
}
|
|
1059
|
+
.pv-v2 .pv-checkbox:checked {
|
|
1060
|
+
background-image: var(--checkbox-checked-background-image, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.1 4.9c.6.6.6 1.5 0 2.1l-11 11c-.6.6-1.5.6-2.1 0l-5-5c-.6-.6-.6-1.5 0-2.1.6-.6 1.5-.6 2.1 0l3.9 4L18.9 5c.6-.6 1.6-.6 2.2-.1z' fill='%23fff'/%3E%3C/svg%3E"));
|
|
1061
|
+
}
|
|
1062
|
+
.pv-v2 .pv-checkbox:checked:disabled {
|
|
1063
|
+
background-image: var(--checkbox-checked-disabled-background-image, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.1 4.9c.6.6.6 1.5 0 2.1l-11 11c-.6.6-1.5.6-2.1 0l-5-5c-.6-.6-.6-1.5 0-2.1.6-.6 1.5-.6 2.1 0l3.9 4L18.9 5c.6-.6 1.6-.6 2.2-.1z' fill='%237D898D'/%3E%3C/svg%3E"));
|
|
1064
|
+
}
|
|
1065
|
+
.pv-v2 .pv-checkbox:indeterminate {
|
|
1066
|
+
background-image: var(--checkbox-indeterminate-background-image, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.5a.5.5 0 0 1 0-1h7a.5.5 0 0 1 0 1h-7Z' fill='%23fff'/%3E%3C/svg%3E"));
|
|
1067
|
+
}
|
|
1068
|
+
.pv-v2 .pv-checkbox:indeterminate:disabled {
|
|
1069
|
+
background-image: var(--checkbox-indeterminate-disabled-background-image, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.5a.5.5 0 0 1 0-1h7a.5.5 0 0 1 0 1h-7Z' fill='%237D898D'/%3E%3C/svg%3E"));
|
|
1070
|
+
}
|
|
1071
|
+
.pv-v2 .pv-radio {
|
|
1072
|
+
position: relative;
|
|
1073
|
+
border-radius: 50%;
|
|
1074
|
+
}
|
|
1075
|
+
.pv-v2 .pv-radio:indeterminate {
|
|
1076
|
+
background-color: unset;
|
|
1077
|
+
border-color: var(--color-border, #E3E7EA);
|
|
1078
|
+
}
|
|
1079
|
+
.pv-v2 .pv-radio:checked {
|
|
1080
|
+
background-color: var(--radio-checked-background-color, transparent);
|
|
1081
|
+
}
|
|
1082
|
+
.pv-v2 .pv-radio:checked:not(:disabled):hover, .pv-v2 .pv-radio:checked:not(:disabled):focus-visible {
|
|
1083
|
+
background-color: var(--radio-checked-hover-background-color, #F7F8F8);
|
|
1084
|
+
}
|
|
1085
|
+
.pv-v2 .pv-radio:checked:after {
|
|
1086
|
+
content: "";
|
|
1087
|
+
display: block;
|
|
1088
|
+
width: var(--radio-checked-after-size, 8px);
|
|
1089
|
+
height: var(--radio-checked-after-size, 8px);
|
|
1090
|
+
background-color: var(--radio-checked-after-background-color, #16696D);
|
|
1091
|
+
position: absolute;
|
|
1092
|
+
top: 50%;
|
|
1093
|
+
left: 50%;
|
|
1094
|
+
transform: translate(-50%, -50%);
|
|
1095
|
+
border-radius: 50%;
|
|
1096
|
+
}
|
|
1097
|
+
.pv-v2 .pv-radio:disabled:checked {
|
|
1098
|
+
border-color: var(--radio-checked-disabled-border-color, #D2D8DC);
|
|
1099
|
+
}
|
|
1100
|
+
.pv-v2 .pv-radio:disabled:checked:after {
|
|
1101
|
+
background-color: var(--radio-checked-disabled-after-background-color, #D2D8DC);
|
|
1102
|
+
}
|
|
1103
|
+
.pv-v2 .pv-input-padded-end {
|
|
1104
|
+
padding-inline-end: 2rem;
|
|
1105
|
+
}
|
|
1106
|
+
.pv-v2 .pv-input-padded-end + * {
|
|
1107
|
+
position: absolute;
|
|
1108
|
+
right: 0.75rem;
|
|
1109
|
+
top: 50%;
|
|
1110
|
+
transform: translateY(-50%);
|
|
1111
|
+
}
|
|
1112
|
+
.pv-v2 .pv-input-file {
|
|
1113
|
+
background-color: #F7F8F8;
|
|
1114
|
+
padding: 0.75rem;
|
|
1115
|
+
border-radius: 4px;
|
|
1116
|
+
display: flex;
|
|
1117
|
+
align-items: center;
|
|
1118
|
+
gap: 0.75rem;
|
|
1119
|
+
}
|
|
1120
|
+
.pv-v2 .pv-input-file [type=file] {
|
|
1121
|
+
opacity: 0;
|
|
1122
|
+
width: 0.1rem;
|
|
1123
|
+
height: 0.1rem;
|
|
1124
|
+
position: absolute;
|
|
1125
|
+
}
|
|
1126
|
+
.pv-v2 .pv-switch {
|
|
1127
|
+
display: flex;
|
|
1128
|
+
align-items: center;
|
|
1129
|
+
gap: 1rem;
|
|
1130
|
+
flex-wrap: nowrap;
|
|
1131
|
+
}
|
|
1132
|
+
.pv-v2 .pv-switch input[type=checkbox] {
|
|
1133
|
+
appearance: none;
|
|
1134
|
+
background-color: #D9DEDE;
|
|
1135
|
+
border-color: transparent;
|
|
1136
|
+
border-radius: 1rem;
|
|
1137
|
+
display: flex;
|
|
1138
|
+
align-items: center;
|
|
1139
|
+
padding: 0;
|
|
1140
|
+
position: relative;
|
|
1141
|
+
height: 24px;
|
|
1142
|
+
width: 48px;
|
|
1143
|
+
}
|
|
1144
|
+
.pv-v2 .pv-switch input[type=checkbox]:not(:disabled):hover,
|
|
1145
|
+
.pv-v2 .pv-switch input[type=checkbox]:not(:disabled):focus-visible {
|
|
1146
|
+
background-color: #E8F2F4;
|
|
1147
|
+
cursor: pointer;
|
|
1148
|
+
}
|
|
1149
|
+
.pv-v2 .pv-switch input[type=checkbox]:not(:disabled):active {
|
|
1150
|
+
background-color: #C7D8DB;
|
|
1151
|
+
}
|
|
1152
|
+
.pv-v2 .pv-switch input[type=checkbox]:checked:not(:disabled):hover,
|
|
1153
|
+
.pv-v2 .pv-switch input[type=checkbox]:checked:not(:disabled):focus-visible {
|
|
1154
|
+
background-color: #0D5256;
|
|
1155
|
+
}
|
|
1156
|
+
.pv-v2 .pv-switch input[type=checkbox]:checked:not(:disabled):hover:after,
|
|
1157
|
+
.pv-v2 .pv-switch input[type=checkbox]:checked:not(:disabled):focus-visible:after {
|
|
1158
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.293 5.293a1 1 0 0 1 1.414 1.414l-11 11a.999.999 0 0 1-1.414 0l-5-5a1 1 0 0 1 1.414-1.414L9 15.586 19.293 5.293Z' fill='%230D5256'/%3E%3C/svg%3E");
|
|
1159
|
+
}
|
|
1160
|
+
.pv-v2 .pv-switch input[type=checkbox]:checked:not(:disabled):active {
|
|
1161
|
+
background-color: #02363D;
|
|
1162
|
+
}
|
|
1163
|
+
.pv-v2 .pv-switch input[type=checkbox]:checked:not(:disabled):active:after {
|
|
1164
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.293 5.293a1 1 0 0 1 1.414 1.414l-11 11a.999.999 0 0 1-1.414 0l-5-5a1 1 0 0 1 1.414-1.414L9 15.586 19.293 5.293Z' fill='%2302363D'/%3E%3C/svg%3E");
|
|
1165
|
+
}
|
|
1166
|
+
.pv-v2 .pv-switch input[type=checkbox]:disabled,
|
|
1167
|
+
.pv-v2 .pv-switch input[type=checkbox]:checked:disabled {
|
|
1168
|
+
background-color: #ECECEC;
|
|
1169
|
+
}
|
|
1170
|
+
.pv-v2 .pv-switch input[type=checkbox]:disabled:after,
|
|
1171
|
+
.pv-v2 .pv-switch input[type=checkbox]:checked:disabled:after {
|
|
1172
|
+
background-color: #C9D1D0;
|
|
1173
|
+
}
|
|
1174
|
+
.pv-v2 .pv-switch input[type=checkbox]:checked:disabled:after {
|
|
1175
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.293 5.293a1 1 0 0 1 1.414 1.414l-11 11a.999.999 0 0 1-1.414 0l-5-5a1 1 0 0 1 1.414-1.414L9 15.586 19.293 5.293Z' fill='%237D898D'/%3E%3C/svg%3E");
|
|
1176
|
+
}
|
|
1177
|
+
.pv-v2 .pv-switch input[type=checkbox]:after {
|
|
1178
|
+
background-color: #FFFFFF;
|
|
1179
|
+
border-radius: 50%;
|
|
1180
|
+
content: "";
|
|
1181
|
+
display: block;
|
|
1182
|
+
position: absolute;
|
|
1183
|
+
right: calc(100% - 20px - 2px);
|
|
1184
|
+
transition-property: transform, right;
|
|
1185
|
+
transition-duration: 0.3s;
|
|
1186
|
+
height: 20px;
|
|
1187
|
+
width: 20px;
|
|
1188
|
+
background-repeat: no-repeat;
|
|
1189
|
+
background-size: 1rem 1rem;
|
|
1190
|
+
background-position: center center;
|
|
1191
|
+
}
|
|
1192
|
+
.pv-v2 .pv-switch input[type=checkbox]:checked {
|
|
1193
|
+
background-color: #16696D;
|
|
1194
|
+
}
|
|
1195
|
+
.pv-v2 .pv-switch input[type=checkbox]:checked:after {
|
|
1196
|
+
background-color: #FFFFFF;
|
|
1197
|
+
right: 2px;
|
|
1198
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.293 5.293a1 1 0 0 1 1.414 1.414l-11 11a.999.999 0 0 1-1.414 0l-5-5a1 1 0 0 1 1.414-1.414L9 15.586 19.293 5.293Z' fill='%2316696D'/%3E%3C/svg%3E");
|
|
1199
|
+
}
|
|
1200
|
+
.pv-v2 .pv-switch.pv-input-small {
|
|
1201
|
+
padding: 0;
|
|
1202
|
+
}
|
|
1203
|
+
.pv-v2 .pv-switch.pv-input-small input[type=checkbox] {
|
|
1204
|
+
height: 20px;
|
|
1205
|
+
width: 40px;
|
|
1206
|
+
}
|
|
1207
|
+
.pv-v2 .pv-switch.pv-input-small input[type=checkbox]:after {
|
|
1208
|
+
right: calc(100% - 16px - 2px);
|
|
1209
|
+
height: 16px;
|
|
1210
|
+
width: 16px;
|
|
1211
|
+
}
|
|
1212
|
+
.pv-v2 .pv-switch.pv-input-small input[type=checkbox]:checked:after {
|
|
1213
|
+
right: 2px;
|
|
1214
|
+
}
|
|
1215
|
+
.pv-v2 [class*=pv-label-selectable] {
|
|
1216
|
+
cursor: pointer;
|
|
1217
|
+
background-color: #FFFFFF;
|
|
1218
|
+
border: 2px solid #E3E7EA;
|
|
1219
|
+
border-radius: 8px;
|
|
1220
|
+
font-weight: 400;
|
|
1221
|
+
padding: 1.5rem;
|
|
1222
|
+
transition-duration: 0.125s;
|
|
1223
|
+
transition-timing-function: ease-in;
|
|
1224
|
+
transition-property: border-color, color;
|
|
1225
|
+
}
|
|
1226
|
+
.pv-v2 [class*=pv-label-selectable]:hover, .pv-v2 [class*=pv-label-selectable]:focus-within {
|
|
1227
|
+
border-color: #36C5BA;
|
|
1228
|
+
color: #176F6F;
|
|
1229
|
+
}
|
|
1230
|
+
.pv-v2 [class*=pv-label-selectable]:hover .pv-text-subdued, .pv-v2 [class*=pv-label-selectable]:focus-within .pv-text-subdued {
|
|
1231
|
+
color: #176F6F;
|
|
1232
|
+
}
|
|
1233
|
+
.pv-v2 [class*=pv-label-selectable]:focus-within input {
|
|
1234
|
+
outline: none;
|
|
1235
|
+
}
|
|
1236
|
+
.pv-v2 [class*=pv-label-selectable]:has(:checked) {
|
|
1237
|
+
border-color: #36C5BA;
|
|
1238
|
+
}
|
|
1239
|
+
.pv-v2 .pv-label-selectable-small {
|
|
1240
|
+
border-radius: 4px;
|
|
1241
|
+
padding: 0.75rem 1.5rem;
|
|
1242
|
+
}
|
|
1243
|
+
.pv-v2 [class*=pv-toggle] {
|
|
1244
|
+
cursor: pointer;
|
|
1245
|
+
background-color: #FFFFFF;
|
|
1246
|
+
border: 2px solid #E3E7EA;
|
|
1247
|
+
border-radius: var(--button-radius, 4px);
|
|
1248
|
+
color: #121313;
|
|
1249
|
+
font-size: var(--button-font-size, 0.75rem);
|
|
1250
|
+
font-weight: var(--button-font-weight, 500);
|
|
1251
|
+
padding: 0.25rem 0.5rem;
|
|
1252
|
+
transition-duration: 0.125s;
|
|
1253
|
+
transition-timing-function: ease-in;
|
|
1254
|
+
transition-property: border-color, color;
|
|
1255
|
+
}
|
|
1256
|
+
.pv-v2 [class*=pv-toggle]:hover, .pv-v2 [class*=pv-toggle]:focus-within {
|
|
1257
|
+
background-color: #E8F2F4;
|
|
1258
|
+
border-color: #E8F2F4;
|
|
1259
|
+
color: #121313;
|
|
1260
|
+
}
|
|
1261
|
+
.pv-v2 [class*=pv-toggle]:active {
|
|
1262
|
+
background-color: #C7D8DB;
|
|
1263
|
+
border-color: #C7D8DB;
|
|
1264
|
+
color: #121313;
|
|
1265
|
+
}
|
|
1266
|
+
.pv-v2 [class*=pv-toggle]:focus-within input {
|
|
1267
|
+
outline: none;
|
|
1268
|
+
}
|
|
1269
|
+
.pv-v2 [class*=pv-toggle]:has(:checked) {
|
|
1270
|
+
background-color: #16696D;
|
|
1271
|
+
border-color: #16696D;
|
|
1272
|
+
color: #FFFFFF;
|
|
1273
|
+
}
|
|
1274
|
+
.pv-v2 [class*=pv-toggle]:has(:checked):hover, .pv-v2 [class*=pv-toggle]:has(:checked):focus-within {
|
|
1275
|
+
background-color: #0D5256;
|
|
1276
|
+
border-color: #0D5256;
|
|
1277
|
+
}
|
|
1278
|
+
.pv-v2 [class*=pv-toggle]:has(:checked):active {
|
|
1279
|
+
background-color: #02363D;
|
|
1280
|
+
border-color: #02363D;
|
|
1281
|
+
}
|
|
1282
|
+
.pv-v2 [class*=pv-toggle]:has(:disabled), .pv-v2 [class*=pv-toggle]:has(:disabled):hover, .pv-v2 [class*=pv-toggle]:has(:disabled):focus-within, .pv-v2 [class*=pv-toggle]:has(:disabled):active {
|
|
1283
|
+
cursor: auto;
|
|
1284
|
+
pointer-events: none;
|
|
1285
|
+
background-color: #ECECEC;
|
|
1286
|
+
border-color: #ECECEC;
|
|
1287
|
+
color: #7D898D;
|
|
1288
|
+
}
|
|
1289
|
+
.pv-v2 .pv-toggle-tertiary {
|
|
1290
|
+
background-color: #DCDFE4;
|
|
1291
|
+
}
|
|
1292
|
+
.pv-v2 .pv-toggle-round {
|
|
1293
|
+
border-radius: 2rem;
|
|
1294
|
+
}
|
|
1295
|
+
.pv-v2 .pv-toggle-icon {
|
|
1296
|
+
padding: 0.25rem;
|
|
1297
|
+
}
|
|
1298
|
+
.pv-v2 .pv-input-small {
|
|
1299
|
+
padding: var(--text-input-small-padding, calc(0.25rem - 1px) 0.5rem);
|
|
1300
|
+
}
|
|
1301
|
+
.pv-v2 .pv-input-small.pv-select-multiple, .pv-v2 .pv-input-small.pv-select {
|
|
1302
|
+
padding-inline-end: 2rem;
|
|
1303
|
+
}
|
|
1304
|
+
.pv-v2 .pv-input-small.pv-input-search {
|
|
1305
|
+
padding-inline-start: 2rem;
|
|
1306
|
+
}
|
|
1307
|
+
.pv-v2 .pv-input-group {
|
|
1308
|
+
display: flex;
|
|
1309
|
+
flex-direction: column;
|
|
1310
|
+
gap: 0.5rem;
|
|
1311
|
+
}
|
|
1312
|
+
.pv-v2 .pv-input-group p {
|
|
1313
|
+
font-size: 0.6875rem;
|
|
1314
|
+
line-height: 1.45454545;
|
|
1315
|
+
padding-inline-start: calc(0.75rem + 1px);
|
|
1316
|
+
}
|
|
1317
|
+
.pv-v2 div:has(> .pv-input-text[data-prefix]),
|
|
1318
|
+
.pv-v2 div:has(> .pv-input-text[data-suffix]) {
|
|
1319
|
+
position: relative;
|
|
1320
|
+
}
|
|
1321
|
+
.pv-v2 div:has(> .pv-input-text[data-prefix]):after,
|
|
1322
|
+
.pv-v2 div:has(> .pv-input-text[data-suffix]):after {
|
|
1323
|
+
position: absolute;
|
|
1324
|
+
font-size: 0.75rem;
|
|
1325
|
+
line-height: 1.33333333;
|
|
1326
|
+
top: 50%;
|
|
1327
|
+
transform: translateY(-50%);
|
|
1328
|
+
}
|
|
1329
|
+
.pv-v2 div:has(> .pv-input-text[data-prefix="$"]):after {
|
|
1330
|
+
content: "$";
|
|
1331
|
+
left: 0.75rem;
|
|
1332
|
+
}
|
|
1333
|
+
.pv-v2 div:has(> .pv-input-text[data-prefix="$"]) .pv-input-text {
|
|
1334
|
+
padding-inline-start: calc(0.75rem + 1.5ch);
|
|
1335
|
+
}
|
|
1336
|
+
.pv-v2 div:has(> .pv-input-text[data-suffix="%"]):after {
|
|
1337
|
+
content: "%";
|
|
1338
|
+
right: 0.75rem;
|
|
1339
|
+
}
|
|
1340
|
+
.pv-v2 div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
1341
|
+
padding-inline-end: calc(0.75rem + 1.5ch);
|
|
1342
|
+
}
|
|
1343
|
+
.pv-v2 .pv-ghost-input {
|
|
1344
|
+
display: flex;
|
|
1345
|
+
align-items: center;
|
|
1346
|
+
}
|
|
1347
|
+
.pv-v2 .pv-ghost-input input {
|
|
1348
|
+
padding: 0.25rem 0.125rem;
|
|
1349
|
+
border: 0;
|
|
1350
|
+
background-color: transparent;
|
|
1351
|
+
font-weight: 400;
|
|
1352
|
+
font-size: 0.75rem;
|
|
1353
|
+
line-height: 1.33333333;
|
|
1354
|
+
}
|
|
1355
|
+
.pv-v2 .pv-ghost-input input::placeholder, .pv-v2 .pv-ghost-input input::-webkit-input-placeholder {
|
|
1356
|
+
color: #B8C1C4;
|
|
1357
|
+
}
|
|
1358
|
+
.pv-v2 .pv-ghost-input button {
|
|
1359
|
+
opacity: 0;
|
|
1360
|
+
}
|
|
1361
|
+
.pv-v2 .pv-ghost-input:hover button, .pv-v2 .pv-ghost-input:focus-visible button, .pv-v2 .pv-ghost-input:focus-within button {
|
|
1362
|
+
opacity: 1;
|
|
1363
|
+
}
|
|
1364
|
+
.pv-v2 .pv-ghost-input:hover input, .pv-v2 .pv-ghost-input:focus-visible input, .pv-v2 .pv-ghost-input:focus-within input {
|
|
1365
|
+
outline: 0;
|
|
1366
|
+
}
|
|
1367
|
+
.pv-v2 .pv-ghost-input:hover input::placeholder, .pv-v2 .pv-ghost-input:hover input::-webkit-input-placeholder, .pv-v2 .pv-ghost-input:focus-visible input::placeholder, .pv-v2 .pv-ghost-input:focus-visible input::-webkit-input-placeholder, .pv-v2 .pv-ghost-input:focus-within input::placeholder, .pv-v2 .pv-ghost-input:focus-within input::-webkit-input-placeholder {
|
|
1368
|
+
color: #89989B;
|
|
1369
|
+
}
|
|
1370
|
+
.pv-v2 .pv-ghost-input[data-style=h1] input {
|
|
1371
|
+
font-weight: 600;
|
|
1372
|
+
font-size: 1.25rem;
|
|
1373
|
+
line-height: 1.2;
|
|
1374
|
+
}
|
|
1375
|
+
.pv-v2 .pv-ghost-input[data-style=h2] input {
|
|
1376
|
+
font-weight: 600;
|
|
1377
|
+
font-size: 1rem;
|
|
1378
|
+
line-height: 1.5;
|
|
1379
|
+
}
|
|
1380
|
+
.pv-v2 .pv-ghost-input[data-style=h3] input {
|
|
1381
|
+
font-weight: 600;
|
|
1382
|
+
font-size: 0.875rem;
|
|
1383
|
+
line-height: 1.4285714;
|
|
1384
|
+
}
|
|
1385
|
+
.pv-v2 .pv-ghost-input[data-style=h4] input {
|
|
1386
|
+
font-weight: 600;
|
|
1387
|
+
font-size: 0.75rem;
|
|
1388
|
+
line-height: 1.3333333;
|
|
1389
|
+
}
|
|
1390
|
+
.pv-v2 .pv-ghost-input[data-style=text-large] input {
|
|
1391
|
+
font-weight: 400;
|
|
1392
|
+
font-size: 0.875rem;
|
|
1393
|
+
line-height: 1.1428571;
|
|
1394
|
+
}
|
|
1395
|
+
.pv-v2 .pv-ghost-input[data-style=text-medium] input {
|
|
1396
|
+
font-weight: 400;
|
|
1397
|
+
font-size: 0.75rem;
|
|
1398
|
+
line-height: 1.33333333;
|
|
1399
|
+
}
|
|
1400
|
+
.pv-v2 .pv-ghost-input[data-style=text-small] input {
|
|
1401
|
+
font-weight: 400;
|
|
1402
|
+
font-size: 0.6875rem;
|
|
1403
|
+
line-height: 1.45454545;
|
|
1404
|
+
}
|
|
1405
|
+
.pv-v2 .pv-ghost-input[data-style=caption] input {
|
|
1406
|
+
font-weight: 400;
|
|
1407
|
+
font-size: 0.6875rem;
|
|
1408
|
+
line-height: 1.09090909;
|
|
1409
|
+
}
|
|
1410
|
+
.pv-v2 .pv-nav-container {
|
|
1411
|
+
padding: 20px 9px 20px 20px;
|
|
1412
|
+
overflow-y: auto;
|
|
1413
|
+
height: 100%;
|
|
1414
|
+
scrollbar-gutter: stable;
|
|
1415
|
+
scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
|
|
1416
|
+
scrollbar-width: thin;
|
|
1417
|
+
}
|
|
1418
|
+
.pv-v2 .pv-nav-container::-webkit-scrollbar {
|
|
1419
|
+
width: 8px;
|
|
1420
|
+
}
|
|
1421
|
+
.pv-v2 .pv-nav-container::-webkit-scrollbar-track {
|
|
1422
|
+
background: transparent;
|
|
1423
|
+
padding: 4px;
|
|
1424
|
+
}
|
|
1425
|
+
.pv-v2 .pv-nav-container::-webkit-scrollbar-thumb {
|
|
1426
|
+
background: rgba(255, 255, 255, 0.25);
|
|
1427
|
+
border-radius: 8px;
|
|
1428
|
+
}
|
|
1429
|
+
.pv-v2 .pv-nav-container::-webkit-scrollbar-thumb:hover {
|
|
1430
|
+
background: rgba(255, 255, 255, 0.5);
|
|
1431
|
+
}
|
|
1432
|
+
.pv-v2 [data-theme=og] .pv-nav-container {
|
|
1433
|
+
padding: 20px 8px 20px 16px;
|
|
1434
|
+
}
|
|
1435
|
+
.pv-v2 [data-theme=og] .pv-nav-container .pv-stack-64 {
|
|
1436
|
+
margin-block-end: 48px;
|
|
1437
|
+
}
|
|
1438
|
+
.pv-v2 .pv-toc {
|
|
1439
|
+
padding: 0.5rem;
|
|
1440
|
+
}
|
|
1441
|
+
.pv-v2 .pv-toc > li a {
|
|
1442
|
+
display: flex;
|
|
1443
|
+
align-items: center;
|
|
1444
|
+
gap: 0.25rem;
|
|
1445
|
+
border-inline-start: 1px solid #E3E7EA;
|
|
1446
|
+
padding: 0.5rem;
|
|
1447
|
+
font-size: 0.75rem;
|
|
1448
|
+
line-height: 1.33333333;
|
|
1449
|
+
font-weight: 500;
|
|
1450
|
+
}
|
|
1451
|
+
.pv-v2 .pv-toc > li a:hover, .pv-v2 .pv-toc > li a:focus-visible {
|
|
1452
|
+
color: #0D5256;
|
|
1453
|
+
background-color: #E8F2F4;
|
|
1454
|
+
border-color: #02363D;
|
|
1455
|
+
text-decoration: none;
|
|
1456
|
+
}
|
|
1457
|
+
.pv-v2 .pv-toc > li a:active {
|
|
1458
|
+
color: #02363D;
|
|
1459
|
+
background-color: #C7D8DB;
|
|
1460
|
+
border-color: #02363D;
|
|
1461
|
+
}
|
|
1462
|
+
.pv-v2 .pv-toc > li[aria-current] a {
|
|
1463
|
+
border-color: #02363D;
|
|
1464
|
+
color: #16696D;
|
|
1465
|
+
}
|
|
1466
|
+
.pv-v2 [class*=pv-container] {
|
|
1467
|
+
--margin-inline: auto;
|
|
1468
|
+
margin-inline: var(--margin-inline);
|
|
1469
|
+
width: 100%;
|
|
1470
|
+
}
|
|
1471
|
+
.pv-v2 .pv-container-lg {
|
|
1472
|
+
max-width: 1448px;
|
|
1473
|
+
}
|
|
1474
|
+
.pv-v2 .pv-container-md {
|
|
1475
|
+
max-width: 972px;
|
|
1476
|
+
}
|
|
1477
|
+
.pv-v2 .pv-container-sm {
|
|
1478
|
+
max-width: 768px;
|
|
1479
|
+
}
|
|
1480
|
+
.pv-v2 [class*=pv-avatar]:not(.pv-avatar-group),
|
|
1481
|
+
.pv-v2 [class*=pv-company],
|
|
1482
|
+
.pv-v2 .pv-avatar-group > li,
|
|
1483
|
+
.pv-v2 .pv-avatar-group[data-more]:after {
|
|
1484
|
+
aspect-ratio: 1;
|
|
1485
|
+
display: grid;
|
|
1486
|
+
place-items: center;
|
|
1487
|
+
color: #FFFFFF;
|
|
1488
|
+
background-color: #36C5BA;
|
|
1489
|
+
border-radius: 50%;
|
|
1490
|
+
overflow: hidden;
|
|
1491
|
+
font-weight: 600;
|
|
1492
|
+
line-height: 1;
|
|
1493
|
+
text-transform: uppercase;
|
|
1494
|
+
flex-shrink: 0;
|
|
1495
|
+
}
|
|
1496
|
+
.pv-v2 [class*=pv-avatar]:empty {
|
|
1497
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M5.573 8.513a4 4 0 1 1 4.854 0A5.996 5.996 0 0 1 14 14a.667.667 0 0 1-1.333 0 4.667 4.667 0 0 0-9.334 0A.667.667 0 1 1 2 14a6.003 6.003 0 0 1 3.573-5.487ZM8 8a2.667 2.667 0 1 0 0-5.334A2.667 2.667 0 0 0 8 8Z'/%3E%3C/svg%3E");
|
|
1498
|
+
background-position: center center;
|
|
1499
|
+
background-repeat: no-repeat;
|
|
1500
|
+
}
|
|
1501
|
+
.pv-v2 .pv-avatar-16 {
|
|
1502
|
+
width: 16px;
|
|
1503
|
+
font-size: 0.375rem;
|
|
1504
|
+
letter-spacing: 0.6px;
|
|
1505
|
+
background-size: 12px 12px;
|
|
1506
|
+
}
|
|
1507
|
+
.pv-v2 .pv-avatar-20 {
|
|
1508
|
+
width: 20px;
|
|
1509
|
+
font-size: 0.4375rem;
|
|
1510
|
+
letter-spacing: 0.7px;
|
|
1511
|
+
background-size: 12px 12px;
|
|
1512
|
+
}
|
|
1513
|
+
.pv-v2 .pv-avatar-xs {
|
|
1514
|
+
width: 24px;
|
|
1515
|
+
font-size: 0.6875rem;
|
|
1516
|
+
letter-spacing: 0.11px;
|
|
1517
|
+
background-size: 16px 16px;
|
|
1518
|
+
}
|
|
1519
|
+
.pv-v2 .pv-avatar-sm,
|
|
1520
|
+
.pv-v2 .pv-avatar-group > li,
|
|
1521
|
+
.pv-v2 .pv-avatar-group[data-more]:after {
|
|
1522
|
+
width: 32px;
|
|
1523
|
+
font-size: 0.75rem;
|
|
1524
|
+
letter-spacing: 0.12px;
|
|
1525
|
+
background-size: 16px 16px;
|
|
1526
|
+
}
|
|
1527
|
+
.pv-v2 .pv-avatar,
|
|
1528
|
+
.pv-v2 .pv-avatar-md {
|
|
1529
|
+
width: 40px;
|
|
1530
|
+
font-size: 0.875rem;
|
|
1531
|
+
letter-spacing: 0.14px;
|
|
1532
|
+
background-size: 20px 20px;
|
|
1533
|
+
}
|
|
1534
|
+
.pv-v2 .pv-avatar-lg {
|
|
1535
|
+
width: 64px;
|
|
1536
|
+
font-size: 2rem;
|
|
1537
|
+
}
|
|
1538
|
+
.pv-v2 .pv-avatar-xl {
|
|
1539
|
+
width: 96px;
|
|
1540
|
+
font-size: 3rem;
|
|
1541
|
+
}
|
|
1542
|
+
.pv-v2 .pv-avatar-group {
|
|
1543
|
+
display: flex;
|
|
1544
|
+
align-items: center;
|
|
1545
|
+
}
|
|
1546
|
+
.pv-v2 .pv-avatar-group > li, .pv-v2 .pv-avatar-group[data-more]:after {
|
|
1547
|
+
margin-inline-start: -0.5rem;
|
|
1548
|
+
outline: 2px solid white;
|
|
1549
|
+
}
|
|
1550
|
+
.pv-v2 .pv-avatar-group[data-more]:after {
|
|
1551
|
+
content: "+" attr(data-more);
|
|
1552
|
+
color: #4B595C;
|
|
1553
|
+
background-color: #D9DEDE;
|
|
1554
|
+
font-size: #D9DEDE;
|
|
1555
|
+
letter-spacing: 0.12px;
|
|
1556
|
+
outline-color: #D2D8DC;
|
|
1557
|
+
}
|
|
1558
|
+
.pv-v2 .pv-avatar-group :nth-child(2) {
|
|
1559
|
+
background-color: #16696D;
|
|
1560
|
+
}
|
|
1561
|
+
.pv-v2 .pv-avatar-group :nth-child(3) {
|
|
1562
|
+
background-color: #FF7A4E;
|
|
1563
|
+
}
|
|
1564
|
+
.pv-v2 .pv-avatar-group :nth-child(4) {
|
|
1565
|
+
background-color: #C97AEB;
|
|
1566
|
+
}
|
|
1567
|
+
.pv-v2 .pv-avatar-group :nth-child(5) {
|
|
1568
|
+
background-color: #F2AD0D;
|
|
1569
|
+
}
|
|
1570
|
+
.pv-v2 .pv-avatar-group :nth-child(6) {
|
|
1571
|
+
background-color: #7C8AF4;
|
|
1572
|
+
}
|
|
1573
|
+
.pv-v2 .pv-avatar-group :nth-child(7) {
|
|
1574
|
+
background-color: #95C54C;
|
|
1575
|
+
}
|
|
1576
|
+
.pv-v2 [class*=pv-company]:empty {
|
|
1577
|
+
background-color: #E8F2F4;
|
|
1578
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 13c0 5.49-3.763 8.302-8.331 9.894l-.008.003a1.997 1.997 0 0 1-1.326-.015C6.759 21.3 3 18.487 3 13V6a2 2 0 0 1 2-2c1.794 0 4.021-1.11 5.582-2.473l.009-.007a2.165 2.165 0 0 1 2.818 0l.009.007C14.988 2.899 17.206 4 19 4a2.008 2.008 0 0 1 1.11.336l.304.25A2 2 0 0 1 21 6v7Zm-2 0V6c-2.206 0-4.966-1.278-6.896-2.965a.171.171 0 0 0-.214.005C9.971 4.713 7.203 6 5 6v7c0 4.51 3.235 6.696 6.996 7.995l.023.008C15.768 19.694 19 17.507 19 13Zm-8-2V9a1 1 0 0 1 2 0v2h2a1 1 0 0 1 0 2h-2v2a1 1 0 0 1-2 0v-2H9a1 1 0 0 1 0-2h2Z' fill='%23B8C1C4'/%3E%3C/svg%3E");
|
|
1579
|
+
background-repeat: no-repeat;
|
|
1580
|
+
background-position: center center;
|
|
1581
|
+
background-size: 80% 80%;
|
|
1582
|
+
}
|
|
1583
|
+
.pv-v2 .pv-company-2x {
|
|
1584
|
+
width: 40px;
|
|
1585
|
+
border-radius: 8px;
|
|
1586
|
+
}
|
|
1587
|
+
.pv-v2 .pv-company-xl {
|
|
1588
|
+
width: 32px;
|
|
1589
|
+
border-radius: 4px;
|
|
1590
|
+
}
|
|
1591
|
+
.pv-v2 .pv-company-lg {
|
|
1592
|
+
width: 24px;
|
|
1593
|
+
border-radius: 4px;
|
|
1594
|
+
}
|
|
1595
|
+
.pv-v2 .pv-company-md {
|
|
1596
|
+
width: 20px;
|
|
1597
|
+
border-radius: 4px;
|
|
1598
|
+
}
|
|
1599
|
+
.pv-v2 .pv-company-sm {
|
|
1600
|
+
width: 16px;
|
|
1601
|
+
border-radius: 2px;
|
|
1602
|
+
}
|
|
1603
|
+
.pv-v2 .pv-company-xs {
|
|
1604
|
+
width: 12px;
|
|
1605
|
+
border-radius: 2px;
|
|
1606
|
+
}
|
|
1607
|
+
.pv-v2 .pv-nav-list,
|
|
1608
|
+
.pv-v2 .pv-nav-list[data-collapsed],
|
|
1609
|
+
.pv-v2 [data-collapsed] .pv-nav-list {
|
|
1610
|
+
background-color: var(--nav-list-background-color, transparent);
|
|
1611
|
+
color: var(--nav-list-text-color, #4B595C);
|
|
1612
|
+
user-select: none;
|
|
1613
|
+
}
|
|
1614
|
+
.pv-v2 .pv-nav-list li:not(:last-child),
|
|
1615
|
+
.pv-v2 .pv-nav-list[data-collapsed] li:not(:last-child),
|
|
1616
|
+
.pv-v2 [data-collapsed] .pv-nav-list li:not(:last-child) {
|
|
1617
|
+
margin-block-end: var(--nav-list-gap, 0.25rem);
|
|
1618
|
+
}
|
|
1619
|
+
.pv-v2 .pv-nav-list a, .pv-v2 .pv-nav-list summary,
|
|
1620
|
+
.pv-v2 .pv-nav-list[data-collapsed] a,
|
|
1621
|
+
.pv-v2 .pv-nav-list[data-collapsed] summary,
|
|
1622
|
+
.pv-v2 [data-collapsed] .pv-nav-list a,
|
|
1623
|
+
.pv-v2 [data-collapsed] .pv-nav-list summary {
|
|
1624
|
+
display: flex;
|
|
1625
|
+
align-items: center;
|
|
1626
|
+
gap: 8px;
|
|
1627
|
+
text-decoration: none;
|
|
1628
|
+
padding: var(--nav-list-padding, 0.5rem 0.75rem);
|
|
1629
|
+
white-space: nowrap;
|
|
1630
|
+
font-weight: var(--nav-list-font-weight, 500);
|
|
1631
|
+
font-size: var(--nav-list-font-size, 0.875rem);
|
|
1632
|
+
line-height: var(--nav-list-line-height, 1.71428571);
|
|
1633
|
+
color: inherit;
|
|
1634
|
+
transition-duration: 0.125s;
|
|
1635
|
+
transition-property: background-color;
|
|
1636
|
+
border-radius: 2px;
|
|
1637
|
+
}
|
|
1638
|
+
.pv-v2 .pv-nav-list a:hover:not([aria-current=page]), .pv-v2 .pv-nav-list a:focus-visible:not([aria-current=page]), .pv-v2 .pv-nav-list summary:hover:not([aria-current=page]), .pv-v2 .pv-nav-list summary:focus-visible:not([aria-current=page]),
|
|
1639
|
+
.pv-v2 .pv-nav-list[data-collapsed] a:hover:not([aria-current=page]),
|
|
1640
|
+
.pv-v2 .pv-nav-list[data-collapsed] a:focus-visible:not([aria-current=page]),
|
|
1641
|
+
.pv-v2 .pv-nav-list[data-collapsed] summary:hover:not([aria-current=page]),
|
|
1642
|
+
.pv-v2 .pv-nav-list[data-collapsed] summary:focus-visible:not([aria-current=page]),
|
|
1643
|
+
.pv-v2 [data-collapsed] .pv-nav-list a:hover:not([aria-current=page]),
|
|
1644
|
+
.pv-v2 [data-collapsed] .pv-nav-list a:focus-visible:not([aria-current=page]),
|
|
1645
|
+
.pv-v2 [data-collapsed] .pv-nav-list summary:hover:not([aria-current=page]),
|
|
1646
|
+
.pv-v2 [data-collapsed] .pv-nav-list summary:focus-visible:not([aria-current=page]) {
|
|
1647
|
+
color: var(--nav-list-hover-text-color, #0D5256);
|
|
1648
|
+
background-color: var(--nav-list-hover-background-color, #E8F2F4);
|
|
1649
|
+
}
|
|
1650
|
+
.pv-v2 .pv-nav-list a:hover:not([aria-current=page]) svg, .pv-v2 .pv-nav-list a:focus-visible:not([aria-current=page]) svg, .pv-v2 .pv-nav-list summary:hover:not([aria-current=page]) svg, .pv-v2 .pv-nav-list summary:focus-visible:not([aria-current=page]) svg,
|
|
1651
|
+
.pv-v2 .pv-nav-list[data-collapsed] a:hover:not([aria-current=page]) svg,
|
|
1652
|
+
.pv-v2 .pv-nav-list[data-collapsed] a:focus-visible:not([aria-current=page]) svg,
|
|
1653
|
+
.pv-v2 .pv-nav-list[data-collapsed] summary:hover:not([aria-current=page]) svg,
|
|
1654
|
+
.pv-v2 .pv-nav-list[data-collapsed] summary:focus-visible:not([aria-current=page]) svg,
|
|
1655
|
+
.pv-v2 [data-collapsed] .pv-nav-list a:hover:not([aria-current=page]) svg,
|
|
1656
|
+
.pv-v2 [data-collapsed] .pv-nav-list a:focus-visible:not([aria-current=page]) svg,
|
|
1657
|
+
.pv-v2 [data-collapsed] .pv-nav-list summary:hover:not([aria-current=page]) svg,
|
|
1658
|
+
.pv-v2 [data-collapsed] .pv-nav-list summary:focus-visible:not([aria-current=page]) svg {
|
|
1659
|
+
fill: currentColor;
|
|
1660
|
+
}
|
|
1661
|
+
.pv-v2 .pv-nav-list [aria-current=page],
|
|
1662
|
+
.pv-v2 .pv-nav-list[data-collapsed] [aria-current=page],
|
|
1663
|
+
.pv-v2 [data-collapsed] .pv-nav-list [aria-current=page] {
|
|
1664
|
+
color: var(--nav-list-active-text-color, #16696D);
|
|
1665
|
+
background-color: var(--nav-list-active-background-color, #E4F8F6);
|
|
1666
|
+
}
|
|
1667
|
+
.pv-v2 .pv-nav-list [aria-current=page] svg,
|
|
1668
|
+
.pv-v2 .pv-nav-list[data-collapsed] [aria-current=page] svg,
|
|
1669
|
+
.pv-v2 [data-collapsed] .pv-nav-list [aria-current=page] svg {
|
|
1670
|
+
fill: currentColor;
|
|
1671
|
+
}
|
|
1672
|
+
.pv-v2 .pv-nav-list span,
|
|
1673
|
+
.pv-v2 .pv-nav-list[data-collapsed] span,
|
|
1674
|
+
.pv-v2 [data-collapsed] .pv-nav-list span {
|
|
1675
|
+
display: none;
|
|
1676
|
+
position: relative;
|
|
1677
|
+
top: 1px;
|
|
1678
|
+
}
|
|
1679
|
+
.pv-v2 .pv-nav-list summary,
|
|
1680
|
+
.pv-v2 .pv-nav-list[data-collapsed] summary,
|
|
1681
|
+
.pv-v2 [data-collapsed] .pv-nav-list summary {
|
|
1682
|
+
cursor: pointer;
|
|
1683
|
+
background-image: var(--nav-summary-background-image, none);
|
|
1684
|
+
background-repeat: no-repeat;
|
|
1685
|
+
background-position: right 0.75rem center;
|
|
1686
|
+
background-size: 0.75em 0.75em;
|
|
1687
|
+
}
|
|
1688
|
+
.pv-v2 .pv-nav-list summary::-webkit-details-marker,
|
|
1689
|
+
.pv-v2 .pv-nav-list[data-collapsed] summary::-webkit-details-marker,
|
|
1690
|
+
.pv-v2 [data-collapsed] .pv-nav-list summary::-webkit-details-marker {
|
|
1691
|
+
display: none;
|
|
1692
|
+
}
|
|
1693
|
+
.pv-v2 .pv-nav-list details[open] > summary,
|
|
1694
|
+
.pv-v2 .pv-nav-list[data-collapsed] details[open] > summary,
|
|
1695
|
+
.pv-v2 [data-collapsed] .pv-nav-list details[open] > summary {
|
|
1696
|
+
background-image: var(--nav-summary-open-background-image, none);
|
|
1697
|
+
}
|
|
1698
|
+
.pv-v2 .pv-text-inherit .pv-nav-list a {
|
|
1699
|
+
text-decoration: none;
|
|
1700
|
+
}
|
|
1701
|
+
.pv-v2 [data-collapsed] [data-grid-area=sidebar] .pv-nav-list details > summary {
|
|
1702
|
+
background-image: none;
|
|
1703
|
+
width: 40px;
|
|
1704
|
+
padding: var(--nav-list-collapsed-padding, 0.5rem 0.75rem);
|
|
1705
|
+
}
|
|
1706
|
+
.pv-v2 [data-collapsed] [data-grid-area=sidebar] .pv-nav-list details[open] > summary {
|
|
1707
|
+
background-color: var(--nav-list-background-color, transparent);
|
|
1708
|
+
color: var(--nav-list-text-color, #4B595C);
|
|
1709
|
+
}
|
|
1710
|
+
.pv-v2 [data-collapsed] [data-grid-area=sidebar] .pv-nav-list details[open] > summary:hover, .pv-v2 [data-collapsed] [data-grid-area=sidebar] .pv-nav-list details[open] > summary:focus-visible {
|
|
1711
|
+
background-color: var(--nav-list-hover-background-color, #E8F2F4);
|
|
1712
|
+
color: var(--nav-list-hover-text-color, #0D5256);
|
|
1713
|
+
}
|
|
1714
|
+
.pv-v2 [data-collapsed] [data-grid-area=sidebar] .pv-nav-list li {
|
|
1715
|
+
width: 40px;
|
|
1716
|
+
}
|
|
1717
|
+
.pv-v2 [data-collapsed] [data-grid-area=sidebar] .pv-nav-list summary svg {
|
|
1718
|
+
flex-shrink: 0;
|
|
1719
|
+
}
|
|
1720
|
+
.pv-v2 [data-collapsed] [data-grid-area=sidebar] .pv-nav-list a {
|
|
1721
|
+
display: block;
|
|
1722
|
+
padding: var(--nav-list-collapsed-padding, 0.5rem 0.75rem);
|
|
1723
|
+
}
|
|
1724
|
+
.pv-v2 .pv-nav-list-inverse,
|
|
1725
|
+
.pv-v2 [data-collapsed] .pv-nav-list-inverse {
|
|
1726
|
+
max-width: none;
|
|
1727
|
+
background-color: transparent;
|
|
1728
|
+
color: inherit;
|
|
1729
|
+
}
|
|
1730
|
+
.pv-v2 .pv-nav-list-inverse a, .pv-v2 .pv-nav-list-inverse summary,
|
|
1731
|
+
.pv-v2 [data-collapsed] .pv-nav-list-inverse a,
|
|
1732
|
+
.pv-v2 [data-collapsed] .pv-nav-list-inverse summary {
|
|
1733
|
+
max-width: none;
|
|
1734
|
+
display: flex;
|
|
1735
|
+
color: #121313;
|
|
1736
|
+
}
|
|
1737
|
+
.pv-v2 .pv-nav-list-inverse a:focus-visible:not([aria-current=page]), .pv-v2 .pv-nav-list-inverse a:hover:not([aria-current=page]), .pv-v2 .pv-nav-list-inverse summary:focus-visible:not([aria-current=page]), .pv-v2 .pv-nav-list-inverse summary:hover:not([aria-current=page]),
|
|
1738
|
+
.pv-v2 [data-collapsed] .pv-nav-list-inverse a:focus-visible:not([aria-current=page]),
|
|
1739
|
+
.pv-v2 [data-collapsed] .pv-nav-list-inverse a:hover:not([aria-current=page]),
|
|
1740
|
+
.pv-v2 [data-collapsed] .pv-nav-list-inverse summary:focus-visible:not([aria-current=page]),
|
|
1741
|
+
.pv-v2 [data-collapsed] .pv-nav-list-inverse summary:hover:not([aria-current=page]) {
|
|
1742
|
+
color: #121313;
|
|
1743
|
+
background-color: #F7F8F8;
|
|
1744
|
+
}
|
|
1745
|
+
.pv-v2 .pv-nav-list-inverse summary,
|
|
1746
|
+
.pv-v2 [data-collapsed] .pv-nav-list-inverse summary {
|
|
1747
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath d='M118.6 105.4l128 127.1C252.9 239.6 256 247.8 256 255.1s-3.125 16.38-9.375 22.63l-128 127.1c-9.156 9.156-22.91 11.9-34.88 6.943S64 396.9 64 383.1V128c0-12.94 7.781-24.62 19.75-29.58S109.5 96.23 118.6 105.4z' fill='%2302363d'/%3E%3C/svg%3E");
|
|
1748
|
+
}
|
|
1749
|
+
.pv-v2 .pv-nav-list-inverse details[open] > summary,
|
|
1750
|
+
.pv-v2 [data-collapsed] .pv-nav-list-inverse details[open] > summary {
|
|
1751
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M310.6 246.6l-127.1 128C176.4 380.9 168.2 384 160 384s-16.38-3.125-22.63-9.375l-127.1-128C.2244 237.5-2.516 223.7 2.438 211.8S19.07 192 32 192h255.1c12.94 0 24.62 7.781 29.58 19.75S319.8 237.5 310.6 246.6z' fill='%2302363d'/%3E%3C/svg%3E");
|
|
1752
|
+
}
|
|
1753
|
+
.pv-v2 .pv-nav-list-inverse [aria-current=page],
|
|
1754
|
+
.pv-v2 [data-collapsed] .pv-nav-list-inverse [aria-current=page] {
|
|
1755
|
+
background-color: #02363D;
|
|
1756
|
+
color: #FFFFFF;
|
|
1757
|
+
}
|
|
1758
|
+
.pv-v2 .pv-nav-list-inverse li:not(:last-child),
|
|
1759
|
+
.pv-v2 [data-collapsed] .pv-nav-list-inverse li:not(:last-child) {
|
|
1760
|
+
margin: 0;
|
|
1761
|
+
}
|
|
1762
|
+
.pv-v2 .pv-nav-list details {
|
|
1763
|
+
padding-block: var(--nav-list-details-padding, 2px);
|
|
1764
|
+
margin-block: var(--nav-list-details-margin, -2px);
|
|
1765
|
+
border-block: var(--nav-list-group-border, 1px solid transparent);
|
|
1766
|
+
}
|
|
1767
|
+
.pv-v2 .pv-nav-list details[open] {
|
|
1768
|
+
border-block: var(--nav-list-group-border-open, 1px solid #E3E7EA);
|
|
1769
|
+
}
|
|
1770
|
+
.pv-v2 .pv-nav-list a:not([aria-current]):hover,
|
|
1771
|
+
.pv-v2 .pv-nav-list a:not([aria-current]):focus-visible,
|
|
1772
|
+
.pv-v2 .pv-nav-list summary:not([aria-current]):hover,
|
|
1773
|
+
.pv-v2 .pv-nav-list summary:not([aria-current]):focus-visible {
|
|
1774
|
+
color: var(--nav-list-hover-text-color, #0D5256);
|
|
1775
|
+
background-color: var(--nav-list-hover-background-color, #E8F2F4);
|
|
1776
|
+
}
|
|
1777
|
+
.pv-v2 .pv-nav-list a:not([aria-current]):active,
|
|
1778
|
+
.pv-v2 .pv-nav-list summary:not([aria-current]):active {
|
|
1779
|
+
color: var(--nav-list-pressed-text-color, #02363D);
|
|
1780
|
+
background-color: var(--nav-list-pressed-background-color, #C7D8DB);
|
|
1781
|
+
}
|
|
1782
|
+
.pv-v2 .pv-nav-list .pv-nav-list,
|
|
1783
|
+
.pv-v2 .pv-nav-list .pv-nav-list li a {
|
|
1784
|
+
position: relative;
|
|
1785
|
+
}
|
|
1786
|
+
.pv-v2 .pv-nav-list .pv-nav-list:before,
|
|
1787
|
+
.pv-v2 .pv-nav-list .pv-nav-list li a:before {
|
|
1788
|
+
content: "";
|
|
1789
|
+
display: block;
|
|
1790
|
+
width: 0;
|
|
1791
|
+
height: 100%;
|
|
1792
|
+
position: absolute;
|
|
1793
|
+
top: 0;
|
|
1794
|
+
left: 24px;
|
|
1795
|
+
border-inline-start: var(--nav-list-group-border-open, 1px solid #E3E7EA);
|
|
1796
|
+
}
|
|
1797
|
+
.pv-v2 .pv-nav-list .pv-nav-list {
|
|
1798
|
+
margin-block-start: var(--nav-list-gap, 0.25rem);
|
|
1799
|
+
margin-inline-start: var(--nav-list-group-margin, 0);
|
|
1800
|
+
}
|
|
1801
|
+
.pv-v2 .pv-nav-list .pv-nav-list li:not(:last-child) {
|
|
1802
|
+
margin-block-end: var(--nav-list-group-gap, 0);
|
|
1803
|
+
}
|
|
1804
|
+
.pv-v2 .pv-nav-list .pv-nav-list li a {
|
|
1805
|
+
padding: var(--nav-list-group-padding, 0.25rem 1rem 0.25rem 3.0625rem);
|
|
1806
|
+
}
|
|
1807
|
+
.pv-v2 .pv-nav-list .pv-nav-list li a[aria-current=page]:before, .pv-v2 .pv-nav-list .pv-nav-list li a:hover:before {
|
|
1808
|
+
border-inline-start: var(--nav-list-group-border-active, 1px solid #36C5BA);
|
|
1809
|
+
}
|
|
1810
|
+
@media (width >= 768px) {
|
|
1811
|
+
.pv-v2 .pv-nav-list {
|
|
1812
|
+
max-width: 100%;
|
|
1813
|
+
}
|
|
1814
|
+
.pv-v2 .pv-nav-list li, .pv-v2 .pv-nav-list span {
|
|
1815
|
+
display: block;
|
|
1816
|
+
}
|
|
1817
|
+
.pv-v2 .pv-nav-list a {
|
|
1818
|
+
max-width: none;
|
|
1819
|
+
display: flex;
|
|
1820
|
+
padding: var(--nav-list-padding, 0.5rem 0.75rem);
|
|
1821
|
+
}
|
|
1822
|
+
}
|
|
1823
|
+
.pv-v2 [data-floating] .pv-nav-list {
|
|
1824
|
+
max-width: 100%;
|
|
1825
|
+
}
|
|
1826
|
+
.pv-v2 [data-floating] .pv-nav-list li, .pv-v2 [data-floating] .pv-nav-list span {
|
|
1827
|
+
display: block;
|
|
1828
|
+
}
|
|
1829
|
+
.pv-v2 [data-floating] .pv-nav-list a {
|
|
1830
|
+
max-width: none;
|
|
1831
|
+
display: flex;
|
|
1832
|
+
padding: var(--nav-list-padding, 0.5rem 0.75rem);
|
|
1833
|
+
}
|
|
1834
|
+
.pv-v2 [data-collapsed] .pv-nav-list:not(.pv-nav-list-inverse) ul {
|
|
1835
|
+
display: none;
|
|
1836
|
+
}
|
|
1837
|
+
@media (width <= 768px) {
|
|
1838
|
+
.pv-v2 .pv-layout-primary:not([data-floating]) .pv-nav-list details[open] .pv-nav-list {
|
|
1839
|
+
display: none;
|
|
1840
|
+
}
|
|
1841
|
+
.pv-v2 .pv-layout-primary:not([data-floating]) .pv-nav-list details[open] summary,
|
|
1842
|
+
.pv-v2 .pv-layout-primary:not([data-floating]) .pv-nav-list summary {
|
|
1843
|
+
background-image: none;
|
|
1844
|
+
}
|
|
1845
|
+
.pv-v2 .pv-layout-primary:not([data-floating]) details:has([aria-current=page]) summary:not([aria-current=page]),
|
|
1846
|
+
.pv-v2 .pv-layout-primary:not([data-floating]) details:has([aria-current=page]) summary:not([aria-current=page]):hover {
|
|
1847
|
+
background-color: var(--nav-list-hover-background-color, #E8F2F4);
|
|
1848
|
+
color: var(--nav-list-hover-text-color, #0D5256);
|
|
1849
|
+
}
|
|
1850
|
+
.pv-v2 .pv-layout-primary:not([data-floating]) .pv-nav-list,
|
|
1851
|
+
.pv-v2 .pv-layout-primary:not([data-floating]) .pv-nav-list li,
|
|
1852
|
+
.pv-v2 .pv-layout-primary:not([data-floating]) .pv-nav-list summary {
|
|
1853
|
+
width: 40px;
|
|
1854
|
+
}
|
|
1855
|
+
}
|
|
1856
|
+
.pv-v2 .pv-notification {
|
|
1857
|
+
--bg-color: white;
|
|
1858
|
+
position: relative;
|
|
1859
|
+
color: currentColor;
|
|
1860
|
+
}
|
|
1861
|
+
.pv-v2 .pv-notification:after {
|
|
1862
|
+
content: "";
|
|
1863
|
+
display: block;
|
|
1864
|
+
width: 8px;
|
|
1865
|
+
height: 8px;
|
|
1866
|
+
background-color: #FFEFEB;
|
|
1867
|
+
border: 2px solid var(--bg-color);
|
|
1868
|
+
border-radius: 50%;
|
|
1869
|
+
position: absolute;
|
|
1870
|
+
top: -2px;
|
|
1871
|
+
right: -2px;
|
|
1872
|
+
}
|
|
1873
|
+
.pv-v2 .pv-notification[data-border=accent] {
|
|
1874
|
+
--bg-color: #F7F8F8;
|
|
1875
|
+
}
|
|
1876
|
+
.pv-v2 [class*=pv-toast] {
|
|
1877
|
+
color: #FFFFFF;
|
|
1878
|
+
padding: 1.25rem;
|
|
1879
|
+
display: flex;
|
|
1880
|
+
align-items: flex-start;
|
|
1881
|
+
gap: 0.75rem;
|
|
1882
|
+
}
|
|
1883
|
+
.pv-v2 [class*=pv-toast] p {
|
|
1884
|
+
flex: 1;
|
|
1885
|
+
}
|
|
1886
|
+
.pv-v2 [class*=pv-toast] svg {
|
|
1887
|
+
fill: #FFFFFF;
|
|
1888
|
+
}
|
|
1889
|
+
.pv-v2 .pv-toast-success {
|
|
1890
|
+
background-color: #02363D;
|
|
1891
|
+
}
|
|
1892
|
+
.pv-v2 .pv-toast-error {
|
|
1893
|
+
background-color: #FFEFEB;
|
|
1894
|
+
}
|
|
1895
|
+
.pv-v2 .pv-pulsing-dot {
|
|
1896
|
+
--color: #36C5BA;
|
|
1897
|
+
--size: 6px;
|
|
1898
|
+
position: relative;
|
|
1899
|
+
height: var(--size);
|
|
1900
|
+
width: var(--size);
|
|
1901
|
+
background-color: var(--color);
|
|
1902
|
+
border-radius: 50%;
|
|
1903
|
+
}
|
|
1904
|
+
.pv-v2 .pv-pulsing-dot::after {
|
|
1905
|
+
content: "";
|
|
1906
|
+
position: absolute;
|
|
1907
|
+
top: 0;
|
|
1908
|
+
left: 0;
|
|
1909
|
+
height: 100%;
|
|
1910
|
+
width: 100%;
|
|
1911
|
+
border-radius: 50%;
|
|
1912
|
+
background-color: inherit;
|
|
1913
|
+
animation-name: pv-pulse;
|
|
1914
|
+
animation-duration: 1s;
|
|
1915
|
+
animation-iteration-count: 3;
|
|
1916
|
+
animation-delay: 0.75s;
|
|
1917
|
+
transform-origin: center center;
|
|
1918
|
+
z-index: -1;
|
|
1919
|
+
}
|
|
1920
|
+
@keyframes pv-pulse {
|
|
1921
|
+
0% {
|
|
1922
|
+
transform: scale(1);
|
|
1923
|
+
opacity: 1;
|
|
1924
|
+
}
|
|
1925
|
+
25% {
|
|
1926
|
+
transform: scale(1);
|
|
1927
|
+
opacity: 1;
|
|
1928
|
+
}
|
|
1929
|
+
100% {
|
|
1930
|
+
transform: scale(4.5);
|
|
1931
|
+
opacity: 0;
|
|
1932
|
+
}
|
|
1933
|
+
}
|
|
1934
|
+
.pv-v2 [class*=pv-status]:not(th, td) {
|
|
1935
|
+
display: inline-flex;
|
|
1936
|
+
align-items: center;
|
|
1937
|
+
}
|
|
1938
|
+
.pv-v2 :where([class*=pv-status]:not(th, td)):before {
|
|
1939
|
+
content: "";
|
|
1940
|
+
display: inline-block;
|
|
1941
|
+
width: 8px;
|
|
1942
|
+
height: 8px;
|
|
1943
|
+
background-color: #ADB5C0;
|
|
1944
|
+
border-radius: 50%;
|
|
1945
|
+
margin-inline-end: 8px;
|
|
1946
|
+
}
|
|
1947
|
+
.pv-v2 [class*=pv-status]:not(th, td).pv-truncate:before {
|
|
1948
|
+
flex-shrink: 0;
|
|
1949
|
+
}
|
|
1950
|
+
.pv-v2 [class*=pv-status]:not(th, td).pv-truncate span {
|
|
1951
|
+
flex: 1;
|
|
1952
|
+
white-space: nowrap;
|
|
1953
|
+
overflow: hidden;
|
|
1954
|
+
text-overflow: ellipsis;
|
|
1955
|
+
}
|
|
1956
|
+
.pv-v2 [class*=pv-status]:is(th, td) {
|
|
1957
|
+
border-top: 4px solid #ADB5C0;
|
|
1958
|
+
}
|
|
1959
|
+
.pv-v2 .pv-status-yellow:before {
|
|
1960
|
+
background-color: #E5A000;
|
|
1961
|
+
}
|
|
1962
|
+
.pv-v2 .pv-status-red:before {
|
|
1963
|
+
background-color: #DA1E28;
|
|
1964
|
+
}
|
|
1965
|
+
.pv-v2 .pv-status-green:before {
|
|
1966
|
+
background-color: #218C88;
|
|
1967
|
+
}
|
|
1968
|
+
.pv-v2 .pv-status-black:before {
|
|
1969
|
+
background-color: #02363D;
|
|
1970
|
+
}
|
|
1971
|
+
.pv-v2 .pv-status-purple:before {
|
|
1972
|
+
background-color: #BE95FF;
|
|
1973
|
+
}
|
|
1974
|
+
.pv-v2 .pv-status-orange:before {
|
|
1975
|
+
background-color: #C86628;
|
|
1976
|
+
}
|
|
1977
|
+
.pv-v2 .pv-status-yellow:is(th, td) {
|
|
1978
|
+
border-color: #E5A000;
|
|
1979
|
+
}
|
|
1980
|
+
.pv-v2 .pv-status-red:is(th, td) {
|
|
1981
|
+
border-color: #DA1E28;
|
|
1982
|
+
}
|
|
1983
|
+
.pv-v2 .pv-status-green:is(th, td) {
|
|
1984
|
+
border-color: #218C88;
|
|
1985
|
+
}
|
|
1986
|
+
.pv-v2 .pv-status-black:is(th, td) {
|
|
1987
|
+
border-color: #02363D;
|
|
1988
|
+
}
|
|
1989
|
+
.pv-v2 .pv-status-purple:is(th, td) {
|
|
1990
|
+
border-color: #BE95FF;
|
|
1991
|
+
}
|
|
1992
|
+
.pv-v2 .pv-status-orange:is(th, td) {
|
|
1993
|
+
border-color: #C86628;
|
|
1994
|
+
}
|
|
1995
|
+
.pv-v2 .pv-table,
|
|
1996
|
+
.pv-v2 .pv-table-compressed {
|
|
1997
|
+
width: 100%;
|
|
1998
|
+
border-spacing: 0;
|
|
1999
|
+
background-color: #FFFFFF;
|
|
2000
|
+
text-align: left;
|
|
2001
|
+
}
|
|
2002
|
+
.pv-v2 .pv-table th,
|
|
2003
|
+
.pv-v2 .pv-table-compressed th {
|
|
2004
|
+
padding: 0.75rem;
|
|
2005
|
+
border-block-end: 1px solid #E3E7EA;
|
|
2006
|
+
}
|
|
2007
|
+
.pv-v2 .pv-table th a,
|
|
2008
|
+
.pv-v2 .pv-table-compressed th a {
|
|
2009
|
+
margin: -0.75rem;
|
|
2010
|
+
padding: 0.75rem;
|
|
2011
|
+
}
|
|
2012
|
+
.pv-v2 .pv-table td,
|
|
2013
|
+
.pv-v2 .pv-table-compressed td {
|
|
2014
|
+
padding: 1rem 0.75rem;
|
|
2015
|
+
font-weight: 400;
|
|
2016
|
+
}
|
|
2017
|
+
.pv-v2 .pv-table :where(a:not[class*=pv-text]),
|
|
2018
|
+
.pv-v2 .pv-table-compressed :where(a:not[class*=pv-text]) {
|
|
2019
|
+
color: inherit;
|
|
2020
|
+
position: relative;
|
|
2021
|
+
z-index: 5;
|
|
2022
|
+
display: block;
|
|
2023
|
+
}
|
|
2024
|
+
.pv-v2 .pv-table :where(a:not[class*=pv-text]):hover, .pv-v2 .pv-table :where(a:not[class*=pv-text]):focus,
|
|
2025
|
+
.pv-v2 .pv-table-compressed :where(a:not[class*=pv-text]):hover,
|
|
2026
|
+
.pv-v2 .pv-table-compressed :where(a:not[class*=pv-text]):focus {
|
|
2027
|
+
color: inherit;
|
|
2028
|
+
text-decoration: none;
|
|
2029
|
+
}
|
|
2030
|
+
.pv-v2 .pv-table th {
|
|
2031
|
+
font-weight: 700;
|
|
2032
|
+
text-transform: uppercase;
|
|
2033
|
+
font-size: 0.6875rem;
|
|
2034
|
+
line-height: 1.45454545;
|
|
2035
|
+
letter-spacing: 0.15em;
|
|
2036
|
+
}
|
|
2037
|
+
.pv-v2 .pv-table-compressed th, .pv-v2 .pv-table-compressed td {
|
|
2038
|
+
padding-block: 0.5rem;
|
|
2039
|
+
}
|
|
2040
|
+
.pv-v2 .pv-table-compressed :where(th) {
|
|
2041
|
+
background-color: #ECECEC;
|
|
2042
|
+
font-size: 0.6875rem;
|
|
2043
|
+
line-height: 1.45454545;
|
|
2044
|
+
font-weight: 600;
|
|
2045
|
+
}
|
|
2046
|
+
.pv-v2 .pv-table-compressed :where(th) a {
|
|
2047
|
+
margin-block: -0.5rem;
|
|
2048
|
+
padding-block: 0.5rem;
|
|
2049
|
+
}
|
|
2050
|
+
.pv-v2 .pv-table-bordered,
|
|
2051
|
+
.pv-v2 .pv-table-compressed {
|
|
2052
|
+
border-block-start: 1px solid #E3E7EA;
|
|
2053
|
+
}
|
|
2054
|
+
.pv-v2 .pv-table-bordered td,
|
|
2055
|
+
.pv-v2 .pv-table-compressed td {
|
|
2056
|
+
border-block-end: 1px solid #E3E7EA;
|
|
2057
|
+
}
|
|
2058
|
+
.pv-v2 .pv-table.pv-expand th:first-child,
|
|
2059
|
+
.pv-v2 .pv-table.pv-expand td:first-child {
|
|
2060
|
+
padding-inline-start: var(--expand);
|
|
2061
|
+
}
|
|
2062
|
+
.pv-v2 .pv-table.pv-expand th:last-child,
|
|
2063
|
+
.pv-v2 .pv-table.pv-expand td:last-child {
|
|
2064
|
+
padding-inline-end: var(--expand);
|
|
2065
|
+
}
|
|
2066
|
+
.pv-v2 [class*=pv-table] [data-sort] {
|
|
2067
|
+
position: relative;
|
|
2068
|
+
background-repeat: no-repeat;
|
|
2069
|
+
background-size: 1rem 1rem;
|
|
2070
|
+
background-position: right 0.5rem center;
|
|
2071
|
+
padding-inline-end: 2rem;
|
|
2072
|
+
cursor: pointer;
|
|
2073
|
+
}
|
|
2074
|
+
.pv-v2 [class*=pv-table] [data-sort]:before {
|
|
2075
|
+
content: "";
|
|
2076
|
+
display: block;
|
|
2077
|
+
position: absolute;
|
|
2078
|
+
inset: -1px 0;
|
|
2079
|
+
}
|
|
2080
|
+
.pv-v2 [class*=pv-table] [data-sort] a {
|
|
2081
|
+
margin-inline-end: -1.5rem;
|
|
2082
|
+
padding-inline-end: 1.5rem;
|
|
2083
|
+
position: relative;
|
|
2084
|
+
z-index: 10;
|
|
2085
|
+
}
|
|
2086
|
+
.pv-v2 [class*=pv-table] [data-sort] {
|
|
2087
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D66'%3E%3Cpath d='M6.2 14.2c.5-.5 1.2-.5 1.7 0l4.2 4.2 4.2-4.2c.5-.5 1.2-.5 1.7 0s.5 1.2 0 1.7l-5 5c-.5.5-1.2.5-1.7 0l-5-5c-.6-.5-.6-1.3-.1-1.7z'/%3E%3Cpath d='M11.2 3.2c.5-.5 1.2-.5 1.7 0l5 5c.5.5.5 1.2 0 1.7s-1.2.5-1.7 0L12 5.7 7.8 9.8c-.5.5-1.2.5-1.7 0s-.5-1.2 0-1.7l5.1-4.9z'/%3E%3C/svg%3E");
|
|
2088
|
+
}
|
|
2089
|
+
.pv-v2 [class*=pv-table] [data-sort=descending] {
|
|
2090
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D66'%3E%3Cpath d='M6.2 14.2c.5-.5 1.2-.5 1.7 0l4.2 4.2 4.2-4.2c.5-.5 1.2-.5 1.7 0s.5 1.2 0 1.7l-5 5c-.5.5-1.2.5-1.7 0l-5-5c-.6-.5-.6-1.3-.1-1.7z' fill='%2302363D'/%3E%3Cpath d='M11.2 3.2c.5-.5 1.2-.5 1.7 0l5 5c.5.5.5 1.2 0 1.7s-1.2.5-1.7 0L12 5.7 7.8 9.8c-.5.5-1.2.5-1.7 0s-.5-1.2 0-1.7l5.1-4.9z'/%3E%3C/svg%3E");
|
|
2091
|
+
}
|
|
2092
|
+
.pv-v2 [class*=pv-table] [data-sort=ascending] {
|
|
2093
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D66'%3E%3Cpath d='M6.2 14.2c.5-.5 1.2-.5 1.7 0l4.2 4.2 4.2-4.2c.5-.5 1.2-.5 1.7 0s.5 1.2 0 1.7l-5 5c-.5.5-1.2.5-1.7 0l-5-5c-.6-.5-.6-1.3-.1-1.7z'/%3E%3Cpath d='M11.2 3.2c.5-.5 1.2-.5 1.7 0l5 5c.5.5.5 1.2 0 1.7s-1.2.5-1.7 0L12 5.7 7.8 9.8c-.5.5-1.2.5-1.7 0s-.5-1.2 0-1.7l5.1-4.9z' fill='%2302363D'/%3E%3C/svg%3E");
|
|
2094
|
+
}
|
|
2095
|
+
.pv-v2 .pv-table-matrix,
|
|
2096
|
+
.pv-v2 .pv-table-matrix-compressed {
|
|
2097
|
+
text-align: left;
|
|
2098
|
+
border-spacing: 0;
|
|
2099
|
+
table-layout: fixed;
|
|
2100
|
+
width: 100%;
|
|
2101
|
+
position: relative;
|
|
2102
|
+
}
|
|
2103
|
+
.pv-v2 .pv-table-matrix :where(thead th),
|
|
2104
|
+
.pv-v2 .pv-table-matrix-compressed :where(thead th) {
|
|
2105
|
+
padding: 0.875rem 0.75rem;
|
|
2106
|
+
font-size: 1rem;
|
|
2107
|
+
line-height: 1.25;
|
|
2108
|
+
min-height: 69px;
|
|
2109
|
+
background-color: #F7F8F8;
|
|
2110
|
+
}
|
|
2111
|
+
.pv-v2 .pv-table-matrix :where(thead td),
|
|
2112
|
+
.pv-v2 .pv-table-matrix-compressed :where(thead td) {
|
|
2113
|
+
background-color: #F7F8F8;
|
|
2114
|
+
text-align: center;
|
|
2115
|
+
}
|
|
2116
|
+
.pv-v2 .pv-table-matrix :where(thead td):not(:last-of-type),
|
|
2117
|
+
.pv-v2 .pv-table-matrix-compressed :where(thead td):not(:last-of-type) {
|
|
2118
|
+
border-right: 1px solid #E3E7EA;
|
|
2119
|
+
}
|
|
2120
|
+
.pv-v2 .pv-table-matrix thead th:not(:first-of-type),
|
|
2121
|
+
.pv-v2 .pv-table-matrix-compressed thead th:not(:first-of-type) {
|
|
2122
|
+
white-space: nowrap;
|
|
2123
|
+
max-width: 1px;
|
|
2124
|
+
}
|
|
2125
|
+
.pv-v2 .pv-table-matrix th:first-of-type,
|
|
2126
|
+
.pv-v2 .pv-table-matrix-compressed th:first-of-type {
|
|
2127
|
+
padding-inline: 1.5rem;
|
|
2128
|
+
border-right: 1px solid #E3E7EA;
|
|
2129
|
+
}
|
|
2130
|
+
.pv-v2 .pv-table-matrix th, .pv-v2 .pv-table-matrix td,
|
|
2131
|
+
.pv-v2 .pv-table-matrix-compressed th,
|
|
2132
|
+
.pv-v2 .pv-table-matrix-compressed td {
|
|
2133
|
+
padding: 0.5rem 0.75rem;
|
|
2134
|
+
height: 56px;
|
|
2135
|
+
}
|
|
2136
|
+
.pv-v2 .pv-table-matrix tr > *,
|
|
2137
|
+
.pv-v2 .pv-table-matrix-compressed tr > * {
|
|
2138
|
+
border-bottom: 1px solid #E3E7EA;
|
|
2139
|
+
}
|
|
2140
|
+
.pv-v2 .pv-table-matrix tr > *:not(:first-of-type, :last-of-type),
|
|
2141
|
+
.pv-v2 .pv-table-matrix tbody td:not(:last-of-type),
|
|
2142
|
+
.pv-v2 .pv-table-matrix-compressed tr > *:not(:first-of-type, :last-of-type),
|
|
2143
|
+
.pv-v2 .pv-table-matrix-compressed tbody td:not(:last-of-type) {
|
|
2144
|
+
border-right: 1px solid #E3E7EA;
|
|
2145
|
+
}
|
|
2146
|
+
.pv-v2 .pv-table-matrix tbody th,
|
|
2147
|
+
.pv-v2 .pv-table-matrix thead th:first-of-type,
|
|
2148
|
+
.pv-v2 .pv-table-matrix-compressed tbody th,
|
|
2149
|
+
.pv-v2 .pv-table-matrix-compressed thead th:first-of-type {
|
|
2150
|
+
position: sticky;
|
|
2151
|
+
left: 0;
|
|
2152
|
+
}
|
|
2153
|
+
.pv-v2 .pv-table-matrix tbody th,
|
|
2154
|
+
.pv-v2 .pv-table-matrix-compressed tbody th {
|
|
2155
|
+
z-index: 20;
|
|
2156
|
+
background-color: #FFFFFF;
|
|
2157
|
+
}
|
|
2158
|
+
.pv-v2 .pv-table-matrix thead th:first-of-type,
|
|
2159
|
+
.pv-v2 .pv-table-matrix-compressed thead th:first-of-type {
|
|
2160
|
+
z-index: 30;
|
|
2161
|
+
}
|
|
2162
|
+
.pv-v2 .pv-table-matrix td,
|
|
2163
|
+
.pv-v2 .pv-table-matrix-compressed td,
|
|
2164
|
+
.pv-v2 [class*=pv-table]:has(td .pv-table-button) td {
|
|
2165
|
+
position: relative;
|
|
2166
|
+
}
|
|
2167
|
+
.pv-v2 .pv-table-matrix td button,
|
|
2168
|
+
.pv-v2 .pv-table-matrix td .pv-table-button,
|
|
2169
|
+
.pv-v2 .pv-table-matrix-compressed td button,
|
|
2170
|
+
.pv-v2 .pv-table-matrix-compressed td .pv-table-button,
|
|
2171
|
+
.pv-v2 [class*=pv-table]:has(td .pv-table-button) td button,
|
|
2172
|
+
.pv-v2 [class*=pv-table]:has(td .pv-table-button) td .pv-table-button {
|
|
2173
|
+
text-align: left;
|
|
2174
|
+
padding: 0.5rem 0.75rem;
|
|
2175
|
+
position: absolute;
|
|
2176
|
+
inset: 0;
|
|
2177
|
+
cursor: pointer;
|
|
2178
|
+
background-color: transparent;
|
|
2179
|
+
border: 0;
|
|
2180
|
+
border-radius: 0;
|
|
2181
|
+
color: #121313;
|
|
2182
|
+
display: flex;
|
|
2183
|
+
align-items: center;
|
|
2184
|
+
justify-content: space-between;
|
|
2185
|
+
gap: 0.5rem;
|
|
2186
|
+
}
|
|
2187
|
+
.pv-v2 .pv-table-matrix td button > div:last-of-type,
|
|
2188
|
+
.pv-v2 .pv-table-matrix td .pv-table-button > div:last-of-type,
|
|
2189
|
+
.pv-v2 .pv-table-matrix-compressed td button > div:last-of-type,
|
|
2190
|
+
.pv-v2 .pv-table-matrix-compressed td .pv-table-button > div:last-of-type,
|
|
2191
|
+
.pv-v2 [class*=pv-table]:has(td .pv-table-button) td button > div:last-of-type,
|
|
2192
|
+
.pv-v2 [class*=pv-table]:has(td .pv-table-button) td .pv-table-button > div:last-of-type {
|
|
2193
|
+
display: none;
|
|
2194
|
+
opacity: 0;
|
|
2195
|
+
transition: all 0.3s ease-in-out;
|
|
2196
|
+
}
|
|
2197
|
+
.pv-v2 .pv-table-matrix td button:where(:hover, :focus-visible),
|
|
2198
|
+
.pv-v2 .pv-table-matrix td .pv-table-button:where(:hover, :focus-visible),
|
|
2199
|
+
.pv-v2 .pv-table-matrix-compressed td button:where(:hover, :focus-visible),
|
|
2200
|
+
.pv-v2 .pv-table-matrix-compressed td .pv-table-button:where(:hover, :focus-visible),
|
|
2201
|
+
.pv-v2 [class*=pv-table]:has(td .pv-table-button) td button:where(:hover, :focus-visible),
|
|
2202
|
+
.pv-v2 [class*=pv-table]:has(td .pv-table-button) td .pv-table-button:where(:hover, :focus-visible) {
|
|
2203
|
+
background-color: #F7F8F8;
|
|
2204
|
+
}
|
|
2205
|
+
.pv-v2 .pv-table-matrix td button:where(:hover, :focus-visible) > div:last-of-type,
|
|
2206
|
+
.pv-v2 .pv-table-matrix td .pv-table-button:where(:hover, :focus-visible) > div:last-of-type,
|
|
2207
|
+
.pv-v2 .pv-table-matrix-compressed td button:where(:hover, :focus-visible) > div:last-of-type,
|
|
2208
|
+
.pv-v2 .pv-table-matrix-compressed td .pv-table-button:where(:hover, :focus-visible) > div:last-of-type,
|
|
2209
|
+
.pv-v2 [class*=pv-table]:has(td .pv-table-button) td button:where(:hover, :focus-visible) > div:last-of-type,
|
|
2210
|
+
.pv-v2 [class*=pv-table]:has(td .pv-table-button) td .pv-table-button:where(:hover, :focus-visible) > div:last-of-type {
|
|
2211
|
+
display: flex;
|
|
2212
|
+
opacity: 1;
|
|
2213
|
+
}
|
|
2214
|
+
.pv-v2 .pv-table-matrix td button:where(:hover, :focus-visible) > :first-child:not(svg, .pv-truncate, .pv-tooltip),
|
|
2215
|
+
.pv-v2 .pv-table-matrix td .pv-table-button:where(:hover, :focus-visible) > :first-child:not(svg, .pv-truncate, .pv-tooltip),
|
|
2216
|
+
.pv-v2 .pv-table-matrix-compressed td button:where(:hover, :focus-visible) > :first-child:not(svg, .pv-truncate, .pv-tooltip),
|
|
2217
|
+
.pv-v2 .pv-table-matrix-compressed td .pv-table-button:where(:hover, :focus-visible) > :first-child:not(svg, .pv-truncate, .pv-tooltip),
|
|
2218
|
+
.pv-v2 [class*=pv-table]:has(td .pv-table-button) td button:where(:hover, :focus-visible) > :first-child:not(svg, .pv-truncate, .pv-tooltip),
|
|
2219
|
+
.pv-v2 [class*=pv-table]:has(td .pv-table-button) td .pv-table-button:where(:hover, :focus-visible) > :first-child:not(svg, .pv-truncate, .pv-tooltip) {
|
|
2220
|
+
display: none;
|
|
2221
|
+
}
|
|
2222
|
+
.pv-v2 [class*=pv-table] td:has(button) {
|
|
2223
|
+
z-index: unset;
|
|
2224
|
+
}
|
|
2225
|
+
.pv-v2 [class*=pv-table] td:has(.pv-popover-menu:hover, .pv-tooltip:hover) {
|
|
2226
|
+
z-index: 20;
|
|
2227
|
+
}
|
|
2228
|
+
.pv-v2 .pv-table-matrix-compressed thead th {
|
|
2229
|
+
padding: 0.5rem;
|
|
2230
|
+
}
|
|
2231
|
+
.pv-v2 .pv-table-matrix-compressed th, .pv-v2 .pv-table-matrix-compressed td {
|
|
2232
|
+
padding: 0.25rem 0.5rem;
|
|
2233
|
+
height: 36px;
|
|
2234
|
+
}
|
|
2235
|
+
.pv-v2 [data-parent] td:first-of-type {
|
|
2236
|
+
padding-inline-start: 3.75rem;
|
|
2237
|
+
}
|
|
2238
|
+
.pv-v2 .pv-table-vertical-borders td:not(:last-child),
|
|
2239
|
+
.pv-v2 .pv-table-vertical-borders th:not(:last-child) {
|
|
2240
|
+
border-inline-end: 1px solid #E3E7EA;
|
|
2241
|
+
}
|
|
2242
|
+
.pv-v2 [class*=pv-table] [data-symbol] {
|
|
2243
|
+
position: relative;
|
|
2244
|
+
text-align: right;
|
|
2245
|
+
z-index: 1;
|
|
2246
|
+
}
|
|
2247
|
+
.pv-v2 [class*=pv-table] [data-symbol]:before, .pv-v2 [class*=pv-table] [data-symbol]:after {
|
|
2248
|
+
display: inline-block;
|
|
2249
|
+
position: absolute;
|
|
2250
|
+
top: 50%;
|
|
2251
|
+
transform: translateY(-50%);
|
|
2252
|
+
color: #6E7784;
|
|
2253
|
+
}
|
|
2254
|
+
.pv-v2 [class*=pv-table] [data-symbol="$"] {
|
|
2255
|
+
padding-left: 1.75rem;
|
|
2256
|
+
}
|
|
2257
|
+
.pv-v2 [class*=pv-table] [data-symbol="$"]:before {
|
|
2258
|
+
content: "$";
|
|
2259
|
+
left: 0.75rem;
|
|
2260
|
+
}
|
|
2261
|
+
.pv-v2 [class*=pv-table] [data-symbol="%"] {
|
|
2262
|
+
padding-right: 1.75rem;
|
|
2263
|
+
}
|
|
2264
|
+
.pv-v2 [class*=pv-table] [data-symbol="%"]:after {
|
|
2265
|
+
content: "%";
|
|
2266
|
+
right: 0.75rem;
|
|
2267
|
+
}
|
|
2268
|
+
.pv-v2 [class*=pv-table] [data-symbol="/d"] {
|
|
2269
|
+
padding-inline: 2rem;
|
|
2270
|
+
}
|
|
2271
|
+
.pv-v2 [class*=pv-table] [data-symbol="/d"]:before {
|
|
2272
|
+
content: "$";
|
|
2273
|
+
left: 0.75rem;
|
|
2274
|
+
}
|
|
2275
|
+
.pv-v2 [class*=pv-table] [data-symbol="/d"]:after {
|
|
2276
|
+
content: "/d";
|
|
2277
|
+
right: 0.75rem;
|
|
2278
|
+
}
|
|
2279
|
+
.pv-v2 [class*=pv-table]:has(colgroup):has(col):not([style*="width: auto"]) {
|
|
2280
|
+
table-layout: fixed;
|
|
2281
|
+
}
|
|
2282
|
+
.pv-v2 td:not([rowspan]) > .pv-responsive-cell {
|
|
2283
|
+
display: flex;
|
|
2284
|
+
gap: 1rem;
|
|
2285
|
+
justify-content: space-between;
|
|
2286
|
+
align-items: center;
|
|
2287
|
+
}
|
|
2288
|
+
.pv-v2 [class*=pv-table] tbody [data-sticky-col],
|
|
2289
|
+
.pv-v2 [class*=pv-table] thead [data-sticky-col] {
|
|
2290
|
+
--offset: 0;
|
|
2291
|
+
position: sticky;
|
|
2292
|
+
left: var(--offset);
|
|
2293
|
+
background-color: #F8F8FA;
|
|
2294
|
+
z-index: 10;
|
|
2295
|
+
}
|
|
2296
|
+
.pv-v2 [class*=pv-table] thead [data-sticky-col] {
|
|
2297
|
+
z-index: 60;
|
|
2298
|
+
}
|
|
2299
|
+
.pv-v2 .pv-table-vertical-borders .pv-border-thick-right:not(last-child) {
|
|
2300
|
+
border-right-width: 2px;
|
|
2301
|
+
}
|
|
2302
|
+
.pv-v2 .pv-popover {
|
|
2303
|
+
--width: 220px;
|
|
2304
|
+
--height: 266px;
|
|
2305
|
+
--position: absolute;
|
|
2306
|
+
width: var(--width);
|
|
2307
|
+
height: fit-content;
|
|
2308
|
+
max-height: var(--height);
|
|
2309
|
+
overflow-y: auto;
|
|
2310
|
+
overflow-x: hidden;
|
|
2311
|
+
position: var(--position);
|
|
2312
|
+
background-color: #FFFFFF;
|
|
2313
|
+
box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3), 0px 8px 12px -4px rgba(0, 0, 0, 0.08), 0px 12px 16px rgba(0, 0, 0, 0.1);
|
|
2314
|
+
border-radius: 4px;
|
|
2315
|
+
top: 100%;
|
|
2316
|
+
left: 0;
|
|
2317
|
+
z-index: 50;
|
|
2318
|
+
}
|
|
2319
|
+
.pv-v2 .pv-popover[data-align*=right] {
|
|
2320
|
+
right: 0;
|
|
2321
|
+
left: auto;
|
|
2322
|
+
}
|
|
2323
|
+
.pv-v2 .pv-popover[data-align*=top] {
|
|
2324
|
+
top: auto;
|
|
2325
|
+
bottom: 100%;
|
|
2326
|
+
}
|
|
2327
|
+
.pv-v2 .pv-popover-list {
|
|
2328
|
+
padding: 0.5rem;
|
|
2329
|
+
}
|
|
2330
|
+
.pv-v2 .pv-popover-list :where(li[data-active]) :where(a, label) {
|
|
2331
|
+
background-color: var(--popover-list-selected-item-background-color, #F7F8F8);
|
|
2332
|
+
}
|
|
2333
|
+
.pv-v2 .pv-popover-list :where(a),
|
|
2334
|
+
.pv-v2 .pv-popover-list :where(label) {
|
|
2335
|
+
display: flex;
|
|
2336
|
+
align-items: center;
|
|
2337
|
+
gap: 0.5rem;
|
|
2338
|
+
border-radius: var(--popover-list-item-radius, 4px);
|
|
2339
|
+
padding: 0.5rem;
|
|
2340
|
+
white-space: nowrap;
|
|
2341
|
+
font-size: var(--popover-list-item-font-size, 0.75rem);
|
|
2342
|
+
line-height: var(--popover-list-item-line-height, 1.33333333);
|
|
2343
|
+
font-weight: 400;
|
|
2344
|
+
text-decoration: none;
|
|
2345
|
+
color: #121313;
|
|
2346
|
+
transition-duration: 0.125s;
|
|
2347
|
+
transition-property: background-color;
|
|
2348
|
+
}
|
|
2349
|
+
.pv-v2 .pv-popover-list :where(a):hover, .pv-v2 .pv-popover-list :where(a):focus-visible,
|
|
2350
|
+
.pv-v2 .pv-popover-list :where(label):hover,
|
|
2351
|
+
.pv-v2 .pv-popover-list :where(label):focus-visible {
|
|
2352
|
+
background-color: var(--popover-list-item-hover-background-color, #E8F2F4);
|
|
2353
|
+
}
|
|
2354
|
+
.pv-v2 .pv-popover-list :where(a):active,
|
|
2355
|
+
.pv-v2 .pv-popover-list :where(label):active {
|
|
2356
|
+
background-color: var(--popover-list-item-pressed-background-color, #C7D8DB);
|
|
2357
|
+
}
|
|
2358
|
+
.pv-v2 .pv-popover-menu {
|
|
2359
|
+
position: relative;
|
|
2360
|
+
display: inline-flex;
|
|
2361
|
+
vertical-align: top;
|
|
2362
|
+
}
|
|
2363
|
+
.pv-v2 .pv-popover-menu .pv-popover {
|
|
2364
|
+
visibility: hidden;
|
|
2365
|
+
opacity: 0;
|
|
2366
|
+
transition-duration: 0.125s;
|
|
2367
|
+
transition-property: opacity;
|
|
2368
|
+
}
|
|
2369
|
+
.pv-v2 .pv-popover-menu > button {
|
|
2370
|
+
pointer-events: none;
|
|
2371
|
+
}
|
|
2372
|
+
.pv-v2 .pv-popover-menu:hover .pv-button-icon, .pv-v2 .pv-popover-menu:focus-within .pv-button-icon {
|
|
2373
|
+
opacity: 1;
|
|
2374
|
+
}
|
|
2375
|
+
.pv-v2 .pv-popover-menu:hover .pv-popover, .pv-v2 .pv-popover-menu:focus-within .pv-popover {
|
|
2376
|
+
visibility: visible;
|
|
2377
|
+
opacity: 1;
|
|
2378
|
+
}
|
|
2379
|
+
.pv-v2 [data-sticky] :where(th, td):has(.pv-popover-menu:hover) {
|
|
2380
|
+
z-index: 50;
|
|
2381
|
+
}
|
|
2382
|
+
.pv-v2 [class*=pv-tag] {
|
|
2383
|
+
font-size: 0.6875rem;
|
|
2384
|
+
line-height: 1.45454545;
|
|
2385
|
+
font-weight: 500;
|
|
2386
|
+
color: #121313;
|
|
2387
|
+
display: inline-flex;
|
|
2388
|
+
align-items: center;
|
|
2389
|
+
gap: 0.25rem;
|
|
2390
|
+
background-color: #E8EBEB;
|
|
2391
|
+
border: 1px solid transparent;
|
|
2392
|
+
border-radius: 4px;
|
|
2393
|
+
padding: calc(0.125rem - 1px) 0.5rem;
|
|
2394
|
+
white-space: nowrap;
|
|
2395
|
+
}
|
|
2396
|
+
.pv-v2 [class*=pv-tag][data-style=rounded] {
|
|
2397
|
+
border-radius: 2rem;
|
|
2398
|
+
}
|
|
2399
|
+
.pv-v2 button[class*=pv-tag],
|
|
2400
|
+
.pv-v2 button.pv-tag-tertiary {
|
|
2401
|
+
cursor: pointer;
|
|
2402
|
+
}
|
|
2403
|
+
.pv-v2 button[class*=pv-tag]:hover, .pv-v2 button[class*=pv-tag]:focus-visible,
|
|
2404
|
+
.pv-v2 button.pv-tag-tertiary:hover,
|
|
2405
|
+
.pv-v2 button.pv-tag-tertiary:focus-visible {
|
|
2406
|
+
background-color: #E8F2F4;
|
|
2407
|
+
}
|
|
2408
|
+
.pv-v2 button[class*=pv-tag]:active,
|
|
2409
|
+
.pv-v2 button.pv-tag-tertiary:active {
|
|
2410
|
+
background-color: #C7D8DB;
|
|
2411
|
+
}
|
|
2412
|
+
.pv-v2 strong[class*=pv-tag] {
|
|
2413
|
+
font-weight: 600;
|
|
2414
|
+
text-transform: uppercase;
|
|
2415
|
+
}
|
|
2416
|
+
.pv-v2 .pv-tag-sm {
|
|
2417
|
+
font-size: 0.6875rem;
|
|
2418
|
+
line-height: 14px;
|
|
2419
|
+
padding: 0 0.5rem;
|
|
2420
|
+
}
|
|
2421
|
+
.pv-v2 .pv-tag-lg {
|
|
2422
|
+
font-size: 0.6875rem;
|
|
2423
|
+
line-height: 1.45454545;
|
|
2424
|
+
border-radius: 3px;
|
|
2425
|
+
padding: calc(0.25rem - 1px) 0.5rem;
|
|
2426
|
+
}
|
|
2427
|
+
.pv-v2 [class*=pv-tag]:has(.pv-company-xs, .pv-company-sm) {
|
|
2428
|
+
padding: 1px 4px;
|
|
2429
|
+
gap: 4px;
|
|
2430
|
+
}
|
|
2431
|
+
.pv-v2 .pv-tag-sm:has(.pv-company-xs) {
|
|
2432
|
+
padding: 0 2px;
|
|
2433
|
+
gap: 2px;
|
|
2434
|
+
}
|
|
2435
|
+
.pv-v2 .pv-tag-lg:has(.pv-company-sm) {
|
|
2436
|
+
padding: 3px 4px;
|
|
2437
|
+
}
|
|
2438
|
+
.pv-v2 .pv-tag-inverse,
|
|
2439
|
+
.pv-v2 .pv-tag-red-inverse,
|
|
2440
|
+
.pv-v2 .pv-tag-yellow-inverse,
|
|
2441
|
+
.pv-v2 .pv-tag-green-inverse,
|
|
2442
|
+
.pv-v2 .pv-tag-orange-inverse,
|
|
2443
|
+
.pv-v2 .pv-tag-turquoise-inverse {
|
|
2444
|
+
border-color: transparent;
|
|
2445
|
+
color: #FFFFFF;
|
|
2446
|
+
}
|
|
2447
|
+
.pv-v2 .pv-tag-inverse {
|
|
2448
|
+
background-color: #02363D;
|
|
2449
|
+
}
|
|
2450
|
+
.pv-v2 .pv-tag-red {
|
|
2451
|
+
background-color: #FFF1F1;
|
|
2452
|
+
border-color: transparent;
|
|
2453
|
+
color: #A2191F;
|
|
2454
|
+
}
|
|
2455
|
+
.pv-v2 .pv-tag-red-inverse {
|
|
2456
|
+
background-color: #DA1E28;
|
|
2457
|
+
}
|
|
2458
|
+
.pv-v2 .pv-tag-yellow {
|
|
2459
|
+
background-color: #FFEB99;
|
|
2460
|
+
border-color: transparent;
|
|
2461
|
+
color: #121313;
|
|
2462
|
+
}
|
|
2463
|
+
.pv-v2 .pv-tag-yellow-inverse {
|
|
2464
|
+
background-color: #EAB333;
|
|
2465
|
+
color: #121313;
|
|
2466
|
+
}
|
|
2467
|
+
.pv-v2 .pv-tag-green {
|
|
2468
|
+
background-color: #DEFBE6;
|
|
2469
|
+
border-color: transparent;
|
|
2470
|
+
color: #0E6027;
|
|
2471
|
+
}
|
|
2472
|
+
.pv-v2 .pv-tag-green-inverse {
|
|
2473
|
+
background-color: #198038;
|
|
2474
|
+
}
|
|
2475
|
+
.pv-v2 .pv-tag-orange {
|
|
2476
|
+
background-color: #FAEAE4;
|
|
2477
|
+
border-color: transparent;
|
|
2478
|
+
color: #BA4E01;
|
|
2479
|
+
}
|
|
2480
|
+
.pv-v2 .pv-tag-orange-inverse {
|
|
2481
|
+
background-color: #BA4E01;
|
|
2482
|
+
}
|
|
2483
|
+
.pv-v2 .pv-tag-turquoise {
|
|
2484
|
+
background-color: #E2F7F5;
|
|
2485
|
+
border-color: transparent;
|
|
2486
|
+
color: #176F6F;
|
|
2487
|
+
}
|
|
2488
|
+
.pv-v2 .pv-tag-turquoise-inverse {
|
|
2489
|
+
background-color: #176F6F;
|
|
2490
|
+
}
|
|
2491
|
+
.pv-v2 .pv-tag-purple {
|
|
2492
|
+
background-color: #E8DAFF;
|
|
2493
|
+
border-color: transparent;
|
|
2494
|
+
color: #121313;
|
|
2495
|
+
}
|
|
2496
|
+
.pv-v2 .pv-tag-primary {
|
|
2497
|
+
background-color: #16696D;
|
|
2498
|
+
color: #FFFFFF;
|
|
2499
|
+
}
|
|
2500
|
+
.pv-v2 button.pv-tag-primary:hover, .pv-v2 button.pv-tag-primary:focus-visible {
|
|
2501
|
+
background-color: #0D5256;
|
|
2502
|
+
}
|
|
2503
|
+
.pv-v2 button.pv-tag-primary:active {
|
|
2504
|
+
background-color: #02363D;
|
|
2505
|
+
}
|
|
2506
|
+
.pv-v2 .pv-tag-secondary {
|
|
2507
|
+
background-color: #FFFFFF;
|
|
2508
|
+
color: #4B595C;
|
|
2509
|
+
border-color: #D2D8DC;
|
|
2510
|
+
}
|
|
2511
|
+
.pv-v2 button.pv-tag-secondary:hover, .pv-v2 button.pv-tag-secondary:focus-visible {
|
|
2512
|
+
background-color: #E8F2F4;
|
|
2513
|
+
color: #121313;
|
|
2514
|
+
}
|
|
2515
|
+
.pv-v2 button.pv-tag-secondary:active {
|
|
2516
|
+
background-color: #C7D8DB;
|
|
2517
|
+
color: #121313;
|
|
2518
|
+
}
|
|
2519
|
+
.pv-v2 .pv-pill {
|
|
2520
|
+
display: inline-block;
|
|
2521
|
+
padding: 3px 6px;
|
|
2522
|
+
border: 1px solid currentColor;
|
|
2523
|
+
font-size: 0.6875rem;
|
|
2524
|
+
line-height: inherit;
|
|
2525
|
+
}
|
|
2526
|
+
.pv-v2 [class*=pv-highlight] {
|
|
2527
|
+
display: inline-block;
|
|
2528
|
+
position: relative;
|
|
2529
|
+
padding: 4px 8px 4px 22px;
|
|
2530
|
+
font-size: 0.6875rem;
|
|
2531
|
+
font-weight: 700;
|
|
2532
|
+
text-transform: uppercase;
|
|
2533
|
+
letter-spacing: 0.72px;
|
|
2534
|
+
white-space: nowrap;
|
|
2535
|
+
}
|
|
2536
|
+
.pv-v2 [class*=pv-highlight]:before {
|
|
2537
|
+
content: "";
|
|
2538
|
+
display: block;
|
|
2539
|
+
width: 6px;
|
|
2540
|
+
height: 6px;
|
|
2541
|
+
position: absolute;
|
|
2542
|
+
top: 50%;
|
|
2543
|
+
left: 8px;
|
|
2544
|
+
transform: translateY(-50%);
|
|
2545
|
+
}
|
|
2546
|
+
.pv-v2 .pv-highlight {
|
|
2547
|
+
background-color: var(--highlight-background, #FAECCC);
|
|
2548
|
+
}
|
|
2549
|
+
.pv-v2 .pv-highlight:before {
|
|
2550
|
+
background-color: var(--highlight-square, #EAB333);
|
|
2551
|
+
}
|
|
2552
|
+
.pv-v2 .pv-highlight-category:before {
|
|
2553
|
+
background-color: var(--highlight-category-square, #351BC5);
|
|
2554
|
+
}
|
|
2555
|
+
.pv-v2 .pv-highlight-tag {
|
|
2556
|
+
color: var(--color-text-subdued, #4B595C);
|
|
2557
|
+
padding-inline: 0;
|
|
2558
|
+
}
|
|
2559
|
+
.pv-v2 [class*=pv-tab-list] {
|
|
2560
|
+
display: flex;
|
|
2561
|
+
align-items: center;
|
|
2562
|
+
gap: var(--tab-list-gap, 0);
|
|
2563
|
+
padding-block-start: var(--tab-list-padding-top, 0);
|
|
2564
|
+
border-block-end: var(--tab-list-border-width, 2px) solid var(--tab-list-border-color, #E3E7EA);
|
|
2565
|
+
}
|
|
2566
|
+
.pv-v2 [class*=pv-tab-list] :where(li) {
|
|
2567
|
+
position: relative;
|
|
2568
|
+
white-space: nowrap;
|
|
2569
|
+
transition-duration: 0.125s;
|
|
2570
|
+
transition-property: color;
|
|
2571
|
+
}
|
|
2572
|
+
.pv-v2 [class*=pv-tab-list] :where(li) a, .pv-v2 [class*=pv-tab-list] :where(li) button {
|
|
2573
|
+
display: flex;
|
|
2574
|
+
align-items: center;
|
|
2575
|
+
gap: 0.25rem;
|
|
2576
|
+
color: var(--tab-list-text-color, #89989B);
|
|
2577
|
+
font-weight: var(--tab-list-font-weight, 500);
|
|
2578
|
+
font-size: var(--tab-list-font-size, 0.75rem);
|
|
2579
|
+
line-height: var(--tab-list-line-height, 1rem);
|
|
2580
|
+
padding: var(--tab-list-item-padding, 0.4375rem 0.5rem);
|
|
2581
|
+
border-radius: var(--tab-list-item-radius, 4px) var(--tab-list-item-radius, 4px) 0 0;
|
|
2582
|
+
border: 0;
|
|
2583
|
+
text-align: left;
|
|
2584
|
+
background-color: transparent;
|
|
2585
|
+
cursor: pointer;
|
|
2586
|
+
}
|
|
2587
|
+
.pv-v2 [class*=pv-tab-list] :where(li) a:hover, .pv-v2 [class*=pv-tab-list] :where(li) a:focus-visible, .pv-v2 [class*=pv-tab-list] :where(li) button:hover, .pv-v2 [class*=pv-tab-list] :where(li) button:focus-visible {
|
|
2588
|
+
text-decoration: none;
|
|
2589
|
+
color: var(--tab-list-hover-text-color, #121313);
|
|
2590
|
+
background-color: var(--tab-list-hover-background-color, #E8F2F4);
|
|
2591
|
+
}
|
|
2592
|
+
.pv-v2 [class*=pv-tab-list] :where(li) a:active, .pv-v2 [class*=pv-tab-list] :where(li) button:active {
|
|
2593
|
+
background-color: var(--tab-list-pressed-background-color, #C7D8DB);
|
|
2594
|
+
}
|
|
2595
|
+
.pv-v2 [class*=pv-tab-list] :where(li) a:after, .pv-v2 [class*=pv-tab-list] :where(li) button:after {
|
|
2596
|
+
content: "";
|
|
2597
|
+
display: block;
|
|
2598
|
+
height: var(--tab-list-indicator-size, 2px);
|
|
2599
|
+
width: 100%;
|
|
2600
|
+
position: absolute;
|
|
2601
|
+
top: var(--tab-list-indicator-offset, 100%);
|
|
2602
|
+
left: 0;
|
|
2603
|
+
right: 0;
|
|
2604
|
+
background-color: var(--tab-list-indicator-inactive-color, #E3E7EA);
|
|
2605
|
+
}
|
|
2606
|
+
.pv-v2 [class*=pv-tab-list] :where(li)[data-active] a, .pv-v2 [class*=pv-tab-list] :where(li)[data-active] button {
|
|
2607
|
+
color: var(--tab-list-active-text-color, #16696D);
|
|
2608
|
+
}
|
|
2609
|
+
.pv-v2 [class*=pv-tab-list] :where(li)[data-active] a:after, .pv-v2 [class*=pv-tab-list] :where(li)[data-active] button:after {
|
|
2610
|
+
border-radius: var(--tab-list-indicator-radius, 2px);
|
|
2611
|
+
background-color: var(--tab-list-indicator-color, #16696D);
|
|
2612
|
+
}
|
|
2613
|
+
.pv-v2 .pv-tab-list-small :where(li) a, .pv-v2 .pv-tab-list-small :where(li) button {
|
|
2614
|
+
padding: var(--tab-list-small-item-padding, 0.1875rem 0.5rem);
|
|
2615
|
+
}
|
|
2616
|
+
.pv-v2 :where(ol.pv-tab-list) {
|
|
2617
|
+
counter-reset: item;
|
|
2618
|
+
}
|
|
2619
|
+
.pv-v2 :where(ol.pv-tab-list) :where(li) > a:before {
|
|
2620
|
+
counter-increment: item;
|
|
2621
|
+
content: counter(item);
|
|
2622
|
+
display: inline-block;
|
|
2623
|
+
width: 1.5rem;
|
|
2624
|
+
height: 1.5rem;
|
|
2625
|
+
color: #FFFFFF;
|
|
2626
|
+
background-color: #ADB5C0;
|
|
2627
|
+
margin-inline-end: 0.5rem;
|
|
2628
|
+
text-align: center;
|
|
2629
|
+
border-radius: 50%;
|
|
2630
|
+
font-size: 0.75rem;
|
|
2631
|
+
line-height: 2;
|
|
2632
|
+
}
|
|
2633
|
+
.pv-v2 :where(ol.pv-tab-list) [data-active] > a:before {
|
|
2634
|
+
background-color: #16696D;
|
|
2635
|
+
}
|
|
2636
|
+
.pv-v2 :where(ol.pv-tab-list) [data-complete] {
|
|
2637
|
+
opacity: 1;
|
|
2638
|
+
}
|
|
2639
|
+
.pv-v2 :where(ol.pv-tab-list) [data-complete] > a:before {
|
|
2640
|
+
background-color: #16696D;
|
|
2641
|
+
color: transparent;
|
|
2642
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.1 4.9c.6.6.6 1.5 0 2.1l-11 11c-.6.6-1.5.6-2.1 0l-5-5c-.6-.6-.6-1.5 0-2.1.6-.6 1.5-.6 2.1 0l3.9 4L18.9 5c.6-.6 1.6-.6 2.2-.1z' fill='%23fff'/%3E%3C/svg%3E");
|
|
2643
|
+
background-repeat: no-repeat;
|
|
2644
|
+
background-size: 0.75rem 0.75rem;
|
|
2645
|
+
background-position: 50% 50%;
|
|
2646
|
+
}
|
|
2647
|
+
.pv-v2 [class*=pv-modal] {
|
|
2648
|
+
--max-height: auto;
|
|
2649
|
+
--max-width: 100%;
|
|
2650
|
+
--top: 2rem;
|
|
2651
|
+
border: none;
|
|
2652
|
+
border-radius: 4px;
|
|
2653
|
+
box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.35), 0px 12px 20px rgba(0, 0, 0, 0.25), 0px 16px 28px -8px rgba(0, 0, 0, 0.25);
|
|
2654
|
+
color: #121313;
|
|
2655
|
+
max-width: min(100% - 2rem, var(--max-width));
|
|
2656
|
+
max-height: min(100% - 2rem, var(--max-height));
|
|
2657
|
+
margin-inline: auto;
|
|
2658
|
+
opacity: 0;
|
|
2659
|
+
overflow-y: auto;
|
|
2660
|
+
padding: 0;
|
|
2661
|
+
position: relative;
|
|
2662
|
+
top: var(--top);
|
|
2663
|
+
width: 100%;
|
|
2664
|
+
transition-behavior: allow-discrete;
|
|
2665
|
+
transition-duration: 0.3s;
|
|
2666
|
+
transition-property: opacity;
|
|
2667
|
+
transition-timing-function: ease-in-out;
|
|
2668
|
+
}
|
|
2669
|
+
.pv-v2 [class*=pv-modal][open] {
|
|
2670
|
+
opacity: 1;
|
|
2671
|
+
}
|
|
2672
|
+
.pv-v2 [class*=pv-modal]::backdrop {
|
|
2673
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
2674
|
+
}
|
|
2675
|
+
@starting-style {
|
|
2676
|
+
.pv-v2 [class*=pv-modal][open] {
|
|
2677
|
+
opacity: 0;
|
|
2678
|
+
}
|
|
2679
|
+
}
|
|
2680
|
+
.pv-v2 .pv-modal-sm {
|
|
2681
|
+
--max-width: 480px;
|
|
2682
|
+
}
|
|
2683
|
+
.pv-v2 .pv-modal-md {
|
|
2684
|
+
--max-width: 720px;
|
|
2685
|
+
}
|
|
2686
|
+
.pv-v2 .pv-breadcrumbs {
|
|
2687
|
+
font-size: 0.75rem;
|
|
2688
|
+
line-height: 1.33333333;
|
|
2689
|
+
font-weight: 500;
|
|
2690
|
+
display: flex;
|
|
2691
|
+
flex-wrap: wrap;
|
|
2692
|
+
align-items: center;
|
|
2693
|
+
gap: 0.25rem;
|
|
2694
|
+
transition-duration: 0.125s;
|
|
2695
|
+
transition-property: color;
|
|
2696
|
+
}
|
|
2697
|
+
.pv-v2 .pv-breadcrumbs li {
|
|
2698
|
+
display: flex;
|
|
2699
|
+
gap: 0.25rem;
|
|
2700
|
+
align-items: center;
|
|
2701
|
+
color: #4B595C;
|
|
2702
|
+
}
|
|
2703
|
+
.pv-v2 .pv-breadcrumbs li a {
|
|
2704
|
+
color: inherit;
|
|
2705
|
+
font-weight: inherit;
|
|
2706
|
+
}
|
|
2707
|
+
.pv-v2 .pv-breadcrumbs li:not(:last-child):after {
|
|
2708
|
+
display: block;
|
|
2709
|
+
content: "";
|
|
2710
|
+
color: #89989B;
|
|
2711
|
+
width: 0.75rem;
|
|
2712
|
+
height: 0.75rem;
|
|
2713
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.707 18.707a1 1 0 0 1-1.414-1.414L13.586 12 8.293 6.707a1 1 0 0 1 1.414-1.414l6 6a.999.999 0 0 1 0 1.414l-6 6Z' fill='%2389989B'/%3E%3C/svg%3E");
|
|
2714
|
+
background-repeat: no-repeat;
|
|
2715
|
+
background-size: 100% 100%;
|
|
2716
|
+
background-position: center center;
|
|
2717
|
+
}
|
|
2718
|
+
.pv-v2 .pv-breadcrumbs li:last-child {
|
|
2719
|
+
font-weight: 600;
|
|
2720
|
+
color: #121313;
|
|
2721
|
+
}
|
|
2722
|
+
.pv-v2 .pv-dropdown {
|
|
2723
|
+
position: relative;
|
|
2724
|
+
display: inline-flex;
|
|
2725
|
+
vertical-align: top;
|
|
2726
|
+
}
|
|
2727
|
+
.pv-v2 .pv-dropdown .pv-popover {
|
|
2728
|
+
visibility: hidden;
|
|
2729
|
+
opacity: 0;
|
|
2730
|
+
transition-duration: 0.3s;
|
|
2731
|
+
transition-property: opacity;
|
|
2732
|
+
}
|
|
2733
|
+
.pv-v2 .pv-dropdown .pv-popover-list li {
|
|
2734
|
+
padding: 0;
|
|
2735
|
+
transition-duration: 0.3s;
|
|
2736
|
+
transition-property: background-color;
|
|
2737
|
+
}
|
|
2738
|
+
.pv-v2 .pv-dropdown .pv-popover-list li:hover, .pv-v2 .pv-dropdown .pv-popover-list li:focus-visible {
|
|
2739
|
+
background-color: #ECECEC;
|
|
2740
|
+
}
|
|
2741
|
+
.pv-v2 .pv-dropdown .pv-popover-list li label {
|
|
2742
|
+
padding: 0.5rem 1rem;
|
|
2743
|
+
cursor: pointer;
|
|
2744
|
+
}
|
|
2745
|
+
.pv-v2 .pv-select-multiple {
|
|
2746
|
+
font-weight: 600;
|
|
2747
|
+
}
|
|
2748
|
+
.pv-v2 .pv-select-multiple[data-dropdown] {
|
|
2749
|
+
background-image: var(--select-multiple-open-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.151 15.848a1.2 1.2 0 0 0 1.698 0L12 10.698l5.151 5.15a1.2 1.2 0 1 0 1.698-1.697l-6-6a1.2 1.2 0 0 0-1.697 0l-6 6a1.2 1.2 0 0 0 0 1.697Z' fill='%23176f6f'/%3E%3C/svg%3E"));
|
|
2750
|
+
background-color: #ECECEC;
|
|
2751
|
+
}
|
|
2752
|
+
.pv-v2 .pv-select-multiple[data-dropdown],
|
|
2753
|
+
.pv-v2 .pv-input-search[data-dropdown] {
|
|
2754
|
+
border-color: #36C5BA;
|
|
2755
|
+
color: #16696D;
|
|
2756
|
+
}
|
|
2757
|
+
.pv-v2 .pv-select-multiple[data-dropdown] + .pv-popover,
|
|
2758
|
+
.pv-v2 .pv-input-search[data-dropdown] + .pv-popover {
|
|
2759
|
+
visibility: visible;
|
|
2760
|
+
opacity: 1;
|
|
2761
|
+
border-radius: 4px;
|
|
2762
|
+
}
|
|
2763
|
+
.pv-v2 .pv-dropdown > [class*=pv-button] {
|
|
2764
|
+
padding-inline-end: 40px;
|
|
2765
|
+
background-image: var(--dropdown-closed-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.151 8.151a1.2 1.2 0 0 1 1.698 0L12 13.303l5.151-5.152A1.2 1.2 0 1 1 18.85 9.85l-6 6a1.2 1.2 0 0 1-1.697 0l-6-6a1.2 1.2 0 0 1 0-1.698Z' fill='%23FFFFFF'/%3E%3C/svg%3E"));
|
|
2766
|
+
background-repeat: no-repeat;
|
|
2767
|
+
background-size: 1.25rem 1.25rem;
|
|
2768
|
+
background-position: right 1rem center;
|
|
2769
|
+
}
|
|
2770
|
+
.pv-v2 .pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
2771
|
+
background-image: var(--dropdown-open-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.151 15.848a1.2 1.2 0 0 0 1.698 0L12 10.698l5.151 5.15a1.2 1.2 0 1 0 1.698-1.697l-6-6a1.2 1.2 0 0 0-1.697 0l-6 6a1.2 1.2 0 0 0 0 1.697Z' fill='%23FFFFFF'/%3E%3C/svg%3E"));
|
|
2772
|
+
}
|
|
2773
|
+
.pv-v2 .pv-dropdown > [class*=pv-button][data-dropdown] + .pv-popover {
|
|
2774
|
+
visibility: visible;
|
|
2775
|
+
opacity: 1;
|
|
2776
|
+
border-radius: 4px;
|
|
2777
|
+
}
|
|
2778
|
+
.pv-v2 .pv-dropdown > .pv-button-primary-outline:not(:hover),
|
|
2779
|
+
.pv-v2 .pv-dropdown > .pv-button-ghost {
|
|
2780
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23176F6F' d='m7.1 9.9 4.3 5.1c.1.1.2.1.3.2.1 0 .2.1.3.1s.2 0 .3-.1c.1 0 .2-.1.3-.2L17 9.9c.4-.5.1-1.2-.6-1.2H7.6c-.6 0-1 .8-.5 1.2z'/%3E%3C/svg%3E");
|
|
2781
|
+
}
|
|
2782
|
+
.pv-v2 .pv-dropdown > .pv-button-primary-outline[data-dropdown]:not(:hover),
|
|
2783
|
+
.pv-v2 .pv-dropdown > .pv-button-ghost[data-dropdown] {
|
|
2784
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.6 15.3h8.8c.7 0 1-.7.6-1.2L12.6 9c-.1-.1-.2-.2-.3-.2-.1-.1-.2-.1-.3-.1s-.2.1-.3.1c-.1.1-.2.1-.3.2l-4.3 5.1c-.5.4-.1 1.2.5 1.2z' fill='%23176F6F'/%3E%3C/svg%3E");
|
|
2785
|
+
}
|
|
2786
|
+
.pv-v2 .pv-dropdown > .pv-button-tertiary:not([data-dropdown]),
|
|
2787
|
+
.pv-v2 .pv-dropdown > .pv-button-secondary-outline:not(:hover) {
|
|
2788
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2302363D' d='m7.1 9.9 4.3 5.1c.1.1.2.1.3.2.1 0 .2.1.3.1s.2 0 .3-.1c.1 0 .2-.1.3-.2L17 9.9c.4-.5.1-1.2-.6-1.2H7.6c-.6 0-1 .8-.5 1.2z'/%3E%3C/svg%3E");
|
|
2789
|
+
}
|
|
2790
|
+
.pv-v2 .pv-dropdown > .pv-button-tertiary[data-dropdown],
|
|
2791
|
+
.pv-v2 .pv-dropdown > .pv-button-secondary-outline[data-dropdown]:not(:hover) {
|
|
2792
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.6 15.3h8.8c.7 0 1-.7.6-1.2L12.6 9c-.1-.1-.2-.2-.3-.2-.1-.1-.2-.1-.3-.1s-.2.1-.3.1c-.1.1-.2.1-.3.2l-4.3 5.1c-.5.4-.1 1.2.5 1.2z' fill='%2302363D'/%3E%3C/svg%3E");
|
|
2793
|
+
}
|
|
2794
|
+
.pv-v2 pv-dropdown-auto-close.pv-dropdown > [class*=pv-button],
|
|
2795
|
+
.pv-v2 pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
2796
|
+
background-image: none;
|
|
2797
|
+
}
|
|
2798
|
+
.pv-v2 .pv-pagination {
|
|
2799
|
+
display: flex;
|
|
2800
|
+
justify-content: center;
|
|
2801
|
+
}
|
|
2802
|
+
.pv-v2 .pv-pagination > button,
|
|
2803
|
+
.pv-v2 .pv-pagination > a {
|
|
2804
|
+
font-size: 1.5rem;
|
|
2805
|
+
line-height: 1;
|
|
2806
|
+
background-color: transparent;
|
|
2807
|
+
transition-duration: 0.125s;
|
|
2808
|
+
transition-property: background-color, color;
|
|
2809
|
+
}
|
|
2810
|
+
.pv-v2 .pv-pagination > button:first-of-type,
|
|
2811
|
+
.pv-v2 .pv-pagination > a:first-of-type {
|
|
2812
|
+
border-radius: 2rem 0 0 2rem;
|
|
2813
|
+
}
|
|
2814
|
+
.pv-v2 .pv-pagination > button:last-of-type,
|
|
2815
|
+
.pv-v2 .pv-pagination > a:last-of-type {
|
|
2816
|
+
border-radius: 0 2rem 2rem 0;
|
|
2817
|
+
}
|
|
2818
|
+
.pv-v2 .pv-pagination > button:disabled, .pv-v2 .pv-pagination > button:not([href]):not(button),
|
|
2819
|
+
.pv-v2 .pv-pagination > a:disabled,
|
|
2820
|
+
.pv-v2 .pv-pagination > a:not([href]):not(button) {
|
|
2821
|
+
color: #ADB5C0;
|
|
2822
|
+
background-color: #ECECEC;
|
|
2823
|
+
user-select: none;
|
|
2824
|
+
cursor: default;
|
|
2825
|
+
}
|
|
2826
|
+
.pv-v2 .pv-pagination > button:hover,
|
|
2827
|
+
.pv-v2 .pv-pagination > a:hover {
|
|
2828
|
+
background-color: #ECECEC;
|
|
2829
|
+
cursor: pointer;
|
|
2830
|
+
}
|
|
2831
|
+
.pv-v2 .pv-pagination [role=list] {
|
|
2832
|
+
display: flex;
|
|
2833
|
+
}
|
|
2834
|
+
.pv-v2 .pv-pagination li {
|
|
2835
|
+
display: grid;
|
|
2836
|
+
place-items: center;
|
|
2837
|
+
user-select: none;
|
|
2838
|
+
}
|
|
2839
|
+
.pv-v2 .pv-pagination a {
|
|
2840
|
+
display: block;
|
|
2841
|
+
line-height: 38px;
|
|
2842
|
+
transition-duration: 0.125s;
|
|
2843
|
+
transition-property: background-color, color;
|
|
2844
|
+
width: 40px;
|
|
2845
|
+
}
|
|
2846
|
+
.pv-v2 .pv-pagination a[aria-current=page] {
|
|
2847
|
+
background-color: #16696D;
|
|
2848
|
+
color: #FFFFFF;
|
|
2849
|
+
}
|
|
2850
|
+
.pv-v2 .pv-pagination a:hover, .pv-v2 .pv-pagination a:focus-visible {
|
|
2851
|
+
text-decoration: none;
|
|
2852
|
+
}
|
|
2853
|
+
.pv-v2 .pv-pagination a:hover:not([aria-current=page]), .pv-v2 .pv-pagination a:focus-visible:not([aria-current=page]) {
|
|
2854
|
+
background-color: #ECECEC;
|
|
2855
|
+
}
|
|
2856
|
+
.pv-v2 .pv-pagination > button,
|
|
2857
|
+
.pv-v2 .pv-pagination > a,
|
|
2858
|
+
.pv-v2 .pv-pagination li {
|
|
2859
|
+
border: 1px solid #E3E7EA;
|
|
2860
|
+
text-align: center;
|
|
2861
|
+
width: 40px;
|
|
2862
|
+
height: 40px;
|
|
2863
|
+
color: inherit;
|
|
2864
|
+
background-color: #FFFFFF;
|
|
2865
|
+
font-weight: 700;
|
|
2866
|
+
}
|
|
2867
|
+
.pv-v2 .pv-pagination :not(:last-child),
|
|
2868
|
+
.pv-v2 .pv-pagination [role=list] li:last-child {
|
|
2869
|
+
border-inline-end: 0;
|
|
2870
|
+
}
|
|
2871
|
+
.pv-v2 .pv-scroller {
|
|
2872
|
+
position: absolute;
|
|
2873
|
+
inset: 0;
|
|
2874
|
+
overflow: auto;
|
|
2875
|
+
}
|
|
2876
|
+
.pv-v2 .pv-org-switch {
|
|
2877
|
+
width: 100%;
|
|
2878
|
+
border: none;
|
|
2879
|
+
border-bottom: 1px solid var(--org-switch-border-color, transparent);
|
|
2880
|
+
padding: 1rem 1.25rem;
|
|
2881
|
+
line-height: 1;
|
|
2882
|
+
text-align: left;
|
|
2883
|
+
color: var(--org-switch-text-color, #121313);
|
|
2884
|
+
background-color: transparent;
|
|
2885
|
+
display: flex;
|
|
2886
|
+
align-items: center;
|
|
2887
|
+
gap: 0.5rem;
|
|
2888
|
+
cursor: pointer;
|
|
2889
|
+
}
|
|
2890
|
+
.pv-v2 .pv-org-switch :nth-child(2) {
|
|
2891
|
+
flex: 1;
|
|
2892
|
+
}
|
|
2893
|
+
.pv-v2 .pv-org-switch svg {
|
|
2894
|
+
opacity: 0.7;
|
|
2895
|
+
}
|
|
2896
|
+
.pv-v2 .pv-org-switch:hover svg {
|
|
2897
|
+
opacity: 1;
|
|
2898
|
+
}
|
|
2899
|
+
.pv-v2 .pv-org-switch .pv-text-subdued {
|
|
2900
|
+
color: var(--layout-primary-subdued-color, #4B595C);
|
|
2901
|
+
}
|
|
2902
|
+
.pv-v2 [data-collapsed] .pv-org-switch {
|
|
2903
|
+
width: 80px;
|
|
2904
|
+
justify-content: center;
|
|
2905
|
+
}
|
|
2906
|
+
.pv-v2 [data-collapsed] .pv-org-switch :not(:first-child) {
|
|
2907
|
+
display: none;
|
|
2908
|
+
}
|
|
2909
|
+
@media (width <= 768px) {
|
|
2910
|
+
.pv-v2 .pv-layout-primary:not([data-floating]) .pv-org-switch {
|
|
2911
|
+
justify-content: center;
|
|
2912
|
+
}
|
|
2913
|
+
.pv-v2 .pv-layout-primary:not([data-floating]) .pv-org-switch :not(:first-child) {
|
|
2914
|
+
display: none;
|
|
2915
|
+
}
|
|
2916
|
+
}
|
|
2917
|
+
.pv-v2 .pv-progress-bar {
|
|
2918
|
+
--progress: 20%;
|
|
2919
|
+
--width: 100%;
|
|
2920
|
+
background: linear-gradient(90deg, #16696D var(--progress), #E3E7EA var(--progress));
|
|
2921
|
+
width: var(--width);
|
|
2922
|
+
height: 0.5rem;
|
|
2923
|
+
border-radius: 1rem;
|
|
2924
|
+
position: relative;
|
|
2925
|
+
overflow: hidden;
|
|
2926
|
+
}
|
|
2927
|
+
.pv-v2 .pv-progress-bar:after {
|
|
2928
|
+
content: "";
|
|
2929
|
+
display: block;
|
|
2930
|
+
width: 2px;
|
|
2931
|
+
height: 100%;
|
|
2932
|
+
background-color: #FFFFFF;
|
|
2933
|
+
position: absolute;
|
|
2934
|
+
left: var(--progress);
|
|
2935
|
+
}
|
|
2936
|
+
.pv-v2 .pv-tooltip,
|
|
2937
|
+
.pv-v2 .pv-hover-card {
|
|
2938
|
+
--max-width: 320px;
|
|
2939
|
+
position: relative;
|
|
2940
|
+
display: inline-block;
|
|
2941
|
+
cursor: pointer;
|
|
2942
|
+
}
|
|
2943
|
+
.pv-v2 .pv-tooltip [role=tooltip],
|
|
2944
|
+
.pv-v2 .pv-hover-card [role=tooltip] {
|
|
2945
|
+
display: none;
|
|
2946
|
+
}
|
|
2947
|
+
.pv-v2 .pv-tooltip:hover > [role=tooltip], .pv-v2 .pv-tooltip:focus > [role=tooltip],
|
|
2948
|
+
.pv-v2 .pv-hover-card:hover > [role=tooltip],
|
|
2949
|
+
.pv-v2 .pv-hover-card:focus > [role=tooltip] {
|
|
2950
|
+
display: inline-block;
|
|
2951
|
+
position: absolute;
|
|
2952
|
+
left: 0;
|
|
2953
|
+
top: calc(100% + 0.25rem);
|
|
2954
|
+
width: max-content;
|
|
2955
|
+
max-width: var(--max-width);
|
|
2956
|
+
background-color: #242626;
|
|
2957
|
+
color: #FFFFFF;
|
|
2958
|
+
padding: 0.5rem;
|
|
2959
|
+
border-radius: 4px;
|
|
2960
|
+
font-size: 0.6875rem;
|
|
2961
|
+
line-height: 1.45454545;
|
|
2962
|
+
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
|
|
2963
|
+
z-index: 50;
|
|
2964
|
+
border: 1px solid transparent;
|
|
2965
|
+
}
|
|
2966
|
+
.pv-v2 .pv-tooltip[data-position*=top] > [role=tooltip],
|
|
2967
|
+
.pv-v2 .pv-hover-card[data-position*=top] > [role=tooltip] {
|
|
2968
|
+
top: auto;
|
|
2969
|
+
bottom: calc(100% + 0.25rem);
|
|
2970
|
+
}
|
|
2971
|
+
.pv-v2 .pv-tooltip[data-position=top-right] > [role=tooltip], .pv-v2 .pv-tooltip[data-position=bottom-right] > [role=tooltip],
|
|
2972
|
+
.pv-v2 .pv-hover-card[data-position=top-right] > [role=tooltip],
|
|
2973
|
+
.pv-v2 .pv-hover-card[data-position=bottom-right] > [role=tooltip] {
|
|
2974
|
+
left: auto;
|
|
2975
|
+
right: 0;
|
|
2976
|
+
}
|
|
2977
|
+
.pv-v2 .pv-tooltip[data-position=top-center] > [role=tooltip], .pv-v2 .pv-tooltip[data-position=bottom-center] > [role=tooltip],
|
|
2978
|
+
.pv-v2 .pv-hover-card[data-position=top-center] > [role=tooltip],
|
|
2979
|
+
.pv-v2 .pv-hover-card[data-position=bottom-center] > [role=tooltip] {
|
|
2980
|
+
left: 50%;
|
|
2981
|
+
transform: translateX(-50%);
|
|
2982
|
+
}
|
|
2983
|
+
.pv-v2 .pv-tooltip[data-position=center-right] > [role=tooltip],
|
|
2984
|
+
.pv-v2 .pv-hover-card[data-position=center-right] > [role=tooltip] {
|
|
2985
|
+
top: 0;
|
|
2986
|
+
left: calc(100% + 0.25rem);
|
|
2987
|
+
}
|
|
2988
|
+
.pv-v2 .pv-tooltip a,
|
|
2989
|
+
.pv-v2 .pv-hover-card a {
|
|
2990
|
+
color: #E4F8F6;
|
|
2991
|
+
}
|
|
2992
|
+
.pv-v2 .pv-tooltip:after,
|
|
2993
|
+
.pv-v2 .pv-hover-card:after {
|
|
2994
|
+
content: "";
|
|
2995
|
+
position: absolute;
|
|
2996
|
+
inset: -4px;
|
|
2997
|
+
}
|
|
2998
|
+
.pv-v2 .pv-tooltip[data-style=white] > [role=tooltip],
|
|
2999
|
+
.pv-v2 .pv-hover-card[data-style=white] > [role=tooltip] {
|
|
3000
|
+
background-color: white;
|
|
3001
|
+
color: #121313;
|
|
3002
|
+
border-color: #E3E7EA;
|
|
3003
|
+
}
|
|
3004
|
+
.pv-v2 .pv-tooltip[data-style=white] > [role=tooltip] a,
|
|
3005
|
+
.pv-v2 .pv-hover-card[data-style=white] > [role=tooltip] a {
|
|
3006
|
+
color: #16696D;
|
|
3007
|
+
}
|
|
3008
|
+
.pv-v2 .pv-hover-card:hover > [role=tooltip] {
|
|
3009
|
+
background-color: #FFFFFF;
|
|
3010
|
+
border: 1px solid #E3E7EA;
|
|
3011
|
+
color: #121313;
|
|
3012
|
+
padding: 1rem;
|
|
3013
|
+
}
|
|
3014
|
+
.pv-v2 [class*=pv-accordion] summary,
|
|
3015
|
+
.pv-v2 .pv-details summary {
|
|
3016
|
+
list-style: none;
|
|
3017
|
+
cursor: pointer;
|
|
3018
|
+
font-weight: var(--accordion-summary-font-weight, 500);
|
|
3019
|
+
background-repeat: no-repeat;
|
|
3020
|
+
}
|
|
3021
|
+
.pv-v2 :where([class*=pv-accordion]) {
|
|
3022
|
+
overflow: clip;
|
|
3023
|
+
background-color: var(--accordion-background-color, #FFFFFF);
|
|
3024
|
+
}
|
|
3025
|
+
.pv-v2 :where([class*=pv-accordion]) > summary {
|
|
3026
|
+
padding: var(--accordion-arrow-right-summary-padding, 0.25rem 1.375rem 0.25rem 0.125rem);
|
|
3027
|
+
font-size: var(--accordion-summary-font-size, 0.75rem);
|
|
3028
|
+
line-height: var(--accordion-summary-line-height, 1.33333333);
|
|
3029
|
+
border-radius: var(--accordion-radius, 4px);
|
|
3030
|
+
background-image: var(--accordion-summary-closed-background-image, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.455 7.83c.439-.44 1.151-.44 1.59 0L12 13.784l5.954-5.955a1.125 1.125 0 0 1 1.591 1.592l-6.75 6.75c-.439.439-1.151.439-1.59 0l-6.75-6.75a1.125 1.125 0 0 1 0-1.591Z' fill='%23121313'/%3E%3C/svg%3E"));
|
|
3031
|
+
background-size: var(--accordion-summary-background-size, 1rem 1rem);
|
|
3032
|
+
background-position: var(--accordion-arrow-right-summary-background-position, right 0.25rem center);
|
|
3033
|
+
background-color: var(--accordion-summary-background-color, transparent);
|
|
3034
|
+
transition-duration: 0.125s;
|
|
3035
|
+
transition-timing-function: ease-in;
|
|
3036
|
+
transition-property: color;
|
|
3037
|
+
}
|
|
3038
|
+
.pv-v2 :where([class*=pv-accordion]) > summary::-webkit-details-marker {
|
|
3039
|
+
display: none;
|
|
3040
|
+
}
|
|
3041
|
+
.pv-v2 :where([class*=pv-accordion]) > summary:hover, .pv-v2 :where([class*=pv-accordion]) > summary:focus-visible {
|
|
3042
|
+
color: var(--accordion-summary-hover-color, inherit);
|
|
3043
|
+
background-color: var(--accordion-summary-hover-background-color, #E8F2F4);
|
|
3044
|
+
}
|
|
3045
|
+
.pv-v2 :where([class*=pv-accordion]) > summary:active {
|
|
3046
|
+
color: var(--accordion-summary-pressed-color, inherit);
|
|
3047
|
+
background-color: var(--accordion-summary-pressed-background-color, #C7D8DB);
|
|
3048
|
+
}
|
|
3049
|
+
.pv-v2 :where([class*=pv-accordion])[data-arrow=left] > summary {
|
|
3050
|
+
padding: var(--accordion-arrow-left-summary-padding, 0.25rem 0.125rem 0.25rem 1.375rem);
|
|
3051
|
+
background-position: var(--accordion-arrow-left-summary-background-position, left 0.25rem center);
|
|
3052
|
+
}
|
|
3053
|
+
.pv-v2 :where([class*=pv-accordion]) > :where(:not(summary)) {
|
|
3054
|
+
padding: var(--accordion-content-padding, 0.75rem 0 0.75rem 0);
|
|
3055
|
+
}
|
|
3056
|
+
.pv-v2 :where([class*=pv-accordion]):not(:last-of-type) {
|
|
3057
|
+
border-bottom: var(--accordion-border, none);
|
|
3058
|
+
}
|
|
3059
|
+
.pv-v2 :where([class*=pv-accordion])::details-content {
|
|
3060
|
+
height: 0;
|
|
3061
|
+
opacity: 0;
|
|
3062
|
+
transition-duration: 0.3s, 1s, 0.125s;
|
|
3063
|
+
transition-property: height, content-visibility, opacity;
|
|
3064
|
+
transition-timing-function: ease-in-out;
|
|
3065
|
+
transition-behavior: allow-discrete;
|
|
3066
|
+
}
|
|
3067
|
+
.pv-v2 :where([class*=pv-accordion])[open]::details-content {
|
|
3068
|
+
opacity: 1;
|
|
3069
|
+
height: auto;
|
|
3070
|
+
}
|
|
3071
|
+
.pv-v2 :where([class*=pv-accordion])[open] > summary {
|
|
3072
|
+
background-image: var(--accordion-summary-open-background-image, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.455 16.17c.439.44 1.151.44 1.59 0L12 10.216l5.954 5.955a1.125 1.125 0 0 0 1.591-1.591l-6.75-6.75a1.125 1.125 0 0 0-1.59 0l-6.75 6.75c-.44.439-.44 1.151 0 1.59Z' fill='%23121313'/%3E%3C/svg%3E"));
|
|
3073
|
+
}
|
|
3074
|
+
.pv-v2 .pv-accordion-dark > summary,
|
|
3075
|
+
.pv-v2 .pv-accordion-transparent > summary {
|
|
3076
|
+
background-image: var(--summary-background-image-closed, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.455 7.83c.439-.44 1.151-.44 1.59 0L12 13.784l5.954-5.955a1.125 1.125 0 0 1 1.591 1.592l-6.75 6.75c-.439.439-1.151.439-1.59 0l-6.75-6.75a1.125 1.125 0 0 1 0-1.591Z' fill='%23FFFFFF'/%3E%3C/svg%3E"));
|
|
3077
|
+
}
|
|
3078
|
+
.pv-v2 .pv-accordion-dark[open] > summary,
|
|
3079
|
+
.pv-v2 .pv-accordion-transparent[open] > summary {
|
|
3080
|
+
background-image: var(--summary-background-image-open, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.455 16.17c.439.44 1.151.44 1.59 0L12 10.216l5.954 5.955a1.125 1.125 0 0 0 1.591-1.591l-6.75-6.75a1.125 1.125 0 0 0-1.59 0l-6.75 6.75c-.44.439-.44 1.151 0 1.59Z' fill='%23FFFFFF'/%3E%3C/svg%3E"));
|
|
3081
|
+
}
|
|
3082
|
+
.pv-v2 .pv-accordion-dark > summary {
|
|
3083
|
+
color: var(--color-text-inverse, #FFFFFF);
|
|
3084
|
+
background-color: var(--color-background-brand, #02363D);
|
|
3085
|
+
}
|
|
3086
|
+
.pv-v2 .pv-accordion-dark > summary:hover, .pv-v2 .pv-accordion-dark > summary:focus-within {
|
|
3087
|
+
color: var(--color-text-brand-inverse, #E4F8F6);
|
|
3088
|
+
}
|
|
3089
|
+
.pv-v2 .pv-accordion-dark:not(:last-of-type) {
|
|
3090
|
+
border-bottom: 1px solid var(--color-brand-secondary, #176F6F);
|
|
3091
|
+
}
|
|
3092
|
+
.pv-v2 .pv-accordion-dark > :where(:not(summary)) {
|
|
3093
|
+
padding: 1rem;
|
|
3094
|
+
}
|
|
3095
|
+
.pv-v2 .pv-accordion-transparent {
|
|
3096
|
+
background-color: transparent;
|
|
3097
|
+
}
|
|
3098
|
+
.pv-v2 .pv-accordion-transparent > :where(:not(summary)) {
|
|
3099
|
+
padding: 0;
|
|
3100
|
+
}
|
|
3101
|
+
.pv-v2 .pv-accordion-transparent > summary {
|
|
3102
|
+
font-weight: 400;
|
|
3103
|
+
font-size: 0.6875rem;
|
|
3104
|
+
padding-inline-start: 0;
|
|
3105
|
+
padding-inline-end: 1.25rem;
|
|
3106
|
+
background-position: right center;
|
|
3107
|
+
background-size: 1rem 1rem;
|
|
3108
|
+
--summary-background-image-closed: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.455 7.83c.439-.44 1.151-.44 1.59 0L12 13.784l5.954-5.955a1.125 1.125 0 0 1 1.591 1.592l-6.75 6.75c-.439.439-1.151.439-1.59 0l-6.75-6.75a1.125 1.125 0 0 1 0-1.591Z' fill='%23A8E6E1'/%3E%3C/svg%3E");
|
|
3109
|
+
--summary-background-image-open: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.455 16.17c.439.44 1.151.44 1.59 0L12 10.216l5.954 5.955a1.125 1.125 0 0 0 1.591-1.591l-6.75-6.75a1.125 1.125 0 0 0-1.59 0l-6.75 6.75c-.44.439-.44 1.151 0 1.59Z' fill='%23A8E6E1'/%3E%3C/svg%3E");
|
|
3110
|
+
}
|
|
3111
|
+
.pv-v2 .pv-accordion-transparent dl > div {
|
|
3112
|
+
display: flex;
|
|
3113
|
+
gap: 1rem;
|
|
3114
|
+
font-size: 0.6875rem;
|
|
3115
|
+
}
|
|
3116
|
+
.pv-v2 .pv-accordion-transparent dt {
|
|
3117
|
+
--min-width: 72px;
|
|
3118
|
+
color: var(--color-text-brand-inverse, #E4F8F6);
|
|
3119
|
+
font-weight: 600;
|
|
3120
|
+
min-width: var(--min-width);
|
|
3121
|
+
}
|
|
3122
|
+
.pv-v2 .pv-accordion-transparent .pv-border-flow {
|
|
3123
|
+
--color-border: white;
|
|
3124
|
+
border: 1px solid var(--color-border, #E3E7EA);
|
|
3125
|
+
border-radius: 4px;
|
|
3126
|
+
}
|
|
3127
|
+
.pv-v2 .pv-accordion-transparent .pv-border-flow > * {
|
|
3128
|
+
border-top: none;
|
|
3129
|
+
}
|
|
3130
|
+
.pv-v2 .pv-accordion-transparent .pv-border-flow > :not(:last-child) {
|
|
3131
|
+
border-bottom: 1px solid var(--color-border, #E3E7EA);
|
|
3132
|
+
}
|
|
3133
|
+
.pv-v2 :where(.pv-details) > summary {
|
|
3134
|
+
padding: 0 1.25rem;
|
|
3135
|
+
font-size: 0.75rem;
|
|
3136
|
+
line-height: 1.45454545;
|
|
3137
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 19.5c-.4-.4-.4-1.2 0-1.6l6-6-6-6c-.4-.4-.4-1.2 0-1.6S9 4 9.4 4.5l6.8 6.8c.4.4.4 1.2 0 1.6l-6.8 6.7c-.4.4-1.1.4-1.6-.1z' fill='%2302363D'/%3E%3C/svg%3E");
|
|
3138
|
+
background-size: 1rem 1rem;
|
|
3139
|
+
background-position: left center;
|
|
3140
|
+
transition-duration: 0.125s;
|
|
3141
|
+
transition-property: color;
|
|
3142
|
+
transition-timing-function: ease-in;
|
|
3143
|
+
}
|
|
3144
|
+
.pv-v2 :where(.pv-details) > summary:hover, .pv-v2 :where(.pv-details) > summary:focus-within {
|
|
3145
|
+
color: var(--color-text-brand, #16696D);
|
|
3146
|
+
}
|
|
3147
|
+
.pv-v2 :where(.pv-details) > summary::-webkit-details-marker {
|
|
3148
|
+
display: none;
|
|
3149
|
+
}
|
|
3150
|
+
.pv-v2 :where(.pv-details) > :not(summary):first-of-type {
|
|
3151
|
+
margin: 0.5rem 0 0 1.25rem;
|
|
3152
|
+
}
|
|
3153
|
+
.pv-v2 :where(.pv-details)[open] > summary {
|
|
3154
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.455 7.83c.439-.44 1.151-.44 1.59 0L12 13.784l5.954-5.955a1.125 1.125 0 0 1 1.591 1.592l-6.75 6.75c-.439.439-1.151.439-1.59 0l-6.75-6.75a1.125 1.125 0 0 1 0-1.591Z' fill='%2302363D'/%3E%3C/svg%3E");
|
|
3155
|
+
}
|
|
3156
|
+
.pv-v2 :where(.pv-details)::details-content {
|
|
3157
|
+
opacity: 0;
|
|
3158
|
+
transition-duration: 0.3s;
|
|
3159
|
+
transition-property: opacity, content-visibility;
|
|
3160
|
+
transition-timing-function: ease-in-out;
|
|
3161
|
+
transition-behavior: allow-discrete;
|
|
3162
|
+
}
|
|
3163
|
+
.pv-v2 :where(.pv-details)[open]::details-content {
|
|
3164
|
+
opacity: 1;
|
|
3165
|
+
}
|
|
3166
|
+
.pv-v2 .pv-action-bar {
|
|
3167
|
+
--button-weight: 600;
|
|
3168
|
+
--max-width: 360px;
|
|
3169
|
+
--text-color: #FFFFFF;
|
|
3170
|
+
--hover-color: #FFFFFF;
|
|
3171
|
+
background-color: #02363D;
|
|
3172
|
+
box-shadow: 0 8px 32px rgba(2, 54, 61, 0.24);
|
|
3173
|
+
color: var(--text-color);
|
|
3174
|
+
display: flex;
|
|
3175
|
+
align-items: center;
|
|
3176
|
+
justify-content: space-between;
|
|
3177
|
+
max-width: var(--max-width);
|
|
3178
|
+
}
|
|
3179
|
+
.pv-v2 .pv-action-bar button:not([class*=pv-button]) {
|
|
3180
|
+
background-color: transparent;
|
|
3181
|
+
border: 0;
|
|
3182
|
+
color: #E4F8F6;
|
|
3183
|
+
cursor: pointer;
|
|
3184
|
+
padding: 0;
|
|
3185
|
+
font-weight: var(--button-weight);
|
|
3186
|
+
text-decoration: none;
|
|
3187
|
+
}
|
|
3188
|
+
.pv-v2 .pv-action-bar button:not([class*=pv-button]):not(:disabled):hover, .pv-v2 .pv-action-bar button:not([class*=pv-button]):not(:disabled):focus-visible {
|
|
3189
|
+
color: var(--hover-color);
|
|
3190
|
+
text-decoration: underline;
|
|
3191
|
+
}
|
|
3192
|
+
.pv-v2 .pv-card {
|
|
3193
|
+
position: relative;
|
|
3194
|
+
border: 1px solid var(--card-border-color, #E3E7EA);
|
|
3195
|
+
border-radius: var(--card-radius, 8px);
|
|
3196
|
+
background-color: var(--card-background-color, #FFFFFF);
|
|
3197
|
+
overflow: clip;
|
|
3198
|
+
transition-duration: 0.125s;
|
|
3199
|
+
transition-timing-function: ease-in;
|
|
3200
|
+
transition-property: border-color;
|
|
3201
|
+
}
|
|
3202
|
+
.pv-v2 .pv-card:hover, .pv-v2 .pv-card:focus-visible {
|
|
3203
|
+
border-color: var(--card-hover-border-color, #E3E7EA);
|
|
3204
|
+
box-shadow: var(--card-hover-shadow, none);
|
|
3205
|
+
}
|
|
3206
|
+
.pv-v2 .pv-card-link:after {
|
|
3207
|
+
content: "";
|
|
3208
|
+
position: absolute;
|
|
3209
|
+
inset: 0;
|
|
3210
|
+
z-index: 20;
|
|
3211
|
+
}
|
|
3212
|
+
.pv-v2 .pv-image-hover {
|
|
3213
|
+
display: grid;
|
|
3214
|
+
place-items: center;
|
|
3215
|
+
overflow: clip;
|
|
3216
|
+
}
|
|
3217
|
+
.pv-v2 .pv-image-hover > * {
|
|
3218
|
+
grid-row: 1/1;
|
|
3219
|
+
grid-column: 1/1;
|
|
3220
|
+
}
|
|
3221
|
+
.pv-v2 .pv-image-hover :last-child {
|
|
3222
|
+
opacity: 0;
|
|
3223
|
+
z-index: 10;
|
|
3224
|
+
transition: opacity 0.125s ease-in-out;
|
|
3225
|
+
}
|
|
3226
|
+
.pv-v2 .pv-card:has(.pv-image-hover):hover :last-child,
|
|
3227
|
+
.pv-v2 .pv-card:focus-within :last-child {
|
|
3228
|
+
opacity: 1;
|
|
3229
|
+
}
|
|
3230
|
+
.pv-v2 .pv-card:has(.pv-card-link:focus-visible) {
|
|
3231
|
+
border-color: #36C5BA;
|
|
3232
|
+
box-shadow: 0px 20px 28px -12px rgba(0, 0, 0, 0.24);
|
|
3233
|
+
}
|
|
3234
|
+
.pv-v2 .pv-card:has(.pv-card-link:focus-visible) a {
|
|
3235
|
+
outline: none;
|
|
3236
|
+
}
|
|
3237
|
+
.pv-v2 .pv-card:is(a, button),
|
|
3238
|
+
.pv-v2 .pv-card:has(.pv-overlay-link) {
|
|
3239
|
+
color: inherit;
|
|
3240
|
+
font-weight: inherit;
|
|
3241
|
+
transition-duration: 0.125s;
|
|
3242
|
+
transition-timing-function: ease-in;
|
|
3243
|
+
transition-property: border-color, box-shadow, color;
|
|
3244
|
+
}
|
|
3245
|
+
.pv-v2 .pv-card:is(a, button):hover, .pv-v2 .pv-card:is(a, button):focus-visible,
|
|
3246
|
+
.pv-v2 .pv-card:has(.pv-overlay-link):hover,
|
|
3247
|
+
.pv-v2 .pv-card:has(.pv-overlay-link):focus-visible {
|
|
3248
|
+
background-color: var(--card-hover-background-color, #E8F2F4);
|
|
3249
|
+
color: var(--card-hover-text-color, unset);
|
|
3250
|
+
text-decoration: none;
|
|
3251
|
+
}
|
|
3252
|
+
.pv-v2 .pv-card:is(a, button):hover .pv-text-subdued, .pv-v2 .pv-card:is(a, button):focus-visible .pv-text-subdued,
|
|
3253
|
+
.pv-v2 .pv-card:has(.pv-overlay-link):hover .pv-text-subdued,
|
|
3254
|
+
.pv-v2 .pv-card:has(.pv-overlay-link):focus-visible .pv-text-subdued {
|
|
3255
|
+
color: var(--card-hover-text-color, unset);
|
|
3256
|
+
}
|
|
3257
|
+
.pv-v2 .pv-card:is(a, button):active,
|
|
3258
|
+
.pv-v2 .pv-card:has(.pv-overlay-link):active {
|
|
3259
|
+
background-color: var(--card-pressed-background-color, #C7D8DB);
|
|
3260
|
+
}
|
|
3261
|
+
.pv-v2 .pv-card:is(button) {
|
|
3262
|
+
text-align: left;
|
|
3263
|
+
background-color: #FFFFFF;
|
|
3264
|
+
cursor: pointer;
|
|
3265
|
+
}
|
|
3266
|
+
.pv-v2 .pv-card-select {
|
|
3267
|
+
--unselected: "Apply to Table";
|
|
3268
|
+
--selected: "Applied";
|
|
3269
|
+
--unselected-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.85 11.151a1.2 1.2 0 0 0-1.698 0l-4.951 4.952V5a1.2 1.2 0 0 0-2.4 0v11.103L5.849 11.15a1.2 1.2 0 1 0-1.697 1.697l7 7a1.2 1.2 0 0 0 1.697 0l7-7a1.2 1.2 0 0 0 0-1.697Z' fill='%23176F6F'/%3E%3C/svg%3E");
|
|
3270
|
+
--selected-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.1 4.9c.6.6.6 1.5 0 2.1l-11 11c-.6.6-1.5.6-2.1 0l-5-5c-.6-.6-.6-1.5 0-2.1.6-.6 1.5-.6 2.1 0l3.9 4L18.9 5c.6-.6 1.6-.6 2.2-.1z' fill='%23176F6F'/%3E%3C/svg%3E");
|
|
3271
|
+
--gap: 1rem;
|
|
3272
|
+
display: flex;
|
|
3273
|
+
gap: var(--gap);
|
|
3274
|
+
}
|
|
3275
|
+
.pv-v2 .pv-card-select > input {
|
|
3276
|
+
display: none;
|
|
3277
|
+
}
|
|
3278
|
+
.pv-v2 .pv-card-select > label {
|
|
3279
|
+
flex: 1;
|
|
3280
|
+
background-color: #FFFFFF;
|
|
3281
|
+
color: #121313;
|
|
3282
|
+
font-weight: 400;
|
|
3283
|
+
border: 2px solid #E3E7EA;
|
|
3284
|
+
border-radius: 4px;
|
|
3285
|
+
display: flex;
|
|
3286
|
+
flex-direction: column;
|
|
3287
|
+
transition-duration: 0.125s;
|
|
3288
|
+
transition-timing-function: ease-in;
|
|
3289
|
+
transition-property: border-color, color;
|
|
3290
|
+
}
|
|
3291
|
+
.pv-v2 .pv-card-select > label > :first-child {
|
|
3292
|
+
flex: 1;
|
|
3293
|
+
border-bottom: 1px solid #E3E7EA;
|
|
3294
|
+
transition-duration: 0.125s;
|
|
3295
|
+
transition-timing-function: ease-in;
|
|
3296
|
+
transition-property: border-color;
|
|
3297
|
+
}
|
|
3298
|
+
.pv-v2 .pv-card-select > label > :last-child {
|
|
3299
|
+
padding: 1rem 1.5rem;
|
|
3300
|
+
font-weight: 600;
|
|
3301
|
+
color: #16696D;
|
|
3302
|
+
background-image: var(--unselected-icon);
|
|
3303
|
+
background-repeat: no-repeat;
|
|
3304
|
+
background-size: 1.5rem 1.5rem;
|
|
3305
|
+
background-position: right 1.5rem center;
|
|
3306
|
+
}
|
|
3307
|
+
.pv-v2 .pv-card-select > label > :last-child:before {
|
|
3308
|
+
content: var(--unselected);
|
|
3309
|
+
}
|
|
3310
|
+
.pv-v2 .pv-card-select > label:hover {
|
|
3311
|
+
color: #16696D;
|
|
3312
|
+
cursor: pointer;
|
|
3313
|
+
border-color: #36C5BA;
|
|
3314
|
+
}
|
|
3315
|
+
.pv-v2 .pv-card-select > label:hover > :first-child {
|
|
3316
|
+
border-color: #36C5BA;
|
|
3317
|
+
}
|
|
3318
|
+
.pv-v2 .pv-card-select > input:checked + label {
|
|
3319
|
+
background-color: #E8F2F4;
|
|
3320
|
+
border-color: #36C5BA;
|
|
3321
|
+
}
|
|
3322
|
+
.pv-v2 .pv-card-select > input:checked + label > :first-child {
|
|
3323
|
+
border-color: #36C5BA;
|
|
3324
|
+
}
|
|
3325
|
+
.pv-v2 .pv-card-select > input:checked + label > :last-child {
|
|
3326
|
+
background-image: var(--selected-icon);
|
|
3327
|
+
}
|
|
3328
|
+
.pv-v2 .pv-card-select > input:checked + label > :last-child:before {
|
|
3329
|
+
content: var(--selected);
|
|
3330
|
+
}
|
|
3331
|
+
.pv-v2 .pv-overlay-link:after {
|
|
3332
|
+
content: "";
|
|
3333
|
+
display: block;
|
|
3334
|
+
position: absolute;
|
|
3335
|
+
inset: 0;
|
|
3336
|
+
}
|
|
3337
|
+
.pv-v2 pv-figure-details {
|
|
3338
|
+
display: grid;
|
|
3339
|
+
gap: 1rem;
|
|
3340
|
+
grid-template-columns: 7fr 12fr;
|
|
3341
|
+
align-items: center;
|
|
3342
|
+
}
|
|
3343
|
+
.pv-v2 pv-figure-details img {
|
|
3344
|
+
width: 100%;
|
|
3345
|
+
height: auto;
|
|
3346
|
+
}
|
|
3347
|
+
.pv-v2 pv-figure-details summary {
|
|
3348
|
+
cursor: pointer;
|
|
3349
|
+
padding: 1.5rem 0.75rem;
|
|
3350
|
+
list-style: none;
|
|
3351
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2302363D' d='M10 2.917c.69 0 1.25.56 1.25 1.25V8.75h4.584a1.25 1.25 0 0 1 0 2.5H11.25v4.583a1.25 1.25 0 0 1-2.5 0V11.25H4.167a1.25 1.25 0 1 1 0-2.5H8.75V4.167c0-.69.56-1.25 1.25-1.25Z'/%3E%3C/svg%3E");
|
|
3352
|
+
background-repeat: no-repeat;
|
|
3353
|
+
background-size: 1.25rem 1.25rem;
|
|
3354
|
+
background-position: right 1rem center;
|
|
3355
|
+
}
|
|
3356
|
+
.pv-v2 pv-figure-details summary::-webkit-details-marker {
|
|
3357
|
+
display: none;
|
|
3358
|
+
}
|
|
3359
|
+
.pv-v2 pv-figure-details details[open] summary {
|
|
3360
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2302363D' d='M2.917 10c0-.69.56-1.25 1.25-1.25h11.667a1.25 1.25 0 0 1 0 2.5H4.167c-.69 0-1.25-.56-1.25-1.25Z'/%3E%3C/svg%3E");
|
|
3361
|
+
}
|
|
3362
|
+
.pv-v2 pv-figure-details details > div {
|
|
3363
|
+
padding: 0 0.75rem 1.5rem 0.75rem;
|
|
3364
|
+
font-size: 0.75rem;
|
|
3365
|
+
line-height: 1.45454545;
|
|
3366
|
+
}
|
|
3367
|
+
.pv-v2 pv-figure-details details {
|
|
3368
|
+
max-width: 520px;
|
|
3369
|
+
margin-inline: auto;
|
|
3370
|
+
border-block-end: 1px solid #E3E7EA;
|
|
3371
|
+
}
|
|
3372
|
+
.pv-v2 pv-figure-details details:first-of-type {
|
|
3373
|
+
border-block-start: 1px solid #E3E7EA;
|
|
3374
|
+
}
|
|
3375
|
+
.pv-v2 pv-figure-details.pv-text-inverse summary {
|
|
3376
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23fff' d='M10 2.917c.69 0 1.25.56 1.25 1.25V8.75h4.584a1.25 1.25 0 0 1 0 2.5H11.25v4.583a1.25 1.25 0 0 1-2.5 0V11.25H4.167a1.25 1.25 0 1 1 0-2.5H8.75V4.167c0-.69.56-1.25 1.25-1.25Z'/%3E%3C/svg%3E");
|
|
3377
|
+
}
|
|
3378
|
+
.pv-v2 pv-figure-details.pv-text-inverse details[open] summary {
|
|
3379
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23fff' d='M2.917 10c0-.69.56-1.25 1.25-1.25h11.667a1.25 1.25 0 0 1 0 2.5H4.167c-.69 0-1.25-.56-1.25-1.25Z'/%3E%3C/svg%3E");
|
|
3380
|
+
}
|
|
3381
|
+
.pv-v2 pv-figure-details.pv-text-inverse details {
|
|
3382
|
+
border-block-end: 1px solid #36C5BA;
|
|
3383
|
+
}
|
|
3384
|
+
.pv-v2 pv-figure-details.pv-text-inverse details:first-of-type {
|
|
3385
|
+
border-block-start: 1px solid #36C5BA;
|
|
3386
|
+
}
|
|
3387
|
+
.pv-v2 div:has(> pv-figure-details) {
|
|
3388
|
+
container-type: inline-size;
|
|
3389
|
+
}
|
|
3390
|
+
@container (max-width: 600px) {
|
|
3391
|
+
.pv-v2 pv-figure-details {
|
|
3392
|
+
grid-template-columns: auto;
|
|
3393
|
+
}
|
|
3394
|
+
.pv-v2 pv-figure-details details {
|
|
3395
|
+
margin: 0;
|
|
3396
|
+
max-width: 100%;
|
|
3397
|
+
}
|
|
3398
|
+
}
|
|
3399
|
+
.pv-v2 [class*=pv-alert] {
|
|
3400
|
+
padding: 0.75rem 0.75rem 0.75rem 2.75rem;
|
|
3401
|
+
border: 1px solid var(--color-border, #E3E7EA);
|
|
3402
|
+
background-color: #F7F8F8;
|
|
3403
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2302363D' d='M12 23.001c6.075 0 11-4.925 11-11s-4.925-11-11-11-11 4.925-11 11 4.925 11 11 11Zm1.2-5.8a1.2 1.2 0 0 1-2.4 0v-6.4a1.2 1.2 0 1 1 2.4 0v6.4Zm-1.2-9.2a1.2 1.2 0 1 1 0-2.4h.01a1.2 1.2 0 0 1 0 2.4H12Z'/%3E%3C/svg%3E");
|
|
3404
|
+
background-repeat: no-repeat;
|
|
3405
|
+
background-size: 1.5rem 1.5rem;
|
|
3406
|
+
background-position: 0.75rem 0.75rem;
|
|
3407
|
+
border-radius: 4px;
|
|
3408
|
+
}
|
|
3409
|
+
.pv-v2 .pv-alert-warning {
|
|
3410
|
+
border-color: #EFC666;
|
|
3411
|
+
background-color: #FFEED9;
|
|
3412
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23b78000' d='M12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm-1.2 5.8c0-.7.5-1.2 1.2-1.2s1.2.5 1.2 1.2v6.4c0 .7-.5 1.2-1.2 1.2s-1.2-.5-1.2-1.2V6.8zM12 18.4c-.7 0-1.2-.5-1.2-1.2S11.3 16 12 16s1.2.5 1.2 1.2-.5 1.2-1.2 1.2z'/%3E%3C/svg%3E");
|
|
3413
|
+
}
|
|
3414
|
+
.pv-v2 body:has(.pv-drawer) {
|
|
3415
|
+
overflow-x: hidden;
|
|
3416
|
+
}
|
|
3417
|
+
.pv-v2 .pv-drawer {
|
|
3418
|
+
--max-width: 600px;
|
|
3419
|
+
border: 0px solid transparent;
|
|
3420
|
+
left: 100%;
|
|
3421
|
+
right: 0;
|
|
3422
|
+
top: 0;
|
|
3423
|
+
bottom: 0;
|
|
3424
|
+
transform: translateX(0);
|
|
3425
|
+
height: 100dvh;
|
|
3426
|
+
max-height: 100dvh;
|
|
3427
|
+
width: 100%;
|
|
3428
|
+
max-width: var(--max-width);
|
|
3429
|
+
overflow-y: scroll;
|
|
3430
|
+
padding: 0;
|
|
3431
|
+
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
|
|
3432
|
+
}
|
|
3433
|
+
.pv-v2 .pv-drawer[open] {
|
|
3434
|
+
transform: translateX(-100%);
|
|
3435
|
+
}
|
|
3436
|
+
.pv-v2 .pv-drawer::backdrop {
|
|
3437
|
+
background-color: rgba(0, 0, 0, 0.24);
|
|
3438
|
+
}
|
|
3439
|
+
@keyframes show {
|
|
3440
|
+
from {
|
|
3441
|
+
transform: translateX(0);
|
|
3442
|
+
}
|
|
3443
|
+
to {
|
|
3444
|
+
transform: translateX(-100%);
|
|
3445
|
+
}
|
|
3446
|
+
}
|
|
3447
|
+
.pv-v2 div.pv-drawer {
|
|
3448
|
+
position: fixed;
|
|
3449
|
+
top: 0;
|
|
3450
|
+
right: 0;
|
|
3451
|
+
bottom: 0;
|
|
3452
|
+
left: auto;
|
|
3453
|
+
transform: translateX(100%);
|
|
3454
|
+
opacity: 0;
|
|
3455
|
+
transition: opacity 0.2s ease, transform 0.2s ease;
|
|
3456
|
+
}
|
|
3457
|
+
.pv-v2 div.pv-drawer[open] {
|
|
3458
|
+
transform: translateX(0);
|
|
3459
|
+
opacity: 1;
|
|
3460
|
+
}
|
|
3461
|
+
.pv-v2 .pv-rating {
|
|
3462
|
+
--background-color: #DCDFE4;
|
|
3463
|
+
--icon-color: #36C5BA;
|
|
3464
|
+
--height: 40px;
|
|
3465
|
+
aspect-ratio: 220/40;
|
|
3466
|
+
position: relative;
|
|
3467
|
+
width: auto;
|
|
3468
|
+
height: var(--height);
|
|
3469
|
+
}
|
|
3470
|
+
.pv-v2 .pv-rating ::-webkit-meter-bar {
|
|
3471
|
+
height: var(--height);
|
|
3472
|
+
border-radius: 0;
|
|
3473
|
+
background: var(--background-color);
|
|
3474
|
+
border: 0;
|
|
3475
|
+
}
|
|
3476
|
+
.pv-v2 .pv-rating ::-webkit-meter-optimum-value {
|
|
3477
|
+
background: var(--icon-color);
|
|
3478
|
+
}
|
|
3479
|
+
.pv-v2 .pv-rating meter {
|
|
3480
|
+
aspect-ratio: 220/40;
|
|
3481
|
+
position: relative;
|
|
3482
|
+
width: auto;
|
|
3483
|
+
height: var(--height);
|
|
3484
|
+
background: none;
|
|
3485
|
+
background-color: var(--background-color);
|
|
3486
|
+
}
|
|
3487
|
+
.pv-v2 .pv-rating ::-moz-meter-bar {
|
|
3488
|
+
background: none;
|
|
3489
|
+
background-color: var(--icon-color);
|
|
3490
|
+
}
|
|
3491
|
+
.pv-v2 .pv-rating:after {
|
|
3492
|
+
content: "";
|
|
3493
|
+
display: block;
|
|
3494
|
+
height: var(--height);
|
|
3495
|
+
top: 0;
|
|
3496
|
+
left: 0;
|
|
3497
|
+
right: 0;
|
|
3498
|
+
position: absolute;
|
|
3499
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 220 40'%3E%3Cpath fill='%23fff' d='M0 0v40h220V0H0zm40 16.9c-.1.7-.5 1.1-.7 1.4-.2.3-.5.5-.8.8l-6 5.8 1.4 8.2c.1.4.1.8.2 1.1 0 .3.1.9-.3 1.5-.4.7-1 1.2-1.8 1.3-.7.1-1.2-.1-1.5-.2-.3-.1-.7-.3-1-.5L22 32.4l-7.4 3.9c-.4.2-.7.4-1 .5-.3.1-.9.3-1.5.2-.8-.1-1.4-.6-1.8-1.3-.3-.6-.3-1.2-.3-1.5 0-.3.1-.7.2-1.1l1.4-8.2-6-5.8-.8-.8c-.2-.2-.6-.7-.7-1.4-.1-.8.2-1.5.7-2.1.5-.5 1-.6 1.4-.7.2-.1.6-.1 1-.2l8.3-1.2 3.7-7.4c.2-.4.4-.7.5-1 .2-.3.5-.8 1.1-1.1.7-.3 1.5-.3 2.2 0 .6.3.9.8 1.1 1.1.2.3.4.6.5 1l3.7 7.4 8.3 1.2c.4.1.8.1 1.1.2.3.1.9.2 1.4.7.7.6 1 1.4.9 2.1zm44 0c-.1.7-.5 1.1-.7 1.4-.2.3-.5.5-.8.8l-6 5.8 1.4 8.2c.1.4.1.8.2 1.1 0 .3.1.9-.3 1.5-.4.7-1 1.2-1.8 1.3-.7.1-1.2-.1-1.5-.2-.3-.1-.7-.3-1-.5L66 32.4l-7.4 3.9c-.4.2-.7.4-1 .5-.3.1-.9.3-1.5.2-.8-.1-1.4-.6-1.8-1.3-.3-.6-.3-1.2-.3-1.5 0-.3.1-.7.2-1.1l1.4-8.2-6-5.8-.8-.8c-.2-.2-.6-.7-.7-1.4-.1-.8.2-1.5.7-2.1.5-.5 1-.6 1.4-.7.3-.1.7-.1 1.1-.2l8.3-1.2 3.7-7.4c.2-.4.4-.7.5-1 .2-.3.5-.8 1.1-1.1.7-.3 1.5-.3 2.2 0 .6.3.9.8 1.1 1.1.2.3.4.6.5 1l3.7 7.4 8.3 1.2c.4.1.8.1 1.1.2.3.1.9.2 1.4.7.6.6.9 1.4.8 2.1zm44 0c-.1.7-.5 1.1-.7 1.4-.2.3-.5.5-.8.8l-6 5.8 1.4 8.2c.1.4.1.8.2 1.1 0 .3.1.9-.3 1.5-.4.7-1 1.2-1.8 1.3-.7.1-1.2-.1-1.5-.2-.3-.1-.7-.3-1-.5l-7.4-3.9-7.4 3.9c-.4.2-.7.4-1 .5-.3.1-.9.3-1.5.2-.8-.1-1.4-.6-1.8-1.3-.3-.6-.3-1.2-.3-1.5 0-.3.1-.7.2-1.1l1.4-8.2-6-5.8-.8-.8c-.2-.2-.6-.7-.7-1.4-.1-.8.2-1.5.7-2.1.5-.5 1-.6 1.4-.7.3-.1.7-.1 1.1-.2l8.3-1.2 3.7-7.4c.2-.4.4-.7.5-1 .2-.3.5-.8 1.1-1.1.7-.3 1.5-.3 2.2 0 .6.3.9.8 1.1 1.1.2.3.4.6.5 1l3.7 7.4 8.3 1.2c.4.1.8.1 1.1.2.3.1.9.2 1.4.7.5.6.8 1.4.7 2.1zm44 0c-.1.7-.5 1.1-.7 1.4-.2.3-.5.5-.8.8l-6 5.8 1.4 8.2c.1.4.1.8.2 1.1 0 .3.1.9-.3 1.5-.4.7-1 1.2-1.8 1.3-.7.1-1.2-.1-1.5-.2-.3-.1-.7-.3-1-.5l-7.4-3.9-7.4 3.9c-.4.2-.7.4-1 .5-.3.1-.9.3-1.5.2-.8-.1-1.4-.6-1.8-1.3-.3-.6-.3-1.2-.3-1.5 0-.3.1-.7.2-1.1l1.4-8.2-6-5.8-.8-.8c-.2-.2-.6-.7-.7-1.4-.1-.8.2-1.5.7-2.1.5-.5 1-.6 1.4-.7.3-.1.7-.1 1.1-.2l8.3-1.2 3.7-7.4c.2-.4.4-.7.5-1 .2-.3.5-.8 1.1-1.1.7-.3 1.5-.3 2.2 0 .6.3.9.8 1.1 1.1.2.3.4.6.5 1l3.7 7.4 8.3 1.2c.4.1.8.1 1.1.2.3.1.9.2 1.4.7.5.6.8 1.4.7 2.1zm44 0c-.1.7-.5 1.1-.7 1.4-.2.3-.5.5-.8.8l-6 5.8 1.4 8.2c.1.4.1.8.2 1.1 0 .3.1.9-.3 1.5-.4.7-1 1.2-1.8 1.3-.7.1-1.2-.1-1.5-.2-.3-.1-.7-.3-1-.5l-7.4-3.9-7.4 3.9c-.4.2-.7.4-1 .5-.3.1-.9.3-1.5.2-.8-.1-1.4-.6-1.8-1.3-.3-.6-.3-1.2-.3-1.5 0-.3.1-.7.2-1.1l1.4-8.2-6-5.8-.8-.8c-.2-.2-.6-.7-.7-1.4-.1-.8.2-1.5.7-2.1.5-.5 1-.6 1.4-.7.3-.1.7-.1 1.1-.2l8.3-1.2 3.7-7.4c.2-.4.4-.7.5-1 .2-.3.5-.8 1.1-1.1.7-.3 1.5-.3 2.2 0 .6.3.9.8 1.1 1.1.2.3.4.6.5 1l3.7 7.4 8.3 1.2c.4.1.8.1 1.1.2.3.1.9.2 1.4.7.5.6.8 1.4.7 2.1z'/%3E%3C/svg%3E");
|
|
3500
|
+
background-size: 100% 100%;
|
|
3501
|
+
background-position: top left;
|
|
3502
|
+
background-repeat: no-repeat;
|
|
3503
|
+
}
|
|
3504
|
+
.pv-v2 .pv-rating[data-rating=bar] {
|
|
3505
|
+
--background-color: #DCDFE4;
|
|
3506
|
+
--icon-color: #176F6F;
|
|
3507
|
+
--height: 10px;
|
|
3508
|
+
display: flex;
|
|
3509
|
+
align-items: center;
|
|
3510
|
+
gap: 4px;
|
|
3511
|
+
aspect-ratio: unset;
|
|
3512
|
+
}
|
|
3513
|
+
.pv-v2 .pv-rating[data-rating=bar] meter {
|
|
3514
|
+
position: relative;
|
|
3515
|
+
padding: 0;
|
|
3516
|
+
height: var(--height);
|
|
3517
|
+
}
|
|
3518
|
+
.pv-v2 .pv-rating[data-rating=bar] meter[max="5"] {
|
|
3519
|
+
aspect-ratio: 29/10;
|
|
3520
|
+
}
|
|
3521
|
+
.pv-v2 .pv-rating[data-rating=bar] meter[max="10"] {
|
|
3522
|
+
aspect-ratio: 59/10;
|
|
3523
|
+
}
|
|
3524
|
+
.pv-v2 .pv-rating[data-rating=bar]:after {
|
|
3525
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' clip-rule='evenodd' viewBox='0 0 6 10'%3E%3Cpath fill='white' d='M0 1V0h1a1 1 0 0 0-1 1Zm4-1h2v10H4a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1ZM1 10H0V9a1 1 0 0 0 1 1Z'/%3E%3C/svg%3E");
|
|
3526
|
+
background-size: 6px 10px;
|
|
3527
|
+
background-repeat: repeat;
|
|
3528
|
+
}
|
|
3529
|
+
.pv-v2 .pv-circle-meter {
|
|
3530
|
+
--size: 100px;
|
|
3531
|
+
--color: #36C5BA;
|
|
3532
|
+
--background: #DCDFE4;
|
|
3533
|
+
--degrees: 0deg; /* (360/max) * min */
|
|
3534
|
+
width: var(--size);
|
|
3535
|
+
aspect-ratio: 1;
|
|
3536
|
+
display: grid;
|
|
3537
|
+
place-items: center;
|
|
3538
|
+
}
|
|
3539
|
+
.pv-v2 .pv-circle-meter meter {
|
|
3540
|
+
display: none;
|
|
3541
|
+
}
|
|
3542
|
+
.pv-v2 .pv-circle-meter:before, .pv-v2 .pv-circle-meter:after {
|
|
3543
|
+
grid-area: 1/-1;
|
|
3544
|
+
content: "";
|
|
3545
|
+
aspect-ratio: 1;
|
|
3546
|
+
border-radius: 50%;
|
|
3547
|
+
}
|
|
3548
|
+
.pv-v2 .pv-circle-meter:before {
|
|
3549
|
+
width: 100%;
|
|
3550
|
+
background-image: conic-gradient(var(--color) var(--degrees), var(--background) var(--degrees));
|
|
3551
|
+
transform: scaleX(-1);
|
|
3552
|
+
}
|
|
3553
|
+
.pv-v2 .pv-circle-meter:after {
|
|
3554
|
+
z-index: 10;
|
|
3555
|
+
background-color: #ffffff;
|
|
3556
|
+
width: 70%;
|
|
3557
|
+
}
|
|
3558
|
+
.pv-v2 .pv-circle-meter label {
|
|
3559
|
+
z-index: 15;
|
|
3560
|
+
grid-area: 1/-1;
|
|
3561
|
+
font-size: 20px;
|
|
3562
|
+
font-weight: 700;
|
|
3563
|
+
text-align: center;
|
|
3564
|
+
}
|
|
3565
|
+
.pv-v2 .pv-circle-meter label span:first-of-type {
|
|
3566
|
+
font-size: 28px;
|
|
3567
|
+
line-height: 1.14286;
|
|
3568
|
+
}
|
|
3569
|
+
.pv-v2 .pv-circle-meter label span:last-of-type {
|
|
3570
|
+
font-size: 14px;
|
|
3571
|
+
line-height: 1.4285;
|
|
3572
|
+
}
|
|
3573
|
+
.pv-v2 .pv-counter {
|
|
3574
|
+
--size: 40px;
|
|
3575
|
+
width: var(--size);
|
|
3576
|
+
aspect-ratio: 1;
|
|
3577
|
+
background-color: #16696D;
|
|
3578
|
+
color: #FFFFFF;
|
|
3579
|
+
display: grid;
|
|
3580
|
+
place-items: center;
|
|
3581
|
+
font-size: 0.75rem;
|
|
3582
|
+
font-weight: 600;
|
|
3583
|
+
border-radius: 50%;
|
|
3584
|
+
flex-shrink: 0;
|
|
3585
|
+
}
|
|
3586
|
+
.pv-v2 .ag-theme-pv .ag-header-cell {
|
|
3587
|
+
font-size: 0.6875rem !important;
|
|
3588
|
+
font-weight: 600 !important;
|
|
3589
|
+
color: #121313 !important;
|
|
3590
|
+
}
|
|
3591
|
+
.pv-v2 .ag-theme-pv .ag-header-cell-filter-button {
|
|
3592
|
+
border-radius: 2px;
|
|
3593
|
+
border: 2px solid transparent;
|
|
3594
|
+
}
|
|
3595
|
+
.pv-v2 .ag-theme-pv .ag-header-cell-filter-button:hover {
|
|
3596
|
+
border: 2px solid #176F6F;
|
|
3597
|
+
}
|
|
3598
|
+
.pv-v2 .ag-theme-pv .ag-filter-active {
|
|
3599
|
+
border-color: #176F6F;
|
|
3600
|
+
}
|
|
3601
|
+
.pv-v2 .ag-theme-pv .ag-filter-active .ag-icon-filter:after {
|
|
3602
|
+
background-image: var(--ag-icon-image-filter-active);
|
|
3603
|
+
}
|
|
3604
|
+
.pv-v2 .ag-theme-pv .ag-menu {
|
|
3605
|
+
padding: 0.5rem;
|
|
3606
|
+
border: 0;
|
|
3607
|
+
}
|
|
3608
|
+
.pv-v2 .ag-theme-pv .ag-mini-filter {
|
|
3609
|
+
margin: 0 0 0.5rem 0;
|
|
3610
|
+
}
|
|
3611
|
+
.pv-v2 .ag-theme-pv .ag-ltr input[class^=ag-][type=text] {
|
|
3612
|
+
padding: 0.5rem;
|
|
3613
|
+
font-size: 16px;
|
|
3614
|
+
line-height: 1.5;
|
|
3615
|
+
border: 2px solid #DCDFE4;
|
|
3616
|
+
border-radius: 2px;
|
|
3617
|
+
appearance: none;
|
|
3618
|
+
background-color: #fff;
|
|
3619
|
+
width: 100%;
|
|
3620
|
+
min-width: fit-content;
|
|
3621
|
+
}
|
|
3622
|
+
.pv-v2 .ag-theme-pv .ag-ltr input[class^=ag-][type=text]:focus {
|
|
3623
|
+
box-shadow: none;
|
|
3624
|
+
}
|
|
3625
|
+
.pv-v2 .ag-theme-pv .ag-ltr input[class^=ag-][type=text]:not(:disabled, [data-invalid]):focus-visible, .pv-v2 .ag-theme-pv .ag-ltr input[class^=ag-][type=text]:not(:disabled, [data-invalid]):hover {
|
|
3626
|
+
border-color: #176F6F;
|
|
3627
|
+
outline: none;
|
|
3628
|
+
}
|
|
3629
|
+
.pv-v2 .ag-theme-pv .ag-set-filter-item {
|
|
3630
|
+
padding: 0.5rem;
|
|
3631
|
+
font-size: 1rem;
|
|
3632
|
+
line-height: 1.25;
|
|
3633
|
+
margin: 0 !important;
|
|
3634
|
+
border-radius: 2px;
|
|
3635
|
+
}
|
|
3636
|
+
.pv-v2 .ag-theme-pv .ag-set-filter-item:hover, .pv-v2 .ag-theme-pv .ag-set-filter-item:focus-visible {
|
|
3637
|
+
background-color: #F3F4F6;
|
|
3638
|
+
}
|
|
3639
|
+
.pv-v2 .ag-theme-pv .ag-ltr .ag-label-align-right .ag-label {
|
|
3640
|
+
margin-left: 0;
|
|
3641
|
+
}
|
|
3642
|
+
.pv-v2 .ag-theme-pv .ag-ltr .ag-set-filter-item {
|
|
3643
|
+
padding: 0.5rem;
|
|
3644
|
+
}
|
|
3645
|
+
.pv-v2 .ag-theme-pv .ag-input-field {
|
|
3646
|
+
gap: 0.25rem;
|
|
3647
|
+
}
|
|
3648
|
+
.pv-v2 .ag-theme-pv .ag-tooltip {
|
|
3649
|
+
font-size: 0.6875rem !important;
|
|
3650
|
+
color: #FFFFFF !important;
|
|
3651
|
+
background-color: black;
|
|
3652
|
+
padding: 5px;
|
|
3653
|
+
border: 1px solid black;
|
|
3654
|
+
border-radius: 3px;
|
|
3655
|
+
}
|
|
3656
|
+
.pv-v2 pv-data-grid.ag-theme-pv {
|
|
3657
|
+
display: block;
|
|
3658
|
+
--ag-font-family: Inter, sans-serif !important;
|
|
3659
|
+
--ag-font-size: 0.6875rem !important;
|
|
3660
|
+
--ag-foreground-color: #121313 !important;
|
|
3661
|
+
--ag-border-color: #E3E7EA !important;
|
|
3662
|
+
--ag-background-color: #FFFFFF !important;
|
|
3663
|
+
--ag-odd-row-background-color: #FFFFFF !important;
|
|
3664
|
+
--ag-row-grid-size: 0.25rem !important;
|
|
3665
|
+
--ag-header-height: 1.6875rem !important;
|
|
3666
|
+
--ag-row-height: 1.6875rem !important;
|
|
3667
|
+
--ag-cell-horizontal-padding: 9px !important;
|
|
3668
|
+
--ag-cell-horizontal-border: solid #E3E7EA !important;
|
|
3669
|
+
--ag-column-border: solid 1px #E3E7EA !important;
|
|
3670
|
+
--ag-active-color: #36C5BA !important;
|
|
3671
|
+
--ag-row-hover-color: #F7F8F8 !important;
|
|
3672
|
+
--ag-range-selection-background-color: rgba(0,0,0,0.2) !important;
|
|
3673
|
+
--ag-accent-color: #16696D !important;
|
|
3674
|
+
--ag-header-cell-hover-background-color: #E2F7F5;
|
|
3675
|
+
--ag-header-column-separator-height: 100%;
|
|
3676
|
+
--ag-popup-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.30), 0px 8px 12px -4px rgba(0, 0, 0, 0.08), 0px 12px 16px 0px rgba(0, 0, 0, 0.10);
|
|
3677
|
+
--ag-card-radius: .25rem;
|
|
3678
|
+
--ag-borders: 1px solid;
|
|
3679
|
+
--ag-menu-border-color: #DCDFE4;
|
|
3680
|
+
--ag-menu-background-color: #FFFFFF;
|
|
3681
|
+
--ag-list-item-height: 36px;
|
|
3682
|
+
--ag-secondary-foreground-color: #02363D;
|
|
3683
|
+
--ag-icon-size: 16px;
|
|
3684
|
+
--ag-icon-font-display: none;
|
|
3685
|
+
--ag-icon-font-color: $color-text-body;
|
|
3686
|
+
--ag-icon-image-none: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D66'%3E%3Cpath d='M6.2 14.2c.5-.5 1.2-.5 1.7 0l4.2 4.2 4.2-4.2c.5-.5 1.2-.5 1.7 0s.5 1.2 0 1.7l-5 5c-.5.5-1.2.5-1.7 0l-5-5c-.6-.5-.6-1.3-.1-1.7z'/%3E%3Cpath d='M11.2 3.2c.5-.5 1.2-.5 1.7 0l5 5c.5.5.5 1.2 0 1.7s-1.2.5-1.7 0L12 5.7 7.8 9.8c-.5.5-1.2.5-1.7 0s-.5-1.2 0-1.7l5.1-4.9z'/%3E%3C/svg%3E");
|
|
3687
|
+
--ag-icon-image-asc: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D66'%3E%3Cpath d='M6.2 14.2c.5-.5 1.2-.5 1.7 0l4.2 4.2 4.2-4.2c.5-.5 1.2-.5 1.7 0s.5 1.2 0 1.7l-5 5c-.5.5-1.2.5-1.7 0l-5-5c-.6-.5-.6-1.3-.1-1.7z'/%3E%3Cpath d='M11.2 3.2c.5-.5 1.2-.5 1.7 0l5 5c.5.5.5 1.2 0 1.7s-1.2.5-1.7 0L12 5.7 7.8 9.8c-.5.5-1.2.5-1.7 0s-.5-1.2 0-1.7l5.1-4.9z' fill='%2302363D'/%3E%3C/svg%3E");
|
|
3688
|
+
--ag-icon-image-desc: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D66'%3E%3Cpath d='M6.2 14.2c.5-.5 1.2-.5 1.7 0l4.2 4.2 4.2-4.2c.5-.5 1.2-.5 1.7 0s.5 1.2 0 1.7l-5 5c-.5.5-1.2.5-1.7 0l-5-5c-.6-.5-.6-1.3-.1-1.7z' fill='%2302363D'/%3E%3Cpath d='M11.2 3.2c.5-.5 1.2-.5 1.7 0l5 5c.5.5.5 1.2 0 1.7s-1.2.5-1.7 0L12 5.7 7.8 9.8c-.5.5-1.2.5-1.7 0s-.5-1.2 0-1.7l5.1-4.9z'/%3E%3C/svg%3E");
|
|
3689
|
+
--ag-icon-image-cancel: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M4.94 4.94a1.5 1.5 0 0 1 2.12 0L12 9.878l4.94-4.94a1.5 1.5 0 0 1 2.12 2.122L14.122 12l4.94 4.94a1.5 1.5 0 0 1-2.122 2.12L12 14.122l-4.94 4.94a1.5 1.5 0 0 1-2.12-2.122L9.878 12l-4.94-4.94a1.5 1.5 0 0 1 0-2.12Z'/%3E%3C/svg%3E");
|
|
3690
|
+
--ag-icon-image-chart: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M8 2.5V18h3V2.5c0-.8-.7-1.5-1.5-1.5S8 1.7 8 2.5zm-3.5 4C5.3 6.5 6 7.2 6 8v10H3V8c0-.8.7-1.5 1.5-1.5zM1 21.5c0-.8.7-1.5 1.5-1.5h19c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5h-19c-.8 0-1.5-.7-1.5-1.5zM13 18V5.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V18h-3zm8-7.5c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5V18h3v-7.5z'/%3E%3C/svg%3E");
|
|
3691
|
+
--ag-icon-image-columns: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M7 1H5.8C3.1 1 1 3.1 1 5.8V7h6V1zM1 9.4v8.8C1 20.8 3.1 23 5.8 23H7V9.4H1zM9.4 23h8.8c2.7 0 4.8-2.1 4.8-4.8V9.4H9.4V23zM23 7H9.4V1h8.8C20.8 1 23 3.1 23 5.8V7z'/%3E%3C/svg%3E");
|
|
3692
|
+
--ag-icon-image-contracted: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M8.152 5.151a1.2 1.2 0 0 0 0 1.698L13.303 12l-5.151 5.151a1.2 1.2 0 1 0 1.697 1.698l6-6a1.2 1.2 0 0 0 0-1.697l-6-6a1.2 1.2 0 0 0-1.697 0Z'/%3E%3C/svg%3E");
|
|
3693
|
+
--ag-icon-image-copy: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M14 1a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2h-2ZM10.514 3.003a1 1 0 0 0-.027-2c-.657.009-1.287.038-1.849.324a3 3 0 0 0-1.31 1.311c-.287.562-.316 1.192-.325 1.848a1 1 0 1 0 2 .028c.01-.694.059-.875.106-.968a1 1 0 0 1 .437-.437c.094-.048.274-.097.968-.106ZM19.514 1.003a1 1 0 0 0-.027 2c.694.01.874.058.967.106a1 1 0 0 1 .437.437c.048.093.097.274.106.968a1 1 0 0 0 2-.028c-.009-.656-.038-1.286-.324-1.848a3 3 0 0 0-1.31-1.311c-.563-.286-1.193-.315-1.85-.324ZM23 8a1 1 0 1 0-2 0v2a1 1 0 0 0 2 0V8ZM22.997 13.514a1 1 0 0 0-2-.028c-.009.694-.058.875-.106.968a1 1 0 0 1-.437.437c-.093.048-.274.097-.967.106a1 1 0 0 0 .027 2c.656-.009 1.286-.038 1.848-.324a3 3 0 0 0 1.311-1.311c.287-.562.315-1.192.324-1.848ZM5.161 7h7.678c.527 0 .981 0 1.356.03.395.033.789.104 1.167.297a3 3 0 0 1 1.311 1.311c.193.378.264.772.296 1.167.031.375.031.83.031 1.357v7.676c0 .528 0 .982-.03 1.357-.033.395-.104.789-.297 1.167a3 3 0 0 1-1.311 1.311c-.378.193-.772.264-1.167.296-.375.031-.83.031-1.356.031H5.16c-.527 0-.981 0-1.356-.03-.395-.033-.789-.104-1.167-.297a3 3 0 0 1-1.311-1.311c-.193-.378-.264-.772-.296-1.167C1 19.82 1 19.365 1 18.839v-7.677c0-.528 0-.982.03-1.357.033-.395.104-.789.297-1.167a3 3 0 0 1 1.311-1.311c.378-.193.772-.264 1.167-.296C4.18 7 4.635 7 5.161 7Z'/%3E%3C/svg%3E");
|
|
3694
|
+
--ag-icon-image-cross: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M4.94 4.94a1.5 1.5 0 0 1 2.12 0L12 9.878l4.94-4.94a1.5 1.5 0 0 1 2.12 2.122L14.122 12l4.94 4.94a1.5 1.5 0 0 1-2.122 2.12L12 14.122l-4.94 4.94a1.5 1.5 0 0 1-2.12-2.122L9.878 12l-4.94-4.94a1.5 1.5 0 0 1 0-2.12Z'/%3E%3C/svg%3E");
|
|
3695
|
+
--ag-icon-image-data: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M15 9c-1.1 0-2-.9-2-2V1H6C4.3 1 3 2.3 3 4v16c0 1.7 1.3 3 3 3h12c1.7 0 3-1.3 3-3V9h-6zm-1 10H8c-.6 0-1-.4-1-1s.4-1 1-1h6c.6 0 1 .4 1 1s-.4 1-1 1zm2-4H8c-.6 0-1-.4-1-1s.4-1 1-1h8c.6 0 1 .4 1 1s-.4 1-1 1zm-1-8.5V2.2c0-.4.5-.7.9-.4l4.3 4.3c.3.4 0 .9-.4.9h-4.3c-.3 0-.5-.2-.5-.5z'/%3E%3C/svg%3E");
|
|
3696
|
+
--ag-icon-image-csv: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M15 9c-1.1 0-2-.9-2-2V1H6C4.3 1 3 2.3 3 4v16c0 1.7 1.3 3 3 3h12c1.7 0 3-1.3 3-3V9h-6zm-1 10H8c-.6 0-1-.4-1-1s.4-1 1-1h6c.6 0 1 .4 1 1s-.4 1-1 1zm2-4H8c-.6 0-1-.4-1-1s.4-1 1-1h8c.6 0 1 .4 1 1s-.4 1-1 1zm-1-8.5V2.2c0-.4.5-.7.9-.4l4.3 4.3c.3.4 0 .9-.4.9h-4.3c-.3 0-.5-.2-.5-.5z'/%3E%3C/svg%3E");
|
|
3697
|
+
--ag-icon-image-excel: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M15 9c-1.1 0-2-.9-2-2V1H6C4.3 1 3 2.3 3 4v16c0 1.7 1.3 3 3 3h12c1.7 0 3-1.3 3-3V9h-6zm-1 10H8c-.6 0-1-.4-1-1s.4-1 1-1h6c.6 0 1 .4 1 1s-.4 1-1 1zm2-4H8c-.6 0-1-.4-1-1s.4-1 1-1h8c.6 0 1 .4 1 1s-.4 1-1 1zm-1-8.5V2.2c0-.4.5-.7.9-.4l4.3 4.3c.3.4 0 .9-.4.9h-4.3c-.3 0-.5-.2-.5-.5z'/%3E%3C/svg%3E");
|
|
3698
|
+
--ag-icon-image-expanded: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='m14.6 19.6-6.8-6.7c-.4-.4-.4-1.2 0-1.6l6.8-6.8c.4-.5 1.2-.6 1.6-.2.4.4.4 1.2 0 1.6l-6 6 6 6c.4.4.4 1.2 0 1.6-.5.5-1.2.5-1.6.1z'/%3E%3C/svg%3E");
|
|
3699
|
+
--ag-icon-image-eye-slash: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M2.4 2.8c-.4.4-.4 1 0 1.4L20.2 22c.4.4 1 .4 1.4 0 .4-.4.4-1 0-1.4L3.8 2.8c-.4-.3-1-.3-1.4 0zm2.9 4.5.1-.1 3.3 3.3c-.3.6-.5 1.2-.5 2 0 2.1 1.7 3.9 3.9 3.9.7 0 1.4-.2 2-.5l3 3c-1.4.8-3.1 1.4-5 1.4-2.8 0-5-1.2-6.7-2.6-1.7-1.4-2.8-3-3.4-3.9-.1-.2-.3-.4-.3-.7-.1-.3-.1-.6 0-.9.1-.3.2-.6.3-.7.5-1.2 1.6-2.8 3.3-4.2zm6.9 1.3c1.9.1 3.5 1.7 3.6 3.6l4.1 4.1c1-1 1.7-2 2.1-2.7.1-.2.3-.4.3-.7.1-.3.1-.6 0-.9-.1-.3-.2-.6-.3-.7-.6-.9-1.7-2.5-3.4-3.9C17 5.9 14.8 4.7 12 4.7c-1.1 0-2.2.2-3.1.5l3.3 3.4zm-2.1 3.8c0-.2 0-.3.1-.5l2.4 2.4c-.2 0-.3.1-.5.1-1.2 0-2-.9-2-2z'/%3E%3C/svg%3E");
|
|
3700
|
+
--ag-icon-image-eye: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M14 12.4c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm8.5.5c-.1.3-.2.6-.3.7-.6.9-1.7 2.5-3.4 3.9s-3.9 2.6-6.7 2.6-5-1.2-6.7-2.6c-1.7-1.4-2.8-3-3.4-3.9-.1-.2-.3-.4-.3-.7-.1-.3-.1-.6 0-.9.1-.3.2-.6.3-.7.6-.9 1.7-2.5 3.4-3.9C7 5.9 9.2 4.7 12 4.7s5 1.2 6.7 2.6c1.7 1.4 2.8 3 3.4 3.9.1.2.3.4.3.7.1.4.1.7.1 1zm-6.6-.5c0-2.1-1.7-3.9-3.9-3.9s-3.9 1.7-3.9 3.9c0 2.1 1.7 3.9 3.9 3.9s3.9-1.7 3.9-3.9z'/%3E%3C/svg%3E");
|
|
3701
|
+
--ag-icon-image-filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23176f6f' d='M4.5 8c0-.4.4-.8.8-.8h13.3c.4 0 .8.4.8.8s-.4.8-.8.8H5.3c-.4 0-.8-.4-.8-.8zm2 4c0-.4.4-.8.8-.8h9.3c.4 0 .8.4.8.8s-.4.8-.8.8H7.3c-.4 0-.8-.4-.8-.8zm2 4c0-.4.4-.8.8-.8h5.3c.4 0 .8.4.8.8s-.4.8-.8.8H9.3c-.4 0-.8-.4-.8-.8z'/%3E%3C/svg%3E");
|
|
3702
|
+
--ag-icon-image-first: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m17.9 19.6-6.8-6.7c-.4-.4-.4-1.2 0-1.6l6.8-6.8c.4-.5 1.2-.6 1.6-.2s.4 1.2 0 1.6l-6 6 6 6c.4.4.4 1.2 0 1.6-.5.5-1.2.5-1.6.1zm-6.6 0-6.8-6.7c-.4-.4-.4-1.2 0-1.6l6.8-6.8c.4-.5 1.2-.6 1.6-.2.4.4.4 1.2 0 1.6l-6 6 6 6c.4.4.4 1.2 0 1.6-.5.5-1.2.5-1.6.1z' fill='%23fff'/%3E%3C/svg%3E");
|
|
3703
|
+
--ag-icon-image-last: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.5 19.5c-.4-.4-.4-1.2 0-1.6l6-6-6-6c-.4-.4-.4-1.2 0-1.6.4-.4 1.2-.3 1.6.2l6.8 6.8c.4.4.4 1.2 0 1.6l-6.8 6.7c-.4.4-1.1.4-1.6-.1zm6.6 0c-.4-.4-.4-1.2 0-1.6l6-6-6-6c-.4-.4-.4-1.2 0-1.6.4-.4 1.2-.3 1.6.2l6.8 6.8c.4.4.4 1.2 0 1.6l-6.8 6.7c-.4.4-1.1.4-1.6-.1z' fill='%23fff'/%3E%3C/svg%3E");
|
|
3704
|
+
--ag-icon-image-left: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M12.849 4.151a1.2 1.2 0 0 1 0 1.698L7.897 10.8H19a1.2 1.2 0 1 1 0 2.4H7.897l4.952 4.951a1.2 1.2 0 1 1-1.697 1.698l-7-7a1.2 1.2 0 0 1 0-1.697l7-7a1.2 1.2 0 0 1 1.697 0Z'/%3E%3C/svg%3E");
|
|
3705
|
+
--ag-icon-image-right: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M11.152 4.151a1.2 1.2 0 0 0 0 1.697l4.952 4.952H5a1.2 1.2 0 0 0 0 2.4h11.103l-4.952 4.951a1.2 1.2 0 1 0 1.697 1.697l7-7a1.2 1.2 0 0 0 0-1.697l-7-7a1.2 1.2 0 0 0-1.697 0Z'/%3E%3C/svg%3E");
|
|
3706
|
+
--ag-icon-image-maximize: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M17.657 5.143a1.2 1.2 0 0 1 1.2 1.2v7.071a1.2 1.2 0 1 1-2.4 0v-5.87h-5.871a1.2 1.2 0 1 1 0-2.4h7.07ZM6.343 9.386a1.2 1.2 0 0 1 1.2 1.2v5.87h5.871a1.2 1.2 0 0 1 0 2.4h-7.07a1.2 1.2 0 0 1-1.2-1.2v-7.07a1.2 1.2 0 0 1 1.2-1.2Z' /%3E%3C/svg%3E");
|
|
3707
|
+
--ag-icon-image-menu: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M.8 6A1.2 1.2 0 0 1 2 4.8h20a1.2 1.2 0 0 1 0 2.4H2A1.2 1.2 0 0 1 .8 6Zm0 6A1.2 1.2 0 0 1 2 10.8h20a1.2 1.2 0 0 1 0 2.4H2A1.2 1.2 0 0 1 .8 12Zm0 6A1.2 1.2 0 0 1 2 16.8h20a1.2 1.2 0 0 1 0 2.4H2A1.2 1.2 0 0 1 .8 18Z'/%3E%3C/svg%3E");
|
|
3708
|
+
--ag-icon-image-menu-alt: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M7 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm5 2a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3C/svg%3E");
|
|
3709
|
+
--ag-icon-image-minimize: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M20.5 11.8h-7c-.7 0-1.2-.6-1.2-1.2v-7c0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2v5.8h5.8c.7 0 1.2.6 1.2 1.2s-.5 1.2-1.2 1.2zm-10 10c-.7 0-1.2-.6-1.2-1.2v-5.8H3.5c-.7 0-1.2-.6-1.2-1.2s.6-1.2 1.2-1.2h7c.7 0 1.2.6 1.2 1.2v7c.1.6-.5 1.2-1.2 1.2z'/%3E%3C/svg%3E");
|
|
3710
|
+
--ag-icon-image-minus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M3.5 12A1.5 1.5 0 0 1 5 10.5h14a1.5 1.5 0 0 1 0 3H5A1.5 1.5 0 0 1 3.5 12Z'/%3E%3C/svg%3E");
|
|
3711
|
+
--ag-icon-image-grip: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M9 5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm2 4a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-2 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM15 5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm2 4a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-2 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3C/svg%3E");
|
|
3712
|
+
--ag-icon-image-next: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M8.152 5.151a1.2 1.2 0 0 0 0 1.698L13.303 12l-5.151 5.151a1.2 1.2 0 1 0 1.697 1.698l6-6a1.2 1.2 0 0 0 0-1.697l-6-6a1.2 1.2 0 0 0-1.697 0Z'/%3E%3C/svg%3E");
|
|
3713
|
+
--ag-icon-image-not-allowed: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 21' fill='%2302363D'%3E%3Cpath d='M10 1.6C4.9 1.6.8 5.7.8 10.8S4.9 20 10 20s9.2-4.1 9.2-9.2-4.1-9.2-9.2-9.2zm0 2.5c1.4 0 2.7.4 3.7 1.2l-9.3 9.3c-.7-1.1-1.2-2.4-1.2-3.7.1-3.8 3.1-6.8 6.8-6.8zm0 13.3c-1.4 0-2.7-.4-3.7-1.2L15.5 7c.7 1.1 1.2 2.4 1.2 3.7 0 3.8-3 6.7-6.7 6.7z'/%3E%3C/svg%3E");
|
|
3714
|
+
--ag-icon-image-pin: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='m15.6 15.1 2.4-2.4c.3-.3.8-.6 1.3-.6 1.2 0 2.4-.3 3.4-1 .9-.5 1-1.7.3-2.4l-.5-.5-6.7-6.7-.5-.5c-.7-.7-1.9-.6-2.4.3-.6 1.1-.9 2.2-.9 3.4 0 .5-.2 1-.6 1.3-.7.7-1.7 1.8-2.4 2.4-.4.3-.9.6-1.4.6-1.3 0-2.7.3-3.9 1-.9.5-1 1.7-.3 2.5l.7.7 6.7 6.7.7.7c.7.7 2 .6 2.5-.3.7-1.2 1-2.5 1-3.9 0-.5.3-1 .6-1.3zM1.5 23.8c-.3 0-.6-.1-.9-.4-.5-.5-.5-1.3 0-1.8l4-4c.5-.5 1.3-.5 1.8 0s.5 1.3 0 1.8l-4 4c-.3.2-.6.4-.9.4z'/%3E%3C/svg%3E");
|
|
3715
|
+
--ag-icon-image-plus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M12 3.5A1.5 1.5 0 0 1 13.5 5v5.5H19a1.5 1.5 0 0 1 0 3h-5.5V19a1.5 1.5 0 0 1-3 0v-5.5H5a1.5 1.5 0 0 1 0-3h5.5V5A1.5 1.5 0 0 1 12 3.5Z'/%3E%3C/svg%3E");
|
|
3716
|
+
--ag-icon-image-previous:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='m14.6 19.6-6.8-6.7c-.4-.4-.4-1.2 0-1.6l6.8-6.8c.4-.5 1.2-.6 1.6-.2.4.4.4 1.2 0 1.6l-6 6 6 6c.4.4.4 1.2 0 1.6-.5.5-1.2.5-1.6.1z'/%3E%3C/svg%3E");
|
|
3717
|
+
--ag-icon-image-save: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='m21.8 5.6-3.5-3.5c-.2-.2-.5-.4-.7-.5-.3-.1-.6-.2-.9-.2H4.5c-.8 0-1.6.3-2.1.9s-.9 1.4-.9 2.2v15c0 .8.3 1.6.9 2.1.6.6 1.3.9 2.1.9h15c.8 0 1.6-.3 2.1-.9.6-.6.9-1.3.9-2.1V7.2c0-.3-.1-.6-.2-.9-.1-.2-.2-.5-.5-.7zM5.6 5.3h8.2c.1 0 .2 0 .3.1.1.1.1.2.1.3v2.2c0 .1 0 .2-.1.3-.1.1-.2.1-.3.1H5.6c-.1 0-.2 0-.3-.1 0-.1-.1-.2-.1-.3V5.6c0-.1 0-.2.1-.3h.3zm6.6 14.9c-.8 0-1.5-.2-2.1-.6-.6-.4-1.2-1-1.5-1.7-.3-.7-.4-1.5-.3-2.2.1-.7.5-1.4 1-2 .5-.5 1.2-.9 2-1 .7-.1 1.5 0 2.2.3.7.3 1.3.8 1.7 1.5.4.6.6 1.4.6 2.1 0 .9-.4 1.8-1.1 2.5-.7.7-1.6 1.1-2.5 1.1zm-.2-1.4c1.2 0 2.2-1 2.2-2.2s-1-2.2-2.2-2.2-2.2 1-2.2 2.2 1 2.2 2.2 2.2z'/%3E%3C/svg%3E");
|
|
3718
|
+
--ag-icon-image-tick: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M21.1 4.9c.6.6.6 1.5 0 2.1l-11 11c-.6.6-1.5.6-2.1 0l-5-5c-.6-.6-.6-1.5 0-2.1.6-.6 1.5-.6 2.1 0l3.9 4L18.9 5c.6-.6 1.6-.6 2.2-.1z'/%3E%3C/svg%3E");
|
|
3719
|
+
--ag-icon-image-link: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M11.859 3.373a6.2 6.2 0 0 1 8.768 8.768l-1.414 1.414a1.2 1.2 0 1 1-1.697-1.697l1.414-1.414a3.8 3.8 0 1 0-5.374-5.374l-1.414 1.414a1.2 1.2 0 0 1-1.697-1.697l1.414-1.414Zm4.49 4.278a1.2 1.2 0 0 1 0 1.697l-7 7a1.2 1.2 0 0 1-1.697-1.697l7-7a1.2 1.2 0 0 1 1.697 0Zm-9.864 2.793a1.2 1.2 0 0 1 0 1.697L5.07 13.555a3.8 3.8 0 0 0 5.374 5.374l1.414-1.414a1.2 1.2 0 0 1 1.697 1.697l-1.414 1.415a6.2 6.2 0 0 1-8.768-8.769l1.414-1.414a1.2 1.2 0 0 1 1.697 0Z'/%3E%3C/svg%3E");
|
|
3720
|
+
--ag-icon-image-up: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M19.85 12.849a1.2 1.2 0 0 1-1.698 0l-4.951-4.952V19a1.2 1.2 0 0 1-2.4 0V7.897L5.849 12.85a1.2 1.2 0 1 1-1.697-1.697l7-7a1.2 1.2 0 0 1 1.697 0l7 7a1.2 1.2 0 0 1 0 1.697Z'/%3E%3C/svg%3E");
|
|
3721
|
+
--ag-icon-image-down: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M19.85 11.151a1.2 1.2 0 0 0-1.698 0l-4.951 4.952V5a1.2 1.2 0 0 0-2.4 0v11.103L5.849 11.15a1.2 1.2 0 1 0-1.697 1.697l7 7a1.2 1.2 0 0 0 1.697 0l7-7a1.2 1.2 0 0 0 0-1.697Z'/%3E%3C/svg%3E");
|
|
3722
|
+
--ag-icon-image-small-down: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M5.151 8.151a1.2 1.2 0 0 1 1.698 0L12 13.303l5.151-5.152A1.2 1.2 0 1 1 18.85 9.85l-6 6a1.2 1.2 0 0 1-1.697 0l-6-6a1.2 1.2 0 0 1 0-1.698Z'/%3E%3C/svg%3E");
|
|
3723
|
+
--ag-icon-image-small-left: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='m14.6 19.6-6.8-6.7c-.4-.4-.4-1.2 0-1.6l6.8-6.8c.4-.5 1.2-.6 1.6-.2.4.4.4 1.2 0 1.6l-6 6 6 6c.4.4.4 1.2 0 1.6-.5.5-1.2.5-1.6.1z'/%3E%3C/svg%3E");
|
|
3724
|
+
--ag-icon-image-small-right: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M8.152 5.151a1.2 1.2 0 0 0 0 1.698L13.303 12l-5.151 5.151a1.2 1.2 0 1 0 1.697 1.698l6-6a1.2 1.2 0 0 0 0-1.697l-6-6a1.2 1.2 0 0 0-1.697 0Z'/%3E%3C/svg%3E");
|
|
3725
|
+
--ag-icon-image-small-up: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M19.85 12.849a1.2 1.2 0 0 1-1.698 0l-4.951-4.952V19a1.2 1.2 0 0 1-2.4 0V7.897L5.849 12.85a1.2 1.2 0 1 1-1.697-1.697l7-7a1.2 1.2 0 0 1 1.697 0l7 7a1.2 1.2 0 0 1 0 1.697Z'/%3E%3C/svg%3E");
|
|
3726
|
+
--ag-icon-image-indeterminate: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M3.5 12A1.5 1.5 0 0 1 5 10.5h14a1.5 1.5 0 0 1 0 3H5A1.5 1.5 0 0 1 3.5 12Z'/%3E%3C/svg%3E");
|
|
3727
|
+
--ag-icon-image-tree-closed: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M8.152 5.151a1.2 1.2 0 0 0 0 1.698L13.303 12l-5.151 5.151a1.2 1.2 0 1 0 1.697 1.698l6-6a1.2 1.2 0 0 0 0-1.697l-6-6a1.2 1.2 0 0 0-1.697 0Z'/%3E%3C/svg%3E");
|
|
3728
|
+
--ag-icon-image-tree-indeterminate: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M3.5 12A1.5 1.5 0 0 1 5 10.5h14a1.5 1.5 0 0 1 0 3H5A1.5 1.5 0 0 1 3.5 12Z'/%3E%3C/svg%3E");
|
|
3729
|
+
--ag-icon-image-tree-open: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M5.151 8.151a1.2 1.2 0 0 1 1.698 0L12 13.303l5.151-5.152A1.2 1.2 0 1 1 18.85 9.85l-6 6a1.2 1.2 0 0 1-1.697 0l-6-6a1.2 1.2 0 0 1 0-1.698Z'/%3E%3C/svg%3E");
|
|
3730
|
+
--ag-icon-image-filter-active: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23176f6f' d='M22 0H0v24h24V0z'/%3E%3Cpath fill='%23fff' d='M15.5 16c0 .4-.4.8-.8.8H9.3c-.4 0-.8-.4-.8-.8s.4-.8.8-.8h5.3c.5 0 .9.4.9.8zm1.2-4.8H7.3c-.4 0-.8.4-.8.8s.4.8.8.8h9.3c.4 0 .8-.4.8-.8.1-.4-.3-.8-.7-.8zm-1.7-4H5.3c-.4 0-.8.4-.8.8s.4.8.8.8h10.1c-.2-.5-.4-1-.4-1.6zm7-.2c0 1.7-1.3 3-3 3s-3-1.3-3-3 1.3-3 3-3 3 1.3 3 3z'/%3E%3C/svg%3E");
|
|
3731
|
+
--ag-icon-image-checkbox-checked: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2302363D'%3E%3Cpath d='M21.1 4.9c.6.6.6 1.5 0 2.1l-11 11c-.6.6-1.5.6-2.1 0l-5-5c-.6-.6-.6-1.5 0-2.1.6-.6 1.5-.6 2.1 0l3.9 4L18.9 5c.6-.6 1.6-.6 2.2-.1z'/%3E%3C/svg%3E");
|
|
3732
|
+
/* Other icons (if used, need to provide an icon)
|
|
3733
|
+
--ag-icon-image-aggregation
|
|
3734
|
+
--ag-icon-image-arrows
|
|
3735
|
+
--ag-icon-image-color-picker
|
|
3736
|
+
--ag-icon-image-column
|
|
3737
|
+
--ag-icon-image-cut
|
|
3738
|
+
--ag-icon-image-first
|
|
3739
|
+
--ag-icon-image-group
|
|
3740
|
+
--ag-icon-image-last
|
|
3741
|
+
--ag-icon-image-loading
|
|
3742
|
+
--ag-icon-image-paste
|
|
3743
|
+
--ag-icon-image-pivot
|
|
3744
|
+
*/
|
|
3745
|
+
}
|
|
3746
|
+
.pv-v2 [class*=ag-theme-] {
|
|
3747
|
+
font-family: var(--font-family-body, Inter, sans-serif) !important;
|
|
3748
|
+
}
|
|
3749
|
+
.pv-v2 .ag-filter-apply-panel {
|
|
3750
|
+
margin-inline: -0.5rem;
|
|
3751
|
+
margin-block-end: -0.5rem;
|
|
3752
|
+
}
|
|
3753
|
+
.pv-v2 .ag-filter-active .ag-icon-filter:after {
|
|
3754
|
+
background-image: var(--ag-icon-image-filter-active);
|
|
3755
|
+
}
|
|
3756
|
+
.pv-v2 .ag-button,
|
|
3757
|
+
.pv-v2 .ag-filter-apply-panel-button {
|
|
3758
|
+
border: 0;
|
|
3759
|
+
cursor: pointer;
|
|
3760
|
+
display: flex;
|
|
3761
|
+
align-items: center;
|
|
3762
|
+
justify-content: center;
|
|
3763
|
+
gap: 0.5rem;
|
|
3764
|
+
white-space: nowrap;
|
|
3765
|
+
font-weight: 600;
|
|
3766
|
+
font-size: 1rem;
|
|
3767
|
+
line-height: 20px !important;
|
|
3768
|
+
border-radius: 2rem !important;
|
|
3769
|
+
transition-duration: 0.125s;
|
|
3770
|
+
transition-property: background-color, color;
|
|
3771
|
+
padding: 0.5rem 1rem;
|
|
3772
|
+
color: white !important;
|
|
3773
|
+
background-color: #176F6F;
|
|
3774
|
+
}
|
|
3775
|
+
.pv-v2 .ag-button:not(:disabled):hover, .pv-v2 .ag-button:not(:disabled):focus-visible,
|
|
3776
|
+
.pv-v2 .ag-filter-apply-panel-button:not(:disabled):hover,
|
|
3777
|
+
.pv-v2 .ag-filter-apply-panel-button:not(:disabled):focus-visible {
|
|
3778
|
+
color: white;
|
|
3779
|
+
background-color: #0D5256;
|
|
3780
|
+
}
|
|
3781
|
+
.pv-v2 .ag-checkbox-input-wrapper {
|
|
3782
|
+
appearance: none;
|
|
3783
|
+
width: 1rem !important;
|
|
3784
|
+
height: 1rem !important;
|
|
3785
|
+
background-color: white;
|
|
3786
|
+
border: 2px solid #DCDFE4;
|
|
3787
|
+
flex-shrink: 0;
|
|
3788
|
+
border-radius: 2px !important;
|
|
3789
|
+
transition-duration: 0.125s;
|
|
3790
|
+
transition-property: background-color, border-color;
|
|
3791
|
+
}
|
|
3792
|
+
.pv-v2 .ag-checkbox-input-wrapper:focus-visible:not(:disabled), .pv-v2 .ag-checkbox-input-wrapper:hover:not(:disabled) {
|
|
3793
|
+
border-color: #176F6F;
|
|
3794
|
+
}
|
|
3795
|
+
.pv-v2 .ag-checkbox-input-wrapper.ag-checked {
|
|
3796
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='m12 2.256-7.762 8.87L0 6.89l1.466-1.466 2.67 2.67L10.44.892 12 2.256Z'/%3E%3C/svg%3E");
|
|
3797
|
+
background-color: #218C88;
|
|
3798
|
+
border-color: #218C88;
|
|
3799
|
+
}
|
|
3800
|
+
.pv-v2 .ag-checkbox-input-wrapper.ag-checked:focus-visible:not(:disabled), .pv-v2 .ag-checkbox-input-wrapper.ag-checked:hover:not(:disabled) {
|
|
3801
|
+
background-color: #176F6F;
|
|
3802
|
+
}
|
|
3803
|
+
.pv-v2 .ag-checkbox-input-wrapper.ag-checked:before {
|
|
3804
|
+
background-image: none !important;
|
|
3805
|
+
}
|
|
3806
|
+
.pv-v2 .ag-set-filter-item {
|
|
3807
|
+
padding-inline: 0.5rem;
|
|
3808
|
+
}
|
|
3809
|
+
.pv-v2 .ag-picker-field-wrapper {
|
|
3810
|
+
border: 0 !important;
|
|
3811
|
+
}
|
|
3812
|
+
.pv-v2 .ag-ltr .ag-select .ag-picker-field-wrapper {
|
|
3813
|
+
padding-inline: 8px !important;
|
|
3814
|
+
}
|
|
3815
|
+
.pv-v2 .ag-header-cell-resize {
|
|
3816
|
+
width: 4px !important;
|
|
3817
|
+
border: 1px solid #DCDFE4;
|
|
3818
|
+
}
|
|
3819
|
+
.pv-v2 .ag-cell-focus {
|
|
3820
|
+
border-radius: 0;
|
|
3821
|
+
}
|
|
3822
|
+
.pv-v2 .ag-cell-range-single-cell {
|
|
3823
|
+
border: 1px solid #02363D !important;
|
|
3824
|
+
}
|
|
3825
|
+
.pv-v2 .ag-select .ag-picker-field-wrapper {
|
|
3826
|
+
min-height: 0;
|
|
3827
|
+
}
|
|
3828
|
+
.pv-v2 .ag-cell-inline-editing .ag-cell-editor {
|
|
3829
|
+
height: 29px;
|
|
3830
|
+
}
|
|
3831
|
+
.pv-v2 .ag-select-list {
|
|
3832
|
+
border-radius: 5px;
|
|
3833
|
+
border: none;
|
|
3834
|
+
padding: 8px;
|
|
3835
|
+
}
|
|
3836
|
+
.pv-v2 .ag-select-list-item {
|
|
3837
|
+
font-size: 1rem;
|
|
3838
|
+
line-height: 1.25;
|
|
3839
|
+
border-radius: 2px;
|
|
3840
|
+
}
|
|
3841
|
+
.pv-v2 .ag-select-list-item:hover {
|
|
3842
|
+
background-color: #f8f8fa;
|
|
3843
|
+
}
|
|
3844
|
+
.pv-v2 .ag-list-item {
|
|
3845
|
+
height: 36px;
|
|
3846
|
+
}
|
|
3847
|
+
.pv-v2 .ag-ltr .ag-select-list-item {
|
|
3848
|
+
padding: 8px;
|
|
3849
|
+
}
|
|
3850
|
+
.pv-v2 .ag-theme-pv .ag-set-filter-item,
|
|
3851
|
+
.pv-v2 .ag-button, .pv-v2 .ag-filter-apply-panel-button,
|
|
3852
|
+
.pv-v2 .ag-theme-pv .ag-ltr input[class^=ag-][type=text] {
|
|
3853
|
+
font-size: 0.875rem;
|
|
3854
|
+
}
|
|
3855
|
+
.pv-v2 [class*=ag-theme-] {
|
|
3856
|
+
font-family: var(--font-family-body, Inter, sans-serif) !important;
|
|
3857
|
+
}
|
|
3858
|
+
.pv-v2 .ag-select-list-item {
|
|
3859
|
+
min-width: fit-content;
|
|
3860
|
+
}
|
|
3861
|
+
.pv-v2 .ag-paging-panel {
|
|
3862
|
+
height: 40px;
|
|
3863
|
+
}
|
|
3864
|
+
.pv-v2 .ag-theme-pv .data-grid-cell-top-border {
|
|
3865
|
+
border-top: 1px solid #E3E7EA;
|
|
3866
|
+
}
|
|
3867
|
+
.pv-v2 .ag-theme-pv .data-grid-cell-bottom-border {
|
|
3868
|
+
border-bottom: 1px solid #E3E7EA;
|
|
3869
|
+
}
|
|
3870
|
+
.pv-v2 [class*=pv-banner] {
|
|
3871
|
+
padding: var(--banner-padding, 0.75rem 1rem);
|
|
3872
|
+
border-radius: var(--banner-radius, 4px);
|
|
3873
|
+
}
|
|
3874
|
+
.pv-v2 .pv-banner-primary {
|
|
3875
|
+
background-color: var(--banner-primary-background-color, #E4F8F6);
|
|
3876
|
+
border-bottom: 1px solid var(--banner-primary-border-color, #B0E8E4);
|
|
3877
|
+
}
|
|
3878
|
+
.pv-v2 .pv-banner-secondary {
|
|
3879
|
+
background-color: var(--banner-secondary-background-color, #FFFFFF);
|
|
3880
|
+
border: 1px solid var(--banner-secondary-border-color, #E3E7EA);
|
|
3881
|
+
}
|
|
3882
|
+
.pv-v2 .pv-banner-tertiary {
|
|
3883
|
+
background-color: var(--banner-tertiary-background-color, #F7F8F8);
|
|
3884
|
+
border: 1px solid var(--banner-tertiary-border-color, transparent);
|
|
3885
|
+
}
|
|
3886
|
+
.pv-v2 .pv-layout-primary,
|
|
3887
|
+
.pv-v2 .pv-layout-primary[data-collapsed] {
|
|
3888
|
+
font-family: var(--layout-primary-sidebar-font-family, Inter, sans-serif);
|
|
3889
|
+
display: grid;
|
|
3890
|
+
grid-template-columns: 81px 1fr;
|
|
3891
|
+
grid-template-areas: "sidebar content";
|
|
3892
|
+
height: 100%;
|
|
3893
|
+
max-height: 100dvh;
|
|
3894
|
+
}
|
|
3895
|
+
.pv-v2 .pv-layout-primary > [data-grid-area=sidebar],
|
|
3896
|
+
.pv-v2 .pv-layout-primary[data-collapsed] > [data-grid-area=sidebar] {
|
|
3897
|
+
grid-area: sidebar;
|
|
3898
|
+
background-color: var(--layout-primary-sidebar-background-color, linear-gradient(176deg, #FFF 0%, rgba(255, 255, 255, 0.08) 100%), #F7F8F8);
|
|
3899
|
+
color: var(--layout-primary-sidebar-text-color, #121313);
|
|
3900
|
+
box-shadow: var(--layout-primary-sidebar-shadow, -2px 0px 10px -1px rgba(0, 0, 0, 0.04) inset);
|
|
3901
|
+
display: grid;
|
|
3902
|
+
grid-template-rows: auto 1fr;
|
|
3903
|
+
position: sticky;
|
|
3904
|
+
top: 0;
|
|
3905
|
+
height: 100dvh;
|
|
3906
|
+
z-index: 10;
|
|
3907
|
+
border-inline-end: 1px solid var(--layout-primary-sidebar-border-color, #E3E7EA);
|
|
3908
|
+
}
|
|
3909
|
+
.pv-v2 .pv-layout-primary > [data-grid-area=sidebar] .pv-avatar + div,
|
|
3910
|
+
.pv-v2 .pv-layout-primary[data-collapsed] > [data-grid-area=sidebar] .pv-avatar + div {
|
|
3911
|
+
display: none;
|
|
3912
|
+
}
|
|
3913
|
+
.pv-v2 .pv-layout-primary > [data-grid-area=content],
|
|
3914
|
+
.pv-v2 .pv-layout-primary[data-collapsed] > [data-grid-area=content] {
|
|
3915
|
+
grid-area: content;
|
|
3916
|
+
overflow-y: auto;
|
|
3917
|
+
scroll-behavior: smooth;
|
|
3918
|
+
scroll-padding: 1rem;
|
|
3919
|
+
display: grid;
|
|
3920
|
+
grid-template-rows: auto 1fr;
|
|
3921
|
+
z-index: 5;
|
|
3922
|
+
}
|
|
3923
|
+
.pv-v2 .pv-layout-primary > [data-grid-area=content] > [data-grid-area=header],
|
|
3924
|
+
.pv-v2 .pv-layout-primary[data-collapsed] > [data-grid-area=content] > [data-grid-area=header] {
|
|
3925
|
+
background-color: #F7F8F8;
|
|
3926
|
+
padding-inline: 1.5rem;
|
|
3927
|
+
border-block-end: 1px solid #E3E7EA;
|
|
3928
|
+
}
|
|
3929
|
+
.pv-v2 .pv-layout-primary > [data-grid-area=content] > [data-grid-area=main],
|
|
3930
|
+
.pv-v2 .pv-layout-primary[data-collapsed] > [data-grid-area=content] > [data-grid-area=main] {
|
|
3931
|
+
overflow-x: auto;
|
|
3932
|
+
}
|
|
3933
|
+
.pv-v2 .pv-layout-primary[data-collapsed] > [data-grid-area=sidebar] .pv-avatar {
|
|
3934
|
+
margin-inline: auto;
|
|
3935
|
+
}
|
|
3936
|
+
.pv-v2 .pv-layout-primary[data-floating] > [data-grid-area=sidebar] {
|
|
3937
|
+
z-index: 15;
|
|
3938
|
+
}
|
|
3939
|
+
@media (width >= 768px) {
|
|
3940
|
+
.pv-v2 .pv-layout-primary {
|
|
3941
|
+
grid-template-columns: 260px 1fr;
|
|
3942
|
+
}
|
|
3943
|
+
.pv-v2 .pv-layout-primary > [data-grid-area=sidebar] .pv-avatar + div {
|
|
3944
|
+
display: block;
|
|
3945
|
+
}
|
|
3946
|
+
}
|
|
3947
|
+
.pv-v2 .pv-layout-primary:has([data-grid-area=title]) > [data-grid-area=content] {
|
|
3948
|
+
grid-template-rows: auto auto 1fr;
|
|
3949
|
+
}
|
|
3950
|
+
.pv-v2 body:has(.pv-layout-primary) {
|
|
3951
|
+
overflow-y: clip;
|
|
3952
|
+
}
|
|
3953
|
+
.pv-v2 [data-grid-area=sidebar] > footer {
|
|
3954
|
+
display: grid;
|
|
3955
|
+
place-items: center;
|
|
3956
|
+
padding: 1.25rem;
|
|
3957
|
+
}
|
|
3958
|
+
.pv-v2 .pv-layout-primary[data-collapsed] [data-grid-area=sidebar] > footer {
|
|
3959
|
+
padding: 1rem 0.5rem;
|
|
3960
|
+
}
|
|
3961
|
+
.pv-v2 .pv-layout-sidebar {
|
|
3962
|
+
--sidebar-width: 300px;
|
|
3963
|
+
min-height: 100%;
|
|
3964
|
+
display: grid;
|
|
3965
|
+
grid-template-columns: 1fr var(--sidebar-width);
|
|
3966
|
+
grid-template-areas: "main sidebar";
|
|
3967
|
+
}
|
|
3968
|
+
.pv-v2 .pv-layout-sidebar > [data-grid-area=main] {
|
|
3969
|
+
grid-area: main;
|
|
3970
|
+
position: relative;
|
|
3971
|
+
display: grid;
|
|
3972
|
+
grid-template-rows: 1fr auto;
|
|
3973
|
+
}
|
|
3974
|
+
.pv-v2 .pv-layout-sidebar > [data-grid-area=main] > :nth-child(1) {
|
|
3975
|
+
grid-row: 1/1;
|
|
3976
|
+
}
|
|
3977
|
+
.pv-v2 .pv-layout-sidebar > [data-grid-area=main] > :nth-child(2) {
|
|
3978
|
+
grid-row: 2/2;
|
|
3979
|
+
background-color: #F7F8F8;
|
|
3980
|
+
border-top: 1px solid #E3E7EA;
|
|
3981
|
+
}
|
|
3982
|
+
.pv-v2 .pv-layout-sidebar > [data-grid-area=sidebar] {
|
|
3983
|
+
grid-area: sidebar;
|
|
3984
|
+
border-left: 1px solid #E3E7EA;
|
|
3985
|
+
display: grid;
|
|
3986
|
+
grid-template-rows: auto 1fr;
|
|
3987
|
+
}
|
|
3988
|
+
.pv-v2 .pv-layout-two-row {
|
|
3989
|
+
position: relative;
|
|
3990
|
+
display: grid;
|
|
3991
|
+
grid-template-rows: 1fr auto;
|
|
3992
|
+
}
|
|
3993
|
+
.pv-v2 .pv-layout-two-row > :first-child {
|
|
3994
|
+
grid-row-end: 2;
|
|
3995
|
+
}
|
|
3996
|
+
.pv-v2 .pv-layout-two-row > :last-child {
|
|
3997
|
+
grid-row-start: 2;
|
|
3998
|
+
}
|
|
3999
|
+
.pv-v2 .pv-layout-ama {
|
|
4000
|
+
display: grid;
|
|
4001
|
+
align-content: start;
|
|
4002
|
+
background-image: linear-gradient(109.07deg, #176F6F 0%, #02363D 100%);
|
|
4003
|
+
min-height: 100%;
|
|
4004
|
+
}
|
|
4005
|
+
.pv-v2 .pv-layout-ama > * {
|
|
4006
|
+
grid-row: 1/1;
|
|
4007
|
+
grid-column: 1/1;
|
|
4008
|
+
}
|
|
4009
|
+
.pv-v2 .pv-layout-ama > div {
|
|
4010
|
+
padding: 3rem;
|
|
4011
|
+
align-self: center;
|
|
4012
|
+
}
|
|
4013
|
+
.pv-v2 .pv-layout-ama > button {
|
|
4014
|
+
justify-self: end;
|
|
4015
|
+
align-self: start;
|
|
4016
|
+
margin: 1.25rem;
|
|
4017
|
+
}
|
|
4018
|
+
.pv-v2 .pv-layout-sidebar-left {
|
|
4019
|
+
--sidebar: 260px;
|
|
4020
|
+
display: grid;
|
|
4021
|
+
grid-template-columns: var(--sidebar) 1fr;
|
|
4022
|
+
height: 100%;
|
|
4023
|
+
}
|
|
4024
|
+
.pv-v2 .pv-layout-sidebar-left > :first-child {
|
|
4025
|
+
border-right: 1px solid #E3E7EA;
|
|
4026
|
+
}
|
|
4027
|
+
.pv-v2 .pv-layout-website > section > div,
|
|
4028
|
+
.pv-v2 .pv-layout-website > section > pv-figure-details {
|
|
4029
|
+
padding: 8rem 2rem;
|
|
4030
|
+
max-width: 1296px;
|
|
4031
|
+
margin-inline: auto;
|
|
4032
|
+
}
|
|
4033
|
+
@media (width <= 768px) {
|
|
4034
|
+
.pv-v2 .pv-layout-website > section > div {
|
|
4035
|
+
padding: 4rem 1rem;
|
|
4036
|
+
}
|
|
4037
|
+
}
|
|
4038
|
+
.pv-v2 .pv-layout-ssp {
|
|
4039
|
+
max-width: 1440px;
|
|
4040
|
+
min-height: 100%;
|
|
4041
|
+
margin-inline: auto;
|
|
4042
|
+
padding: 60px;
|
|
4043
|
+
background-color: var(--color-background-body, #FFFFFF);
|
|
4044
|
+
display: grid;
|
|
4045
|
+
grid-template-columns: 320px 1fr;
|
|
4046
|
+
grid-template-rows: auto 1fr;
|
|
4047
|
+
gap: 16px 24px;
|
|
4048
|
+
}
|
|
4049
|
+
.pv-v2 .pv-layout-ssp [data-grid-area=header] {
|
|
4050
|
+
grid-column: 1/-1;
|
|
4051
|
+
}
|
|
4052
|
+
@media (width <= 768px) {
|
|
4053
|
+
.pv-v2 .pv-layout-ssp {
|
|
4054
|
+
gap: 16px;
|
|
4055
|
+
padding: 16px;
|
|
4056
|
+
}
|
|
4057
|
+
}
|
|
4058
|
+
.pv-v2 .pv-layout-two-sidebar {
|
|
4059
|
+
--left-size: 320px;
|
|
4060
|
+
--right-size: 320px;
|
|
4061
|
+
overflow: clip;
|
|
4062
|
+
height: 100%;
|
|
4063
|
+
display: grid;
|
|
4064
|
+
transition: 200ms;
|
|
4065
|
+
grid-template-columns: var(--left-size) 1fr var(--right-size);
|
|
4066
|
+
grid-template-areas: "left center right";
|
|
4067
|
+
}
|
|
4068
|
+
.pv-v2 .pv-layout-two-sidebar:has([data-layout=left-sidebar][data-hidden]) {
|
|
4069
|
+
grid-template-columns: 0 1fr var(--right-size);
|
|
4070
|
+
}
|
|
4071
|
+
.pv-v2 .pv-layout-two-sidebar:has([data-layout=right-sidebar][data-hidden]) {
|
|
4072
|
+
grid-template-columns: var(--left-size) 1fr 0;
|
|
4073
|
+
}
|
|
4074
|
+
.pv-v2 .pv-layout-two-sidebar:has([data-layout=left-sidebar][data-hidden]):has([data-layout=right-sidebar][data-hidden]) {
|
|
4075
|
+
grid-template-columns: 0 1fr 0;
|
|
4076
|
+
}
|
|
4077
|
+
.pv-v2 .pv-layout-two-sidebar [data-layout=left-sidebar] {
|
|
4078
|
+
border-right: 1px solid #E3E7EA;
|
|
4079
|
+
min-width: var(--left-size);
|
|
4080
|
+
}
|
|
4081
|
+
.pv-v2 .pv-layout-two-sidebar [data-layout=left-sidebar][data-hidden] {
|
|
4082
|
+
transform: translateX(calc(var(--left-size) * -1));
|
|
4083
|
+
}
|
|
4084
|
+
.pv-v2 .pv-layout-two-sidebar [data-layout=right-sidebar] {
|
|
4085
|
+
border-left: 1px solid #E3E7EA;
|
|
4086
|
+
min-width: var(--right-size);
|
|
4087
|
+
}
|
|
4088
|
+
.pv-v2 .pv-layout-two-sidebar [data-layout=right-sidebar][data-hidden] {
|
|
4089
|
+
transform: translateX(var(--right-size));
|
|
4090
|
+
}
|
|
4091
|
+
.pv-v2 .pv-surface-brand {
|
|
4092
|
+
background-color: var(--color-background-brand, #02363D);
|
|
4093
|
+
}
|
|
4094
|
+
.pv-v2 .pv-surface-accent, .pv-v2 .ag-theme-pv .ag-header-cell {
|
|
4095
|
+
background-color: var(--color-background-accent, #F7F8F8);
|
|
4096
|
+
}
|
|
4097
|
+
.pv-v2 .pv-surface {
|
|
4098
|
+
background-color: #FFFFFF;
|
|
4099
|
+
}
|
|
4100
|
+
.pv-v2 .pv-surface-brand-inverse {
|
|
4101
|
+
background-color: var(--color-background-brand-inverse, #176F6F);
|
|
4102
|
+
}
|
|
4103
|
+
.pv-v2 .pv-surface-brand-accent {
|
|
4104
|
+
background-color: var(--color-background-brand-accent, #E8F2F4);
|
|
4105
|
+
}
|
|
4106
|
+
.pv-v2 .pv-surface-warning {
|
|
4107
|
+
background-color: #FFEED9;
|
|
4108
|
+
}
|
|
4109
|
+
.pv-v2 .pv-surface-success {
|
|
4110
|
+
background-color: #E8FDEA;
|
|
4111
|
+
}
|
|
4112
|
+
.pv-v2 .pv-surface-critical {
|
|
4113
|
+
background-color: #FFEFEB;
|
|
4114
|
+
}
|
|
4115
|
+
.pv-v2 .pv-surface-brand-gradient {
|
|
4116
|
+
background: var(--color-background-brand-gradient, linear-gradient(109deg, #176F6F 0%, #02363D 100%));
|
|
4117
|
+
}
|
|
4118
|
+
.pv-v2 .pv-text-default {
|
|
4119
|
+
color: var(--color-text-body, #121313);
|
|
4120
|
+
}
|
|
4121
|
+
.pv-v2 .pv-text-subdued {
|
|
4122
|
+
color: var(--color-text-subdued, #4B595C);
|
|
4123
|
+
}
|
|
4124
|
+
.pv-v2 .pv-text-subdued-inverse {
|
|
4125
|
+
color: var(--color-text-inverse-subdued, #FFFFFF);
|
|
4126
|
+
}
|
|
4127
|
+
.pv-v2 .pv-text-inverse {
|
|
4128
|
+
color: var(--color-text-inverse, #FFFFFF);
|
|
4129
|
+
}
|
|
4130
|
+
.pv-v2 .pv-text-brand {
|
|
4131
|
+
color: var(--color-text-brand, #16696D);
|
|
4132
|
+
}
|
|
4133
|
+
.pv-v2 .pv-text-brand-inverse {
|
|
4134
|
+
color: var(--color-text-brand-inverse, #E4F8F6);
|
|
4135
|
+
}
|
|
4136
|
+
.pv-v2 .pv-text-red {
|
|
4137
|
+
color: #FF471A;
|
|
4138
|
+
}
|
|
4139
|
+
.pv-v2 .pv-text-critical {
|
|
4140
|
+
color: #FF471A;
|
|
4141
|
+
}
|
|
4142
|
+
.pv-v2 .pv-text-warning {
|
|
4143
|
+
color: #B26500;
|
|
4144
|
+
}
|
|
4145
|
+
.pv-v2 .pv-text-success {
|
|
4146
|
+
color: #0E8019;
|
|
4147
|
+
}
|
|
4148
|
+
.pv-v2 .pv-text-inherit a,
|
|
4149
|
+
.pv-v2 a.pv-text-inherit {
|
|
4150
|
+
font-family: inherit;
|
|
4151
|
+
font-size: inherit;
|
|
4152
|
+
color: inherit;
|
|
4153
|
+
text-decoration: underline;
|
|
4154
|
+
text-underline-offset: 3px;
|
|
4155
|
+
}
|
|
4156
|
+
.pv-v2 .pv-text-inherit svg,
|
|
4157
|
+
.pv-v2 svg.pv-text-inherit {
|
|
4158
|
+
fill: currentColor;
|
|
4159
|
+
}
|
|
4160
|
+
.pv-v2 .pv-flex,
|
|
4161
|
+
.pv-v2 .pv-flex-vertical,
|
|
4162
|
+
.pv-v2 .pv-flex-inline {
|
|
4163
|
+
--flex-align: center;
|
|
4164
|
+
--flex-gap: .5rem;
|
|
4165
|
+
--flex-justify: flex-start;
|
|
4166
|
+
--flex-wrap: nowrap;
|
|
4167
|
+
display: flex;
|
|
4168
|
+
align-items: var(--flex-align);
|
|
4169
|
+
justify-content: var(--flex-justify);
|
|
4170
|
+
gap: var(--flex-gap);
|
|
4171
|
+
flex-wrap: var(--flex-wrap);
|
|
4172
|
+
}
|
|
4173
|
+
.pv-v2 .pv-flex-responsive {
|
|
4174
|
+
--flex-align: center;
|
|
4175
|
+
--flex-align-small: unset;
|
|
4176
|
+
--flex-gap: .5rem;
|
|
4177
|
+
--flex-justify: flex-start;
|
|
4178
|
+
--flex-wrap: nowrap;
|
|
4179
|
+
display: flex;
|
|
4180
|
+
align-items: var(--flex-align-small);
|
|
4181
|
+
justify-content: var(--flex-justify);
|
|
4182
|
+
gap: var(--flex-gap);
|
|
4183
|
+
flex-wrap: var(--flex-wrap);
|
|
4184
|
+
}
|
|
4185
|
+
.pv-v2 .pv-flex-inline {
|
|
4186
|
+
--flex-gap: 0;
|
|
4187
|
+
display: inline-flex;
|
|
4188
|
+
}
|
|
4189
|
+
.pv-v2 .pv-flex-vertical,
|
|
4190
|
+
.pv-v2 .pv-flex-responsive {
|
|
4191
|
+
flex-direction: column;
|
|
4192
|
+
}
|
|
4193
|
+
@media (width >= 768px) {
|
|
4194
|
+
.pv-v2 .pv-flex-responsive {
|
|
4195
|
+
flex-direction: row;
|
|
4196
|
+
align-items: var(--flex-align);
|
|
4197
|
+
}
|
|
4198
|
+
}
|
|
4199
|
+
.pv-v2 .pv-space-between {
|
|
4200
|
+
--flex-align: center;
|
|
4201
|
+
--flex-gap: .5rem;
|
|
4202
|
+
display: flex;
|
|
4203
|
+
align-items: var(--flex-align);
|
|
4204
|
+
justify-content: space-between;
|
|
4205
|
+
gap: var(--flex-gap);
|
|
4206
|
+
}
|
|
4207
|
+
.pv-v2 .pv-flex-item {
|
|
4208
|
+
flex: 1;
|
|
4209
|
+
}
|
|
4210
|
+
.pv-v2 :where(.pv-grid) {
|
|
4211
|
+
--grid-col-min: 200px;
|
|
4212
|
+
--gap: 8px;
|
|
4213
|
+
--align-items: normal;
|
|
4214
|
+
display: grid;
|
|
4215
|
+
grid-template-columns: repeat(auto-fill, minmax(var(--grid-col-min), 1fr));
|
|
4216
|
+
gap: var(--gap);
|
|
4217
|
+
align-items: var(--align-items);
|
|
4218
|
+
}
|
|
4219
|
+
.pv-v2 :where(.pv-flow) {
|
|
4220
|
+
--flow-size: 1rem;
|
|
4221
|
+
}
|
|
4222
|
+
.pv-v2 :where(.pv-flow) > :not(:last-child) {
|
|
4223
|
+
margin-block-end: var(--flow-size);
|
|
4224
|
+
}
|
|
4225
|
+
.pv-v2 :where(.pv-flow-8) > :not(:last-child) {
|
|
4226
|
+
margin-block-end: 0.5rem;
|
|
4227
|
+
}
|
|
4228
|
+
.pv-v2 :where(.pv-flow-16) > :not(:last-child) {
|
|
4229
|
+
margin-block-end: 1rem;
|
|
4230
|
+
}
|
|
4231
|
+
.pv-v2 :where(.pv-flow-24) > :not(:last-child) {
|
|
4232
|
+
margin-block-end: 1.5rem;
|
|
4233
|
+
}
|
|
4234
|
+
.pv-v2 .pv-stack {
|
|
4235
|
+
--stack-size: 1rem;
|
|
4236
|
+
margin-block-end: var(--stack-size);
|
|
4237
|
+
}
|
|
4238
|
+
.pv-v2 .pv-stack-0 {
|
|
4239
|
+
margin-block-end: 0;
|
|
4240
|
+
}
|
|
4241
|
+
.pv-v2 .pv-stack-4 {
|
|
4242
|
+
margin-block-end: 0.25rem;
|
|
4243
|
+
}
|
|
4244
|
+
.pv-v2 .pv-stack-8 {
|
|
4245
|
+
margin-block-end: 0.5rem;
|
|
4246
|
+
}
|
|
4247
|
+
.pv-v2 .pv-stack-12 {
|
|
4248
|
+
margin-block-end: 0.75rem;
|
|
4249
|
+
}
|
|
4250
|
+
.pv-v2 .pv-stack-16 {
|
|
4251
|
+
margin-block-end: 1rem;
|
|
4252
|
+
}
|
|
4253
|
+
.pv-v2 .pv-stack-20 {
|
|
4254
|
+
margin-block-end: 1.25rem;
|
|
4255
|
+
}
|
|
4256
|
+
.pv-v2 .pv-stack-24 {
|
|
4257
|
+
margin-block-end: 1.5rem;
|
|
4258
|
+
}
|
|
4259
|
+
.pv-v2 .pv-stack-32 {
|
|
4260
|
+
margin-block-end: 2rem;
|
|
4261
|
+
}
|
|
4262
|
+
.pv-v2 .pv-stack-64 {
|
|
4263
|
+
margin-block-end: 4rem;
|
|
4264
|
+
}
|
|
4265
|
+
.pv-v2 .pv-stack-128 {
|
|
4266
|
+
margin-block-end: 8rem;
|
|
4267
|
+
}
|
|
4268
|
+
.pv-v2 .pv-inset-square {
|
|
4269
|
+
--inset-size: 1rem;
|
|
4270
|
+
padding: var(--inset-size);
|
|
4271
|
+
}
|
|
4272
|
+
.pv-v2 .pv-inset-square-8 {
|
|
4273
|
+
padding: 0.5rem;
|
|
4274
|
+
}
|
|
4275
|
+
.pv-v2 .pv-inset-square-12 {
|
|
4276
|
+
padding: 0.75rem;
|
|
4277
|
+
}
|
|
4278
|
+
.pv-v2 .pv-inset-square-16 {
|
|
4279
|
+
padding: 1rem;
|
|
4280
|
+
}
|
|
4281
|
+
.pv-v2 .pv-inset-square-20 {
|
|
4282
|
+
padding: 1.25rem;
|
|
4283
|
+
}
|
|
4284
|
+
.pv-v2 .pv-inset-square-24 {
|
|
4285
|
+
padding: 1.5rem;
|
|
4286
|
+
}
|
|
4287
|
+
.pv-v2 .pv-inset-square-32 {
|
|
4288
|
+
padding: 2rem;
|
|
4289
|
+
}
|
|
4290
|
+
.pv-v2 .pv-inset-square-48 {
|
|
4291
|
+
padding: 3rem;
|
|
4292
|
+
}
|
|
4293
|
+
.pv-v2 .pv-stack-8-responsive {
|
|
4294
|
+
margin-block-end: 0.25rem;
|
|
4295
|
+
}
|
|
4296
|
+
.pv-v2 .pv-stack-16-responsive {
|
|
4297
|
+
margin-block-end: 0.5rem;
|
|
4298
|
+
}
|
|
4299
|
+
.pv-v2 .pv-stack-24-responsive {
|
|
4300
|
+
margin-block-end: 0.75rem;
|
|
4301
|
+
}
|
|
4302
|
+
.pv-v2 .pv-stack-32-responsive {
|
|
4303
|
+
margin-block-end: 1rem;
|
|
4304
|
+
}
|
|
4305
|
+
.pv-v2 .pv-stack-64-responsive {
|
|
4306
|
+
margin-block-end: 2rem;
|
|
4307
|
+
}
|
|
4308
|
+
.pv-v2 .pv-stack-128-responsive {
|
|
4309
|
+
margin-block-end: 4rem;
|
|
4310
|
+
}
|
|
4311
|
+
.pv-v2 .pv-inset-square-16-responsive {
|
|
4312
|
+
padding: 0.5rem;
|
|
4313
|
+
}
|
|
4314
|
+
.pv-v2 .pv-inset-square-24-responsive {
|
|
4315
|
+
padding: 0.75rem;
|
|
4316
|
+
}
|
|
4317
|
+
.pv-v2 .pv-inset-square-32-responsive {
|
|
4318
|
+
padding: 1rem;
|
|
4319
|
+
}
|
|
4320
|
+
.pv-v2 .pv-inset-square-48-responsive {
|
|
4321
|
+
padding: 1.5rem;
|
|
4322
|
+
}
|
|
4323
|
+
.pv-v2 .pv-inset-block-8-responsive {
|
|
4324
|
+
padding-block: 0.25rem;
|
|
4325
|
+
}
|
|
4326
|
+
.pv-v2 .pv-inset-block-16-responsive {
|
|
4327
|
+
padding-block: 0.5rem;
|
|
4328
|
+
}
|
|
4329
|
+
.pv-v2 .pv-inset-block-24-responsive {
|
|
4330
|
+
padding-block: 0.75rem;
|
|
4331
|
+
}
|
|
4332
|
+
.pv-v2 .pv-inset-block-32-responsive {
|
|
4333
|
+
padding-block: 1rem;
|
|
4334
|
+
}
|
|
4335
|
+
@media (width >= 768px) {
|
|
4336
|
+
.pv-v2 .pv-stack-8-responsive {
|
|
4337
|
+
margin-block-end: 0.5rem;
|
|
4338
|
+
}
|
|
4339
|
+
.pv-v2 .pv-stack-16-responsive {
|
|
4340
|
+
margin-block-end: 1rem;
|
|
4341
|
+
}
|
|
4342
|
+
.pv-v2 .pv-stack-24-responsive {
|
|
4343
|
+
margin-block-end: 1.5rem;
|
|
4344
|
+
}
|
|
4345
|
+
.pv-v2 .pv-stack-32-responsive {
|
|
4346
|
+
margin-block-end: 2rem;
|
|
4347
|
+
}
|
|
4348
|
+
.pv-v2 .pv-stack-64-responsive {
|
|
4349
|
+
margin-block-end: 4rem;
|
|
4350
|
+
}
|
|
4351
|
+
.pv-v2 .pv-stack-128-responsive {
|
|
4352
|
+
margin-block-end: 8rem;
|
|
4353
|
+
}
|
|
4354
|
+
.pv-v2 .pv-inset-square-16-responsive {
|
|
4355
|
+
padding: 1rem;
|
|
4356
|
+
}
|
|
4357
|
+
.pv-v2 .pv-inset-square-24-responsive {
|
|
4358
|
+
padding: 1.5rem;
|
|
4359
|
+
}
|
|
4360
|
+
.pv-v2 .pv-inset-square-32-responsive {
|
|
4361
|
+
padding: 2rem;
|
|
4362
|
+
}
|
|
4363
|
+
.pv-v2 .pv-inset-square-48-responsive {
|
|
4364
|
+
padding: 3rem;
|
|
4365
|
+
}
|
|
4366
|
+
.pv-v2 .pv-inset-block-8-responsive {
|
|
4367
|
+
padding-block: 0.5rem;
|
|
4368
|
+
}
|
|
4369
|
+
.pv-v2 .pv-inset-block-16-responsive {
|
|
4370
|
+
padding-block: 1rem;
|
|
4371
|
+
}
|
|
4372
|
+
.pv-v2 .pv-inset-block-24-responsive {
|
|
4373
|
+
padding-block: 1.5rem;
|
|
4374
|
+
}
|
|
4375
|
+
.pv-v2 .pv-inset-block-32-responsive {
|
|
4376
|
+
padding-block: 2rem;
|
|
4377
|
+
}
|
|
4378
|
+
}
|
|
4379
|
+
.pv-v2 .pv-inset-squish {
|
|
4380
|
+
--inset-size: 1rem 1.5rem;
|
|
4381
|
+
padding: var(--inset-size);
|
|
4382
|
+
}
|
|
4383
|
+
.pv-v2 .pv-inset-squish-8 {
|
|
4384
|
+
padding: 0.5rem 1rem;
|
|
4385
|
+
}
|
|
4386
|
+
.pv-v2 .pv-inset-squish-12 {
|
|
4387
|
+
padding: 0.75rem 1rem;
|
|
4388
|
+
}
|
|
4389
|
+
.pv-v2 .pv-inset-squish-16 {
|
|
4390
|
+
padding: 1rem 1.5rem;
|
|
4391
|
+
}
|
|
4392
|
+
.pv-v2 .pv-inset-block {
|
|
4393
|
+
--inset-size: 1rem;
|
|
4394
|
+
padding-block: var(--inset-size);
|
|
4395
|
+
}
|
|
4396
|
+
.pv-v2 .pv-inset-block-8 {
|
|
4397
|
+
padding-block: 0.5rem;
|
|
4398
|
+
}
|
|
4399
|
+
.pv-v2 .pv-inset-block-16 {
|
|
4400
|
+
padding-block: 1rem;
|
|
4401
|
+
}
|
|
4402
|
+
.pv-v2 .pv-inset-block-20 {
|
|
4403
|
+
padding-block: 1.25rem;
|
|
4404
|
+
}
|
|
4405
|
+
.pv-v2 .pv-inset-block-24 {
|
|
4406
|
+
padding-block: 1.5rem;
|
|
4407
|
+
}
|
|
4408
|
+
.pv-v2 .pv-inset-block-32 {
|
|
4409
|
+
padding-block: 2rem;
|
|
4410
|
+
}
|
|
4411
|
+
.pv-v2 .pv-inset-inline {
|
|
4412
|
+
--inset-size: 1rem;
|
|
4413
|
+
padding-inline: var(--inset-size);
|
|
4414
|
+
}
|
|
4415
|
+
.pv-v2 .pv-inset-inline-16 {
|
|
4416
|
+
padding-inline: 1rem;
|
|
4417
|
+
}
|
|
4418
|
+
.pv-v2 .pv-inset-inline-20 {
|
|
4419
|
+
padding-inline: 1.25rem;
|
|
4420
|
+
}
|
|
4421
|
+
.pv-v2 .pv-inset-inline-24 {
|
|
4422
|
+
padding-inline: 1.5rem;
|
|
4423
|
+
}
|
|
4424
|
+
.pv-v2 .pv-inset-inline-32 {
|
|
4425
|
+
padding-inline: 2rem;
|
|
4426
|
+
}
|
|
4427
|
+
.pv-v2 [class*=pv-bordered] {
|
|
4428
|
+
--radius: 2px;
|
|
4429
|
+
border: 1px solid var(--color-border, #E3E7EA);
|
|
4430
|
+
border-radius: var(--radius);
|
|
4431
|
+
}
|
|
4432
|
+
.pv-v2 .pv-bordered-md {
|
|
4433
|
+
border-radius: 4px;
|
|
4434
|
+
}
|
|
4435
|
+
.pv-v2 .pv-bordered-lg {
|
|
4436
|
+
border-radius: 8px;
|
|
4437
|
+
}
|
|
4438
|
+
.pv-v2 .pv-border-flow > * {
|
|
4439
|
+
border-top: 1px solid var(--color-border, #E3E7EA);
|
|
4440
|
+
}
|
|
4441
|
+
.pv-v2 .pv-border-accent {
|
|
4442
|
+
border-color: var(--color-border-accent, #36C5BA);
|
|
4443
|
+
}
|
|
4444
|
+
.pv-v2 .pv-border-warning {
|
|
4445
|
+
border-color: var(--color-border-warning, #E78200);
|
|
4446
|
+
}
|
|
4447
|
+
.pv-v2 .pv-border-critical {
|
|
4448
|
+
border-color: var(--color-border-critical, #FF471A);
|
|
4449
|
+
}
|
|
4450
|
+
.pv-v2 .pv-border-brand {
|
|
4451
|
+
border-color: var(--color-border-brand, #16696D);
|
|
4452
|
+
}
|
|
4453
|
+
.pv-v2 .pv-border-gradient {
|
|
4454
|
+
--background: #FFFFFF;
|
|
4455
|
+
--border-width: 1px;
|
|
4456
|
+
--radius: 4px;
|
|
4457
|
+
background: linear-gradient(var(--background) 0 0) padding-box, linear-gradient(to right top, #8A3FFC 5%, #36C5BA 90%) border-box;
|
|
4458
|
+
border: var(--border-width) solid transparent;
|
|
4459
|
+
border-radius: var(--radius);
|
|
4460
|
+
}
|
|
4461
|
+
.pv-v2 .pv-border-left {
|
|
4462
|
+
border-inline-start: 1px solid var(--color-border, #E3E7EA);
|
|
4463
|
+
}
|
|
4464
|
+
.pv-v2 .pv-border-right {
|
|
4465
|
+
border-inline-end: 1px solid var(--color-border, #E3E7EA);
|
|
4466
|
+
}
|
|
4467
|
+
.pv-v2 .pv-border-top {
|
|
4468
|
+
border-block-start: 1px solid var(--color-border, #E3E7EA);
|
|
4469
|
+
}
|
|
4470
|
+
.pv-v2 .pv-border-bottom {
|
|
4471
|
+
border-block-end: 1px solid var(--color-border, #E3E7EA);
|
|
4472
|
+
}
|
|
4473
|
+
.pv-v2 .pv-border-dashed {
|
|
4474
|
+
border-style: dashed;
|
|
4475
|
+
}
|
|
4476
|
+
.pv-v2 [class*=pv-radius] {
|
|
4477
|
+
--radius: 4px;
|
|
4478
|
+
border-radius: var(--radius);
|
|
4479
|
+
}
|
|
4480
|
+
.pv-v2 .pv-radius-top,
|
|
4481
|
+
.pv-v2 .pv-radius-sm-top,
|
|
4482
|
+
.pv-v2 .pv-radius-lg-top {
|
|
4483
|
+
border-radius: var(--radius, 4px) var(--radius, 4px) 0 0;
|
|
4484
|
+
}
|
|
4485
|
+
.pv-v2 .pv-radius-bottom,
|
|
4486
|
+
.pv-v2 .pv-radius-sm-bottom,
|
|
4487
|
+
.pv-v2 .pv-radius-lg-bottom {
|
|
4488
|
+
border-radius: 0 0 var(--radius, 4px) var(--radius, 4px);
|
|
4489
|
+
}
|
|
4490
|
+
.pv-v2 .pv-radius-sm,
|
|
4491
|
+
.pv-v2 .pv-radius-sm-top,
|
|
4492
|
+
.pv-v2 .pv-radius-sm-bottom {
|
|
4493
|
+
--radius: 2px;
|
|
4494
|
+
}
|
|
4495
|
+
.pv-v2 .pv-radius-lg,
|
|
4496
|
+
.pv-v2 .pv-radius-lg-top,
|
|
4497
|
+
.pv-v2 .pv-radius-lg-bottom {
|
|
4498
|
+
--radius: 8px;
|
|
4499
|
+
}
|
|
4500
|
+
.pv-v2 .pv-expand {
|
|
4501
|
+
--expand: 32px;
|
|
4502
|
+
width: calc(100% + var(--expand) * 2);
|
|
4503
|
+
margin-inline: calc(var(--expand) * -1);
|
|
4504
|
+
}
|
|
4505
|
+
.pv-v2 .pv-aspect-3-4 {
|
|
4506
|
+
aspect-ratio: 0.75;
|
|
4507
|
+
}
|
|
4508
|
+
.pv-v2 .pv-truncate {
|
|
4509
|
+
--max-width: 100%;
|
|
4510
|
+
white-space: nowrap;
|
|
4511
|
+
max-width: var(--max-width);
|
|
4512
|
+
overflow: hidden;
|
|
4513
|
+
text-overflow: ellipsis;
|
|
4514
|
+
}
|
|
4515
|
+
.pv-v2 .pv-margin-auto {
|
|
4516
|
+
margin-inline: auto;
|
|
4517
|
+
}
|
|
4518
|
+
.pv-v2 .pv-margin-auto.pv-flex {
|
|
4519
|
+
display: inline-flex;
|
|
4520
|
+
}
|
|
4521
|
+
.pv-v2 .pv-relative {
|
|
4522
|
+
position: relative;
|
|
4523
|
+
}
|
|
4524
|
+
.pv-v2 .pv-hide,
|
|
4525
|
+
.pv-v2 .pv-hide-inactive > :not([data-active]) {
|
|
4526
|
+
display: none;
|
|
4527
|
+
}
|
|
4528
|
+
@media (width < 768px) {
|
|
4529
|
+
.pv-v2 .pv-hide-on-small {
|
|
4530
|
+
display: none;
|
|
4531
|
+
}
|
|
4532
|
+
}
|
|
4533
|
+
@media (width >= 768px) {
|
|
4534
|
+
.pv-v2 .pv-hide-on-large {
|
|
4535
|
+
display: none;
|
|
4536
|
+
}
|
|
4537
|
+
}
|
|
4538
|
+
.pv-v2 .pv-scroll {
|
|
4539
|
+
overflow-x: auto;
|
|
4540
|
+
}
|
|
4541
|
+
.pv-v2 .pv-sticky,
|
|
4542
|
+
.pv-v2 [data-sticky] {
|
|
4543
|
+
--top: 0;
|
|
4544
|
+
--bottom: unset;
|
|
4545
|
+
position: sticky;
|
|
4546
|
+
top: var(--top);
|
|
4547
|
+
bottom: var(--bottom);
|
|
4548
|
+
z-index: 10;
|
|
4549
|
+
}
|
|
4550
|
+
.pv-v2 [class*=pv-table][data-sticky] {
|
|
4551
|
+
--top: 0;
|
|
4552
|
+
}
|
|
4553
|
+
.pv-v2 [class*=pv-table][data-sticky] th {
|
|
4554
|
+
position: sticky;
|
|
4555
|
+
top: var(--top);
|
|
4556
|
+
z-index: 10;
|
|
4557
|
+
}
|
|
4558
|
+
.pv-v2 .pv-nowrap {
|
|
4559
|
+
white-space: nowrap;
|
|
4560
|
+
}
|
|
4561
|
+
.pv-v2 .pv-full-width {
|
|
4562
|
+
width: 100%;
|
|
4563
|
+
}
|
|
4564
|
+
.pv-v2 .pv-blur {
|
|
4565
|
+
--blur: 5px;
|
|
4566
|
+
filter: blur(var(--blur));
|
|
4567
|
+
}
|
|
4568
|
+
@keyframes pv-shimmer {
|
|
4569
|
+
0% {
|
|
4570
|
+
background-position: -200% 0;
|
|
4571
|
+
}
|
|
4572
|
+
100% {
|
|
4573
|
+
background-position: 200% 0;
|
|
4574
|
+
}
|
|
4575
|
+
}
|
|
4576
|
+
.pv-v2 .pv-shimmer {
|
|
4577
|
+
position: relative;
|
|
4578
|
+
--shimmer-rgb: 255, 255, 255;
|
|
4579
|
+
}
|
|
4580
|
+
.pv-v2 .pv-shimmer:after {
|
|
4581
|
+
position: absolute;
|
|
4582
|
+
inset: 0;
|
|
4583
|
+
content: "";
|
|
4584
|
+
background: linear-gradient(90deg, rgba(var(--shimmer-rgb), 0.1) 0%, rgba(var(--shimmer-rgb), 0.7) 50%, rgba(var(--shimmer-rgb), 0.1) 100%);
|
|
4585
|
+
background-size: 200% 100%;
|
|
4586
|
+
animation: pv-shimmer 1.5s infinite linear;
|
|
4587
|
+
}
|
|
4588
|
+
.pv-v2 .pv-visually-hidden {
|
|
4589
|
+
width: 0;
|
|
4590
|
+
height: 0;
|
|
4591
|
+
padding: 0;
|
|
4592
|
+
margin: -1px;
|
|
4593
|
+
overflow: hidden;
|
|
4594
|
+
clip: rect(0, 0, 0, 0);
|
|
4595
|
+
white-space: nowrap;
|
|
4596
|
+
border: 0;
|
|
4597
|
+
position: absolute;
|
|
4598
|
+
}
|
|
4599
|
+
.pv-v2 .pv-max-content {
|
|
4600
|
+
width: max-content;
|
|
4601
|
+
}
|
|
4602
|
+
.pv-v2 .pv-shadow {
|
|
4603
|
+
box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.1);
|
|
4604
|
+
}
|
|
4605
|
+
.pv-v2 .pv-outline-warning {
|
|
4606
|
+
outline: 1px solid #E78200;
|
|
4607
|
+
}
|
|
4608
|
+
.pv-v2 .pv-inline-block {
|
|
4609
|
+
display: inline-block;
|
|
4610
|
+
}
|
|
4611
|
+
.pv-v2 .pv-width-responsive {
|
|
4612
|
+
--min-width-small: auto;
|
|
4613
|
+
--min-width-large: auto;
|
|
4614
|
+
min-width: var(--min-width-small);
|
|
4615
|
+
}
|
|
4616
|
+
@media screen and (width >= 768px) {
|
|
4617
|
+
.pv-v2 .pv-width-responsive {
|
|
4618
|
+
min-width: var(--min-width-large, var(--min-width-small));
|
|
4619
|
+
}
|
|
4620
|
+
}
|
|
4621
|
+
.pv-v2 .pv-valign-top {
|
|
4622
|
+
vertical-align: top;
|
|
4623
|
+
}
|
|
4624
|
+
.pv-v2 .select2-container {
|
|
4625
|
+
position: relative;
|
|
4626
|
+
display: block;
|
|
4627
|
+
}
|
|
4628
|
+
.pv-v2 .select2-selection--single,
|
|
4629
|
+
.pv-v2 .select2-selection--multiple {
|
|
4630
|
+
cursor: pointer;
|
|
4631
|
+
display: block;
|
|
4632
|
+
user-select: none;
|
|
4633
|
+
-webkit-user-select: none;
|
|
4634
|
+
}
|
|
4635
|
+
.pv-v2 .select2-selection--single {
|
|
4636
|
+
background-color: #fff;
|
|
4637
|
+
border: 2px solid #E3E7EA;
|
|
4638
|
+
border-radius: 2px;
|
|
4639
|
+
padding-inline-end: 2rem;
|
|
4640
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2302363D' d='m7.1 9.9 4.3 5.1c.1.1.2.1.3.2.1 0 .2.1.3.1s.2 0 .3-.1c.1 0 .2-.1.3-.2L17 9.9c.4-.5.1-1.2-.6-1.2H7.6c-.6 0-1 .8-.5 1.2z'/%3E%3C/svg%3E");
|
|
4641
|
+
background-repeat: no-repeat;
|
|
4642
|
+
background-size: 1rem 1rem;
|
|
4643
|
+
background-position: top 50% right 0.5rem;
|
|
4644
|
+
}
|
|
4645
|
+
.pv-v2 .select2-selection--single[aria-expanded=true] {
|
|
4646
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2302363D' d='M7.6 15.3h8.8c.7 0 1-.7.6-1.2L12.6 9c-.1-.1-.2-.2-.3-.2-.1-.1-.2-.1-.3-.1s-.2.1-.3.1c-.1.1-.2.1-.3.2l-4.3 5.1c-.5.4-.1 1.2.5 1.2z'/%3E%3C/svg%3E");
|
|
4647
|
+
}
|
|
4648
|
+
.pv-v2 .select2-selection--single .select2-selection__rendered {
|
|
4649
|
+
display: block;
|
|
4650
|
+
padding: 0.5rem;
|
|
4651
|
+
overflow: hidden;
|
|
4652
|
+
text-overflow: ellipsis;
|
|
4653
|
+
white-space: nowrap;
|
|
4654
|
+
color: #4B595C;
|
|
4655
|
+
line-height: 24px;
|
|
4656
|
+
}
|
|
4657
|
+
.pv-v2 .select2-selection--single .select2-selection__clear {
|
|
4658
|
+
position: relative;
|
|
4659
|
+
cursor: pointer;
|
|
4660
|
+
float: right;
|
|
4661
|
+
font-weight: bold;
|
|
4662
|
+
}
|
|
4663
|
+
.pv-v2 .select2-selection--single .select2-selection__placeholder {
|
|
4664
|
+
color: #999;
|
|
4665
|
+
}
|
|
4666
|
+
.pv-v2 .select2-selection--single .select2-selection__arrow {
|
|
4667
|
+
display: none;
|
|
4668
|
+
}
|
|
4669
|
+
.pv-v2 .select2-selection--multiple {
|
|
4670
|
+
background-color: white;
|
|
4671
|
+
border: 2px solid #E3E7EA;
|
|
4672
|
+
border-radius: 2px;
|
|
4673
|
+
cursor: text;
|
|
4674
|
+
}
|
|
4675
|
+
.pv-v2 .select2-selection--multiple .select2-selection__rendered {
|
|
4676
|
+
display: flex;
|
|
4677
|
+
align-items: center;
|
|
4678
|
+
gap: 4px;
|
|
4679
|
+
padding: 0.25rem 0.5rem;
|
|
4680
|
+
flex-wrap: wrap;
|
|
4681
|
+
}
|
|
4682
|
+
.pv-v2 .select2-search--inline {
|
|
4683
|
+
flex: 1;
|
|
4684
|
+
max-height: 26px;
|
|
4685
|
+
}
|
|
4686
|
+
.pv-v2 .select2-search--inline .select2-search__field {
|
|
4687
|
+
width: 100% !important;
|
|
4688
|
+
line-height: 24px;
|
|
4689
|
+
border: none;
|
|
4690
|
+
padding-block: 0.5rem;
|
|
4691
|
+
max-height: 26px;
|
|
4692
|
+
}
|
|
4693
|
+
.pv-v2 .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
|
|
4694
|
+
-webkit-appearance: none;
|
|
4695
|
+
}
|
|
4696
|
+
.pv-v2 .select2-dropdown {
|
|
4697
|
+
background-color: white;
|
|
4698
|
+
border-radius: 4px;
|
|
4699
|
+
padding-block: 0.5rem;
|
|
4700
|
+
display: block;
|
|
4701
|
+
position: absolute;
|
|
4702
|
+
left: -100000px;
|
|
4703
|
+
width: 100%;
|
|
4704
|
+
z-index: 1051;
|
|
4705
|
+
box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3), 0px 8px 12px -4px rgba(0, 0, 0, 0.08), 0px 12px 16px rgba(0, 0, 0, 0.1);
|
|
4706
|
+
}
|
|
4707
|
+
.pv-v2 .select2-search--dropdown {
|
|
4708
|
+
display: block;
|
|
4709
|
+
}
|
|
4710
|
+
.pv-v2 .select2-search--dropdown .select2-search__field {
|
|
4711
|
+
padding: 0.5rem 2rem 0.5rem 0.5rem;
|
|
4712
|
+
line-height: 24px;
|
|
4713
|
+
border-radius: 2px;
|
|
4714
|
+
border: 2px solid #E3E7EA;
|
|
4715
|
+
width: 100%;
|
|
4716
|
+
position: absolute;
|
|
4717
|
+
top: -44px;
|
|
4718
|
+
background-color: transparent;
|
|
4719
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2302363D' d='M7.6 15.3h8.8c.7 0 1-.7.6-1.2L12.6 9c-.1-.1-.2-.2-.3-.2-.1-.1-.2-.1-.3-.1s-.2.1-.3.1c-.1.1-.2.1-.3.2l-4.3 5.1c-.5.4-.1 1.2.5 1.2z'/%3E%3C/svg%3E");
|
|
4720
|
+
background-repeat: no-repeat;
|
|
4721
|
+
background-size: 1rem 1rem;
|
|
4722
|
+
background-position: top 50% right 0.5rem;
|
|
4723
|
+
}
|
|
4724
|
+
.pv-v2 .select2-dropdown--above .select2-search__field {
|
|
4725
|
+
background-color: #fff;
|
|
4726
|
+
}
|
|
4727
|
+
.pv-v2 .select2-container--open .select2-selection__placeholder,
|
|
4728
|
+
.pv-v2 .select2-container--open .select2-selection--single .select2-selection__rendered {
|
|
4729
|
+
opacity: 0;
|
|
4730
|
+
}
|
|
4731
|
+
.pv-v2 .select2-search__field:focus,
|
|
4732
|
+
.pv-v2 .select2-container--focus .select2-selection,
|
|
4733
|
+
.pv-v2 .select2-container--focus .select2-selection--multiple,
|
|
4734
|
+
.pv-v2 .select2-container--focus .select2-selection__rendered {
|
|
4735
|
+
border-color: #36C5BA;
|
|
4736
|
+
outline: 0;
|
|
4737
|
+
}
|
|
4738
|
+
.pv-v2 .select2-container--default .select2-search--inline .select2-search__field {
|
|
4739
|
+
background: transparent;
|
|
4740
|
+
border: none;
|
|
4741
|
+
outline: 0;
|
|
4742
|
+
box-shadow: none;
|
|
4743
|
+
-webkit-appearance: textfield;
|
|
4744
|
+
appearance: textfield;
|
|
4745
|
+
}
|
|
4746
|
+
.pv-v2 .select2-results {
|
|
4747
|
+
display: block;
|
|
4748
|
+
}
|
|
4749
|
+
.pv-v2 .select2-results__options {
|
|
4750
|
+
list-style: none;
|
|
4751
|
+
margin: 0;
|
|
4752
|
+
padding: 0;
|
|
4753
|
+
}
|
|
4754
|
+
.pv-v2 .select2-results__option {
|
|
4755
|
+
padding: 6px;
|
|
4756
|
+
user-select: none;
|
|
4757
|
+
-webkit-user-select: none;
|
|
4758
|
+
}
|
|
4759
|
+
.pv-v2 .select2-results__option[aria-selected] {
|
|
4760
|
+
cursor: pointer;
|
|
4761
|
+
}
|
|
4762
|
+
.pv-v2 .select2-container--open .select2-dropdown {
|
|
4763
|
+
left: 0;
|
|
4764
|
+
}
|
|
4765
|
+
.pv-v2 .select2-container--open .select2-dropdown--above {
|
|
4766
|
+
border-bottom: none;
|
|
4767
|
+
border-bottom-left-radius: 0;
|
|
4768
|
+
border-bottom-right-radius: 0;
|
|
4769
|
+
}
|
|
4770
|
+
.pv-v2 .select2-container--open .select2-dropdown--below {
|
|
4771
|
+
border-top: none;
|
|
4772
|
+
border-top-left-radius: 0;
|
|
4773
|
+
border-top-right-radius: 0;
|
|
4774
|
+
}
|
|
4775
|
+
.pv-v2 .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
|
|
4776
|
+
-webkit-appearance: none;
|
|
4777
|
+
}
|
|
4778
|
+
.pv-v2 .select2-search--dropdown.select2-search--hide {
|
|
4779
|
+
display: none;
|
|
4780
|
+
}
|
|
4781
|
+
.pv-v2 .select2-close-mask {
|
|
4782
|
+
border: 0;
|
|
4783
|
+
margin: 0;
|
|
4784
|
+
padding: 0;
|
|
4785
|
+
display: block;
|
|
4786
|
+
position: fixed;
|
|
4787
|
+
left: 0;
|
|
4788
|
+
top: 0;
|
|
4789
|
+
min-height: 100%;
|
|
4790
|
+
min-width: 100%;
|
|
4791
|
+
height: auto;
|
|
4792
|
+
width: auto;
|
|
4793
|
+
opacity: 0;
|
|
4794
|
+
z-index: 99;
|
|
4795
|
+
background-color: #fff;
|
|
4796
|
+
filter: alpha(opacity=0);
|
|
4797
|
+
}
|
|
4798
|
+
.pv-v2 .select2-hidden-accessible {
|
|
4799
|
+
border: 0 !important;
|
|
4800
|
+
clip: rect(0 0 0 0) !important;
|
|
4801
|
+
height: 1px !important;
|
|
4802
|
+
margin: -1px !important;
|
|
4803
|
+
overflow: hidden !important;
|
|
4804
|
+
padding: 0 !important;
|
|
4805
|
+
position: absolute !important;
|
|
4806
|
+
width: 1px !important;
|
|
4807
|
+
}
|
|
4808
|
+
.pv-v2 .select2-container--default.select2-container--disabled .select2-selection--single {
|
|
4809
|
+
background-color: #eee;
|
|
4810
|
+
cursor: default;
|
|
4811
|
+
}
|
|
4812
|
+
.pv-v2 .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
|
|
4813
|
+
display: none;
|
|
4814
|
+
}
|
|
4815
|
+
.pv-v2 .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
|
|
4816
|
+
list-style: none;
|
|
4817
|
+
}
|
|
4818
|
+
.pv-v2 .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
|
|
4819
|
+
color: #999;
|
|
4820
|
+
margin-top: 5px;
|
|
4821
|
+
float: left;
|
|
4822
|
+
}
|
|
4823
|
+
.pv-v2 .select2-container--default .select2-selection--multiple .select2-selection__clear {
|
|
4824
|
+
cursor: pointer;
|
|
4825
|
+
float: right;
|
|
4826
|
+
font-weight: bold;
|
|
4827
|
+
margin-top: 5px;
|
|
4828
|
+
margin-right: 10px;
|
|
4829
|
+
}
|
|
4830
|
+
.pv-v2 .select2-container--default .select2-selection--multiple .select2-selection__choice {
|
|
4831
|
+
background-color: #F7F8F8;
|
|
4832
|
+
border: 1px solid #E3E7EA;
|
|
4833
|
+
border-radius: 2px;
|
|
4834
|
+
padding: 0.125rem 0.5rem;
|
|
4835
|
+
font-size: 0.6875rem;
|
|
4836
|
+
line-height: 1.45454545;
|
|
4837
|
+
cursor: default;
|
|
4838
|
+
}
|
|
4839
|
+
.pv-v2 .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
|
4840
|
+
color: #999;
|
|
4841
|
+
cursor: pointer;
|
|
4842
|
+
display: inline-block;
|
|
4843
|
+
font-weight: bold;
|
|
4844
|
+
margin-right: 2px;
|
|
4845
|
+
}
|
|
4846
|
+
.pv-v2 .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
|
|
4847
|
+
color: #333;
|
|
4848
|
+
}
|
|
4849
|
+
.pv-v2 .select2-container--default.select2-container--disabled .select2-selection--multiple {
|
|
4850
|
+
background-color: #eee;
|
|
4851
|
+
cursor: default;
|
|
4852
|
+
}
|
|
4853
|
+
.pv-v2 .select2-container--default.select2-container--disabled .select2-selection__choice__remove {
|
|
4854
|
+
display: none;
|
|
4855
|
+
}
|
|
4856
|
+
.pv-v2 .select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .pv-v2 .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
|
|
4857
|
+
border-top-left-radius: 0;
|
|
4858
|
+
border-top-right-radius: 0;
|
|
4859
|
+
}
|
|
4860
|
+
.pv-v2 .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .pv-v2 .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
|
|
4861
|
+
border-bottom-left-radius: 0;
|
|
4862
|
+
border-bottom-right-radius: 0;
|
|
4863
|
+
}
|
|
4864
|
+
.pv-v2 .select2-container--default .select2-results > .select2-results__options {
|
|
4865
|
+
max-height: 200px;
|
|
4866
|
+
overflow-y: auto;
|
|
4867
|
+
}
|
|
4868
|
+
.pv-v2 .select2-container--default .select2-results__option[role=group] {
|
|
4869
|
+
padding: 0;
|
|
4870
|
+
}
|
|
4871
|
+
.pv-v2 .select2-container--default .select2-results__option[aria-disabled=true] {
|
|
4872
|
+
color: #999;
|
|
4873
|
+
}
|
|
4874
|
+
.pv-v2 .select2-results__option {
|
|
4875
|
+
padding: 0.5rem 1rem;
|
|
4876
|
+
}
|
|
4877
|
+
.pv-v2 .select2-results__option[aria-selected=true],
|
|
4878
|
+
.pv-v2 .select2-results__option--highlighted {
|
|
4879
|
+
background-color: #F7F8F8;
|
|
4880
|
+
}
|
|
4881
|
+
.pv-v2 .select2-container--default .select2-results__group {
|
|
4882
|
+
cursor: default;
|
|
4883
|
+
display: block;
|
|
4884
|
+
padding: 6px;
|
|
4885
|
+
}
|
|
4886
|
+
.pv-v2 :root {
|
|
4887
|
+
--p-datepicker-today-background: #F7F8F8;
|
|
4888
|
+
--p-datepicker-date-border-radius: 4px;
|
|
4889
|
+
--p-datepicker-date-padding: 1px;
|
|
4890
|
+
--p-datepicker-date-selected-background: #16696D;
|
|
4891
|
+
--p-datepicker-date-hover-background: #E8F2F4;
|
|
4892
|
+
--p-datepicker-date-color: #4B595C;
|
|
4893
|
+
--p-button-text-secondary-hover-background: #E8F2F4;
|
|
4894
|
+
--p-button-text-secondary-color: #4B595C;
|
|
4895
|
+
--p-button-text-secondary-active-background: #C7D8DB;
|
|
4896
|
+
--p-inputtext-color: #4B595C;
|
|
4897
|
+
--p-inputtext-border-color: #E3E7EA;
|
|
4898
|
+
--p-inputtext-hover-border-color: #D2D8DC;
|
|
4899
|
+
--p-inputtext-disabled-background: #ECECEC;
|
|
4900
|
+
--p-inputtext-disabled-color: #7D898D;
|
|
4901
|
+
--p-inputtext-focus-border-color: #36C5BA;
|
|
4902
|
+
--p-inputtext-focus-ring-offset: 2px;
|
|
4903
|
+
--p-inputtext-focus-ring-color: #36C5BA;
|
|
4904
|
+
--p-inputtext-focus-ring-width: 2px;
|
|
4905
|
+
--p-inputtext-focus-ring-style: solid;
|
|
4906
|
+
}
|
|
4907
|
+
.pv-v2 .p-datepicker-input {
|
|
4908
|
+
font-size: var(--datepicker-text-size, 0.6875rem);
|
|
4909
|
+
line-height: var(--datepicker-line-height, 1.45454545);
|
|
4910
|
+
letter-spacing: 0.12px;
|
|
4911
|
+
padding: calc(0.5rem - 1px) 0.5rem;
|
|
4912
|
+
}
|
|
4913
|
+
.pv-v2 .p-datepicker-year, .pv-v2 .p-datepicker-month {
|
|
4914
|
+
font-size: 0.75rem;
|
|
4915
|
+
}
|
|
4916
|
+
.pv-v2 .p-datepicker:has(.p-datepicker-input-icon-container) .p-datepicker-input {
|
|
4917
|
+
padding-inline: 2rem 0.5rem;
|
|
4918
|
+
}
|
|
4919
|
+
.pv-v2 .p-datepicker-input-icon-container {
|
|
4920
|
+
left: 0px;
|
|
4921
|
+
top: 0px;
|
|
4922
|
+
padding: 0.5rem 0.5rem 0.5rem calc(0.5rem + 1px);
|
|
4923
|
+
width: 2rem;
|
|
4924
|
+
color: #4B595C;
|
|
4925
|
+
}
|
|
4926
|
+
.pv-v2 .p-datepicker-calendar-container .p-datepicker-header .p-button {
|
|
4927
|
+
width: 1.5rem;
|
|
4928
|
+
height: 1.5rem;
|
|
4929
|
+
padding: 0.25rem;
|
|
4930
|
+
border-radius: 4px;
|
|
4931
|
+
}
|
|
4932
|
+
.pv-v2 .p-datepicker-calendar-container .p-datepicker-select-month, .pv-v2 .p-datepicker-calendar-container .p-datepicker-select-year, .pv-v2 .p-datepicker-calendar-container .p-datepicker-weekday, .pv-v2 .p-datepicker-calendar-container .p-datepicker-day, .pv-v2 .p-datepicker-calendar-container .p-datepicker-decade {
|
|
4933
|
+
font-size: 0.75rem;
|
|
4934
|
+
}
|
|
4935
|
+
.pv-v2 .p-datepicker-calendar-container .p-datepicker-day-selected:hover, .pv-v2 .p-datepicker-calendar-container .p-datepicker-day-selected:focus-visible {
|
|
4936
|
+
background-color: #0D5256;
|
|
4937
|
+
}
|
|
4938
|
+
.pv-v2 .p-datepicker-calendar-container .p-datepicker-day-selected:active {
|
|
4939
|
+
background-color: #02363D;
|
|
4940
|
+
}
|
|
4941
|
+
.pv-v2 .p-datepicker-calendar-container .p-datepicker-day:not(.p-datepicker-day-selected):not(.p-disabled):active {
|
|
4942
|
+
background-color: #C7D8DB;
|
|
4943
|
+
}
|
|
4944
|
+
.pv-v2 .p-datepicker-calendar-container .p-icon {
|
|
4945
|
+
height: 0.75rem;
|
|
4946
|
+
}
|