indicator-ui 0.1.39 → 0.1.40

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 (72) hide show
  1. package/dist/index.css +938 -10
  2. package/dist/index.css.map +1 -1
  3. package/dist/index.js +666 -272
  4. package/dist/index.js.map +1 -1
  5. package/dist/scss/ui/Buttons/styles/mixins/properties/index.scss +1 -0
  6. package/dist/scss/ui/Buttons/styles/mixins/properties/link-dark-theme.scss +48 -0
  7. package/dist/scss/ui/Buttons/styles/mixins/properties/primary.scss +18 -0
  8. package/dist/scss/ui/Buttons/styles/mixins/properties/secondary-color.scss +31 -0
  9. package/dist/scss/ui/Buttons/styles/mixins/properties/secondary-gray.scss +39 -0
  10. package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-color.scss +39 -0
  11. package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-white.scss +39 -0
  12. package/dist/scss/ui/MicroButton/styles/mixins/properties/index.scss +1 -0
  13. package/dist/scss/ui/MicroButton/styles/mixins/properties/rose.scss +21 -0
  14. package/dist/scss/ui/ToggleBase/styles/mixins/active.scss +6 -2
  15. package/dist/scss/ui/ToggleBase/styles/mixins/base.scss +7 -2
  16. package/dist/scss/ui/ToggleBase/styles/mixins/hover.scss +12 -4
  17. package/dist/types/src/hooks/ui-animations/assets/carouselAnimations.d.ts +9 -0
  18. package/dist/types/src/hooks/ui-animations/assets/index.d.ts +1 -0
  19. package/dist/types/src/hooks/ui-animations/index.d.ts +1 -0
  20. package/dist/types/src/hooks/ui-animations/useCarousel.d.ts +12 -0
  21. package/dist/types/src/ui/Buttons/types/ButtonTypes.d.ts +3 -1
  22. package/dist/types/src/ui/Buttons/ui/Button.d.ts +1 -0
  23. package/dist/types/src/ui/DateTimePicker/types/DateTimePickerTypes.d.ts +1 -0
  24. package/dist/types/src/ui/DateTimePicker/types/components/CalendarButtonTypes.d.ts +1 -0
  25. package/dist/types/src/ui/DateTimePicker/types/components/CalendarDayTypes.d.ts +1 -0
  26. package/dist/types/src/ui/DateTimePicker/types/components/CalendarMonthTypes.d.ts +1 -0
  27. package/dist/types/src/ui/DateTimePicker/types/components/CalendarYearTypes.d.ts +1 -0
  28. package/dist/types/src/ui/DateTimePicker/types/components/TimePickerFeedTypes.d.ts +1 -0
  29. package/dist/types/src/ui/DateTimePicker/types/pickers/DatePickerTypes.d.ts +1 -0
  30. package/dist/types/src/ui/DateTimePicker/types/pickers/MonthPickerTypes.d.ts +1 -0
  31. package/dist/types/src/ui/DateTimePicker/types/pickers/TimePickerTypes.d.ts +1 -0
  32. package/dist/types/src/ui/DateTimePicker/types/pickers/YearPickerTypes.d.ts +1 -0
  33. package/dist/types/src/ui/DateTimePicker/ui/components/CalendarButton.d.ts +1 -1
  34. package/dist/types/src/ui/DateTimePicker/ui/components/CalendarDay.d.ts +1 -1
  35. package/dist/types/src/ui/DateTimePicker/ui/components/CalendarMonth.d.ts +1 -1
  36. package/dist/types/src/ui/DateTimePicker/ui/components/CalendarYear.d.ts +1 -1
  37. package/dist/types/src/ui/DateTimePicker/ui/components/TimePickerFeed.d.ts +1 -1
  38. package/dist/types/src/ui/DateTimePicker/ui/pickers/DatePicker.d.ts +1 -1
  39. package/dist/types/src/ui/DateTimePicker/ui/pickers/MonthPicker.d.ts +1 -1
  40. package/dist/types/src/ui/DateTimePicker/ui/pickers/TimePicker.d.ts +1 -1
  41. package/dist/types/src/ui/DateTimePicker/ui/pickers/YearPicker.d.ts +1 -1
  42. package/dist/types/src/ui/Dropdown/types/DropdownTypes.d.ts +1 -0
  43. package/dist/types/src/ui/DropdownItem/types/DropdownItemTypes.d.ts +1 -0
  44. package/dist/types/src/ui/FormBuilder/ui/FormBuilder.d.ts +11 -1
  45. package/dist/types/src/ui/InputFields/DateTimeField/types/DateTimeFieldTypes.d.ts +1 -0
  46. package/dist/types/src/ui/InputFields/DateTimeField/ui/DateField.d.ts +1 -1
  47. package/dist/types/src/ui/InputFields/DateTimeField/ui/DateTimeField.d.ts +1 -1
  48. package/dist/types/src/ui/InputFields/DateTimeField/ui/TimeField.d.ts +1 -1
  49. package/dist/types/src/ui/InputFields/DateTimeFieldMask/types/index.d.ts +4 -0
  50. package/dist/types/src/ui/InputFields/DateTimeFieldMask/ui/DateTimeFieldMask.d.ts +1 -1
  51. package/dist/types/src/ui/InputFields/DateTimeRangeField/types/DateRangeFieldTypes.d.ts +1 -0
  52. package/dist/types/src/ui/InputFields/DateTimeRangeField/types/TimeRangeFieldTypes.d.ts +1 -0
  53. package/dist/types/src/ui/InputFields/DateTimeRangeField/ui/DateRangeField.d.ts +1 -1
  54. package/dist/types/src/ui/InputFields/DateTimeRangeField/ui/DateTimeRangeField.d.ts +1 -1
  55. package/dist/types/src/ui/InputFields/DateTimeRangeField/ui/TimeRangeField.d.ts +1 -1
  56. package/dist/types/src/ui/InputFields/FlexField/types/FlexFieldTypes.d.ts +4 -0
  57. package/dist/types/src/ui/InputFields/FlexField/ui/FlexField.d.ts +1 -0
  58. package/dist/types/src/ui/InputFields/SelectField/types/SelectFieldTypes.d.ts +1 -0
  59. package/dist/types/src/ui/MediaViewer/ui/MediaViewer.d.ts +6 -1
  60. package/dist/types/src/ui/MicroButton/types/MicroButtonTypes.d.ts +1 -1
  61. package/dist/types/src/ui/PaginationBar/types/PageSwitcherTypes.d.ts +1 -0
  62. package/dist/types/src/ui/PaginationBar/types/PaginationBarTypes.d.ts +1 -0
  63. package/dist/types/src/ui/PaginationBar/ui/PageSwitcher.d.ts +1 -1
  64. package/dist/types/src/ui/PaginationBar/ui/PaginationBar.d.ts +1 -1
  65. package/dist/types/src/ui/TabButtons/types/TabButtonsTypes.d.ts +1 -0
  66. package/dist/types/src/ui/TabButtons/ui/TabButtons.d.ts +1 -1
  67. package/dist/types/src/ui/TabFrame/types/TabFrameTypes.d.ts +1 -0
  68. package/dist/types/src/ui/TabFrame/ui/TabFrame.d.ts +1 -1
  69. package/dist/types/src/ui/Toggle/types/ToggleTypes.d.ts +1 -0
  70. package/dist/types/src/ui/ToggleBase/types/ToggleBaseTypes.d.ts +1 -0
  71. package/dist/types/src/ui/ToggleBase/ui/ToggleBase.d.ts +1 -1
  72. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -69,6 +69,45 @@
69
69
  --success-800: #085D3A;
70
70
  --success-900: #074D31;
71
71
  --success-950: #053321;
72
+
73
+ --gray-iron-25: #FCFCFC;
74
+ --gray-iron-50: #FAFAFA;
75
+ --gray-iron-100: #F4F4F5;
76
+ --gray-iron-200: #E4E4E7;
77
+ --gray-iron-300: #D1D1D6;
78
+ --gray-iron-400: #A0A0AB;
79
+ --gray-iron-500: #70707B;
80
+ --gray-iron-600: #51525C;
81
+ --gray-iron-700: #3F3F46;
82
+ --gray-iron-800: #26272B;
83
+ --gray-iron-900: #18181B;
84
+ --gray-iron-950: #131316;
85
+
86
+ --rose-25: #FFF5F6;
87
+ --rose-50: #FFF1F3;
88
+ --rose-100: #FFE4E8;
89
+ --rose-200: #FECDD6;
90
+ --rose-300: #FEA3B4;
91
+ --rose-400: #FD6F8E;
92
+ --rose-500: #F63D68;
93
+ --rose-600: #E31B54;
94
+ --rose-700: #C01048;
95
+ --rose-800: #A11043;
96
+ --rose-900: #89123E;
97
+ --rose-950: #510B24;
98
+
99
+ --pink-25: #FEF6FB;
100
+ --pink-50: #FDF2FA;
101
+ --pink-100: #FCE7F6;
102
+ --pink-200: #FCCEEE;
103
+ --pink-300: #FAA7E0;
104
+ --pink-400: #F670C7;
105
+ --pink-500: #EE46BC;
106
+ --pink-600: #DD2590;
107
+ --pink-700: #C11574;
108
+ --pink-800: #9E165F;
109
+ --pink-900: #851651;
110
+ --pink-950: #4E0D30;
72
111
  }
73
112
 
74
113
  /*!*****************************************************************************************************!*\
@@ -331,6 +370,19 @@
331
370
  .Buttons-module__button___I3yLe.Buttons-module__primary____crHN:disabled, .Buttons-module__button___I3yLe.Buttons-module__primary____crHN.Buttons-module__disabled___INiFx {
332
371
  opacity: 0.3;
333
372
  }
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
+ }
334
386
  .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ {
335
387
  border-radius: 8px;
336
388
  background-color: var(--base-white);
@@ -358,6 +410,28 @@
358
410
  .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ:disabled, .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ.Buttons-module__disabled___INiFx {
359
411
  opacity: 0.5;
360
412
  }
413
+ .Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU {
414
+ background-color: var(--base-black);
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
+ }
361
435
  .Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne {
362
436
  border-radius: 8px;
363
437
  background-color: var(--base-white);
@@ -391,6 +465,34 @@
391
465
  .Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne:disabled, .Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne.Buttons-module__disabled___INiFx {
392
466
  opacity: 0.5;
393
467
  }
468
+ .Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy {
469
+ background-color: var(--gray-iron-950);
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
+ }
394
496
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq {
395
497
  border: 1px solid transparent;
396
498
  }
@@ -419,6 +521,28 @@
419
521
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq:disabled, .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq.Buttons-module__disabled___INiFx {
420
522
  opacity: 0.5;
421
523
  }
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
+ }
422
546
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw {
423
547
  border: 1px solid transparent;
424
548
  }
@@ -447,6 +571,28 @@
447
571
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:disabled, .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw.Buttons-module__disabled___INiFx {
448
572
  opacity: 0.5;
449
573
  }
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
+ }
450
596
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu {
451
597
  border: 1px solid transparent;
452
598
  }
@@ -571,6 +717,38 @@
571
717
  .Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd:disabled, .Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd.Buttons-module__disabled___INiFx {
572
718
  opacity: 0.5;
573
719
  }
720
+ .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd {
721
+ padding: 0 !important;
722
+ gap: 4px;
723
+ }
724
+ .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd .Buttons-module__icon___U2AOU svg * {
725
+ stroke: var(--gray-iron-400);
726
+ }
727
+ .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd .Buttons-module__content___lPb5_ {
728
+ padding: 0 !important;
729
+ }
730
+ .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
731
+ color: var(--gray-iron-400);
732
+ }
733
+ @media only screen and (min-width: 1024px) {
734
+ .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
735
+ color: var(--base-white);
736
+ }
737
+ .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__icon___U2AOU svg * {
738
+ stroke: var(--base-white);
739
+ }
740
+ }
741
+ @media (min-width: 481px) and (max-width: 1279px) {
742
+ .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
743
+ color: var(--base-white);
744
+ }
745
+ .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__icon___U2AOU svg * {
746
+ stroke: var(--base-white);
747
+ }
748
+ }
749
+ .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd:disabled, .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd.Buttons-module__disabled___INiFx {
750
+ opacity: 0.5;
751
+ }
574
752
  .Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq {
575
753
  border-radius: 6px;
576
754
  background-color: var(--base-white);
@@ -852,6 +1030,29 @@
852
1030
  stroke: var(--primary-500);
853
1031
  }
854
1032
  }
1033
+ .MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL {
1034
+ background: none;
1035
+ border: 1px solid transparent;
1036
+ }
1037
+ .MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL svg * {
1038
+ stroke: var(--rose-600);
1039
+ }
1040
+ @media only screen and (min-width: 1024px) {
1041
+ .MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL:not(.MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL:disabled):hover {
1042
+ background-color: var(--rose-900);
1043
+ }
1044
+ .MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL:not(.MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL:disabled):hover svg * {
1045
+ stroke: var(--rose-500);
1046
+ }
1047
+ }
1048
+ @media (min-width: 481px) and (max-width: 1279px) {
1049
+ .MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL:active {
1050
+ background-color: var(--rose-900);
1051
+ }
1052
+ .MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL:active svg * {
1053
+ stroke: var(--rose-500);
1054
+ }
1055
+ }
855
1056
  .MicroButton-module__button___QMj95.MicroButton-module__redHover____WGXq {
856
1057
  background: none;
857
1058
  border: 1px solid transparent;
@@ -1011,10 +1212,10 @@
1011
1212
  padding: 9px 11px;
1012
1213
  border-radius: 8px;
1013
1214
  gap: 12px;
1215
+ box-sizing: border-box;
1014
1216
  background-color: var(--base-white);
1015
1217
  border: 1px solid var(--gray-300);
1016
1218
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
1017
- box-sizing: border-box;
1018
1219
  }
1019
1220
  .FlexField-module__flexField___bQEfy {
1020
1221
  display: flex;
@@ -1210,6 +1411,106 @@
1210
1411
  font-style: normal;
1211
1412
  font-variant: normal;
1212
1413
  }
1414
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD {
1415
+ background-color: var(--gray-iron-950);
1416
+ border: 1px solid var(--gray-iron-800);
1417
+ }
1418
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__inputField___ckUI1 {
1419
+ font-size: 16px;
1420
+ line-height: 24px;
1421
+ color: var(--gray-iron-25);
1422
+ font-weight: 400;
1423
+ font-family: var(--golos-ui);
1424
+ font-stretch: normal;
1425
+ font-style: normal;
1426
+ font-variant: normal;
1427
+ }
1428
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__inputField___ckUI1::placeholder, .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__inputField___ckUI1.FlexField-module__placeholder___LYS5Z {
1429
+ font-size: 16px;
1430
+ line-height: 24px;
1431
+ color: var(--gray-iron-500);
1432
+ font-weight: 400;
1433
+ font-family: var(--golos-ui);
1434
+ font-stretch: normal;
1435
+ font-style: normal;
1436
+ font-variant: normal;
1437
+ }
1438
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__icon___pHmKh svg * {
1439
+ stroke: var(--gray-iron-500);
1440
+ }
1441
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__textSupport___WGMzj {
1442
+ font-size: 16px;
1443
+ line-height: 24px;
1444
+ color: var(--gray-iron-500);
1445
+ font-weight: 400;
1446
+ font-family: var(--golos-ui);
1447
+ font-stretch: normal;
1448
+ font-style: normal;
1449
+ font-variant: normal;
1450
+ }
1451
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__help___ORoT_ svg * {
1452
+ stroke: var(--gray-iron-500);
1453
+ }
1454
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__dropdown___BqdfG svg * {
1455
+ stroke: var(--gray-iron-500);
1456
+ }
1457
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__button___TjLHK.FlexField-module__red___BY7NK svg * {
1458
+ stroke: var(--error-400);
1459
+ }
1460
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__button___TjLHK.FlexField-module__red___BY7NK:hover svg * {
1461
+ stroke: var(--error-500);
1462
+ }
1463
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__button___TjLHK.FlexField-module__gray___sjpVp svg * {
1464
+ stroke: var(--gray-iron-400);
1465
+ }
1466
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__button___TjLHK.FlexField-module__gray___sjpVp:hover svg * {
1467
+ stroke: var(--gray-iron-500);
1468
+ }
1469
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__focus___pkwN6 {
1470
+ border: 1px solid var(--gray-iron-700);
1471
+ }
1472
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__isError___VljDQ {
1473
+ border: 1px solid var(--error-900);
1474
+ }
1475
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__isError___VljDQ .FlexField-module__help___ORoT_ svg * {
1476
+ stroke: var(--error-500);
1477
+ }
1478
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__isError___VljDQ.FlexField-module__focus___pkwN6 {
1479
+ border: 1px solid var(--error-700);
1480
+ }
1481
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__disabled___lN8Vv {
1482
+ background-color: var(--gray-iron-950);
1483
+ }
1484
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__disabled___lN8Vv .FlexField-module__inputField___ckUI1 {
1485
+ font-size: 16px;
1486
+ line-height: 24px;
1487
+ color: var(--gray-iron-500);
1488
+ font-weight: 400;
1489
+ font-family: var(--golos-ui);
1490
+ font-stretch: normal;
1491
+ font-style: normal;
1492
+ font-variant: normal;
1493
+ }
1494
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__smallDisplay___y_Y9l .FlexField-module__inputField___ckUI1 {
1495
+ font-size: 16px;
1496
+ line-height: 24px;
1497
+ color: var(--gray-iron-25);
1498
+ font-weight: 400;
1499
+ font-family: var(--golos-ui);
1500
+ font-stretch: normal;
1501
+ font-style: normal;
1502
+ font-variant: normal;
1503
+ }
1504
+ .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__largeDisplay___I3LHo .FlexField-module__inputField___ckUI1 {
1505
+ font-size: 20px;
1506
+ line-height: 24px;
1507
+ color: var(--gray-iron-25);
1508
+ font-weight: 400;
1509
+ font-family: var(--golos-ui);
1510
+ font-stretch: normal;
1511
+ font-style: normal;
1512
+ font-variant: normal;
1513
+ }
1213
1514
  /*!***************************************************************************************************************************************************************************************************************************************************************************************!*\
1214
1515
  !*** 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/InputFields/SelectField/styles/SelectField.module.scss ***!
1215
1516
  \***************************************************************************************************************************************************************************************************************************************************************************************/
@@ -1511,6 +1812,44 @@
1511
1812
  .DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__widthHug___UJyI8 .DateTimeFieldMask-module__item___LHghw, .DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__widthHug___UJyI8 .DateTimeFieldMask-module__item___LHghw .DateTimeFieldMask-module__content___KUAL7 {
1512
1813
  flex: none;
1513
1814
  }
1815
+ .DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk {
1816
+ border: 1px solid var(--gray-iron-800);
1817
+ background-color: var(--gray-iron-950);
1818
+ }
1819
+ .DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk .DateTimeFieldMask-module__item___LHghw .DateTimeFieldMask-module__icon___w5Oda svg * {
1820
+ stroke: var(--gray-iron-500);
1821
+ }
1822
+ .DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk .DateTimeFieldMask-module__item___LHghw .DateTimeFieldMask-module__text___cfGtj {
1823
+ font-size: 16px;
1824
+ line-height: 24px;
1825
+ color: var(--gray-iron-500);
1826
+ font-weight: 400;
1827
+ font-family: var(--golos-ui);
1828
+ font-stretch: normal;
1829
+ font-style: normal;
1830
+ font-variant: normal;
1831
+ }
1832
+ .DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk .DateTimeFieldMask-module__xCloseButton___SiUGK svg * {
1833
+ stroke: var(--gray-iron-500);
1834
+ }
1835
+ @media only screen and (min-width: 1024px) {
1836
+ .DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk .DateTimeFieldMask-module__xCloseButton___SiUGK:hover svg * {
1837
+ stroke: var(--gray-iron-600);
1838
+ }
1839
+ }
1840
+ .DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk.DateTimeFieldMask-module__isFocus___rZ3KJ {
1841
+ border: 1px solid var(--gray-iron-700);
1842
+ }
1843
+ .DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk.DateTimeFieldMask-module__isError___c1m4S {
1844
+ border: 1px solid var(--error-950);
1845
+ }
1846
+ .DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk.DateTimeFieldMask-module__isError___c1m4S.DateTimeFieldMask-module__isFocus___rZ3KJ {
1847
+ border: 1px solid var(--error-800);
1848
+ }
1849
+ .DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk.DateTimeFieldMask-module__disabled___xrbuV {
1850
+ border: 1px solid var(--gray-iron-800);
1851
+ background-color: var(--gray-iron-950);
1852
+ }
1514
1853
  /*!*******************************************************************************************************************************************************************************************************************************************************************************************!*\
1515
1854
  !*** 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/InputFields/DateTimeField/styles/DateTimeField.module.scss ***!
1516
1855
  \*******************************************************************************************************************************************************************************************************************************************************************************************/
@@ -1574,6 +1913,36 @@
1574
1913
  font-style: normal;
1575
1914
  font-variant: normal;
1576
1915
  }
1916
+ .DateTimeField-module__flexField___gDZ5r.DateTimeField-module__darkTheme___wmpps {
1917
+ font-size: 16px;
1918
+ line-height: 24px;
1919
+ color: var(--gray-iron-25);
1920
+ font-weight: 400;
1921
+ font-family: var(--golos-ui);
1922
+ font-stretch: normal;
1923
+ font-style: normal;
1924
+ font-variant: normal;
1925
+ }
1926
+ .DateTimeField-module__flexField___gDZ5r.DateTimeField-module__darkTheme___wmpps::placeholder {
1927
+ font-size: 16px;
1928
+ line-height: 24px;
1929
+ color: var(--gray-iron-500);
1930
+ font-weight: 400;
1931
+ font-family: var(--golos-ui);
1932
+ font-stretch: normal;
1933
+ font-style: normal;
1934
+ font-variant: normal;
1935
+ }
1936
+ .DateTimeField-module__flexField___gDZ5r.DateTimeField-module__darkTheme___wmpps.DateTimeField-module__disabled___Gk46h, .DateTimeField-module__flexField___gDZ5r.DateTimeField-module__darkTheme___wmpps.DateTimeField-module__disabled___Gk46h::placeholder {
1937
+ font-size: 16px;
1938
+ line-height: 24px;
1939
+ color: var(--gray-iron-500);
1940
+ font-weight: 400;
1941
+ font-family: var(--golos-ui);
1942
+ font-stretch: normal;
1943
+ font-style: normal;
1944
+ font-variant: normal;
1945
+ }
1577
1946
  /*!***************************************************************************************************************************************************************************************************************************************************************************************!*\
1578
1947
  !*** 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/InputFields/DateTimeField/styles/DateField.module.scss ***!
1579
1948
  \***************************************************************************************************************************************************************************************************************************************************************************************/
@@ -2057,6 +2426,7 @@
2057
2426
  \*************************************************************************************************************************************************************************************************************************************************************************/
2058
2427
  .ToggleBase-module__toggleBase___Vkhhf {
2059
2428
  transition: all ease-out 0.2s;
2429
+ --toggle-theme: "light";
2060
2430
  border-radius: 12px;
2061
2431
  padding: 1px;
2062
2432
  border: 1px solid transparent;
@@ -2131,6 +2501,27 @@
2131
2501
  opacity: 0.5;
2132
2502
  }
2133
2503
  }
2504
+ .ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__dark___dcBYN {
2505
+ border-radius: 12px;
2506
+ padding: 1px;
2507
+ border: 1px solid transparent;
2508
+ background-color: var(--gray-iron-500);
2509
+ }
2510
+ .ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__dark___dcBYN {
2511
+ display: flex;
2512
+ align-items: center;
2513
+ }
2514
+ .ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__dark___dcBYN.ToggleBase-module__active___q_Db4 {
2515
+ background-color: var(--rose-500);
2516
+ }
2517
+ @media only screen and (min-width: 1024px) {
2518
+ .ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__dark___dcBYN:not(.ToggleBase-module__disabled___Znl75).ToggleBase-module__hover___KiQjy, .ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__dark___dcBYN:not(.ToggleBase-module__disabled___Znl75):hover {
2519
+ background-color: var(--gray-iron-600);
2520
+ }
2521
+ .ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__dark___dcBYN:not(.ToggleBase-module__disabled___Znl75).ToggleBase-module__hover___KiQjy.ToggleBase-module__active___q_Db4, .ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__dark___dcBYN:not(.ToggleBase-module__disabled___Znl75):hover.ToggleBase-module__active___q_Db4 {
2522
+ background-color: var(--rose-600);
2523
+ }
2524
+ }
2134
2525
  /*!*****************************************************************************************************************************************************************************************************************************************************************!*\
2135
2526
  !*** 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/Toggle/styles/Toggle.module.scss ***!
2136
2527
  \*****************************************************************************************************************************************************************************************************************************************************************/
@@ -2223,6 +2614,26 @@
2223
2614
  .Toggle-module__toggle___v6vwY.Toggle-module__heightHug___fFSTL {
2224
2615
  height: fit-content;
2225
2616
  }
2617
+ .Toggle-module__toggle___v6vwY.Toggle-module__dark___ogO9H .Toggle-module__text___i2f7B {
2618
+ color: var(--gray-iron-300) !important;
2619
+ }
2620
+ .Toggle-module__toggle___v6vwY.Toggle-module__dark___ogO9H .Toggle-module__description___hvDOL {
2621
+ color: var(--gray-iron-400) !important;
2622
+ }
2623
+ .Toggle-module__toggle___v6vwY.Toggle-module__dark___ogO9H.Toggle-module__active___Skxl4 .Toggle-module__textBlock___KUwlm .Toggle-module__text___i2f7B {
2624
+ color: var(--gray-iron-50) !important;
2625
+ }
2626
+ .Toggle-module__toggle___v6vwY.Toggle-module__dark___ogO9H.Toggle-module__active___Skxl4 .Toggle-module__textBlock___KUwlm .Toggle-module__description___hvDOL {
2627
+ color: var(--gray-iron-500) !important;
2628
+ }
2629
+ @media only screen and (min-width: 1024px) {
2630
+ .Toggle-module__toggle___v6vwY.Toggle-module__dark___ogO9H:not(.Toggle-module__disabled___ME0Wv).Toggle-module__hover___Ws4WL .Toggle-module__textBlock___KUwlm .Toggle-module__text___i2f7B {
2631
+ color: var(--gray-iron-50) !important;
2632
+ }
2633
+ .Toggle-module__toggle___v6vwY.Toggle-module__dark___ogO9H:not(.Toggle-module__disabled___ME0Wv).Toggle-module__hover___Ws4WL .Toggle-module__textBlock___KUwlm .Toggle-module__description___hvDOL {
2634
+ color: var(--gray-iron-500) !important;
2635
+ }
2636
+ }
2226
2637
  /*!********************************************************************************************************************************************************************************************************************************************************************************!*\
2227
2638
  !*** 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/CascadeSelector/styles/CascadeBlock.module.scss ***!
2228
2639
  \********************************************************************************************************************************************************************************************************************************************************************************/
@@ -2572,6 +2983,9 @@
2572
2983
  .TabFrame-module__tabFrame___Ppzzz.TabFrame-module__widthHug___wokCP {
2573
2984
  width: fit-content;
2574
2985
  }
2986
+ .TabFrame-module__tabFrame___Ppzzz.TabFrame-module__dark___uBrHA {
2987
+ background-color: var(--gray-iron-950);
2988
+ }
2575
2989
  /*!*************************************************************************************************************************************************************************************************************************************************************************!*\
2576
2990
  !*** 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/TabButtons/styles/TabButtons.module.scss ***!
2577
2991
  \*************************************************************************************************************************************************************************************************************************************************************************/
@@ -2690,6 +3104,84 @@
2690
3104
  .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__heightFill____mxL8 {
2691
3105
  height: 100%;
2692
3106
  }
3107
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg {
3108
+ background-color: var(--gray-iron-950);
3109
+ }
3110
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg .TabButtons-module__rightIcon___Vllb5 svg * {
3111
+ stroke: var(--gray-iron-600);
3112
+ }
3113
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg .TabButtons-module__leftIcon___yDOkS svg * {
3114
+ stroke: var(--gray-iron-600);
3115
+ }
3116
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg .TabButtons-module__text___EbNMB {
3117
+ font-size: 14px;
3118
+ line-height: 16px;
3119
+ color: var(--gray-iron-400);
3120
+ font-weight: 500;
3121
+ font-family: var(--golos-ui);
3122
+ font-stretch: normal;
3123
+ font-style: normal;
3124
+ font-variant: normal;
3125
+ }
3126
+ @media only screen and (min-width: 1024px) {
3127
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:hover {
3128
+ background-color: var(--gray-iron-900);
3129
+ }
3130
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:hover .TabButtons-module__text___EbNMB {
3131
+ color: var(--gray-iron-200);
3132
+ }
3133
+ }
3134
+ @media (min-width: 481px) and (max-width: 1279px) {
3135
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:active {
3136
+ background-color: var(--gray-iron-900);
3137
+ }
3138
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:active .TabButtons-module__text___EbNMB {
3139
+ color: var(--gray-iron-200);
3140
+ }
3141
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:active .TabButtons-module__rightIcon___Vllb5 svg * {
3142
+ stroke: var(--gray-iron-500);
3143
+ }
3144
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:active .TabButtons-module__leftIcon___yDOkS svg * {
3145
+ stroke: var(--gray-iron-500);
3146
+ }
3147
+ }
3148
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__active___ShP43 {
3149
+ border: 1px solid var(--gray-iron-800);
3150
+ background-color: var(--gray-iron-900);
3151
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
3152
+ }
3153
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__active___ShP43 .TabButtons-module__rightIcon___Vllb5 svg * {
3154
+ stroke: var(--gray-iron-500);
3155
+ }
3156
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__active___ShP43 .TabButtons-module__leftIcon___yDOkS svg * {
3157
+ stroke: var(--gray-iron-500);
3158
+ }
3159
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__active___ShP43 .TabButtons-module__text___EbNMB {
3160
+ color: var(--gray-iron-200);
3161
+ }
3162
+ @media only screen and (min-width: 1024px) {
3163
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__active___ShP43:hover {
3164
+ background-color: var(--gray--iron-800);
3165
+ border: 1px solid var(--gray-iron-700);
3166
+ }
3167
+ }
3168
+ @media (min-width: 481px) and (max-width: 1279px) {
3169
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__active___ShP43:active {
3170
+ background-color: var(--gray--iron-800);
3171
+ }
3172
+ }
3173
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__disabled___MlvE9, .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:disabled {
3174
+ background-color: var(--gray--iron-900);
3175
+ }
3176
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__disabled___MlvE9 .TabButtons-module__rightIcon___Vllb5 svg *, .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:disabled .TabButtons-module__rightIcon___Vllb5 svg * {
3177
+ stroke: var(--gray-iron-700);
3178
+ }
3179
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__disabled___MlvE9 .TabButtons-module__leftIcon___yDOkS svg *, .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:disabled .TabButtons-module__leftIcon___yDOkS svg * {
3180
+ stroke: var(--gray-iron-700);
3181
+ }
3182
+ .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__disabled___MlvE9 .TabButtons-module__text___EbNMB, .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:disabled .TabButtons-module__text___EbNMB {
3183
+ color: var(--gray-iron-600);
3184
+ }
2693
3185
  /*!******************************************************************************************************************************************************************************************************************************************************************************!*\
2694
3186
  !*** 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/PaginationBar/styles/PageSwitcher.module.scss ***!
2695
3187
  \******************************************************************************************************************************************************************************************************************************************************************************/
@@ -2807,10 +3299,40 @@
2807
3299
  .PageSwitcher-module__pageSwitcher___PGQPI.PageSwitcher-module__smallVersion___YJr68 {
2808
3300
  justify-content: space-between;
2809
3301
  }
2810
- /*!*******************************************************************************************************************************************************************************************************************************************************************************!*\
2811
- !*** 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/PaginationBar/styles/PaginationBar.module.scss ***!
2812
- \*******************************************************************************************************************************************************************************************************************************************************************************/
2813
- .PaginationBar-module__paginationBar___gNByI {
3302
+ .PageSwitcher-module__pageSwitcher___PGQPI.PageSwitcher-module__dark___kWpZ9 .PageSwitcher-module__buttonsList___dxvZB .PageSwitcher-module__plug___vUKSL {
3303
+ font-size: 14px;
3304
+ line-height: 20px;
3305
+ color: var(--gray-iron-500);
3306
+ font-weight: 500;
3307
+ font-family: var(--golos-ui);
3308
+ font-stretch: normal;
3309
+ font-style: normal;
3310
+ font-variant: normal;
3311
+ }
3312
+ .PageSwitcher-module__pageSwitcher___PGQPI.PageSwitcher-module__dark___kWpZ9 .PageSwitcher-module__buttonsList___dxvZB .PageSwitcher-module__numberButton___TgDNV {
3313
+ font-size: 14px;
3314
+ line-height: 20px;
3315
+ color: var(--gray-iron-500);
3316
+ font-weight: 500;
3317
+ font-family: var(--golos-ui);
3318
+ font-stretch: normal;
3319
+ font-style: normal;
3320
+ font-variant: normal;
3321
+ }
3322
+ @media only screen and (min-width: 1024px) {
3323
+ .PageSwitcher-module__pageSwitcher___PGQPI.PageSwitcher-module__dark___kWpZ9 .PageSwitcher-module__buttonsList___dxvZB .PageSwitcher-module__numberButton___TgDNV:hover {
3324
+ color: var(--gray-iron-400);
3325
+ background-color: var(--gray-iron-800);
3326
+ }
3327
+ }
3328
+ .PageSwitcher-module__pageSwitcher___PGQPI.PageSwitcher-module__dark___kWpZ9 .PageSwitcher-module__buttonsList___dxvZB .PageSwitcher-module__numberButton___TgDNV.PageSwitcher-module__active___Mx_1z {
3329
+ color: var(--gray-iron-400);
3330
+ background-color: var(--gray-iron-800);
3331
+ }
3332
+ /*!*******************************************************************************************************************************************************************************************************************************************************************************!*\
3333
+ !*** 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/PaginationBar/styles/PaginationBar.module.scss ***!
3334
+ \*******************************************************************************************************************************************************************************************************************************************************************************/
3335
+ .PaginationBar-module__paginationBar___gNByI {
2814
3336
  width: 100%;
2815
3337
  display: flex;
2816
3338
  flex-direction: column;
@@ -2999,6 +3521,123 @@
2999
3521
  .DropdownItem-module__dropdownItem___N8ZNV.DropdownItem-module__widthHug___HJMle {
3000
3522
  width: fit-content;
3001
3523
  }
3524
+
3525
+ .DropdownItem-module__dark___nHP0y .DropdownItem-module__showIcon___Dg7F4 svg * {
3526
+ stroke: var(--gray-iron-500);
3527
+ }
3528
+ .DropdownItem-module__dark___nHP0y .DropdownItem-module__main___Lhu3D .DropdownItem-module__text___ASNww {
3529
+ color: var(--gray-iron-200);
3530
+ }
3531
+ .DropdownItem-module__dark___nHP0y .DropdownItem-module__main___Lhu3D .DropdownItem-module__supportText___UEw04 {
3532
+ color: var(--gray-iron-500);
3533
+ }
3534
+ .DropdownItem-module__dark___nHP0y .DropdownItem-module__check___e4EmQ svg * {
3535
+ stroke: var(--rose-500);
3536
+ }
3537
+ @media only screen and (min-width: 1024px) {
3538
+ .DropdownItem-module__dark___nHP0y:hover {
3539
+ background-color: var(--gray-iron-800);
3540
+ }
3541
+ }
3542
+ @media (min-width: 481px) and (max-width: 1279px) {
3543
+ .DropdownItem-module__dark___nHP0y:active {
3544
+ background-color: var(--gray-iron-800);
3545
+ }
3546
+ }
3547
+ .DropdownItem-module__dark___nHP0y.DropdownItem-module__selected___gw70Z {
3548
+ background-color: var(--rose-950);
3549
+ }
3550
+ @media only screen and (min-width: 1024px) {
3551
+ .DropdownItem-module__dark___nHP0y.DropdownItem-module__selected___gw70Z:hover {
3552
+ background-color: var(--rose-900);
3553
+ }
3554
+ }
3555
+ @media (min-width: 481px) and (max-width: 1279px) {
3556
+ .DropdownItem-module__dark___nHP0y.DropdownItem-module__selected___gw70Z:active {
3557
+ background-color: var(--rose-900);
3558
+ }
3559
+ }
3560
+ .DropdownItem-module__dark___nHP0y.DropdownItem-module__selected___gw70Z .DropdownItem-module__showIcon___Dg7F4 svg * {
3561
+ stroke: var(--rose-600);
3562
+ }
3563
+ .DropdownItem-module__dark___nHP0y.DropdownItem-module__selected___gw70Z .DropdownItem-module__main___Lhu3D .DropdownItem-module__supportText___UEw04 {
3564
+ color: var(--rose-600);
3565
+ }
3566
+ .DropdownItem-module__dark___nHP0y:disabled, .DropdownItem-module__dark___nHP0y.DropdownItem-module__disabled___hI0kb {
3567
+ cursor: default;
3568
+ pointer-events: none;
3569
+ opacity: 0.5;
3570
+ }
3571
+ .DropdownItem-module__dark___nHP0y:disabled .DropdownItem-module__showIcon___Dg7F4 svg *, .DropdownItem-module__dark___nHP0y.DropdownItem-module__disabled___hI0kb .DropdownItem-module__showIcon___Dg7F4 svg * {
3572
+ stroke: var(--rose-600);
3573
+ }
3574
+ .DropdownItem-module__dark___nHP0y:disabled .DropdownItem-module__main___Lhu3D .DropdownItem-module__text___ASNww, .DropdownItem-module__dark___nHP0y.DropdownItem-module__disabled___hI0kb .DropdownItem-module__main___Lhu3D .DropdownItem-module__text___ASNww {
3575
+ color: var(--gray-iron-200);
3576
+ }
3577
+ .DropdownItem-module__dark___nHP0y:disabled .DropdownItem-module__userIcon___MATjB, .DropdownItem-module__dark___nHP0y.DropdownItem-module__disabled___hI0kb .DropdownItem-module__userIcon___MATjB {
3578
+ opacity: 1;
3579
+ }
3580
+ .DropdownItem-module__dark___nHP0y:disabled .DropdownItem-module__main___Lhu3D .DropdownItem-module__supportText___UEw04, .DropdownItem-module__dark___nHP0y.DropdownItem-module__disabled___hI0kb .DropdownItem-module__main___Lhu3D .DropdownItem-module__supportText___UEw04 {
3581
+ color: var(--gray-iron-200);
3582
+ }
3583
+ .DropdownItem-module__dark___nHP0y:disabled .DropdownItem-module__check___e4EmQ svg *, .DropdownItem-module__dark___nHP0y.DropdownItem-module__disabled___hI0kb .DropdownItem-module__check___e4EmQ svg * {
3584
+ stroke: var(--rose-600);
3585
+ }
3586
+ .DropdownItem-module__dark___nHP0y:disabled.DropdownItem-module__selected___gw70Z, .DropdownItem-module__dark___nHP0y.DropdownItem-module__disabled___hI0kb.DropdownItem-module__selected___gw70Z {
3587
+ background-color: var(--rose-950);
3588
+ }
3589
+ .DropdownItem-module__dark___nHP0y.DropdownItem-module__small___IbHXt {
3590
+ padding: 8px 8px 8px 16px;
3591
+ }
3592
+ .DropdownItem-module__dark___nHP0y.DropdownItem-module__small___IbHXt .DropdownItem-module__text___ASNww {
3593
+ font-size: 14px;
3594
+ line-height: 20px;
3595
+ color: var(--gray-iron-200);
3596
+ font-weight: 400;
3597
+ font-family: var(--golos-ui);
3598
+ font-stretch: normal;
3599
+ font-style: normal;
3600
+ font-variant: normal;
3601
+ }
3602
+ .DropdownItem-module__dark___nHP0y.DropdownItem-module__small___IbHXt .DropdownItem-module__supportText___UEw04 {
3603
+ font-size: 14px;
3604
+ line-height: 20px;
3605
+ color: var(--gray-iron-500);
3606
+ font-weight: 400;
3607
+ font-family: var(--golos-ui);
3608
+ font-stretch: normal;
3609
+ font-style: normal;
3610
+ font-variant: normal;
3611
+ }
3612
+ .DropdownItem-module__dark___nHP0y.DropdownItem-module__medium___bm3mg {
3613
+ padding: 10px 10px 10px 16px;
3614
+ }
3615
+ .DropdownItem-module__dark___nHP0y.DropdownItem-module__medium___bm3mg .DropdownItem-module__text___ASNww {
3616
+ font-size: 16px;
3617
+ line-height: 24px;
3618
+ color: var(--gray-iron-200);
3619
+ font-weight: 400;
3620
+ font-family: var(--golos-ui);
3621
+ font-stretch: normal;
3622
+ font-style: normal;
3623
+ font-variant: normal;
3624
+ }
3625
+ .DropdownItem-module__dark___nHP0y.DropdownItem-module__medium___bm3mg .DropdownItem-module__supportText___UEw04 {
3626
+ font-size: 16px;
3627
+ line-height: 24px;
3628
+ color: var(--gray-iron-500);
3629
+ font-weight: 400;
3630
+ font-family: var(--golos-ui);
3631
+ font-stretch: normal;
3632
+ font-style: normal;
3633
+ font-variant: normal;
3634
+ }
3635
+ .DropdownItem-module__dark___nHP0y.DropdownItem-module__widthFill___m3eb0 {
3636
+ width: 100%;
3637
+ }
3638
+ .DropdownItem-module__dark___nHP0y.DropdownItem-module__widthHug___HJMle {
3639
+ width: fit-content;
3640
+ }
3002
3641
  /*!****************************************************************************************************************************************************************************************************************************************************************************!*\
3003
3642
  !*** 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/Loaders/styles/LoadingIndicator.module.scss ***!
3004
3643
  \****************************************************************************************************************************************************************************************************************************************************************************/
@@ -3145,10 +3784,10 @@
3145
3784
  !*** 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/MediaViewer/styles/components/VideoViewer.module.scss ***!
3146
3785
  \**************************************************************************************************************************************************************************************************************************************************************************************/
3147
3786
  .VideoViewer-module__VideoViewer___DnYgG {
3148
- flex: none;
3149
3787
  width: fit-content;
3150
3788
  height: 100%;
3151
3789
  position: relative;
3790
+ overflow: hidden;
3152
3791
  }
3153
3792
  .VideoViewer-module__VideoViewer___DnYgG {
3154
3793
  display: flex;
@@ -3193,8 +3832,9 @@
3193
3832
  }
3194
3833
  .VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__content___jnFwK {
3195
3834
  flex: none;
3835
+ max-width: 100%;
3196
3836
  height: 100%;
3197
- object-fit: fill;
3837
+ object-fit: scale-down;
3198
3838
  }
3199
3839
  .VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__playButton___Sb91y {
3200
3840
  display: none;
@@ -3227,8 +3867,8 @@
3227
3867
  !*** 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/MediaViewer/styles/components/ImageViewer.module.scss ***!
3228
3868
  \**************************************************************************************************************************************************************************************************************************************************************************************/
3229
3869
  .ImageViewer-module__ImageViewer___lH_sP {
3230
- flex: none;
3231
3870
  width: fit-content;
3871
+ max-width: 100%;
3232
3872
  height: 100%;
3233
3873
  object-fit: scale-down;
3234
3874
  }
@@ -3246,11 +3886,18 @@
3246
3886
  justify-content: center;
3247
3887
  }
3248
3888
  .MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__content___e14vI {
3249
- flex: 1;
3250
3889
  width: 100%;
3251
3890
  height: 100%;
3252
3891
  }
3253
- .MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__content___e14vI {
3892
+ .MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__content___e14vI .MediaViewer-module__track___eU8q_ {
3893
+ height: 100%;
3894
+ }
3895
+ .MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__content___e14vI .MediaViewer-module__track___eU8q_ .MediaViewer-module__el___D3St0 {
3896
+ width: 100%;
3897
+ height: 100%;
3898
+ overflow: hidden;
3899
+ }
3900
+ .MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__content___e14vI .MediaViewer-module__track___eU8q_ .MediaViewer-module__el___D3St0 {
3254
3901
  display: flex;
3255
3902
  align-items: center;
3256
3903
  justify-content: center;
@@ -3534,6 +4181,116 @@
3534
4181
  right: 0;
3535
4182
  transform: translateX(10px);
3536
4183
  }
4184
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj .CalendarDay-module__mark___jB0aT:after {
4185
+ background-color: var(--rose-600);
4186
+ }
4187
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj .CalendarDay-module__text___ft0zM {
4188
+ font-size: 16px;
4189
+ line-height: 16px;
4190
+ color: var(--gray-iron-300);
4191
+ font-weight: 400;
4192
+ font-family: var(--golos-ui);
4193
+ font-stretch: normal;
4194
+ font-style: normal;
4195
+ font-variant: normal;
4196
+ }
4197
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj .CalendarDay-module__info___MvJmM {
4198
+ font-size: 10px;
4199
+ line-height: 10px;
4200
+ color: var(--gray-iron-600);
4201
+ font-weight: 400;
4202
+ font-family: var(--golos-ui);
4203
+ font-stretch: normal;
4204
+ font-style: normal;
4205
+ font-variant: normal;
4206
+ }
4207
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj {
4208
+ background-color: var(--gray-iron-900);
4209
+ }
4210
+ @media only screen and (min-width: 1024px) {
4211
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj:hover {
4212
+ background-color: var(--gray-iron-800);
4213
+ }
4214
+ }
4215
+ @media (min-width: 481px) and (max-width: 1279px) {
4216
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj:active {
4217
+ background-color: var(--rose-500);
4218
+ }
4219
+ }
4220
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__currentDay___J6WB3 {
4221
+ background-color: var(--rose-950);
4222
+ }
4223
+ @media only screen and (min-width: 1024px) {
4224
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__currentDay___J6WB3:hover {
4225
+ background-color: var(--rose-900);
4226
+ }
4227
+ }
4228
+ @media (min-width: 481px) and (max-width: 1279px) {
4229
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__currentDay___J6WB3:active {
4230
+ background-color: var(--rose-500);
4231
+ }
4232
+ }
4233
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__holiday___cQBoW .CalendarDay-module__text___ft0zM {
4234
+ color: var(--error-500);
4235
+ }
4236
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__disabled___H7Y64 {
4237
+ background-color: var(--gray-iron-900);
4238
+ }
4239
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__disabled___H7Y64 .CalendarDay-module__mark___jB0aT:after {
4240
+ background-color: var(--gray-iron-700);
4241
+ }
4242
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__disabled___H7Y64 .CalendarDay-module__text___ft0zM {
4243
+ color: var(--gray-iron-600);
4244
+ }
4245
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__disabled___H7Y64 .CalendarDay-module__info___MvJmM {
4246
+ color: var(--gray-iron-700);
4247
+ }
4248
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__disabled___H7Y64:hover {
4249
+ background-color: var(--gray-iron-800);
4250
+ }
4251
+ @media (min-width: 481px) and (max-width: 1279px) {
4252
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__disabled___H7Y64:active {
4253
+ background-color: var(--gray-100);
4254
+ }
4255
+ }
4256
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__filter___jE_gQ {
4257
+ background-color: var(--gray-iron-800);
4258
+ }
4259
+ @media only screen and (min-width: 1024px) {
4260
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__filter___jE_gQ:hover {
4261
+ background-color: var(--gray-iron-700);
4262
+ }
4263
+ }
4264
+ @media (min-width: 481px) and (max-width: 1279px) {
4265
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__filter___jE_gQ:active {
4266
+ background-color: var(--rose-500);
4267
+ }
4268
+ }
4269
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE {
4270
+ background-color: var(--rose-500);
4271
+ }
4272
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE .CalendarDay-module__mark___jB0aT:after {
4273
+ background-color: var(--base-white);
4274
+ }
4275
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE .CalendarDay-module__text___ft0zM {
4276
+ color: var(--base-white);
4277
+ }
4278
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE .CalendarDay-module__info___MvJmM {
4279
+ color: var(--rose-700);
4280
+ }
4281
+ @media only screen and (min-width: 1024px) {
4282
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE:hover {
4283
+ background-color: var(--rose-600);
4284
+ }
4285
+ }
4286
+ @media (min-width: 481px) and (max-width: 1279px) {
4287
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE:active {
4288
+ background-color: var(--rose-600);
4289
+ }
4290
+ }
4291
+ .CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz.CalendarDay-module__filter___jE_gQ:before {
4292
+ background-color: var(--gray-iron-800);
4293
+ }
3537
4294
  /*!*******************************************************************************************************************************************************************************************************************************************************************************************!*\
3538
4295
  !*** 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/DateTimePicker/styles/components/CalendarMonth.module.scss ***!
3539
4296
  \*******************************************************************************************************************************************************************************************************************************************************************************************/
@@ -3574,6 +4331,31 @@
3574
4331
  .CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__disabled___VNFpt {
3575
4332
  color: var(--gray-400);
3576
4333
  }
4334
+ .CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU {
4335
+ background-color: var(--gray-iron-900);
4336
+ }
4337
+ .CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU {
4338
+ font-size: 16px;
4339
+ line-height: 20px;
4340
+ color: var(--gray-iron-300);
4341
+ font-weight: 400;
4342
+ font-family: var(--golos);
4343
+ font-stretch: normal;
4344
+ font-style: normal;
4345
+ font-variant: normal;
4346
+ }
4347
+ .CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU:hover {
4348
+ background-color: var(--gray-iron-800);
4349
+ }
4350
+ .CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU.CalendarMonth-module__current___iR71C:not(.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU.CalendarMonth-module__disabled___VNFpt) {
4351
+ background-color: var(--rose-950);
4352
+ }
4353
+ .CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU.CalendarMonth-module__current___iR71C:not(.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU.CalendarMonth-module__disabled___VNFpt):hover {
4354
+ background-color: var(--rose-900);
4355
+ }
4356
+ .CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU.CalendarMonth-module__disabled___VNFpt {
4357
+ color: var(--gray-iron-600);
4358
+ }
3577
4359
  /*!******************************************************************************************************************************************************************************************************************************************************************************************!*\
3578
4360
  !*** 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/DateTimePicker/styles/components/CalendarYear.module.scss ***!
3579
4361
  \******************************************************************************************************************************************************************************************************************************************************************************************/
@@ -3614,6 +4396,31 @@
3614
4396
  .CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__disabled___dIYvt {
3615
4397
  color: var(--gray-400);
3616
4398
  }
4399
+ .CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__darkTheme___rr4Oy {
4400
+ background-color: var(--gray-iron-900);
4401
+ }
4402
+ .CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__darkTheme___rr4Oy {
4403
+ font-size: 16px;
4404
+ line-height: 20px;
4405
+ color: var(--gray-iron-300);
4406
+ font-weight: 400;
4407
+ font-family: var(--golos);
4408
+ font-stretch: normal;
4409
+ font-style: normal;
4410
+ font-variant: normal;
4411
+ }
4412
+ .CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__darkTheme___rr4Oy:hover {
4413
+ background-color: var(--gray-iron-800);
4414
+ }
4415
+ .CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__darkTheme___rr4Oy.CalendarYear-module__current___aLXpm {
4416
+ background-color: var(--rose-950);
4417
+ }
4418
+ .CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__darkTheme___rr4Oy.CalendarYear-module__current___aLXpm:hover {
4419
+ background-color: var(--rose-900);
4420
+ }
4421
+ .CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__darkTheme___rr4Oy.CalendarYear-module__disabled___dIYvt {
4422
+ color: var(--gray-iron-600);
4423
+ }
3617
4424
  /*!********************************************************************************************************************************************************************************************************************************************************************************************!*\
3618
4425
  !*** 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/DateTimePicker/styles/components/CalendarButton.module.scss ***!
3619
4426
  \********************************************************************************************************************************************************************************************************************************************************************************************/
@@ -3652,6 +4459,32 @@
3652
4459
  .CalendarButton-module__CalendarButton___yVvoS:disabled {
3653
4460
  cursor: default;
3654
4461
  }
4462
+ .CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__dark___h_NGD.CalendarButton-module__black____RFmq {
4463
+ font-size: 18px;
4464
+ line-height: 28px;
4465
+ color: var(--gray-iron-100);
4466
+ font-weight: 400;
4467
+ font-family: var(--golos);
4468
+ font-stretch: normal;
4469
+ font-style: normal;
4470
+ font-variant: normal;
4471
+ }
4472
+ .CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__dark___h_NGD.CalendarButton-module__black____RFmq:hover:not(.CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__dark___h_NGD.CalendarButton-module__black____RFmq:disabled) {
4473
+ color: var(--rose-500);
4474
+ }
4475
+ .CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__dark___h_NGD.CalendarButton-module__gray___JG7y4 {
4476
+ font-size: 18px;
4477
+ line-height: 28px;
4478
+ color: var(--gray-iron-600);
4479
+ font-weight: 400;
4480
+ font-family: var(--golos);
4481
+ font-stretch: normal;
4482
+ font-style: normal;
4483
+ font-variant: normal;
4484
+ }
4485
+ .CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__dark___h_NGD.CalendarButton-module__gray___JG7y4:hover:not(.CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__dark___h_NGD.CalendarButton-module__gray___JG7y4:disabled) {
4486
+ color: var(--rose-500);
4487
+ }
3655
4488
  /*!*******************************************************************************************************************************************************************************************************************************************************************************************!*\
3656
4489
  !*** 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/DateTimePicker/styles/components/TimePickerTag.module.scss ***!
3657
4490
  \*******************************************************************************************************************************************************************************************************************************************************************************************/
@@ -3787,6 +4620,49 @@
3787
4620
  font-style: normal;
3788
4621
  font-variant: normal;
3789
4622
  }
4623
+ .TimePickerFeed-module__wrapper___BiInJ.TimePickerFeed-module__darkTheme___LUnBx .TimePickerFeed-module__viewContent___NiSmH {
4624
+ background-color: transparent;
4625
+ }
4626
+ .TimePickerFeed-module__wrapper___BiInJ.TimePickerFeed-module__darkTheme___LUnBx .TimePickerFeed-module__item___SczLD .TimePickerFeed-module__content___Qb5A3 {
4627
+ font-size: 20px;
4628
+ line-height: 32px;
4629
+ color: var(--gray-iron-700);
4630
+ font-weight: 400;
4631
+ font-family: var(--golos);
4632
+ font-stretch: normal;
4633
+ font-style: normal;
4634
+ font-variant: normal;
4635
+ }
4636
+ .TimePickerFeed-module__wrapper___BiInJ.TimePickerFeed-module__darkTheme___LUnBx .TimePickerFeed-module__item___SczLD.TimePickerFeed-module__center___skogb .TimePickerFeed-module__content___Qb5A3 {
4637
+ font-size: 20px;
4638
+ line-height: 32px;
4639
+ color: var(--gray-iron-300);
4640
+ font-weight: 400;
4641
+ font-family: var(--golos);
4642
+ font-stretch: normal;
4643
+ font-style: normal;
4644
+ font-variant: normal;
4645
+ }
4646
+ .TimePickerFeed-module__wrapper___BiInJ.TimePickerFeed-module__darkTheme___LUnBx .TimePickerFeed-module__item___SczLD.TimePickerFeed-module__floor1___Lu5VV .TimePickerFeed-module__content___Qb5A3 {
4647
+ font-size: 20px;
4648
+ line-height: 32px;
4649
+ color: var(--gray-iron-600);
4650
+ font-weight: 400;
4651
+ font-family: var(--golos);
4652
+ font-stretch: normal;
4653
+ font-style: normal;
4654
+ font-variant: normal;
4655
+ }
4656
+ .TimePickerFeed-module__wrapper___BiInJ.TimePickerFeed-module__darkTheme___LUnBx .TimePickerFeed-module__item___SczLD.TimePickerFeed-module__floor1___Lu5VV .TimePickerFeed-module__content___Qb5A3 {
4657
+ font-size: 20px;
4658
+ line-height: 32px;
4659
+ color: var(--gray-iron-700);
4660
+ font-weight: 400;
4661
+ font-family: var(--golos);
4662
+ font-stretch: normal;
4663
+ font-style: normal;
4664
+ font-variant: normal;
4665
+ }
3790
4666
  /*!*************************************************************************************************************************************************************************************************************************************************************************************!*\
3791
4667
  !*** 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/DateTimePicker/styles/pickers/DatePicker.module.scss ***!
3792
4668
  \*************************************************************************************************************************************************************************************************************************************************************************************/
@@ -3851,6 +4727,19 @@
3851
4727
  grid-template-rows: auto;
3852
4728
  gap: 2px;
3853
4729
  }
4730
+ .DatePicker-module__datePicker___rIs4v.DatePicker-module__dark___iQSm7 {
4731
+ background-color: var(--gray-iron-900);
4732
+ }
4733
+ .DatePicker-module__datePicker___rIs4v.DatePicker-module__dark___iQSm7 .DatePicker-module__weekDaysList___ozEzA .DatePicker-module__weekDay___hC8So {
4734
+ font-size: 14px;
4735
+ line-height: 16px;
4736
+ color: var(--gray-iron-500);
4737
+ font-weight: 400;
4738
+ font-family: var(--golos-ui);
4739
+ font-stretch: normal;
4740
+ font-style: normal;
4741
+ font-variant: normal;
4742
+ }
3854
4743
  /*!******************************************************************************************************************************************************************************************************************************************************************************************!*\
3855
4744
  !*** 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/DateTimePicker/styles/pickers/YearMonthPicker.module.scss ***!
3856
4745
  \******************************************************************************************************************************************************************************************************************************************************************************************/
@@ -3887,6 +4776,9 @@
3887
4776
  grid-template-columns: repeat(3, 1fr);
3888
4777
  gap: 4px;
3889
4778
  }
4779
+ .YearMonthPicker-module__YearMonthPicker___jd8KA.YearMonthPicker-module__dark___TnpR3 {
4780
+ background-color: var(--gray-iron-900);
4781
+ }
3890
4782
  /*!*************************************************************************************************************************************************************************************************************************************************************************************!*\
3891
4783
  !*** 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/DateTimePicker/styles/pickers/TimePicker.module.scss ***!
3892
4784
  \*************************************************************************************************************************************************************************************************************************************************************************************/
@@ -3958,6 +4850,22 @@
3958
4850
  height: 1px;
3959
4851
  background-color: var(--gray-300);
3960
4852
  }
4853
+ .TimePicker-module__TimePicker___iT3kM.TimePicker-module__dark___p_dkO .TimePicker-module__timer___c3ZIO .TimePicker-module__main___A3N1w .TimePicker-module__divider___PbRR9 {
4854
+ font-size: 20px;
4855
+ line-height: 32px;
4856
+ color: var(--gray-iron-300);
4857
+ font-weight: 400;
4858
+ font-family: var(--golos);
4859
+ font-stretch: normal;
4860
+ font-style: normal;
4861
+ font-variant: normal;
4862
+ }
4863
+ .TimePicker-module__TimePicker___iT3kM.TimePicker-module__dark___p_dkO .TimePicker-module__timer___c3ZIO .TimePicker-module__main___A3N1w:before {
4864
+ background-color: var(--gray-iron-800);
4865
+ }
4866
+ .TimePicker-module__TimePicker___iT3kM.TimePicker-module__dark___p_dkO .TimePicker-module__timer___c3ZIO .TimePicker-module__line___wOgTS {
4867
+ background-color: var(--gray-iron-700);
4868
+ }
3961
4869
  /*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
3962
4870
  !*** 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/DateTimePicker/styles/DateTimePicker.module.scss ***!
3963
4871
  \*********************************************************************************************************************************************************************************************************************************************************************************/
@@ -4029,6 +4937,18 @@
4029
4937
  .DateTimePicker-module__DateTimePicker___qMYhM .DateTimePicker-module__actions___bHZxf {
4030
4938
  display: flex;
4031
4939
  }
4940
+ .DateTimePicker-module__DateTimePicker___qMYhM.DateTimePicker-module__dark___uSir3 {
4941
+ background-color: var(--gray-iron-900);
4942
+ }
4943
+ .DateTimePicker-module__DateTimePicker___qMYhM.DateTimePicker-module__dark___uSir3 .DateTimePicker-module__header___I8wlx .DateTimePicker-module__title___o52hs {
4944
+ color: var(--gray-iron-100);
4945
+ }
4946
+ .DateTimePicker-module__DateTimePicker___qMYhM.DateTimePicker-module__dark___uSir3 .DateTimePicker-module__header___I8wlx .DateTimePicker-module__subtitle___qRFKk {
4947
+ color: var(--gray-iron-500);
4948
+ }
4949
+ .DateTimePicker-module__DateTimePicker___qMYhM.DateTimePicker-module__dark___uSir3 .DateTimePicker-module__actions___bHZxf {
4950
+ border-top: 1px solid var(--gray-iron-800);
4951
+ }
4032
4952
  /*!*******************************************************************************************************************************************************************************************************************************************************************!*\
4033
4953
  !*** 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/Tooltip/styles/Tooltip.module.scss ***!
4034
4954
  \*******************************************************************************************************************************************************************************************************************************************************************/
@@ -4165,5 +5085,13 @@
4165
5085
  font-style: normal;
4166
5086
  font-variant: normal;
4167
5087
  }
5088
+ .Dropdown-module__Dropdown___qWoW1.Dropdown-module__DropdownDark___P5WL1 {
5089
+ border: 1px solid var(--gray-iron-800);
5090
+ background-color: var(--gray-iron-900);
5091
+ box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.2509803922);
5092
+ }
5093
+ .Dropdown-module__Dropdown___qWoW1.Dropdown-module__DropdownDark___P5WL1 .Dropdown-module__header___Ct_Nh {
5094
+ color: var(--gray-iron-500);
5095
+ }
4168
5096
 
4169
5097
  /*# sourceMappingURL=index.css.map*/