master-components-react-ts 1.0.14 → 1.1.1

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/dist/index.js CHANGED
@@ -4,321 +4,273 @@
4
4
  if (typeof document != "undefined") {
5
5
  var elementStyle = document.createElement("style");
6
6
  elementStyle.appendChild(document.createTextNode(`@font-face {
7
- font-family: "Inter-Regular";
8
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
7
+ font-family: "Inter";
8
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
9
+ font-weight: 400;
10
+ font-style: normal;
11
+ font-display: swap;
9
12
  }
10
13
  @font-face {
11
- font-family: "Inter-SemiBold";
12
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
14
+ font-family: "Inter";
15
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
16
+ font-weight: 500;
17
+ font-style: normal;
18
+ font-display: swap;
13
19
  }
14
20
  @font-face {
15
- font-family: "Inter-Medium";
16
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
21
+ font-family: "Inter";
22
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
23
+ font-weight: 600;
24
+ font-style: normal;
25
+ font-display: swap;
17
26
  }
18
- button.MainButton-module__mainButton {
27
+ .FormInput-module__inputWrapper {
19
28
  width: 100%;
20
29
  display: flex;
21
- padding: 8px;
22
- justify-content: center;
23
- align-items: center;
24
- border-radius: 6px;
25
- min-width: 100px;
26
- outline: none;
27
- border: none;
28
- cursor: pointer;
29
- user-select: none;
30
- -webkit-user-select: none;
31
- -moz-user-select: none;
32
- -ms-user-select: none;
33
- }
34
- button.MainButton-module__mainButton.MainButton-module__sm {
35
- height: 32px;
30
+ flex-direction: column;
31
+ gap: 10px;
36
32
  }
37
- button.MainButton-module__mainButton.MainButton-module__md {
33
+ .FormInput-module__inputWrapper.FormInput-module__sm .FormInput-module__formInputWrapper {
38
34
  height: 36px;
39
35
  }
40
- button.MainButton-module__mainButton.MainButton-module__lg {
36
+ .FormInput-module__inputWrapper.FormInput-module__md .FormInput-module__formInputWrapper {
41
37
  height: 40px;
42
38
  }
43
- button.MainButton-module__mainButton .MainButton-module__mainButtonContent {
39
+ .FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputLabel {
44
40
  width: 100%;
45
- display: flex;
46
- align-items: center;
47
- justify-content: center;
48
- gap: 8px;
41
+ overflow: hidden;
42
+ color: #95969c;
43
+ text-overflow: ellipsis;
44
+ font-family: "Inter-Medium";
45
+ font-size: 12px;
46
+ font-style: normal;
47
+ font-weight: 450;
48
+ line-height: 16px; /* 133.333% */
49
+ letter-spacing: 0.1px;
49
50
  }
50
- button.MainButton-module__mainButton .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
51
+ .FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInput {
52
+ width: 100%;
51
53
  overflow: hidden;
54
+ color: #7a7b80;
52
55
  text-overflow: ellipsis;
53
- font-family: "Inter", sans-serif;
56
+ font-family: "Inter-Regular";
54
57
  font-size: 14px;
55
58
  font-style: normal;
56
- font-weight: 450;
59
+ font-weight: 400;
57
60
  line-height: 24px; /* 171.429% */
58
61
  letter-spacing: 0.1px;
59
62
  }
60
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__neutral {
61
- background: #0058ff;
62
- }
63
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__neutral.MainButton-module__loading {
64
- cursor: no-drop;
63
+ .FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputHelperText {
64
+ width: 100%;
65
+ overflow: hidden;
66
+ color: #95969c;
67
+ text-overflow: ellipsis;
68
+ font-family: "Inter-Medium";
69
+ font-size: 12px;
70
+ font-style: normal;
71
+ font-weight: 450;
72
+ line-height: 16px; /* 133.333% */
73
+ letter-spacing: 0.1px;
65
74
  }
66
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__neutral:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
67
- background: #004fe5 !important;
75
+ .FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputWrapper {
76
+ border-radius: 6px;
77
+ border: 1px solid #e6e6e6;
78
+ background: #fafafa;
68
79
  }
69
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__neutral.MainButton-module__disabled {
70
- background: #95969c;
80
+ .FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputWrapper .FormInput-module__formInput {
81
+ width: 100%;
82
+ overflow: hidden;
83
+ color: #7a7b80;
84
+ text-overflow: ellipsis;
85
+ font-family: "Inter-Regular";
86
+ font-size: 14px;
87
+ font-style: normal;
88
+ font-weight: 400;
89
+ line-height: 24px; /* 171.429% */
90
+ letter-spacing: 0.1px;
71
91
  cursor: not-allowed;
72
92
  }
73
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__neutral.MainButton-module__focused {
74
- outline: 2px solid #dee9fc;
75
- outline-offset: 0px;
76
- background: #0058ff;
77
- }
78
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__neutral .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
79
- color: #fff;
80
- }
81
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__positive {
82
- background: #328707;
93
+ .FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputWrapper .FormInput-module__formInput::placeholder {
94
+ width: 100%;
95
+ overflow: hidden;
96
+ color: #7a7b80;
97
+ text-overflow: ellipsis;
98
+ font-family: "Inter-Regular";
99
+ font-size: 14px;
100
+ font-style: normal;
101
+ font-weight: 400;
102
+ line-height: 24px; /* 171.429% */
103
+ letter-spacing: 0.1px;
83
104
  }
84
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__positive.MainButton-module__loading {
85
- cursor: no-drop;
105
+ .FormInput-module__inputWrapper .FormInput-module__formInputLabelWrapper {
106
+ width: 100%;
107
+ display: flex;
108
+ align-items: center;
109
+ justify-content: space-between;
86
110
  }
87
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__positive:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
88
- background: #266905 !important;
111
+ .FormInput-module__inputWrapper .FormInput-module__formInputLabelWrapper .FormInput-module__formInputLabel {
112
+ width: 100%;
113
+ width: 100%;
114
+ overflow: hidden;
115
+ color: #131314;
116
+ font-family: "Inter-Medium";
117
+ font-size: 12px;
118
+ font-style: normal;
119
+ font-weight: 450;
120
+ line-height: 16px; /* 171.429% */
121
+ letter-spacing: 0.1px;
89
122
  }
90
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__positive.MainButton-module__disabled {
91
- background: #95969c;
92
- cursor: not-allowed;
123
+ .FormInput-module__inputWrapper .FormInput-module__formInputLabelWrapper .FormInput-module__formInputLabel .FormInput-module__formInputRequired {
124
+ overflow: hidden;
125
+ color: #e3292f;
126
+ text-overflow: ellipsis;
127
+ font-family: "Inter-Medium";
128
+ font-size: 12px;
129
+ font-style: normal;
130
+ font-weight: 450;
131
+ line-height: 16px; /* 133.333% */
132
+ letter-spacing: 0.1px;
93
133
  }
94
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__positive.MainButton-module__focused {
95
- outline: 2px solid #c3ebb0;
96
- outline-offset: 0px;
97
- background: #328707;
134
+ .FormInput-module__inputWrapper .FormInput-module__formInputLabelWrapper .FormInput-module__formInputHelperSlot {
135
+ display: flex;
136
+ align-items: center;
137
+ justify-content: center;
98
138
  }
99
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__positive .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
100
- color: #fff;
139
+ .FormInput-module__inputWrapper .FormInput-module__formInputWrapper {
140
+ width: 100%;
141
+ display: flex;
142
+ align-items: center;
143
+ gap: 8px;
144
+ padding: 8px;
145
+ border-radius: 6px;
146
+ border: 1px solid #e6e6e6;
147
+ background: #fff;
101
148
  }
102
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__negative {
103
- background: #e3292f;
149
+ .FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__errorState {
150
+ border-radius: 6px;
151
+ background: #fff;
152
+ outline: 1px solid #f63e45;
153
+ outline-offset: -1px;
154
+ box-shadow: none;
104
155
  }
105
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__negative.MainButton-module__loading {
106
- cursor: no-drop;
156
+ .FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__focused {
157
+ border-radius: 6px;
158
+ background: #fff;
159
+ outline: 2px solid #0058ff;
160
+ outline-offset: -2px;
161
+ box-shadow: none;
107
162
  }
108
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__negative:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
109
- background: #db1d23 !important;
163
+ .FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__active {
164
+ border-radius: 6px;
165
+ background: #fff;
166
+ outline: 1.5px solid #0058ff;
167
+ outline-offset: -1.5px;
168
+ box-shadow: 0 0 0 2px #dee9fc;
110
169
  }
111
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__negative.MainButton-module__disabled {
112
- background: #95969c;
113
- cursor: not-allowed;
170
+ .FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__errorFocused {
171
+ border-radius: 6px;
172
+ background: #fff;
173
+ outline: 2px solid #f63e45;
174
+ outline-offset: -2px;
175
+ box-shadow: none;
114
176
  }
115
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__negative.MainButton-module__focused {
116
- outline: 2px solid #fcdcdc;
117
- outline-offset: 0px;
118
- background: #e3292f;
177
+ .FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__errorActive {
178
+ border-radius: 6px;
179
+ background: #fff;
180
+ outline: 1.5px solid #f63e45;
181
+ outline-offset: -1.5px;
182
+ box-shadow: 0 0 0 2px #fcdcdd;
119
183
  }
120
- button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__negative .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
121
- color: #fff;
184
+ .FormInput-module__inputWrapper .FormInput-module__formInputWrapper input.FormInput-module__formInput {
185
+ width: 100%;
186
+ border: none;
187
+ outline: none;
188
+ background-color: transparent;
189
+ caret-color: #0058ff;
190
+ width: 100%;
191
+ overflow: hidden;
192
+ color: #131314;
193
+ text-overflow: ellipsis;
194
+ font-family: "Inter-Regular";
195
+ font-size: 14px;
196
+ font-style: normal;
197
+ font-weight: 400;
198
+ line-height: 24px; /* 171.429% */
199
+ letter-spacing: 0.1px;
122
200
  }
123
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__neutral {
124
- background: #ecf3ff;
201
+ .FormInput-module__inputWrapper .FormInput-module__formInputWrapper input.FormInput-module__formInput::placeholder {
202
+ width: 100%;
203
+ overflow: hidden;
204
+ color: #646569;
205
+ text-overflow: ellipsis;
206
+ font-family: "Inter-Regular";
207
+ font-size: 14px;
208
+ font-style: normal;
209
+ font-weight: 400;
210
+ line-height: 24px; /* 171.429% */
211
+ letter-spacing: 0.1px;
125
212
  }
126
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__neutral.MainButton-module__loading {
127
- cursor: no-drop;
213
+ .FormInput-module__inputWrapper .FormInput-module__formInputWrapper .FormInput-module__formInputSlot {
214
+ display: grid;
215
+ place-items: center;
128
216
  }
129
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__neutral:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
130
- background: #dee9fc !important;
217
+ .FormInput-module__inputWrapper .FormInput-module__formInputHelperText {
218
+ width: 100%;
219
+ overflow: hidden;
220
+ color: #131314;
221
+ text-overflow: ellipsis;
222
+ font-family: "Inter-Medium";
223
+ font-size: 12px;
224
+ font-style: normal;
225
+ font-weight: 450;
226
+ line-height: 16px; /* 133.333% */
227
+ letter-spacing: 0.1px;
131
228
  }
132
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__neutral.MainButton-module__disabled {
133
- background: #f2f2f2;
134
- cursor: not-allowed;
135
- }
136
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__neutral.MainButton-module__disabled .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
137
- color: #7a7b80;
138
- }
139
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__neutral.MainButton-module__focused {
140
- outline-offset: 0px;
141
- background: #ecf3ff;
142
- box-shadow: 0px 0px 0px 2px #0058ff;
143
- }
144
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__neutral .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
145
- color: #0058ff;
146
- }
147
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__positive {
148
- background: #effce8;
149
- }
150
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__positive.MainButton-module__loading {
151
- cursor: no-drop;
152
- }
153
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__positive:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
154
- background: #e0fad2 !important;
155
- }
156
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__positive.MainButton-module__disabled {
157
- background: #95969c;
158
- cursor: not-allowed;
159
- }
160
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__positive.MainButton-module__focused {
161
- outline: 2px solid #60bf30;
162
- outline-offset: 0px;
163
- background: #effce8;
229
+ .FormInput-module__inputWrapper .FormInput-module__formInputHelperText.FormInput-module__errorHelperText {
230
+ width: 100%;
231
+ overflow: hidden;
232
+ color: #e3292f;
233
+ text-overflow: ellipsis;
234
+ font-family: "Inter-Medium";
235
+ font-size: 12px;
236
+ font-style: normal;
237
+ font-weight: 450;
238
+ line-height: 16px; /* 133.333% */
239
+ letter-spacing: 0.1px;
240
+ color: #e3292f;
164
241
  }
165
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__positive .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
242
+ .FormInput-module__inputWrapper .FormInput-module__formInputHelperText.FormInput-module__successHelperText {
243
+ width: 100%;
244
+ overflow: hidden;
166
245
  color: #328707;
167
- }
168
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__negative {
169
- background: #fff2f2;
170
- }
171
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__negative.MainButton-module__loading {
172
- cursor: no-drop;
173
- }
174
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__negative:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
175
- background: #fcdcdc !important;
176
- }
177
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__negative.MainButton-module__disabled {
178
- background: #95969c;
179
- cursor: not-allowed;
180
- }
181
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__negative.MainButton-module__focused {
182
- outline: 2px solid #ff5757;
183
- outline-offset: 0px;
184
- background: #fff2f2;
185
- }
186
- button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__negative .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
187
- color: #db1d23;
188
- }
189
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__neutral {
190
- background: #f2f2f2;
191
- }
192
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__neutral.MainButton-module__loading {
193
- cursor: no-drop;
194
- }
195
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__neutral:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
196
- background: #e6e6e6 !important;
197
- }
198
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__neutral.MainButton-module__disabled {
199
- background: #f2f2f2;
200
- cursor: not-allowed;
201
- }
202
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__neutral.MainButton-module__disabled .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
203
- color: #7a7b80;
204
- }
205
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__neutral.MainButton-module__focused {
206
- outline: 2px solid #c1c2c7;
207
- outline-offset: 0px;
208
- background: #f2f2f2;
209
- }
210
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__neutral .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
211
- color: #131314;
212
- }
213
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__positive {
214
- background: #fff;
215
- }
216
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__positive.MainButton-module__loading {
217
- cursor: no-drop;
218
- }
219
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__positive:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
220
- background: #effce8 !important;
221
- }
222
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__positive.MainButton-module__disabled {
223
- background: #fff;
224
- cursor: not-allowed;
225
- }
226
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__positive.MainButton-module__disabled .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
227
- color: #7a7b80;
228
- }
229
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__positive.MainButton-module__focused {
230
- outline: 2px solid #91e766;
231
- outline-offset: 0px;
232
- background: #fff;
233
- }
234
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__positive .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
246
+ text-overflow: ellipsis;
247
+ font-family: "Inter-Medium";
248
+ font-size: 12px;
249
+ font-style: normal;
250
+ font-weight: 450;
251
+ line-height: 16px; /* 133.333% */
252
+ letter-spacing: 0.1px;
235
253
  color: #328707;
236
- }
237
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__negative {
238
- background: #fff;
239
- }
240
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__negative.MainButton-module__loading {
241
- cursor: no-drop;
242
- }
243
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__negative:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
244
- background: #fff2f2 !important;
245
- }
246
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__negative.MainButton-module__disabled {
247
- background: #fff;
248
- cursor: not-allowed;
249
- }
250
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__negative.MainButton-module__disabled .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
251
- color: #7a7b80;
252
- }
253
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__negative.MainButton-module__focused {
254
- outline: 2px solid #fcdcdc;
255
- outline-offset: 0px;
256
- background: #fff;
257
- }
258
- button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__negative .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
259
- color: #e3292f;
260
- }
261
- button.MainButton-module__mainButton.MainButton-module__tertiaryV2 {
262
- background: #fff;
263
- }
264
- button.MainButton-module__mainButton.MainButton-module__tertiaryV2.MainButton-module__loading {
265
- cursor: no-drop;
266
- }
267
- button.MainButton-module__mainButton.MainButton-module__tertiaryV2:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
268
- background: #ecf3ff !important;
269
- }
270
- button.MainButton-module__mainButton.MainButton-module__tertiaryV2.MainButton-module__disabled {
271
- background: #f2f2f2;
272
- cursor: not-allowed;
273
- }
274
- button.MainButton-module__mainButton.MainButton-module__tertiaryV2.MainButton-module__disabled .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
275
- color: #7a7b80;
276
- }
277
- button.MainButton-module__mainButton.MainButton-module__tertiaryV2.MainButton-module__focused {
278
- outline: 2px solid #dee9fc;
279
- outline-offset: 0px;
280
- background: #fff;
281
- }
282
- button.MainButton-module__mainButton.MainButton-module__tertiaryV2 .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
283
- color: #0058ff;
284
- }
285
- button.MainButton-module__mainButton.MainButton-module__tertiaryV3 {
286
- border: 1px solid #e6e6e6;
287
- background: #fff;
288
- }
289
- button.MainButton-module__mainButton.MainButton-module__tertiaryV3.MainButton-module__loading {
290
- cursor: no-drop;
291
- }
292
- button.MainButton-module__mainButton.MainButton-module__tertiaryV3:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
293
- border-color: #c1c2c7 !important;
294
- }
295
- button.MainButton-module__mainButton.MainButton-module__tertiaryV3.MainButton-module__disabled {
296
- background: #fff;
297
- border: 1px solid #e6e6e6;
298
- cursor: not-allowed;
299
- }
300
- button.MainButton-module__mainButton.MainButton-module__tertiaryV3.MainButton-module__disabled .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
301
- color: #7a7b80;
302
- }
303
- button.MainButton-module__mainButton.MainButton-module__tertiaryV3.MainButton-module__focused {
304
- border: 1px solid transparent;
305
- outline: 2px solid #dee9fc;
306
- outline-offset: 0px;
307
- background: #fff;
308
- }
309
- button.MainButton-module__mainButton.MainButton-module__tertiaryV3 .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
310
- color: #0058ff;
311
254
  }@font-face {
312
- font-family: "Inter-Regular";
313
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
255
+ font-family: "Inter";
256
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
257
+ font-weight: 400;
258
+ font-style: normal;
259
+ font-display: swap;
314
260
  }
315
261
  @font-face {
316
- font-family: "Inter-SemiBold";
317
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
262
+ font-family: "Inter";
263
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
264
+ font-weight: 500;
265
+ font-style: normal;
266
+ font-display: swap;
318
267
  }
319
268
  @font-face {
320
- font-family: "Inter-Medium";
321
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
269
+ font-family: "Inter";
270
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
271
+ font-weight: 600;
272
+ font-style: normal;
273
+ font-display: swap;
322
274
  }
323
275
  .NotificationToast-module__toastContainer {
324
276
  display: flex;
@@ -487,121 +439,49 @@ button.MainButton-module__mainButton.MainButton-module__tertiaryV3 .MainButton-m
487
439
  padding-left: 10px;
488
440
  border-left: 2px solid rgba(255, 255, 255, 0.25);
489
441
  }@font-face {
490
- font-family: "Inter-Regular";
491
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
442
+ font-family: "Inter";
443
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
444
+ font-weight: 400;
445
+ font-style: normal;
446
+ font-display: swap;
492
447
  }
493
448
  @font-face {
494
- font-family: "Inter-SemiBold";
495
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
449
+ font-family: "Inter";
450
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
451
+ font-weight: 500;
452
+ font-style: normal;
453
+ font-display: swap;
496
454
  }
497
455
  @font-face {
498
- font-family: "Inter-Medium";
499
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
456
+ font-family: "Inter";
457
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
458
+ font-weight: 600;
459
+ font-style: normal;
460
+ font-display: swap;
500
461
  }
501
- .Checkbox-module__checkboxWrapper {
502
- overflow: hidden;
503
- border: 2px solid #c1c2c7;
504
- background: #ffffff;
462
+ .Skeleton-module__skeleton {
463
+ background-color: #e0e0e0;
464
+ border-radius: 4px;
505
465
  position: relative;
506
- padding: 5px 4px;
507
- border-radius: 3px;
508
- cursor: pointer;
509
- transition: 0.2;
510
- display: grid;
511
- place-items: center;
512
- width: 18px;
513
- height: 18px;
514
- user-select: none;
515
- -webkit-user-select: none;
516
- -moz-user-select: none;
517
- -ms-user-select: none;
518
- }
519
- .Checkbox-module__checkboxWrapper .Checkbox-module__checkMark {
466
+ overflow: hidden;
520
467
  display: grid;
521
468
  place-items: center;
522
469
  }
523
- .Checkbox-module__checkboxWrapper .Checkbox-module__checkMark svg {
524
- width: 0.625rem;
525
- user-select: none;
526
- pointer-events: none;
470
+ .Skeleton-module__skeleton::after {
471
+ content: "";
472
+ position: absolute;
473
+ top: 0;
474
+ left: 0;
475
+ right: 0;
476
+ bottom: 0;
477
+ background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
478
+ animation: Skeleton-module__shimmer 1.5s infinite;
527
479
  }
528
- .Checkbox-module__checkboxWrapper.Checkbox-module__error {
529
- border-color: #e3292f;
530
- }
531
- .Checkbox-module__checkboxWrapper.Checkbox-module__error.Checkbox-module__checked {
532
- background: #e3292f;
533
- border: none;
534
- }
535
- .Checkbox-module__checkboxWrapper.Checkbox-module__checked {
536
- background: #0058ff;
537
- border: none;
538
- }
539
- .Checkbox-module__checkboxWrapper.Checkbox-module__checked.Checkbox-module__disabled {
540
- background: #95969c;
541
- }
542
- .Checkbox-module__checkboxWrapper.Checkbox-module__disabled {
543
- cursor: not-allowed;
544
- border-color: #c1c2c7 !important;
545
- }
546
-
547
- .Checkbox-module__Namespace_Hr.Checkbox-module__checkboxWrapper.Checkbox-module__checked {
548
- background: #32b45f;
549
- border: 0.0625rem solid #32b45f;
550
- }
551
- .Checkbox-module__Namespace_Hr.Checkbox-module__checkboxWrapper.Checkbox-module__checked:hover {
552
- background: #24994d;
553
- border: 0.0625rem solid #24994d;
554
- }
555
-
556
- .Checkbox-module__dark {
557
- background: #373a41;
558
- border: unset;
559
- }
560
- .Checkbox-module__dark.Checkbox-module__checked {
561
- background: #0158ff;
562
- border: 0.0625rem solid #0158ff;
563
- }
564
- .Checkbox-module__dark.Checkbox-module__checked.Checkbox-module__disabled svg path {
565
- stroke: #d5d7da;
566
- }
567
- .Checkbox-module__dark.Checkbox-module__disabled {
568
- background: #8d8d8d !important;
569
- border: 0.0625rem solid #373a41 !important;
570
- }@font-face {
571
- font-family: "Inter-Regular";
572
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
573
- }
574
- @font-face {
575
- font-family: "Inter-SemiBold";
576
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
577
- }
578
- @font-face {
579
- font-family: "Inter-Medium";
580
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
581
- }
582
- .Skeleton-module__skeleton {
583
- background-color: #e0e0e0;
584
- border-radius: 4px;
585
- position: relative;
586
- overflow: hidden;
587
- display: grid;
588
- place-items: center;
589
- }
590
- .Skeleton-module__skeleton::after {
591
- content: "";
592
- position: absolute;
593
- top: 0;
594
- left: 0;
595
- right: 0;
596
- bottom: 0;
597
- background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
598
- animation: Skeleton-module__shimmer 1.5s infinite;
599
- }
600
-
601
- .Skeleton-module__text {
602
- height: 1rem;
603
- width: 100%;
604
- margin: 8px 0;
480
+
481
+ .Skeleton-module__text {
482
+ height: 1rem;
483
+ width: 100%;
484
+ margin: 8px 0;
605
485
  }
606
486
 
607
487
  .Skeleton-module__avatar {
@@ -624,102 +504,126 @@ button.MainButton-module__mainButton.MainButton-module__tertiaryV3 .MainButton-m
624
504
  .Skeleton-module__dark.Skeleton-module__skeleton::after {
625
505
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
626
506
  }@font-face {
627
- font-family: "Inter-Regular";
628
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
507
+ font-family: "Inter";
508
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
509
+ font-weight: 400;
510
+ font-style: normal;
511
+ font-display: swap;
629
512
  }
630
513
  @font-face {
631
- font-family: "Inter-SemiBold";
632
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
514
+ font-family: "Inter";
515
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
516
+ font-weight: 500;
517
+ font-style: normal;
518
+ font-display: swap;
633
519
  }
634
520
  @font-face {
635
- font-family: "Inter-Medium";
636
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
521
+ font-family: "Inter";
522
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
523
+ font-weight: 600;
524
+ font-style: normal;
525
+ font-display: swap;
637
526
  }
638
- .FormInput-module__inputWrapper {
639
- width: 100%;
640
- display: flex;
641
- flex-direction: column;
642
- gap: 10px;
527
+ .Toggle-module__toggleWrapper {
528
+ position: relative;
529
+ overflow: hidden;
530
+ border-radius: 13.333px;
531
+ background: #c1c2c7;
532
+ padding: 4px;
533
+ cursor: pointer;
643
534
  }
644
- .FormInput-module__inputWrapper.FormInput-module__sm .FormInput-module__formInputWrapper {
645
- height: 36px;
535
+ .Toggle-module__toggleWrapper.Toggle-module__checked {
536
+ background: #0058FF;
646
537
  }
647
- .FormInput-module__inputWrapper.FormInput-module__md .FormInput-module__formInputWrapper {
648
- height: 40px;
538
+ .Toggle-module__toggleWrapper.Toggle-module__error {
539
+ background: #e3292f;
649
540
  }
650
- .FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputLabel {
651
- width: 100%;
652
- overflow: hidden;
653
- color: #95969c;
654
- text-overflow: ellipsis;
655
- font-family: "Inter-Medium";
656
- font-size: 12px;
657
- font-style: normal;
658
- font-weight: 450;
659
- line-height: 16px; /* 133.333% */
660
- letter-spacing: 0.1px;
541
+ .Toggle-module__toggleWrapper.Toggle-module__disabled {
542
+ background: #d4d5d6;
543
+ cursor: not-allowed;
661
544
  }
662
- .FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInput {
663
- width: 100%;
664
- overflow: hidden;
665
- color: #7a7b80;
666
- text-overflow: ellipsis;
667
- font-family: "Inter-Regular";
668
- font-size: 14px;
669
- font-style: normal;
670
- font-weight: 400;
671
- line-height: 24px; /* 171.429% */
672
- letter-spacing: 0.1px;
545
+ .Toggle-module__toggleWrapper.Toggle-module__disabled.Toggle-module__checked {
546
+ background: #95969c;
673
547
  }
674
- .FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputHelperText {
675
- width: 100%;
676
- overflow: hidden;
677
- color: #95969c;
678
- text-overflow: ellipsis;
679
- font-family: "Inter-Medium";
680
- font-size: 12px;
681
- font-style: normal;
682
- font-weight: 450;
683
- line-height: 16px; /* 133.333% */
684
- letter-spacing: 0.1px;
548
+ .Toggle-module__toggleWrapper.Toggle-module__sm {
549
+ width: 24px;
550
+ height: 16px;
685
551
  }
686
- .FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputWrapper {
687
- border-radius: 6px;
688
- border: 1px solid #e6e6e6;
689
- background: #fafafa;
552
+ .Toggle-module__toggleWrapper.Toggle-module__sm.Toggle-module__checked .Toggle-module__toggleState {
553
+ left: calc(100% - 12px);
690
554
  }
691
- .FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputWrapper .FormInput-module__formInput {
692
- width: 100%;
693
- overflow: hidden;
694
- color: #7a7b80;
695
- text-overflow: ellipsis;
696
- font-family: "Inter-Regular";
697
- font-size: 14px;
698
- font-style: normal;
555
+ .Toggle-module__toggleWrapper.Toggle-module__sm .Toggle-module__toggleState {
556
+ width: 8px;
557
+ height: 8px;
558
+ }
559
+ .Toggle-module__toggleWrapper.Toggle-module__md {
560
+ width: 32px;
561
+ height: 20px;
562
+ }
563
+ .Toggle-module__toggleWrapper.Toggle-module__md.Toggle-module__checked .Toggle-module__toggleState {
564
+ left: calc(100% - 16px);
565
+ }
566
+ .Toggle-module__toggleWrapper.Toggle-module__md .Toggle-module__toggleState {
567
+ width: 12px;
568
+ height: 12px;
569
+ }
570
+ .Toggle-module__toggleWrapper.Toggle-module__lg {
571
+ width: 40px;
572
+ height: 24px;
573
+ }
574
+ .Toggle-module__toggleWrapper.Toggle-module__lg .Toggle-module__toggleState {
575
+ width: 16px;
576
+ height: 16px;
577
+ }
578
+ .Toggle-module__toggleWrapper.Toggle-module__lg.Toggle-module__checked .Toggle-module__toggleState {
579
+ left: calc(100% - 20px);
580
+ }
581
+ .Toggle-module__toggleWrapper .Toggle-module__toggleState {
582
+ border-radius: 8px;
583
+ background: #fff;
584
+ position: absolute;
585
+ top: 50%;
586
+ left: 4px;
587
+ transform: translateY(-50%);
588
+ transition: 0.2s all;
589
+ }@font-face {
590
+ font-family: "Inter";
591
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
699
592
  font-weight: 400;
700
- line-height: 24px; /* 171.429% */
701
- letter-spacing: 0.1px;
702
- cursor: not-allowed;
593
+ font-style: normal;
594
+ font-display: swap;
703
595
  }
704
- .FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputWrapper .FormInput-module__formInput::placeholder {
705
- width: 100%;
706
- overflow: hidden;
707
- color: #7a7b80;
708
- text-overflow: ellipsis;
709
- font-family: "Inter-Regular";
710
- font-size: 14px;
596
+ @font-face {
597
+ font-family: "Inter";
598
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
599
+ font-weight: 500;
711
600
  font-style: normal;
712
- font-weight: 400;
713
- line-height: 24px; /* 171.429% */
714
- letter-spacing: 0.1px;
601
+ font-display: swap;
715
602
  }
716
- .FormInput-module__inputWrapper .FormInput-module__formInputLabelWrapper {
603
+ @font-face {
604
+ font-family: "Inter";
605
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
606
+ font-weight: 600;
607
+ font-style: normal;
608
+ font-display: swap;
609
+ }
610
+ .Textarea-module__textareaContainer {
717
611
  width: 100%;
718
612
  display: flex;
719
- align-items: center;
613
+ flex-direction: column;
614
+ align-items: flex-start;
615
+ gap: 0.375rem;
616
+ flex-shrink: 0;
617
+ }
618
+ .Textarea-module__textareaContainer .Textarea-module__textAreaLabel {
619
+ display: flex;
720
620
  justify-content: space-between;
621
+ display: flex;
622
+ align-items: center;
623
+ gap: 0.125rem;
624
+ width: 100%;
721
625
  }
722
- .FormInput-module__inputWrapper .FormInput-module__formInputLabelWrapper .FormInput-module__formInputLabel {
626
+ .Textarea-module__textareaContainer .Textarea-module__textAreaLabel p {
723
627
  width: 100%;
724
628
  width: 100%;
725
629
  overflow: hidden;
@@ -731,190 +635,19 @@ button.MainButton-module__mainButton.MainButton-module__tertiaryV3 .MainButton-m
731
635
  line-height: 16px; /* 171.429% */
732
636
  letter-spacing: 0.1px;
733
637
  }
734
- .FormInput-module__inputWrapper .FormInput-module__formInputLabelWrapper .FormInput-module__formInputLabel .FormInput-module__formInputRequired {
735
- overflow: hidden;
736
- color: #e3292f;
737
- text-overflow: ellipsis;
738
- font-family: "Inter-Medium";
739
- font-size: 12px;
638
+ .Textarea-module__textareaContainer .Textarea-module__textAreaLabel .Textarea-module__required {
639
+ color: #d92d20;
640
+ font-size: 0.875rem;
641
+ font-family: "Inter", sans-serif;
740
642
  font-style: normal;
741
- font-weight: 450;
742
- line-height: 16px; /* 133.333% */
743
- letter-spacing: 0.1px;
744
- }
745
- .FormInput-module__inputWrapper .FormInput-module__formInputLabelWrapper .FormInput-module__formInputHelperSlot {
746
- display: flex;
747
- align-items: center;
748
- justify-content: center;
643
+ font-weight: 500;
644
+ line-height: 1.25rem;
749
645
  }
750
- .FormInput-module__inputWrapper .FormInput-module__formInputWrapper {
646
+ .Textarea-module__textareaContainer .Textarea-module__wrap {
647
+ position: relative;
648
+ display: inline-block;
751
649
  width: 100%;
752
- display: flex;
753
- align-items: center;
754
- gap: 8px;
755
- padding: 8px;
756
- border-radius: 6px;
757
- border: 1px solid #e6e6e6;
758
- background: #fff;
759
- }
760
- .FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__errorState {
761
- border-radius: 6px;
762
- background: #fff;
763
- outline: 1px solid #f63e45;
764
- outline-offset: -1px;
765
- box-shadow: none;
766
- }
767
- .FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__focused {
768
- border-radius: 6px;
769
- background: #fff;
770
- outline: 2px solid #0058ff;
771
- outline-offset: -2px;
772
- box-shadow: none;
773
- }
774
- .FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__active {
775
- border-radius: 6px;
776
- background: #fff;
777
- outline: 1.5px solid #0058ff;
778
- outline-offset: -1.5px;
779
- box-shadow: 0 0 0 2px #dee9fc;
780
- }
781
- .FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__errorFocused {
782
- border-radius: 6px;
783
- background: #fff;
784
- outline: 2px solid #f63e45;
785
- outline-offset: -2px;
786
- box-shadow: none;
787
- }
788
- .FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__errorActive {
789
- border-radius: 6px;
790
- background: #fff;
791
- outline: 1.5px solid #f63e45;
792
- outline-offset: -1.5px;
793
- box-shadow: 0 0 0 2px #fcdcdd;
794
- }
795
- .FormInput-module__inputWrapper .FormInput-module__formInputWrapper input.FormInput-module__formInput {
796
- width: 100%;
797
- border: none;
798
- outline: none;
799
- background-color: transparent;
800
- caret-color: #0058ff;
801
- width: 100%;
802
- overflow: hidden;
803
- color: #131314;
804
- text-overflow: ellipsis;
805
- font-family: "Inter-Regular";
806
- font-size: 14px;
807
- font-style: normal;
808
- font-weight: 400;
809
- line-height: 24px; /* 171.429% */
810
- letter-spacing: 0.1px;
811
- }
812
- .FormInput-module__inputWrapper .FormInput-module__formInputWrapper input.FormInput-module__formInput::placeholder {
813
- width: 100%;
814
- overflow: hidden;
815
- color: #646569;
816
- text-overflow: ellipsis;
817
- font-family: "Inter-Regular";
818
- font-size: 14px;
819
- font-style: normal;
820
- font-weight: 400;
821
- line-height: 24px; /* 171.429% */
822
- letter-spacing: 0.1px;
823
- }
824
- .FormInput-module__inputWrapper .FormInput-module__formInputWrapper .FormInput-module__formInputSlot {
825
- display: grid;
826
- place-items: center;
827
- }
828
- .FormInput-module__inputWrapper .FormInput-module__formInputHelperText {
829
- width: 100%;
830
- overflow: hidden;
831
- color: #131314;
832
- text-overflow: ellipsis;
833
- font-family: "Inter-Medium";
834
- font-size: 12px;
835
- font-style: normal;
836
- font-weight: 450;
837
- line-height: 16px; /* 133.333% */
838
- letter-spacing: 0.1px;
839
- }
840
- .FormInput-module__inputWrapper .FormInput-module__formInputHelperText.FormInput-module__errorHelperText {
841
- width: 100%;
842
- overflow: hidden;
843
- color: #e3292f;
844
- text-overflow: ellipsis;
845
- font-family: "Inter-Medium";
846
- font-size: 12px;
847
- font-style: normal;
848
- font-weight: 450;
849
- line-height: 16px; /* 133.333% */
850
- letter-spacing: 0.1px;
851
- color: #e3292f;
852
- }
853
- .FormInput-module__inputWrapper .FormInput-module__formInputHelperText.FormInput-module__successHelperText {
854
- width: 100%;
855
- overflow: hidden;
856
- color: #328707;
857
- text-overflow: ellipsis;
858
- font-family: "Inter-Medium";
859
- font-size: 12px;
860
- font-style: normal;
861
- font-weight: 450;
862
- line-height: 16px; /* 133.333% */
863
- letter-spacing: 0.1px;
864
- color: #328707;
865
- }@font-face {
866
- font-family: "Inter-Regular";
867
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
868
- }
869
- @font-face {
870
- font-family: "Inter-SemiBold";
871
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
872
- }
873
- @font-face {
874
- font-family: "Inter-Medium";
875
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
876
- }
877
- .Textarea-module__textareaContainer {
878
- width: 100%;
879
- display: flex;
880
- flex-direction: column;
881
- align-items: flex-start;
882
- gap: 0.375rem;
883
- flex-shrink: 0;
884
- }
885
- .Textarea-module__textareaContainer .Textarea-module__textAreaLabel {
886
- display: flex;
887
- justify-content: space-between;
888
- display: flex;
889
- align-items: center;
890
- gap: 0.125rem;
891
- width: 100%;
892
- }
893
- .Textarea-module__textareaContainer .Textarea-module__textAreaLabel p {
894
- width: 100%;
895
- width: 100%;
896
- overflow: hidden;
897
- color: #131314;
898
- font-family: "Inter-Medium";
899
- font-size: 12px;
900
- font-style: normal;
901
- font-weight: 450;
902
- line-height: 16px; /* 171.429% */
903
- letter-spacing: 0.1px;
904
- }
905
- .Textarea-module__textareaContainer .Textarea-module__textAreaLabel .Textarea-module__required {
906
- color: #d92d20;
907
- font-size: 0.875rem;
908
- font-family: "Inter", sans-serif;
909
- font-style: normal;
910
- font-weight: 500;
911
- line-height: 1.25rem;
912
- }
913
- .Textarea-module__textareaContainer .Textarea-module__wrap {
914
- position: relative;
915
- display: inline-block;
916
- width: 100%;
917
- position: relative;
650
+ position: relative;
918
651
  }
919
652
  .Textarea-module__textareaContainer .Textarea-module__wrap.Textarea-module__resize textarea {
920
653
  resize: both;
@@ -1029,299 +762,499 @@ button.MainButton-module__mainButton.MainButton-module__tertiaryV3 .MainButton-m
1029
762
  line-height: 16px; /* 133.333% */
1030
763
  letter-spacing: 0.1px;
1031
764
  }@font-face {
1032
- font-family: "Inter-Regular";
1033
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
765
+ font-family: "Inter";
766
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
767
+ font-weight: 400;
768
+ font-style: normal;
769
+ font-display: swap;
770
+ }
771
+ @font-face {
772
+ font-family: "Inter";
773
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
774
+ font-weight: 500;
775
+ font-style: normal;
776
+ font-display: swap;
777
+ }
778
+ @font-face {
779
+ font-family: "Inter";
780
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
781
+ font-weight: 600;
782
+ font-style: normal;
783
+ font-display: swap;
784
+ }
785
+ .Popup-module__modalOverlay {
786
+ width: 100vw;
787
+ height: 100vh;
788
+ display: grid;
789
+ place-items: center;
790
+ position: fixed;
791
+ top: 0;
792
+ left: 0;
793
+ z-index: 250;
794
+ background: rgba(10, 13, 18, 0.7);
795
+ }
796
+ .Popup-module__modalOverlay ::-webkit-scrollbar {
797
+ width: 0;
798
+ }
799
+ .Popup-module__modalOverlay ::-webkit-scrollbar-track {
800
+ -webkit-box-shadow: none;
801
+ }
802
+ .Popup-module__modalOverlay ::-webkit-scrollbar-thumb {
803
+ background-color: none;
804
+ outline: 0;
805
+ }
806
+ .Popup-module__modalOverlay.Popup-module__popupDrawerMode {
807
+ overflow: hidden;
808
+ place-items: end;
809
+ }
810
+ .Popup-module__modalOverlay.Popup-module__popupDrawerMode .Popup-module__popupContainer {
811
+ min-height: unset;
812
+ max-height: unset;
813
+ min-width: 17.5rem;
814
+ height: 100vh;
815
+ animation: Popup-module__EnterFromLeft 0.3s forwards;
816
+ }
817
+ @keyframes Popup-module__EnterFromLeft {
818
+ from {
819
+ left: 100%;
820
+ }
821
+ to {
822
+ left: 0;
823
+ }
824
+ }
825
+ .Popup-module__modalOverlay .Popup-module__popupContainer {
826
+ padding: 1.5rem;
827
+ min-height: 13.75rem;
828
+ max-height: calc(100vh - 5.625rem);
829
+ position: relative;
830
+ transition: 0.2s;
831
+ z-index: 280;
832
+ border-radius: 0.75rem;
833
+ background: #fff;
834
+ /* Shadows/shadow-xl */
835
+ box-shadow: 0rem 1.25rem 1.5rem -0.25rem rgba(10, 13, 18, 0.08), 0rem 0.5rem 0.5rem -0.25rem rgba(10, 13, 18, 0.03), 0rem 0.1875rem 0.1875rem -0.0938rem rgba(10, 13, 18, 0.04);
836
+ animation: Popup-module__fadeIn 0.3s forwards;
837
+ }
838
+ @keyframes Popup-module__fadeIn {
839
+ from {
840
+ opacity: 0;
841
+ }
842
+ to {
843
+ opacity: 1;
844
+ }
845
+ }
846
+ .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__closeButton {
847
+ display: grid;
848
+ place-items: center;
849
+ cursor: pointer;
850
+ position: absolute;
851
+ top: 1.25rem;
852
+ right: 1.5rem;
853
+ z-index: 14;
854
+ }
855
+ .Popup-module__modalOverlay .Popup-module__popupContainer.Popup-module__withOptions {
856
+ width: 25rem;
857
+ }
858
+ .Popup-module__modalOverlay .Popup-module__popupContainer.Popup-module__withOptions.Popup-module__horizontal {
859
+ width: 34rem;
860
+ }
861
+ .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader {
862
+ width: 100%;
863
+ position: sticky;
864
+ top: 0;
865
+ background: #ffffff;
866
+ z-index: 1;
867
+ }
868
+ .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__popupTitle {
869
+ margin-top: 1rem;
870
+ }
871
+ .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__popupTitle h2 {
872
+ color: #181d27;
873
+ font-size: 1.125rem;
874
+ font-style: normal;
875
+ font-weight: 600;
876
+ line-height: 1.75rem; /* 155.556% */
877
+ font-family: "Inter", sans-serif;
878
+ line-height: 1.75rem; /* 155.556% */
879
+ }
880
+ .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__popupDescription {
881
+ margin-top: 0.25rem;
882
+ }
883
+ .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__popupDescription p {
884
+ color: #535862;
885
+ font-size: 0.875rem;
886
+ font-style: normal;
887
+ font-weight: 400;
888
+ line-height: 1.25rem; /* 142.857% */
889
+ font-family: "Inter", sans-serif;
890
+ }
891
+ .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__typeIcon {
892
+ display: flex;
893
+ align-items: center;
894
+ justify-content: space-between;
895
+ }
896
+ .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__typeIcon .Popup-module__icon {
897
+ display: grid;
898
+ place-items: center;
899
+ width: 3rem;
900
+ height: 3rem;
901
+ border-radius: 624.9375rem;
902
+ }
903
+ .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__templateWrapper {
904
+ width: 100%;
905
+ position: relative;
906
+ }
907
+
908
+ .Popup-module__dark.Popup-module__modalOverlay {
909
+ background: rgba(34, 38, 47, 0.4588235294);
910
+ }
911
+ .Popup-module__dark.Popup-module__modalOverlay .Popup-module__popupContainer {
912
+ background: #0c0e12;
913
+ /* Shadows/shadow-xl */
914
+ box-shadow: 0rem 1.25rem 1.5rem -0.25rem rgba(10, 13, 18, 0.08), 0rem 0.5rem 0.5rem -0.25rem rgba(10, 13, 18, 0.03), 0rem 0.1875rem 0.1875rem -0.0938rem rgba(10, 13, 18, 0.04);
915
+ }
916
+ .Popup-module__dark.Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader {
917
+ background: #0c0e12;
918
+ }
919
+ .Popup-module__dark.Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__popupTitle h2 {
920
+ color: #f7f7f7;
921
+ }
922
+ .Popup-module__dark.Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__popupDescription p {
923
+ color: #94979c;
924
+ }@font-face {
925
+ font-family: "Inter";
926
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
927
+ font-weight: 400;
928
+ font-style: normal;
929
+ font-display: swap;
930
+ }
931
+ @font-face {
932
+ font-family: "Inter";
933
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
934
+ font-weight: 500;
935
+ font-style: normal;
936
+ font-display: swap;
1034
937
  }
1035
938
  @font-face {
1036
- font-family: "Inter-SemiBold";
1037
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
939
+ font-family: "Inter";
940
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
941
+ font-weight: 600;
942
+ font-style: normal;
943
+ font-display: swap;
944
+ }
945
+ button.MainButton-module__mainButton {
946
+ width: 100%;
947
+ display: flex;
948
+ padding: 8px;
949
+ justify-content: center;
950
+ align-items: center;
951
+ border-radius: 6px;
952
+ min-width: 100px;
953
+ outline: none;
954
+ border: none;
955
+ cursor: pointer;
956
+ user-select: none;
957
+ -webkit-user-select: none;
958
+ -moz-user-select: none;
959
+ -ms-user-select: none;
960
+ }
961
+ button.MainButton-module__mainButton.MainButton-module__sm {
962
+ height: 32px;
963
+ }
964
+ button.MainButton-module__mainButton.MainButton-module__md {
965
+ height: 36px;
966
+ }
967
+ button.MainButton-module__mainButton.MainButton-module__lg {
968
+ height: 40px;
969
+ }
970
+ button.MainButton-module__mainButton .MainButton-module__mainButtonContent {
971
+ width: 100%;
972
+ display: flex;
973
+ align-items: center;
974
+ justify-content: center;
975
+ gap: 8px;
976
+ }
977
+ button.MainButton-module__mainButton .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
978
+ overflow: hidden;
979
+ text-overflow: ellipsis;
980
+ font-family: "Inter", sans-serif;
981
+ font-size: 14px;
982
+ font-style: normal;
983
+ font-weight: 450;
984
+ line-height: 24px; /* 171.429% */
985
+ letter-spacing: 0.1px;
986
+ }
987
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__neutral {
988
+ background: #0058ff;
989
+ }
990
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__neutral.MainButton-module__loading {
991
+ cursor: no-drop;
992
+ }
993
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__neutral:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
994
+ background: #004fe5 !important;
995
+ }
996
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__neutral.MainButton-module__disabled {
997
+ background: #95969c;
998
+ cursor: not-allowed;
999
+ }
1000
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__neutral.MainButton-module__focused {
1001
+ outline: 2px solid #dee9fc;
1002
+ outline-offset: 0px;
1003
+ background: #0058ff;
1004
+ }
1005
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__neutral .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1006
+ color: #fff;
1007
+ }
1008
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__positive {
1009
+ background: #328707;
1010
+ }
1011
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__positive.MainButton-module__loading {
1012
+ cursor: no-drop;
1013
+ }
1014
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__positive:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
1015
+ background: #266905 !important;
1016
+ }
1017
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__positive.MainButton-module__disabled {
1018
+ background: #95969c;
1019
+ cursor: not-allowed;
1020
+ }
1021
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__positive.MainButton-module__focused {
1022
+ outline: 2px solid #c3ebb0;
1023
+ outline-offset: 0px;
1024
+ background: #328707;
1025
+ }
1026
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__positive .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1027
+ color: #fff;
1028
+ }
1029
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__negative {
1030
+ background: #e3292f;
1031
+ }
1032
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__negative.MainButton-module__loading {
1033
+ cursor: no-drop;
1034
+ }
1035
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__negative:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
1036
+ background: #db1d23 !important;
1037
+ }
1038
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__negative.MainButton-module__disabled {
1039
+ background: #95969c;
1040
+ cursor: not-allowed;
1041
+ }
1042
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__negative.MainButton-module__focused {
1043
+ outline: 2px solid #fcdcdc;
1044
+ outline-offset: 0px;
1045
+ background: #e3292f;
1038
1046
  }
1039
- @font-face {
1040
- font-family: "Inter-Medium";
1041
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
1047
+ button.MainButton-module__mainButton.MainButton-module__primary.MainButton-module__negative .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1048
+ color: #fff;
1042
1049
  }
1043
- .Toggle-module__toggleWrapper {
1044
- position: relative;
1045
- overflow: hidden;
1046
- border-radius: 13.333px;
1047
- background: #c1c2c7;
1048
- padding: 4px;
1049
- cursor: pointer;
1050
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__neutral {
1051
+ background: #ecf3ff;
1050
1052
  }
1051
- .Toggle-module__toggleWrapper.Toggle-module__checked {
1052
- background: #0058FF;
1053
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__neutral.MainButton-module__loading {
1054
+ cursor: no-drop;
1053
1055
  }
1054
- .Toggle-module__toggleWrapper.Toggle-module__error {
1055
- background: #e3292f;
1056
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__neutral:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
1057
+ background: #dee9fc !important;
1056
1058
  }
1057
- .Toggle-module__toggleWrapper.Toggle-module__disabled {
1058
- background: #d4d5d6;
1059
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__neutral.MainButton-module__disabled {
1060
+ background: #f2f2f2;
1059
1061
  cursor: not-allowed;
1060
1062
  }
1061
- .Toggle-module__toggleWrapper.Toggle-module__disabled.Toggle-module__checked {
1062
- background: #95969c;
1063
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__neutral.MainButton-module__disabled .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1064
+ color: #7a7b80;
1063
1065
  }
1064
- .Toggle-module__toggleWrapper.Toggle-module__sm {
1065
- width: 24px;
1066
- height: 16px;
1066
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__neutral.MainButton-module__focused {
1067
+ outline-offset: 0px;
1068
+ background: #ecf3ff;
1069
+ box-shadow: 0px 0px 0px 2px #0058ff;
1067
1070
  }
1068
- .Toggle-module__toggleWrapper.Toggle-module__sm.Toggle-module__checked .Toggle-module__toggleState {
1069
- left: calc(100% - 12px);
1071
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__neutral .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1072
+ color: #0058ff;
1070
1073
  }
1071
- .Toggle-module__toggleWrapper.Toggle-module__sm .Toggle-module__toggleState {
1072
- width: 8px;
1073
- height: 8px;
1074
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__positive {
1075
+ background: #effce8;
1074
1076
  }
1075
- .Toggle-module__toggleWrapper.Toggle-module__md {
1076
- width: 32px;
1077
- height: 20px;
1077
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__positive.MainButton-module__loading {
1078
+ cursor: no-drop;
1078
1079
  }
1079
- .Toggle-module__toggleWrapper.Toggle-module__md.Toggle-module__checked .Toggle-module__toggleState {
1080
- left: calc(100% - 16px);
1080
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__positive:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
1081
+ background: #e0fad2 !important;
1081
1082
  }
1082
- .Toggle-module__toggleWrapper.Toggle-module__md .Toggle-module__toggleState {
1083
- width: 12px;
1084
- height: 12px;
1083
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__positive.MainButton-module__disabled {
1084
+ background: #95969c;
1085
+ cursor: not-allowed;
1085
1086
  }
1086
- .Toggle-module__toggleWrapper.Toggle-module__lg {
1087
- width: 40px;
1088
- height: 24px;
1087
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__positive.MainButton-module__focused {
1088
+ outline: 2px solid #60bf30;
1089
+ outline-offset: 0px;
1090
+ background: #effce8;
1089
1091
  }
1090
- .Toggle-module__toggleWrapper.Toggle-module__lg .Toggle-module__toggleState {
1091
- width: 16px;
1092
- height: 16px;
1092
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__positive .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1093
+ color: #328707;
1093
1094
  }
1094
- .Toggle-module__toggleWrapper.Toggle-module__lg.Toggle-module__checked .Toggle-module__toggleState {
1095
- left: calc(100% - 20px);
1095
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__negative {
1096
+ background: #fff2f2;
1096
1097
  }
1097
- .Toggle-module__toggleWrapper .Toggle-module__toggleState {
1098
- border-radius: 8px;
1099
- background: #fff;
1100
- position: absolute;
1101
- top: 50%;
1102
- left: 4px;
1103
- transform: translateY(-50%);
1104
- transition: 0.2s all;
1105
- }@font-face {
1106
- font-family: "Inter-Regular";
1107
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
1098
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__negative.MainButton-module__loading {
1099
+ cursor: no-drop;
1108
1100
  }
1109
- @font-face {
1110
- font-family: "Inter-SemiBold";
1111
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
1101
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__negative:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
1102
+ background: #fcdcdc !important;
1112
1103
  }
1113
- @font-face {
1114
- font-family: "Inter-Medium";
1115
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
1104
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__negative.MainButton-module__disabled {
1105
+ background: #95969c;
1106
+ cursor: not-allowed;
1116
1107
  }
1117
- .Popup-module__modalOverlay {
1118
- width: 100vw;
1119
- height: 100vh;
1120
- display: grid;
1121
- place-items: center;
1122
- position: fixed;
1123
- top: 0;
1124
- left: 0;
1125
- z-index: 250;
1126
- background: rgba(10, 13, 18, 0.7);
1108
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__negative.MainButton-module__focused {
1109
+ outline: 2px solid #ff5757;
1110
+ outline-offset: 0px;
1111
+ background: #fff2f2;
1127
1112
  }
1128
- .Popup-module__modalOverlay ::-webkit-scrollbar {
1129
- width: 0;
1113
+ button.MainButton-module__mainButton.MainButton-module__secondary.MainButton-module__negative .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1114
+ color: #db1d23;
1130
1115
  }
1131
- .Popup-module__modalOverlay ::-webkit-scrollbar-track {
1132
- -webkit-box-shadow: none;
1116
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__neutral {
1117
+ background: #f2f2f2;
1133
1118
  }
1134
- .Popup-module__modalOverlay ::-webkit-scrollbar-thumb {
1135
- background-color: none;
1136
- outline: 0;
1119
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__neutral.MainButton-module__loading {
1120
+ cursor: no-drop;
1137
1121
  }
1138
- .Popup-module__modalOverlay.Popup-module__popupDrawerMode {
1139
- overflow: hidden;
1140
- place-items: end;
1122
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__neutral:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
1123
+ background: #e6e6e6 !important;
1141
1124
  }
1142
- .Popup-module__modalOverlay.Popup-module__popupDrawerMode .Popup-module__popupContainer {
1143
- min-height: unset;
1144
- max-height: unset;
1145
- min-width: 17.5rem;
1146
- height: 100vh;
1147
- animation: Popup-module__EnterFromLeft 0.3s forwards;
1125
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__neutral.MainButton-module__disabled {
1126
+ background: #f2f2f2;
1127
+ cursor: not-allowed;
1148
1128
  }
1149
- @keyframes Popup-module__EnterFromLeft {
1150
- from {
1151
- left: 100%;
1152
- }
1153
- to {
1154
- left: 0;
1155
- }
1129
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__neutral.MainButton-module__disabled .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1130
+ color: #7a7b80;
1156
1131
  }
1157
- .Popup-module__modalOverlay .Popup-module__popupContainer {
1158
- padding: 1.5rem;
1159
- min-height: 13.75rem;
1160
- max-height: calc(100vh - 5.625rem);
1161
- position: relative;
1162
- transition: 0.2s;
1163
- z-index: 280;
1164
- border-radius: 0.75rem;
1165
- background: #fff;
1166
- /* Shadows/shadow-xl */
1167
- box-shadow: 0rem 1.25rem 1.5rem -0.25rem rgba(10, 13, 18, 0.08), 0rem 0.5rem 0.5rem -0.25rem rgba(10, 13, 18, 0.03), 0rem 0.1875rem 0.1875rem -0.0938rem rgba(10, 13, 18, 0.04);
1168
- animation: Popup-module__fadeIn 0.3s forwards;
1132
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__neutral.MainButton-module__focused {
1133
+ outline: 2px solid #c1c2c7;
1134
+ outline-offset: 0px;
1135
+ background: #f2f2f2;
1169
1136
  }
1170
- @keyframes Popup-module__fadeIn {
1171
- from {
1172
- opacity: 0;
1173
- }
1174
- to {
1175
- opacity: 1;
1176
- }
1137
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__neutral .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1138
+ color: #131314;
1177
1139
  }
1178
- .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__closeButton {
1179
- display: grid;
1180
- place-items: center;
1181
- cursor: pointer;
1182
- position: absolute;
1183
- top: 1.25rem;
1184
- right: 1.5rem;
1185
- z-index: 14;
1140
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__positive {
1141
+ background: #fff;
1186
1142
  }
1187
- .Popup-module__modalOverlay .Popup-module__popupContainer.Popup-module__withOptions {
1188
- width: 25rem;
1143
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__positive.MainButton-module__loading {
1144
+ cursor: no-drop;
1189
1145
  }
1190
- .Popup-module__modalOverlay .Popup-module__popupContainer.Popup-module__withOptions.Popup-module__horizontal {
1191
- width: 34rem;
1146
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__positive:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
1147
+ background: #effce8 !important;
1192
1148
  }
1193
- .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader {
1194
- width: 100%;
1195
- position: sticky;
1196
- top: 0;
1197
- background: #ffffff;
1198
- z-index: 1;
1149
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__positive.MainButton-module__disabled {
1150
+ background: #fff;
1151
+ cursor: not-allowed;
1199
1152
  }
1200
- .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__popupTitle {
1201
- margin-top: 1rem;
1153
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__positive.MainButton-module__disabled .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1154
+ color: #7a7b80;
1202
1155
  }
1203
- .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__popupTitle h2 {
1204
- color: #181d27;
1205
- font-size: 1.125rem;
1206
- font-style: normal;
1207
- font-weight: 600;
1208
- line-height: 1.75rem; /* 155.556% */
1209
- font-family: "Inter", sans-serif;
1210
- line-height: 1.75rem; /* 155.556% */
1156
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__positive.MainButton-module__focused {
1157
+ outline: 2px solid #91e766;
1158
+ outline-offset: 0px;
1159
+ background: #fff;
1211
1160
  }
1212
- .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__popupDescription {
1213
- margin-top: 0.25rem;
1161
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__positive .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1162
+ color: #328707;
1214
1163
  }
1215
- .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__popupDescription p {
1216
- color: #535862;
1217
- font-size: 0.875rem;
1218
- font-style: normal;
1219
- font-weight: 400;
1220
- line-height: 1.25rem; /* 142.857% */
1221
- font-family: "Inter", sans-serif;
1164
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__negative {
1165
+ background: #fff;
1222
1166
  }
1223
- .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__typeIcon {
1224
- display: flex;
1225
- align-items: center;
1226
- justify-content: space-between;
1167
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__negative.MainButton-module__loading {
1168
+ cursor: no-drop;
1227
1169
  }
1228
- .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__typeIcon .Popup-module__icon {
1229
- display: grid;
1230
- place-items: center;
1231
- width: 3rem;
1232
- height: 3rem;
1233
- border-radius: 624.9375rem;
1170
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__negative:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
1171
+ background: #fff2f2 !important;
1234
1172
  }
1235
- .Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__templateWrapper {
1236
- width: 100%;
1237
- position: relative;
1173
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__negative.MainButton-module__disabled {
1174
+ background: #fff;
1175
+ cursor: not-allowed;
1238
1176
  }
1239
-
1240
- .Popup-module__dark.Popup-module__modalOverlay {
1241
- background: rgba(34, 38, 47, 0.4588235294);
1177
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__negative.MainButton-module__disabled .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1178
+ color: #7a7b80;
1242
1179
  }
1243
- .Popup-module__dark.Popup-module__modalOverlay .Popup-module__popupContainer {
1244
- background: #0c0e12;
1245
- /* Shadows/shadow-xl */
1246
- box-shadow: 0rem 1.25rem 1.5rem -0.25rem rgba(10, 13, 18, 0.08), 0rem 0.5rem 0.5rem -0.25rem rgba(10, 13, 18, 0.03), 0rem 0.1875rem 0.1875rem -0.0938rem rgba(10, 13, 18, 0.04);
1180
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__negative.MainButton-module__focused {
1181
+ outline: 2px solid #fcdcdc;
1182
+ outline-offset: 0px;
1183
+ background: #fff;
1247
1184
  }
1248
- .Popup-module__dark.Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader {
1249
- background: #0c0e12;
1185
+ button.MainButton-module__mainButton.MainButton-module__tertiary.MainButton-module__negative .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1186
+ color: #e3292f;
1250
1187
  }
1251
- .Popup-module__dark.Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__popupTitle h2 {
1252
- color: #f7f7f7;
1188
+ button.MainButton-module__mainButton.MainButton-module__tertiaryV2 {
1189
+ background: #fff;
1253
1190
  }
1254
- .Popup-module__dark.Popup-module__modalOverlay .Popup-module__popupContainer .Popup-module__popupHeader .Popup-module__popupDescription p {
1255
- color: #94979c;
1256
- }@font-face {
1257
- font-family: "Inter-Regular";
1258
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
1191
+ button.MainButton-module__mainButton.MainButton-module__tertiaryV2.MainButton-module__loading {
1192
+ cursor: no-drop;
1259
1193
  }
1260
- @font-face {
1261
- font-family: "Inter-SemiBold";
1262
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
1194
+ button.MainButton-module__mainButton.MainButton-module__tertiaryV2:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
1195
+ background: #ecf3ff !important;
1263
1196
  }
1264
- @font-face {
1265
- font-family: "Inter-Medium";
1266
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
1197
+ button.MainButton-module__mainButton.MainButton-module__tertiaryV2.MainButton-module__disabled {
1198
+ background: #f2f2f2;
1199
+ cursor: not-allowed;
1267
1200
  }
1268
- .Datepicker-module__datepickerContainer {
1269
- width: 100%;
1270
- user-select: none;
1271
- scroll-behavior: smooth;
1201
+ button.MainButton-module__mainButton.MainButton-module__tertiaryV2.MainButton-module__disabled .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1202
+ color: #7a7b80;
1272
1203
  }
1273
- .Datepicker-module__datepickerContainer::-webkit-scrollbar {
1274
- display: block !important;
1275
- width: 0;
1204
+ button.MainButton-module__mainButton.MainButton-module__tertiaryV2.MainButton-module__focused {
1205
+ outline: 2px solid #dee9fc;
1206
+ outline-offset: 0px;
1207
+ background: #fff;
1276
1208
  }
1277
- .Datepicker-module__datepickerContainer::-webkit-scrollbar-thumb {
1278
- opacity: 0;
1209
+ button.MainButton-module__mainButton.MainButton-module__tertiaryV2 .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1210
+ color: #0058ff;
1279
1211
  }
1280
- .Datepicker-module__datepickerContainer .Datepicker-module__datepickerInputWrapper {
1281
- width: 100%;
1282
- cursor: pointer;
1212
+ button.MainButton-module__mainButton.MainButton-module__tertiaryV3 {
1213
+ border: 1px solid #e6e6e6;
1214
+ background: #fff;
1283
1215
  }
1284
- .Datepicker-module__datepickerContainer .Datepicker-module__datepickerInputWrapper .Datepicker-module__datepickerLeftIcon {
1285
- display: flex;
1286
- align-items: center;
1287
- justify-content: center;
1216
+ button.MainButton-module__mainButton.MainButton-module__tertiaryV3.MainButton-module__loading {
1217
+ cursor: no-drop;
1288
1218
  }
1289
- .Datepicker-module__datepickerContainer .Datepicker-module__datepickerInputWrapper .Datepicker-module__datepickerRightIcon {
1290
- display: flex;
1291
- align-items: center;
1292
- justify-content: center;
1293
- cursor: pointer;
1294
- }@font-face {
1295
- font-family: "Inter-Regular";
1296
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
1219
+ button.MainButton-module__mainButton.MainButton-module__tertiaryV3:hover:not(.MainButton-module__disabled):not(.MainButton-module__loading) {
1220
+ border-color: #c1c2c7 !important;
1297
1221
  }
1298
- @font-face {
1299
- font-family: "Inter-SemiBold";
1300
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
1222
+ button.MainButton-module__mainButton.MainButton-module__tertiaryV3.MainButton-module__disabled {
1223
+ background: #fff;
1224
+ border: 1px solid #e6e6e6;
1225
+ cursor: not-allowed;
1301
1226
  }
1302
- @font-face {
1303
- font-family: "Inter-Medium";
1304
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
1227
+ button.MainButton-module__mainButton.MainButton-module__tertiaryV3.MainButton-module__disabled .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1228
+ color: #7a7b80;
1305
1229
  }
1306
- .Radio-module__radioWrapper {
1307
- width: 24px;
1308
- height: 24px;
1309
- border-radius: 50%;
1310
- overflow: hidden;
1311
- position: relative;
1312
- cursor: pointer;
1313
- transition: 0.2s;
1230
+ button.MainButton-module__mainButton.MainButton-module__tertiaryV3.MainButton-module__focused {
1231
+ border: 1px solid transparent;
1232
+ outline: 2px solid #dee9fc;
1233
+ outline-offset: 0px;
1234
+ background: #fff;
1235
+ }
1236
+ button.MainButton-module__mainButton.MainButton-module__tertiaryV3 .MainButton-module__mainButtonContent .MainButton-module__mainButtonLabel {
1237
+ color: #0058ff;
1314
1238
  }@font-face {
1315
- font-family: "Inter-Regular";
1316
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
1239
+ font-family: "Inter";
1240
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
1241
+ font-weight: 400;
1242
+ font-style: normal;
1243
+ font-display: swap;
1317
1244
  }
1318
1245
  @font-face {
1319
- font-family: "Inter-SemiBold";
1320
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
1246
+ font-family: "Inter";
1247
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
1248
+ font-weight: 500;
1249
+ font-style: normal;
1250
+ font-display: swap;
1321
1251
  }
1322
1252
  @font-face {
1323
- font-family: "Inter-Medium";
1324
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
1253
+ font-family: "Inter";
1254
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
1255
+ font-weight: 600;
1256
+ font-style: normal;
1257
+ font-display: swap;
1325
1258
  }
1326
1259
  .Tooltip-module__tooltipContainer {
1327
1260
  position: relative;
@@ -1424,165 +1357,144 @@ button.MainButton-module__mainButton.MainButton-module__tertiaryV3 .MainButton-m
1424
1357
  .Tooltip-module__dark.Tooltip-module__tooltipContainer .Tooltip-module__tooltipContent .Tooltip-module__tooltipText {
1425
1358
  color: rgba(12, 14, 18, 0.9);
1426
1359
  }@font-face {
1427
- font-family: "Inter-Regular";
1428
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
1360
+ font-family: "Inter";
1361
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
1362
+ font-weight: 400;
1363
+ font-style: normal;
1364
+ font-display: swap;
1429
1365
  }
1430
1366
  @font-face {
1431
- font-family: "Inter-SemiBold";
1432
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
1367
+ font-family: "Inter";
1368
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
1369
+ font-weight: 500;
1370
+ font-style: normal;
1371
+ font-display: swap;
1433
1372
  }
1434
1373
  @font-face {
1435
- font-family: "Inter-Medium";
1436
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
1437
- }
1438
- .TimePicker-module__timepickerWrapper {
1439
- user-select: none;
1440
- scroll-behavior: smooth;
1441
- width: 100%;
1442
- }
1443
- .TimePicker-module__timepickerWrapper * {
1444
- scrollbar-width: none;
1445
- }
1446
- .TimePicker-module__timepickerWrapper *::-webkit-scrollbar {
1447
- display: none;
1448
- }
1449
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerInputWrapper {
1450
- width: 100%;
1451
- }
1452
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerInputWrapper .TimePicker-module__dropdownRightIcon {
1453
- display: flex;
1454
- align-items: center;
1455
- gap: 8px;
1456
- margin: 8px;
1374
+ font-family: "Inter";
1375
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
1376
+ font-weight: 600;
1377
+ font-style: normal;
1378
+ font-display: swap;
1457
1379
  }
1458
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerInputWrapper .TimePicker-module__dropdownRightIcon .TimePicker-module__dropdownRightIconClose {
1459
- display: flex;
1460
- align-items: center;
1461
- justify-content: center;
1380
+ .Checkbox-module__checkboxWrapper {
1381
+ overflow: hidden;
1382
+ border: 2px solid #c1c2c7;
1383
+ background: #ffffff;
1384
+ position: relative;
1385
+ padding: 5px 4px;
1386
+ border-radius: 3px;
1462
1387
  cursor: pointer;
1388
+ transition: 0.2;
1389
+ display: grid;
1390
+ place-items: center;
1391
+ width: 18px;
1392
+ height: 18px;
1393
+ user-select: none;
1394
+ -webkit-user-select: none;
1395
+ -moz-user-select: none;
1396
+ -ms-user-select: none;
1463
1397
  }
1464
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerInputWrapper .TimePicker-module__dropdownRightIcon .TimePicker-module__dropdownRightIconArrow {
1465
- display: flex;
1466
- align-items: center;
1467
- justify-content: center;
1468
- cursor: pointer;
1469
- transition: transform 0.2s ease-in-out;
1398
+ .Checkbox-module__checkboxWrapper .Checkbox-module__checkMark {
1399
+ display: grid;
1400
+ place-items: center;
1470
1401
  }
1471
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerInputWrapper .TimePicker-module__dropdownRightIcon.TimePicker-module__focused .TimePicker-module__dropdownRightIconArrow {
1472
- transform: rotate(180deg);
1402
+ .Checkbox-module__checkboxWrapper .Checkbox-module__checkMark svg {
1403
+ width: 0.625rem;
1404
+ user-select: none;
1405
+ pointer-events: none;
1473
1406
  }
1474
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper {
1475
- width: 218px;
1476
- border-radius: 12px;
1477
- box-shadow: 0px 2px 4px 0px rgba(19, 19, 20, 0.04);
1478
- border: 1px solid #e6e6e6;
1479
- background: #fff;
1480
- display: flex;
1481
- flex-direction: column;
1482
- gap: 8px;
1407
+ .Checkbox-module__checkboxWrapper.Checkbox-module__error {
1408
+ border-color: #e3292f;
1483
1409
  }
1484
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownHeader {
1485
- padding: 8px 8px 0 8px;
1410
+ .Checkbox-module__checkboxWrapper.Checkbox-module__error.Checkbox-module__checked {
1411
+ background: #e3292f;
1412
+ border: none;
1486
1413
  }
1487
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownHeader .TimePicker-module__timepickerDropdownHeaderButtons {
1488
- width: 100%;
1489
- display: flex;
1490
- justify-content: space-between;
1491
- gap: 2px;
1492
- border-radius: 8px;
1493
- background: #f2f2f2;
1494
- padding: 2px;
1414
+ .Checkbox-module__checkboxWrapper.Checkbox-module__checked {
1415
+ background: #0058ff;
1416
+ border: none;
1495
1417
  }
1496
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownHeader p {
1497
- padding: 5px 20px;
1498
- color: #646569;
1499
- font-feature-settings: "liga" off, "clig" off;
1500
- font-family: "Inter-Regular", sans-serif;
1501
- font-size: 14px;
1502
- font-style: normal;
1503
- font-weight: 400;
1504
- line-height: 24px; /* 171.429% */
1505
- letter-spacing: 0.1px;
1506
- cursor: pointer;
1418
+ .Checkbox-module__checkboxWrapper.Checkbox-module__checked.Checkbox-module__disabled {
1419
+ background: #95969c;
1507
1420
  }
1508
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownHeader p.TimePicker-module__active {
1509
- color: #131314;
1510
- border-radius: 6px 6px 6px 6px;
1511
- background: #fff;
1512
- box-shadow: 0px 2px 4px 0px rgba(19, 19, 20, 0.04);
1421
+ .Checkbox-module__checkboxWrapper.Checkbox-module__disabled {
1422
+ cursor: not-allowed;
1423
+ border-color: #c1c2c7 !important;
1513
1424
  }
1514
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownBody {
1515
- width: 100%;
1516
- display: flex;
1517
- border-top: 1px solid #e6e6e6;
1518
- border-bottom: 1px solid #e6e6e6;
1425
+
1426
+ .Checkbox-module__Namespace_Hr.Checkbox-module__checkboxWrapper.Checkbox-module__checked {
1427
+ background: #32b45f;
1428
+ border: 0.0625rem solid #32b45f;
1519
1429
  }
1520
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownBody .TimePicker-module__timepickerDropdownBodyHours {
1521
- width: 50%;
1522
- display: flex;
1523
- flex-direction: column;
1524
- align-items: center;
1525
- height: 230px;
1526
- overflow-y: auto;
1527
- border-right: 1px solid #e6e6e6;
1528
- padding: 8px;
1430
+ .Checkbox-module__Namespace_Hr.Checkbox-module__checkboxWrapper.Checkbox-module__checked:hover {
1431
+ background: #24994d;
1432
+ border: 0.0625rem solid #24994d;
1529
1433
  }
1530
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownBody .TimePicker-module__timepickerDropdownBodyMinutes {
1531
- width: 50%;
1532
- display: flex;
1533
- flex-direction: column;
1534
- align-items: center;
1535
- height: 230px;
1536
- overflow-y: auto;
1537
- padding: 8px;
1434
+
1435
+ .Checkbox-module__dark {
1436
+ background: #373a41;
1437
+ border: unset;
1538
1438
  }
1539
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownBody .TimePicker-module__timepickerDropdownBodyAmPm {
1540
- width: 50%;
1541
- display: flex;
1542
- flex-direction: column;
1543
- align-items: center;
1544
- height: 230px;
1545
- overflow-y: auto;
1546
- border-left: 1px solid #e6e6e6;
1547
- padding: 8px;
1439
+ .Checkbox-module__dark.Checkbox-module__checked {
1440
+ background: #0158ff;
1441
+ border: 0.0625rem solid #0158ff;
1548
1442
  }
1549
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownBody p {
1550
- padding: 6px 10px;
1551
- border-radius: 4px;
1552
- cursor: pointer;
1553
- width: 100%;
1554
- color: #131314;
1555
- text-align: center;
1556
- font-feature-settings: "liga" off, "clig" off;
1557
- text-overflow: ellipsis;
1558
- /* UI/14 regular */
1559
- font-family: "Inter-Regular", sans-serif;
1560
- font-size: 14px;
1561
- font-style: normal;
1443
+ .Checkbox-module__dark.Checkbox-module__checked.Checkbox-module__disabled svg path {
1444
+ stroke: #d5d7da;
1445
+ }
1446
+ .Checkbox-module__dark.Checkbox-module__disabled {
1447
+ background: #8d8d8d !important;
1448
+ border: 0.0625rem solid #373a41 !important;
1449
+ }@font-face {
1450
+ font-family: "Inter";
1451
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
1562
1452
  font-weight: 400;
1563
- line-height: 24px; /* 171.429% */
1564
- letter-spacing: 0.1px;
1453
+ font-style: normal;
1454
+ font-display: swap;
1565
1455
  }
1566
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownBody p:hover {
1567
- background: #fafafa;
1456
+ @font-face {
1457
+ font-family: "Inter";
1458
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
1459
+ font-weight: 500;
1460
+ font-style: normal;
1461
+ font-display: swap;
1568
1462
  }
1569
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownBody p.TimePicker-module__active {
1570
- background: #ECF3FF;
1571
- color: #0058FF;
1463
+ @font-face {
1464
+ font-family: "Inter";
1465
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
1466
+ font-weight: 600;
1467
+ font-style: normal;
1468
+ font-display: swap;
1572
1469
  }
1573
- .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownFooter {
1574
- padding: 8px;
1470
+ .Radio-module__radioWrapper {
1471
+ width: 24px;
1472
+ height: 24px;
1473
+ border-radius: 50%;
1474
+ overflow: hidden;
1475
+ position: relative;
1476
+ cursor: pointer;
1477
+ transition: 0.2s;
1575
1478
  }@font-face {
1576
- font-family: "Inter-Regular";
1577
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
1479
+ font-family: "Inter";
1480
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
1481
+ font-weight: 400;
1482
+ font-style: normal;
1483
+ font-display: swap;
1578
1484
  }
1579
1485
  @font-face {
1580
- font-family: "Inter-SemiBold";
1581
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
1486
+ font-family: "Inter";
1487
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
1488
+ font-weight: 500;
1489
+ font-style: normal;
1490
+ font-display: swap;
1582
1491
  }
1583
1492
  @font-face {
1584
- font-family: "Inter-Medium";
1585
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
1493
+ font-family: "Inter";
1494
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
1495
+ font-weight: 600;
1496
+ font-style: normal;
1497
+ font-display: swap;
1586
1498
  }
1587
1499
  .ActionDropdown-module__actionDropdownContainer {
1588
1500
  width: 100%;
@@ -1657,16 +1569,25 @@ button.MainButton-module__mainButton.MainButton-module__tertiaryV3 .MainButton-m
1657
1569
  border-radius: 4px;
1658
1570
  background: #f2f2f2;
1659
1571
  }@font-face {
1660
- font-family: "Inter-Regular";
1661
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
1572
+ font-family: "Inter";
1573
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
1574
+ font-weight: 400;
1575
+ font-style: normal;
1576
+ font-display: swap;
1662
1577
  }
1663
1578
  @font-face {
1664
- font-family: "Inter-SemiBold";
1665
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
1579
+ font-family: "Inter";
1580
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
1581
+ font-weight: 500;
1582
+ font-style: normal;
1583
+ font-display: swap;
1666
1584
  }
1667
1585
  @font-face {
1668
- font-family: "Inter-Medium";
1669
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
1586
+ font-family: "Inter";
1587
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
1588
+ font-weight: 600;
1589
+ font-style: normal;
1590
+ font-display: swap;
1670
1591
  }
1671
1592
  .Dropdown-module__dropdownWrapper {
1672
1593
  user-select: none;
@@ -1898,16 +1819,230 @@ button.MainButton-module__mainButton.MainButton-module__tertiaryV3 .MainButton-m
1898
1819
  line-height: 24px; /* 171.429% */
1899
1820
  letter-spacing: 0.1px;
1900
1821
  }@font-face {
1901
- font-family: "Inter-Regular";
1902
- src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
1822
+ font-family: "Inter";
1823
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
1824
+ font-weight: 400;
1825
+ font-style: normal;
1826
+ font-display: swap;
1903
1827
  }
1904
1828
  @font-face {
1905
- font-family: "Inter-SemiBold";
1906
- src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
1829
+ font-family: "Inter";
1830
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
1831
+ font-weight: 500;
1832
+ font-style: normal;
1833
+ font-display: swap;
1907
1834
  }
1908
1835
  @font-face {
1909
- font-family: "Inter-Medium";
1910
- src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
1836
+ font-family: "Inter";
1837
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
1838
+ font-weight: 600;
1839
+ font-style: normal;
1840
+ font-display: swap;
1841
+ }
1842
+ .TimePicker-module__timepickerWrapper {
1843
+ user-select: none;
1844
+ scroll-behavior: smooth;
1845
+ width: 100%;
1846
+ }
1847
+ .TimePicker-module__timepickerWrapper * {
1848
+ scrollbar-width: none;
1849
+ }
1850
+ .TimePicker-module__timepickerWrapper *::-webkit-scrollbar {
1851
+ display: none;
1852
+ }
1853
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerInputWrapper {
1854
+ width: 100%;
1855
+ }
1856
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerInputWrapper .TimePicker-module__dropdownRightIcon {
1857
+ display: flex;
1858
+ align-items: center;
1859
+ gap: 8px;
1860
+ margin: 8px;
1861
+ }
1862
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerInputWrapper .TimePicker-module__dropdownRightIcon .TimePicker-module__dropdownRightIconClose {
1863
+ display: flex;
1864
+ align-items: center;
1865
+ justify-content: center;
1866
+ cursor: pointer;
1867
+ }
1868
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerInputWrapper .TimePicker-module__dropdownRightIcon .TimePicker-module__dropdownRightIconArrow {
1869
+ display: flex;
1870
+ align-items: center;
1871
+ justify-content: center;
1872
+ cursor: pointer;
1873
+ transition: transform 0.2s ease-in-out;
1874
+ }
1875
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerInputWrapper .TimePicker-module__dropdownRightIcon.TimePicker-module__focused .TimePicker-module__dropdownRightIconArrow {
1876
+ transform: rotate(180deg);
1877
+ }
1878
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper {
1879
+ width: 218px;
1880
+ border-radius: 12px;
1881
+ box-shadow: 0px 2px 4px 0px rgba(19, 19, 20, 0.04);
1882
+ border: 1px solid #e6e6e6;
1883
+ background: #fff;
1884
+ display: flex;
1885
+ flex-direction: column;
1886
+ gap: 8px;
1887
+ }
1888
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownHeader {
1889
+ padding: 8px 8px 0 8px;
1890
+ }
1891
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownHeader .TimePicker-module__timepickerDropdownHeaderButtons {
1892
+ width: 100%;
1893
+ display: flex;
1894
+ justify-content: space-between;
1895
+ gap: 2px;
1896
+ border-radius: 8px;
1897
+ background: #f2f2f2;
1898
+ padding: 2px;
1899
+ }
1900
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownHeader p {
1901
+ padding: 5px 20px;
1902
+ color: #646569;
1903
+ font-feature-settings: "liga" off, "clig" off;
1904
+ font-family: "Inter-Regular", sans-serif;
1905
+ font-size: 14px;
1906
+ font-style: normal;
1907
+ font-weight: 400;
1908
+ line-height: 24px; /* 171.429% */
1909
+ letter-spacing: 0.1px;
1910
+ cursor: pointer;
1911
+ }
1912
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownHeader p.TimePicker-module__active {
1913
+ color: #131314;
1914
+ border-radius: 6px 6px 6px 6px;
1915
+ background: #fff;
1916
+ box-shadow: 0px 2px 4px 0px rgba(19, 19, 20, 0.04);
1917
+ }
1918
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownBody {
1919
+ width: 100%;
1920
+ display: flex;
1921
+ border-top: 1px solid #e6e6e6;
1922
+ border-bottom: 1px solid #e6e6e6;
1923
+ }
1924
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownBody .TimePicker-module__timepickerDropdownBodyHours {
1925
+ width: 50%;
1926
+ display: flex;
1927
+ flex-direction: column;
1928
+ align-items: center;
1929
+ height: 230px;
1930
+ overflow-y: auto;
1931
+ border-right: 1px solid #e6e6e6;
1932
+ padding: 8px;
1933
+ }
1934
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownBody .TimePicker-module__timepickerDropdownBodyMinutes {
1935
+ width: 50%;
1936
+ display: flex;
1937
+ flex-direction: column;
1938
+ align-items: center;
1939
+ height: 230px;
1940
+ overflow-y: auto;
1941
+ padding: 8px;
1942
+ }
1943
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownBody .TimePicker-module__timepickerDropdownBodyAmPm {
1944
+ width: 50%;
1945
+ display: flex;
1946
+ flex-direction: column;
1947
+ align-items: center;
1948
+ height: 230px;
1949
+ overflow-y: auto;
1950
+ border-left: 1px solid #e6e6e6;
1951
+ padding: 8px;
1952
+ }
1953
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownBody p {
1954
+ padding: 6px 10px;
1955
+ border-radius: 4px;
1956
+ cursor: pointer;
1957
+ width: 100%;
1958
+ color: #131314;
1959
+ text-align: center;
1960
+ font-feature-settings: "liga" off, "clig" off;
1961
+ text-overflow: ellipsis;
1962
+ /* UI/14 regular */
1963
+ font-family: "Inter-Regular", sans-serif;
1964
+ font-size: 14px;
1965
+ font-style: normal;
1966
+ font-weight: 400;
1967
+ line-height: 24px; /* 171.429% */
1968
+ letter-spacing: 0.1px;
1969
+ }
1970
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownBody p:hover {
1971
+ background: #fafafa;
1972
+ }
1973
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownBody p.TimePicker-module__active {
1974
+ background: #ECF3FF;
1975
+ color: #0058FF;
1976
+ }
1977
+ .TimePicker-module__timepickerWrapper .TimePicker-module__timepickerDropdownWrapper .TimePicker-module__timepickerDropdownFooter {
1978
+ padding: 8px;
1979
+ }@font-face {
1980
+ font-family: "Inter";
1981
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
1982
+ font-weight: 400;
1983
+ font-style: normal;
1984
+ font-display: swap;
1985
+ }
1986
+ @font-face {
1987
+ font-family: "Inter";
1988
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
1989
+ font-weight: 500;
1990
+ font-style: normal;
1991
+ font-display: swap;
1992
+ }
1993
+ @font-face {
1994
+ font-family: "Inter";
1995
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
1996
+ font-weight: 600;
1997
+ font-style: normal;
1998
+ font-display: swap;
1999
+ }
2000
+ .Datepicker-module__datepickerContainer {
2001
+ width: 100%;
2002
+ user-select: none;
2003
+ scroll-behavior: smooth;
2004
+ }
2005
+ .Datepicker-module__datepickerContainer::-webkit-scrollbar {
2006
+ display: block !important;
2007
+ width: 0;
2008
+ }
2009
+ .Datepicker-module__datepickerContainer::-webkit-scrollbar-thumb {
2010
+ opacity: 0;
2011
+ }
2012
+ .Datepicker-module__datepickerContainer .Datepicker-module__datepickerInputWrapper {
2013
+ width: 100%;
2014
+ cursor: pointer;
2015
+ }
2016
+ .Datepicker-module__datepickerContainer .Datepicker-module__datepickerInputWrapper .Datepicker-module__datepickerLeftIcon {
2017
+ display: flex;
2018
+ align-items: center;
2019
+ justify-content: center;
2020
+ }
2021
+ .Datepicker-module__datepickerContainer .Datepicker-module__datepickerInputWrapper .Datepicker-module__datepickerRightIcon {
2022
+ display: flex;
2023
+ align-items: center;
2024
+ justify-content: center;
2025
+ cursor: pointer;
2026
+ }@font-face {
2027
+ font-family: "Inter";
2028
+ src: url("../../assets/fonts/Inter_24pt-Regular.woff2") format("woff2");
2029
+ font-weight: 400;
2030
+ font-style: normal;
2031
+ font-display: swap;
2032
+ }
2033
+ @font-face {
2034
+ font-family: "Inter";
2035
+ src: url("../../assets/fonts/Inter_24pt-Medium.woff2") format("woff2");
2036
+ font-weight: 500;
2037
+ font-style: normal;
2038
+ font-display: swap;
2039
+ }
2040
+ @font-face {
2041
+ font-family: "Inter";
2042
+ src: url("../../assets/fonts/Inter_24pt-SemiBold.woff2") format("woff2");
2043
+ font-weight: 600;
2044
+ font-style: normal;
2045
+ font-display: swap;
1911
2046
  }
1912
2047
  .Calendar-module__datePicker {
1913
2048
  z-index: 150;