indicator-ui 0.1.109 → 0.1.111

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist/index.css +252 -243
  2. package/dist/index.css.map +1 -1
  3. package/dist/index.js +277 -38
  4. package/dist/index.js.map +1 -1
  5. package/dist/scss/styles/mixins/fnt.scss +1 -1
  6. package/dist/scss/ui/Buttons/styles/mixins/baseButton.scss +35 -2
  7. package/dist/scss/ui/Buttons/styles/mixins/properties/large.scss +13 -7
  8. package/dist/scss/ui/Buttons/styles/mixins/properties/link-black.scss +4 -0
  9. package/dist/scss/ui/Buttons/styles/mixins/properties/link-color.scss +4 -0
  10. package/dist/scss/ui/Buttons/styles/mixins/properties/link-dark-theme.scss +4 -0
  11. package/dist/scss/ui/Buttons/styles/mixins/properties/link-gray.scss +4 -0
  12. package/dist/scss/ui/Buttons/styles/mixins/properties/medium.scss +13 -7
  13. package/dist/scss/ui/Buttons/styles/mixins/properties/primary.scss +4 -0
  14. package/dist/scss/ui/Buttons/styles/mixins/properties/secondary-color.scss +8 -0
  15. package/dist/scss/ui/Buttons/styles/mixins/properties/secondary-gray.scss +8 -0
  16. package/dist/scss/ui/Buttons/styles/mixins/properties/small.scss +13 -7
  17. package/dist/scss/ui/Buttons/styles/mixins/properties/tab-active.scss +4 -0
  18. package/dist/scss/ui/Buttons/styles/mixins/properties/tab.scss +4 -0
  19. package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-color.scss +9 -0
  20. package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-gray.scss +5 -0
  21. package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-white.scss +8 -0
  22. package/dist/scss/ui/Buttons/styles/mixins/properties/ultra.scss +13 -7
  23. package/dist/scss/ui/Buttons/styles/mixins/properties/warning-link-color.scss +4 -0
  24. package/dist/scss/ui/Buttons/styles/mixins/properties/warning-secondary-color.scss +4 -0
  25. package/dist/scss/ui/Tag/styles/properties/medium.scss +1 -1
  26. package/dist/scss/ui/Tag/styles/properties/small.scss +1 -1
  27. package/dist/ts/src/assets/icons/index.d.ts +2 -0
  28. package/dist/ts/src/hooks/controlsInput/index.d.ts +1 -0
  29. package/dist/ts/src/hooks/controlsInput/useDrag.d.ts +16 -0
  30. package/dist/ts/src/test/pages/UseDragPage.d.ts +1 -0
  31. package/dist/ts/src/test/pages/index.d.ts +1 -0
  32. package/dist/ts/src/ui/Buttons/types/ButtonTypes.d.ts +5 -2
  33. package/dist/ts/src/ui/Buttons/ui/Button.d.ts +3 -20
  34. package/dist/ts/src/ui/formFields/FormPaginatedSelectField/hooks/useFormPaginatedSelectField.d.ts +5 -5
  35. package/dist/ts/src/ui/formFields/FormPaginatedSelectField/hooks/useSelectFieldState.d.ts +1 -1
  36. package/package.json +1 -1
  37. package/dist/scss/ui/Buttons/index.scss +0 -1
  38. package/dist/scss/ui/Buttons/styles/index.scss +0 -1
package/dist/index.css CHANGED
@@ -201,30 +201,71 @@
201
201
  /*!*******************************************************************************************************************************************************************************************************************************************************************!*\
202
202
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/Buttons/styles/Buttons.module.scss ***!
203
203
  \*******************************************************************************************************************************************************************************************************************************************************************/
204
+ @keyframes Buttons-module__loading___TSWTL {
205
+ from {
206
+ transform: rotate(0deg);
207
+ }
208
+ to {
209
+ transform: rotate(360deg);
210
+ }
211
+ }
204
212
  .Buttons-module__button___I3yLe {
205
213
  cursor: pointer;
206
214
  transition: background-color ease-out 0.2s;
207
215
  border-radius: 8px;
216
+ position: relative;
208
217
  }
209
218
  .Buttons-module__button___I3yLe {
210
219
  display: flex;
211
- flex-direction: row;
212
220
  justify-content: center;
213
221
  align-items: center;
214
222
  }
223
+ .Buttons-module__button___I3yLe .Buttons-module__loader___RXJzg {
224
+ width: fit-content;
225
+ height: fit-content;
226
+ }
227
+ .Buttons-module__button___I3yLe .Buttons-module__loader___RXJzg {
228
+ display: flex;
229
+ justify-content: center;
230
+ align-items: center;
231
+ }
232
+ .Buttons-module__button___I3yLe .Buttons-module__loader___RXJzg svg {
233
+ animation: Buttons-module__loading___TSWTL 0.9s linear infinite;
234
+ }
215
235
  .Buttons-module__button___I3yLe .Buttons-module__icon___U2AOU {
216
236
  width: fit-content;
217
237
  height: fit-content;
218
238
  }
219
239
  .Buttons-module__button___I3yLe .Buttons-module__icon___U2AOU {
220
240
  display: flex;
221
- flex-direction: row;
222
241
  justify-content: center;
223
242
  align-items: center;
224
243
  }
225
244
  .Buttons-module__button___I3yLe .Buttons-module__icon___U2AOU svg * {
226
245
  transition: stroke ease-out 0.2s;
227
246
  }
247
+ .Buttons-module__button___I3yLe .Buttons-module__counter___Q1fkM {
248
+ min-width: 24px;
249
+ height: 24px;
250
+ padding: 4px 2px;
251
+ border-radius: 12px;
252
+ position: absolute;
253
+ top: 0;
254
+ left: 0;
255
+ transform: translate(-2px, -2px);
256
+ text-align: center;
257
+ background-color: var(--blue-dark-500);
258
+ }
259
+ .Buttons-module__button___I3yLe .Buttons-module__counter___Q1fkM {
260
+ font-size: 14px;
261
+ line-height: 16px;
262
+ color: var(--base-white);
263
+ font-weight: 500;
264
+ font-family: var(--golos);
265
+ font-stretch: normal;
266
+ font-style: normal;
267
+ font-variant: normal;
268
+ }
228
269
  .Buttons-module__button___I3yLe .Buttons-module__content___lPb5_ {
229
270
  display: flex;
230
271
  align-items: center;
@@ -252,6 +293,11 @@
252
293
  .Buttons-module__button___I3yLe.Buttons-module__small___x1NQN {
253
294
  padding: 9px;
254
295
  }
296
+ .Buttons-module__button___I3yLe.Buttons-module__small___x1NQN .Buttons-module__loader___RXJzg svg {
297
+ flex: none;
298
+ width: 16px;
299
+ height: 16px;
300
+ }
255
301
  .Buttons-module__button___I3yLe.Buttons-module__small___x1NQN .Buttons-module__icon___U2AOU svg {
256
302
  flex: none;
257
303
  width: 16px;
@@ -265,17 +311,22 @@
265
311
  font-size: 14px;
266
312
  line-height: 16px;
267
313
  font-weight: 500;
268
- font-family: var(--golos-ui);
314
+ font-family: var(--golos);
269
315
  }
270
316
  .Buttons-module__button___I3yLe.Buttons-module__small___x1NQN .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
271
317
  font-size: 14px;
272
318
  line-height: 16px;
273
319
  font-weight: 400;
274
- font-family: var(--golos-ui);
320
+ font-family: var(--golos);
275
321
  }
276
322
  .Buttons-module__button___I3yLe.Buttons-module__medium___BZfsd {
277
323
  padding: 9px;
278
324
  }
325
+ .Buttons-module__button___I3yLe.Buttons-module__medium___BZfsd .Buttons-module__loader___RXJzg svg {
326
+ flex: none;
327
+ width: 20px;
328
+ height: 20px;
329
+ }
279
330
  .Buttons-module__button___I3yLe.Buttons-module__medium___BZfsd .Buttons-module__icon___U2AOU svg {
280
331
  flex: none;
281
332
  width: 20px;
@@ -289,17 +340,22 @@
289
340
  font-size: 14px;
290
341
  line-height: 20px;
291
342
  font-weight: 500;
292
- font-family: var(--golos-ui);
343
+ font-family: var(--golos);
293
344
  }
294
345
  .Buttons-module__button___I3yLe.Buttons-module__medium___BZfsd .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
295
346
  font-size: 14px;
296
347
  line-height: 20px;
297
348
  font-weight: 400;
298
- font-family: var(--golos-ui);
349
+ font-family: var(--golos);
299
350
  }
300
351
  .Buttons-module__button___I3yLe.Buttons-module__large____KUDT {
301
352
  padding: 11px;
302
353
  }
354
+ .Buttons-module__button___I3yLe.Buttons-module__large____KUDT .Buttons-module__loader___RXJzg svg {
355
+ flex: none;
356
+ width: 20px;
357
+ height: 20px;
358
+ }
303
359
  .Buttons-module__button___I3yLe.Buttons-module__large____KUDT .Buttons-module__icon___U2AOU svg {
304
360
  flex: none;
305
361
  width: 20px;
@@ -313,17 +369,22 @@
313
369
  font-size: 16px;
314
370
  line-height: 20px;
315
371
  font-weight: 500;
316
- font-family: var(--golos-ui);
372
+ font-family: var(--golos);
317
373
  }
318
374
  .Buttons-module__button___I3yLe.Buttons-module__large____KUDT .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
319
375
  font-size: 16px;
320
376
  line-height: 20px;
321
377
  font-weight: 400;
322
- font-family: var(--golos-ui);
378
+ font-family: var(--golos);
323
379
  }
324
380
  .Buttons-module__button___I3yLe.Buttons-module__ultra___zBezN {
325
381
  padding: 17px;
326
382
  }
383
+ .Buttons-module__button___I3yLe.Buttons-module__ultra___zBezN .Buttons-module__loader___RXJzg svg {
384
+ flex: none;
385
+ width: 24px;
386
+ height: 24px;
387
+ }
327
388
  .Buttons-module__button___I3yLe.Buttons-module__ultra___zBezN .Buttons-module__icon___U2AOU svg {
328
389
  flex: none;
329
390
  width: 24px;
@@ -337,13 +398,13 @@
337
398
  font-size: 18px;
338
399
  line-height: 24px;
339
400
  font-weight: 500;
340
- font-family: var(--golos-ui);
401
+ font-family: var(--golos);
341
402
  }
342
403
  .Buttons-module__button___I3yLe.Buttons-module__ultra___zBezN .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
343
404
  font-size: 18px;
344
405
  line-height: 24px;
345
406
  font-weight: 400;
346
- font-family: var(--golos-ui);
407
+ font-family: var(--golos);
347
408
  }
348
409
  .Buttons-module__button___I3yLe.Buttons-module__primary____crHN {
349
410
  border-radius: 8px;
@@ -351,6 +412,9 @@
351
412
  border: 1px solid transparent;
352
413
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
353
414
  }
415
+ .Buttons-module__button___I3yLe.Buttons-module__primary____crHN .Buttons-module__loader___RXJzg svg * {
416
+ stroke: var(--base-white);
417
+ }
354
418
  .Buttons-module__button___I3yLe.Buttons-module__primary____crHN .Buttons-module__icon___U2AOU svg * {
355
419
  stroke: var(--base-white);
356
420
  }
@@ -370,25 +434,15 @@
370
434
  .Buttons-module__button___I3yLe.Buttons-module__primary____crHN:disabled, .Buttons-module__button___I3yLe.Buttons-module__primary____crHN.Buttons-module__disabled___INiFx {
371
435
  opacity: 0.3;
372
436
  }
373
- .Buttons-module__button___I3yLe.Buttons-module__primaryDarkTheme___hud24 {
374
- background-color: var(--rose-500);
375
- }
376
- @media only screen and (min-width: 1024px) {
377
- .Buttons-module__button___I3yLe.Buttons-module__primaryDarkTheme___hud24:not(.Buttons-module__disabled___INiFx):not(:disabled):hover {
378
- background-color: var(--rose-600);
379
- }
380
- }
381
- @media (min-width: 481px) and (max-width: 1279px) {
382
- .Buttons-module__button___I3yLe.Buttons-module__primaryDarkTheme___hud24:not(.Buttons-module__disabled___INiFx):not(:disabled):active {
383
- background-color: var(--rose-600);
384
- }
385
- }
386
437
  .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ {
387
438
  border-radius: 8px;
388
439
  background-color: var(--base-white);
389
440
  border: 1px solid var(--primary-200);
390
441
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
391
442
  }
443
+ .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ .Buttons-module__loader___RXJzg svg * {
444
+ stroke: var(--primary-500);
445
+ }
392
446
  .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ .Buttons-module__icon___U2AOU svg * {
393
447
  stroke: var(--primary-500);
394
448
  }
@@ -410,34 +464,15 @@
410
464
  .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ:disabled, .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ.Buttons-module__disabled___INiFx {
411
465
  opacity: 0.5;
412
466
  }
413
- .Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU {
414
- background-color: transparent;
415
- border: 1px solid var(--rose-900);
416
- }
417
- .Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU .Buttons-module__icon___U2AOU svg * {
418
- stroke: var(--rose-500);
419
- }
420
- .Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
421
- color: var(--rose-500);
422
- }
423
- @media only screen and (min-width: 1024px) {
424
- .Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU:not(.Buttons-module__disabled___INiFx):not(:disabled):hover {
425
- background-color: var(--rose-950);
426
- border: 1px solid var(--rose-700);
427
- }
428
- }
429
- @media (min-width: 481px) and (max-width: 1279px) {
430
- .Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU:not(.Buttons-module__disabled___INiFx):not(:disabled):active {
431
- background-color: var(--rose-950);
432
- border: 1px solid var(--rose-700);
433
- }
434
- }
435
467
  .Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne {
436
468
  border-radius: 8px;
437
469
  background-color: var(--base-white);
438
470
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
439
471
  border: 1px solid var(--gray-300);
440
472
  }
473
+ .Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne .Buttons-module__loader___RXJzg svg * {
474
+ stroke: var(--gray-700);
475
+ }
441
476
  .Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne .Buttons-module__icon___U2AOU svg * {
442
477
  stroke: var(--gray-700);
443
478
  }
@@ -465,37 +500,12 @@
465
500
  .Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne:disabled, .Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne.Buttons-module__disabled___INiFx {
466
501
  opacity: 0.5;
467
502
  }
468
- .Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy {
469
- background-color: transparent;
470
- border: 1px solid var(--gray-iron-700);
471
- }
472
- .Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy .Buttons-module__icon___U2AOU svg * {
473
- stroke: var(--gray-iron-200);
474
- }
475
- .Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
476
- color: var(--gray-iron-200);
477
- }
478
- @media only screen and (min-width: 1024px) {
479
- .Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy:not(.Buttons-module__disabled___INiFx):not(:disabled):hover {
480
- background-color: var(--gray-iron-800);
481
- border: 1px solid var(--gray-iron-700);
482
- }
483
- .Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__text___htxqX {
484
- color: var(--gray-iron-200);
485
- }
486
- }
487
- @media (min-width: 481px) and (max-width: 1279px) {
488
- .Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy:not(.Buttons-module__disabled___INiFx):not(:disabled):active {
489
- background-color: var(--gray-iron-800);
490
- border: 1px solid var(--gray-iron-700);
491
- }
492
- .Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__text___htxqX {
493
- color: var(--gray-iron-200);
494
- }
495
- }
496
503
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq {
497
504
  border: 1px solid transparent;
498
505
  }
506
+ .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq .Buttons-module__loader___RXJzg svg * {
507
+ stroke: var(--primary-100);
508
+ }
499
509
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq .Buttons-module__icon___U2AOU svg * {
500
510
  stroke: var(--primary-100);
501
511
  }
@@ -521,31 +531,12 @@
521
531
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq:disabled, .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq.Buttons-module__disabled___INiFx {
522
532
  opacity: 0.5;
523
533
  }
524
- .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84 .Buttons-module__icon___U2AOU svg * {
525
- stroke: var(--rose-100);
526
- }
527
- .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84 .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84 .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
528
- color: var(--rose-100);
529
- }
530
- @media only screen and (min-width: 1024px) {
531
- .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
532
- color: var(--base-white);
533
- }
534
- .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__icon___U2AOU svg * {
535
- stroke: var(--base-white);
536
- }
537
- }
538
- @media (min-width: 481px) and (max-width: 1279px) {
539
- .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
540
- color: var(--base-white);
541
- }
542
- .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__icon___U2AOU svg * {
543
- stroke: var(--base-white);
544
- }
545
- }
546
534
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw {
547
535
  border: 1px solid transparent;
548
536
  }
537
+ .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw .Buttons-module__loader___RXJzg svg * {
538
+ stroke: var(--primary-500);
539
+ }
549
540
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw .Buttons-module__icon___U2AOU svg * {
550
541
  stroke: var(--primary-500);
551
542
  }
@@ -571,31 +562,12 @@
571
562
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:disabled, .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw.Buttons-module__disabled___INiFx {
572
563
  opacity: 0.5;
573
564
  }
574
- .Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk .Buttons-module__icon___U2AOU svg * {
575
- stroke: var(--rose-500);
576
- }
577
- .Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
578
- color: var(--rose-500);
579
- }
580
- @media only screen and (min-width: 1024px) {
581
- .Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
582
- color: var(--rose-700);
583
- }
584
- .Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__icon___U2AOU svg * {
585
- stroke: var(--rose-700);
586
- }
587
- }
588
- @media (min-width: 481px) and (max-width: 1279px) {
589
- .Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
590
- color: var(--rose-700);
591
- }
592
- .Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__icon___U2AOU svg * {
593
- stroke: var(--rose-700);
594
- }
595
- }
596
565
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu {
597
566
  border: 1px solid transparent;
598
567
  }
568
+ .Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu .Buttons-module__loader___RXJzg svg * {
569
+ stroke: var(--gray-700);
570
+ }
599
571
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu .Buttons-module__icon___U2AOU svg * {
600
572
  stroke: var(--gray-700);
601
573
  }
@@ -625,6 +597,9 @@
625
597
  padding: 0 !important;
626
598
  gap: 4px;
627
599
  }
600
+ .Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN .Buttons-module__loader___RXJzg svg * {
601
+ stroke: var(--primary-500);
602
+ }
628
603
  .Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN .Buttons-module__icon___U2AOU svg * {
629
604
  stroke: var(--primary-500);
630
605
  }
@@ -657,6 +632,9 @@
657
632
  padding: 0 !important;
658
633
  gap: 4px;
659
634
  }
635
+ .Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t .Buttons-module__loader___RXJzg svg * {
636
+ stroke: var(--gray-700);
637
+ }
660
638
  .Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t .Buttons-module__icon___U2AOU svg * {
661
639
  stroke: var(--gray-700);
662
640
  }
@@ -689,6 +667,9 @@
689
667
  padding: 0 !important;
690
668
  gap: 4px;
691
669
  }
670
+ .Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd .Buttons-module__loader___RXJzg svg * {
671
+ stroke: var(--gray-400);
672
+ }
692
673
  .Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd .Buttons-module__icon___U2AOU svg * {
693
674
  stroke: var(--gray-400);
694
675
  }
@@ -721,6 +702,9 @@
721
702
  padding: 0 !important;
722
703
  gap: 4px;
723
704
  }
705
+ .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd .Buttons-module__loader___RXJzg svg * {
706
+ stroke: var(--gray-iron-400);
707
+ }
724
708
  .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd .Buttons-module__icon___U2AOU svg * {
725
709
  stroke: var(--gray-iron-400);
726
710
  }
@@ -755,6 +739,9 @@
755
739
  border: 1px solid transparent;
756
740
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
757
741
  }
742
+ .Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq .Buttons-module__loader___RXJzg svg * {
743
+ stroke: var(--gray-700);
744
+ }
758
745
  .Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq .Buttons-module__icon___U2AOU svg * {
759
746
  stroke: var(--gray-700);
760
747
  }
@@ -786,6 +773,9 @@
786
773
  border: 1px solid transparent;
787
774
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
788
775
  }
776
+ .Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo .Buttons-module__loader___RXJzg svg * {
777
+ stroke: var(--gray-500);
778
+ }
789
779
  .Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo .Buttons-module__icon___U2AOU svg * {
790
780
  stroke: var(--gray-500);
791
781
  }
@@ -847,6 +837,9 @@
847
837
  background-color: var(--base-white);
848
838
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
849
839
  }
840
+ .Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__secondaryColor___GONLZ .Buttons-module__loader___RXJzg svg * {
841
+ stroke: var(--error-500);
842
+ }
850
843
  .Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__secondaryColor___GONLZ .Buttons-module__icon___U2AOU svg * {
851
844
  stroke: var(--error-500);
852
845
  }
@@ -871,6 +864,9 @@
871
864
  .Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN .Buttons-module__icon___U2AOU svg * {
872
865
  stroke: var(--error-500);
873
866
  }
867
+ .Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN .Buttons-module__loader___RXJzg svg * {
868
+ stroke: var(--error-500);
869
+ }
874
870
  .Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN .Buttons-module__content___lPb5_ {
875
871
  padding: 0 !important;
876
872
  }
@@ -898,6 +894,7 @@
898
894
  }
899
895
  .Buttons-module__button___I3yLe:disabled, .Buttons-module__button___I3yLe.Buttons-module__disabled___INiFx {
900
896
  cursor: default;
897
+ pointer-events: none;
901
898
  }
902
899
  [data-theme=dark] .Buttons-module__button___I3yLe.Buttons-module__primary____crHN {
903
900
  background-color: var(--rose-500);
@@ -916,6 +913,9 @@
916
913
  background-color: transparent;
917
914
  border: 1px solid var(--rose-900);
918
915
  }
916
+ [data-theme=dark] .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ .Buttons-module__loader___RXJzg svg * {
917
+ stroke: var(--rose-500);
918
+ }
919
919
  [data-theme=dark] .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ .Buttons-module__icon___U2AOU svg * {
920
920
  stroke: var(--rose-500);
921
921
  }
@@ -938,6 +938,9 @@
938
938
  background-color: transparent;
939
939
  border: 1px solid var(--gray-iron-700);
940
940
  }
941
+ [data-theme=dark] .Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne .Buttons-module__loader___RXJzg svg * {
942
+ stroke: var(--gray-iron-200);
943
+ }
941
944
  [data-theme=dark] .Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne .Buttons-module__icon___U2AOU svg * {
942
945
  stroke: var(--gray-iron-200);
943
946
  }
@@ -962,6 +965,9 @@
962
965
  color: var(--gray-iron-200);
963
966
  }
964
967
  }
968
+ [data-theme=dark] .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq .Buttons-module__loader___RXJzg svg * {
969
+ stroke: var(--rose-100);
970
+ }
965
971
  [data-theme=dark] .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq .Buttons-module__icon___U2AOU svg * {
966
972
  stroke: var(--rose-100);
967
973
  }
@@ -984,6 +990,9 @@
984
990
  stroke: var(--base-white);
985
991
  }
986
992
  }
993
+ [data-theme=dark] .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw .Buttons-module__loader___RXJzg svg * {
994
+ stroke: var(--rose-500);
995
+ }
987
996
  [data-theme=dark] .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw .Buttons-module__icon___U2AOU svg * {
988
997
  stroke: var(--rose-500);
989
998
  }
@@ -1370,7 +1379,7 @@
1370
1379
  line-height: 24px;
1371
1380
  color: var(--gray-900);
1372
1381
  font-weight: 400;
1373
- font-family: var(--golos-ui);
1382
+ font-family: var(--golos);
1374
1383
  font-stretch: normal;
1375
1384
  font-style: normal;
1376
1385
  font-variant: normal;
@@ -1380,7 +1389,7 @@
1380
1389
  line-height: 24px;
1381
1390
  color: var(--gray-400);
1382
1391
  font-weight: 400;
1383
- font-family: var(--golos-ui);
1392
+ font-family: var(--golos);
1384
1393
  font-stretch: normal;
1385
1394
  font-style: normal;
1386
1395
  font-variant: normal;
@@ -1406,7 +1415,7 @@
1406
1415
  line-height: 24px;
1407
1416
  color: var(--gray-400);
1408
1417
  font-weight: 400;
1409
- font-family: var(--golos-ui);
1418
+ font-family: var(--golos);
1410
1419
  font-stretch: normal;
1411
1420
  font-style: normal;
1412
1421
  font-variant: normal;
@@ -1506,7 +1515,7 @@
1506
1515
  line-height: 24px;
1507
1516
  color: var(--gray-500);
1508
1517
  font-weight: 400;
1509
- font-family: var(--golos-ui);
1518
+ font-family: var(--golos);
1510
1519
  font-stretch: normal;
1511
1520
  font-style: normal;
1512
1521
  font-variant: normal;
@@ -1521,7 +1530,7 @@
1521
1530
  line-height: 24px;
1522
1531
  color: var(--gray-900);
1523
1532
  font-weight: 400;
1524
- font-family: var(--golos-ui);
1533
+ font-family: var(--golos);
1525
1534
  font-stretch: normal;
1526
1535
  font-style: normal;
1527
1536
  font-variant: normal;
@@ -1536,7 +1545,7 @@
1536
1545
  line-height: 24px;
1537
1546
  color: var(--gray-900);
1538
1547
  font-weight: 400;
1539
- font-family: var(--golos-ui);
1548
+ font-family: var(--golos);
1540
1549
  font-stretch: normal;
1541
1550
  font-style: normal;
1542
1551
  font-variant: normal;
@@ -1550,7 +1559,7 @@
1550
1559
  line-height: 24px;
1551
1560
  color: var(--gray-iron-25);
1552
1561
  font-weight: 400;
1553
- font-family: var(--golos-ui);
1562
+ font-family: var(--golos);
1554
1563
  font-stretch: normal;
1555
1564
  font-style: normal;
1556
1565
  font-variant: normal;
@@ -1560,7 +1569,7 @@
1560
1569
  line-height: 24px;
1561
1570
  color: var(--gray-iron-500);
1562
1571
  font-weight: 400;
1563
- font-family: var(--golos-ui);
1572
+ font-family: var(--golos);
1564
1573
  font-stretch: normal;
1565
1574
  font-style: normal;
1566
1575
  font-variant: normal;
@@ -1573,7 +1582,7 @@
1573
1582
  line-height: 24px;
1574
1583
  color: var(--gray-iron-500);
1575
1584
  font-weight: 400;
1576
- font-family: var(--golos-ui);
1585
+ font-family: var(--golos);
1577
1586
  font-stretch: normal;
1578
1587
  font-style: normal;
1579
1588
  font-variant: normal;
@@ -1616,7 +1625,7 @@
1616
1625
  line-height: 24px;
1617
1626
  color: var(--gray-iron-500);
1618
1627
  font-weight: 400;
1619
- font-family: var(--golos-ui);
1628
+ font-family: var(--golos);
1620
1629
  font-stretch: normal;
1621
1630
  font-style: normal;
1622
1631
  font-variant: normal;
@@ -1626,7 +1635,7 @@
1626
1635
  line-height: 24px;
1627
1636
  color: var(--gray-iron-25);
1628
1637
  font-weight: 400;
1629
- font-family: var(--golos-ui);
1638
+ font-family: var(--golos);
1630
1639
  font-stretch: normal;
1631
1640
  font-style: normal;
1632
1641
  font-variant: normal;
@@ -1636,7 +1645,7 @@
1636
1645
  line-height: 24px;
1637
1646
  color: var(--gray-iron-25);
1638
1647
  font-weight: 400;
1639
- font-family: var(--golos-ui);
1648
+ font-family: var(--golos);
1640
1649
  font-stretch: normal;
1641
1650
  font-style: normal;
1642
1651
  font-variant: normal;
@@ -1668,7 +1677,7 @@
1668
1677
  line-height: 20px;
1669
1678
  color: var(--gray-700);
1670
1679
  font-weight: 500;
1671
- font-family: var(--golos-ui);
1680
+ font-family: var(--golos);
1672
1681
  font-stretch: normal;
1673
1682
  font-style: normal;
1674
1683
  font-variant: normal;
@@ -1678,7 +1687,7 @@
1678
1687
  line-height: 20px;
1679
1688
  color: var(--error-500);
1680
1689
  font-weight: 500;
1681
- font-family: var(--golos-ui);
1690
+ font-family: var(--golos);
1682
1691
  font-stretch: normal;
1683
1692
  font-style: normal;
1684
1693
  font-variant: normal;
@@ -1693,7 +1702,7 @@
1693
1702
  line-height: 20px;
1694
1703
  color: var(--gray-600);
1695
1704
  font-weight: 400;
1696
- font-family: var(--golos-ui);
1705
+ font-family: var(--golos);
1697
1706
  font-stretch: normal;
1698
1707
  font-style: normal;
1699
1708
  font-variant: normal;
@@ -1708,7 +1717,7 @@
1708
1717
  line-height: 20px;
1709
1718
  color: var(--error-500);
1710
1719
  font-weight: 400;
1711
- font-family: var(--golos-ui);
1720
+ font-family: var(--golos);
1712
1721
  font-stretch: normal;
1713
1722
  font-style: normal;
1714
1723
  font-variant: normal;
@@ -1733,7 +1742,7 @@
1733
1742
  line-height: 20px;
1734
1743
  color: var(--primary-500);
1735
1744
  font-weight: 400;
1736
- font-family: var(--golos-ui);
1745
+ font-family: var(--golos);
1737
1746
  font-stretch: normal;
1738
1747
  font-style: normal;
1739
1748
  font-variant: normal;
@@ -1746,7 +1755,7 @@
1746
1755
  line-height: 20px;
1747
1756
  color: var(--gray-500);
1748
1757
  font-weight: 500;
1749
- font-family: var(--golos-ui);
1758
+ font-family: var(--golos);
1750
1759
  font-stretch: normal;
1751
1760
  font-style: normal;
1752
1761
  font-variant: normal;
@@ -1759,7 +1768,7 @@
1759
1768
  line-height: 20px;
1760
1769
  color: var(--gray-600);
1761
1770
  font-weight: 400;
1762
- font-family: var(--golos-ui);
1771
+ font-family: var(--golos);
1763
1772
  font-stretch: normal;
1764
1773
  font-style: normal;
1765
1774
  font-variant: normal;
@@ -1772,7 +1781,7 @@
1772
1781
  line-height: 20px;
1773
1782
  color: var(--gray-iron-400);
1774
1783
  font-weight: 500;
1775
- font-family: var(--golos-ui);
1784
+ font-family: var(--golos);
1776
1785
  font-stretch: normal;
1777
1786
  font-style: normal;
1778
1787
  font-variant: normal;
@@ -1782,7 +1791,7 @@
1782
1791
  line-height: 20px;
1783
1792
  color: var(--error-500);
1784
1793
  font-weight: 500;
1785
- font-family: var(--golos-ui);
1794
+ font-family: var(--golos);
1786
1795
  font-stretch: normal;
1787
1796
  font-style: normal;
1788
1797
  font-variant: normal;
@@ -1792,7 +1801,7 @@
1792
1801
  line-height: 20px;
1793
1802
  color: var(--gray-iron-500);
1794
1803
  font-weight: 400;
1795
- font-family: var(--golos-ui);
1804
+ font-family: var(--golos);
1796
1805
  font-stretch: normal;
1797
1806
  font-style: normal;
1798
1807
  font-variant: normal;
@@ -1802,7 +1811,7 @@
1802
1811
  line-height: 20px;
1803
1812
  color: var(--error-500);
1804
1813
  font-weight: 400;
1805
- font-family: var(--golos-ui);
1814
+ font-family: var(--golos);
1806
1815
  font-stretch: normal;
1807
1816
  font-style: normal;
1808
1817
  font-variant: normal;
@@ -1820,7 +1829,7 @@
1820
1829
  line-height: 20px;
1821
1830
  color: var(--rose-500);
1822
1831
  font-weight: 400;
1823
- font-family: var(--golos-ui);
1832
+ font-family: var(--golos);
1824
1833
  font-stretch: normal;
1825
1834
  font-style: normal;
1826
1835
  font-variant: normal;
@@ -1830,7 +1839,7 @@
1830
1839
  line-height: 20px;
1831
1840
  color: var(--gray-iron-400);
1832
1841
  font-weight: 500;
1833
- font-family: var(--golos-ui);
1842
+ font-family: var(--golos);
1834
1843
  font-stretch: normal;
1835
1844
  font-style: normal;
1836
1845
  font-variant: normal;
@@ -1840,7 +1849,7 @@
1840
1849
  line-height: 20px;
1841
1850
  color: var(--gray-iron-500);
1842
1851
  font-weight: 400;
1843
- font-family: var(--golos-ui);
1852
+ font-family: var(--golos);
1844
1853
  font-stretch: normal;
1845
1854
  font-style: normal;
1846
1855
  font-variant: normal;
@@ -1866,7 +1875,7 @@
1866
1875
  line-height: 24px;
1867
1876
  color: var(--gray-900);
1868
1877
  font-weight: 400;
1869
- font-family: var(--golos-ui);
1878
+ font-family: var(--golos);
1870
1879
  font-stretch: normal;
1871
1880
  font-style: normal;
1872
1881
  font-variant: normal;
@@ -1876,7 +1885,7 @@
1876
1885
  line-height: 24px;
1877
1886
  color: var(--gray-400);
1878
1887
  font-weight: 400;
1879
- font-family: var(--golos-ui);
1888
+ font-family: var(--golos);
1880
1889
  font-stretch: normal;
1881
1890
  font-style: normal;
1882
1891
  font-variant: normal;
@@ -1892,7 +1901,7 @@
1892
1901
  line-height: 24px;
1893
1902
  color: var(--gray-500);
1894
1903
  font-weight: 400;
1895
- font-family: var(--golos-ui);
1904
+ font-family: var(--golos);
1896
1905
  font-stretch: normal;
1897
1906
  font-style: normal;
1898
1907
  font-variant: normal;
@@ -1913,7 +1922,7 @@
1913
1922
  line-height: 24px;
1914
1923
  color: var(--gray-iron-25);
1915
1924
  font-weight: 400;
1916
- font-family: var(--golos-ui);
1925
+ font-family: var(--golos);
1917
1926
  font-stretch: normal;
1918
1927
  font-style: normal;
1919
1928
  font-variant: normal;
@@ -1923,7 +1932,7 @@
1923
1932
  line-height: 24px;
1924
1933
  color: var(--gray-iron-500);
1925
1934
  font-weight: 400;
1926
- font-family: var(--golos-ui);
1935
+ font-family: var(--golos);
1927
1936
  font-stretch: normal;
1928
1937
  font-style: normal;
1929
1938
  font-variant: normal;
@@ -1939,7 +1948,7 @@
1939
1948
  line-height: 24px;
1940
1949
  color: var(--gray-iron-500);
1941
1950
  font-weight: 400;
1942
- font-family: var(--golos-ui);
1951
+ font-family: var(--golos);
1943
1952
  font-stretch: normal;
1944
1953
  font-style: normal;
1945
1954
  font-variant: normal;
@@ -2001,7 +2010,7 @@
2001
2010
  line-height: 24px;
2002
2011
  color: var(--gray-400);
2003
2012
  font-weight: 400;
2004
- font-family: var(--golos-ui);
2013
+ font-family: var(--golos);
2005
2014
  font-stretch: normal;
2006
2015
  font-style: normal;
2007
2016
  font-variant: normal;
@@ -2079,7 +2088,7 @@
2079
2088
  line-height: 24px;
2080
2089
  color: var(--gray-iron-500);
2081
2090
  font-weight: 400;
2082
- font-family: var(--golos-ui);
2091
+ font-family: var(--golos);
2083
2092
  font-stretch: normal;
2084
2093
  font-style: normal;
2085
2094
  font-variant: normal;
@@ -2138,7 +2147,7 @@
2138
2147
  line-height: 24px;
2139
2148
  color: var(--gray-900);
2140
2149
  font-weight: 400;
2141
- font-family: var(--golos-ui);
2150
+ font-family: var(--golos);
2142
2151
  font-stretch: normal;
2143
2152
  font-style: normal;
2144
2153
  font-variant: normal;
@@ -2153,7 +2162,7 @@
2153
2162
  line-height: 24px;
2154
2163
  color: var(--gray-400);
2155
2164
  font-weight: 400;
2156
- font-family: var(--golos-ui);
2165
+ font-family: var(--golos);
2157
2166
  font-stretch: normal;
2158
2167
  font-style: normal;
2159
2168
  font-variant: normal;
@@ -2163,7 +2172,7 @@
2163
2172
  line-height: 24px;
2164
2173
  color: var(--gray-500);
2165
2174
  font-weight: 400;
2166
- font-family: var(--golos-ui);
2175
+ font-family: var(--golos);
2167
2176
  font-stretch: normal;
2168
2177
  font-style: normal;
2169
2178
  font-variant: normal;
@@ -2173,7 +2182,7 @@
2173
2182
  line-height: 24px;
2174
2183
  color: var(--gray-iron-25);
2175
2184
  font-weight: 400;
2176
- font-family: var(--golos-ui);
2185
+ font-family: var(--golos);
2177
2186
  font-stretch: normal;
2178
2187
  font-style: normal;
2179
2188
  font-variant: normal;
@@ -2183,7 +2192,7 @@
2183
2192
  line-height: 24px;
2184
2193
  color: var(--gray-iron-500);
2185
2194
  font-weight: 400;
2186
- font-family: var(--golos-ui);
2195
+ font-family: var(--golos);
2187
2196
  font-stretch: normal;
2188
2197
  font-style: normal;
2189
2198
  font-variant: normal;
@@ -2193,7 +2202,7 @@
2193
2202
  line-height: 24px;
2194
2203
  color: var(--gray-iron-500);
2195
2204
  font-weight: 400;
2196
- font-family: var(--golos-ui);
2205
+ font-family: var(--golos);
2197
2206
  font-stretch: normal;
2198
2207
  font-style: normal;
2199
2208
  font-variant: normal;
@@ -2236,7 +2245,7 @@
2236
2245
  line-height: 24px;
2237
2246
  color: var(--gray-900);
2238
2247
  font-weight: 400;
2239
- font-family: var(--golos-ui);
2248
+ font-family: var(--golos);
2240
2249
  font-stretch: normal;
2241
2250
  font-style: normal;
2242
2251
  font-variant: normal;
@@ -2246,7 +2255,7 @@
2246
2255
  line-height: 24px;
2247
2256
  color: var(--gray-400);
2248
2257
  font-weight: 400;
2249
- font-family: var(--golos-ui);
2258
+ font-family: var(--golos);
2250
2259
  font-stretch: normal;
2251
2260
  font-style: normal;
2252
2261
  font-variant: normal;
@@ -2375,7 +2384,7 @@
2375
2384
  line-height: 14px;
2376
2385
  color: var(--primary-500);
2377
2386
  font-weight: 500;
2378
- font-family: var(--golos-ui);
2387
+ font-family: var(--golos);
2379
2388
  font-stretch: normal;
2380
2389
  font-style: normal;
2381
2390
  font-variant: normal;
@@ -2439,7 +2448,7 @@
2439
2448
  line-height: 24px;
2440
2449
  color: var(--base-white);
2441
2450
  font-weight: 400;
2442
- font-family: var(--golos-ui);
2451
+ font-family: var(--golos);
2443
2452
  font-stretch: normal;
2444
2453
  font-style: normal;
2445
2454
  font-variant: normal;
@@ -2452,7 +2461,7 @@
2452
2461
  line-height: 14px;
2453
2462
  color: black;
2454
2463
  font-weight: 500;
2455
- font-family: var(--golos-ui);
2464
+ font-family: var(--golos);
2456
2465
  font-stretch: normal;
2457
2466
  font-style: normal;
2458
2467
  font-variant: normal;
@@ -2475,7 +2484,7 @@
2475
2484
  line-height: 24px;
2476
2485
  color: var(--base-white);
2477
2486
  font-weight: 400;
2478
- font-family: var(--golos-ui);
2487
+ font-family: var(--golos);
2479
2488
  font-stretch: normal;
2480
2489
  font-style: normal;
2481
2490
  font-variant: normal;
@@ -2488,7 +2497,7 @@
2488
2497
  line-height: 14px;
2489
2498
  color: black;
2490
2499
  font-weight: 500;
2491
- font-family: var(--golos-ui);
2500
+ font-family: var(--golos);
2492
2501
  font-stretch: normal;
2493
2502
  font-style: normal;
2494
2503
  font-variant: normal;
@@ -2511,7 +2520,7 @@
2511
2520
  line-height: 14px;
2512
2521
  color: var(--base-white);
2513
2522
  font-weight: 500;
2514
- font-family: var(--golos-ui);
2523
+ font-family: var(--golos);
2515
2524
  font-stretch: normal;
2516
2525
  font-style: normal;
2517
2526
  font-variant: normal;
@@ -2537,7 +2546,7 @@
2537
2546
  line-height: 14px;
2538
2547
  color: var(--base-white);
2539
2548
  font-weight: 500;
2540
- font-family: var(--golos-ui);
2549
+ font-family: var(--golos);
2541
2550
  font-stretch: normal;
2542
2551
  font-style: normal;
2543
2552
  font-variant: normal;
@@ -2668,7 +2677,7 @@
2668
2677
  line-height: 14px;
2669
2678
  color: var(--primary-500);
2670
2679
  font-weight: 500;
2671
- font-family: var(--golos-ui);
2680
+ font-family: var(--golos);
2672
2681
  font-stretch: normal;
2673
2682
  font-style: normal;
2674
2683
  font-variant: normal;
@@ -2726,7 +2735,7 @@
2726
2735
  line-height: 24px;
2727
2736
  color: var(--gray-iron-50);
2728
2737
  font-weight: 400;
2729
- font-family: var(--golos-ui);
2738
+ font-family: var(--golos);
2730
2739
  font-stretch: normal;
2731
2740
  font-style: normal;
2732
2741
  font-variant: normal;
@@ -2739,7 +2748,7 @@
2739
2748
  line-height: 14px;
2740
2749
  color: black;
2741
2750
  font-weight: 500;
2742
- font-family: var(--golos-ui);
2751
+ font-family: var(--golos);
2743
2752
  font-stretch: normal;
2744
2753
  font-style: normal;
2745
2754
  font-variant: normal;
@@ -2762,7 +2771,7 @@
2762
2771
  line-height: 24px;
2763
2772
  color: var(--gray-iron-500);
2764
2773
  font-weight: 400;
2765
- font-family: var(--golos-ui);
2774
+ font-family: var(--golos);
2766
2775
  font-stretch: normal;
2767
2776
  font-style: normal;
2768
2777
  font-variant: normal;
@@ -2775,7 +2784,7 @@
2775
2784
  line-height: 14px;
2776
2785
  color: black;
2777
2786
  font-weight: 500;
2778
- font-family: var(--golos-ui);
2787
+ font-family: var(--golos);
2779
2788
  font-stretch: normal;
2780
2789
  font-style: normal;
2781
2790
  font-variant: normal;
@@ -2798,7 +2807,7 @@
2798
2807
  line-height: 14px;
2799
2808
  color: var(--base-white);
2800
2809
  font-weight: 500;
2801
- font-family: var(--golos-ui);
2810
+ font-family: var(--golos);
2802
2811
  font-stretch: normal;
2803
2812
  font-style: normal;
2804
2813
  font-variant: normal;
@@ -2824,7 +2833,7 @@
2824
2833
  line-height: 14px;
2825
2834
  color: var(--base-white);
2826
2835
  font-weight: 500;
2827
- font-family: var(--golos-ui);
2836
+ font-family: var(--golos);
2828
2837
  font-stretch: normal;
2829
2838
  font-style: normal;
2830
2839
  font-variant: normal;
@@ -2982,7 +2991,7 @@
2982
2991
  line-height: 24px;
2983
2992
  color: var(--gray-iron-100);
2984
2993
  font-weight: 400;
2985
- font-family: var(--golos-ui);
2994
+ font-family: var(--golos);
2986
2995
  font-stretch: normal;
2987
2996
  font-style: normal;
2988
2997
  font-variant: normal;
@@ -2995,7 +3004,7 @@
2995
3004
  line-height: 24px;
2996
3005
  color: var(--gray-iron-500);
2997
3006
  font-weight: 400;
2998
- font-family: var(--golos-ui);
3007
+ font-family: var(--golos);
2999
3008
  font-stretch: normal;
3000
3009
  font-style: normal;
3001
3010
  font-variant: normal;
@@ -3401,7 +3410,7 @@
3401
3410
  font-size: 12px;
3402
3411
  line-height: 14px;
3403
3412
  font-weight: 500;
3404
- font-family: var(--golos-ui);
3413
+ font-family: var(--golos);
3405
3414
  }
3406
3415
  .TagCount-module__tagCount___tT9Gy.TagCount-module__medium___M9VAd {
3407
3416
  padding: 2px 5px 2px 5px;
@@ -3410,7 +3419,7 @@
3410
3419
  font-size: 12px;
3411
3420
  line-height: 16px;
3412
3421
  font-weight: 500;
3413
- font-family: var(--golos-ui);
3422
+ font-family: var(--golos);
3414
3423
  }
3415
3424
  .TagCount-module__tagCount___tT9Gy.TagCount-module__large___mhO1d {
3416
3425
  padding: 0 6px 0 6px;
@@ -3419,7 +3428,7 @@
3419
3428
  font-size: 12px;
3420
3429
  line-height: 20px;
3421
3430
  font-weight: 500;
3422
- font-family: var(--golos-ui);
3431
+ font-family: var(--golos);
3423
3432
  }
3424
3433
  /*!***********************************************************************************************************************************************************************************************************************************************************!*\
3425
3434
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/Tag/styles/Tag.module.scss ***!
@@ -3483,7 +3492,7 @@
3483
3492
  font-size: 12px;
3484
3493
  line-height: 18px;
3485
3494
  font-weight: 500;
3486
- font-family: var(--golos-ui);
3495
+ font-family: var(--golos);
3487
3496
  }
3488
3497
  .Tag-module__tag___z87CD.Tag-module__small___ob2Q8 .Tag-module__main___M5V6V {
3489
3498
  gap: 4px;
@@ -3501,7 +3510,7 @@
3501
3510
  font-size: 14px;
3502
3511
  line-height: 20px;
3503
3512
  font-weight: 500;
3504
- font-family: var(--golos-ui);
3513
+ font-family: var(--golos);
3505
3514
  }
3506
3515
  .Tag-module__tag___z87CD.Tag-module__medium___TjmGK .Tag-module__main___M5V6V {
3507
3516
  gap: 5px;
@@ -3637,7 +3646,7 @@
3637
3646
  line-height: 16px;
3638
3647
  color: var(--gray-600);
3639
3648
  font-weight: 500;
3640
- font-family: var(--golos-ui);
3649
+ font-family: var(--golos);
3641
3650
  font-stretch: normal;
3642
3651
  font-style: normal;
3643
3652
  font-variant: normal;
@@ -3747,7 +3756,7 @@
3747
3756
  line-height: 16px;
3748
3757
  color: var(--gray-iron-400);
3749
3758
  font-weight: 500;
3750
- font-family: var(--golos-ui);
3759
+ font-family: var(--golos);
3751
3760
  font-stretch: normal;
3752
3761
  font-style: normal;
3753
3762
  font-variant: normal;
@@ -3843,7 +3852,7 @@
3843
3852
  line-height: 20px;
3844
3853
  color: var(--gray-600);
3845
3854
  font-weight: 600;
3846
- font-family: var(--golos-ui);
3855
+ font-family: var(--golos);
3847
3856
  font-stretch: normal;
3848
3857
  font-style: normal;
3849
3858
  font-variant: normal;
@@ -3884,7 +3893,7 @@
3884
3893
  line-height: 20px;
3885
3894
  color: var(--gray-600);
3886
3895
  font-weight: 500;
3887
- font-family: var(--golos-ui);
3896
+ font-family: var(--golos);
3888
3897
  font-stretch: normal;
3889
3898
  font-style: normal;
3890
3899
  font-variant: normal;
@@ -3905,7 +3914,7 @@
3905
3914
  line-height: 20px;
3906
3915
  color: var(--gray-600);
3907
3916
  font-weight: 500;
3908
- font-family: var(--golos-ui);
3917
+ font-family: var(--golos);
3909
3918
  font-stretch: normal;
3910
3919
  font-style: normal;
3911
3920
  font-variant: normal;
@@ -3933,7 +3942,7 @@
3933
3942
  line-height: 20px;
3934
3943
  color: var(--gray-iron-500);
3935
3944
  font-weight: 500;
3936
- font-family: var(--golos-ui);
3945
+ font-family: var(--golos);
3937
3946
  font-stretch: normal;
3938
3947
  font-style: normal;
3939
3948
  font-variant: normal;
@@ -3943,7 +3952,7 @@
3943
3952
  line-height: 20px;
3944
3953
  color: var(--gray-iron-500);
3945
3954
  font-weight: 500;
3946
- font-family: var(--golos-ui);
3955
+ font-family: var(--golos);
3947
3956
  font-stretch: normal;
3948
3957
  font-style: normal;
3949
3958
  font-variant: normal;
@@ -4111,7 +4120,7 @@
4111
4120
  line-height: 20px;
4112
4121
  color: var(--gray-900);
4113
4122
  font-weight: 400;
4114
- font-family: var(--golos-ui);
4123
+ font-family: var(--golos);
4115
4124
  font-stretch: normal;
4116
4125
  font-style: normal;
4117
4126
  font-variant: normal;
@@ -4121,7 +4130,7 @@
4121
4130
  line-height: 20px;
4122
4131
  color: var(--gray-400);
4123
4132
  font-weight: 400;
4124
- font-family: var(--golos-ui);
4133
+ font-family: var(--golos);
4125
4134
  font-stretch: normal;
4126
4135
  font-style: normal;
4127
4136
  font-variant: normal;
@@ -4134,7 +4143,7 @@
4134
4143
  line-height: 24px;
4135
4144
  color: var(--gray-900);
4136
4145
  font-weight: 400;
4137
- font-family: var(--golos-ui);
4146
+ font-family: var(--golos);
4138
4147
  font-stretch: normal;
4139
4148
  font-style: normal;
4140
4149
  font-variant: normal;
@@ -4144,7 +4153,7 @@
4144
4153
  line-height: 24px;
4145
4154
  color: var(--gray-900);
4146
4155
  font-weight: 400;
4147
- font-family: var(--golos-ui);
4156
+ font-family: var(--golos);
4148
4157
  font-stretch: normal;
4149
4158
  font-style: normal;
4150
4159
  font-variant: normal;
@@ -4227,7 +4236,7 @@
4227
4236
  line-height: 20px;
4228
4237
  color: var(--gray-iron-200);
4229
4238
  font-weight: 400;
4230
- font-family: var(--golos-ui);
4239
+ font-family: var(--golos);
4231
4240
  font-stretch: normal;
4232
4241
  font-style: normal;
4233
4242
  font-variant: normal;
@@ -4237,7 +4246,7 @@
4237
4246
  line-height: 20px;
4238
4247
  color: var(--gray-iron-500);
4239
4248
  font-weight: 400;
4240
- font-family: var(--golos-ui);
4249
+ font-family: var(--golos);
4241
4250
  font-stretch: normal;
4242
4251
  font-style: normal;
4243
4252
  font-variant: normal;
@@ -4250,7 +4259,7 @@
4250
4259
  line-height: 24px;
4251
4260
  color: var(--gray-iron-200);
4252
4261
  font-weight: 400;
4253
- font-family: var(--golos-ui);
4262
+ font-family: var(--golos);
4254
4263
  font-stretch: normal;
4255
4264
  font-style: normal;
4256
4265
  font-variant: normal;
@@ -4260,7 +4269,7 @@
4260
4269
  line-height: 24px;
4261
4270
  color: var(--gray-iron-500);
4262
4271
  font-weight: 400;
4263
- font-family: var(--golos-ui);
4272
+ font-family: var(--golos);
4264
4273
  font-stretch: normal;
4265
4274
  font-style: normal;
4266
4275
  font-variant: normal;
@@ -4298,7 +4307,7 @@
4298
4307
  line-height: 20px;
4299
4308
  color: var(--gray-700);
4300
4309
  font-weight: 500;
4301
- font-family: var(--golos-ui);
4310
+ font-family: var(--golos);
4302
4311
  font-stretch: normal;
4303
4312
  font-style: normal;
4304
4313
  font-variant: normal;
@@ -4376,7 +4385,7 @@
4376
4385
  line-height: 20px;
4377
4386
  color: var(--gray-iron-100);
4378
4387
  font-weight: 500;
4379
- font-family: var(--golos-ui);
4388
+ font-family: var(--golos);
4380
4389
  font-stretch: normal;
4381
4390
  font-style: normal;
4382
4391
  font-variant: normal;
@@ -4477,7 +4486,7 @@
4477
4486
  line-height: 24px;
4478
4487
  color: rgba(255, 255, 255, 0.8);
4479
4488
  font-weight: 400;
4480
- font-family: var(--golos-ui);
4489
+ font-family: var(--golos);
4481
4490
  font-stretch: normal;
4482
4491
  font-style: normal;
4483
4492
  font-variant: normal;
@@ -4726,7 +4735,7 @@
4726
4735
  line-height: 16px;
4727
4736
  color: var(--gray-700);
4728
4737
  font-weight: 400;
4729
- font-family: var(--golos-ui);
4738
+ font-family: var(--golos);
4730
4739
  font-stretch: normal;
4731
4740
  font-style: normal;
4732
4741
  font-variant: normal;
@@ -4740,7 +4749,7 @@
4740
4749
  line-height: 10px;
4741
4750
  color: var(--gray-400);
4742
4751
  font-weight: 400;
4743
- font-family: var(--golos-ui);
4752
+ font-family: var(--golos);
4744
4753
  font-stretch: normal;
4745
4754
  font-style: normal;
4746
4755
  font-variant: normal;
@@ -4861,7 +4870,7 @@
4861
4870
  line-height: 16px;
4862
4871
  color: var(--gray-iron-300);
4863
4872
  font-weight: 400;
4864
- font-family: var(--golos-ui);
4873
+ font-family: var(--golos);
4865
4874
  font-stretch: normal;
4866
4875
  font-style: normal;
4867
4876
  font-variant: normal;
@@ -4871,7 +4880,7 @@
4871
4880
  line-height: 10px;
4872
4881
  color: var(--gray-iron-600);
4873
4882
  font-weight: 400;
4874
- font-family: var(--golos-ui);
4883
+ font-family: var(--golos);
4875
4884
  font-stretch: normal;
4876
4885
  font-style: normal;
4877
4886
  font-variant: normal;
@@ -5173,7 +5182,7 @@
5173
5182
  line-height: 20px;
5174
5183
  color: var(--gray-700);
5175
5184
  font-weight: 400;
5176
- font-family: var(--golos-ui);
5185
+ font-family: var(--golos);
5177
5186
  font-stretch: normal;
5178
5187
  font-style: normal;
5179
5188
  font-variant: normal;
@@ -5397,7 +5406,7 @@
5397
5406
  line-height: 16px;
5398
5407
  color: var(--gray-500);
5399
5408
  font-weight: 400;
5400
- font-family: var(--golos-ui);
5409
+ font-family: var(--golos);
5401
5410
  font-stretch: normal;
5402
5411
  font-style: normal;
5403
5412
  font-variant: normal;
@@ -5416,7 +5425,7 @@
5416
5425
  line-height: 16px;
5417
5426
  color: var(--gray-iron-500);
5418
5427
  font-weight: 400;
5419
- font-family: var(--golos-ui);
5428
+ font-family: var(--golos);
5420
5429
  font-stretch: normal;
5421
5430
  font-style: normal;
5422
5431
  font-variant: normal;
@@ -5701,7 +5710,7 @@
5701
5710
  line-height: 18px;
5702
5711
  color: black;
5703
5712
  font-weight: 700;
5704
- font-family: var(--golos-ui);
5713
+ font-family: var(--golos);
5705
5714
  font-stretch: normal;
5706
5715
  font-style: normal;
5707
5716
  font-variant: normal;
@@ -5711,7 +5720,7 @@
5711
5720
  line-height: 18px;
5712
5721
  color: black;
5713
5722
  font-weight: 400;
5714
- font-family: var(--golos-ui);
5723
+ font-family: var(--golos);
5715
5724
  font-stretch: normal;
5716
5725
  font-style: normal;
5717
5726
  font-variant: normal;
@@ -5804,7 +5813,7 @@
5804
5813
  line-height: 16px;
5805
5814
  color: var(--gray-600);
5806
5815
  font-weight: 400;
5807
- font-family: var(--golos-ui);
5816
+ font-family: var(--golos);
5808
5817
  font-stretch: normal;
5809
5818
  font-style: normal;
5810
5819
  font-variant: normal;
@@ -5860,7 +5869,7 @@
5860
5869
  line-height: 24px;
5861
5870
  color: var(--gray-900);
5862
5871
  font-weight: 400;
5863
- font-family: var(--golos-ui);
5872
+ font-family: var(--golos);
5864
5873
  font-stretch: normal;
5865
5874
  font-style: normal;
5866
5875
  font-variant: normal;
@@ -5870,7 +5879,7 @@
5870
5879
  line-height: 24px;
5871
5880
  color: var(--gray-400);
5872
5881
  font-weight: 400;
5873
- font-family: var(--golos-ui);
5882
+ font-family: var(--golos);
5874
5883
  font-stretch: normal;
5875
5884
  font-style: normal;
5876
5885
  font-variant: normal;
@@ -5899,7 +5908,7 @@
5899
5908
  line-height: 24px;
5900
5909
  color: var(--gray-400);
5901
5910
  font-weight: 400;
5902
- font-family: var(--golos-ui);
5911
+ font-family: var(--golos);
5903
5912
  font-stretch: normal;
5904
5913
  font-style: normal;
5905
5914
  font-variant: normal;
@@ -5952,7 +5961,7 @@
5952
5961
  line-height: 24px;
5953
5962
  color: var(--gray-500);
5954
5963
  font-weight: 400;
5955
- font-family: var(--golos-ui);
5964
+ font-family: var(--golos);
5956
5965
  font-stretch: normal;
5957
5966
  font-style: normal;
5958
5967
  font-variant: normal;
@@ -5967,7 +5976,7 @@
5967
5976
  line-height: 24px;
5968
5977
  color: var(--gray-900);
5969
5978
  font-weight: 400;
5970
- font-family: var(--golos-ui);
5979
+ font-family: var(--golos);
5971
5980
  font-stretch: normal;
5972
5981
  font-style: normal;
5973
5982
  font-variant: normal;
@@ -5977,7 +5986,7 @@
5977
5986
  line-height: 24px;
5978
5987
  color: var(--gray-900);
5979
5988
  font-weight: 400;
5980
- font-family: var(--golos-ui);
5989
+ font-family: var(--golos);
5981
5990
  font-stretch: normal;
5982
5991
  font-style: normal;
5983
5992
  font-variant: normal;
@@ -5991,7 +6000,7 @@
5991
6000
  line-height: 24px;
5992
6001
  color: var(--gray-iron-25);
5993
6002
  font-weight: 400;
5994
- font-family: var(--golos-ui);
6003
+ font-family: var(--golos);
5995
6004
  font-stretch: normal;
5996
6005
  font-style: normal;
5997
6006
  font-variant: normal;
@@ -6001,7 +6010,7 @@
6001
6010
  line-height: 24px;
6002
6011
  color: var(--gray-iron-500);
6003
6012
  font-weight: 400;
6004
- font-family: var(--golos-ui);
6013
+ font-family: var(--golos);
6005
6014
  font-stretch: normal;
6006
6015
  font-style: normal;
6007
6016
  font-variant: normal;
@@ -6014,7 +6023,7 @@
6014
6023
  line-height: 24px;
6015
6024
  color: var(--gray-iron-500);
6016
6025
  font-weight: 400;
6017
- font-family: var(--golos-ui);
6026
+ font-family: var(--golos);
6018
6027
  font-stretch: normal;
6019
6028
  font-style: normal;
6020
6029
  font-variant: normal;
@@ -6057,7 +6066,7 @@
6057
6066
  line-height: 24px;
6058
6067
  color: var(--gray-iron-500);
6059
6068
  font-weight: 400;
6060
- font-family: var(--golos-ui);
6069
+ font-family: var(--golos);
6061
6070
  font-stretch: normal;
6062
6071
  font-style: normal;
6063
6072
  font-variant: normal;
@@ -6067,7 +6076,7 @@
6067
6076
  line-height: 24px;
6068
6077
  color: var(--gray-iron-25);
6069
6078
  font-weight: 400;
6070
- font-family: var(--golos-ui);
6079
+ font-family: var(--golos);
6071
6080
  font-stretch: normal;
6072
6081
  font-style: normal;
6073
6082
  font-variant: normal;
@@ -6077,7 +6086,7 @@
6077
6086
  line-height: 24px;
6078
6087
  color: var(--gray-iron-25);
6079
6088
  font-weight: 400;
6080
- font-family: var(--golos-ui);
6089
+ font-family: var(--golos);
6081
6090
  font-stretch: normal;
6082
6091
  font-style: normal;
6083
6092
  font-variant: normal;
@@ -6102,7 +6111,7 @@
6102
6111
  line-height: 20px;
6103
6112
  color: var(--gray-700);
6104
6113
  font-weight: 500;
6105
- font-family: var(--golos-ui);
6114
+ font-family: var(--golos);
6106
6115
  font-stretch: normal;
6107
6116
  font-style: normal;
6108
6117
  font-variant: normal;
@@ -6112,7 +6121,7 @@
6112
6121
  line-height: 20px;
6113
6122
  color: var(--error-500);
6114
6123
  font-weight: 500;
6115
- font-family: var(--golos-ui);
6124
+ font-family: var(--golos);
6116
6125
  font-stretch: normal;
6117
6126
  font-style: normal;
6118
6127
  font-variant: normal;
@@ -6127,7 +6136,7 @@
6127
6136
  line-height: 20px;
6128
6137
  color: var(--gray-600);
6129
6138
  font-weight: 400;
6130
- font-family: var(--golos-ui);
6139
+ font-family: var(--golos);
6131
6140
  font-stretch: normal;
6132
6141
  font-style: normal;
6133
6142
  font-variant: normal;
@@ -6142,7 +6151,7 @@
6142
6151
  line-height: 20px;
6143
6152
  color: var(--error-500);
6144
6153
  font-weight: 400;
6145
- font-family: var(--golos-ui);
6154
+ font-family: var(--golos);
6146
6155
  font-stretch: normal;
6147
6156
  font-style: normal;
6148
6157
  font-variant: normal;
@@ -6169,7 +6178,7 @@
6169
6178
  line-height: 20px;
6170
6179
  color: var(--primary-500);
6171
6180
  font-weight: 400;
6172
- font-family: var(--golos-ui);
6181
+ font-family: var(--golos);
6173
6182
  font-stretch: normal;
6174
6183
  font-style: normal;
6175
6184
  font-variant: normal;
@@ -6182,7 +6191,7 @@
6182
6191
  line-height: 20px;
6183
6192
  color: var(--gray-500);
6184
6193
  font-weight: 500;
6185
- font-family: var(--golos-ui);
6194
+ font-family: var(--golos);
6186
6195
  font-stretch: normal;
6187
6196
  font-style: normal;
6188
6197
  font-variant: normal;
@@ -6195,7 +6204,7 @@
6195
6204
  line-height: 20px;
6196
6205
  color: var(--gray-600);
6197
6206
  font-weight: 400;
6198
- font-family: var(--golos-ui);
6207
+ font-family: var(--golos);
6199
6208
  font-stretch: normal;
6200
6209
  font-style: normal;
6201
6210
  font-variant: normal;
@@ -6208,7 +6217,7 @@
6208
6217
  line-height: 20px;
6209
6218
  color: var(--gray-iron-400);
6210
6219
  font-weight: 500;
6211
- font-family: var(--golos-ui);
6220
+ font-family: var(--golos);
6212
6221
  font-stretch: normal;
6213
6222
  font-style: normal;
6214
6223
  font-variant: normal;
@@ -6218,7 +6227,7 @@
6218
6227
  line-height: 20px;
6219
6228
  color: var(--error-500);
6220
6229
  font-weight: 500;
6221
- font-family: var(--golos-ui);
6230
+ font-family: var(--golos);
6222
6231
  font-stretch: normal;
6223
6232
  font-style: normal;
6224
6233
  font-variant: normal;
@@ -6228,7 +6237,7 @@
6228
6237
  line-height: 20px;
6229
6238
  color: var(--gray-iron-500);
6230
6239
  font-weight: 400;
6231
- font-family: var(--golos-ui);
6240
+ font-family: var(--golos);
6232
6241
  font-stretch: normal;
6233
6242
  font-style: normal;
6234
6243
  font-variant: normal;
@@ -6238,7 +6247,7 @@
6238
6247
  line-height: 20px;
6239
6248
  color: var(--error-500);
6240
6249
  font-weight: 400;
6241
- font-family: var(--golos-ui);
6250
+ font-family: var(--golos);
6242
6251
  font-stretch: normal;
6243
6252
  font-style: normal;
6244
6253
  font-variant: normal;
@@ -6248,7 +6257,7 @@
6248
6257
  line-height: 20px;
6249
6258
  color: var(--rose-500);
6250
6259
  font-weight: 400;
6251
- font-family: var(--golos-ui);
6260
+ font-family: var(--golos);
6252
6261
  font-stretch: normal;
6253
6262
  font-style: normal;
6254
6263
  font-variant: normal;
@@ -6261,7 +6270,7 @@
6261
6270
  line-height: 20px;
6262
6271
  color: var(--gray-iron-400);
6263
6272
  font-weight: 500;
6264
- font-family: var(--golos-ui);
6273
+ font-family: var(--golos);
6265
6274
  font-stretch: normal;
6266
6275
  font-style: normal;
6267
6276
  font-variant: normal;
@@ -6271,7 +6280,7 @@
6271
6280
  line-height: 20px;
6272
6281
  color: var(--gray-iron-500);
6273
6282
  font-weight: 400;
6274
- font-family: var(--golos-ui);
6283
+ font-family: var(--golos);
6275
6284
  font-stretch: normal;
6276
6285
  font-style: normal;
6277
6286
  font-variant: normal;
@@ -6352,7 +6361,7 @@
6352
6361
  line-height: 24px;
6353
6362
  color: var(--gray-900);
6354
6363
  font-weight: 400;
6355
- font-family: var(--golos-ui);
6364
+ font-family: var(--golos);
6356
6365
  font-stretch: normal;
6357
6366
  font-style: normal;
6358
6367
  font-variant: normal;
@@ -6362,7 +6371,7 @@
6362
6371
  line-height: 24px;
6363
6372
  color: var(--gray-400);
6364
6373
  font-weight: 400;
6365
- font-family: var(--golos-ui);
6374
+ font-family: var(--golos);
6366
6375
  font-stretch: normal;
6367
6376
  font-style: normal;
6368
6377
  font-variant: normal;
@@ -6378,7 +6387,7 @@
6378
6387
  line-height: 24px;
6379
6388
  color: var(--gray-500);
6380
6389
  font-weight: 400;
6381
- font-family: var(--golos-ui);
6390
+ font-family: var(--golos);
6382
6391
  font-stretch: normal;
6383
6392
  font-style: normal;
6384
6393
  font-variant: normal;
@@ -6399,7 +6408,7 @@
6399
6408
  line-height: 24px;
6400
6409
  color: var(--gray-iron-25);
6401
6410
  font-weight: 400;
6402
- font-family: var(--golos-ui);
6411
+ font-family: var(--golos);
6403
6412
  font-stretch: normal;
6404
6413
  font-style: normal;
6405
6414
  font-variant: normal;
@@ -6409,7 +6418,7 @@
6409
6418
  line-height: 24px;
6410
6419
  color: var(--gray-iron-500);
6411
6420
  font-weight: 400;
6412
- font-family: var(--golos-ui);
6421
+ font-family: var(--golos);
6413
6422
  font-stretch: normal;
6414
6423
  font-style: normal;
6415
6424
  font-variant: normal;
@@ -6425,7 +6434,7 @@
6425
6434
  line-height: 24px;
6426
6435
  color: var(--gray-iron-500);
6427
6436
  font-weight: 400;
6428
- font-family: var(--golos-ui);
6437
+ font-family: var(--golos);
6429
6438
  font-stretch: normal;
6430
6439
  font-style: normal;
6431
6440
  font-variant: normal;
@@ -6463,7 +6472,7 @@
6463
6472
  line-height: 24px;
6464
6473
  color: var(--gray-400);
6465
6474
  font-weight: 400;
6466
- font-family: var(--golos-ui);
6475
+ font-family: var(--golos);
6467
6476
  font-stretch: normal;
6468
6477
  font-style: normal;
6469
6478
  font-variant: normal;
@@ -6477,7 +6486,7 @@
6477
6486
  line-height: 24px;
6478
6487
  color: var(--gray-900);
6479
6488
  font-weight: 400;
6480
- font-family: var(--golos-ui);
6489
+ font-family: var(--golos);
6481
6490
  font-stretch: normal;
6482
6491
  font-style: normal;
6483
6492
  font-variant: normal;
@@ -6584,7 +6593,7 @@
6584
6593
  line-height: 20px;
6585
6594
  color: var(--gray-600);
6586
6595
  font-weight: 500;
6587
- font-family: var(--golos-ui);
6596
+ font-family: var(--golos);
6588
6597
  font-stretch: normal;
6589
6598
  font-style: normal;
6590
6599
  font-variant: normal;