@ptcwebops/ptcw-design 2.6.7 → 2.6.9

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.
Files changed (63) hide show
  1. package/dist/cjs/embedded-form.cjs.entry.js +93 -0
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/ptc-embedded-quiz.cjs.entry.js +1 -1
  4. package/dist/cjs/ptc-form-checkbox_3.cjs.entry.js +10664 -0
  5. package/dist/cjs/ptc-form.cjs.entry.js +89 -0
  6. package/dist/cjs/ptc-nav-link.cjs.entry.js +7 -3
  7. package/dist/cjs/ptc-subnav.cjs.entry.js +6 -2
  8. package/dist/cjs/ptc-text-copy-with-background.cjs.entry.js +1 -1
  9. package/dist/cjs/ptcw-design.cjs.js +1 -1
  10. package/dist/collection/collection-manifest.json +5 -0
  11. package/dist/collection/components/organism-bundles/form/embedded-form/embedded-form.css +29 -0
  12. package/dist/collection/components/organism-bundles/form/embedded-form/embedded-form.js +98 -0
  13. package/dist/collection/components/organism-bundles/form/ptc-form/ptc-form.css +14 -0
  14. package/dist/collection/components/organism-bundles/form/ptc-form/ptc-form.js +94 -0
  15. package/dist/collection/components/ptc-embedded-quiz/ptc-embedded-quiz.css +2 -2
  16. package/dist/collection/components/ptc-form-checkbox/ptc-form-checkbox.css +1083 -0
  17. package/dist/collection/components/ptc-form-checkbox/ptc-form-checkbox.js +209 -0
  18. package/dist/collection/components/ptc-select/ptc-select.css +6099 -0
  19. package/dist/collection/components/ptc-select/ptc-select.js +190 -0
  20. package/dist/collection/components/ptc-text-copy-with-background/ptc-text-copy-with-background.css +5 -2
  21. package/dist/collection/components/ptc-textfield/ptc-textfield.css +3590 -0
  22. package/dist/collection/components/ptc-textfield/ptc-textfield.js +351 -0
  23. package/dist/collection/components/subnav/ptc-nav-link/ptc-nav-link.js +24 -3
  24. package/dist/collection/components/subnav/ptc-subnav/ptc-subnav.css +0 -1
  25. package/dist/collection/components/subnav/ptc-subnav/ptc-subnav.js +11 -1
  26. package/dist/collection/stories/FormCheckbox.stories.js +58 -0
  27. package/dist/collection/stories/MaxWidthContainer.stories.js +33 -19
  28. package/dist/collection/stories/Select.stories.js +81 -0
  29. package/dist/collection/stories/Textfield.stories.js +82 -0
  30. package/dist/custom-elements/index.d.ts +31 -1
  31. package/dist/custom-elements/index.js +14323 -3477
  32. package/dist/esm/embedded-form.entry.js +89 -0
  33. package/dist/esm/loader.js +1 -1
  34. package/dist/esm/ptc-embedded-quiz.entry.js +1 -1
  35. package/dist/esm/ptc-form-checkbox_3.entry.js +10658 -0
  36. package/dist/esm/ptc-form.entry.js +85 -0
  37. package/dist/esm/ptc-nav-link.entry.js +8 -4
  38. package/dist/esm/ptc-subnav.entry.js +6 -2
  39. package/dist/esm/ptc-text-copy-with-background.entry.js +1 -1
  40. package/dist/esm/ptcw-design.js +1 -1
  41. package/dist/ptcw-design/p-018470e2.entry.js +1 -0
  42. package/dist/ptcw-design/p-0b1d5c21.entry.js +1 -0
  43. package/dist/ptcw-design/p-11582f1e.entry.js +359 -0
  44. package/dist/ptcw-design/p-2fb1e3d3.entry.js +1 -0
  45. package/dist/ptcw-design/{p-65e630ea.entry.js → p-67f50038.entry.js} +1 -1
  46. package/dist/ptcw-design/p-84090398.entry.js +1 -0
  47. package/dist/ptcw-design/p-f245f1bd.entry.js +1 -0
  48. package/dist/ptcw-design/ptcw-design.esm.js +1 -1
  49. package/dist/types/components/organism-bundles/form/embedded-form/embedded-form.d.ts +29 -0
  50. package/dist/types/components/organism-bundles/form/ptc-form/ptc-form.d.ts +25 -0
  51. package/dist/types/components/ptc-form-checkbox/ptc-form-checkbox.d.ts +20 -0
  52. package/dist/types/components/ptc-select/ptc-select.d.ts +18 -0
  53. package/dist/types/components/ptc-textfield/ptc-textfield.d.ts +27 -0
  54. package/dist/types/components/subnav/ptc-nav-link/ptc-nav-link.d.ts +6 -1
  55. package/dist/types/components/subnav/ptc-subnav/ptc-subnav.d.ts +1 -0
  56. package/dist/types/components.d.ts +136 -0
  57. package/dist/types/utils/interfaces.d.ts +6 -0
  58. package/package.json +7 -1
  59. package/readme.md +1 -1
  60. package/dist/ptcw-design/p-2bb95382.entry.js +0 -1
  61. package/dist/ptcw-design/p-5229a430.entry.js +0 -1
  62. package/dist/ptcw-design/p-c249785a.entry.js +0 -1
  63. package/dist/types/global.d.ts +0 -1072
@@ -0,0 +1,1083 @@
1
+ /**
2
+ * @license
3
+ * Copyright Google LLC All Rights Reserved.
4
+ *
5
+ * Use of this source code is governed by an MIT-style license that can be
6
+ * found in the LICENSE file at https://github.com/material-components/material-components-web/blob/master/LICENSE
7
+ */
8
+ .mdc-checkbox {
9
+ padding: calc((40px - 18px) / 2);
10
+ /* @alternate */
11
+ padding: calc((var(--mdc-checkbox-ripple-size, 40px) - 18px) / 2);
12
+ margin: calc((40px - 40px) / 2);
13
+ /* @alternate */
14
+ margin: calc((var(--mdc-checkbox-touch-target-size, 40px) - 40px) / 2);
15
+ }
16
+ .mdc-checkbox .mdc-checkbox__ripple::before, .mdc-checkbox .mdc-checkbox__ripple::after {
17
+ background-color: #000;
18
+ /* @alternate */
19
+ background-color: var(--mdc-ripple-color, #000);
20
+ }
21
+ .mdc-checkbox:hover .mdc-checkbox__ripple::before, .mdc-checkbox.mdc-ripple-surface--hover .mdc-checkbox__ripple::before {
22
+ opacity: 0.04;
23
+ /* @alternate */
24
+ opacity: var(--mdc-ripple-hover-opacity, 0.04);
25
+ }
26
+ .mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__ripple::before, .mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__ripple::before {
27
+ transition-duration: 75ms;
28
+ opacity: 0.12;
29
+ /* @alternate */
30
+ opacity: var(--mdc-ripple-focus-opacity, 0.12);
31
+ }
32
+ .mdc-checkbox:not(.mdc-ripple-upgraded) .mdc-checkbox__ripple::after {
33
+ transition: opacity 150ms linear;
34
+ }
35
+ .mdc-checkbox:not(.mdc-ripple-upgraded):active .mdc-checkbox__ripple::after {
36
+ transition-duration: 75ms;
37
+ opacity: 0.12;
38
+ /* @alternate */
39
+ opacity: var(--mdc-ripple-press-opacity, 0.12);
40
+ }
41
+ .mdc-checkbox.mdc-ripple-upgraded {
42
+ --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12);
43
+ }
44
+ .mdc-checkbox.mdc-checkbox--selected .mdc-checkbox__ripple::before, .mdc-checkbox.mdc-checkbox--selected .mdc-checkbox__ripple::after {
45
+ background-color: #018786;
46
+ /* @alternate */
47
+ background-color: var(--mdc-ripple-color, var(--mdc-theme-secondary, #018786));
48
+ }
49
+ .mdc-checkbox.mdc-checkbox--selected:hover .mdc-checkbox__ripple::before, .mdc-checkbox.mdc-checkbox--selected.mdc-ripple-surface--hover .mdc-checkbox__ripple::before {
50
+ opacity: 0.04;
51
+ /* @alternate */
52
+ opacity: var(--mdc-ripple-hover-opacity, 0.04);
53
+ }
54
+ .mdc-checkbox.mdc-checkbox--selected.mdc-ripple-upgraded--background-focused .mdc-checkbox__ripple::before, .mdc-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded):focus .mdc-checkbox__ripple::before {
55
+ transition-duration: 75ms;
56
+ opacity: 0.12;
57
+ /* @alternate */
58
+ opacity: var(--mdc-ripple-focus-opacity, 0.12);
59
+ }
60
+ .mdc-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded) .mdc-checkbox__ripple::after {
61
+ transition: opacity 150ms linear;
62
+ }
63
+ .mdc-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded):active .mdc-checkbox__ripple::after {
64
+ transition-duration: 75ms;
65
+ opacity: 0.12;
66
+ /* @alternate */
67
+ opacity: var(--mdc-ripple-press-opacity, 0.12);
68
+ }
69
+ .mdc-checkbox.mdc-checkbox--selected.mdc-ripple-upgraded {
70
+ --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12);
71
+ }
72
+ .mdc-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected .mdc-checkbox__ripple::before,
73
+ .mdc-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected .mdc-checkbox__ripple::after {
74
+ background-color: #018786;
75
+ /* @alternate */
76
+ background-color: var(--mdc-ripple-color, var(--mdc-theme-secondary, #018786));
77
+ }
78
+ .mdc-checkbox .mdc-checkbox__background {
79
+ top: calc((40px - 18px) / 2);
80
+ /* @alternate */
81
+ top: calc((var(--mdc-checkbox-ripple-size, 40px) - 18px) / 2);
82
+ left: calc((40px - 18px) / 2);
83
+ /* @alternate */
84
+ left: calc((var(--mdc-checkbox-ripple-size, 40px) - 18px) / 2);
85
+ }
86
+ .mdc-checkbox .mdc-checkbox__native-control {
87
+ top: calc((40px - 40px) / 2);
88
+ /* @alternate */
89
+ top: calc((40px - var(--mdc-checkbox-touch-target-size, 40px)) / 2);
90
+ right: calc((40px - 40px) / 2);
91
+ /* @alternate */
92
+ right: calc((40px - var(--mdc-checkbox-touch-target-size, 40px)) / 2);
93
+ left: calc((40px - 40px) / 2);
94
+ /* @alternate */
95
+ left: calc((40px - var(--mdc-checkbox-touch-target-size, 40px)) / 2);
96
+ width: 40px;
97
+ /* @alternate */
98
+ width: var(--mdc-checkbox-touch-target-size, 40px);
99
+ height: 40px;
100
+ /* @alternate */
101
+ height: var(--mdc-checkbox-touch-target-size, 40px);
102
+ }
103
+ .mdc-checkbox .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true]) ~ .mdc-checkbox__background {
104
+ border-color: rgba(0, 0, 0, 0.54);
105
+ /* @alternate */
106
+ border-color: var(--mdc-checkbox-unchecked-color, rgba(0, 0, 0, 0.54));
107
+ background-color: transparent;
108
+ }
109
+ .mdc-checkbox .mdc-checkbox__native-control:enabled:checked ~ .mdc-checkbox__background,
110
+ .mdc-checkbox .mdc-checkbox__native-control:enabled:indeterminate ~ .mdc-checkbox__background,
111
+ .mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true]:enabled ~ .mdc-checkbox__background {
112
+ border-color: #018786;
113
+ /* @alternate */
114
+ border-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #018786));
115
+ background-color: #018786;
116
+ /* @alternate */
117
+ background-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #018786));
118
+ }
119
+ @-webkit-keyframes mdc-checkbox-fade-in-background-8A000000FF01878600000000FF018786 {
120
+ 0% {
121
+ border-color: rgba(0, 0, 0, 0.54);
122
+ /* @alternate */
123
+ border-color: var(--mdc-checkbox-unchecked-color, rgba(0, 0, 0, 0.54));
124
+ background-color: transparent;
125
+ }
126
+ 50% {
127
+ border-color: #018786;
128
+ /* @alternate */
129
+ border-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #018786));
130
+ background-color: #018786;
131
+ /* @alternate */
132
+ background-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #018786));
133
+ }
134
+ }
135
+ @keyframes mdc-checkbox-fade-in-background-8A000000FF01878600000000FF018786 {
136
+ 0% {
137
+ border-color: rgba(0, 0, 0, 0.54);
138
+ /* @alternate */
139
+ border-color: var(--mdc-checkbox-unchecked-color, rgba(0, 0, 0, 0.54));
140
+ background-color: transparent;
141
+ }
142
+ 50% {
143
+ border-color: #018786;
144
+ /* @alternate */
145
+ border-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #018786));
146
+ background-color: #018786;
147
+ /* @alternate */
148
+ background-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #018786));
149
+ }
150
+ }
151
+ @-webkit-keyframes mdc-checkbox-fade-out-background-8A000000FF01878600000000FF018786 {
152
+ 0%, 80% {
153
+ border-color: #018786;
154
+ /* @alternate */
155
+ border-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #018786));
156
+ background-color: #018786;
157
+ /* @alternate */
158
+ background-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #018786));
159
+ }
160
+ 100% {
161
+ border-color: rgba(0, 0, 0, 0.54);
162
+ /* @alternate */
163
+ border-color: var(--mdc-checkbox-unchecked-color, rgba(0, 0, 0, 0.54));
164
+ background-color: transparent;
165
+ }
166
+ }
167
+ @keyframes mdc-checkbox-fade-out-background-8A000000FF01878600000000FF018786 {
168
+ 0%, 80% {
169
+ border-color: #018786;
170
+ /* @alternate */
171
+ border-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #018786));
172
+ background-color: #018786;
173
+ /* @alternate */
174
+ background-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #018786));
175
+ }
176
+ 100% {
177
+ border-color: rgba(0, 0, 0, 0.54);
178
+ /* @alternate */
179
+ border-color: var(--mdc-checkbox-unchecked-color, rgba(0, 0, 0, 0.54));
180
+ background-color: transparent;
181
+ }
182
+ }
183
+ .mdc-checkbox.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-checkbox.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
184
+ -webkit-animation-name: mdc-checkbox-fade-in-background-8A000000FF01878600000000FF018786;
185
+ animation-name: mdc-checkbox-fade-in-background-8A000000FF01878600000000FF018786;
186
+ }
187
+ .mdc-checkbox.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-checkbox.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
188
+ -webkit-animation-name: mdc-checkbox-fade-out-background-8A000000FF01878600000000FF018786;
189
+ animation-name: mdc-checkbox-fade-out-background-8A000000FF01878600000000FF018786;
190
+ }
191
+ .mdc-checkbox .mdc-checkbox__native-control[disabled]:not(:checked):not(:indeterminate):not([data-indeterminate=true]) ~ .mdc-checkbox__background {
192
+ border-color: rgba(0, 0, 0, 0.38);
193
+ /* @alternate */
194
+ border-color: var(--mdc-checkbox-disabled-color, rgba(0, 0, 0, 0.38));
195
+ background-color: transparent;
196
+ }
197
+ .mdc-checkbox .mdc-checkbox__native-control[disabled]:checked ~ .mdc-checkbox__background,
198
+ .mdc-checkbox .mdc-checkbox__native-control[disabled]:indeterminate ~ .mdc-checkbox__background,
199
+ .mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true][disabled] ~ .mdc-checkbox__background {
200
+ border-color: transparent;
201
+ background-color: rgba(0, 0, 0, 0.38);
202
+ /* @alternate */
203
+ background-color: var(--mdc-checkbox-disabled-color, rgba(0, 0, 0, 0.38));
204
+ }
205
+ .mdc-checkbox .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
206
+ color: #fff;
207
+ /* @alternate */
208
+ color: var(--mdc-checkbox-ink-color, #fff);
209
+ }
210
+ .mdc-checkbox .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
211
+ border-color: #fff;
212
+ /* @alternate */
213
+ border-color: var(--mdc-checkbox-ink-color, #fff);
214
+ }
215
+ .mdc-checkbox .mdc-checkbox__native-control:disabled ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
216
+ color: #fff;
217
+ /* @alternate */
218
+ color: var(--mdc-checkbox-ink-color, #fff);
219
+ }
220
+ .mdc-checkbox .mdc-checkbox__native-control:disabled ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
221
+ border-color: #fff;
222
+ /* @alternate */
223
+ border-color: var(--mdc-checkbox-ink-color, #fff);
224
+ }
225
+
226
+ .mdc-touch-target-wrapper {
227
+ display: inline;
228
+ }
229
+
230
+ @-webkit-keyframes mdc-checkbox-unchecked-checked-checkmark-path {
231
+ 0%, 50% {
232
+ stroke-dashoffset: 29.7833385;
233
+ }
234
+ 50% {
235
+ -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
236
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
237
+ }
238
+ 100% {
239
+ stroke-dashoffset: 0;
240
+ }
241
+ }
242
+
243
+ @keyframes mdc-checkbox-unchecked-checked-checkmark-path {
244
+ 0%, 50% {
245
+ stroke-dashoffset: 29.7833385;
246
+ }
247
+ 50% {
248
+ -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
249
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
250
+ }
251
+ 100% {
252
+ stroke-dashoffset: 0;
253
+ }
254
+ }
255
+ @-webkit-keyframes mdc-checkbox-unchecked-indeterminate-mixedmark {
256
+ 0%, 68.2% {
257
+ -webkit-transform: scaleX(0);
258
+ transform: scaleX(0);
259
+ }
260
+ 68.2% {
261
+ -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
262
+ animation-timing-function: cubic-bezier(0, 0, 0, 1);
263
+ }
264
+ 100% {
265
+ -webkit-transform: scaleX(1);
266
+ transform: scaleX(1);
267
+ }
268
+ }
269
+ @keyframes mdc-checkbox-unchecked-indeterminate-mixedmark {
270
+ 0%, 68.2% {
271
+ -webkit-transform: scaleX(0);
272
+ transform: scaleX(0);
273
+ }
274
+ 68.2% {
275
+ -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
276
+ animation-timing-function: cubic-bezier(0, 0, 0, 1);
277
+ }
278
+ 100% {
279
+ -webkit-transform: scaleX(1);
280
+ transform: scaleX(1);
281
+ }
282
+ }
283
+ @-webkit-keyframes mdc-checkbox-checked-unchecked-checkmark-path {
284
+ from {
285
+ -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
286
+ animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
287
+ opacity: 1;
288
+ stroke-dashoffset: 0;
289
+ }
290
+ to {
291
+ opacity: 0;
292
+ stroke-dashoffset: -29.7833385;
293
+ }
294
+ }
295
+ @keyframes mdc-checkbox-checked-unchecked-checkmark-path {
296
+ from {
297
+ -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
298
+ animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
299
+ opacity: 1;
300
+ stroke-dashoffset: 0;
301
+ }
302
+ to {
303
+ opacity: 0;
304
+ stroke-dashoffset: -29.7833385;
305
+ }
306
+ }
307
+ @-webkit-keyframes mdc-checkbox-checked-indeterminate-checkmark {
308
+ from {
309
+ -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
310
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
311
+ -webkit-transform: rotate(0deg);
312
+ transform: rotate(0deg);
313
+ opacity: 1;
314
+ }
315
+ to {
316
+ -webkit-transform: rotate(45deg);
317
+ transform: rotate(45deg);
318
+ opacity: 0;
319
+ }
320
+ }
321
+ @keyframes mdc-checkbox-checked-indeterminate-checkmark {
322
+ from {
323
+ -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
324
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
325
+ -webkit-transform: rotate(0deg);
326
+ transform: rotate(0deg);
327
+ opacity: 1;
328
+ }
329
+ to {
330
+ -webkit-transform: rotate(45deg);
331
+ transform: rotate(45deg);
332
+ opacity: 0;
333
+ }
334
+ }
335
+ @-webkit-keyframes mdc-checkbox-indeterminate-checked-checkmark {
336
+ from {
337
+ -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
338
+ animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
339
+ -webkit-transform: rotate(45deg);
340
+ transform: rotate(45deg);
341
+ opacity: 0;
342
+ }
343
+ to {
344
+ -webkit-transform: rotate(360deg);
345
+ transform: rotate(360deg);
346
+ opacity: 1;
347
+ }
348
+ }
349
+ @keyframes mdc-checkbox-indeterminate-checked-checkmark {
350
+ from {
351
+ -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
352
+ animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
353
+ -webkit-transform: rotate(45deg);
354
+ transform: rotate(45deg);
355
+ opacity: 0;
356
+ }
357
+ to {
358
+ -webkit-transform: rotate(360deg);
359
+ transform: rotate(360deg);
360
+ opacity: 1;
361
+ }
362
+ }
363
+ @-webkit-keyframes mdc-checkbox-checked-indeterminate-mixedmark {
364
+ from {
365
+ -webkit-animation-timing-function: mdc-animation-deceleration-curve-timing-function;
366
+ animation-timing-function: mdc-animation-deceleration-curve-timing-function;
367
+ -webkit-transform: rotate(-45deg);
368
+ transform: rotate(-45deg);
369
+ opacity: 0;
370
+ }
371
+ to {
372
+ -webkit-transform: rotate(0deg);
373
+ transform: rotate(0deg);
374
+ opacity: 1;
375
+ }
376
+ }
377
+ @keyframes mdc-checkbox-checked-indeterminate-mixedmark {
378
+ from {
379
+ -webkit-animation-timing-function: mdc-animation-deceleration-curve-timing-function;
380
+ animation-timing-function: mdc-animation-deceleration-curve-timing-function;
381
+ -webkit-transform: rotate(-45deg);
382
+ transform: rotate(-45deg);
383
+ opacity: 0;
384
+ }
385
+ to {
386
+ -webkit-transform: rotate(0deg);
387
+ transform: rotate(0deg);
388
+ opacity: 1;
389
+ }
390
+ }
391
+ @-webkit-keyframes mdc-checkbox-indeterminate-checked-mixedmark {
392
+ from {
393
+ -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
394
+ animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
395
+ -webkit-transform: rotate(0deg);
396
+ transform: rotate(0deg);
397
+ opacity: 1;
398
+ }
399
+ to {
400
+ -webkit-transform: rotate(315deg);
401
+ transform: rotate(315deg);
402
+ opacity: 0;
403
+ }
404
+ }
405
+ @keyframes mdc-checkbox-indeterminate-checked-mixedmark {
406
+ from {
407
+ -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
408
+ animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
409
+ -webkit-transform: rotate(0deg);
410
+ transform: rotate(0deg);
411
+ opacity: 1;
412
+ }
413
+ to {
414
+ -webkit-transform: rotate(315deg);
415
+ transform: rotate(315deg);
416
+ opacity: 0;
417
+ }
418
+ }
419
+ @-webkit-keyframes mdc-checkbox-indeterminate-unchecked-mixedmark {
420
+ 0% {
421
+ -webkit-animation-timing-function: linear;
422
+ animation-timing-function: linear;
423
+ -webkit-transform: scaleX(1);
424
+ transform: scaleX(1);
425
+ opacity: 1;
426
+ }
427
+ 32.8%, 100% {
428
+ -webkit-transform: scaleX(0);
429
+ transform: scaleX(0);
430
+ opacity: 0;
431
+ }
432
+ }
433
+ @keyframes mdc-checkbox-indeterminate-unchecked-mixedmark {
434
+ 0% {
435
+ -webkit-animation-timing-function: linear;
436
+ animation-timing-function: linear;
437
+ -webkit-transform: scaleX(1);
438
+ transform: scaleX(1);
439
+ opacity: 1;
440
+ }
441
+ 32.8%, 100% {
442
+ -webkit-transform: scaleX(0);
443
+ transform: scaleX(0);
444
+ opacity: 0;
445
+ }
446
+ }
447
+ .mdc-checkbox {
448
+ display: inline-block;
449
+ position: relative;
450
+ flex: 0 0 18px;
451
+ box-sizing: content-box;
452
+ width: 18px;
453
+ height: 18px;
454
+ line-height: 0;
455
+ white-space: nowrap;
456
+ cursor: pointer;
457
+ vertical-align: bottom;
458
+ }
459
+ .mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring, .mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring {
460
+ pointer-events: none;
461
+ border: 2px solid transparent;
462
+ border-radius: 6px;
463
+ box-sizing: content-box;
464
+ position: absolute;
465
+ top: 50%;
466
+ /* @noflip */
467
+ /*rtl:ignore*/
468
+ left: 50%;
469
+ /* @noflip */
470
+ /*rtl:ignore*/
471
+ -webkit-transform: translate(-50%, -50%);
472
+ transform: translate(-50%, -50%);
473
+ height: 100%;
474
+ width: 100%;
475
+ }
476
+ @media screen and (forced-colors: active) {
477
+ .mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring, .mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring {
478
+ border-color: CanvasText;
479
+ }
480
+ }
481
+ .mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after, .mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after {
482
+ content: "";
483
+ border: 2px solid transparent;
484
+ border-radius: 8px;
485
+ display: block;
486
+ position: absolute;
487
+ top: 50%;
488
+ /* @noflip */
489
+ /*rtl:ignore*/
490
+ left: 50%;
491
+ /* @noflip */
492
+ /*rtl:ignore*/
493
+ -webkit-transform: translate(-50%, -50%);
494
+ transform: translate(-50%, -50%);
495
+ height: calc(100% + 4px);
496
+ width: calc(100% + 4px);
497
+ }
498
+ @media screen and (forced-colors: active) {
499
+ .mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after, .mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after {
500
+ border-color: CanvasText;
501
+ }
502
+ }
503
+ @media all and (-ms-high-contrast: none) {
504
+ .mdc-checkbox .mdc-checkbox__focus-ring {
505
+ display: none;
506
+ }
507
+ }
508
+
509
+ @media screen and (forced-colors: active), (-ms-high-contrast: active) {
510
+ .mdc-checkbox__mixedmark {
511
+ margin: 0 1px;
512
+ }
513
+ }
514
+ .mdc-checkbox--disabled {
515
+ cursor: default;
516
+ pointer-events: none;
517
+ }
518
+
519
+ .mdc-checkbox__background {
520
+ display: inline-flex;
521
+ position: absolute;
522
+ align-items: center;
523
+ justify-content: center;
524
+ box-sizing: border-box;
525
+ width: 18px;
526
+ height: 18px;
527
+ border: 2px solid currentColor;
528
+ border-radius: 2px;
529
+ background-color: transparent;
530
+ pointer-events: none;
531
+ will-change: background-color, border-color;
532
+ transition: background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
533
+ }
534
+
535
+ .mdc-checkbox__checkmark {
536
+ position: absolute;
537
+ top: 0;
538
+ right: 0;
539
+ bottom: 0;
540
+ left: 0;
541
+ width: 100%;
542
+ opacity: 0;
543
+ transition: opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
544
+ }
545
+ .mdc-checkbox--upgraded .mdc-checkbox__checkmark {
546
+ opacity: 1;
547
+ }
548
+
549
+ .mdc-checkbox__checkmark-path {
550
+ transition: stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
551
+ stroke: currentColor;
552
+ stroke-width: 3.12px;
553
+ stroke-dashoffset: 29.7833385;
554
+ stroke-dasharray: 29.7833385;
555
+ }
556
+
557
+ .mdc-checkbox__mixedmark {
558
+ width: 100%;
559
+ height: 0;
560
+ -webkit-transform: scaleX(0) rotate(0deg);
561
+ transform: scaleX(0) rotate(0deg);
562
+ border-width: 1px;
563
+ border-style: solid;
564
+ opacity: 0;
565
+ transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
566
+ transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
567
+ transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
568
+ }
569
+
570
+ .mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background, .mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background, .mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background, .mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background {
571
+ -webkit-animation-duration: 180ms;
572
+ animation-duration: 180ms;
573
+ -webkit-animation-timing-function: linear;
574
+ animation-timing-function: linear;
575
+ }
576
+ .mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path {
577
+ -webkit-animation: mdc-checkbox-unchecked-checked-checkmark-path 180ms linear 0s;
578
+ animation: mdc-checkbox-unchecked-checked-checkmark-path 180ms linear 0s;
579
+ transition: none;
580
+ }
581
+ .mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark {
582
+ -webkit-animation: mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;
583
+ animation: mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;
584
+ transition: none;
585
+ }
586
+ .mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path {
587
+ -webkit-animation: mdc-checkbox-checked-unchecked-checkmark-path 90ms linear 0s;
588
+ animation: mdc-checkbox-checked-unchecked-checkmark-path 90ms linear 0s;
589
+ transition: none;
590
+ }
591
+ .mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark {
592
+ -webkit-animation: mdc-checkbox-checked-indeterminate-checkmark 90ms linear 0s;
593
+ animation: mdc-checkbox-checked-indeterminate-checkmark 90ms linear 0s;
594
+ transition: none;
595
+ }
596
+ .mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark {
597
+ -webkit-animation: mdc-checkbox-checked-indeterminate-mixedmark 90ms linear 0s;
598
+ animation: mdc-checkbox-checked-indeterminate-mixedmark 90ms linear 0s;
599
+ transition: none;
600
+ }
601
+ .mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark {
602
+ -webkit-animation: mdc-checkbox-indeterminate-checked-checkmark 500ms linear 0s;
603
+ animation: mdc-checkbox-indeterminate-checked-checkmark 500ms linear 0s;
604
+ transition: none;
605
+ }
606
+ .mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark {
607
+ -webkit-animation: mdc-checkbox-indeterminate-checked-mixedmark 500ms linear 0s;
608
+ animation: mdc-checkbox-indeterminate-checked-mixedmark 500ms linear 0s;
609
+ transition: none;
610
+ }
611
+ .mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark {
612
+ -webkit-animation: mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear 0s;
613
+ animation: mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear 0s;
614
+ transition: none;
615
+ }
616
+
617
+ .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background,
618
+ .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background,
619
+ .mdc-checkbox__native-control[data-indeterminate=true] ~ .mdc-checkbox__background {
620
+ transition: border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1);
621
+ }
622
+ .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path,
623
+ .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path,
624
+ .mdc-checkbox__native-control[data-indeterminate=true] ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path {
625
+ stroke-dashoffset: 0;
626
+ }
627
+
628
+ .mdc-checkbox__native-control {
629
+ position: absolute;
630
+ margin: 0;
631
+ padding: 0;
632
+ opacity: 0;
633
+ cursor: inherit;
634
+ }
635
+ .mdc-checkbox__native-control:disabled {
636
+ cursor: default;
637
+ pointer-events: none;
638
+ }
639
+
640
+ .mdc-checkbox--touch {
641
+ margin: calc((48px - 40px) / 2);
642
+ /* @alternate */
643
+ margin: calc((var(--mdc-checkbox-state-layer-size, 48px) - var(--mdc-checkbox-state-layer-size, 40px)) / 2);
644
+ }
645
+ .mdc-checkbox--touch .mdc-checkbox__native-control {
646
+ top: calc((40px - 48px) / 2);
647
+ /* @alternate */
648
+ top: calc((var(--mdc-checkbox-state-layer-size, 40px) - var(--mdc-checkbox-state-layer-size, 48px)) / 2);
649
+ right: calc((40px - 48px) / 2);
650
+ /* @alternate */
651
+ right: calc((var(--mdc-checkbox-state-layer-size, 40px) - var(--mdc-checkbox-state-layer-size, 48px)) / 2);
652
+ left: calc((40px - 48px) / 2);
653
+ /* @alternate */
654
+ left: calc((var(--mdc-checkbox-state-layer-size, 40px) - var(--mdc-checkbox-state-layer-size, 48px)) / 2);
655
+ width: 48px;
656
+ /* @alternate */
657
+ width: var(--mdc-checkbox-state-layer-size, 48px);
658
+ height: 48px;
659
+ /* @alternate */
660
+ height: var(--mdc-checkbox-state-layer-size, 48px);
661
+ }
662
+
663
+ .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
664
+ transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
665
+ transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
666
+ transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
667
+ opacity: 1;
668
+ }
669
+ .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
670
+ -webkit-transform: scaleX(1) rotate(-45deg);
671
+ transform: scaleX(1) rotate(-45deg);
672
+ }
673
+
674
+ .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__checkmark,
675
+ .mdc-checkbox__native-control[data-indeterminate=true] ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
676
+ -webkit-transform: rotate(45deg);
677
+ transform: rotate(45deg);
678
+ opacity: 0;
679
+ transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
680
+ transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
681
+ transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
682
+ }
683
+ .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__mixedmark,
684
+ .mdc-checkbox__native-control[data-indeterminate=true] ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
685
+ -webkit-transform: scaleX(1) rotate(0deg);
686
+ transform: scaleX(1) rotate(0deg);
687
+ opacity: 1;
688
+ }
689
+
690
+ .mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__background,
691
+ .mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark,
692
+ .mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark-path,
693
+ .mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__mixedmark {
694
+ transition: none;
695
+ }
696
+
697
+ @-webkit-keyframes mdc-ripple-fg-radius-in {
698
+ from {
699
+ -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
700
+ animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
701
+ -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
702
+ transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
703
+ }
704
+ to {
705
+ -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
706
+ transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
707
+ }
708
+ }
709
+
710
+ @keyframes mdc-ripple-fg-radius-in {
711
+ from {
712
+ -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
713
+ animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
714
+ -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
715
+ transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
716
+ }
717
+ to {
718
+ -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
719
+ transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
720
+ }
721
+ }
722
+ @-webkit-keyframes mdc-ripple-fg-opacity-in {
723
+ from {
724
+ -webkit-animation-timing-function: linear;
725
+ animation-timing-function: linear;
726
+ opacity: 0;
727
+ }
728
+ to {
729
+ opacity: var(--mdc-ripple-fg-opacity, 0);
730
+ }
731
+ }
732
+ @keyframes mdc-ripple-fg-opacity-in {
733
+ from {
734
+ -webkit-animation-timing-function: linear;
735
+ animation-timing-function: linear;
736
+ opacity: 0;
737
+ }
738
+ to {
739
+ opacity: var(--mdc-ripple-fg-opacity, 0);
740
+ }
741
+ }
742
+ @-webkit-keyframes mdc-ripple-fg-opacity-out {
743
+ from {
744
+ -webkit-animation-timing-function: linear;
745
+ animation-timing-function: linear;
746
+ opacity: var(--mdc-ripple-fg-opacity, 0);
747
+ }
748
+ to {
749
+ opacity: 0;
750
+ }
751
+ }
752
+ @keyframes mdc-ripple-fg-opacity-out {
753
+ from {
754
+ -webkit-animation-timing-function: linear;
755
+ animation-timing-function: linear;
756
+ opacity: var(--mdc-ripple-fg-opacity, 0);
757
+ }
758
+ to {
759
+ opacity: 0;
760
+ }
761
+ }
762
+ .mdc-checkbox {
763
+ --mdc-ripple-fg-size: 0;
764
+ --mdc-ripple-left: 0;
765
+ --mdc-ripple-top: 0;
766
+ --mdc-ripple-fg-scale: 1;
767
+ --mdc-ripple-fg-translate-end: 0;
768
+ --mdc-ripple-fg-translate-start: 0;
769
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
770
+ will-change: transform, opacity;
771
+ }
772
+ .mdc-checkbox .mdc-checkbox__ripple::before,
773
+ .mdc-checkbox .mdc-checkbox__ripple::after {
774
+ position: absolute;
775
+ border-radius: 50%;
776
+ opacity: 0;
777
+ pointer-events: none;
778
+ content: "";
779
+ }
780
+ .mdc-checkbox .mdc-checkbox__ripple::before {
781
+ transition: opacity 15ms linear, background-color 15ms linear;
782
+ z-index: 1;
783
+ /* @alternate */
784
+ z-index: var(--mdc-ripple-z-index, 1);
785
+ }
786
+ .mdc-checkbox .mdc-checkbox__ripple::after {
787
+ z-index: 0;
788
+ /* @alternate */
789
+ z-index: var(--mdc-ripple-z-index, 0);
790
+ }
791
+ .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::before {
792
+ -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
793
+ transform: scale(var(--mdc-ripple-fg-scale, 1));
794
+ }
795
+ .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::after {
796
+ top: 0;
797
+ /* @noflip */
798
+ /*rtl:ignore*/
799
+ left: 0;
800
+ -webkit-transform: scale(0);
801
+ transform: scale(0);
802
+ -webkit-transform-origin: center center;
803
+ transform-origin: center center;
804
+ }
805
+ .mdc-checkbox.mdc-ripple-upgraded--unbounded .mdc-checkbox__ripple::after {
806
+ top: var(--mdc-ripple-top, 0);
807
+ /* @noflip */
808
+ /*rtl:ignore*/
809
+ left: var(--mdc-ripple-left, 0);
810
+ }
811
+ .mdc-checkbox.mdc-ripple-upgraded--foreground-activation .mdc-checkbox__ripple::after {
812
+ -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
813
+ animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
814
+ }
815
+ .mdc-checkbox.mdc-ripple-upgraded--foreground-deactivation .mdc-checkbox__ripple::after {
816
+ -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
817
+ animation: mdc-ripple-fg-opacity-out 150ms;
818
+ -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
819
+ transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
820
+ }
821
+ .mdc-checkbox .mdc-checkbox__ripple::before,
822
+ .mdc-checkbox .mdc-checkbox__ripple::after {
823
+ top: calc(50% - 50%);
824
+ /* @noflip */
825
+ /*rtl:ignore*/
826
+ left: calc(50% - 50%);
827
+ width: 100%;
828
+ height: 100%;
829
+ }
830
+ .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::before,
831
+ .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::after {
832
+ top: var(--mdc-ripple-top, calc(50% - 50%));
833
+ /* @noflip */
834
+ /*rtl:ignore*/
835
+ left: var(--mdc-ripple-left, calc(50% - 50%));
836
+ width: var(--mdc-ripple-fg-size, 100%);
837
+ height: var(--mdc-ripple-fg-size, 100%);
838
+ }
839
+ .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::after {
840
+ width: var(--mdc-ripple-fg-size, 100%);
841
+ height: var(--mdc-ripple-fg-size, 100%);
842
+ }
843
+ .mdc-checkbox {
844
+ z-index: 0;
845
+ }
846
+ .mdc-checkbox .mdc-checkbox__ripple::before,
847
+ .mdc-checkbox .mdc-checkbox__ripple::after {
848
+ z-index: -1;
849
+ /* @alternate */
850
+ z-index: var(--mdc-ripple-z-index, -1);
851
+ }
852
+
853
+ .mdc-checkbox__ripple {
854
+ position: absolute;
855
+ top: 0;
856
+ left: 0;
857
+ width: 100%;
858
+ height: 100%;
859
+ pointer-events: none;
860
+ }
861
+
862
+ @media screen and (forced-colors: active), (-ms-high-contrast: active) {
863
+ .mdc-checkbox .mdc-checkbox__native-control[disabled]:not(:checked):not(:indeterminate):not([data-indeterminate=true]) ~ .mdc-checkbox__background {
864
+ border-color: GrayText;
865
+ /* @alternate */
866
+ border-color: var(--mdc-checkbox-disabled-unselected-icon-color, GrayText);
867
+ background-color: transparent;
868
+ }
869
+ .mdc-checkbox .mdc-checkbox__native-control[disabled]:checked ~ .mdc-checkbox__background,
870
+ .mdc-checkbox .mdc-checkbox__native-control[disabled]:indeterminate ~ .mdc-checkbox__background,
871
+ .mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true][disabled] ~ .mdc-checkbox__background {
872
+ border-color: GrayText;
873
+ background-color: GrayText;
874
+ /* @alternate */
875
+ background-color: var(--mdc-checkbox-disabled-selected-icon-color, GrayText);
876
+ }
877
+ .mdc-checkbox .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
878
+ color: ButtonText;
879
+ /* @alternate */
880
+ color: var(--mdc-checkbox-selected-checkmark-color, ButtonText);
881
+ }
882
+ .mdc-checkbox .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
883
+ border-color: ButtonText;
884
+ /* @alternate */
885
+ border-color: var(--mdc-checkbox-selected-checkmark-color, ButtonText);
886
+ }
887
+ .mdc-checkbox .mdc-checkbox__native-control:disabled ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
888
+ color: ButtonFace;
889
+ /* @alternate */
890
+ color: var(--mdc-checkbox-disabled-selected-checkmark-color, ButtonFace);
891
+ }
892
+ .mdc-checkbox .mdc-checkbox__native-control:disabled ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
893
+ border-color: ButtonFace;
894
+ /* @alternate */
895
+ border-color: var(--mdc-checkbox-disabled-selected-checkmark-color, ButtonFace);
896
+ }
897
+ }
898
+
899
+ /*# sourceMappingURL=mdc.checkbox.css.map*/
900
+ /**
901
+ * @license
902
+ * Copyright Google LLC All Rights Reserved.
903
+ *
904
+ * Use of this source code is governed by an MIT-style license that can be
905
+ * found in the LICENSE file at https://github.com/material-components/material-components-web/blob/master/LICENSE
906
+ */
907
+ .mdc-form-field {
908
+ -moz-osx-font-smoothing: grayscale;
909
+ -webkit-font-smoothing: antialiased;
910
+ font-family: Roboto, sans-serif;
911
+ /* @alternate */
912
+ font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
913
+ font-size: 0.875rem;
914
+ /* @alternate */
915
+ font-size: var(--mdc-typography-body2-font-size, 0.875rem);
916
+ line-height: 1.25rem;
917
+ /* @alternate */
918
+ line-height: var(--mdc-typography-body2-line-height, 1.25rem);
919
+ font-weight: 400;
920
+ /* @alternate */
921
+ font-weight: var(--mdc-typography-body2-font-weight, 400);
922
+ letter-spacing: 0.0178571429em;
923
+ /* @alternate */
924
+ letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
925
+ text-decoration: inherit;
926
+ /* @alternate */
927
+ -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
928
+ text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
929
+ text-transform: inherit;
930
+ /* @alternate */
931
+ text-transform: var(--mdc-typography-body2-text-transform, inherit);
932
+ color: rgba(0, 0, 0, 0.87);
933
+ /* @alternate */
934
+ color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
935
+ display: inline-flex;
936
+ align-items: center;
937
+ vertical-align: middle;
938
+ }
939
+ .mdc-form-field > label {
940
+ /* @noflip */
941
+ /*rtl:ignore*/
942
+ margin-left: 0;
943
+ /* @noflip */
944
+ /*rtl:ignore*/
945
+ margin-right: auto;
946
+ /* @noflip */
947
+ /*rtl:ignore*/
948
+ padding-left: 4px;
949
+ /* @noflip */
950
+ /*rtl:ignore*/
951
+ padding-right: 0;
952
+ order: 0;
953
+ }
954
+ [dir=rtl] .mdc-form-field > label, .mdc-form-field > label[dir=rtl] {
955
+ /*rtl:begin:ignore*/
956
+ /* @noflip */
957
+ /*rtl:ignore*/
958
+ margin-left: auto;
959
+ /* @noflip */
960
+ /*rtl:ignore*/
961
+ margin-right: 0;
962
+ /*rtl:end:ignore*/
963
+ }
964
+
965
+ [dir=rtl] .mdc-form-field > label, .mdc-form-field > label[dir=rtl] {
966
+ /*rtl:begin:ignore*/
967
+ /* @noflip */
968
+ /*rtl:ignore*/
969
+ padding-left: 0;
970
+ /* @noflip */
971
+ /*rtl:ignore*/
972
+ padding-right: 4px;
973
+ /*rtl:end:ignore*/
974
+ }
975
+
976
+ .mdc-form-field--nowrap > label {
977
+ text-overflow: ellipsis;
978
+ overflow: hidden;
979
+ white-space: nowrap;
980
+ }
981
+
982
+ .mdc-form-field--align-end > label {
983
+ /* @noflip */
984
+ /*rtl:ignore*/
985
+ margin-left: auto;
986
+ /* @noflip */
987
+ /*rtl:ignore*/
988
+ margin-right: 0;
989
+ /* @noflip */
990
+ /*rtl:ignore*/
991
+ padding-left: 0;
992
+ /* @noflip */
993
+ /*rtl:ignore*/
994
+ padding-right: 4px;
995
+ order: -1;
996
+ }
997
+ [dir=rtl] .mdc-form-field--align-end > label, .mdc-form-field--align-end > label[dir=rtl] {
998
+ /*rtl:begin:ignore*/
999
+ /* @noflip */
1000
+ /*rtl:ignore*/
1001
+ margin-left: 0;
1002
+ /* @noflip */
1003
+ /*rtl:ignore*/
1004
+ margin-right: auto;
1005
+ /*rtl:end:ignore*/
1006
+ }
1007
+
1008
+ [dir=rtl] .mdc-form-field--align-end > label, .mdc-form-field--align-end > label[dir=rtl] {
1009
+ /*rtl:begin:ignore*/
1010
+ /* @noflip */
1011
+ /*rtl:ignore*/
1012
+ padding-left: 4px;
1013
+ /* @noflip */
1014
+ /*rtl:ignore*/
1015
+ padding-right: 0;
1016
+ /*rtl:end:ignore*/
1017
+ }
1018
+
1019
+ .mdc-form-field--space-between {
1020
+ justify-content: space-between;
1021
+ }
1022
+ .mdc-form-field--space-between > label {
1023
+ margin: 0;
1024
+ }
1025
+ [dir=rtl] .mdc-form-field--space-between > label, .mdc-form-field--space-between > label[dir=rtl] {
1026
+ /*rtl:begin:ignore*/
1027
+ margin: 0;
1028
+ /*rtl:end:ignore*/
1029
+ }
1030
+
1031
+ /*# sourceMappingURL=mdc.form-field.css.map*/
1032
+ :host {
1033
+ display: block;
1034
+ }
1035
+
1036
+ .mdc-form-field {
1037
+ width: 273px;
1038
+ }
1039
+ .mdc-form-field > label {
1040
+ transform: translateX(-11px);
1041
+ }
1042
+ .mdc-form-field.invalid-checkbox {
1043
+ position: relative;
1044
+ }
1045
+ .mdc-form-field.invalid-checkbox::before {
1046
+ content: "";
1047
+ position: absolute;
1048
+ width: 282px;
1049
+ height: 95px;
1050
+ background: #FEF3F3;
1051
+ display: flex;
1052
+ flex-direction: column;
1053
+ justify-content: center;
1054
+ z-index: 0;
1055
+ left: 0;
1056
+ bottom: 0;
1057
+ transform: translate(-5px, 47%);
1058
+ }
1059
+
1060
+ .mdc-checkbox {
1061
+ transform: translateX(-11px);
1062
+ }
1063
+ .mdc-checkbox .mdc-checkbox__native-control:enabled:checked ~ .mdc-checkbox__background {
1064
+ background-color: var(--color-green-06);
1065
+ }
1066
+
1067
+ .checkbox-helper-wrapper {
1068
+ padding-right: 16px;
1069
+ padding-left: 16px;
1070
+ margin-bottom: 32px;
1071
+ }
1072
+ .checkbox-helper-wrapper p {
1073
+ position: relative;
1074
+ color: #AF3231;
1075
+ font-family: Raleway;
1076
+ font-size: 14px;
1077
+ font-style: normal;
1078
+ font-weight: 600;
1079
+ line-height: 10px;
1080
+ }
1081
+ .checkbox-helper-wrapper p svg {
1082
+ transform: translate(-16px, 3px);
1083
+ }