@itilite/lumina-ui 1.0.0 → 1.0.1-alpha

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 (97) hide show
  1. package/README.md +43 -10
  2. package/dist/AdvancedDateRangePicker-ozItnkhp.d.mts +57 -0
  3. package/dist/AdvancedDateRangePicker-ozItnkhp.d.ts +57 -0
  4. package/dist/Table-BOq-_9Nr.d.mts +121 -0
  5. package/dist/Table-BOq-_9Nr.d.ts +121 -0
  6. package/dist/atom/AdvancedDateRangePicker/AdvancedDateRangePicker.d.mts +2 -0
  7. package/dist/atom/AdvancedDateRangePicker/AdvancedDateRangePicker.d.ts +2 -0
  8. package/dist/atom/AdvancedDateRangePicker/AdvancedDateRangePicker.js +791 -0
  9. package/dist/atom/AdvancedDateRangePicker/AdvancedDateRangePicker.mjs +11 -0
  10. package/dist/atom/AdvancedDateRangePicker/InternalCalendar.d.mts +17 -0
  11. package/dist/atom/AdvancedDateRangePicker/InternalCalendar.d.ts +17 -0
  12. package/dist/atom/AdvancedDateRangePicker/InternalCalendar.js +370 -0
  13. package/dist/atom/AdvancedDateRangePicker/InternalCalendar.mjs +8 -0
  14. package/dist/atom/Avatar/Avatar.d.mts +9 -0
  15. package/dist/atom/Avatar/Avatar.d.ts +9 -0
  16. package/dist/atom/Avatar/Avatar.js +123 -0
  17. package/dist/atom/Avatar/Avatar.mjs +9 -0
  18. package/dist/{Button.js → atom/Button/Button.js} +1 -1
  19. package/dist/{Button.mjs → atom/Button/Button.mjs} +2 -2
  20. package/dist/{Checkbox.mjs → atom/Checkbox/Checkbox.mjs} +2 -2
  21. package/dist/atom/LoadingSpinner/LoadingSpinner.d.mts +19 -0
  22. package/dist/atom/LoadingSpinner/LoadingSpinner.d.ts +19 -0
  23. package/dist/atom/LoadingSpinner/LoadingSpinner.js +90 -0
  24. package/dist/atom/LoadingSpinner/LoadingSpinner.mjs +9 -0
  25. package/dist/{Modal.d.mts → atom/Modal/Modal.d.mts} +1 -1
  26. package/dist/{Modal.d.ts → atom/Modal/Modal.d.ts} +1 -1
  27. package/dist/{Modal.js → atom/Modal/Modal.js} +1 -1
  28. package/dist/atom/Modal/Modal.mjs +10 -0
  29. package/dist/{Radio.mjs → atom/Radio/Radio.mjs} +2 -2
  30. package/dist/atom/RangePicker/Chevron.d.mts +13 -0
  31. package/dist/atom/RangePicker/Chevron.d.ts +13 -0
  32. package/dist/atom/RangePicker/Chevron.js +110 -0
  33. package/dist/atom/RangePicker/Chevron.mjs +7 -0
  34. package/dist/atom/RangePicker/RangePicker.d.mts +26 -0
  35. package/dist/atom/RangePicker/RangePicker.d.ts +26 -0
  36. package/dist/atom/RangePicker/RangePicker.js +1465 -0
  37. package/dist/atom/RangePicker/RangePicker.mjs +13 -0
  38. package/dist/atom/Select/Select.d.mts +40 -0
  39. package/dist/atom/Select/Select.d.ts +40 -0
  40. package/dist/atom/Select/Select.js +805 -0
  41. package/dist/atom/Select/Select.mjs +11 -0
  42. package/dist/atom/Slider/Slider.d.mts +34 -0
  43. package/dist/atom/Slider/Slider.d.ts +34 -0
  44. package/dist/atom/Slider/Slider.js +107 -0
  45. package/dist/atom/Slider/Slider.mjs +9 -0
  46. package/dist/{Switch.mjs → atom/Switch/Switch.mjs} +2 -2
  47. package/dist/atom/Table/Table.d.mts +3 -0
  48. package/dist/atom/Table/Table.d.ts +3 -0
  49. package/dist/atom/Table/Table.js +306 -0
  50. package/dist/atom/Table/Table.mjs +9 -0
  51. package/dist/atom/Tag/Tag.d.mts +6 -0
  52. package/dist/atom/Tag/Tag.d.ts +6 -0
  53. package/dist/atom/Tag/Tag.js +108 -0
  54. package/dist/atom/Tag/Tag.mjs +9 -0
  55. package/dist/{Tooltip.mjs → atom/Tooltip/Tooltip.mjs} +2 -2
  56. package/dist/chunk-4JX54OKI.mjs +627 -0
  57. package/dist/chunk-4VZB2KR2.mjs +51 -0
  58. package/dist/{chunk-HISCHZ5H.mjs → chunk-AF2RKLH6.mjs} +1 -1
  59. package/dist/chunk-D3N7VFER.mjs +73 -0
  60. package/dist/chunk-GU5F7Z7I.mjs +681 -0
  61. package/dist/chunk-IWO2Y5QX.mjs +89 -0
  62. package/dist/chunk-N2WTNCQU.mjs +66 -0
  63. package/dist/chunk-N4DPPZVJ.mjs +269 -0
  64. package/dist/chunk-PQ3B2FEB.mjs +249 -0
  65. package/dist/chunk-QKTMWS4J.mjs +43 -0
  66. package/dist/{chunk-N355RJGH.mjs → chunk-UQJ3BDM4.mjs} +1 -1
  67. package/dist/chunk-V3CHJHUX.mjs +424 -0
  68. package/dist/chunk-ZTRM4HZJ.mjs +53 -0
  69. package/dist/index.d.mts +18 -6
  70. package/dist/index.d.ts +18 -6
  71. package/dist/index.js +2544 -6
  72. package/dist/index.mjs +49 -11
  73. package/dist/molecules/UserProfile/UserProfile.d.mts +23 -0
  74. package/dist/molecules/UserProfile/UserProfile.d.ts +23 -0
  75. package/dist/molecules/UserProfile/UserProfile.js +243 -0
  76. package/dist/molecules/UserProfile/UserProfile.mjs +11 -0
  77. package/dist/styles.css +1634 -1282
  78. package/dist/types-D4MD2w3_.d.mts +9 -0
  79. package/dist/types-D4MD2w3_.d.ts +9 -0
  80. package/dist/types-mhQmqhsR.d.mts +10 -0
  81. package/dist/types-mhQmqhsR.d.ts +10 -0
  82. package/package.json +9 -32
  83. package/dist/Modal.mjs +0 -10
  84. /package/dist/{Button.d.mts → atom/Button/Button.d.mts} +0 -0
  85. /package/dist/{Button.d.ts → atom/Button/Button.d.ts} +0 -0
  86. /package/dist/{Checkbox.d.mts → atom/Checkbox/Checkbox.d.mts} +0 -0
  87. /package/dist/{Checkbox.d.ts → atom/Checkbox/Checkbox.d.ts} +0 -0
  88. /package/dist/{Checkbox.js → atom/Checkbox/Checkbox.js} +0 -0
  89. /package/dist/{Radio.d.mts → atom/Radio/Radio.d.mts} +0 -0
  90. /package/dist/{Radio.d.ts → atom/Radio/Radio.d.ts} +0 -0
  91. /package/dist/{Radio.js → atom/Radio/Radio.js} +0 -0
  92. /package/dist/{Switch.d.mts → atom/Switch/Switch.d.mts} +0 -0
  93. /package/dist/{Switch.d.ts → atom/Switch/Switch.d.ts} +0 -0
  94. /package/dist/{Switch.js → atom/Switch/Switch.js} +0 -0
  95. /package/dist/{Tooltip.d.mts → atom/Tooltip/Tooltip.d.mts} +0 -0
  96. /package/dist/{Tooltip.d.ts → atom/Tooltip/Tooltip.d.ts} +0 -0
  97. /package/dist/{Tooltip.js → atom/Tooltip/Tooltip.js} +0 -0
package/dist/styles.css CHANGED
@@ -1,1408 +1,761 @@
1
- /* src/atom/Tooltip/Tooltip.module.scss */
2
- .Tooltip-module__light___H5oCc .ant-tooltip-content .ant-tooltip-inner {
3
- background-color: white !important;
4
- color: #111827;
5
- border-radius: 0.5rem;
6
- padding: 0.625rem;
7
- --tw-text-opacity: 1;
8
- color: rgb(33 40 55 / var(--tw-text-opacity, 1));
1
+ .tw-pointer-events-none {
2
+ pointer-events: none
9
3
  }
10
- .Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
11
- background-color: white !important;
4
+ .tw-invisible {
5
+ visibility: hidden
12
6
  }
13
-
14
- /* src/atom/Button/Button.module.scss */
15
- .Button-module__button___cLCyl {
16
- display: flex;
17
- align-items: center;
18
- justify-content: center;
19
- gap: 0.25rem;
20
- border-radius: 0.5rem;
7
+ .tw-absolute {
8
+ position: absolute
21
9
  }
22
- .Button-module__button___cLCyl.Button-module__size_large___S-mbU {
23
- height: 56px;
24
- padding-left: 1rem;
25
- padding-right: 1rem;
10
+ .tw-relative {
11
+ position: relative
26
12
  }
27
- .Button-module__button___cLCyl.Button-module__size_large___S-mbU.Button-module__shape_circle___sPUS5 {
28
- width: 56px;
13
+ .tw-inset-x-0 {
14
+ left: 0px;
15
+ right: 0px
29
16
  }
30
- .Button-module__button___cLCyl.Button-module__size_normal___qJUMj {
31
- height: 40px;
32
- padding-left: 0.75rem;
33
- padding-right: 0.75rem;
17
+ .tw-inset-y-1 {
18
+ top: 0.25rem;
19
+ bottom: 0.25rem
34
20
  }
35
- .Button-module__button___cLCyl.Button-module__size_normal___qJUMj.Button-module__shape_circle___sPUS5 {
36
- width: 40px;
21
+ .\!tw-right-2 {
22
+ right: 0.5rem !important
37
23
  }
38
- .Button-module__button___cLCyl.Button-module__size_small___IUeei {
39
- height: 32px;
40
- padding-left: 0.5rem;
41
- padding-right: 0.5rem;
24
+ .\!tw-right-\[5px\] {
25
+ right: 5px !important
42
26
  }
43
- .Button-module__button___cLCyl.Button-module__size_small___IUeei.Button-module__shape_circle___sPUS5 {
44
- width: 32px;
27
+ .-tw-top-0\.5 {
28
+ top: -0.125rem
45
29
  }
46
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz- {
47
- --tw-bg-opacity: 1;
48
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
49
- border-width: 1px;
50
- border-style: solid;
51
- --tw-border-opacity: 1;
52
- border-color: rgb(236 93 37 / var(--tw-border-opacity, 1));
53
- box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
30
+ .-tw-top-2 {
31
+ top: -0.5rem
54
32
  }
55
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.ant-btn-primary:active {
56
- --tw-bg-opacity: 1;
57
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
58
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
33
+ .tw-bottom-11 {
34
+ bottom: 2.75rem
59
35
  }
60
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-:focus-visible {
61
- outline: 2px solid rgba(236, 93, 37, 0.3803921569);
36
+ .tw-bottom-\[-7px\] {
37
+ bottom: -7px
62
38
  }
63
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_subtle___BMbbd {
64
- --tw-text-opacity: 1;
65
- color: rgb(236 93 37 / var(--tw-text-opacity, 1));
39
+ .tw-left-0 {
40
+ left: 0px
66
41
  }
67
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_subtle___BMbbd:hover {
68
- --tw-text-opacity: 1;
69
- color: rgb(236 93 37 / var(--tw-text-opacity, 1));
42
+ .tw-left-0\.5 {
43
+ left: 0.125rem
70
44
  }
71
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_link___Cj1O9 {
72
- --tw-text-opacity: 1;
73
- color: rgb(236 93 37 / var(--tw-text-opacity, 1));
45
+ .tw-left-1 {
46
+ left: 0.25rem
74
47
  }
75
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_link___Cj1O9:hover {
76
- --tw-text-opacity: 1;
77
- color: rgb(236 93 37 / var(--tw-text-opacity, 1));
48
+ .tw-left-1\/2 {
49
+ left: 50%
78
50
  }
79
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA {
80
- border-width: 1px;
81
- border-style: solid;
82
- --tw-bg-opacity: 1;
83
- background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
84
- --tw-border-opacity: 1;
85
- border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
86
- box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
51
+ .tw-left-5 {
52
+ left: 1.25rem
87
53
  }
88
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:active {
89
- --tw-bg-opacity: 1;
90
- background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
91
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
54
+ .tw-left-\[18px\] {
55
+ left: 18px
92
56
  }
93
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:focus-visible {
94
- outline: 2px solid rgba(236, 93, 37, 0.3803921569);
57
+ .tw-right-0 {
58
+ right: 0px
95
59
  }
96
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_subtle___BMbbd {
97
- --tw-text-opacity: 1;
98
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
60
+ .tw-right-0\.5 {
61
+ right: 0.125rem
99
62
  }
100
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_subtle___BMbbd:hover {
101
- --tw-text-opacity: 1;
102
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
63
+ .tw-right-1 {
64
+ right: 0.25rem
103
65
  }
104
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_link___Cj1O9 {
105
- --tw-text-opacity: 1;
106
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
66
+ .tw-right-1\/2 {
67
+ right: 50%
107
68
  }
108
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_link___Cj1O9:hover {
109
- --tw-text-opacity: 1;
110
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
69
+ .tw-right-3 {
70
+ right: 0.75rem
111
71
  }
112
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp {
113
- border-width: 1px;
114
- --tw-bg-opacity: 1;
115
- background-color: rgb(207 34 49 / var(--tw-bg-opacity, 1));
116
- border-style: solid;
117
- --tw-border-opacity: 1;
118
- border-color: rgb(207 34 49 / var(--tw-border-opacity, 1));
119
- box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
72
+ .tw-right-5 {
73
+ right: 1.25rem
120
74
  }
121
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:active {
122
- --tw-bg-opacity: 1;
123
- background-color: rgb(207 34 49 / var(--tw-bg-opacity, 1));
124
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
75
+ .tw-right-6 {
76
+ right: 1.5rem
125
77
  }
126
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:focus-visible {
127
- outline: 2px solid rgba(236, 93, 37, 0.3803921569);
78
+ .tw-right-\[42\%\] {
79
+ right: 42%
128
80
  }
129
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_subtle___BMbbd {
130
- --tw-text-opacity: 1;
131
- color: rgb(207 34 49 / var(--tw-text-opacity, 1));
81
+ .tw-top-0 {
82
+ top: 0px
132
83
  }
133
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_subtle___BMbbd:hover {
134
- --tw-text-opacity: 1;
135
- color: rgb(207 34 49 / var(--tw-text-opacity, 1));
84
+ .tw-top-0\.5 {
85
+ top: 0.125rem
136
86
  }
137
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_link___Cj1O9 {
138
- --tw-text-opacity: 1;
139
- color: rgb(207 34 49 / var(--tw-text-opacity, 1));
87
+ .tw-top-1 {
88
+ top: 0.25rem
140
89
  }
141
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_link___Cj1O9:hover {
142
- --tw-text-opacity: 1;
143
- color: rgb(207 34 49 / var(--tw-text-opacity, 1));
90
+ .tw-top-1\.5 {
91
+ top: 0.375rem
144
92
  }
145
- .Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd {
146
- --tw-bg-opacity: 1;
147
- background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
148
- border-width: 1px;
149
- border-style: solid;
150
- --tw-border-opacity: 1;
151
- border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
152
- box-shadow: 0px 1px 0px 0px rgba(17, 24, 39, 0.1);
93
+ .tw-top-1\/2 {
94
+ top: 50%
153
95
  }
154
- .Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd.ant-btn-default:hover {
155
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.15);
156
- --tw-border-opacity: 1;
157
- border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
96
+ .tw-top-2\.5 {
97
+ top: 0.625rem
158
98
  }
159
- .Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd.ant-btn-default:focus-visible {
160
- outline: 2px solid rgba(236, 93, 37, 0.3803921569);
99
+ .tw-top-3 {
100
+ top: 0.75rem
161
101
  }
162
- .Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia {
163
- background-color: transparent;
164
- border-width: 0px;
165
- border-style: none;
166
- box-shadow: none;
102
+ .tw-top-3\.5 {
103
+ top: 0.875rem
167
104
  }
168
- .Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn-default:hover {
169
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.15);
170
- border-style: none;
171
- --tw-bg-opacity: 1;
172
- background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
105
+ .tw-top-5 {
106
+ top: 1.25rem
173
107
  }
174
- .Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn-default:active {
175
- --tw-bg-opacity: 1;
176
- background-color: rgb(241 243 245 / var(--tw-bg-opacity, 1));
108
+ .tw-top-6 {
109
+ top: 1.5rem
177
110
  }
178
- .Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn:focus-visible {
179
- outline: 2px solid rgba(236, 93, 37, 0.2);
111
+ .tw-z-10 {
112
+ z-index: 10
180
113
  }
181
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9 {
182
- background-color: transparent;
183
- padding: 0px;
184
- border-width: 0px;
185
- border-style: none;
186
- height: auto;
187
- box-shadow: none;
114
+ .tw-z-20 {
115
+ z-index: 20
188
116
  }
189
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover.Button-module__onHoverUnderline___LOfXo {
190
- text-decoration: underline;
117
+ .tw-z-30 {
118
+ z-index: 30
191
119
  }
192
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover {
193
- box-shadow: none;
194
- border-style: none;
195
- background-color: transparent;
120
+ .tw-z-50 {
121
+ z-index: 50
196
122
  }
197
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:active {
198
- background-color: transparent;
123
+ .tw-z-\[100\] {
124
+ z-index: 100
199
125
  }
200
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn:focus-visible {
201
- outline: none;
126
+ .tw-z-\[21\] {
127
+ z-index: 21
202
128
  }
203
-
204
- /* src/atom/Switch/Switch.module.scss */
205
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-small {
206
- height: 0.75rem;
207
- min-width: 1.5rem
129
+ .tw-z-\[22\] {
130
+ z-index: 22
208
131
  }
209
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-small .ant-switch-handle {
210
- height: 0.5rem;
211
- width: 0.5rem
132
+ .tw-m-0 {
133
+ margin: 0px
212
134
  }
213
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked {
214
- --tw-bg-opacity: 1;
215
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
135
+ .tw-mx-0\.5 {
136
+ margin-left: 0.125rem;
137
+ margin-right: 0.125rem
216
138
  }
217
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked:hover {
218
- --tw-bg-opacity: 1;
219
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
139
+ .tw-mx-auto {
140
+ margin-left: auto;
141
+ margin-right: auto
220
142
  }
221
-
222
- /* src/atom/Radio/Radio.module.scss */
223
- .Radio-module__radio___1CPAk {
224
- display: flex;
225
- align-items: center;
143
+ .tw-mb-2 {
144
+ margin-bottom: 0.5rem
226
145
  }
227
- .Radio-module__radio___1CPAk.Radio-module__size_small___nRXgM .ant-radio .ant-radio-inner {
228
- height: 16px;
229
- width: 16px;
146
+ .tw-mb-4 {
147
+ margin-bottom: 1rem
230
148
  }
231
- .Radio-module__radio___1CPAk.Radio-module__size_medium___uSzPl .ant-radio .ant-radio-inner {
232
- height: 20px;
233
- width: 20px;
149
+ .tw-ml-1 {
150
+ margin-left: 0.25rem
234
151
  }
235
- .Radio-module__radio___1CPAk.Radio-module__size_large___ubpHs .ant-radio .ant-radio-inner {
236
- height: 24px;
237
- width: 24px;
152
+ .tw-mr-1 {
153
+ margin-right: 0.25rem
238
154
  }
239
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked .ant-radio-inner {
240
- border-color: #EC5D25;
241
- background-color: #EC5D25;
155
+ .tw-mt-0 {
156
+ margin-top: 0px
242
157
  }
243
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:hover .ant-radio-inner {
244
- border-color: #B94710;
245
- background-color: #B94710;
158
+ .tw-mt-0\.5 {
159
+ margin-top: 0.125rem
246
160
  }
247
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:focus-visible {
248
- outline: 2px solid #0A65E7;
161
+ .tw-mt-\[1px\] {
162
+ margin-top: 1px
249
163
  }
250
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z {
251
- cursor: not-allowed;
164
+ .tw-flex {
165
+ display: flex
252
166
  }
253
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner {
254
- border-color: #B6BAC3;
255
- background-color: #B6BAC3;
167
+ .tw-grid {
168
+ display: grid
256
169
  }
257
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner::after {
258
- transform: scale(0.375);
259
- background-color: #FFFFFF;
170
+ .tw-h-10 {
171
+ height: 2.5rem
260
172
  }
261
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio .ant-radio-inner {
262
- border-color: #B6BAC3;
173
+ .tw-h-12 {
174
+ height: 3rem
263
175
  }
264
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:hover .ant-radio-inner {
265
- border-color: #6B7280;
176
+ .tw-h-16 {
177
+ height: 4rem
266
178
  }
267
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:focus-visible {
268
- outline: 2px solid #0A65E7;
179
+ .tw-h-2 {
180
+ height: 0.5rem
269
181
  }
270
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z {
271
- cursor: not-allowed;
182
+ .tw-h-3 {
183
+ height: 0.75rem
272
184
  }
273
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z .ant-radio .ant-radio-inner {
274
- border-color: #B6BAC3;
275
- background-color: #F9FAFB;
185
+ .tw-h-6 {
186
+ height: 1.5rem
276
187
  }
277
- .Radio-module__radio___1CPAk.Radio-module__variant_normal___FQkTC {
278
- color: #363E4F;
279
- font-weight: 400;
280
- font-size: 0.875rem;
281
- line-height: 20px;
188
+ .tw-h-8 {
189
+ height: 2rem
282
190
  }
283
- .Radio-module__radio___1CPAk.Radio-module__variant_emphasized___Fgpv6 {
284
- color: #363E4F;
285
- font-weight: 500;
286
- font-size: 0.875rem;
287
- line-height: 20px;
191
+ .tw-h-\[290px\] {
192
+ height: 290px
288
193
  }
289
-
290
- /* src/atom/Checkbox/Checkbox.module.scss */
291
- .Checkbox-module__checkbox___xxg5L {
292
- display: flex;
293
- align-items: center;
194
+ .tw-h-\[320px\] {
195
+ height: 320px
294
196
  }
295
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_small___Kknlo .ant-checkbox .ant-checkbox-inner {
296
- height: 16px;
297
- width: 16px;
197
+ .tw-h-\[40px\] {
198
+ height: 40px
298
199
  }
299
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner {
300
- height: 20px;
301
- width: 20px;
200
+ .tw-h-full {
201
+ height: 100%
302
202
  }
303
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner::after {
304
- inset-inline-start: 27%;
203
+ .tw-max-h-44 {
204
+ max-height: 11rem
305
205
  }
306
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner {
307
- height: 24px;
308
- width: 24px;
206
+ .tw-max-h-60 {
207
+ max-height: 15rem
309
208
  }
310
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner::after {
311
- inset-inline-start: 33%;
209
+ .tw-max-h-\[90vh\] {
210
+ max-height: 90vh
312
211
  }
313
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked .ant-checkbox-inner {
314
- border-color: #ec5d25;
315
- background-color: #ec5d25;
212
+ .tw-w-10 {
213
+ width: 2.5rem
316
214
  }
317
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.ant-checkbox-wrapper:hover
318
- .ant-checkbox-checked:not(.ant-checkbox-disabled)
319
- .ant-checkbox-inner {
320
- --tw-bg-opacity: 1;
321
- background-color: rgb(185 71 16 / var(--tw-bg-opacity, 1));
215
+ .tw-w-3 {
216
+ width: 0.75rem
322
217
  }
323
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked:focus-visible {
324
- outline: 2px solid #0a65e7;
218
+ .tw-w-9 {
219
+ width: 2.25rem
325
220
  }
326
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 {
327
- cursor: not-allowed;
221
+ .tw-w-\[18px\] {
222
+ width: 18px
328
223
  }
329
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner {
330
- opacity: 0.5;
331
- border-color: #ec5d25;
332
- background-color: #ec5d25;
333
- }
334
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner::after {
335
- border-color: #ffffff;
336
- }
337
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox .ant-checkbox-inner {
338
- border-color: #b6bac3;
339
- }
340
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:hover .ant-checkbox-inner {
341
- border-color: #6b7280;
342
- }
343
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:focus-visible {
344
- outline: 2px solid #0a65e7;
345
- }
346
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 {
347
- cursor: not-allowed;
348
- }
349
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 .ant-checkbox .ant-checkbox-inner {
350
- border-color: #b6bac3;
351
- background-color: #f9fafb;
352
- }
353
- .Checkbox-module__checkbox___xxg5L .ant-checkbox-disabled + span {
354
- color: #363e4f;
355
- }
356
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_normal___faYKo {
357
- color: #363e4f;
358
- font-weight: 400;
359
- font-size: 0.875rem;
360
- line-height: 20px;
361
- }
362
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_emphasized___-koYj {
363
- color: #363e4f;
364
- font-weight: 500;
365
- font-size: 0.875rem;
366
- line-height: 20px;
367
- }
368
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner {
369
- opacity: 0.5;
370
- border-color: #ec5d25;
371
- background-color: #ec5d25;
372
- }
373
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner::after {
374
- border-color: #ffffff;
375
- }
376
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner {
377
- border-color: #ec5d25 !important;
378
- background-color: #ec5d25 !important;
379
- }
380
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner::after {
381
- inset-inline-start: 50%;
382
- width: 60%;
383
- height: 3px;
384
- border-radius: 4px;
385
- background: white;
386
- }
387
-
388
- /* src/atom/Modal/Modal.module.scss */
389
- .Modal-module__modal___PKrAi.Modal-module__footerMargintopDisable___4B6u- .Modal-module__ant-modal-footer___HKsDR {
390
- margin-top: 0;
391
- margin-top: 0px;
392
- }
393
- .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter {
394
- padding: 24px;
395
- padding: 1.5rem;
396
- display: flex;
397
- justify-content: flex-end;
398
- }
399
- .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__okBtn___Ut8e5,
400
- .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__cancelBtn___i0Rm8 {
401
- min-width: 92px;
402
- }
403
- .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter {
404
- padding: 24px;
405
- padding: 1.5rem;
406
- padding-top: 0px;
407
- display: flex;
408
- justify-content: flex-end;
409
- }
410
- .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__okBtn___Ut8e5,
411
- .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__cancelBtn___i0Rm8 {
412
- width: 50%;
413
- }
414
- .Modal-module__modal___PKrAi .ant-modal-content {
415
- padding: 0;
416
- border-radius: 0.75rem;
417
- padding: 0px;
418
- }
419
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
420
- margin-bottom: 0px;
421
- padding: 1rem;
422
- }
423
- @media (min-width: 576px) {
424
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
425
- padding: 1.5rem;
426
- }
427
- }
428
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header .ant-modal-title {
429
- justify-content: flex-start;
430
- padding-right: 1.25rem;
431
- font-size: 1.25rem;
432
- font-weight: 500;
433
- line-height: 1.75rem;
434
- --tw-text-opacity: 1;
435
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
436
- }
437
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
438
- display: flex;
439
- align-items: flex-end;
440
- justify-content: center;
441
- }
442
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close .ant-modal-close-x {
443
- display: flex;
444
- align-items: center;
445
- justify-content: center;
446
- }
447
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-body {
448
- padding: 0 1.5rem 1.5rem;
449
- max-height: 80vh;
450
- overflow: auto;
451
- }
452
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
453
- top: 1.5rem;
454
- right: 1.5rem;
455
- padding-bottom: 0.25rem;
456
- }
457
- .Modal-module__modal___PKrAi .ant-btn-primary {
458
- margin-inline-start: 0.5rem;
459
- }
460
-
461
- /* CSS Modules */
462
-
463
-
464
- /* CSS Modules */
465
- /* src/atom/Tooltip/Tooltip.module.scss */
466
- .Tooltip-module__light___H5oCc .ant-tooltip-content .ant-tooltip-inner {
467
- background-color: white !important;
468
- color: #111827;
469
- border-radius: 0.5rem;
470
- padding: 0.625rem;
471
- --tw-text-opacity: 1;
472
- color: rgb(33 40 55 / var(--tw-text-opacity, 1));
473
- }
474
- .Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
475
- background-color: white !important;
476
- }
477
-
478
- /* src/atom/Button/Button.module.scss */
479
- .Button-module__button___cLCyl {
480
- display: flex;
481
- align-items: center;
482
- justify-content: center;
483
- gap: 0.25rem;
484
- border-radius: 0.5rem;
485
- }
486
- .Button-module__button___cLCyl.Button-module__size_large___S-mbU {
487
- height: 56px;
488
- padding-left: 1rem;
489
- padding-right: 1rem;
490
- }
491
- .Button-module__button___cLCyl.Button-module__size_large___S-mbU.Button-module__shape_circle___sPUS5 {
492
- width: 56px;
493
- }
494
- .Button-module__button___cLCyl.Button-module__size_normal___qJUMj {
495
- height: 40px;
496
- padding-left: 0.75rem;
497
- padding-right: 0.75rem;
498
- }
499
- .Button-module__button___cLCyl.Button-module__size_normal___qJUMj.Button-module__shape_circle___sPUS5 {
500
- width: 40px;
501
- }
502
- .Button-module__button___cLCyl.Button-module__size_small___IUeei {
503
- height: 32px;
504
- padding-left: 0.5rem;
505
- padding-right: 0.5rem;
506
- }
507
- .Button-module__button___cLCyl.Button-module__size_small___IUeei.Button-module__shape_circle___sPUS5 {
508
- width: 32px;
509
- }
510
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz- {
511
- --tw-bg-opacity: 1;
512
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
513
- border-width: 1px;
514
- border-style: solid;
515
- --tw-border-opacity: 1;
516
- border-color: rgb(236 93 37 / var(--tw-border-opacity, 1));
517
- box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
518
- }
519
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.ant-btn-primary:active {
520
- --tw-bg-opacity: 1;
521
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
522
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
523
- }
524
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-:focus-visible {
525
- outline: 2px solid rgba(236, 93, 37, 0.3803921569);
526
- }
527
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_subtle___BMbbd {
528
- --tw-text-opacity: 1;
529
- color: rgb(236 93 37 / var(--tw-text-opacity, 1));
530
- }
531
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_subtle___BMbbd:hover {
532
- --tw-text-opacity: 1;
533
- color: rgb(236 93 37 / var(--tw-text-opacity, 1));
534
- }
535
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_link___Cj1O9 {
536
- --tw-text-opacity: 1;
537
- color: rgb(236 93 37 / var(--tw-text-opacity, 1));
538
- }
539
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_link___Cj1O9:hover {
540
- --tw-text-opacity: 1;
541
- color: rgb(236 93 37 / var(--tw-text-opacity, 1));
542
- }
543
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA {
544
- border-width: 1px;
545
- border-style: solid;
546
- --tw-bg-opacity: 1;
547
- background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
548
- --tw-border-opacity: 1;
549
- border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
550
- box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
551
- }
552
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:active {
553
- --tw-bg-opacity: 1;
554
- background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
555
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
556
- }
557
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:focus-visible {
558
- outline: 2px solid rgba(236, 93, 37, 0.3803921569);
559
- }
560
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_subtle___BMbbd {
561
- --tw-text-opacity: 1;
562
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
563
- }
564
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_subtle___BMbbd:hover {
565
- --tw-text-opacity: 1;
566
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
567
- }
568
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_link___Cj1O9 {
569
- --tw-text-opacity: 1;
570
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
571
- }
572
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_link___Cj1O9:hover {
573
- --tw-text-opacity: 1;
574
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
575
- }
576
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp {
577
- border-width: 1px;
578
- --tw-bg-opacity: 1;
579
- background-color: rgb(207 34 49 / var(--tw-bg-opacity, 1));
580
- border-style: solid;
581
- --tw-border-opacity: 1;
582
- border-color: rgb(207 34 49 / var(--tw-border-opacity, 1));
583
- box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
584
- }
585
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:active {
586
- --tw-bg-opacity: 1;
587
- background-color: rgb(207 34 49 / var(--tw-bg-opacity, 1));
588
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
589
- }
590
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:focus-visible {
591
- outline: 2px solid rgba(236, 93, 37, 0.3803921569);
592
- }
593
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_subtle___BMbbd {
594
- --tw-text-opacity: 1;
595
- color: rgb(207 34 49 / var(--tw-text-opacity, 1));
596
- }
597
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_subtle___BMbbd:hover {
598
- --tw-text-opacity: 1;
599
- color: rgb(207 34 49 / var(--tw-text-opacity, 1));
600
- }
601
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_link___Cj1O9 {
602
- --tw-text-opacity: 1;
603
- color: rgb(207 34 49 / var(--tw-text-opacity, 1));
604
- }
605
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_link___Cj1O9:hover {
606
- --tw-text-opacity: 1;
607
- color: rgb(207 34 49 / var(--tw-text-opacity, 1));
608
- }
609
- .Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd {
610
- --tw-bg-opacity: 1;
611
- background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
612
- border-width: 1px;
613
- border-style: solid;
614
- --tw-border-opacity: 1;
615
- border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
616
- box-shadow: 0px 1px 0px 0px rgba(17, 24, 39, 0.1);
617
- }
618
- .Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd.ant-btn-default:hover {
619
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.15);
620
- --tw-border-opacity: 1;
621
- border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
622
- }
623
- .Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd.ant-btn-default:focus-visible {
624
- outline: 2px solid rgba(236, 93, 37, 0.3803921569);
625
- }
626
- .Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia {
627
- background-color: transparent;
628
- border-width: 0px;
629
- border-style: none;
630
- box-shadow: none;
631
- }
632
- .Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn-default:hover {
633
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.15);
634
- border-style: none;
635
- --tw-bg-opacity: 1;
636
- background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
637
- }
638
- .Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn-default:active {
639
- --tw-bg-opacity: 1;
640
- background-color: rgb(241 243 245 / var(--tw-bg-opacity, 1));
641
- }
642
- .Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn:focus-visible {
643
- outline: 2px solid rgba(236, 93, 37, 0.2);
644
- }
645
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9 {
646
- background-color: transparent;
647
- padding: 0px;
648
- border-width: 0px;
649
- border-style: none;
650
- height: auto;
651
- box-shadow: none;
652
- }
653
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover.Button-module__onHoverUnderline___LOfXo {
654
- text-decoration: underline;
655
- }
656
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover {
657
- box-shadow: none;
658
- border-style: none;
659
- background-color: transparent;
660
- }
661
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:active {
662
- background-color: transparent;
663
- }
664
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn:focus-visible {
665
- outline: none;
666
- }
667
-
668
- /* src/atom/Switch/Switch.module.scss */
669
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-small {
670
- height: 0.75rem;
671
- min-width: 1.5rem
672
- }
673
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-small .ant-switch-handle {
674
- height: 0.5rem;
675
- width: 0.5rem
676
- }
677
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked {
678
- --tw-bg-opacity: 1;
679
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
680
- }
681
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked:hover {
682
- --tw-bg-opacity: 1;
683
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
684
- }
685
-
686
- /* src/atom/Radio/Radio.module.scss */
687
- .Radio-module__radio___1CPAk {
688
- display: flex;
689
- align-items: center;
224
+ .tw-w-\[50px\] {
225
+ width: 50px
690
226
  }
691
- .Radio-module__radio___1CPAk.Radio-module__size_small___nRXgM .ant-radio .ant-radio-inner {
692
- height: 16px;
693
- width: 16px;
694
- }
695
- .Radio-module__radio___1CPAk.Radio-module__size_medium___uSzPl .ant-radio .ant-radio-inner {
696
- height: 20px;
697
- width: 20px;
698
- }
699
- .Radio-module__radio___1CPAk.Radio-module__size_large___ubpHs .ant-radio .ant-radio-inner {
700
- height: 24px;
701
- width: 24px;
702
- }
703
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked .ant-radio-inner {
704
- border-color: #EC5D25;
705
- background-color: #EC5D25;
706
- }
707
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:hover .ant-radio-inner {
708
- border-color: #B94710;
709
- background-color: #B94710;
710
- }
711
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:focus-visible {
712
- outline: 2px solid #0A65E7;
713
- }
714
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z {
715
- cursor: not-allowed;
716
- }
717
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner {
718
- border-color: #B6BAC3;
719
- background-color: #B6BAC3;
720
- }
721
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner::after {
722
- transform: scale(0.375);
723
- background-color: #FFFFFF;
724
- }
725
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio .ant-radio-inner {
726
- border-color: #B6BAC3;
727
- }
728
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:hover .ant-radio-inner {
729
- border-color: #6B7280;
730
- }
731
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:focus-visible {
732
- outline: 2px solid #0A65E7;
733
- }
734
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z {
735
- cursor: not-allowed;
736
- }
737
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z .ant-radio .ant-radio-inner {
738
- border-color: #B6BAC3;
739
- background-color: #F9FAFB;
740
- }
741
- .Radio-module__radio___1CPAk.Radio-module__variant_normal___FQkTC {
742
- color: #363E4F;
743
- font-weight: 400;
744
- font-size: 0.875rem;
745
- line-height: 20px;
746
- }
747
- .Radio-module__radio___1CPAk.Radio-module__variant_emphasized___Fgpv6 {
748
- color: #363E4F;
749
- font-weight: 500;
750
- font-size: 0.875rem;
751
- line-height: 20px;
752
- }
753
-
754
- /* src/atom/Checkbox/Checkbox.module.scss */
755
- .Checkbox-module__checkbox___xxg5L {
756
- display: flex;
757
- align-items: center;
758
- }
759
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_small___Kknlo .ant-checkbox .ant-checkbox-inner {
760
- height: 16px;
761
- width: 16px;
762
- }
763
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner {
764
- height: 20px;
765
- width: 20px;
766
- }
767
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner::after {
768
- inset-inline-start: 27%;
769
- }
770
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner {
771
- height: 24px;
772
- width: 24px;
773
- }
774
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner::after {
775
- inset-inline-start: 33%;
776
- }
777
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked .ant-checkbox-inner {
778
- border-color: #ec5d25;
779
- background-color: #ec5d25;
780
- }
781
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.ant-checkbox-wrapper:hover
782
- .ant-checkbox-checked:not(.ant-checkbox-disabled)
783
- .ant-checkbox-inner {
784
- --tw-bg-opacity: 1;
785
- background-color: rgb(185 71 16 / var(--tw-bg-opacity, 1));
786
- }
787
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked:focus-visible {
788
- outline: 2px solid #0a65e7;
789
- }
790
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 {
791
- cursor: not-allowed;
792
- }
793
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner {
794
- opacity: 0.5;
795
- border-color: #ec5d25;
796
- background-color: #ec5d25;
797
- }
798
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner::after {
799
- border-color: #ffffff;
800
- }
801
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox .ant-checkbox-inner {
802
- border-color: #b6bac3;
803
- }
804
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:hover .ant-checkbox-inner {
805
- border-color: #6b7280;
806
- }
807
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:focus-visible {
808
- outline: 2px solid #0a65e7;
809
- }
810
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 {
811
- cursor: not-allowed;
812
- }
813
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 .ant-checkbox .ant-checkbox-inner {
814
- border-color: #b6bac3;
815
- background-color: #f9fafb;
816
- }
817
- .Checkbox-module__checkbox___xxg5L .ant-checkbox-disabled + span {
818
- color: #363e4f;
227
+ .tw-w-auto {
228
+ width: auto
819
229
  }
820
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_normal___faYKo {
821
- color: #363e4f;
822
- font-weight: 400;
823
- font-size: 0.875rem;
824
- line-height: 20px;
825
- }
826
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_emphasized___-koYj {
827
- color: #363e4f;
828
- font-weight: 500;
829
- font-size: 0.875rem;
830
- line-height: 20px;
831
- }
832
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner {
833
- opacity: 0.5;
834
- border-color: #ec5d25;
835
- background-color: #ec5d25;
836
- }
837
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner::after {
838
- border-color: #ffffff;
839
- }
840
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner {
841
- border-color: #ec5d25 !important;
842
- background-color: #ec5d25 !important;
843
- }
844
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner::after {
845
- inset-inline-start: 50%;
846
- width: 60%;
847
- height: 3px;
848
- border-radius: 4px;
849
- background: white;
850
- }
851
-
852
- /* src/atom/Modal/Modal.module.scss */
853
- .Modal-module__modal___PKrAi.Modal-module__footerMargintopDisable___4B6u- .Modal-module__ant-modal-footer___HKsDR {
854
- margin-top: 0;
855
- margin-top: 0px;
856
- }
857
- .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter {
858
- padding: 24px;
859
- padding: 1.5rem;
860
- display: flex;
861
- justify-content: flex-end;
862
- }
863
- .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__okBtn___Ut8e5,
864
- .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__cancelBtn___i0Rm8 {
865
- min-width: 92px;
230
+ .tw-w-full {
231
+ width: 100%
866
232
  }
867
- .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter {
868
- padding: 24px;
869
- padding: 1.5rem;
870
- padding-top: 0px;
871
- display: flex;
872
- justify-content: flex-end;
233
+ .tw-min-w-fit {
234
+ min-width: -moz-fit-content;
235
+ min-width: fit-content
873
236
  }
874
- .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__okBtn___Ut8e5,
875
- .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__cancelBtn___i0Rm8 {
876
- width: 50%;
237
+ .tw-max-w-4xl {
238
+ max-width: 56rem
877
239
  }
878
- .Modal-module__modal___PKrAi .ant-modal-content {
879
- padding: 0;
880
- border-radius: 0.75rem;
881
- padding: 0px;
240
+ .tw-max-w-\[83vw\] {
241
+ max-width: 83vw
882
242
  }
883
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
884
- margin-bottom: 0px;
885
- padding: 1rem;
243
+ .tw-flex-1 {
244
+ flex: 1 1 0%
886
245
  }
887
- @media (min-width: 576px) {
888
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
889
- padding: 1.5rem;
890
- }
246
+ .tw--translate-y-1\/2 {
247
+ --tw-translate-y: -50%;
248
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
891
249
  }
892
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header .ant-modal-title {
893
- justify-content: flex-start;
894
- padding-right: 1.25rem;
895
- font-size: 1.25rem;
896
- font-weight: 500;
897
- line-height: 1.75rem;
898
- --tw-text-opacity: 1;
899
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
250
+ .-tw-rotate-180 {
251
+ --tw-rotate: -180deg;
252
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
900
253
  }
901
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
902
- display: flex;
903
- align-items: flex-end;
904
- justify-content: center;
254
+ .tw-rotate-180 {
255
+ --tw-rotate: 180deg;
256
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
905
257
  }
906
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close .ant-modal-close-x {
907
- display: flex;
908
- align-items: center;
909
- justify-content: center;
258
+ .tw-rotate-90 {
259
+ --tw-rotate: 90deg;
260
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
910
261
  }
911
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-body {
912
- padding: 0 1.5rem 1.5rem;
913
- max-height: 80vh;
914
- overflow: auto;
262
+ .tw-cursor-not-allowed {
263
+ cursor: not-allowed
915
264
  }
916
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
917
- top: 1.5rem;
918
- right: 1.5rem;
919
- padding-bottom: 0.25rem;
265
+ .tw-cursor-pointer {
266
+ cursor: pointer
920
267
  }
921
- .Modal-module__modal___PKrAi .ant-btn-primary {
922
- margin-inline-start: 0.5rem;
268
+ .tw-grid-cols-7 {
269
+ grid-template-columns: repeat(7, minmax(0, 1fr))
923
270
  }
924
-
925
- /* CSS Modules */
926
-
927
-
928
- /* CSS Modules */
929
- /* src/atom/Tooltip/Tooltip.module.scss */
930
- .Tooltip-module__light___H5oCc .ant-tooltip-content .ant-tooltip-inner {
931
- background-color: white !important;
932
- color: #111827;
933
- border-radius: 0.5rem;
934
- padding: 0.625rem;
935
- --tw-text-opacity: 1;
936
- color: rgb(33 40 55 / var(--tw-text-opacity, 1));
271
+ .tw-flex-row {
272
+ flex-direction: row
937
273
  }
938
- .Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
939
- background-color: white !important;
274
+ .tw-flex-col {
275
+ flex-direction: column
940
276
  }
941
-
942
- /* src/atom/Radio/Radio.module.scss */
943
- .Radio-module__radio___1CPAk {
944
- display: flex;
945
- align-items: center;
277
+ .tw-items-end {
278
+ align-items: flex-end
946
279
  }
947
- .Radio-module__radio___1CPAk.Radio-module__size_small___nRXgM .ant-radio .ant-radio-inner {
948
- height: 16px;
949
- width: 16px;
280
+ .tw-items-center {
281
+ align-items: center
950
282
  }
951
- .Radio-module__radio___1CPAk.Radio-module__size_medium___uSzPl .ant-radio .ant-radio-inner {
952
- height: 20px;
953
- width: 20px;
283
+ .tw-justify-center {
284
+ justify-content: center
954
285
  }
955
- .Radio-module__radio___1CPAk.Radio-module__size_large___ubpHs .ant-radio .ant-radio-inner {
956
- height: 24px;
957
- width: 24px;
286
+ .tw-justify-between {
287
+ justify-content: space-between
958
288
  }
959
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked .ant-radio-inner {
960
- border-color: #EC5D25;
961
- background-color: #EC5D25;
289
+ .tw-gap-1 {
290
+ gap: 0.25rem
962
291
  }
963
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:hover .ant-radio-inner {
964
- border-color: #B94710;
965
- background-color: #B94710;
292
+ .tw-gap-2 {
293
+ gap: 0.5rem
966
294
  }
967
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:focus-visible {
968
- outline: 2px solid #0A65E7;
295
+ .tw-gap-4 {
296
+ gap: 1rem
969
297
  }
970
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z {
971
- cursor: not-allowed;
298
+ .tw-gap-8 {
299
+ gap: 2rem
972
300
  }
973
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner {
974
- border-color: #B6BAC3;
975
- background-color: #B6BAC3;
301
+ .tw-overflow-y-auto {
302
+ overflow-y: auto
976
303
  }
977
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner::after {
978
- transform: scale(0.375);
979
- background-color: #FFFFFF;
304
+ .tw-whitespace-nowrap {
305
+ white-space: nowrap
980
306
  }
981
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio .ant-radio-inner {
982
- border-color: #B6BAC3;
307
+ .\!tw-rounded-lg {
308
+ border-radius: 0.5rem !important
983
309
  }
984
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:hover .ant-radio-inner {
985
- border-color: #6B7280;
310
+ .tw-rounded {
311
+ border-radius: 0.25rem
986
312
  }
987
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:focus-visible {
988
- outline: 2px solid #0A65E7;
313
+ .tw-rounded-full {
314
+ border-radius: 9999px
989
315
  }
990
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z {
991
- cursor: not-allowed;
316
+ .tw-rounded-lg {
317
+ border-radius: 0.5rem
992
318
  }
993
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z .ant-radio .ant-radio-inner {
994
- border-color: #B6BAC3;
995
- background-color: #F9FAFB;
319
+ .tw-rounded-xl {
320
+ border-radius: 0.75rem
996
321
  }
997
- .Radio-module__radio___1CPAk.Radio-module__variant_normal___FQkTC {
998
- color: #363E4F;
999
- font-weight: 400;
1000
- font-size: 0.875rem;
1001
- line-height: 20px;
322
+ .tw-rounded-r-full {
323
+ border-top-right-radius: 9999px;
324
+ border-bottom-right-radius: 9999px
1002
325
  }
1003
- .Radio-module__radio___1CPAk.Radio-module__variant_emphasized___Fgpv6 {
1004
- color: #363E4F;
1005
- font-weight: 500;
1006
- font-size: 0.875rem;
1007
- line-height: 20px;
326
+ .tw-border {
327
+ border-width: 1px
1008
328
  }
1009
-
1010
- /* src/atom/Checkbox/Checkbox.module.scss */
1011
- .Checkbox-module__checkbox___xxg5L {
1012
- display: flex;
1013
- align-items: center;
329
+ .tw-border-0 {
330
+ border-width: 0px
1014
331
  }
1015
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_small___Kknlo .ant-checkbox .ant-checkbox-inner {
1016
- height: 16px;
1017
- width: 16px;
332
+ .tw-border-2 {
333
+ border-width: 2px
1018
334
  }
1019
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner {
1020
- height: 20px;
1021
- width: 20px;
335
+ .tw-border-b {
336
+ border-bottom-width: 1px
1022
337
  }
1023
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner::after {
1024
- inset-inline-start: 27%;
338
+ .tw-border-l-0 {
339
+ border-left-width: 0px
1025
340
  }
1026
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner {
1027
- height: 24px;
1028
- width: 24px;
341
+ .tw-border-r-0 {
342
+ border-right-width: 0px
1029
343
  }
1030
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner::after {
1031
- inset-inline-start: 33%;
344
+ .tw-border-t-0 {
345
+ border-top-width: 0px
1032
346
  }
1033
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked .ant-checkbox-inner {
1034
- border-color: #ec5d25;
1035
- background-color: #ec5d25;
347
+ .tw-border-solid {
348
+ border-style: solid
1036
349
  }
1037
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.ant-checkbox-wrapper:hover
1038
- .ant-checkbox-checked:not(.ant-checkbox-disabled)
1039
- .ant-checkbox-inner {
1040
- --tw-bg-opacity: 1;
1041
- background-color: rgb(185 71 16 / var(--tw-bg-opacity, 1));
350
+ .tw-border-dashed {
351
+ border-style: dashed
1042
352
  }
1043
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked:focus-visible {
1044
- outline: 2px solid #0a65e7;
353
+ .tw-border-none {
354
+ border-style: none
1045
355
  }
1046
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 {
1047
- cursor: not-allowed;
356
+ .\!tw-border-\[\#804D7B\] {
357
+ --tw-border-opacity: 1 !important;
358
+ border-color: rgb(128 77 123 / var(--tw-border-opacity, 1)) !important
1048
359
  }
1049
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner {
1050
- opacity: 0.5;
1051
- border-color: #ec5d25;
1052
- background-color: #ec5d25;
360
+ .\!tw-border-black {
361
+ --tw-border-opacity: 1 !important;
362
+ border-color: rgb(0 0 0 / var(--tw-border-opacity, 1)) !important
1053
363
  }
1054
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner::after {
1055
- border-color: #ffffff;
364
+ .\!tw-border-color-primary {
365
+ --tw-border-opacity: 1 !important;
366
+ border-color: rgb(236 93 37 / var(--tw-border-opacity, 1)) !important
1056
367
  }
1057
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox .ant-checkbox-inner {
1058
- border-color: #b6bac3;
368
+ .\!tw-border-color-text-critical {
369
+ --tw-border-opacity: 1 !important;
370
+ border-color: rgb(207 34 49 / var(--tw-border-opacity, 1)) !important
1059
371
  }
1060
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:hover .ant-checkbox-inner {
1061
- border-color: #6b7280;
372
+ .tw-border-\[\#EBE3DD\] {
373
+ --tw-border-opacity: 1;
374
+ border-color: rgb(235 227 221 / var(--tw-border-opacity, 1))
1062
375
  }
1063
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:focus-visible {
1064
- outline: 2px solid #0a65e7;
376
+ .tw-border-\[\#ebe3dd\] {
377
+ --tw-border-opacity: 1;
378
+ border-color: rgb(235 227 221 / var(--tw-border-opacity, 1))
1065
379
  }
1066
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 {
1067
- cursor: not-allowed;
380
+ .tw-border-color-gray-100 {
381
+ --tw-border-opacity: 1;
382
+ border-color: rgb(229 233 237 / var(--tw-border-opacity, 1))
1068
383
  }
1069
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 .ant-checkbox .ant-checkbox-inner {
1070
- border-color: #b6bac3;
1071
- background-color: #f9fafb;
384
+ .tw-border-gray-200 {
385
+ --tw-border-opacity: 1;
386
+ border-color: rgb(229 231 235 / var(--tw-border-opacity, 1))
1072
387
  }
1073
- .Checkbox-module__checkbox___xxg5L .ant-checkbox-disabled + span {
1074
- color: #363e4f;
388
+ .tw-border-gray-400 {
389
+ --tw-border-opacity: 1;
390
+ border-color: rgb(156 163 175 / var(--tw-border-opacity, 1))
1075
391
  }
1076
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_normal___faYKo {
1077
- color: #363e4f;
1078
- font-weight: 400;
1079
- font-size: 0.875rem;
1080
- line-height: 20px;
392
+ .tw-border-transparent {
393
+ border-color: transparent
1081
394
  }
1082
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_emphasized___-koYj {
1083
- color: #363e4f;
1084
- font-weight: 500;
1085
- font-size: 0.875rem;
1086
- line-height: 20px;
395
+ .\!tw-bg-\[\#F8F7F6\] {
396
+ --tw-bg-opacity: 1 !important;
397
+ background-color: rgb(248 247 246 / var(--tw-bg-opacity, 1)) !important
1087
398
  }
1088
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner {
1089
- opacity: 0.5;
1090
- border-color: #ec5d25;
1091
- background-color: #ec5d25;
399
+ .tw-bg-\[\#F2EFEC\] {
400
+ --tw-bg-opacity: 1;
401
+ background-color: rgb(242 239 236 / var(--tw-bg-opacity, 1))
1092
402
  }
1093
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner::after {
1094
- border-color: #ffffff;
403
+ .tw-bg-\[\#f1e8fa\] {
404
+ --tw-bg-opacity: 1;
405
+ background-color: rgb(241 232 250 / var(--tw-bg-opacity, 1))
1095
406
  }
1096
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner {
1097
- border-color: #ec5d25 !important;
1098
- background-color: #ec5d25 !important;
407
+ .tw-bg-\[\#f2efec\] {
408
+ --tw-bg-opacity: 1;
409
+ background-color: rgb(242 239 236 / var(--tw-bg-opacity, 1))
1099
410
  }
1100
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner::after {
1101
- inset-inline-start: 50%;
1102
- width: 60%;
1103
- height: 3px;
1104
- border-radius: 4px;
1105
- background: white;
411
+ .tw-bg-\[\#f3f4f6\] {
412
+ --tw-bg-opacity: 1;
413
+ background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
1106
414
  }
1107
-
1108
- /* src/atom/Switch/Switch.module.scss */
1109
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-small {
1110
- height: 0.75rem;
1111
- min-width: 1.5rem
415
+ .tw-bg-\[\#fff1e1\] {
416
+ --tw-bg-opacity: 1;
417
+ background-color: rgb(255 241 225 / var(--tw-bg-opacity, 1))
1112
418
  }
1113
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-small .ant-switch-handle {
1114
- height: 0.5rem;
1115
- width: 0.5rem
419
+ .tw-bg-black {
420
+ --tw-bg-opacity: 1;
421
+ background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1))
1116
422
  }
1117
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked {
423
+ .tw-bg-gray-200 {
1118
424
  --tw-bg-opacity: 1;
1119
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
425
+ background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1))
1120
426
  }
1121
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked:hover {
427
+ .tw-bg-gray-50 {
1122
428
  --tw-bg-opacity: 1;
1123
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
429
+ background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1))
1124
430
  }
1125
-
1126
- /* src/atom/Button/Button.module.scss */
1127
- .Button-module__button___cLCyl {
1128
- display: flex;
1129
- align-items: center;
1130
- justify-content: center;
1131
- gap: 0.25rem;
1132
- border-radius: 0.5rem;
431
+ .tw-bg-transparent {
432
+ background-color: transparent
1133
433
  }
1134
- .Button-module__button___cLCyl.Button-module__size_large___S-mbU {
1135
- height: 56px;
1136
- padding-left: 1rem;
1137
- padding-right: 1rem;
434
+ .tw-bg-white {
435
+ --tw-bg-opacity: 1;
436
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
1138
437
  }
1139
- .Button-module__button___cLCyl.Button-module__size_large___S-mbU.Button-module__shape_circle___sPUS5 {
1140
- width: 56px;
438
+ .tw-object-cover {
439
+ -o-object-fit: cover;
440
+ object-fit: cover
1141
441
  }
1142
- .Button-module__button___cLCyl.Button-module__size_normal___qJUMj {
1143
- height: 40px;
1144
- padding-left: 0.75rem;
1145
- padding-right: 0.75rem;
442
+ .tw-p-2 {
443
+ padding: 0.5rem
1146
444
  }
1147
- .Button-module__button___cLCyl.Button-module__size_normal___qJUMj.Button-module__shape_circle___sPUS5 {
1148
- width: 40px;
445
+ .tw-p-4 {
446
+ padding: 1rem
1149
447
  }
1150
- .Button-module__button___cLCyl.Button-module__size_small___IUeei {
1151
- height: 32px;
1152
- padding-left: 0.5rem;
1153
- padding-right: 0.5rem;
448
+ .tw-px-0 {
449
+ padding-left: 0px;
450
+ padding-right: 0px
1154
451
  }
1155
- .Button-module__button___cLCyl.Button-module__size_small___IUeei.Button-module__shape_circle___sPUS5 {
1156
- width: 32px;
452
+ .tw-px-2 {
453
+ padding-left: 0.5rem;
454
+ padding-right: 0.5rem
1157
455
  }
1158
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz- {
1159
- --tw-bg-opacity: 1;
1160
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
1161
- border-width: 1px;
1162
- border-style: solid;
1163
- --tw-border-opacity: 1;
1164
- border-color: rgb(236 93 37 / var(--tw-border-opacity, 1));
1165
- box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
456
+ .tw-px-4 {
457
+ padding-left: 1rem;
458
+ padding-right: 1rem
1166
459
  }
1167
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.ant-btn-primary:active {
1168
- --tw-bg-opacity: 1;
1169
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
1170
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
460
+ .tw-px-5 {
461
+ padding-left: 1.25rem;
462
+ padding-right: 1.25rem
1171
463
  }
1172
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-:focus-visible {
1173
- outline: 2px solid rgba(236, 93, 37, 0.3803921569);
464
+ .tw-px-6 {
465
+ padding-left: 1.5rem;
466
+ padding-right: 1.5rem
1174
467
  }
1175
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_subtle___BMbbd {
1176
- --tw-text-opacity: 1;
1177
- color: rgb(236 93 37 / var(--tw-text-opacity, 1));
468
+ .tw-py-1 {
469
+ padding-top: 0.25rem;
470
+ padding-bottom: 0.25rem
1178
471
  }
1179
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_subtle___BMbbd:hover {
1180
- --tw-text-opacity: 1;
1181
- color: rgb(236 93 37 / var(--tw-text-opacity, 1));
472
+ .tw-py-2 {
473
+ padding-top: 0.5rem;
474
+ padding-bottom: 0.5rem
1182
475
  }
1183
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_link___Cj1O9 {
1184
- --tw-text-opacity: 1;
1185
- color: rgb(236 93 37 / var(--tw-text-opacity, 1));
476
+ .tw-py-3 {
477
+ padding-top: 0.75rem;
478
+ padding-bottom: 0.75rem
1186
479
  }
1187
- .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_link___Cj1O9:hover {
1188
- --tw-text-opacity: 1;
1189
- color: rgb(236 93 37 / var(--tw-text-opacity, 1));
480
+ .tw-py-5 {
481
+ padding-top: 1.25rem;
482
+ padding-bottom: 1.25rem
1190
483
  }
1191
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA {
1192
- border-width: 1px;
1193
- border-style: solid;
1194
- --tw-bg-opacity: 1;
1195
- background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
1196
- --tw-border-opacity: 1;
1197
- border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
1198
- box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
484
+ .tw-py-\[2px\] {
485
+ padding-top: 2px;
486
+ padding-bottom: 2px
1199
487
  }
1200
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:active {
1201
- --tw-bg-opacity: 1;
1202
- background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
1203
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
488
+ .tw-pb-1 {
489
+ padding-bottom: 0.25rem
1204
490
  }
1205
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:focus-visible {
1206
- outline: 2px solid rgba(236, 93, 37, 0.3803921569);
491
+ .tw-pb-3 {
492
+ padding-bottom: 0.75rem
1207
493
  }
1208
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_subtle___BMbbd {
1209
- --tw-text-opacity: 1;
1210
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
494
+ .tw-pb-4 {
495
+ padding-bottom: 1rem
1211
496
  }
1212
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_subtle___BMbbd:hover {
1213
- --tw-text-opacity: 1;
1214
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
497
+ .tw-pr-2 {
498
+ padding-right: 0.5rem
1215
499
  }
1216
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_link___Cj1O9 {
1217
- --tw-text-opacity: 1;
1218
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
500
+ .tw-pt-1 {
501
+ padding-top: 0.25rem
1219
502
  }
1220
- .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_link___Cj1O9:hover {
1221
- --tw-text-opacity: 1;
1222
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
503
+ .tw-pt-2 {
504
+ padding-top: 0.5rem
1223
505
  }
1224
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp {
1225
- border-width: 1px;
1226
- --tw-bg-opacity: 1;
1227
- background-color: rgb(207 34 49 / var(--tw-bg-opacity, 1));
1228
- border-style: solid;
1229
- --tw-border-opacity: 1;
1230
- border-color: rgb(207 34 49 / var(--tw-border-opacity, 1));
1231
- box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
506
+ .tw-pt-3 {
507
+ padding-top: 0.75rem
1232
508
  }
1233
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:active {
1234
- --tw-bg-opacity: 1;
1235
- background-color: rgb(207 34 49 / var(--tw-bg-opacity, 1));
1236
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
509
+ .tw-pt-4 {
510
+ padding-top: 1rem
1237
511
  }
1238
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:focus-visible {
1239
- outline: 2px solid rgba(236, 93, 37, 0.3803921569);
512
+ .tw-pt-6 {
513
+ padding-top: 1.5rem
1240
514
  }
1241
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_subtle___BMbbd {
1242
- --tw-text-opacity: 1;
1243
- color: rgb(207 34 49 / var(--tw-text-opacity, 1));
515
+ .tw-pt-8 {
516
+ padding-top: 2rem
1244
517
  }
1245
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_subtle___BMbbd:hover {
1246
- --tw-text-opacity: 1;
1247
- color: rgb(207 34 49 / var(--tw-text-opacity, 1));
518
+ .tw-text-center {
519
+ text-align: center
1248
520
  }
1249
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_link___Cj1O9 {
1250
- --tw-text-opacity: 1;
1251
- color: rgb(207 34 49 / var(--tw-text-opacity, 1));
521
+ .tw-text-\[12px\] {
522
+ font-size: 12px
1252
523
  }
1253
- .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_link___Cj1O9:hover {
1254
- --tw-text-opacity: 1;
1255
- color: rgb(207 34 49 / var(--tw-text-opacity, 1));
524
+ .tw-text-\[13px\] {
525
+ font-size: 13px
1256
526
  }
1257
- .Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd {
1258
- --tw-bg-opacity: 1;
1259
- background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
1260
- border-width: 1px;
1261
- border-style: solid;
1262
- --tw-border-opacity: 1;
1263
- border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
1264
- box-shadow: 0px 1px 0px 0px rgba(17, 24, 39, 0.1);
527
+ .tw-text-font-size-10 {
528
+ font-size: 0.625rem
1265
529
  }
1266
- .Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd.ant-btn-default:hover {
1267
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.15);
1268
- --tw-border-opacity: 1;
1269
- border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
530
+ .tw-text-font-size-50 {
531
+ font-size: 1.25rem
1270
532
  }
1271
- .Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd.ant-btn-default:focus-visible {
1272
- outline: 2px solid rgba(236, 93, 37, 0.3803921569);
533
+ .tw-text-sm {
534
+ font-size: 0.875rem;
535
+ line-height: 1.25rem
1273
536
  }
1274
- .Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia {
1275
- background-color: transparent;
1276
- border-width: 0px;
1277
- border-style: none;
1278
- box-shadow: none;
537
+ .tw-text-xs {
538
+ font-size: 0.75rem;
539
+ line-height: 1rem
540
+ }
541
+ .tw-font-medium {
542
+ font-weight: 500
543
+ }
544
+ .tw-leading-7 {
545
+ line-height: 1.75rem
546
+ }
547
+ .tw-leading-\[18px\] {
548
+ line-height: 18px
549
+ }
550
+ .tw-text-\[\#6B7280\] {
551
+ --tw-text-opacity: 1;
552
+ color: rgb(107 114 128 / var(--tw-text-opacity, 1))
553
+ }
554
+ .tw-text-color-border-dark-subtle {
555
+ --tw-text-opacity: 1;
556
+ color: rgb(33 40 55 / var(--tw-text-opacity, 1))
557
+ }
558
+ .tw-text-color-surface-dark {
559
+ --tw-text-opacity: 1;
560
+ color: rgb(17 24 39 / var(--tw-text-opacity, 1))
561
+ }
562
+ .tw-text-color-text-critical {
563
+ --tw-text-opacity: 1;
564
+ color: rgb(207 34 49 / var(--tw-text-opacity, 1))
565
+ }
566
+ .tw-text-color-text-default {
567
+ --tw-text-opacity: 1;
568
+ color: rgb(17 24 39 / var(--tw-text-opacity, 1))
569
+ }
570
+ .tw-text-color-text-primary {
571
+ --tw-text-opacity: 1;
572
+ color: rgb(236 93 37 / var(--tw-text-opacity, 1))
573
+ }
574
+ .tw-text-color-text-subtle {
575
+ --tw-text-opacity: 1;
576
+ color: rgb(54 62 79 / var(--tw-text-opacity, 1))
577
+ }
578
+ .tw-text-color-text-weak {
579
+ --tw-text-opacity: 1;
580
+ color: rgb(107 114 128 / var(--tw-text-opacity, 1))
1279
581
  }
1280
- .Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn-default:hover {
1281
- box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.15);
1282
- border-style: none;
1283
- --tw-bg-opacity: 1;
1284
- background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
582
+ .tw-text-gray-300 {
583
+ --tw-text-opacity: 1;
584
+ color: rgb(209 213 219 / var(--tw-text-opacity, 1))
1285
585
  }
1286
- .Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn-default:active {
1287
- --tw-bg-opacity: 1;
1288
- background-color: rgb(241 243 245 / var(--tw-bg-opacity, 1));
586
+ .tw-text-gray-400 {
587
+ --tw-text-opacity: 1;
588
+ color: rgb(156 163 175 / var(--tw-text-opacity, 1))
1289
589
  }
1290
- .Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn:focus-visible {
1291
- outline: 2px solid rgba(236, 93, 37, 0.2);
590
+ .tw-text-gray-500 {
591
+ --tw-text-opacity: 1;
592
+ color: rgb(107 114 128 / var(--tw-text-opacity, 1))
1292
593
  }
1293
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9 {
1294
- background-color: transparent;
1295
- padding: 0px;
1296
- border-width: 0px;
1297
- border-style: none;
1298
- height: auto;
1299
- box-shadow: none;
594
+ .tw-text-gray-700 {
595
+ --tw-text-opacity: 1;
596
+ color: rgb(55 65 81 / var(--tw-text-opacity, 1))
1300
597
  }
1301
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover.Button-module__onHoverUnderline___LOfXo {
1302
- text-decoration: underline;
598
+ .tw-text-gray-900 {
599
+ --tw-text-opacity: 1;
600
+ color: rgb(17 24 39 / var(--tw-text-opacity, 1))
1303
601
  }
1304
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover {
1305
- box-shadow: none;
1306
- border-style: none;
1307
- background-color: transparent;
602
+ .tw-text-white {
603
+ --tw-text-opacity: 1;
604
+ color: rgb(255 255 255 / var(--tw-text-opacity, 1))
1308
605
  }
1309
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:active {
1310
- background-color: transparent;
606
+ .tw-opacity-0 {
607
+ opacity: 0
1311
608
  }
1312
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn:focus-visible {
1313
- outline: none;
609
+ .tw-opacity-40 {
610
+ opacity: 0.4
1314
611
  }
1315
-
1316
- /* src/atom/Modal/Modal.module.scss */
1317
- .Modal-module__modal___PKrAi.Modal-module__footerMargintopDisable___4B6u- .Modal-module__ant-modal-footer___HKsDR {
1318
- margin-top: 0;
1319
- margin-top: 0px;
612
+ .tw-shadow-lg {
613
+ --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
614
+ --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
615
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
1320
616
  }
1321
- .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter {
1322
- padding: 24px;
1323
- padding: 1.5rem;
1324
- display: flex;
1325
- justify-content: flex-end;
617
+ .tw-outline-none {
618
+ outline: 2px solid transparent;
619
+ outline-offset: 2px
1326
620
  }
1327
- .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__okBtn___Ut8e5,
1328
- .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__cancelBtn___i0Rm8 {
1329
- min-width: 92px;
621
+ .tw-transition-all {
622
+ transition-property: all;
623
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
624
+ transition-duration: 150ms
1330
625
  }
1331
- .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter {
1332
- padding: 24px;
1333
- padding: 1.5rem;
1334
- padding-top: 0px;
1335
- display: flex;
1336
- justify-content: flex-end;
626
+ .tw-transition-opacity {
627
+ transition-property: opacity;
628
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
629
+ transition-duration: 150ms
1337
630
  }
1338
- .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__okBtn___Ut8e5,
1339
- .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__cancelBtn___i0Rm8 {
1340
- width: 50%;
631
+ .tw-duration-150 {
632
+ transition-duration: 150ms
1341
633
  }
1342
- .Modal-module__modal___PKrAi .ant-modal-content {
1343
- padding: 0;
1344
- border-radius: 0.75rem;
1345
- padding: 0px;
634
+ .tw-duration-200 {
635
+ transition-duration: 200ms
1346
636
  }
1347
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
1348
- margin-bottom: 0px;
1349
- padding: 1rem;
637
+ .tw-ease-out {
638
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1)
1350
639
  }
1351
- @media (min-width: 576px) {
1352
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
1353
- padding: 1.5rem;
1354
- }
640
+ .tw-typography-body1 {
641
+ font-weight: 400;
642
+ font-size: 1.063rem;
643
+ line-height: 24px
644
+ }
645
+ .tw-typography-body2 {
646
+ font-weight: 400;
647
+ font-size: 0.875rem;
648
+ line-height: 20px
1355
649
  }
1356
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header .ant-modal-title {
1357
- justify-content: flex-start;
1358
- padding-right: 1.25rem;
1359
- font-size: 1.25rem;
1360
- font-weight: 500;
1361
- line-height: 1.75rem;
1362
- --tw-text-opacity: 1;
1363
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
650
+ .tw-typography-body2Bold {
651
+ font-weight: 600;
652
+ font-size: 0.875rem;
653
+ line-height: 20px
654
+ }
655
+ .tw-typography-bodyLarge {
656
+ font-weight: 400;
657
+ font-size: 1rem;
658
+ line-height: 24px
659
+ }
660
+ .tw-typography-caption1 {
661
+ font-weight: 400;
662
+ font-size: 0.75rem;
663
+ line-height: 16px
664
+ }
665
+ .tw-typography-caption1Bold {
666
+ font-weight: 500;
667
+ font-size: 0.75rem;
668
+ line-height: 16px
1364
669
  }
1365
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
1366
- display: flex;
1367
- align-items: flex-end;
1368
- justify-content: center;
670
+ .tw-typography-caption2 {
671
+ font-weight: 400;
672
+ font-size: 0.688rem;
673
+ line-height: 14px
674
+ }
675
+ .tw-typography-caption3 {
676
+ font-weight: 400;
677
+ font-size: 0.75rem;
678
+ line-height: 12px
679
+ }
680
+ .tw-typography-caption2Bold {
681
+ font-weight: 500;
682
+ font-size: 0.688rem;
683
+ line-height: 14px
684
+ }
685
+ .tw-typography-footNoteBold {
686
+ font-weight: 600;
687
+ font-size: 0.813rem;
688
+ line-height: 18px
1369
689
  }
1370
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close .ant-modal-close-x {
1371
- display: flex;
1372
- align-items: center;
1373
- justify-content: center;
690
+ .hover\:tw-border-2:hover {
691
+ border-width: 2px
692
+ }
693
+ .hover\:tw-border-solid:hover {
694
+ border-style: solid
695
+ }
696
+ .hover\:tw-border-\[\#C5B7AC\]:hover {
697
+ --tw-border-opacity: 1;
698
+ border-color: rgb(197 183 172 / var(--tw-border-opacity, 1))
699
+ }
700
+ .hover\:tw-border-black:hover {
701
+ --tw-border-opacity: 1;
702
+ border-color: rgb(0 0 0 / var(--tw-border-opacity, 1))
703
+ }
704
+ .hover\:tw-bg-\[\#1118270a\]:hover {
705
+ background-color: #1118270a
706
+ }
707
+ .hover\:tw-bg-gray-100:hover {
708
+ --tw-bg-opacity: 1;
709
+ background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
1374
710
  }
1375
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-body {
1376
- padding: 0 1.5rem 1.5rem;
1377
- max-height: 80vh;
1378
- overflow: auto;
711
+ .focus\:tw-shadow-sm:focus {
712
+ --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
713
+ --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
714
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
1379
715
  }
1380
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
1381
- top: 1.5rem;
1382
- right: 1.5rem;
1383
- padding-bottom: 0.25rem;
716
+ .focus\:tw-ring-offset-1:focus {
717
+ --tw-ring-offset-width: 1px
1384
718
  }
1385
- .Modal-module__modal___PKrAi .ant-btn-primary {
1386
- margin-inline-start: 0.5rem;
719
+ .tw-group:hover .group-hover\:tw-opacity-100 {
720
+ opacity: 1
721
+ }
722
+ @media (min-width: 576px) {
723
+ .sm\:tw-top-0 {
724
+ top: 0px
725
+ }
726
+ .sm\:tw-top-4 {
727
+ top: 1rem
728
+ }
729
+ .sm\:tw-mt-0 {
730
+ margin-top: 0px
731
+ }
732
+ .sm\:tw-w-10 {
733
+ width: 2.5rem
734
+ }
735
+ .sm\:tw-w-\[330px\] {
736
+ width: 330px
737
+ }
738
+ .sm\:tw-w-\[640px\] {
739
+ width: 640px
740
+ }
741
+ .sm\:tw-flex-row {
742
+ flex-direction: row
743
+ }
744
+ .sm\:tw-space-x-8 > :not([hidden]) ~ :not([hidden]) {
745
+ --tw-space-x-reverse: 0;
746
+ margin-right: calc(2rem * var(--tw-space-x-reverse));
747
+ margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)))
748
+ }
749
+ .sm\:tw-p-6 {
750
+ padding: 1.5rem
751
+ }
752
+ .sm\:tw-pr-0 {
753
+ padding-right: 0px
754
+ }
1387
755
  }
1388
-
1389
- /* CSS Modules */
1390
756
 
1391
757
 
1392
758
  /* CSS Modules */
1393
- /* src/atom/Tooltip/Tooltip.module.scss */
1394
- .Tooltip-module__light___H5oCc .ant-tooltip-content .ant-tooltip-inner {
1395
- background-color: white !important;
1396
- color: #111827;
1397
- border-radius: 0.5rem;
1398
- padding: 0.625rem;
1399
- --tw-text-opacity: 1;
1400
- color: rgb(33 40 55 / var(--tw-text-opacity, 1));
1401
- }
1402
- .Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
1403
- background-color: white !important;
1404
- }
1405
-
1406
759
  /* src/atom/Checkbox/Checkbox.module.scss */
1407
760
  .Checkbox-module__checkbox___xxg5L {
1408
761
  display: flex;
@@ -1566,6 +919,10 @@
1566
919
  --tw-text-opacity: 1;
1567
920
  color: rgb(236 93 37 / var(--tw-text-opacity, 1));
1568
921
  }
922
+ .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__disabled___nwPn4 {
923
+ --tw-text-opacity: 1;
924
+ color: rgb(255 255 255 / var(--tw-text-opacity, 1));
925
+ }
1569
926
  .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA {
1570
927
  border-width: 1px;
1571
928
  border-style: solid;
@@ -1665,30 +1022,245 @@
1665
1022
  --tw-bg-opacity: 1;
1666
1023
  background-color: rgb(241 243 245 / var(--tw-bg-opacity, 1));
1667
1024
  }
1668
- .Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn:focus-visible {
1669
- outline: 2px solid rgba(236, 93, 37, 0.2);
1025
+ .Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn:focus-visible {
1026
+ outline: 2px solid rgba(236, 93, 37, 0.2);
1027
+ }
1028
+ .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9 {
1029
+ background-color: transparent;
1030
+ padding: 0px;
1031
+ border-width: 0px;
1032
+ border-style: none;
1033
+ height: auto;
1034
+ box-shadow: none;
1035
+ }
1036
+ .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover.Button-module__onHoverUnderline___LOfXo {
1037
+ text-decoration: underline;
1038
+ }
1039
+ .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover {
1040
+ box-shadow: none;
1041
+ border-style: none;
1042
+ background-color: transparent;
1043
+ }
1044
+ .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:active {
1045
+ background-color: transparent;
1046
+ }
1047
+ .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn:focus-visible {
1048
+ outline: none;
1049
+ }
1050
+
1051
+ /* src/atom/Tooltip/Tooltip.module.scss */
1052
+ .Tooltip-module__light___H5oCc .ant-tooltip-content .ant-tooltip-inner {
1053
+ background-color: white !important;
1054
+ color: #111827;
1055
+ border-radius: 0.5rem;
1056
+ padding: 0.625rem;
1057
+ --tw-text-opacity: 1;
1058
+ color: rgb(33 40 55 / var(--tw-text-opacity, 1));
1059
+ }
1060
+ .Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
1061
+ background-color: white !important;
1062
+ }
1063
+
1064
+ /* src/atom/Modal/Modal.module.scss */
1065
+ .Modal-module__modal___PKrAi.Modal-module__footerMargintopDisable___4B6u- .Modal-module__ant-modal-footer___HKsDR {
1066
+ margin-top: 0;
1067
+ margin-top: 0px;
1068
+ }
1069
+ .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter {
1070
+ padding: 24px;
1071
+ padding: 1.5rem;
1072
+ display: flex;
1073
+ justify-content: flex-end;
1074
+ }
1075
+ .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__okBtn___Ut8e5,
1076
+ .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__cancelBtn___i0Rm8 {
1077
+ min-width: 92px;
1078
+ }
1079
+ .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter {
1080
+ padding: 24px;
1081
+ padding: 1.5rem;
1082
+ padding-top: 0px;
1083
+ display: flex;
1084
+ justify-content: flex-end;
1085
+ }
1086
+ .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__okBtn___Ut8e5,
1087
+ .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__cancelBtn___i0Rm8 {
1088
+ width: 50%;
1089
+ }
1090
+ .Modal-module__modal___PKrAi .ant-modal-content {
1091
+ padding: 0;
1092
+ border-radius: 0.75rem;
1093
+ padding: 0px;
1094
+ }
1095
+ .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
1096
+ margin-bottom: 0px;
1097
+ padding: 1rem;
1098
+ }
1099
+ @media (min-width: 576px) {
1100
+ .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
1101
+ padding: 1.5rem;
1102
+ }
1103
+ }
1104
+ .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header .ant-modal-title {
1105
+ justify-content: flex-start;
1106
+ padding-right: 1.25rem;
1107
+ font-size: 1.25rem;
1108
+ font-weight: 500;
1109
+ line-height: 1.75rem;
1110
+ --tw-text-opacity: 1;
1111
+ color: rgb(17 24 39 / var(--tw-text-opacity, 1));
1112
+ }
1113
+ .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
1114
+ display: flex;
1115
+ align-items: flex-end;
1116
+ justify-content: center;
1117
+ }
1118
+ .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close .ant-modal-close-x {
1119
+ display: flex;
1120
+ align-items: center;
1121
+ justify-content: center;
1122
+ }
1123
+ .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-body {
1124
+ padding: 0 1.5rem 1.5rem;
1125
+ max-height: 65vh;
1126
+ overflow: auto;
1127
+ }
1128
+ .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
1129
+ top: 1.5rem;
1130
+ right: 1.5rem;
1131
+ padding-bottom: 0.25rem;
1132
+ }
1133
+ .Modal-module__modal___PKrAi .ant-btn-primary {
1134
+ margin-inline-start: 0.5rem;
1135
+ }
1136
+
1137
+ /* src/molecules/UserProfile/UserProfile.module.scss */
1138
+ .UserProfile-module__userProfile___cRMm9 {
1139
+ display: flex;
1140
+ align-items: center;
1141
+ gap: 0.625rem
1142
+ }
1143
+ .UserProfile-module__userProfile___cRMm9 .UserProfile-module__profileContent___tfy8E {
1144
+ display: flex;
1145
+ flex-direction: column
1146
+ }
1147
+ .UserProfile-module__userProfile___cRMm9 .UserProfile-module__profileContent___tfy8E .UserProfile-module__profileHeader___5qYbt {
1148
+ display: flex;
1149
+ align-items: center;
1150
+ gap: 0.5rem
1151
+ }
1152
+ .UserProfile-module__userProfile___cRMm9 .UserProfile-module__profileContent___tfy8E .UserProfile-module__profileHeader___5qYbt .UserProfile-module__profileName___x8pg- {
1153
+ margin: 0px
1154
+ }
1155
+ .UserProfile-module__userProfile___cRMm9 .UserProfile-module__profileContent___tfy8E .UserProfile-module__profileEmail___ZWKDd {
1156
+ margin: 0px;
1157
+ margin-top: 0.125rem
1158
+ }
1159
+
1160
+ /* src/atom/Tag/Tag.module.scss */
1161
+ .Tag-module__tag___PIkhI {
1162
+ border-radius: 0.25rem;
1163
+ padding: 0.25rem;
1164
+ font-weight: 500;
1165
+ font-size: 12px;
1166
+ line-height: .75rem;
1167
+ --tw-bg-opacity: 1;
1168
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
1169
+ height: -moz-max-content;
1170
+ height: max-content;
1171
+ --tw-text-opacity: 1;
1172
+ color: rgb(17 24 39 / var(--tw-text-opacity, 1));
1173
+ border-width: 0px
1174
+ }
1175
+ .Tag-module__tag___PIkhI.Tag-module__small___nG5XQ {
1176
+ padding-top: 2px;
1177
+ padding-bottom: 2px;
1178
+ padding-left: 0.25rem;
1179
+ padding-right: 0.25rem;
1180
+ font-size: 0.625rem;
1181
+ line-height: .75rem
1182
+ }
1183
+ .Tag-module__tag___PIkhI.Tag-module__success___99fad {
1184
+ --tw-bg-opacity: 1;
1185
+ background-color: rgb(217 251 229 / var(--tw-bg-opacity, 1))
1186
+ }
1187
+ .Tag-module__tag___PIkhI.Tag-module__blue___Zky2Z {
1188
+ --tw-bg-opacity: 1;
1189
+ background-color: rgb(235 248 255 / var(--tw-bg-opacity, 1))
1190
+ }
1191
+ .Tag-module__tag___PIkhI.Tag-module__warning___KXsly {
1192
+ --tw-bg-opacity: 1;
1193
+ background-color: rgb(255 241 225 / var(--tw-bg-opacity, 1))
1194
+ }
1195
+ .Tag-module__tag___PIkhI.Tag-module__processing___OssXC {
1196
+ --tw-bg-opacity: 1;
1197
+ background-color: rgb(241 243 245 / var(--tw-bg-opacity, 1))
1198
+ }
1199
+ .Tag-module__tag___PIkhI.Tag-module__bookingConfirmed___potR4 {
1200
+ --tw-bg-opacity: 1;
1201
+ background-color: rgb(217 251 229 / var(--tw-bg-opacity, 1))
1202
+ }
1203
+ .Tag-module__tag___PIkhI.Tag-module__bookingRescheduled___ynrwI {
1204
+ --tw-bg-opacity: 1;
1205
+ background-color: rgb(235 248 255 / var(--tw-bg-opacity, 1))
1206
+ }
1207
+ .Tag-module__tag___PIkhI.Tag-module__bookingRescheduledPending___K3GqS {
1208
+ --tw-bg-opacity: 1;
1209
+ background-color: rgb(255 251 224 / var(--tw-bg-opacity, 1))
1210
+ }
1211
+ .Tag-module__tag___PIkhI.Tag-module__failed___dvpyQ {
1212
+ --tw-bg-opacity: 1;
1213
+ background-color: rgb(255 241 240 / var(--tw-bg-opacity, 1))
1214
+ }
1215
+ .Tag-module__tag___PIkhI.Tag-module__bookingPending___64umX {
1216
+ --tw-bg-opacity: 1;
1217
+ background-color: rgb(241 243 245 / var(--tw-bg-opacity, 1))
1218
+ }
1219
+
1220
+ /* src/atom/LoadingSpinner/LoadingSpinner.module.scss */
1221
+ .LoadingSpinner-module__spinnerContainer___DiPLf {
1222
+ display: flex;
1223
+ justify-content: center;
1224
+ align-items: center;
1225
+ height: 100%;
1226
+ margin-top: 2rem;
1227
+ margin-bottom: 2rem;
1228
+ }
1229
+
1230
+ /* src/atom/Slider/Slider.module.scss */
1231
+ .Slider-module__label___9Uea- {
1232
+ font-size: 13px;
1233
+ line-height: 18px;
1234
+ --tw-text-opacity: 1;
1235
+ color: rgb(54 62 79 / var(--tw-text-opacity, 1));
1236
+ }
1237
+
1238
+ .Slider-module__slider___JCS-c.ant-slider {
1239
+ margin-left: 0px;
1240
+ margin-right: 0px;
1241
+ }
1242
+ .Slider-module__slider___JCS-c.ant-slider .ant-slider-handle::after {
1243
+ box-shadow: 0 0 0 2px #ec5d25;
1244
+ transform: scale(1.25);
1670
1245
  }
1671
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9 {
1672
- background-color: transparent;
1673
- padding: 0px;
1674
- border-width: 0px;
1675
- border-style: none;
1676
- height: auto;
1677
- box-shadow: none;
1246
+ .Slider-module__slider___JCS-c.ant-slider .ant-slider-handle::before {
1247
+ content: unset;
1678
1248
  }
1679
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover.Button-module__onHoverUnderline___LOfXo {
1680
- text-decoration: underline;
1249
+ .Slider-module__slider___JCS-c.ant-slider .ant-slider-handle:hover::after, .Slider-module__slider___JCS-c.ant-slider .ant-slider-handle:active::after {
1250
+ inset-inline-start: -1px;
1251
+ inset-block-start: -1px;
1681
1252
  }
1682
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover {
1683
- box-shadow: none;
1684
- border-style: none;
1685
- background-color: transparent;
1253
+ .Slider-module__slider___JCS-c.ant-slider .ant-slider-track {
1254
+ --tw-bg-opacity: 1;
1255
+ background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
1256
+ height: 2px;
1686
1257
  }
1687
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:active {
1258
+ .Slider-module__slider___JCS-c.Slider-module__disableFill___rjbsy.ant-slider .ant-slider-track {
1688
1259
  background-color: transparent;
1689
1260
  }
1690
- .Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn:focus-visible {
1691
- outline: none;
1261
+ .Slider-module__slider___JCS-c.Slider-module__disableFill___rjbsy .ant-slider-rail {
1262
+ --tw-bg-opacity: 1;
1263
+ background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
1692
1264
  }
1693
1265
 
1694
1266
  /* src/atom/Switch/Switch.module.scss */
@@ -1709,6 +1281,491 @@
1709
1281
  background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
1710
1282
  }
1711
1283
 
1284
+ /* src/atom/Table/Table.module.scss */
1285
+ @charset "UTF-8";
1286
+ /* ============================================================
1287
+ Outer wrapper — the rounded gray card that contains the table
1288
+ ============================================================ */
1289
+ .Table-module__tableWrapper___3cqiD{
1290
+ border-radius: 0.75rem;
1291
+ border-width: 1px;
1292
+ border-style: solid;
1293
+ --tw-border-opacity: 1;
1294
+ border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
1295
+ --tw-bg-opacity: 1;
1296
+ background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
1297
+ overflow: hidden;
1298
+ }
1299
+ .Table-module__tableWrapper___3cqiD.Table-module__isAccordion___-uIs6, .Table-module__tableWrapper___3cqiD.Table-module__isToolbar___LdS-m {
1300
+ background: transparent !important;
1301
+ border: none !important;
1302
+ border-radius: 0;
1303
+ padding: 0;
1304
+ }
1305
+
1306
+ /* ============================================================
1307
+ AntD Table overrides
1308
+ ============================================================ */
1309
+ .Table-module__table___5d7g0.ant-table-wrapper {
1310
+ padding: 4px;
1311
+ background: #F1F3F5;
1312
+ }
1313
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table{
1314
+ background-color: transparent;
1315
+ font-size: 0.875rem;
1316
+ line-height: 1.25rem;
1317
+ }
1318
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-container {
1319
+ /* Lift the white body card off the gray wrapper */
1320
+ filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.06));
1321
+ }
1322
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-thead > tr > th,
1323
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-thead > tr > td {
1324
+ background: transparent !important;
1325
+ --tw-text-opacity: 1 !important;
1326
+ color: rgb(107 114 128 / var(--tw-text-opacity, 1)) !important;
1327
+ font-weight: 500 !important;
1328
+ font-size: 0.688rem !important;
1329
+ line-height: 14px !important;
1330
+ padding-left: 1.5rem !important;
1331
+ padding-right: 1.5rem !important;
1332
+ padding-bottom: 1rem !important;
1333
+ padding-top: 0.75rem !important;
1334
+ border-bottom: none !important;
1335
+ }
1336
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-thead > tr > th::before,
1337
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-thead > tr > td::before {
1338
+ display: none !important;
1339
+ }
1340
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-thead > tr > th,
1341
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-thead > tr > td {
1342
+ /* Fixed columns need a solid background to prevent overlapping */
1343
+ }
1344
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-thead > tr > th.ant-table-cell-fix-left, .Table-module__table___5d7g0.ant-table-wrapper .ant-table-thead > tr > th.ant-table-cell-fix-right,
1345
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-thead > tr > td.ant-table-cell-fix-left,
1346
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-thead > tr > td.ant-table-cell-fix-right {
1347
+ background: #F1F3F5 !important;
1348
+ z-index: 2 !important;
1349
+ }
1350
+ .Table-module__table___5d7g0.ant-table-wrapper {
1351
+ /* ---- Force Fix Column Shadow Always Visible ---- */
1352
+ }
1353
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-cell-fix-left-last::after {
1354
+ position: absolute;
1355
+ top: 0;
1356
+ right: 0;
1357
+ bottom: -1px;
1358
+ width: 40px;
1359
+ transform: translateX(100%);
1360
+ transition: box-shadow 0.3s;
1361
+ content: "";
1362
+ pointer-events: none;
1363
+ /* Large, soft shadow extending right */
1364
+ box-shadow: inset 20px 0 20px -20px rgba(0, 0, 0, 0.15) !important;
1365
+ opacity: 1 !important;
1366
+ }
1367
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-cell-fix-right-first::after {
1368
+ position: absolute;
1369
+ top: 0;
1370
+ bottom: -1px;
1371
+ left: 0;
1372
+ width: 40px;
1373
+ transform: translateX(-100%);
1374
+ transition: box-shadow 0.3s;
1375
+ content: "";
1376
+ pointer-events: none;
1377
+ /* Large, soft shadow extending left */
1378
+ box-shadow: inset -20px 0 20px -20px rgba(0, 0, 0, 0.15) !important;
1379
+ opacity: 1 !important;
1380
+ }
1381
+ .Table-module__table___5d7g0.ant-table-wrapper {
1382
+ /* ---- Body cells ---- */
1383
+ }
1384
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-tbody > tr > td{
1385
+ padding-left: 1.5rem;
1386
+ padding-right: 1.5rem;
1387
+ padding-top: 1rem;
1388
+ padding-bottom: 1rem;
1389
+ --tw-bg-opacity: 1 !important;
1390
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
1391
+ --tw-text-opacity: 1 !important;
1392
+ color: rgb(17 24 39 / var(--tw-text-opacity, 1)) !important;
1393
+ font-weight: 400 !important;
1394
+ font-size: 0.75rem !important;
1395
+ line-height: 16px !important;
1396
+ border-bottom: none !important;
1397
+ }
1398
+ .Table-module__table___5d7g0.ant-table-wrapper {
1399
+ /* Round the four corners of the white body card */
1400
+ }
1401
+ .Table-module__table___5d7g0.ant-table-wrapper .Table-module__firstRow___Xq-Hi > td:first-child {
1402
+ border-top-left-radius: 12px !important;
1403
+ }
1404
+ .Table-module__table___5d7g0.ant-table-wrapper .Table-module__firstRow___Xq-Hi > td:last-child {
1405
+ border-top-right-radius: 12px !important;
1406
+ }
1407
+ .Table-module__table___5d7g0.ant-table-wrapper .Table-module__lastRow___ahv4g > td:first-child {
1408
+ border-bottom-left-radius: 12px !important;
1409
+ }
1410
+ .Table-module__table___5d7g0.ant-table-wrapper .Table-module__lastRow___ahv4g > td:last-child {
1411
+ border-bottom-right-radius: 12px !important;
1412
+ }
1413
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-tbody > tr:first-child > td:first-child {
1414
+ border-top-left-radius: 12px;
1415
+ }
1416
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-tbody > tr:first-child > td:last-child {
1417
+ border-top-right-radius: 12px;
1418
+ }
1419
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-tbody > tr:last-child > td:first-child {
1420
+ border-bottom-left-radius: 12px;
1421
+ }
1422
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-tbody > tr:last-child > td:last-child {
1423
+ border-bottom-right-radius: 12px;
1424
+ }
1425
+ .Table-module__table___5d7g0.ant-table-wrapper {
1426
+ /* ---- Loading & Empty State ---- */
1427
+ }
1428
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-spin-nested-loading .ant-spin .ant-spin-dot-item {
1429
+ background-color: #9ca3af !important;
1430
+ }
1431
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-placeholder .ant-table-cell {
1432
+ background: #F1F3F5 !important;
1433
+ border-bottom: none !important;
1434
+ padding: 48px 24px !important;
1435
+ text-align: center !important;
1436
+ min-height: 300px;
1437
+ }
1438
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-placeholder .ant-table-cell.ant-table-cell-fix-left, .Table-module__table___5d7g0.ant-table-wrapper .ant-table-placeholder .ant-table-cell.ant-table-cell-fix-right {
1439
+ background: #F1F3F5 !important;
1440
+ }
1441
+ .Table-module__table___5d7g0.ant-table-wrapper {
1442
+ /* ---- Hover effect (controlled separately via .showHoverEffect) ---- */
1443
+ }
1444
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-table-tbody > tr:hover > td{
1445
+ --tw-bg-opacity: 1;
1446
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
1447
+ /* default: no visual hover change */
1448
+ }
1449
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination {
1450
+ display: flex;
1451
+ align-items: center;
1452
+ justify-content: space-between;
1453
+ flex-wrap: wrap;
1454
+ gap: 8px;
1455
+ padding-left: 1.5rem;
1456
+ padding-right: 1.5rem;
1457
+ padding-top: 1rem;
1458
+ padding-bottom: 1rem;
1459
+ background: #ffffff;
1460
+ border-radius: 12px;
1461
+ margin: 8px 4px 4px 4px !important;
1462
+ filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.06));
1463
+ /* AntD re-orders items; we use order to match design layout */
1464
+ }
1465
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-options {
1466
+ order: -1;
1467
+ /* "Rows per page" on the far left */
1468
+ margin-inline-end: auto;
1469
+ display: flex;
1470
+ align-items: center;
1471
+ gap: 8px;
1472
+ /* Inject the "Rows per page:" label text via ::before */
1473
+ }
1474
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-options::before {
1475
+ content: "Rows per page:";
1476
+ font-size: 13px;
1477
+ color: #6b7280;
1478
+ white-space: nowrap;
1479
+ }
1480
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selector {
1481
+ border-radius: 6px !important;
1482
+ border-color: #d1d5db !important;
1483
+ font-size: 13px;
1484
+ color: #374151;
1485
+ min-width: 64px;
1486
+ }
1487
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-focused .ant-select-selector {
1488
+ border-color: #ec5d25 !important;
1489
+ box-shadow: 0 0 0 2px rgba(236, 93, 37, 0.15) !important;
1490
+ }
1491
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination {
1492
+ /* Total text: "1–10 of 108 items" — centred */
1493
+ }
1494
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-total-text {
1495
+ order: 0;
1496
+ font-size: 13px;
1497
+ color: #6b7280;
1498
+ flex: 1;
1499
+ text-align: center;
1500
+ }
1501
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination {
1502
+ /* Page buttons group — far right */
1503
+ }
1504
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-prev,
1505
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-next,
1506
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-item,
1507
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-prev,
1508
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-next {
1509
+ order: 1;
1510
+ min-width: 32px;
1511
+ height: 32px;
1512
+ border-radius: 6px;
1513
+ border: 1px solid #e5e7eb;
1514
+ background: #fff;
1515
+ font-size: 13px;
1516
+ display: inline-flex;
1517
+ align-items: center;
1518
+ justify-content: center;
1519
+ margin: 0;
1520
+ transition: background 0.15s, border-color 0.15s, color 0.15s;
1521
+ }
1522
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-prev a,
1523
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-prev button,
1524
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-next a,
1525
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-next button,
1526
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-item a,
1527
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-item button,
1528
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-prev a,
1529
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-prev button,
1530
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-next a,
1531
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-next button {
1532
+ color: #374151;
1533
+ font-size: 13px;
1534
+ display: flex;
1535
+ align-items: center;
1536
+ justify-content: center;
1537
+ }
1538
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-prev:hover:not(.ant-pagination-disabled),
1539
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-next:hover:not(.ant-pagination-disabled),
1540
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-item:hover:not(.ant-pagination-disabled),
1541
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-prev:hover:not(.ant-pagination-disabled),
1542
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-next:hover:not(.ant-pagination-disabled) {
1543
+ border-color: #d1d5db;
1544
+ background: #f3f4f6;
1545
+ }
1546
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-prev:hover:not(.ant-pagination-disabled) a,
1547
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-next:hover:not(.ant-pagination-disabled) a,
1548
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-item:hover:not(.ant-pagination-disabled) a,
1549
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-prev:hover:not(.ant-pagination-disabled) a,
1550
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-next:hover:not(.ant-pagination-disabled) a {
1551
+ color: #374151;
1552
+ }
1553
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination {
1554
+ /* Active page button */
1555
+ }
1556
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-item-active {
1557
+ border-color: #6B7280 !important;
1558
+ background: #fff;
1559
+ }
1560
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-item-active a {
1561
+ color: #374151 !important;
1562
+ font-weight: 600;
1563
+ }
1564
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination {
1565
+ /* Ellipsis dots hover state */
1566
+ }
1567
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-prev .ant-pagination-item-ellipsis,
1568
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-next .ant-pagination-item-ellipsis {
1569
+ color: #9ca3af !important;
1570
+ /* default grey dots */
1571
+ }
1572
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-prev:hover .ant-pagination-item-link-icon, .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis,
1573
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-next:hover .ant-pagination-item-link-icon,
1574
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-jump-next:hover .ant-pagination-item-ellipsis {
1575
+ color: #000000 !important;
1576
+ }
1577
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination {
1578
+ /* Disabled prev/next */
1579
+ }
1580
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-disabled {
1581
+ opacity: 0.4;
1582
+ cursor: not-allowed;
1583
+ }
1584
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination {
1585
+ /* Responsive behavior */
1586
+ }
1587
+ @media (max-width: 640px) {
1588
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination {
1589
+ justify-content: center;
1590
+ gap: 12px;
1591
+ }
1592
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-options {
1593
+ width: 100%;
1594
+ justify-content: center;
1595
+ margin-inline-end: 0;
1596
+ order: 0;
1597
+ }
1598
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-pagination .ant-pagination-total-text {
1599
+ width: 100%;
1600
+ order: -1;
1601
+ }
1602
+ }
1603
+ .Table-module__table___5d7g0.ant-table-wrapper {
1604
+ /* ---- Checkbox customisation ---- */
1605
+ }
1606
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-checkbox-checked .ant-checkbox-inner {
1607
+ background-color: #ec5d25 !important;
1608
+ border-color: #ec5d25 !important;
1609
+ }
1610
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-checkbox-checked .ant-checkbox-inner::after {
1611
+ inset-inline-start: 25% !important;
1612
+ }
1613
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-checkbox-indeterminate .ant-checkbox-inner {
1614
+ border-color: #ec5d25 !important;
1615
+ }
1616
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-checkbox-indeterminate .ant-checkbox-inner::after {
1617
+ background-color: #ec5d25 !important;
1618
+ }
1619
+ .Table-module__table___5d7g0.ant-table-wrapper {
1620
+ /* Hover state border to orange */
1621
+ }
1622
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-checkbox-wrapper:hover .ant-checkbox:not(.ant-checkbox-disabled) .ant-checkbox-inner,
1623
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-checkbox:not(.ant-checkbox-disabled):hover .ant-checkbox-inner,
1624
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-checkbox-wrapper:hover .ant-checkbox-checked:not(.ant-checkbox-disabled) .ant-checkbox-inner,
1625
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-checkbox-checked:not(.ant-checkbox-disabled):hover .ant-checkbox-inner,
1626
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-checkbox-wrapper:hover .ant-checkbox-indeterminate:not(.ant-checkbox-disabled) .ant-checkbox-inner,
1627
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-checkbox-indeterminate:not(.ant-checkbox-disabled):hover .ant-checkbox-inner {
1628
+ border-color: #ec5d25 !important;
1629
+ }
1630
+ .Table-module__table___5d7g0.ant-table-wrapper {
1631
+ /* Active ripple effect/focus ring to orange */
1632
+ }
1633
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-checkbox-checked::after {
1634
+ border-color: #ec5d25 !important;
1635
+ }
1636
+ .Table-module__table___5d7g0.ant-table-wrapper .ant-checkbox-input:focus + .ant-checkbox-inner {
1637
+ border-color: #ec5d25 !important;
1638
+ }
1639
+
1640
+ /* Global un-nested scope for Portals (Pagination Select Dropdown) */
1641
+ .ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
1642
+ background-color: #FFF1E1 !important;
1643
+ color: #374151 !important;
1644
+ }
1645
+
1646
+ /* ============================================================
1647
+ Variant modifiers
1648
+ ============================================================ */
1649
+ /* hover variant — rows tint on mouse-over */
1650
+ .Table-module__showHoverEffect___IyKyO .Table-module__table___5d7g0.ant-table-wrapper .ant-table-tbody > tr:hover > td{
1651
+ --tw-bg-opacity: 1 !important;
1652
+ background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1)) !important;
1653
+ }
1654
+
1655
+ .Table-module__columnHeader___Unr6d {
1656
+ display: flex;
1657
+ align-items: center;
1658
+ justify-content: space-between;
1659
+ width: 100%;
1660
+ gap: 8px;
1661
+ }
1662
+
1663
+ .Table-module__columnHeaderLeft___mp7pK {
1664
+ display: flex;
1665
+ align-items: center;
1666
+ gap: 4px;
1667
+ min-width: 0;
1668
+ flex: 1;
1669
+ }
1670
+
1671
+ /* Clickable sort area (label + sort arrow) */
1672
+ .Table-module__columnHeaderSortArea___jrIYo {
1673
+ display: inline-flex;
1674
+ align-items: center;
1675
+ gap: 6px;
1676
+ background: none;
1677
+ border: none;
1678
+ padding: 0;
1679
+ cursor: pointer;
1680
+ min-width: 0;
1681
+ }
1682
+ .Table-module__columnHeaderSortArea___jrIYo:focus-visible {
1683
+ outline: 2px solid #ec5d25;
1684
+ outline-offset: 2px;
1685
+ border-radius: 3px;
1686
+ }
1687
+
1688
+ .Table-module__columnHeaderLabel___A-mRu {
1689
+ white-space: nowrap;
1690
+ overflow: hidden;
1691
+ text-overflow: ellipsis;
1692
+ line-height: normal;
1693
+ text-transform: none !important;
1694
+ }
1695
+
1696
+ .Table-module__columnHeaderSortIcon___mWVZN {
1697
+ display: inline-flex;
1698
+ align-items: center;
1699
+ flex-shrink: 0;
1700
+ color: #d1d5db;
1701
+ /* muted when unsorted */
1702
+ line-height: 0;
1703
+ }
1704
+ .Table-module__columnHeaderSortIcon___mWVZN.Table-module__columnHeaderSortIconActive___wHAqC {
1705
+ color: #374151;
1706
+ /* prominent when sort is applied */
1707
+ }
1708
+
1709
+ /* Filter icon button */
1710
+ .Table-module__columnHeaderFilterWrapper___DnSve {
1711
+ position: relative;
1712
+ flex-shrink: 0;
1713
+ }
1714
+
1715
+ .Table-module__columnHeaderFilterBtn___NR7DY {
1716
+ display: inline-flex;
1717
+ align-items: center;
1718
+ gap: 3px;
1719
+ background: none;
1720
+ border: none;
1721
+ padding: 2px 3px;
1722
+ cursor: pointer;
1723
+ color: #9ca3af;
1724
+ line-height: 0;
1725
+ border-radius: 4px;
1726
+ transition: color 0.15s, background 0.15s;
1727
+ }
1728
+ .Table-module__columnHeaderFilterBtn___NR7DY:hover {
1729
+ color: #6b7280;
1730
+ background: #f3f4f6;
1731
+ }
1732
+ .Table-module__columnHeaderFilterBtn___NR7DY:focus-visible {
1733
+ outline: 2px solid #ec5d25;
1734
+ outline-offset: 1px;
1735
+ }
1736
+ .Table-module__columnHeaderFilterBtn___NR7DY.Table-module__columnHeaderFilterBtnActive___JdO11 {
1737
+ color: #ec5d25;
1738
+ /* brand red when filter is applied */
1739
+ }
1740
+
1741
+ .Table-module__columnHeaderFilterBadge___-Q2T2 {
1742
+ display: inline-flex;
1743
+ align-items: center;
1744
+ justify-content: center;
1745
+ min-width: 15px;
1746
+ height: 15px;
1747
+ padding: 0 4px;
1748
+ background: #ec5d25;
1749
+ color: #fff;
1750
+ font-size: 10px;
1751
+ font-weight: 600;
1752
+ border-radius: 8px;
1753
+ line-height: 1;
1754
+ }
1755
+
1756
+ /* Dropdown that renders children from the consumer */
1757
+ .Table-module__columnHeaderFilterDropdown___M-fD4 {
1758
+ position: absolute;
1759
+ top: calc(100% + 6px);
1760
+ right: 0;
1761
+ z-index: 100;
1762
+ background: #fff;
1763
+ border: 1px solid #e5e7eb;
1764
+ border-radius: 8px;
1765
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
1766
+ min-width: 180px;
1767
+ }
1768
+
1712
1769
  /* src/atom/Radio/Radio.module.scss */
1713
1770
  .Radio-module__radio___1CPAk {
1714
1771
  display: flex;
@@ -1777,77 +1834,372 @@
1777
1834
  line-height: 20px;
1778
1835
  }
1779
1836
 
1780
- /* src/atom/Modal/Modal.module.scss */
1781
- .Modal-module__modal___PKrAi.Modal-module__footerMargintopDisable___4B6u- .Modal-module__ant-modal-footer___HKsDR {
1782
- margin-top: 0;
1783
- margin-top: 0px;
1837
+ /* src/atom/AdvancedDateRangePicker/AdvancedDateRangePicker.module.scss */
1838
+ .AdvancedDateRangePicker-module__root___udir8 {
1839
+ display: flex;
1840
+ flex-direction: column;
1841
+ background: #ffffff;
1842
+ border: 1px solid #e5e7eb;
1843
+ border-radius: 16px;
1844
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
1845
+ overflow: hidden;
1846
+ width: -moz-fit-content;
1847
+ width: fit-content;
1848
+ min-width: 900px;
1849
+ font-family: "Inter", system-ui, -apple-system, sans-serif;
1850
+ }
1851
+ @media (max-width: 1024px) {
1852
+ .AdvancedDateRangePicker-module__root___udir8 {
1853
+ min-width: 100%;
1854
+ width: 100%;
1855
+ }
1784
1856
  }
1785
- .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter {
1786
- padding: 24px;
1787
- padding: 1.5rem;
1857
+
1858
+ .AdvancedDateRangePicker-module__inner___P4OHa {
1788
1859
  display: flex;
1789
- justify-content: flex-end;
1860
+ flex-direction: row;
1790
1861
  }
1791
- .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__okBtn___Ut8e5,
1792
- .Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__cancelBtn___i0Rm8 {
1793
- min-width: 92px;
1862
+ @media (max-width: 1024px) {
1863
+ .AdvancedDateRangePicker-module__inner___P4OHa {
1864
+ flex-direction: column;
1865
+ }
1794
1866
  }
1795
- .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter {
1796
- padding: 24px;
1797
- padding: 1.5rem;
1798
- padding-top: 0px;
1867
+
1868
+ /* ====================================================================
1869
+ Left (Presets Sidebar)
1870
+ ==================================================================== */
1871
+ .AdvancedDateRangePicker-module__left___T6E84 {
1872
+ width: 200px;
1873
+ flex-shrink: 0;
1874
+ border-right: 1px solid #f3f4f6;
1875
+ padding: 20px 0;
1799
1876
  display: flex;
1800
- justify-content: flex-end;
1877
+ flex-direction: column;
1878
+ background: #ffffff;
1879
+ }
1880
+ @media (max-width: 1024px) {
1881
+ .AdvancedDateRangePicker-module__left___T6E84 {
1882
+ width: 100%;
1883
+ border-right: none;
1884
+ border-bottom: 1px solid #f3f4f6;
1885
+ flex-direction: row;
1886
+ flex-wrap: nowrap;
1887
+ overflow-x: auto;
1888
+ padding: 12px;
1889
+ gap: 8px;
1890
+ scrollbar-width: none;
1891
+ }
1892
+ .AdvancedDateRangePicker-module__left___T6E84::-webkit-scrollbar {
1893
+ display: none;
1894
+ }
1801
1895
  }
1802
- .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__okBtn___Ut8e5,
1803
- .Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__cancelBtn___i0Rm8 {
1804
- width: 50%;
1896
+
1897
+ .AdvancedDateRangePicker-module__sidebarItem___-NXPm {
1898
+ display: block;
1899
+ width: calc(100% - 24px);
1900
+ margin: 2px 12px;
1901
+ text-align: left;
1902
+ background: none;
1903
+ border: none;
1904
+ cursor: pointer;
1905
+ padding: 10px 16px;
1906
+ font-size: 15px;
1907
+ font-weight: 500;
1908
+ color: #6b7280;
1909
+ border-radius: 8px;
1910
+ transition: all 0.2s;
1911
+ white-space: nowrap;
1805
1912
  }
1806
- .Modal-module__modal___PKrAi .ant-modal-content {
1807
- padding: 0;
1808
- border-radius: 0.75rem;
1809
- padding: 0px;
1913
+ .AdvancedDateRangePicker-module__sidebarItem___-NXPm:hover {
1914
+ background: #f9fafb;
1915
+ color: #111827;
1810
1916
  }
1811
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
1812
- margin-bottom: 0px;
1813
- padding: 1rem;
1917
+ @media (max-width: 1024px) {
1918
+ .AdvancedDateRangePicker-module__sidebarItem___-NXPm {
1919
+ width: auto;
1920
+ margin: 0;
1921
+ padding: 8px 16px;
1922
+ }
1814
1923
  }
1815
- @media (min-width: 576px) {
1816
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
1817
- padding: 1.5rem;
1924
+
1925
+ .AdvancedDateRangePicker-module__sidebarItemActive___5GmBY {
1926
+ background: #fff4ee !important;
1927
+ color: #ec5d25 !important;
1928
+ }
1929
+
1930
+ /* ====================================================================
1931
+ Main (Header + Body)
1932
+ ==================================================================== */
1933
+ .AdvancedDateRangePicker-module__main___G4MU9 {
1934
+ flex: 1;
1935
+ display: flex;
1936
+ flex-direction: column;
1937
+ min-width: 0;
1938
+ }
1939
+
1940
+ /* ====================================================================
1941
+ Header
1942
+ ==================================================================== */
1943
+ .AdvancedDateRangePicker-module__header___mxXEE {
1944
+ display: flex;
1945
+ align-items: center;
1946
+ padding: 24px 32px;
1947
+ border-bottom: 1px solid #f3f4f6;
1948
+ gap: 0;
1949
+ }
1950
+ @media (max-width: 768px) {
1951
+ .AdvancedDateRangePicker-module__header___mxXEE {
1952
+ flex-direction: column;
1953
+ align-items: flex-start;
1954
+ gap: 20px;
1955
+ padding: 20px;
1818
1956
  }
1819
1957
  }
1820
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header .ant-modal-title {
1821
- justify-content: flex-start;
1822
- padding-right: 1.25rem;
1823
- font-size: 1.25rem;
1958
+
1959
+ .AdvancedDateRangePicker-module__headerGroup___J7mJB {
1960
+ display: flex;
1961
+ flex-direction: column;
1962
+ gap: 10px;
1963
+ }
1964
+
1965
+ .AdvancedDateRangePicker-module__headerLabel___Yvhkr {
1966
+ font-size: 16px;
1824
1967
  font-weight: 500;
1825
- line-height: 1.75rem;
1826
- --tw-text-opacity: 1;
1827
- color: rgb(17 24 39 / var(--tw-text-opacity, 1));
1968
+ color: #111827;
1828
1969
  }
1829
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
1970
+
1971
+ .AdvancedDateRangePicker-module__timezoneWrapper___886Qm {
1972
+ padding-right: 32px;
1973
+ }
1974
+ @media (max-width: 768px) {
1975
+ .AdvancedDateRangePicker-module__timezoneWrapper___886Qm {
1976
+ padding-right: 0;
1977
+ width: 100%;
1978
+ }
1979
+ }
1980
+
1981
+ .AdvancedDateRangePicker-module__dateTimeWrapper___unDQJ {
1982
+ padding-left: 32px;
1830
1983
  display: flex;
1831
- align-items: flex-end;
1832
- justify-content: center;
1984
+ gap: 32px;
1985
+ align-items: flex-start;
1986
+ }
1987
+ @media (max-width: 768px) {
1988
+ .AdvancedDateRangePicker-module__dateTimeWrapper___unDQJ {
1989
+ padding-left: 0;
1990
+ flex-direction: column;
1991
+ width: 100%;
1992
+ gap: 20px;
1993
+ }
1833
1994
  }
1834
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close .ant-modal-close-x {
1995
+
1996
+ .AdvancedDateRangePicker-module__headerSeparator___Vwx6P {
1997
+ width: 1px;
1998
+ height: 50px;
1999
+ background: #e5e7eb;
2000
+ flex-shrink: 0;
2001
+ }
2002
+ @media (max-width: 768px) {
2003
+ .AdvancedDateRangePicker-module__headerSeparator___Vwx6P {
2004
+ display: none;
2005
+ }
2006
+ }
2007
+
2008
+ .AdvancedDateRangePicker-module__timezoneSelect___f4oln {
2009
+ -webkit-appearance: none;
2010
+ -moz-appearance: none;
2011
+ appearance: none;
2012
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
2013
+ background-repeat: no-repeat;
2014
+ background-position: right 12px center;
2015
+ padding: 10px 36px 10px 12px;
2016
+ border: 1px solid #e5e7eb;
2017
+ border-radius: 10px;
2018
+ font-size: 14px;
2019
+ color: #111827;
2020
+ background-color: #f9fafb;
2021
+ cursor: pointer;
2022
+ min-width: 150px;
2023
+ outline: none;
2024
+ }
2025
+ .AdvancedDateRangePicker-module__timezoneSelect___f4oln:focus {
2026
+ border-color: #ec5d25;
2027
+ background-color: #fff;
2028
+ }
2029
+ .AdvancedDateRangePicker-module__timezoneSelect___f4oln:disabled {
2030
+ background-color: #f3f4f6;
2031
+ cursor: not-allowed;
2032
+ color: #9ca3af;
2033
+ }
2034
+ @media (max-width: 768px) {
2035
+ .AdvancedDateRangePicker-module__timezoneSelect___f4oln {
2036
+ min-width: 100%;
2037
+ }
2038
+ }
2039
+
2040
+ .AdvancedDateRangePicker-module__dateTimeColumn___tdDV3 {
2041
+ display: flex;
2042
+ flex-direction: column;
2043
+ gap: 4px;
2044
+ }
2045
+ @media (max-width: 768px) {
2046
+ .AdvancedDateRangePicker-module__dateTimeColumn___tdDV3 {
2047
+ width: 100%;
2048
+ }
2049
+ }
2050
+
2051
+ .AdvancedDateRangePicker-module__dateTimeGroup___azF09 {
1835
2052
  display: flex;
1836
2053
  align-items: center;
1837
- justify-content: center;
2054
+ gap: 12px;
1838
2055
  }
1839
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-body {
1840
- padding: 0 1.5rem 1.5rem;
1841
- max-height: 80vh;
1842
- overflow: auto;
2056
+ @media (max-width: 768px) {
2057
+ .AdvancedDateRangePicker-module__dateTimeGroup___azF09 {
2058
+ width: 100%;
2059
+ justify-content: space-between;
2060
+ }
1843
2061
  }
1844
- .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
1845
- top: 1.5rem;
1846
- right: 1.5rem;
1847
- padding-bottom: 0.25rem;
2062
+
2063
+ .AdvancedDateRangePicker-module__dateInput___0t9ww {
2064
+ width: 145px;
2065
+ padding: 10px 12px;
2066
+ border: 1px solid #e5e7eb;
2067
+ border-radius: 10px;
2068
+ font-size: 14px;
2069
+ color: #111827;
2070
+ outline: none;
2071
+ background-color: #f9fafb;
1848
2072
  }
1849
- .Modal-module__modal___PKrAi .ant-btn-primary {
1850
- margin-inline-start: 0.5rem;
2073
+ .AdvancedDateRangePicker-module__dateInput___0t9ww:focus {
2074
+ border-color: #ec5d25;
2075
+ background-color: #fff;
2076
+ }
2077
+ .AdvancedDateRangePicker-module__dateInput___0t9ww.AdvancedDateRangePicker-module__inputError___A5hid {
2078
+ border-color: #ef4444;
2079
+ }
2080
+ @media (max-width: 768px) {
2081
+ .AdvancedDateRangePicker-module__dateInput___0t9ww {
2082
+ flex: 1;
2083
+ }
1851
2084
  }
1852
2085
 
1853
- /* CSS Modules */
2086
+ .AdvancedDateRangePicker-module__timeInput___Jalr9 {
2087
+ width: 110px;
2088
+ padding: 10px 12px;
2089
+ background: #f1f3f4;
2090
+ border: 1px solid #e1e3e5;
2091
+ border-radius: 10px;
2092
+ font-size: 14px;
2093
+ color: #111827;
2094
+ outline: none;
2095
+ text-align: center;
2096
+ }
2097
+ .AdvancedDateRangePicker-module__timeInput___Jalr9::-moz-placeholder {
2098
+ color: #9ca3af;
2099
+ }
2100
+ .AdvancedDateRangePicker-module__timeInput___Jalr9::placeholder {
2101
+ color: #9ca3af;
2102
+ }
2103
+ .AdvancedDateRangePicker-module__timeInput___Jalr9:focus {
2104
+ border-color: #ec5d25;
2105
+ background: #fff;
2106
+ }
2107
+ .AdvancedDateRangePicker-module__timeInput___Jalr9.AdvancedDateRangePicker-module__inputError___A5hid {
2108
+ border-color: #ef4444;
2109
+ }
2110
+ @media (max-width: 768px) {
2111
+ .AdvancedDateRangePicker-module__timeInput___Jalr9 {
2112
+ width: 110px;
2113
+ }
2114
+ }
2115
+
2116
+ .AdvancedDateRangePicker-module__errorMessage___gx7ag {
2117
+ font-size: 12px;
2118
+ color: #ef4444;
2119
+ font-weight: 500;
2120
+ margin-left: 4px;
2121
+ }
2122
+
2123
+ /* ====================================================================
2124
+ Body
2125
+ ==================================================================== */
2126
+ .AdvancedDateRangePicker-module__body___f8XYj {
2127
+ padding: 24px 32px;
2128
+ flex: 1;
2129
+ }
2130
+ @media (max-width: 768px) {
2131
+ .AdvancedDateRangePicker-module__body___f8XYj {
2132
+ padding: 20px;
2133
+ }
2134
+ }
2135
+
2136
+ /* ====================================================================
2137
+ Footer
2138
+ ==================================================================== */
2139
+ .AdvancedDateRangePicker-module__footer___rsJ2w {
2140
+ padding: 24px 32px 32px;
2141
+ display: flex;
2142
+ justify-content: flex-end;
2143
+ background: #ffffff;
2144
+ border-top: 1px solid #f3f4f6;
2145
+ }
2146
+ @media (max-width: 768px) {
2147
+ .AdvancedDateRangePicker-module__footer___rsJ2w {
2148
+ padding: 20px;
2149
+ justify-content: center;
2150
+ }
2151
+ }
2152
+
2153
+ .AdvancedDateRangePicker-module__doneBtn___mt-Sv {
2154
+ padding: 14px 56px;
2155
+ border: none;
2156
+ border-radius: 100px;
2157
+ font-size: 16px;
2158
+ font-weight: 600;
2159
+ color: #fff;
2160
+ background: #ec5d25;
2161
+ cursor: pointer;
2162
+ transition: all 0.2s;
2163
+ box-shadow: 0 4px 12px rgba(236, 93, 37, 0.2);
2164
+ }
2165
+ .AdvancedDateRangePicker-module__doneBtn___mt-Sv:hover {
2166
+ background: #d4501e;
2167
+ box-shadow: 0 6px 16px rgba(236, 93, 37, 0.3);
2168
+ transform: translateY(-1px);
2169
+ }
2170
+ .AdvancedDateRangePicker-module__doneBtn___mt-Sv:disabled {
2171
+ background: #f3a07a;
2172
+ cursor: not-allowed;
2173
+ box-shadow: none;
2174
+ }
2175
+ @media (max-width: 768px) {
2176
+ .AdvancedDateRangePicker-module__doneBtn___mt-Sv {
2177
+ width: 100%;
2178
+ padding: 14px;
2179
+ }
2180
+ }
2181
+
2182
+ /* src/atom/RangePicker/RangePicker.module.scss */
2183
+ .RangePicker-module__range_start___hGQp-::after {
2184
+ content: "";
2185
+ position: absolute;
2186
+ top: 50%;
2187
+ right: 0;
2188
+ transform: translateY(-50%);
2189
+ width: 50%;
2190
+ height: 36px;
2191
+ background-color: #f2efec; /* tw-bg-gray-200 equivalent */
2192
+ z-index: -1;
2193
+ }
2194
+
2195
+ .RangePicker-module__range_end___JJNib::before {
2196
+ content: "";
2197
+ position: absolute;
2198
+ top: 50%;
2199
+ left: 0;
2200
+ transform: translateY(-50%);
2201
+ width: 52%;
2202
+ height: 36px;
2203
+ background-color: #f2efec; /* tw-bg-gray-200 equivalent */
2204
+ z-index: -1;
2205
+ }