@x-plat/design-system 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (165) hide show
  1. package/README.md +123 -0
  2. package/dist/attributes-DJIWir_0.d.cts +7 -0
  3. package/dist/attributes-DJIWir_0.d.ts +7 -0
  4. package/dist/breakpoints-DsXkJgdl.d.cts +35 -0
  5. package/dist/breakpoints-DsXkJgdl.d.ts +35 -0
  6. package/dist/colors-BG91q_uV.d.cts +133 -0
  7. package/dist/colors-BG91q_uV.d.ts +133 -0
  8. package/dist/components/Button/index.cjs +203 -0
  9. package/dist/components/Button/index.css +1231 -0
  10. package/dist/components/Button/index.d.cts +132 -0
  11. package/dist/components/Button/index.d.ts +132 -0
  12. package/dist/components/Button/index.js +176 -0
  13. package/dist/components/Card/index.cjs +56 -0
  14. package/dist/components/Card/index.css +27 -0
  15. package/dist/components/Card/index.d.cts +13 -0
  16. package/dist/components/Card/index.d.ts +13 -0
  17. package/dist/components/Card/index.js +29 -0
  18. package/dist/components/Chart/index.cjs +393 -0
  19. package/dist/components/Chart/index.css +4 -0
  20. package/dist/components/Chart/index.d.cts +10 -0
  21. package/dist/components/Chart/index.d.ts +10 -0
  22. package/dist/components/Chart/index.js +367 -0
  23. package/dist/components/CheckBox/index.cjs +1116 -0
  24. package/dist/components/CheckBox/index.css +598 -0
  25. package/dist/components/CheckBox/index.d.cts +132 -0
  26. package/dist/components/CheckBox/index.d.ts +132 -0
  27. package/dist/components/CheckBox/index.js +1089 -0
  28. package/dist/components/Chip/index.cjs +193 -0
  29. package/dist/components/Chip/index.css +1227 -0
  30. package/dist/components/Chip/index.d.cts +132 -0
  31. package/dist/components/Chip/index.d.ts +132 -0
  32. package/dist/components/Chip/index.js +166 -0
  33. package/dist/components/DatePicker/index.cjs +1653 -0
  34. package/dist/components/DatePicker/index.css +1417 -0
  35. package/dist/components/DatePicker/index.d.cts +56 -0
  36. package/dist/components/DatePicker/index.d.ts +56 -0
  37. package/dist/components/DatePicker/index.js +1613 -0
  38. package/dist/components/HtmlTypeWriter/index.cjs +172 -0
  39. package/dist/components/HtmlTypeWriter/index.css +23 -0
  40. package/dist/components/HtmlTypeWriter/index.d.cts +14 -0
  41. package/dist/components/HtmlTypeWriter/index.d.ts +14 -0
  42. package/dist/components/HtmlTypeWriter/index.js +135 -0
  43. package/dist/components/ImageSelector/index.cjs +1063 -0
  44. package/dist/components/ImageSelector/index.css +85 -0
  45. package/dist/components/ImageSelector/index.d.cts +10 -0
  46. package/dist/components/ImageSelector/index.d.ts +10 -0
  47. package/dist/components/ImageSelector/index.js +1026 -0
  48. package/dist/components/Input/index.cjs +410 -0
  49. package/dist/components/Input/index.css +74 -0
  50. package/dist/components/Input/index.d.cts +23 -0
  51. package/dist/components/Input/index.d.ts +23 -0
  52. package/dist/components/Input/index.js +372 -0
  53. package/dist/components/Modal/index.cjs +101 -0
  54. package/dist/components/Modal/index.css +39 -0
  55. package/dist/components/Modal/index.d.cts +16 -0
  56. package/dist/components/Modal/index.d.ts +16 -0
  57. package/dist/components/Modal/index.js +64 -0
  58. package/dist/components/PopOver/index.cjs +176 -0
  59. package/dist/components/PopOver/index.css +27 -0
  60. package/dist/components/PopOver/index.d.cts +15 -0
  61. package/dist/components/PopOver/index.d.ts +15 -0
  62. package/dist/components/PopOver/index.js +139 -0
  63. package/dist/components/Radio/index.cjs +257 -0
  64. package/dist/components/Radio/index.css +777 -0
  65. package/dist/components/Radio/index.d.cts +154 -0
  66. package/dist/components/Radio/index.d.ts +154 -0
  67. package/dist/components/Radio/index.js +219 -0
  68. package/dist/components/Select/index.cjs +1203 -0
  69. package/dist/components/Select/index.css +136 -0
  70. package/dist/components/Select/index.d.cts +44 -0
  71. package/dist/components/Select/index.d.ts +44 -0
  72. package/dist/components/Select/index.js +1165 -0
  73. package/dist/components/Swiper/index.cjs +144 -0
  74. package/dist/components/Swiper/index.d.cts +24 -0
  75. package/dist/components/Swiper/index.d.ts +24 -0
  76. package/dist/components/Swiper/index.js +128 -0
  77. package/dist/components/Switch/index.cjs +240 -0
  78. package/dist/components/Switch/index.css +780 -0
  79. package/dist/components/Switch/index.d.cts +131 -0
  80. package/dist/components/Switch/index.d.ts +131 -0
  81. package/dist/components/Switch/index.js +203 -0
  82. package/dist/components/Tab/index.cjs +122 -0
  83. package/dist/components/Tab/index.css +59 -0
  84. package/dist/components/Tab/index.d.cts +18 -0
  85. package/dist/components/Tab/index.d.ts +18 -0
  86. package/dist/components/Tab/index.js +85 -0
  87. package/dist/components/Table/index.cjs +384 -0
  88. package/dist/components/Table/index.css +4093 -0
  89. package/dist/components/Table/index.d.cts +174 -0
  90. package/dist/components/Table/index.d.ts +174 -0
  91. package/dist/components/Table/index.js +343 -0
  92. package/dist/components/TextArea/index.cjs +114 -0
  93. package/dist/components/TextArea/index.css +34 -0
  94. package/dist/components/TextArea/index.d.cts +6 -0
  95. package/dist/components/TextArea/index.d.ts +6 -0
  96. package/dist/components/TextArea/index.js +77 -0
  97. package/dist/components/Tooltip/index.cjs +210 -0
  98. package/dist/components/Tooltip/index.css +599 -0
  99. package/dist/components/Tooltip/index.d.cts +134 -0
  100. package/dist/components/Tooltip/index.d.ts +134 -0
  101. package/dist/components/Tooltip/index.js +173 -0
  102. package/dist/components/Video/index.cjs +269 -0
  103. package/dist/components/Video/index.css +71 -0
  104. package/dist/components/Video/index.d.cts +15 -0
  105. package/dist/components/Video/index.d.ts +15 -0
  106. package/dist/components/Video/index.js +232 -0
  107. package/dist/components/index.cjs +3221 -0
  108. package/dist/components/index.css +9972 -0
  109. package/dist/components/index.d.cts +23 -0
  110. package/dist/components/index.d.ts +23 -0
  111. package/dist/components/index.js +3167 -0
  112. package/dist/index.cjs +8216 -0
  113. package/dist/index.css +10087 -0
  114. package/dist/index.d.cts +31 -0
  115. package/dist/index.d.ts +31 -0
  116. package/dist/index.js +7855 -0
  117. package/dist/layout/Grid/FullGrid/index.cjs +54 -0
  118. package/dist/layout/Grid/FullGrid/index.css +21 -0
  119. package/dist/layout/Grid/FullGrid/index.d.cts +9 -0
  120. package/dist/layout/Grid/FullGrid/index.d.ts +9 -0
  121. package/dist/layout/Grid/FullGrid/index.js +27 -0
  122. package/dist/layout/Grid/FullScreen/index.cjs +54 -0
  123. package/dist/layout/Grid/FullScreen/index.css +23 -0
  124. package/dist/layout/Grid/FullScreen/index.d.cts +9 -0
  125. package/dist/layout/Grid/FullScreen/index.d.ts +9 -0
  126. package/dist/layout/Grid/FullScreen/index.js +27 -0
  127. package/dist/layout/Grid/GapGrid/index.cjs +32 -0
  128. package/dist/layout/Grid/GapGrid/index.d.cts +12 -0
  129. package/dist/layout/Grid/GapGrid/index.d.ts +12 -0
  130. package/dist/layout/Grid/GapGrid/index.js +11 -0
  131. package/dist/layout/Grid/Item/index.cjs +71 -0
  132. package/dist/layout/Grid/Item/index.css +19 -0
  133. package/dist/layout/Grid/Item/index.d.cts +20 -0
  134. package/dist/layout/Grid/Item/index.d.ts +20 -0
  135. package/dist/layout/Grid/Item/index.js +44 -0
  136. package/dist/layout/Grid/index.cjs +95 -0
  137. package/dist/layout/Grid/index.css +65 -0
  138. package/dist/layout/Grid/index.d.cts +5 -0
  139. package/dist/layout/Grid/index.d.ts +5 -0
  140. package/dist/layout/Grid/index.js +65 -0
  141. package/dist/layout/Header/index.cjs +45 -0
  142. package/dist/layout/Header/index.css +11 -0
  143. package/dist/layout/Header/index.d.cts +10 -0
  144. package/dist/layout/Header/index.d.ts +10 -0
  145. package/dist/layout/Header/index.js +18 -0
  146. package/dist/layout/Layout/index.cjs +44 -0
  147. package/dist/layout/Layout/index.css +23 -0
  148. package/dist/layout/Layout/index.d.cts +15 -0
  149. package/dist/layout/Layout/index.d.ts +15 -0
  150. package/dist/layout/Layout/index.js +17 -0
  151. package/dist/layout/SideBar/index.cjs +101 -0
  152. package/dist/layout/SideBar/index.css +10 -0
  153. package/dist/layout/SideBar/index.d.cts +16 -0
  154. package/dist/layout/SideBar/index.d.ts +16 -0
  155. package/dist/layout/SideBar/index.js +62 -0
  156. package/dist/layout/index.cjs +188 -0
  157. package/dist/layout/index.css +112 -0
  158. package/dist/layout/index.d.cts +8 -0
  159. package/dist/layout/index.d.ts +8 -0
  160. package/dist/layout/index.js +143 -0
  161. package/dist/tokens/index.cjs +6225 -0
  162. package/dist/tokens/index.d.cts +593 -0
  163. package/dist/tokens/index.d.ts +593 -0
  164. package/dist/tokens/index.js +5900 -0
  165. package/package.json +86 -0
@@ -0,0 +1,1417 @@
1
+ /* src/components/Input/input.scss */
2
+ .lib-xplat-input-wrap {
3
+ display: flex;
4
+ flex-direction: column;
5
+ gap: 0.5rem;
6
+ }
7
+ .lib-xplat-input-wrap .lib-xplat-input {
8
+ display: flex;
9
+ align-items: center;
10
+ border: 1px solid #D4D4D4;
11
+ border-radius: 0.5rem;
12
+ height: 2.5rem;
13
+ overflow: hidden;
14
+ background-color: #FFFFFF;
15
+ padding-right: 0.5rem;
16
+ width: 100%;
17
+ }
18
+ .lib-xplat-input-wrap .lib-xplat-input.disabled {
19
+ background-color: #F5F5F5;
20
+ cursor: not-allowed;
21
+ }
22
+ .lib-xplat-input-wrap .lib-xplat-input > input {
23
+ border: none;
24
+ outline: none;
25
+ flex: 1;
26
+ padding-left: 1rem;
27
+ padding-right: 0.5rem;
28
+ width: 100%;
29
+ color: #404040;
30
+ }
31
+ .lib-xplat-input-wrap .lib-xplat-input > input :disabled {
32
+ cursor: not-allowed;
33
+ }
34
+ .lib-xplat-input-wrap .lib-xplat-input > .suffix {
35
+ display: flex;
36
+ align-items: center;
37
+ justify-content: center;
38
+ height: 100%;
39
+ color: #A1A1A1;
40
+ padding-right: 0.5rem;
41
+ }
42
+ .lib-xplat-input-wrap .lib-xplat-input > .suffix > .wrapper {
43
+ font: 500;
44
+ }
45
+ .lib-xplat-input-wrap .lib-xplat-input > .suffix > .wrapper.pointer {
46
+ cursor: pointer;
47
+ }
48
+ .lib-xplat-input-wrap .lib-xplat-input-validation-wrap {
49
+ display: flex;
50
+ gap: 0.5rem;
51
+ margin-left: 0.25rem;
52
+ }
53
+ .lib-xplat-input-wrap .lib-xplat-input-validation-wrap > .lib-xplat-input-validation {
54
+ display: flex;
55
+ gap: 0.25rem;
56
+ font-size: 0.75rem;
57
+ align-items: center;
58
+ user-select: none;
59
+ }
60
+ .lib-xplat-input-wrap .lib-xplat-input-validation-wrap > .lib-xplat-input-validation.default {
61
+ color: #A1A1A1;
62
+ }
63
+ .lib-xplat-input-wrap .lib-xplat-input-validation-wrap > .lib-xplat-input-validation.success {
64
+ color: #00A34F;
65
+ }
66
+ .lib-xplat-input-wrap .lib-xplat-input-validation-wrap > .lib-xplat-input-validation.warning {
67
+ color: #D18800;
68
+ }
69
+ .lib-xplat-input-wrap .lib-xplat-input-validation-wrap > .lib-xplat-input-validation.error {
70
+ color: #F80409;
71
+ }
72
+ .lib-xplat-input-wrap .lib-xplat-input-validation-wrap > .lib-xplat-input-validation > .icon {
73
+ font-size: 1rem;
74
+ }
75
+
76
+ /* src/components/DatePicker/datepicker.scss */
77
+ .lib-xplat-datepicker .react-datepicker {
78
+ border: 1px solid #D4D4D4;
79
+ border-radius: 0.375rem;
80
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
81
+ }
82
+ .lib-xplat-datepicker .react-datepicker__header {
83
+ background-color: #F5F5F5;
84
+ border-bottom: 1px solid #D4D4D4;
85
+ }
86
+ .lib-xplat-datepicker .react-datepicker__day-name:nth-child(1) {
87
+ color: #F80409;
88
+ }
89
+ .lib-xplat-datepicker .react-datepicker__day-name:nth-child(7) {
90
+ color: #3950D7;
91
+ }
92
+ .lib-xplat-datepicker .react-datepicker__day:not(.react-datepicker__day--disabled):nth-child(7n+1) {
93
+ color: #F80409;
94
+ }
95
+ .lib-xplat-datepicker .react-datepicker__day:not(.react-datepicker__day--disabled):nth-child(7n) {
96
+ color: #3950D7;
97
+ }
98
+ .lib-xplat-datepicker .react-datepicker__day--disabled {
99
+ color: #A1A1A1 !important;
100
+ cursor: not-allowed;
101
+ pointer-events: none;
102
+ }
103
+ .lib-xplat-datepicker .react-datepicker__day--selected,
104
+ .lib-xplat-datepicker .react-datepicker__day--keyboard-selected {
105
+ background-color: #4D6DE3;
106
+ }
107
+ .lib-xplat-datepicker .react-datepicker__day:not(.react-datepicker__day--disabled):hover {
108
+ background-color: #7093EA;
109
+ }
110
+ .lib-xplat-popup-datepicker-card {
111
+ min-width: 20rem;
112
+ border: none;
113
+ }
114
+ .lib-xplat-popup-datepicker-card > .content {
115
+ padding: 0;
116
+ }
117
+ .lib-xplat-popup-datepicker-card .popup-datepicker-content {
118
+ display: flex;
119
+ gap: 1rem;
120
+ }
121
+ .lib-xplat-popup-datepicker-card .popup-datepicker-footer {
122
+ display: flex;
123
+ justify-content: flex-end;
124
+ align-items: center;
125
+ gap: 0.5rem;
126
+ margin-top: 0.5rem;
127
+ margin-left: auto;
128
+ }
129
+ .lib-xplat-range-datepicker {
130
+ position: relative;
131
+ display: flex;
132
+ gap: 1.5rem;
133
+ flex-wrap: wrap;
134
+ }
135
+ .lib-xplat-range-datepicker .lib-xplat-range-datepicker-from,
136
+ .lib-xplat-range-datepicker .lib-xplat-range-datepicker-to {
137
+ display: flex;
138
+ flex-direction: column;
139
+ gap: 0.5rem;
140
+ }
141
+ .lib-xplat-range-datepicker .lib-xplat-range-datepicker-label {
142
+ font-size: 0.75rem;
143
+ font-weight: 500;
144
+ color: #525252;
145
+ }
146
+
147
+ /* src/components/Button/button.scss */
148
+ .lib-xplat-button {
149
+ border-radius: 0.5rem;
150
+ padding: 0.5rem 1rem;
151
+ font-weight: 500;
152
+ font-size: 1rem;
153
+ cursor: pointer;
154
+ transition: background-color 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
155
+ }
156
+ .lib-xplat-button:disabled {
157
+ cursor: not-allowed;
158
+ background-color: #A1A1A1 !important;
159
+ border-color: #A1A1A1 !important;
160
+ color: #FFFFFF !important;
161
+ }
162
+ .lib-xplat-button.primary {
163
+ color: #FFFFFF;
164
+ }
165
+ .lib-xplat-button.primary.xplat-red-50 {
166
+ background-color: #FFF0F0;
167
+ }
168
+ .lib-xplat-button.primary.xplat-red-50:hover {
169
+ background-color: hsl(0, 100%, 105.0588235294%);
170
+ }
171
+ .lib-xplat-button.primary.xplat-red-100 {
172
+ background-color: #FFDDDE;
173
+ }
174
+ .lib-xplat-button.primary.xplat-red-100:hover {
175
+ background-color: hsl(358.2352941176, 100%, 101.3333333333%);
176
+ }
177
+ .lib-xplat-button.primary.xplat-red-200 {
178
+ background-color: #FFC1C2;
179
+ }
180
+ .lib-xplat-button.primary.xplat-red-200:hover {
181
+ background-color: rgb(255, 152.2, 153.8580645161);
182
+ }
183
+ .lib-xplat-button.primary.xplat-red-300 {
184
+ background-color: #FF9698;
185
+ }
186
+ .lib-xplat-button.primary.xplat-red-300:hover {
187
+ background-color: rgb(255, 109.2, 111.9771428571);
188
+ }
189
+ .lib-xplat-button.primary.xplat-red-400 {
190
+ background-color: #FF5A5D;
191
+ }
192
+ .lib-xplat-button.primary.xplat-red-400:hover {
193
+ background-color: rgb(255, 141, 143.0727272727);
194
+ }
195
+ .lib-xplat-button.primary.xplat-red-500 {
196
+ background-color: #FF272B;
197
+ }
198
+ .lib-xplat-button.primary.xplat-red-500:hover {
199
+ background-color: rgb(255, 90, 93.0555555556);
200
+ }
201
+ .lib-xplat-button.primary.xplat-red-600 {
202
+ background-color: #F80409;
203
+ }
204
+ .lib-xplat-button.primary.xplat-red-600:hover {
205
+ background-color: rgb(251.7142857143, 51.2857142857, 55.3928571429);
206
+ }
207
+ .lib-xplat-button.primary.xplat-red-700 {
208
+ background-color: #D40105;
209
+ }
210
+ .lib-xplat-button.primary.xplat-red-700:hover {
211
+ background-color: rgb(253.8450704225, 10.1549295775, 14.7746478873);
212
+ }
213
+ .lib-xplat-button.primary.xplat-red-800 {
214
+ background-color: #AE0609;
215
+ }
216
+ .lib-xplat-button.primary.xplat-red-800:hover {
217
+ background-color: rgb(223.3, 7.7, 11.55);
218
+ }
219
+ .lib-xplat-button.primary.xplat-red-900 {
220
+ background-color: #900C0F;
221
+ }
222
+ .lib-xplat-button.primary.xplat-red-900:hover {
223
+ background-color: rgb(191.0769230769, 15.9230769231, 19.9038461538);
224
+ }
225
+ .lib-xplat-button.primary.xplat-green-50 {
226
+ background-color: #E5F6EA;
227
+ }
228
+ .lib-xplat-button.primary.xplat-green-50:hover {
229
+ background-color: hsl(137.6470588235, 48.5714285714%, 101.137254902%);
230
+ }
231
+ .lib-xplat-button.primary.xplat-green-100 {
232
+ background-color: #C1E7CC;
233
+ }
234
+ .lib-xplat-button.primary.xplat-green-100:hover {
235
+ background-color: rgb(222.4139534884, 242.3860465116, 228.1953488372);
236
+ }
237
+ .lib-xplat-button.primary.xplat-green-200 {
238
+ background-color: #98D8AC;
239
+ }
240
+ .lib-xplat-button.primary.xplat-green-200:hover {
241
+ background-color: rgb(122.4056338028, 204.7943661972, 148.1521126761);
242
+ }
243
+ .lib-xplat-button.primary.xplat-green-300 {
244
+ background-color: #6CCA8B;
245
+ }
246
+ .lib-xplat-button.primary.xplat-green-300:hover {
247
+ background-color: rgb(78.012, 191.188, 115.336);
248
+ }
249
+ .lib-xplat-button.primary.xplat-green-400 {
250
+ background-color: #47BE72;
251
+ }
252
+ .lib-xplat-button.primary.xplat-green-400:hover {
253
+ background-color: rgb(108.686746988, 203.313253012, 142.8795180723);
254
+ }
255
+ .lib-xplat-button.primary.xplat-green-500 {
256
+ background-color: #10B259;
257
+ }
258
+ .lib-xplat-button.primary.xplat-green-500:hover {
259
+ background-color: rgb(20.206185567, 224.793814433, 112.3969072165);
260
+ }
261
+ .lib-xplat-button.primary.xplat-green-600 {
262
+ background-color: #00A34F;
263
+ }
264
+ .lib-xplat-button.primary.xplat-green-600:hover {
265
+ background-color: rgb(0, 214, 103.717791411);
266
+ }
267
+ .lib-xplat-button.primary.xplat-green-700 {
268
+ background-color: #009143;
269
+ }
270
+ .lib-xplat-button.primary.xplat-green-700:hover {
271
+ background-color: rgb(0, 196, 90.5655172414);
272
+ }
273
+ .lib-xplat-button.primary.xplat-green-800 {
274
+ background-color: #007F38;
275
+ }
276
+ .lib-xplat-button.primary.xplat-green-800:hover {
277
+ background-color: rgb(0, 178, 78.4881889764);
278
+ }
279
+ .lib-xplat-button.primary.xplat-green-900 {
280
+ background-color: #006024;
281
+ }
282
+ .lib-xplat-button.primary.xplat-green-900:hover {
283
+ background-color: rgb(0, 147, 55.125);
284
+ }
285
+ .lib-xplat-button.primary.xplat-orange-50 {
286
+ background-color: #FFF8EC;
287
+ }
288
+ .lib-xplat-button.primary.xplat-orange-50:hover {
289
+ background-color: hsl(37.8947368421, 100%, 104.2745098039%);
290
+ }
291
+ .lib-xplat-button.primary.xplat-orange-100 {
292
+ background-color: #FFF0D3;
293
+ }
294
+ .lib-xplat-button.primary.xplat-orange-100:hover {
295
+ background-color: rgb(255, 253.9090909091, 251.8);
296
+ }
297
+ .lib-xplat-button.primary.xplat-orange-200 {
298
+ background-color: #FFDDA5;
299
+ }
300
+ .lib-xplat-button.primary.xplat-orange-200:hover {
301
+ background-color: rgb(255, 236.4133333333, 205.8);
302
+ }
303
+ .lib-xplat-button.primary.xplat-orange-300 {
304
+ background-color: #FFC46D;
305
+ }
306
+ .lib-xplat-button.primary.xplat-orange-300:hover {
307
+ background-color: rgb(255, 179.5123287671, 68.2);
308
+ }
309
+ .lib-xplat-button.primary.xplat-orange-400 {
310
+ background-color: #FF9F32;
311
+ }
312
+ .lib-xplat-button.primary.xplat-orange-400:hover {
313
+ background-color: rgb(255, 139.8936585366, 9.2);
314
+ }
315
+ .lib-xplat-button.primary.xplat-orange-500 {
316
+ background-color: #FF820A;
317
+ }
318
+ .lib-xplat-button.primary.xplat-orange-500:hover {
319
+ background-color: rgb(255, 156.0204081633, 61);
320
+ }
321
+ .lib-xplat-button.primary.xplat-orange-600 {
322
+ background-color: #FF6900;
323
+ }
324
+ .lib-xplat-button.primary.xplat-orange-600:hover {
325
+ background-color: #ff8733;
326
+ }
327
+ .lib-xplat-button.primary.xplat-orange-700 {
328
+ background-color: #CC4B02;
329
+ }
330
+ .lib-xplat-button.primary.xplat-orange-700:hover {
331
+ background-color: rgb(252.5436893204, 94.1116504854, 4.4563106796);
332
+ }
333
+ .lib-xplat-button.primary.xplat-orange-800 {
334
+ background-color: #A13A0B;
335
+ }
336
+ .lib-xplat-button.primary.xplat-orange-800:hover {
337
+ background-color: rgb(208.738372093, 75.1976744186, 14.261627907);
338
+ }
339
+ .lib-xplat-button.primary.xplat-orange-900 {
340
+ background-color: #82320C;
341
+ }
342
+ .lib-xplat-button.primary.xplat-orange-900:hover {
343
+ background-color: rgb(176.6901408451, 67.9577464789, 16.3098591549);
344
+ }
345
+ .lib-xplat-button.primary.xplat-yellow-50 {
346
+ background-color: #FFFDE7;
347
+ }
348
+ .lib-xplat-button.primary.xplat-yellow-50:hover {
349
+ background-color: hsl(55, 100%, 103.2941176471%);
350
+ }
351
+ .lib-xplat-button.primary.xplat-yellow-100 {
352
+ background-color: #FFFAC1;
353
+ }
354
+ .lib-xplat-button.primary.xplat-yellow-100:hover {
355
+ background-color: rgb(255, 253.2903225806, 233.8);
356
+ }
357
+ .lib-xplat-button.primary.xplat-yellow-200 {
358
+ background-color: #FFF186;
359
+ }
360
+ .lib-xplat-button.primary.xplat-yellow-200:hover {
361
+ background-color: rgb(255, 245.720661157, 174.8);
362
+ }
363
+ .lib-xplat-button.primary.xplat-yellow-300 {
364
+ background-color: #FFE041;
365
+ }
366
+ .lib-xplat-button.primary.xplat-yellow-300:hover {
367
+ background-color: rgb(255, 230.6568421053, 105.8);
368
+ }
369
+ .lib-xplat-button.primary.xplat-yellow-400 {
370
+ background-color: #FFCC0D;
371
+ }
372
+ .lib-xplat-button.primary.xplat-yellow-400:hover {
373
+ background-color: rgb(227.2, 179.3190082645, 0);
374
+ }
375
+ .lib-xplat-button.primary.xplat-yellow-500 {
376
+ background-color: #F0B100;
377
+ }
378
+ .lib-xplat-button.primary.xplat-yellow-500:hover {
379
+ background-color: rgb(199.2, 146.91, 0);
380
+ }
381
+ .lib-xplat-button.primary.xplat-yellow-600 {
382
+ background-color: #D18800;
383
+ }
384
+ .lib-xplat-button.primary.xplat-yellow-600:hover {
385
+ background-color: rgb(255, 167.6794258373, 5);
386
+ }
387
+ .lib-xplat-button.primary.xplat-yellow-700 {
388
+ background-color: #A66002;
389
+ }
390
+ .lib-xplat-button.primary.xplat-yellow-700:hover {
391
+ background-color: rgb(216.3928571429, 125.1428571429, 2.6071428571);
392
+ }
393
+ .lib-xplat-button.primary.xplat-yellow-800 {
394
+ background-color: #894B0A;
395
+ }
396
+ .lib-xplat-button.primary.xplat-yellow-800:hover {
397
+ background-color: rgb(184.5306122449, 101.0204081633, 13.4693877551);
398
+ }
399
+ .lib-xplat-button.primary.xplat-yellow-900 {
400
+ background-color: #743D0F;
401
+ }
402
+ .lib-xplat-button.primary.xplat-yellow-900:hover {
403
+ background-color: rgb(161.1603053435, 84.7480916031, 20.8396946565);
404
+ }
405
+ .lib-xplat-button.primary.xplat-blue-50 {
406
+ background-color: #F1F4FD;
407
+ }
408
+ .lib-xplat-button.primary.xplat-blue-50:hover {
409
+ background-color: hsl(225, 75%, 104.862745098%);
410
+ }
411
+ .lib-xplat-button.primary.xplat-blue-100 {
412
+ background-color: #DFE7FA;
413
+ }
414
+ .lib-xplat-button.primary.xplat-blue-100:hover {
415
+ background-color: hsl(222.2222222222, 72.972972973%, 100.7450980392%);
416
+ }
417
+ .lib-xplat-button.primary.xplat-blue-200 {
418
+ background-color: #C5D4F8;
419
+ }
420
+ .lib-xplat-button.primary.xplat-blue-200:hover {
421
+ background-color: rgb(160.5938461538, 185.0092307692, 243.6061538462);
422
+ }
423
+ .lib-xplat-button.primary.xplat-blue-300 {
424
+ background-color: #9EB8F2;
425
+ }
426
+ .lib-xplat-button.primary.xplat-blue-300:hover {
427
+ background-color: rgb(122.0218181818, 157.6654545455, 237.1781818182);
428
+ }
429
+ .lib-xplat-button.primary.xplat-blue-400 {
430
+ background-color: #7093EA;
431
+ }
432
+ .lib-xplat-button.primary.xplat-blue-400:hover {
433
+ background-color: rgb(156.4695121951, 180.5853658537, 240.5304878049);
434
+ }
435
+ .lib-xplat-button.primary.xplat-blue-500 {
436
+ background-color: #4D6DE3;
437
+ }
438
+ .lib-xplat-button.primary.xplat-blue-500:hover {
439
+ background-color: rgb(121.067961165, 145.145631068, 233.932038835);
440
+ }
441
+ .lib-xplat-button.primary.xplat-blue-600 {
442
+ background-color: #3950D7;
443
+ }
444
+ .lib-xplat-button.primary.xplat-blue-600:hover {
445
+ background-color: rgb(99.4285714286, 117.5, 223.5714285714);
446
+ }
447
+ .lib-xplat-button.primary.xplat-blue-700 {
448
+ background-color: #303EC5;
449
+ }
450
+ .lib-xplat-button.primary.xplat-blue-700:hover {
451
+ background-color: rgb(82.9265306122, 95.1551020408, 213.0734693878);
452
+ }
453
+ .lib-xplat-button.primary.xplat-blue-800 {
454
+ background-color: #2D35A0;
455
+ }
456
+ .lib-xplat-button.primary.xplat-blue-800:hover {
457
+ background-color: rgb(56.756097561, 66.6682926829, 199.243902439);
458
+ }
459
+ .lib-xplat-button.primary.xplat-blue-900 {
460
+ background-color: #29317F;
461
+ }
462
+ .lib-xplat-button.primary.xplat-blue-900:hover {
463
+ background-color: rgb(65.8607142857, 77.775, 193.9392857143);
464
+ }
465
+ .lib-xplat-button.primary.xplat-lightblue-50 {
466
+ background-color: #EEFAFF;
467
+ }
468
+ .lib-xplat-button.primary.xplat-lightblue-50:hover {
469
+ background-color: hsl(197.6470588235, 100%, 104.6666666667%);
470
+ }
471
+ .lib-xplat-button.primary.xplat-lightblue-100 {
472
+ background-color: #D9F4FF;
473
+ }
474
+ .lib-xplat-button.primary.xplat-lightblue-100:hover {
475
+ background-color: hsl(197.3684210526, 100%, 100.5490196078%);
476
+ }
477
+ .lib-xplat-button.primary.xplat-lightblue-200 {
478
+ background-color: #BBEDFF;
479
+ }
480
+ .lib-xplat-button.primary.xplat-lightblue-200:hover {
481
+ background-color: rgb(227.8, 247.8, 255);
482
+ }
483
+ .lib-xplat-button.primary.xplat-lightblue-300 {
484
+ background-color: #8DE3FF;
485
+ }
486
+ .lib-xplat-button.primary.xplat-lightblue-300:hover {
487
+ background-color: rgb(100.2, 216.9789473684, 255);
488
+ }
489
+ .lib-xplat-button.primary.xplat-lightblue-400 {
490
+ background-color: #57D0FF;
491
+ }
492
+ .lib-xplat-button.primary.xplat-lightblue-400:hover {
493
+ background-color: rgb(46.2, 196.5857142857, 255);
494
+ }
495
+ .lib-xplat-button.primary.xplat-lightblue-500 {
496
+ background-color: #30B6FF;
497
+ }
498
+ .lib-xplat-button.primary.xplat-lightblue-500:hover {
499
+ background-color: rgb(7.2, 167.6115942029, 255);
500
+ }
501
+ .lib-xplat-button.primary.xplat-lightblue-600 {
502
+ background-color: #1999F7;
503
+ }
504
+ .lib-xplat-button.primary.xplat-lightblue-600:hover {
505
+ background-color: rgb(74.2857142857, 174.8571428571, 248.7142857143);
506
+ }
507
+ .lib-xplat-button.primary.xplat-lightblue-700 {
508
+ background-color: #1280E3;
509
+ }
510
+ .lib-xplat-button.primary.xplat-lightblue-700:hover {
511
+ background-color: rgb(56.7224489796, 152.8040816327, 239.2775510204);
512
+ }
513
+ .lib-xplat-button.primary.xplat-lightblue-800 {
514
+ background-color: #1566B8;
515
+ }
516
+ .lib-xplat-button.primary.xplat-lightblue-800:hover {
517
+ background-color: rgb(27.0195121951, 127.3804878049, 228.9804878049);
518
+ }
519
+ .lib-xplat-button.primary.xplat-lightblue-900 {
520
+ background-color: #175791;
521
+ }
522
+ .lib-xplat-button.primary.xplat-lightblue-900:hover {
523
+ background-color: rgb(29.9821428571, 113.4107142857, 189.0178571429);
524
+ }
525
+ .lib-xplat-button.primary.xplat-purple-50 {
526
+ background-color: #FBF6FE;
527
+ }
528
+ .lib-xplat-button.primary.xplat-purple-50:hover {
529
+ background-color: hsl(277.5, 80%, 106.0392156863%);
530
+ }
531
+ .lib-xplat-button.primary.xplat-purple-100 {
532
+ background-color: #F5EAFD;
533
+ }
534
+ .lib-xplat-button.primary.xplat-purple-100:hover {
535
+ background-color: hsl(274.7368421053, 82.6086956522%, 103.4901960784%);
536
+ }
537
+ .lib-xplat-button.primary.xplat-purple-200 {
538
+ background-color: #EDD8FC;
539
+ }
540
+ .lib-xplat-button.primary.xplat-purple-200:hover {
541
+ background-color: rgb(254.4857142857, 253.8857142857, 254.9142857143);
542
+ }
543
+ .lib-xplat-button.primary.xplat-purple-300 {
544
+ background-color: #E0BAF8;
545
+ }
546
+ .lib-xplat-button.primary.xplat-purple-300:hover {
547
+ background-color: rgb(207.3578947368, 148.9578947368, 244.2421052632);
548
+ }
549
+ .lib-xplat-button.primary.xplat-purple-400 {
550
+ background-color: #CD8DF3;
551
+ }
552
+ .lib-xplat-button.primary.xplat-purple-400:hover {
553
+ background-color: rgb(225.2380952381, 187.1428571429, 247.8571428571);
554
+ }
555
+ .lib-xplat-button.primary.xplat-purple-500 {
556
+ background-color: #B961EB;
557
+ }
558
+ .lib-xplat-button.primary.xplat-purple-500:hover {
559
+ background-color: rgb(205.0561797753, 142.2696629213, 240.7303370787);
560
+ }
561
+ .lib-xplat-button.primary.xplat-purple-600 {
562
+ background-color: #A541DC;
563
+ }
564
+ .lib-xplat-button.primary.xplat-purple-600:hover {
565
+ background-color: rgb(185.4, 108.0666666667, 227.9333333333);
566
+ }
567
+ .lib-xplat-button.primary.xplat-purple-700 {
568
+ background-color: #9230C5;
569
+ }
570
+ .lib-xplat-button.primary.xplat-purple-700:hover {
571
+ background-color: rgb(168.5265306122, 82.9265306122, 213.0734693878);
572
+ }
573
+ .lib-xplat-button.primary.xplat-purple-800 {
574
+ background-color: #782B9E;
575
+ }
576
+ .lib-xplat-button.primary.xplat-purple-800:hover {
577
+ background-color: rgb(150.447761194, 53.9104477612, 198.0895522388);
578
+ }
579
+ .lib-xplat-button.primary.xplat-purple-900 {
580
+ background-color: #62247F;
581
+ }
582
+ .lib-xplat-button.primary.xplat-purple-900:hover {
583
+ background-color: rgb(128.6625766871, 47.263803681, 166.736196319);
584
+ }
585
+ .lib-xplat-button.primary.xplat-pink-50 {
586
+ background-color: #FFF4FE;
587
+ }
588
+ .lib-xplat-button.primary.xplat-pink-50:hover {
589
+ background-color: hsl(305.4545454545, 100%, 105.8431372549%);
590
+ }
591
+ .lib-xplat-button.primary.xplat-pink-100 {
592
+ background-color: #FFE7FD;
593
+ }
594
+ .lib-xplat-button.primary.xplat-pink-100:hover {
595
+ background-color: hsl(305, 100%, 103.2941176471%);
596
+ }
597
+ .lib-xplat-button.primary.xplat-pink-200 {
598
+ background-color: #FFCFFA;
599
+ }
600
+ .lib-xplat-button.primary.xplat-pink-200:hover {
601
+ background-color: rgb(255, 247.8, 254.25);
602
+ }
603
+ .lib-xplat-button.primary.xplat-pink-300 {
604
+ background-color: #FEA9F1;
605
+ }
606
+ .lib-xplat-button.primary.xplat-pink-300:hover {
607
+ background-color: rgb(253.5310344828, 128.6689655172, 234.4344827586);
608
+ }
609
+ .lib-xplat-button.primary.xplat-pink-400 {
610
+ background-color: #FD75E7;
611
+ }
612
+ .lib-xplat-button.primary.xplat-pink-400:hover {
613
+ background-color: rgb(253.7285714286, 167.2714285714, 239.7428571429);
614
+ }
615
+ .lib-xplat-button.primary.xplat-pink-500 {
616
+ background-color: #F553DA;
617
+ }
618
+ .lib-xplat-button.primary.xplat-pink-500:hover {
619
+ background-color: rgb(247.8021978022, 131.1978021978, 228.3681318681);
620
+ }
621
+ .lib-xplat-button.primary.xplat-pink-600 {
622
+ background-color: #D821B6;
623
+ }
624
+ .lib-xplat-button.primary.xplat-pink-600:hover {
625
+ background-color: rgb(227.1686746988, 72.8313253012, 198.4939759036);
626
+ }
627
+ .lib-xplat-button.primary.xplat-pink-700 {
628
+ background-color: #B31892;
629
+ }
630
+ .lib-xplat-button.primary.xplat-pink-700:hover {
631
+ background-color: rgb(223.9704433498, 30.0295566502, 182.6798029557);
632
+ }
633
+ .lib-xplat-button.primary.xplat-pink-800 {
634
+ background-color: #921676;
635
+ }
636
+ .lib-xplat-button.primary.xplat-pink-800:hover {
637
+ background-color: rgb(190.3214285714, 28.6785714286, 153.8214285714);
638
+ }
639
+ .lib-xplat-button.primary.xplat-pink-900 {
640
+ background-color: #781761;
641
+ }
642
+ .lib-xplat-button.primary.xplat-pink-900:hover {
643
+ background-color: rgb(162.7972027972, 31.2027972028, 131.5944055944);
644
+ }
645
+ .lib-xplat-button.primary.xplat-neutral-50 {
646
+ background-color: #FAFAFA;
647
+ }
648
+ .lib-xplat-button.primary.xplat-neutral-50:hover {
649
+ background-color: hsl(0, 0%, 106.0392156863%);
650
+ }
651
+ .lib-xplat-button.primary.xplat-neutral-100 {
652
+ background-color: #F5F5F5;
653
+ }
654
+ .lib-xplat-button.primary.xplat-neutral-100:hover {
655
+ background-color: hsl(0, 0%, 104.0784313725%);
656
+ }
657
+ .lib-xplat-button.primary.xplat-neutral-200 {
658
+ background-color: #E5E5E5;
659
+ }
660
+ .lib-xplat-button.primary.xplat-neutral-200:hover {
661
+ background-color: rgb(249.4, 249.4, 249.4);
662
+ }
663
+ .lib-xplat-button.primary.xplat-neutral-300 {
664
+ background-color: #D4D4D4;
665
+ }
666
+ .lib-xplat-button.primary.xplat-neutral-300:hover {
667
+ background-color: rgb(191.6, 191.6, 191.6);
668
+ }
669
+ .lib-xplat-button.primary.xplat-neutral-400 {
670
+ background-color: #A1A1A1;
671
+ }
672
+ .lib-xplat-button.primary.xplat-neutral-400:hover {
673
+ background-color: rgb(186.5, 186.5, 186.5);
674
+ }
675
+ .lib-xplat-button.primary.xplat-neutral-500 {
676
+ background-color: #737373;
677
+ }
678
+ .lib-xplat-button.primary.xplat-neutral-500:hover {
679
+ background-color: rgb(140.5, 140.5, 140.5);
680
+ }
681
+ .lib-xplat-button.primary.xplat-neutral-600 {
682
+ background-color: #525252;
683
+ }
684
+ .lib-xplat-button.primary.xplat-neutral-600:hover {
685
+ background-color: rgb(107.5, 107.5, 107.5);
686
+ }
687
+ .lib-xplat-button.primary.xplat-neutral-700 {
688
+ background-color: #404040;
689
+ }
690
+ .lib-xplat-button.primary.xplat-neutral-700:hover {
691
+ background-color: rgb(89.5, 89.5, 89.5);
692
+ }
693
+ .lib-xplat-button.primary.xplat-neutral-800 {
694
+ background-color: #262626;
695
+ }
696
+ .lib-xplat-button.primary.xplat-neutral-800:hover {
697
+ background-color: rgb(83.9, 83.9, 83.9);
698
+ }
699
+ .lib-xplat-button.primary.xplat-neutral-900 {
700
+ background-color: #171717;
701
+ }
702
+ .lib-xplat-button.primary.xplat-neutral-900:hover {
703
+ background-color: rgb(68.9, 68.9, 68.9);
704
+ }
705
+ .lib-xplat-button.primary.xplat-black {
706
+ background-color: #000000;
707
+ }
708
+ .lib-xplat-button.primary.xplat-black:hover {
709
+ background-color: rgb(45.9, 45.9, 45.9);
710
+ }
711
+ .lib-xplat-button.primary.xplat-white {
712
+ background-color: #FFFFFF;
713
+ }
714
+ .lib-xplat-button.primary.xplat-white:hover {
715
+ background-color: hsl(0, 0%, 108%);
716
+ }
717
+ .lib-xplat-button.primary.test-default {
718
+ background-color: #ffffff;
719
+ }
720
+ .lib-xplat-button.primary.test-default:hover {
721
+ background-color: hsl(0, 0%, 108%);
722
+ }
723
+ .lib-xplat-button.secondary {
724
+ background-color: #FFFFFF;
725
+ border: 1px solid;
726
+ }
727
+ .lib-xplat-button.secondary.xplat-red-50 {
728
+ color: #FFF0F0;
729
+ border-color: #FFF0F0;
730
+ }
731
+ .lib-xplat-button.secondary.xplat-red-50:hover {
732
+ background-color: rgb(255, 253.2, 253.2);
733
+ }
734
+ .lib-xplat-button.secondary.xplat-red-100 {
735
+ color: #FFDDDE;
736
+ border-color: #FFDDDE;
737
+ }
738
+ .lib-xplat-button.secondary.xplat-red-100:hover {
739
+ background-color: rgb(255, 250.92, 251.04);
740
+ }
741
+ .lib-xplat-button.secondary.xplat-red-200 {
742
+ color: #FFC1C2;
743
+ border-color: #FFC1C2;
744
+ }
745
+ .lib-xplat-button.secondary.xplat-red-200:hover {
746
+ background-color: rgb(255, 247.56, 247.68);
747
+ }
748
+ .lib-xplat-button.secondary.xplat-red-300 {
749
+ color: #FF9698;
750
+ border-color: #FF9698;
751
+ }
752
+ .lib-xplat-button.secondary.xplat-red-300:hover {
753
+ background-color: rgb(255, 242.4, 242.64);
754
+ }
755
+ .lib-xplat-button.secondary.xplat-red-400 {
756
+ color: #FF5A5D;
757
+ border-color: #FF5A5D;
758
+ }
759
+ .lib-xplat-button.secondary.xplat-red-400:hover {
760
+ background-color: rgb(255, 235.2, 235.56);
761
+ }
762
+ .lib-xplat-button.secondary.xplat-red-500 {
763
+ color: #FF272B;
764
+ border-color: #FF272B;
765
+ }
766
+ .lib-xplat-button.secondary.xplat-red-500:hover {
767
+ background-color: rgb(255, 229.08, 229.56);
768
+ }
769
+ .lib-xplat-button.secondary.xplat-red-600 {
770
+ color: #F80409;
771
+ border-color: #F80409;
772
+ }
773
+ .lib-xplat-button.secondary.xplat-red-600:hover {
774
+ background-color: rgb(254.16, 224.88, 225.48);
775
+ }
776
+ .lib-xplat-button.secondary.xplat-red-700 {
777
+ color: #D40105;
778
+ border-color: #D40105;
779
+ }
780
+ .lib-xplat-button.secondary.xplat-red-700:hover {
781
+ background-color: rgb(249.84, 224.52, 225);
782
+ }
783
+ .lib-xplat-button.secondary.xplat-red-800 {
784
+ color: #AE0609;
785
+ border-color: #AE0609;
786
+ }
787
+ .lib-xplat-button.secondary.xplat-red-800:hover {
788
+ background-color: rgb(245.28, 225.12, 225.48);
789
+ }
790
+ .lib-xplat-button.secondary.xplat-red-900 {
791
+ color: #900C0F;
792
+ border-color: #900C0F;
793
+ }
794
+ .lib-xplat-button.secondary.xplat-red-900:hover {
795
+ background-color: rgb(241.68, 225.84, 226.2);
796
+ }
797
+ .lib-xplat-button.secondary.xplat-green-50 {
798
+ color: #E5F6EA;
799
+ border-color: #E5F6EA;
800
+ }
801
+ .lib-xplat-button.secondary.xplat-green-50:hover {
802
+ background-color: rgb(251.88, 253.92, 252.48);
803
+ }
804
+ .lib-xplat-button.secondary.xplat-green-100 {
805
+ color: #C1E7CC;
806
+ border-color: #C1E7CC;
807
+ }
808
+ .lib-xplat-button.secondary.xplat-green-100:hover {
809
+ background-color: rgb(247.56, 252.12, 248.88);
810
+ }
811
+ .lib-xplat-button.secondary.xplat-green-200 {
812
+ color: #98D8AC;
813
+ border-color: #98D8AC;
814
+ }
815
+ .lib-xplat-button.secondary.xplat-green-200:hover {
816
+ background-color: rgb(242.64, 250.32, 245.04);
817
+ }
818
+ .lib-xplat-button.secondary.xplat-green-300 {
819
+ color: #6CCA8B;
820
+ border-color: #6CCA8B;
821
+ }
822
+ .lib-xplat-button.secondary.xplat-green-300:hover {
823
+ background-color: rgb(237.36, 248.64, 241.08);
824
+ }
825
+ .lib-xplat-button.secondary.xplat-green-400 {
826
+ color: #47BE72;
827
+ border-color: #47BE72;
828
+ }
829
+ .lib-xplat-button.secondary.xplat-green-400:hover {
830
+ background-color: rgb(232.92, 247.2, 238.08);
831
+ }
832
+ .lib-xplat-button.secondary.xplat-green-500 {
833
+ color: #10B259;
834
+ border-color: #10B259;
835
+ }
836
+ .lib-xplat-button.secondary.xplat-green-500:hover {
837
+ background-color: rgb(226.32, 245.76, 235.08);
838
+ }
839
+ .lib-xplat-button.secondary.xplat-green-600 {
840
+ color: #00A34F;
841
+ border-color: #00A34F;
842
+ }
843
+ .lib-xplat-button.secondary.xplat-green-600:hover {
844
+ background-color: rgb(224.4, 243.96, 233.88);
845
+ }
846
+ .lib-xplat-button.secondary.xplat-green-700 {
847
+ color: #009143;
848
+ border-color: #009143;
849
+ }
850
+ .lib-xplat-button.secondary.xplat-green-700:hover {
851
+ background-color: rgb(224.4, 241.8, 232.44);
852
+ }
853
+ .lib-xplat-button.secondary.xplat-green-800 {
854
+ color: #007F38;
855
+ border-color: #007F38;
856
+ }
857
+ .lib-xplat-button.secondary.xplat-green-800:hover {
858
+ background-color: rgb(224.4, 239.64, 231.12);
859
+ }
860
+ .lib-xplat-button.secondary.xplat-green-900 {
861
+ color: #006024;
862
+ border-color: #006024;
863
+ }
864
+ .lib-xplat-button.secondary.xplat-green-900:hover {
865
+ background-color: rgb(224.4, 235.92, 228.72);
866
+ }
867
+ .lib-xplat-button.secondary.xplat-orange-50 {
868
+ color: #FFF8EC;
869
+ border-color: #FFF8EC;
870
+ }
871
+ .lib-xplat-button.secondary.xplat-orange-50:hover {
872
+ background-color: rgb(255, 254.16, 252.72);
873
+ }
874
+ .lib-xplat-button.secondary.xplat-orange-100 {
875
+ color: #FFF0D3;
876
+ border-color: #FFF0D3;
877
+ }
878
+ .lib-xplat-button.secondary.xplat-orange-100:hover {
879
+ background-color: rgb(255, 253.2, 249.72);
880
+ }
881
+ .lib-xplat-button.secondary.xplat-orange-200 {
882
+ color: #FFDDA5;
883
+ border-color: #FFDDA5;
884
+ }
885
+ .lib-xplat-button.secondary.xplat-orange-200:hover {
886
+ background-color: rgb(255, 250.92, 244.2);
887
+ }
888
+ .lib-xplat-button.secondary.xplat-orange-300 {
889
+ color: #FFC46D;
890
+ border-color: #FFC46D;
891
+ }
892
+ .lib-xplat-button.secondary.xplat-orange-300:hover {
893
+ background-color: rgb(255, 247.92, 237.48);
894
+ }
895
+ .lib-xplat-button.secondary.xplat-orange-400 {
896
+ color: #FF9F32;
897
+ border-color: #FF9F32;
898
+ }
899
+ .lib-xplat-button.secondary.xplat-orange-400:hover {
900
+ background-color: rgb(255, 243.48, 230.4);
901
+ }
902
+ .lib-xplat-button.secondary.xplat-orange-500 {
903
+ color: #FF820A;
904
+ border-color: #FF820A;
905
+ }
906
+ .lib-xplat-button.secondary.xplat-orange-500:hover {
907
+ background-color: rgb(255, 240, 225.6);
908
+ }
909
+ .lib-xplat-button.secondary.xplat-orange-600 {
910
+ color: #FF6900;
911
+ border-color: #FF6900;
912
+ }
913
+ .lib-xplat-button.secondary.xplat-orange-600:hover {
914
+ background-color: rgb(255, 237, 224.4);
915
+ }
916
+ .lib-xplat-button.secondary.xplat-orange-700 {
917
+ color: #CC4B02;
918
+ border-color: #CC4B02;
919
+ }
920
+ .lib-xplat-button.secondary.xplat-orange-700:hover {
921
+ background-color: rgb(248.88, 233.4, 224.64);
922
+ }
923
+ .lib-xplat-button.secondary.xplat-orange-800 {
924
+ color: #A13A0B;
925
+ border-color: #A13A0B;
926
+ }
927
+ .lib-xplat-button.secondary.xplat-orange-800:hover {
928
+ background-color: rgb(243.72, 231.36, 225.72);
929
+ }
930
+ .lib-xplat-button.secondary.xplat-orange-900 {
931
+ color: #82320C;
932
+ border-color: #82320C;
933
+ }
934
+ .lib-xplat-button.secondary.xplat-orange-900:hover {
935
+ background-color: rgb(240, 230.4, 225.84);
936
+ }
937
+ .lib-xplat-button.secondary.xplat-yellow-50 {
938
+ color: #FFFDE7;
939
+ border-color: #FFFDE7;
940
+ }
941
+ .lib-xplat-button.secondary.xplat-yellow-50:hover {
942
+ background-color: rgb(255, 254.76, 252.12);
943
+ }
944
+ .lib-xplat-button.secondary.xplat-yellow-100 {
945
+ color: #FFFAC1;
946
+ border-color: #FFFAC1;
947
+ }
948
+ .lib-xplat-button.secondary.xplat-yellow-100:hover {
949
+ background-color: rgb(255, 254.4, 247.56);
950
+ }
951
+ .lib-xplat-button.secondary.xplat-yellow-200 {
952
+ color: #FFF186;
953
+ border-color: #FFF186;
954
+ }
955
+ .lib-xplat-button.secondary.xplat-yellow-200:hover {
956
+ background-color: rgb(255, 253.32, 240.48);
957
+ }
958
+ .lib-xplat-button.secondary.xplat-yellow-300 {
959
+ color: #FFE041;
960
+ border-color: #FFE041;
961
+ }
962
+ .lib-xplat-button.secondary.xplat-yellow-300:hover {
963
+ background-color: rgb(255, 251.28, 232.2);
964
+ }
965
+ .lib-xplat-button.secondary.xplat-yellow-400 {
966
+ color: #FFCC0D;
967
+ border-color: #FFCC0D;
968
+ }
969
+ .lib-xplat-button.secondary.xplat-yellow-400:hover {
970
+ background-color: rgb(255, 248.88, 225.96);
971
+ }
972
+ .lib-xplat-button.secondary.xplat-yellow-500 {
973
+ color: #F0B100;
974
+ border-color: #F0B100;
975
+ }
976
+ .lib-xplat-button.secondary.xplat-yellow-500:hover {
977
+ background-color: rgb(253.2, 245.64, 224.4);
978
+ }
979
+ .lib-xplat-button.secondary.xplat-yellow-600 {
980
+ color: #D18800;
981
+ border-color: #D18800;
982
+ }
983
+ .lib-xplat-button.secondary.xplat-yellow-600:hover {
984
+ background-color: rgb(249.48, 240.72, 224.4);
985
+ }
986
+ .lib-xplat-button.secondary.xplat-yellow-700 {
987
+ color: #A66002;
988
+ border-color: #A66002;
989
+ }
990
+ .lib-xplat-button.secondary.xplat-yellow-700:hover {
991
+ background-color: rgb(244.32, 235.92, 224.64);
992
+ }
993
+ .lib-xplat-button.secondary.xplat-yellow-800 {
994
+ color: #894B0A;
995
+ border-color: #894B0A;
996
+ }
997
+ .lib-xplat-button.secondary.xplat-yellow-800:hover {
998
+ background-color: rgb(240.84, 233.4, 225.6);
999
+ }
1000
+ .lib-xplat-button.secondary.xplat-yellow-900 {
1001
+ color: #743D0F;
1002
+ border-color: #743D0F;
1003
+ }
1004
+ .lib-xplat-button.secondary.xplat-yellow-900:hover {
1005
+ background-color: rgb(238.32, 231.72, 226.2);
1006
+ }
1007
+ .lib-xplat-button.secondary.xplat-blue-50 {
1008
+ color: #F1F4FD;
1009
+ border-color: #F1F4FD;
1010
+ }
1011
+ .lib-xplat-button.secondary.xplat-blue-50:hover {
1012
+ background-color: rgb(253.32, 253.68, 254.76);
1013
+ }
1014
+ .lib-xplat-button.secondary.xplat-blue-100 {
1015
+ color: #DFE7FA;
1016
+ border-color: #DFE7FA;
1017
+ }
1018
+ .lib-xplat-button.secondary.xplat-blue-100:hover {
1019
+ background-color: rgb(251.16, 252.12, 254.4);
1020
+ }
1021
+ .lib-xplat-button.secondary.xplat-blue-200 {
1022
+ color: #C5D4F8;
1023
+ border-color: #C5D4F8;
1024
+ }
1025
+ .lib-xplat-button.secondary.xplat-blue-200:hover {
1026
+ background-color: rgb(248.04, 249.84, 254.16);
1027
+ }
1028
+ .lib-xplat-button.secondary.xplat-blue-300 {
1029
+ color: #9EB8F2;
1030
+ border-color: #9EB8F2;
1031
+ }
1032
+ .lib-xplat-button.secondary.xplat-blue-300:hover {
1033
+ background-color: rgb(243.36, 246.48, 253.44);
1034
+ }
1035
+ .lib-xplat-button.secondary.xplat-blue-400 {
1036
+ color: #7093EA;
1037
+ border-color: #7093EA;
1038
+ }
1039
+ .lib-xplat-button.secondary.xplat-blue-400:hover {
1040
+ background-color: rgb(237.84, 242.04, 252.48);
1041
+ }
1042
+ .lib-xplat-button.secondary.xplat-blue-500 {
1043
+ color: #4D6DE3;
1044
+ border-color: #4D6DE3;
1045
+ }
1046
+ .lib-xplat-button.secondary.xplat-blue-500:hover {
1047
+ background-color: rgb(233.64, 237.48, 251.64);
1048
+ }
1049
+ .lib-xplat-button.secondary.xplat-blue-600 {
1050
+ color: #3950D7;
1051
+ border-color: #3950D7;
1052
+ }
1053
+ .lib-xplat-button.secondary.xplat-blue-600:hover {
1054
+ background-color: rgb(231.24, 234, 250.2);
1055
+ }
1056
+ .lib-xplat-button.secondary.xplat-blue-700 {
1057
+ color: #303EC5;
1058
+ border-color: #303EC5;
1059
+ }
1060
+ .lib-xplat-button.secondary.xplat-blue-700:hover {
1061
+ background-color: rgb(230.16, 231.84, 248.04);
1062
+ }
1063
+ .lib-xplat-button.secondary.xplat-blue-800 {
1064
+ color: #2D35A0;
1065
+ border-color: #2D35A0;
1066
+ }
1067
+ .lib-xplat-button.secondary.xplat-blue-800:hover {
1068
+ background-color: rgb(229.8, 230.76, 243.6);
1069
+ }
1070
+ .lib-xplat-button.secondary.xplat-blue-900 {
1071
+ color: #29317F;
1072
+ border-color: #29317F;
1073
+ }
1074
+ .lib-xplat-button.secondary.xplat-blue-900:hover {
1075
+ background-color: rgb(229.32, 230.28, 239.64);
1076
+ }
1077
+ .lib-xplat-button.secondary.xplat-lightblue-50 {
1078
+ color: #EEFAFF;
1079
+ border-color: #EEFAFF;
1080
+ }
1081
+ .lib-xplat-button.secondary.xplat-lightblue-50:hover {
1082
+ background-color: rgb(252.96, 254.4, 255);
1083
+ }
1084
+ .lib-xplat-button.secondary.xplat-lightblue-100 {
1085
+ color: #D9F4FF;
1086
+ border-color: #D9F4FF;
1087
+ }
1088
+ .lib-xplat-button.secondary.xplat-lightblue-100:hover {
1089
+ background-color: rgb(250.44, 253.68, 255);
1090
+ }
1091
+ .lib-xplat-button.secondary.xplat-lightblue-200 {
1092
+ color: #BBEDFF;
1093
+ border-color: #BBEDFF;
1094
+ }
1095
+ .lib-xplat-button.secondary.xplat-lightblue-200:hover {
1096
+ background-color: rgb(246.84, 252.84, 255);
1097
+ }
1098
+ .lib-xplat-button.secondary.xplat-lightblue-300 {
1099
+ color: #8DE3FF;
1100
+ border-color: #8DE3FF;
1101
+ }
1102
+ .lib-xplat-button.secondary.xplat-lightblue-300:hover {
1103
+ background-color: rgb(241.32, 251.64, 255);
1104
+ }
1105
+ .lib-xplat-button.secondary.xplat-lightblue-400 {
1106
+ color: #57D0FF;
1107
+ border-color: #57D0FF;
1108
+ }
1109
+ .lib-xplat-button.secondary.xplat-lightblue-400:hover {
1110
+ background-color: rgb(234.84, 249.36, 255);
1111
+ }
1112
+ .lib-xplat-button.secondary.xplat-lightblue-500 {
1113
+ color: #30B6FF;
1114
+ border-color: #30B6FF;
1115
+ }
1116
+ .lib-xplat-button.secondary.xplat-lightblue-500:hover {
1117
+ background-color: rgb(230.16, 246.24, 255);
1118
+ }
1119
+ .lib-xplat-button.secondary.xplat-lightblue-600 {
1120
+ color: #1999F7;
1121
+ border-color: #1999F7;
1122
+ }
1123
+ .lib-xplat-button.secondary.xplat-lightblue-600:hover {
1124
+ background-color: rgb(227.4, 242.76, 254.04);
1125
+ }
1126
+ .lib-xplat-button.secondary.xplat-lightblue-700 {
1127
+ color: #1280E3;
1128
+ border-color: #1280E3;
1129
+ }
1130
+ .lib-xplat-button.secondary.xplat-lightblue-700:hover {
1131
+ background-color: rgb(226.56, 239.76, 251.64);
1132
+ }
1133
+ .lib-xplat-button.secondary.xplat-lightblue-800 {
1134
+ color: #1566B8;
1135
+ border-color: #1566B8;
1136
+ }
1137
+ .lib-xplat-button.secondary.xplat-lightblue-800:hover {
1138
+ background-color: rgb(226.92, 236.64, 246.48);
1139
+ }
1140
+ .lib-xplat-button.secondary.xplat-lightblue-900 {
1141
+ color: #175791;
1142
+ border-color: #175791;
1143
+ }
1144
+ .lib-xplat-button.secondary.xplat-lightblue-900:hover {
1145
+ background-color: rgb(227.16, 234.84, 241.8);
1146
+ }
1147
+ .lib-xplat-button.secondary.xplat-purple-50 {
1148
+ color: #FBF6FE;
1149
+ border-color: #FBF6FE;
1150
+ }
1151
+ .lib-xplat-button.secondary.xplat-purple-50:hover {
1152
+ background-color: rgb(254.52, 253.92, 254.88);
1153
+ }
1154
+ .lib-xplat-button.secondary.xplat-purple-100 {
1155
+ color: #F5EAFD;
1156
+ border-color: #F5EAFD;
1157
+ }
1158
+ .lib-xplat-button.secondary.xplat-purple-100:hover {
1159
+ background-color: rgb(253.8, 252.48, 254.76);
1160
+ }
1161
+ .lib-xplat-button.secondary.xplat-purple-200 {
1162
+ color: #EDD8FC;
1163
+ border-color: #EDD8FC;
1164
+ }
1165
+ .lib-xplat-button.secondary.xplat-purple-200:hover {
1166
+ background-color: rgb(252.84, 250.32, 254.64);
1167
+ }
1168
+ .lib-xplat-button.secondary.xplat-purple-300 {
1169
+ color: #E0BAF8;
1170
+ border-color: #E0BAF8;
1171
+ }
1172
+ .lib-xplat-button.secondary.xplat-purple-300:hover {
1173
+ background-color: rgb(251.28, 246.72, 254.16);
1174
+ }
1175
+ .lib-xplat-button.secondary.xplat-purple-400 {
1176
+ color: #CD8DF3;
1177
+ border-color: #CD8DF3;
1178
+ }
1179
+ .lib-xplat-button.secondary.xplat-purple-400:hover {
1180
+ background-color: rgb(249, 241.32, 253.56);
1181
+ }
1182
+ .lib-xplat-button.secondary.xplat-purple-500 {
1183
+ color: #B961EB;
1184
+ border-color: #B961EB;
1185
+ }
1186
+ .lib-xplat-button.secondary.xplat-purple-500:hover {
1187
+ background-color: rgb(246.6, 236.04, 252.6);
1188
+ }
1189
+ .lib-xplat-button.secondary.xplat-purple-600 {
1190
+ color: #A541DC;
1191
+ border-color: #A541DC;
1192
+ }
1193
+ .lib-xplat-button.secondary.xplat-purple-600:hover {
1194
+ background-color: rgb(244.2, 232.2, 250.8);
1195
+ }
1196
+ .lib-xplat-button.secondary.xplat-purple-700 {
1197
+ color: #9230C5;
1198
+ border-color: #9230C5;
1199
+ }
1200
+ .lib-xplat-button.secondary.xplat-purple-700:hover {
1201
+ background-color: rgb(241.92, 230.16, 248.04);
1202
+ }
1203
+ .lib-xplat-button.secondary.xplat-purple-800 {
1204
+ color: #782B9E;
1205
+ border-color: #782B9E;
1206
+ }
1207
+ .lib-xplat-button.secondary.xplat-purple-800:hover {
1208
+ background-color: rgb(238.8, 229.56, 243.36);
1209
+ }
1210
+ .lib-xplat-button.secondary.xplat-purple-900 {
1211
+ color: #62247F;
1212
+ border-color: #62247F;
1213
+ }
1214
+ .lib-xplat-button.secondary.xplat-purple-900:hover {
1215
+ background-color: rgb(236.16, 228.72, 239.64);
1216
+ }
1217
+ .lib-xplat-button.secondary.xplat-pink-50 {
1218
+ color: #FFF4FE;
1219
+ border-color: #FFF4FE;
1220
+ }
1221
+ .lib-xplat-button.secondary.xplat-pink-50:hover {
1222
+ background-color: rgb(255, 253.68, 254.88);
1223
+ }
1224
+ .lib-xplat-button.secondary.xplat-pink-100 {
1225
+ color: #FFE7FD;
1226
+ border-color: #FFE7FD;
1227
+ }
1228
+ .lib-xplat-button.secondary.xplat-pink-100:hover {
1229
+ background-color: rgb(255, 252.12, 254.76);
1230
+ }
1231
+ .lib-xplat-button.secondary.xplat-pink-200 {
1232
+ color: #FFCFFA;
1233
+ border-color: #FFCFFA;
1234
+ }
1235
+ .lib-xplat-button.secondary.xplat-pink-200:hover {
1236
+ background-color: rgb(255, 249.24, 254.4);
1237
+ }
1238
+ .lib-xplat-button.secondary.xplat-pink-300 {
1239
+ color: #FEA9F1;
1240
+ border-color: #FEA9F1;
1241
+ }
1242
+ .lib-xplat-button.secondary.xplat-pink-300:hover {
1243
+ background-color: rgb(254.88, 244.68, 253.32);
1244
+ }
1245
+ .lib-xplat-button.secondary.xplat-pink-400 {
1246
+ color: #FD75E7;
1247
+ border-color: #FD75E7;
1248
+ }
1249
+ .lib-xplat-button.secondary.xplat-pink-400:hover {
1250
+ background-color: rgb(254.76, 238.44, 252.12);
1251
+ }
1252
+ .lib-xplat-button.secondary.xplat-pink-500 {
1253
+ color: #F553DA;
1254
+ border-color: #F553DA;
1255
+ }
1256
+ .lib-xplat-button.secondary.xplat-pink-500:hover {
1257
+ background-color: rgb(253.8, 234.36, 250.56);
1258
+ }
1259
+ .lib-xplat-button.secondary.xplat-pink-600 {
1260
+ color: #D821B6;
1261
+ border-color: #D821B6;
1262
+ }
1263
+ .lib-xplat-button.secondary.xplat-pink-600:hover {
1264
+ background-color: rgb(250.32, 228.36, 246.24);
1265
+ }
1266
+ .lib-xplat-button.secondary.xplat-pink-700 {
1267
+ color: #B31892;
1268
+ border-color: #B31892;
1269
+ }
1270
+ .lib-xplat-button.secondary.xplat-pink-700:hover {
1271
+ background-color: rgb(245.88, 227.28, 241.92);
1272
+ }
1273
+ .lib-xplat-button.secondary.xplat-pink-800 {
1274
+ color: #921676;
1275
+ border-color: #921676;
1276
+ }
1277
+ .lib-xplat-button.secondary.xplat-pink-800:hover {
1278
+ background-color: rgb(241.92, 227.04, 238.56);
1279
+ }
1280
+ .lib-xplat-button.secondary.xplat-pink-900 {
1281
+ color: #781761;
1282
+ border-color: #781761;
1283
+ }
1284
+ .lib-xplat-button.secondary.xplat-pink-900:hover {
1285
+ background-color: rgb(238.8, 227.16, 236.04);
1286
+ }
1287
+ .lib-xplat-button.secondary.xplat-neutral-50 {
1288
+ color: #FAFAFA;
1289
+ border-color: #FAFAFA;
1290
+ }
1291
+ .lib-xplat-button.secondary.xplat-neutral-50:hover {
1292
+ background-color: rgb(254.4, 254.4, 254.4);
1293
+ }
1294
+ .lib-xplat-button.secondary.xplat-neutral-100 {
1295
+ color: #F5F5F5;
1296
+ border-color: #F5F5F5;
1297
+ }
1298
+ .lib-xplat-button.secondary.xplat-neutral-100:hover {
1299
+ background-color: rgb(253.8, 253.8, 253.8);
1300
+ }
1301
+ .lib-xplat-button.secondary.xplat-neutral-200 {
1302
+ color: #E5E5E5;
1303
+ border-color: #E5E5E5;
1304
+ }
1305
+ .lib-xplat-button.secondary.xplat-neutral-200:hover {
1306
+ background-color: rgb(251.88, 251.88, 251.88);
1307
+ }
1308
+ .lib-xplat-button.secondary.xplat-neutral-300 {
1309
+ color: #D4D4D4;
1310
+ border-color: #D4D4D4;
1311
+ }
1312
+ .lib-xplat-button.secondary.xplat-neutral-300:hover {
1313
+ background-color: rgb(249.84, 249.84, 249.84);
1314
+ }
1315
+ .lib-xplat-button.secondary.xplat-neutral-400 {
1316
+ color: #A1A1A1;
1317
+ border-color: #A1A1A1;
1318
+ }
1319
+ .lib-xplat-button.secondary.xplat-neutral-400:hover {
1320
+ background-color: rgb(243.72, 243.72, 243.72);
1321
+ }
1322
+ .lib-xplat-button.secondary.xplat-neutral-500 {
1323
+ color: #737373;
1324
+ border-color: #737373;
1325
+ }
1326
+ .lib-xplat-button.secondary.xplat-neutral-500:hover {
1327
+ background-color: rgb(238.2, 238.2, 238.2);
1328
+ }
1329
+ .lib-xplat-button.secondary.xplat-neutral-600 {
1330
+ color: #525252;
1331
+ border-color: #525252;
1332
+ }
1333
+ .lib-xplat-button.secondary.xplat-neutral-600:hover {
1334
+ background-color: rgb(234.24, 234.24, 234.24);
1335
+ }
1336
+ .lib-xplat-button.secondary.xplat-neutral-700 {
1337
+ color: #404040;
1338
+ border-color: #404040;
1339
+ }
1340
+ .lib-xplat-button.secondary.xplat-neutral-700:hover {
1341
+ background-color: rgb(232.08, 232.08, 232.08);
1342
+ }
1343
+ .lib-xplat-button.secondary.xplat-neutral-800 {
1344
+ color: #262626;
1345
+ border-color: #262626;
1346
+ }
1347
+ .lib-xplat-button.secondary.xplat-neutral-800:hover {
1348
+ background-color: rgb(228.96, 228.96, 228.96);
1349
+ }
1350
+ .lib-xplat-button.secondary.xplat-neutral-900 {
1351
+ color: #171717;
1352
+ border-color: #171717;
1353
+ }
1354
+ .lib-xplat-button.secondary.xplat-neutral-900:hover {
1355
+ background-color: rgb(227.16, 227.16, 227.16);
1356
+ }
1357
+ .lib-xplat-button.secondary.xplat-black {
1358
+ color: #000000;
1359
+ border-color: #000000;
1360
+ }
1361
+ .lib-xplat-button.secondary.xplat-black:hover {
1362
+ background-color: rgb(224.4, 224.4, 224.4);
1363
+ }
1364
+ .lib-xplat-button.secondary.xplat-white {
1365
+ color: #FFFFFF;
1366
+ border-color: #FFFFFF;
1367
+ }
1368
+ .lib-xplat-button.secondary.xplat-white:hover {
1369
+ background-color: white;
1370
+ }
1371
+ .lib-xplat-button.secondary.test-default {
1372
+ color: #ffffff;
1373
+ border-color: #ffffff;
1374
+ }
1375
+ .lib-xplat-button.secondary.test-default:hover {
1376
+ background-color: white;
1377
+ }
1378
+
1379
+ /* src/components/Modal/modal.scss */
1380
+ .lib-xplat-modal {
1381
+ z-index: 11;
1382
+ }
1383
+ .lib-xplat-modal.modal-box {
1384
+ position: fixed;
1385
+ top: 50%;
1386
+ left: 50%;
1387
+ border-radius: 12px;
1388
+ background-color: #fff;
1389
+ padding: 24px;
1390
+ transform: translate(-50%, -50%) scale(0.9);
1391
+ opacity: 0;
1392
+ transition: transform 0.2s ease, opacity 0.2s ease;
1393
+ }
1394
+ .lib-xplat-modal.modal-box.enter {
1395
+ transform: translate(-50%, -50%) scale(1);
1396
+ opacity: 1;
1397
+ }
1398
+ .lib-xplat-modal.modal-box.exit {
1399
+ transform: translate(-50%, -50%) scale(0.9);
1400
+ opacity: 0;
1401
+ }
1402
+ .lib-xplat-modal.dim {
1403
+ position: fixed;
1404
+ inset: 0;
1405
+ display: flex;
1406
+ align-items: center;
1407
+ justify-content: center;
1408
+ opacity: 0;
1409
+ background-color: rgba(0, 0, 0, 0.3);
1410
+ transition: opacity 0.2s ease;
1411
+ }
1412
+ .lib-xplat-modal.dim.enter {
1413
+ opacity: 1;
1414
+ }
1415
+ .lib-xplat-modal.dim.exit {
1416
+ opacity: 0;
1417
+ }