@kaizen/components 1.70.16 → 1.70.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/ToggleSwitch/ToggleSwitch/ToggleSwitch.cjs +6 -4
- package/dist/cjs/ToggleSwitch/ToggleSwitch/ToggleSwitch.module.scss.cjs +1 -0
- package/dist/esm/ToggleSwitch/ToggleSwitch/ToggleSwitch.mjs +6 -4
- package/dist/esm/ToggleSwitch/ToggleSwitch/ToggleSwitch.module.scss.mjs +1 -0
- package/dist/styles.css +1682 -1673
- package/dist/types/ToggleSwitch/ToggleSwitch/ToggleSwitch.d.ts +1 -1
- package/package.json +1 -1
- package/src/ToggleSwitch/ToggleSwitch/ToggleSwitch.module.scss +21 -9
- package/src/ToggleSwitch/ToggleSwitch/ToggleSwitch.tsx +4 -2
package/dist/styles.css
CHANGED
|
@@ -196,6 +196,55 @@
|
|
|
196
196
|
letter-spacing: var(--typography-heading-3-letter-spacing);
|
|
197
197
|
}
|
|
198
198
|
|
|
199
|
+
.ButtonGroup-module_buttonGroup__V0Pf9 {
|
|
200
|
+
--focus-ring-offset: 1px;
|
|
201
|
+
--focus-ring-offset-inner: calc(-1 * var(--focus-ring-offset));
|
|
202
|
+
|
|
203
|
+
display: inline-flex;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.ButtonGroup-module_child__j1SVF {
|
|
207
|
+
border-radius: 0;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.ButtonGroup-module_child__j1SVF:focus-visible::after {
|
|
211
|
+
border-radius: 0;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.ButtonGroup-module_child__j1SVF:not(.ButtonGroup-module_firstChild__ys3PS) {
|
|
215
|
+
border-inline-start: 1px solid var(--color-blue-300);
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.ButtonGroup-module_child__j1SVF:not(.ButtonGroup-module_firstChild__ys3PS, .ButtonGroup-module_lastChild__WBOpN) {
|
|
219
|
+
&:focus-visible {
|
|
220
|
+
&::after {
|
|
221
|
+
inset-inline: var(--focus-ring-offset-inner);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.ButtonGroup-module_child__j1SVF.ButtonGroup-module_firstChild__ys3PS {
|
|
227
|
+
border-start-start-radius: var(--border-focus-ring-border-radius);
|
|
228
|
+
border-end-start-radius: var(--border-focus-ring-border-radius);
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.ButtonGroup-module_child__j1SVF.ButtonGroup-module_firstChild__ys3PS:focus-visible::after {
|
|
232
|
+
border-start-start-radius: var(--border-focus-ring-border-radius);
|
|
233
|
+
border-end-start-radius: var(--border-focus-ring-border-radius);
|
|
234
|
+
inset-inline-end: var(--focus-ring-offset-inner);
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.ButtonGroup-module_child__j1SVF.ButtonGroup-module_lastChild__WBOpN {
|
|
238
|
+
border-start-end-radius: var(--border-focus-ring-border-radius);
|
|
239
|
+
border-end-end-radius: var(--border-focus-ring-border-radius);
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.ButtonGroup-module_child__j1SVF.ButtonGroup-module_lastChild__WBOpN:focus-visible::after {
|
|
243
|
+
border-start-end-radius: var(--border-focus-ring-border-radius);
|
|
244
|
+
border-end-end-radius: var(--border-focus-ring-border-radius);
|
|
245
|
+
inset-inline-start: var(--focus-ring-offset-inner);
|
|
246
|
+
}
|
|
247
|
+
|
|
199
248
|
.Brand-module_img__-kq3F {
|
|
200
249
|
max-inline-size: 100%;
|
|
201
250
|
display: flex;
|
|
@@ -395,55 +444,6 @@
|
|
|
395
444
|
}
|
|
396
445
|
}
|
|
397
446
|
|
|
398
|
-
.ButtonGroup-module_buttonGroup__V0Pf9 {
|
|
399
|
-
--focus-ring-offset: 1px;
|
|
400
|
-
--focus-ring-offset-inner: calc(-1 * var(--focus-ring-offset));
|
|
401
|
-
|
|
402
|
-
display: inline-flex;
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
.ButtonGroup-module_child__j1SVF {
|
|
406
|
-
border-radius: 0;
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
.ButtonGroup-module_child__j1SVF:focus-visible::after {
|
|
410
|
-
border-radius: 0;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
.ButtonGroup-module_child__j1SVF:not(.ButtonGroup-module_firstChild__ys3PS) {
|
|
414
|
-
border-inline-start: 1px solid var(--color-blue-300);
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
.ButtonGroup-module_child__j1SVF:not(.ButtonGroup-module_firstChild__ys3PS, .ButtonGroup-module_lastChild__WBOpN) {
|
|
418
|
-
&:focus-visible {
|
|
419
|
-
&::after {
|
|
420
|
-
inset-inline: var(--focus-ring-offset-inner);
|
|
421
|
-
}
|
|
422
|
-
}
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
.ButtonGroup-module_child__j1SVF.ButtonGroup-module_firstChild__ys3PS {
|
|
426
|
-
border-start-start-radius: var(--border-focus-ring-border-radius);
|
|
427
|
-
border-end-start-radius: var(--border-focus-ring-border-radius);
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
.ButtonGroup-module_child__j1SVF.ButtonGroup-module_firstChild__ys3PS:focus-visible::after {
|
|
431
|
-
border-start-start-radius: var(--border-focus-ring-border-radius);
|
|
432
|
-
border-end-start-radius: var(--border-focus-ring-border-radius);
|
|
433
|
-
inset-inline-end: var(--focus-ring-offset-inner);
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
.ButtonGroup-module_child__j1SVF.ButtonGroup-module_lastChild__WBOpN {
|
|
437
|
-
border-start-end-radius: var(--border-focus-ring-border-radius);
|
|
438
|
-
border-end-end-radius: var(--border-focus-ring-border-radius);
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
.ButtonGroup-module_child__j1SVF.ButtonGroup-module_lastChild__WBOpN:focus-visible::after {
|
|
442
|
-
border-start-end-radius: var(--border-focus-ring-border-radius);
|
|
443
|
-
border-end-end-radius: var(--border-focus-ring-border-radius);
|
|
444
|
-
inset-inline-start: var(--focus-ring-offset-inner);
|
|
445
|
-
}
|
|
446
|
-
|
|
447
447
|
.Card-module_wrapper__Hriov {
|
|
448
448
|
color: var(--color-purple-800);
|
|
449
449
|
border: var(--border-width-1) solid var(--card-border-color);
|
|
@@ -650,14 +650,6 @@
|
|
|
650
650
|
}
|
|
651
651
|
}
|
|
652
652
|
|
|
653
|
-
.Container-module_container__jSUGk {
|
|
654
|
-
display: flex;
|
|
655
|
-
width: 100%;
|
|
656
|
-
justify-content: center;
|
|
657
|
-
}
|
|
658
|
-
.Container-module_container__jSUGk *, .Container-module_container__jSUGk *::after, .Container-module_container__jSUGk *::before {
|
|
659
|
-
box-sizing: border-box;
|
|
660
|
-
}
|
|
661
653
|
.GuidanceBlock-module_rightMargin__T6JO2 {
|
|
662
654
|
margin-right: var(--spacing-8);
|
|
663
655
|
}
|
|
@@ -943,6 +935,14 @@
|
|
|
943
935
|
}
|
|
944
936
|
/* stylelint-enable no-descending-specificity */
|
|
945
937
|
|
|
938
|
+
.Container-module_container__jSUGk {
|
|
939
|
+
display: flex;
|
|
940
|
+
width: 100%;
|
|
941
|
+
justify-content: center;
|
|
942
|
+
}
|
|
943
|
+
.Container-module_container__jSUGk *, .Container-module_container__jSUGk *::after, .Container-module_container__jSUGk *::before {
|
|
944
|
+
box-sizing: border-box;
|
|
945
|
+
}
|
|
946
946
|
.LinkButton-module_linkButton__Kvn6k {
|
|
947
947
|
/* Reset */
|
|
948
948
|
text-decoration: inherit;
|
|
@@ -1483,23 +1483,6 @@
|
|
|
1483
1483
|
}
|
|
1484
1484
|
}
|
|
1485
1485
|
|
|
1486
|
-
/* This a temporary fix to increase specificity, until we figure out why this CSS is being compiled later than the padding in the FilterContents sub-component */
|
|
1487
|
-
.FilterSelect-module_filterContents__--oQN.FilterSelect-module_filterContents__--oQN {
|
|
1488
|
-
box-sizing: border-box;
|
|
1489
|
-
min-width: 12.25rem; /* 196px */
|
|
1490
|
-
max-width: 25rem; /* 400px */
|
|
1491
|
-
overflow: auto;
|
|
1492
|
-
padding: unset; /* Padding is added by <SelectPopoverContents> */
|
|
1493
|
-
}
|
|
1494
|
-
|
|
1495
|
-
@media (width <= 320px) {
|
|
1496
|
-
.FilterDateRangePicker-module_filterDateRangePickerContents__P7eNa {
|
|
1497
|
-
padding: var(--spacing-16);
|
|
1498
|
-
max-width: 320px;
|
|
1499
|
-
box-sizing: border-box;
|
|
1500
|
-
}
|
|
1501
|
-
}
|
|
1502
|
-
|
|
1503
1486
|
.FilterBar-module_filterBar__JEVKL {
|
|
1504
1487
|
display: flex;
|
|
1505
1488
|
padding: var(--spacing-8);
|
|
@@ -1520,6 +1503,23 @@
|
|
|
1520
1503
|
gap: var(--spacing-8);
|
|
1521
1504
|
}
|
|
1522
1505
|
|
|
1506
|
+
/* This a temporary fix to increase specificity, until we figure out why this CSS is being compiled later than the padding in the FilterContents sub-component */
|
|
1507
|
+
.FilterSelect-module_filterContents__--oQN.FilterSelect-module_filterContents__--oQN {
|
|
1508
|
+
box-sizing: border-box;
|
|
1509
|
+
min-width: 12.25rem; /* 196px */
|
|
1510
|
+
max-width: 25rem; /* 400px */
|
|
1511
|
+
overflow: auto;
|
|
1512
|
+
padding: unset; /* Padding is added by <SelectPopoverContents> */
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1515
|
+
@media (width <= 320px) {
|
|
1516
|
+
.FilterDateRangePicker-module_filterDateRangePickerContents__P7eNa {
|
|
1517
|
+
padding: var(--spacing-16);
|
|
1518
|
+
max-width: 320px;
|
|
1519
|
+
box-sizing: border-box;
|
|
1520
|
+
}
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
1523
|
.LiveIcon-module_liveIcon__v6FG- {
|
|
1524
1524
|
display: inline-block;
|
|
1525
1525
|
position: relative;
|
|
@@ -1650,6 +1650,18 @@
|
|
|
1650
1650
|
margin: 0 var(--spacing-4);
|
|
1651
1651
|
}
|
|
1652
1652
|
|
|
1653
|
+
.NotificationIcon-module_notificationIcon__4xH0m {
|
|
1654
|
+
font-size: inherit;
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.Wrapper-module_wrapper__-tWQy {
|
|
1658
|
+
display: grid;
|
|
1659
|
+
grid-template-rows: min-content 1fr min-content;
|
|
1660
|
+
position: relative;
|
|
1661
|
+
min-height: 100vh;
|
|
1662
|
+
background: var(--color-gray-100);
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1653
1665
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
1654
1666
|
.Content-module_content__ZeTRs {
|
|
1655
1667
|
max-width: 1392px;
|
|
@@ -1662,21 +1674,13 @@
|
|
|
1662
1674
|
width: calc(100% - 2 * 12px);
|
|
1663
1675
|
}
|
|
1664
1676
|
}
|
|
1665
|
-
.NotificationIcon-module_notificationIcon__4xH0m {
|
|
1666
|
-
font-size: inherit;
|
|
1667
|
-
}
|
|
1668
|
-
|
|
1669
1677
|
.Main-module_main__K9Z0C {
|
|
1670
1678
|
/* This is set so children will sit beneath the header and footer when sticky */
|
|
1671
1679
|
z-index: 0;
|
|
1672
1680
|
}
|
|
1673
1681
|
|
|
1674
|
-
.
|
|
1675
|
-
|
|
1676
|
-
grid-template-rows: min-content 1fr min-content;
|
|
1677
|
-
position: relative;
|
|
1678
|
-
min-height: 100vh;
|
|
1679
|
-
background: var(--color-gray-100);
|
|
1682
|
+
.FilterContents-module_filterContents__LEVFe {
|
|
1683
|
+
padding: var(--spacing-24);
|
|
1680
1684
|
}
|
|
1681
1685
|
|
|
1682
1686
|
.FilterPopover-module_filterPopover__ZAkra {
|
|
@@ -1687,10 +1691,6 @@
|
|
|
1687
1691
|
display: inline-flex;
|
|
1688
1692
|
}
|
|
1689
1693
|
|
|
1690
|
-
.FilterContents-module_filterContents__LEVFe {
|
|
1691
|
-
padding: var(--spacing-24);
|
|
1692
|
-
}
|
|
1693
|
-
|
|
1694
1694
|
@media (width < 768px) {
|
|
1695
1695
|
.FilterBarMultiSelect-module_filterMultiSelect__a4enz {
|
|
1696
1696
|
flex-basis: 100%;
|
|
@@ -1742,6 +1742,10 @@
|
|
|
1742
1742
|
transform: translate(-50%, -50%);
|
|
1743
1743
|
}
|
|
1744
1744
|
|
|
1745
|
+
.FilterBarButton-module_filterBarButton__3IF-- {
|
|
1746
|
+
width: 100%;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1745
1749
|
.TabPanel-module_tabPanel__aBPwQ {
|
|
1746
1750
|
border: 2px solid transparent;
|
|
1747
1751
|
|
|
@@ -1755,10 +1759,6 @@
|
|
|
1755
1759
|
}
|
|
1756
1760
|
}
|
|
1757
1761
|
|
|
1758
|
-
.FilterBarButton-module_filterBarButton__3IF-- {
|
|
1759
|
-
width: 100%;
|
|
1760
|
-
}
|
|
1761
|
-
|
|
1762
1762
|
.Tab-module_tab__wr7-k {
|
|
1763
1763
|
display: inline-flex;
|
|
1764
1764
|
align-items: center;
|
|
@@ -2038,43 +2038,22 @@
|
|
|
2038
2038
|
}
|
|
2039
2039
|
}
|
|
2040
2040
|
|
|
2041
|
-
.
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2041
|
+
.Actions-module_actions__JzCWB {
|
|
2042
|
+
grid-area: actions;
|
|
2043
|
+
display: flex;
|
|
2044
|
+
flex-direction: column;
|
|
2045
2045
|
flex-grow: 1;
|
|
2046
2046
|
justify-content: center;
|
|
2047
2047
|
align-items: center;
|
|
2048
|
-
padding: var(--spacing-24) var(--spacing-12);
|
|
2049
|
-
background: var(--color-white);
|
|
2050
|
-
gap: var(--spacing-16);
|
|
2051
|
-
border-top: 2px solid rgba(var(--color-gray-600-rgb), 0.1);
|
|
2052
2048
|
|
|
2053
2049
|
@media (width >= 768px) {
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
z-index: 1;
|
|
2050
|
+
flex-direction: row;
|
|
2051
|
+
align-items: flex-start;
|
|
2052
|
+
justify-content: flex-end;
|
|
2053
|
+
margin-top: calc(-1 * var(--spacing-12));
|
|
2059
2054
|
}
|
|
2060
2055
|
}
|
|
2061
2056
|
|
|
2062
|
-
.FooterActions-module_footerAction__szvPs {
|
|
2063
|
-
display: flex;
|
|
2064
|
-
flex-grow: 1;
|
|
2065
|
-
flex-basis: auto;
|
|
2066
|
-
}
|
|
2067
|
-
|
|
2068
|
-
.FooterActions-module_footerActionPrevious__VJ6j1 {
|
|
2069
|
-
grid-area: 'prev';
|
|
2070
|
-
justify-content: start;
|
|
2071
|
-
}
|
|
2072
|
-
|
|
2073
|
-
.FooterActions-module_footerActionNext__koFhj {
|
|
2074
|
-
grid-area: 'next';
|
|
2075
|
-
justify-content: end;
|
|
2076
|
-
}
|
|
2077
|
-
|
|
2078
2057
|
.Branding-module_branding__g3OoE {
|
|
2079
2058
|
grid-area: branding;
|
|
2080
2059
|
display: flex;
|
|
@@ -2112,19 +2091,40 @@
|
|
|
2112
2091
|
margin-top: var(--spacing-8);
|
|
2113
2092
|
}
|
|
2114
2093
|
|
|
2115
|
-
.
|
|
2116
|
-
grid-area: actions;
|
|
2094
|
+
.FooterActions-module_footerAction__szvPs {
|
|
2117
2095
|
display: flex;
|
|
2118
|
-
flex-
|
|
2096
|
+
flex-grow: 1;
|
|
2097
|
+
flex-basis: auto;
|
|
2098
|
+
}
|
|
2099
|
+
|
|
2100
|
+
.FooterActions-module_footerActionPrevious__VJ6j1 {
|
|
2101
|
+
grid-area: 'prev';
|
|
2102
|
+
justify-content: start;
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2105
|
+
.FooterActions-module_footerActionNext__koFhj {
|
|
2106
|
+
grid-area: 'next';
|
|
2107
|
+
justify-content: end;
|
|
2108
|
+
}
|
|
2109
|
+
|
|
2110
|
+
.FooterRoot-module_footerRoot__-osuZ {
|
|
2111
|
+
display: grid;
|
|
2112
|
+
grid-template-areas: 'prev stepper next';
|
|
2113
|
+
grid-template-columns: 1fr 2fr 1fr;
|
|
2119
2114
|
flex-grow: 1;
|
|
2120
2115
|
justify-content: center;
|
|
2121
2116
|
align-items: center;
|
|
2117
|
+
padding: var(--spacing-24) var(--spacing-12);
|
|
2118
|
+
background: var(--color-white);
|
|
2119
|
+
gap: var(--spacing-16);
|
|
2120
|
+
border-top: 2px solid rgba(var(--color-gray-600-rgb), 0.1);
|
|
2122
2121
|
|
|
2123
2122
|
@media (width >= 768px) {
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2123
|
+
grid-template-columns: 1fr 5fr 1fr;
|
|
2124
|
+
padding: var(--spacing-24) var(--spacing-32);
|
|
2125
|
+
position: sticky;
|
|
2126
|
+
bottom: 0;
|
|
2127
|
+
z-index: 1;
|
|
2128
2128
|
}
|
|
2129
2129
|
}
|
|
2130
2130
|
|
|
@@ -2149,6 +2149,35 @@
|
|
|
2149
2149
|
}
|
|
2150
2150
|
}
|
|
2151
2151
|
|
|
2152
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2153
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2154
|
+
.Divider-module_wrapper__K5mht {
|
|
2155
|
+
width: 100%;
|
|
2156
|
+
border: 0;
|
|
2157
|
+
margin: 0;
|
|
2158
|
+
border-radius: var(--border-solid-border-radius, 7px);
|
|
2159
|
+
visibility: visible;
|
|
2160
|
+
}
|
|
2161
|
+
|
|
2162
|
+
.Divider-module_content__BhDyy, .Divider-module_menuSeparator__kjXV5 {
|
|
2163
|
+
border-top: 1px solid;
|
|
2164
|
+
border-color: rgba(var(--color-gray-600-rgb, 82, 78, 86), 0.1);
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
.Divider-module_canvas__2eQT6 {
|
|
2168
|
+
border-top: 1px solid;
|
|
2169
|
+
border-bottom: 1px solid;
|
|
2170
|
+
border-color: rgba(var(--color-gray-600-rgb, 82, 78, 86), 0.1);
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2173
|
+
.Divider-module_reversed__puJw2 {
|
|
2174
|
+
border-color: rgba(var(--color-white-rgb, 255, 255, 255), 0.1);
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
.Divider-module_menuSeparator__kjXV5 {
|
|
2178
|
+
/* stylelint-disable-line scss/at-extend-no-missing-placeholder */
|
|
2179
|
+
margin: 5px 0;
|
|
2180
|
+
}
|
|
2152
2181
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2153
2182
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2154
2183
|
.ClearButton-module_clearButton__CSOIc {
|
|
@@ -2199,35 +2228,6 @@
|
|
|
2199
2228
|
border-color: var(--color-blue-300, #73c0e8);
|
|
2200
2229
|
}
|
|
2201
2230
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2202
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2203
|
-
.Divider-module_wrapper__K5mht {
|
|
2204
|
-
width: 100%;
|
|
2205
|
-
border: 0;
|
|
2206
|
-
margin: 0;
|
|
2207
|
-
border-radius: var(--border-solid-border-radius, 7px);
|
|
2208
|
-
visibility: visible;
|
|
2209
|
-
}
|
|
2210
|
-
|
|
2211
|
-
.Divider-module_content__BhDyy, .Divider-module_menuSeparator__kjXV5 {
|
|
2212
|
-
border-top: 1px solid;
|
|
2213
|
-
border-color: rgba(var(--color-gray-600-rgb, 82, 78, 86), 0.1);
|
|
2214
|
-
}
|
|
2215
|
-
|
|
2216
|
-
.Divider-module_canvas__2eQT6 {
|
|
2217
|
-
border-top: 1px solid;
|
|
2218
|
-
border-bottom: 1px solid;
|
|
2219
|
-
border-color: rgba(var(--color-gray-600-rgb, 82, 78, 86), 0.1);
|
|
2220
|
-
}
|
|
2221
|
-
|
|
2222
|
-
.Divider-module_reversed__puJw2 {
|
|
2223
|
-
border-color: rgba(var(--color-white-rgb, 255, 255, 255), 0.1);
|
|
2224
|
-
}
|
|
2225
|
-
|
|
2226
|
-
.Divider-module_menuSeparator__kjXV5 {
|
|
2227
|
-
/* stylelint-disable-line scss/at-extend-no-missing-placeholder */
|
|
2228
|
-
margin: 5px 0;
|
|
2229
|
-
}
|
|
2230
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2231
2231
|
.ErrorPage-module_paragraphPadding__-L-qy {
|
|
2232
2232
|
padding: var(--spacing-24, 1.5rem) 0;
|
|
2233
2233
|
}
|
|
@@ -2390,95 +2390,6 @@
|
|
|
2390
2390
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2391
2391
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2392
2392
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2393
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2394
|
-
.Label-module_label__Dmp7q {
|
|
2395
|
-
--icon-vertical-align: text-bottom;
|
|
2396
|
-
}
|
|
2397
|
-
|
|
2398
|
-
.Label-module_label__Dmp7q,
|
|
2399
|
-
.ideal-sans .Label-module_label__Dmp7q {
|
|
2400
|
-
opacity: inherit;
|
|
2401
|
-
color: var(--color-purple-800, #2f2438);
|
|
2402
|
-
visibility: visible;
|
|
2403
|
-
width: 100%;
|
|
2404
|
-
text-align: start;
|
|
2405
|
-
}
|
|
2406
|
-
|
|
2407
|
-
.Label-module_reversed__n6Q4r {
|
|
2408
|
-
color: var(--color-white, #ffffff);
|
|
2409
|
-
}
|
|
2410
|
-
.Label-module_reversed__n6Q4r a {
|
|
2411
|
-
color: var(--color-white, #ffffff);
|
|
2412
|
-
}
|
|
2413
|
-
.Label-module_reversed__n6Q4r a:hover {
|
|
2414
|
-
text-decoration: none;
|
|
2415
|
-
}
|
|
2416
|
-
|
|
2417
|
-
.Label-module_disabled__qOB4e {
|
|
2418
|
-
opacity: 30%;
|
|
2419
|
-
}
|
|
2420
|
-
|
|
2421
|
-
.Label-module_text__LUnIh,
|
|
2422
|
-
.ideal-sans .Label-module_text__LUnIh {
|
|
2423
|
-
font-family: var(--typography-heading-6-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
2424
|
-
font-size: var(--typography-heading-6-font-size, 0.875rem);
|
|
2425
|
-
line-height: var(--typography-heading-6-line-height, 1.5rem);
|
|
2426
|
-
letter-spacing: var(--typography-heading-6-letter-spacing, normal);
|
|
2427
|
-
font-weight: var(--typography-heading-6-font-weight, 600);
|
|
2428
|
-
}
|
|
2429
|
-
|
|
2430
|
-
.Label-module_radio__-Iu-D, .Label-module_checkbox__Fhjww {
|
|
2431
|
-
display: flex;
|
|
2432
|
-
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
2433
|
-
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
2434
|
-
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
2435
|
-
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
2436
|
-
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
2437
|
-
}
|
|
2438
|
-
|
|
2439
|
-
.Label-module_toggle__4tyKF {
|
|
2440
|
-
display: flex;
|
|
2441
|
-
justify-content: space-between;
|
|
2442
|
-
align-items: center;
|
|
2443
|
-
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
2444
|
-
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
2445
|
-
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
2446
|
-
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
2447
|
-
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
2448
|
-
}
|
|
2449
|
-
|
|
2450
|
-
.Label-module_checkbox__Fhjww .Label-module_prependedLabel__pdsEt,
|
|
2451
|
-
.Label-module_radio__-Iu-D .Label-module_prependedLabel__pdsEt,
|
|
2452
|
-
.Label-module_toggle__4tyKF .Label-module_prependedLabel__pdsEt {
|
|
2453
|
-
order: -1;
|
|
2454
|
-
margin-inline-end: var(--spacing-xs, 0.375rem);
|
|
2455
|
-
}
|
|
2456
|
-
.Label-module_checkbox__Fhjww .Label-module_appendedLabel__-OHis,
|
|
2457
|
-
.Label-module_radio__-Iu-D .Label-module_appendedLabel__-OHis,
|
|
2458
|
-
.Label-module_toggle__4tyKF .Label-module_appendedLabel__-OHis {
|
|
2459
|
-
margin-inline-start: var(--spacing-xs, 0.375rem);
|
|
2460
|
-
}
|
|
2461
|
-
|
|
2462
|
-
.Label-module_prominent__SPdrr {
|
|
2463
|
-
font-family: var(--typography-heading-4-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
2464
|
-
font-weight: var(--typography-heading-4-font-weight, 600);
|
|
2465
|
-
font-size: var(--typography-heading-4-font-size, 1.125rem);
|
|
2466
|
-
line-height: var(--typography-heading-4-line-height, 1.5rem);
|
|
2467
|
-
letter-spacing: var(--typography-heading-4-letter-spacing, normal);
|
|
2468
|
-
display: block;
|
|
2469
|
-
margin-bottom: var(--spacing-xs, 0.375rem);
|
|
2470
|
-
}
|
|
2471
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2472
|
-
.MultiSelect-module_toggleContainer__AxNnf {
|
|
2473
|
-
margin-top: var(--spacing-6, 0.375rem);
|
|
2474
|
-
}
|
|
2475
|
-
|
|
2476
|
-
.MultiSelect-module_popover__jI13O {
|
|
2477
|
-
padding: var(--spacing-12, 0.75rem);
|
|
2478
|
-
}
|
|
2479
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2480
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2481
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2482
2393
|
/* stylelint-disable no-descending-specificity */
|
|
2483
2394
|
@keyframes LikertScaleLegacy-module_pop__hTH48 {
|
|
2484
2395
|
0% {
|
|
@@ -2740,6 +2651,95 @@
|
|
|
2740
2651
|
}
|
|
2741
2652
|
/* stylelint-enable no-descending-specificity */
|
|
2742
2653
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2654
|
+
.MultiSelect-module_toggleContainer__AxNnf {
|
|
2655
|
+
margin-top: var(--spacing-6, 0.375rem);
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2658
|
+
.MultiSelect-module_popover__jI13O {
|
|
2659
|
+
padding: var(--spacing-12, 0.75rem);
|
|
2660
|
+
}
|
|
2661
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2662
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2663
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2664
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2665
|
+
.Label-module_label__Dmp7q {
|
|
2666
|
+
--icon-vertical-align: text-bottom;
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2669
|
+
.Label-module_label__Dmp7q,
|
|
2670
|
+
.ideal-sans .Label-module_label__Dmp7q {
|
|
2671
|
+
opacity: inherit;
|
|
2672
|
+
color: var(--color-purple-800, #2f2438);
|
|
2673
|
+
visibility: visible;
|
|
2674
|
+
width: 100%;
|
|
2675
|
+
text-align: start;
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
.Label-module_reversed__n6Q4r {
|
|
2679
|
+
color: var(--color-white, #ffffff);
|
|
2680
|
+
}
|
|
2681
|
+
.Label-module_reversed__n6Q4r a {
|
|
2682
|
+
color: var(--color-white, #ffffff);
|
|
2683
|
+
}
|
|
2684
|
+
.Label-module_reversed__n6Q4r a:hover {
|
|
2685
|
+
text-decoration: none;
|
|
2686
|
+
}
|
|
2687
|
+
|
|
2688
|
+
.Label-module_disabled__qOB4e {
|
|
2689
|
+
opacity: 30%;
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
.Label-module_text__LUnIh,
|
|
2693
|
+
.ideal-sans .Label-module_text__LUnIh {
|
|
2694
|
+
font-family: var(--typography-heading-6-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
2695
|
+
font-size: var(--typography-heading-6-font-size, 0.875rem);
|
|
2696
|
+
line-height: var(--typography-heading-6-line-height, 1.5rem);
|
|
2697
|
+
letter-spacing: var(--typography-heading-6-letter-spacing, normal);
|
|
2698
|
+
font-weight: var(--typography-heading-6-font-weight, 600);
|
|
2699
|
+
}
|
|
2700
|
+
|
|
2701
|
+
.Label-module_radio__-Iu-D, .Label-module_checkbox__Fhjww {
|
|
2702
|
+
display: flex;
|
|
2703
|
+
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
2704
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
2705
|
+
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
2706
|
+
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
2707
|
+
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
2708
|
+
}
|
|
2709
|
+
|
|
2710
|
+
.Label-module_toggle__4tyKF {
|
|
2711
|
+
display: flex;
|
|
2712
|
+
justify-content: space-between;
|
|
2713
|
+
align-items: center;
|
|
2714
|
+
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
2715
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
2716
|
+
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
2717
|
+
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
2718
|
+
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
2719
|
+
}
|
|
2720
|
+
|
|
2721
|
+
.Label-module_checkbox__Fhjww .Label-module_prependedLabel__pdsEt,
|
|
2722
|
+
.Label-module_radio__-Iu-D .Label-module_prependedLabel__pdsEt,
|
|
2723
|
+
.Label-module_toggle__4tyKF .Label-module_prependedLabel__pdsEt {
|
|
2724
|
+
order: -1;
|
|
2725
|
+
margin-inline-end: var(--spacing-xs, 0.375rem);
|
|
2726
|
+
}
|
|
2727
|
+
.Label-module_checkbox__Fhjww .Label-module_appendedLabel__-OHis,
|
|
2728
|
+
.Label-module_radio__-Iu-D .Label-module_appendedLabel__-OHis,
|
|
2729
|
+
.Label-module_toggle__4tyKF .Label-module_appendedLabel__-OHis {
|
|
2730
|
+
margin-inline-start: var(--spacing-xs, 0.375rem);
|
|
2731
|
+
}
|
|
2732
|
+
|
|
2733
|
+
.Label-module_prominent__SPdrr {
|
|
2734
|
+
font-family: var(--typography-heading-4-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
2735
|
+
font-weight: var(--typography-heading-4-font-weight, 600);
|
|
2736
|
+
font-size: var(--typography-heading-4-font-size, 1.125rem);
|
|
2737
|
+
line-height: var(--typography-heading-4-line-height, 1.5rem);
|
|
2738
|
+
letter-spacing: var(--typography-heading-4-letter-spacing, normal);
|
|
2739
|
+
display: block;
|
|
2740
|
+
margin-bottom: var(--spacing-xs, 0.375rem);
|
|
2741
|
+
}
|
|
2742
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2743
2743
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2744
2744
|
.Popover-module_root__OrmwT {
|
|
2745
2745
|
width: 220px;
|
|
@@ -3493,24 +3493,93 @@
|
|
|
3493
3493
|
/* stylelint-enable no-descending-specificity */
|
|
3494
3494
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3495
3495
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
.Table-module_container__w-zFG {
|
|
3500
|
-
width: 100%;
|
|
3501
|
-
margin-bottom: var(--spacing-sm, 0.75rem);
|
|
3496
|
+
.Text-module_text__Byo7R {
|
|
3497
|
+
--icon-vertical-align: text-bottom;
|
|
3498
|
+
margin: 0;
|
|
3502
3499
|
}
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
display: flex;
|
|
3506
|
-
align-items: stretch;
|
|
3507
|
-
text-align: start;
|
|
3508
|
-
justify-content: flex-start;
|
|
3509
|
-
padding: 8px var(--spacing-md, 1.5rem);
|
|
3510
|
-
position: relative;
|
|
3500
|
+
.Text-module_text__Byo7R strong {
|
|
3501
|
+
font-weight: var(--typography-paragraph-bold-font-weight, 600);
|
|
3511
3502
|
}
|
|
3512
3503
|
|
|
3513
|
-
.
|
|
3504
|
+
.Text-module_intro-lede__ENE72 {
|
|
3505
|
+
font-family: var(--typography-paragraph-intro-lede-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
3506
|
+
font-weight: var(--typography-paragraph-intro-lede-font-weight, 400);
|
|
3507
|
+
font-size: var(--typography-paragraph-intro-lede-font-size, 1.25rem);
|
|
3508
|
+
line-height: var(--typography-paragraph-intro-lede-line-height, 1.875rem);
|
|
3509
|
+
letter-spacing: var(--typography-paragraph-intro-lede-letter-spacing, 0);
|
|
3510
|
+
}
|
|
3511
|
+
|
|
3512
|
+
.Text-module_body__cO-XH {
|
|
3513
|
+
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
3514
|
+
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
3515
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
3516
|
+
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
3517
|
+
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
3518
|
+
}
|
|
3519
|
+
|
|
3520
|
+
.Text-module_small__uZNGn {
|
|
3521
|
+
font-family: var(--typography-paragraph-small-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
3522
|
+
font-weight: var(--typography-paragraph-small-font-weight, 400);
|
|
3523
|
+
font-size: var(--typography-paragraph-small-font-size, 0.875rem);
|
|
3524
|
+
line-height: var(--typography-paragraph-small-line-height, 1.125rem);
|
|
3525
|
+
letter-spacing: var(--typography-paragraph-small-letter-spacing, normal);
|
|
3526
|
+
}
|
|
3527
|
+
|
|
3528
|
+
.Text-module_extra-small__3g9eN {
|
|
3529
|
+
font-family: var(--typography-paragraph-extra-small-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
3530
|
+
font-weight: var(--typography-paragraph-extra-small-font-weight, 400);
|
|
3531
|
+
font-size: var(--typography-paragraph-extra-small-font-size, 0.75rem);
|
|
3532
|
+
line-height: var(--typography-paragraph-extra-small-line-height, 1.125rem);
|
|
3533
|
+
letter-spacing: var(--typography-paragraph-extra-small-letter-spacing, normal);
|
|
3534
|
+
}
|
|
3535
|
+
|
|
3536
|
+
.Text-module_dark__-jDSk {
|
|
3537
|
+
color: var(--color-purple-800, #2f2438);
|
|
3538
|
+
opacity: 100%;
|
|
3539
|
+
}
|
|
3540
|
+
|
|
3541
|
+
.Text-module_dark-reduced-opacity__18nLo {
|
|
3542
|
+
color: var(--color-purple-800, #2f2438);
|
|
3543
|
+
opacity: 70%;
|
|
3544
|
+
}
|
|
3545
|
+
|
|
3546
|
+
.Text-module_white__-yVD0 {
|
|
3547
|
+
color: var(--color-white, #ffffff);
|
|
3548
|
+
opacity: 100%;
|
|
3549
|
+
}
|
|
3550
|
+
|
|
3551
|
+
.Text-module_white-reduced-opacity__i0veZ {
|
|
3552
|
+
color: var(--color-white, #ffffff);
|
|
3553
|
+
opacity: 80%;
|
|
3554
|
+
}
|
|
3555
|
+
|
|
3556
|
+
.Text-module_positive__e-IKh {
|
|
3557
|
+
color: var(--color-green-600, #2c7d67);
|
|
3558
|
+
}
|
|
3559
|
+
|
|
3560
|
+
.Text-module_negative__agbge {
|
|
3561
|
+
color: var(--color-red-600, #a82433);
|
|
3562
|
+
}
|
|
3563
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3564
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3565
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3566
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3567
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3568
|
+
.Table-module_container__w-zFG {
|
|
3569
|
+
width: 100%;
|
|
3570
|
+
margin-bottom: var(--spacing-sm, 0.75rem);
|
|
3571
|
+
}
|
|
3572
|
+
|
|
3573
|
+
.Table-module_headerRowCell__kW0YN {
|
|
3574
|
+
display: flex;
|
|
3575
|
+
align-items: stretch;
|
|
3576
|
+
text-align: start;
|
|
3577
|
+
justify-content: flex-start;
|
|
3578
|
+
padding: 8px var(--spacing-md, 1.5rem);
|
|
3579
|
+
position: relative;
|
|
3580
|
+
}
|
|
3581
|
+
|
|
3582
|
+
.Table-module_headerRowCellNoWrap__BSuzX .Table-module_headerRowCellLabel__5v6m8 {
|
|
3514
3583
|
text-overflow: ellipsis;
|
|
3515
3584
|
overflow: hidden;
|
|
3516
3585
|
white-space: nowrap;
|
|
@@ -3748,75 +3817,6 @@
|
|
|
3748
3817
|
}
|
|
3749
3818
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3750
3819
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3751
|
-
.Text-module_text__Byo7R {
|
|
3752
|
-
--icon-vertical-align: text-bottom;
|
|
3753
|
-
margin: 0;
|
|
3754
|
-
}
|
|
3755
|
-
.Text-module_text__Byo7R strong {
|
|
3756
|
-
font-weight: var(--typography-paragraph-bold-font-weight, 600);
|
|
3757
|
-
}
|
|
3758
|
-
|
|
3759
|
-
.Text-module_intro-lede__ENE72 {
|
|
3760
|
-
font-family: var(--typography-paragraph-intro-lede-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
3761
|
-
font-weight: var(--typography-paragraph-intro-lede-font-weight, 400);
|
|
3762
|
-
font-size: var(--typography-paragraph-intro-lede-font-size, 1.25rem);
|
|
3763
|
-
line-height: var(--typography-paragraph-intro-lede-line-height, 1.875rem);
|
|
3764
|
-
letter-spacing: var(--typography-paragraph-intro-lede-letter-spacing, 0);
|
|
3765
|
-
}
|
|
3766
|
-
|
|
3767
|
-
.Text-module_body__cO-XH {
|
|
3768
|
-
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
3769
|
-
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
3770
|
-
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
3771
|
-
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
3772
|
-
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
3773
|
-
}
|
|
3774
|
-
|
|
3775
|
-
.Text-module_small__uZNGn {
|
|
3776
|
-
font-family: var(--typography-paragraph-small-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
3777
|
-
font-weight: var(--typography-paragraph-small-font-weight, 400);
|
|
3778
|
-
font-size: var(--typography-paragraph-small-font-size, 0.875rem);
|
|
3779
|
-
line-height: var(--typography-paragraph-small-line-height, 1.125rem);
|
|
3780
|
-
letter-spacing: var(--typography-paragraph-small-letter-spacing, normal);
|
|
3781
|
-
}
|
|
3782
|
-
|
|
3783
|
-
.Text-module_extra-small__3g9eN {
|
|
3784
|
-
font-family: var(--typography-paragraph-extra-small-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
3785
|
-
font-weight: var(--typography-paragraph-extra-small-font-weight, 400);
|
|
3786
|
-
font-size: var(--typography-paragraph-extra-small-font-size, 0.75rem);
|
|
3787
|
-
line-height: var(--typography-paragraph-extra-small-line-height, 1.125rem);
|
|
3788
|
-
letter-spacing: var(--typography-paragraph-extra-small-letter-spacing, normal);
|
|
3789
|
-
}
|
|
3790
|
-
|
|
3791
|
-
.Text-module_dark__-jDSk {
|
|
3792
|
-
color: var(--color-purple-800, #2f2438);
|
|
3793
|
-
opacity: 100%;
|
|
3794
|
-
}
|
|
3795
|
-
|
|
3796
|
-
.Text-module_dark-reduced-opacity__18nLo {
|
|
3797
|
-
color: var(--color-purple-800, #2f2438);
|
|
3798
|
-
opacity: 70%;
|
|
3799
|
-
}
|
|
3800
|
-
|
|
3801
|
-
.Text-module_white__-yVD0 {
|
|
3802
|
-
color: var(--color-white, #ffffff);
|
|
3803
|
-
opacity: 100%;
|
|
3804
|
-
}
|
|
3805
|
-
|
|
3806
|
-
.Text-module_white-reduced-opacity__i0veZ {
|
|
3807
|
-
color: var(--color-white, #ffffff);
|
|
3808
|
-
opacity: 80%;
|
|
3809
|
-
}
|
|
3810
|
-
|
|
3811
|
-
.Text-module_positive__e-IKh {
|
|
3812
|
-
color: var(--color-green-600, #2c7d67);
|
|
3813
|
-
}
|
|
3814
|
-
|
|
3815
|
-
.Text-module_negative__agbge {
|
|
3816
|
-
color: var(--color-red-600, #a82433);
|
|
3817
|
-
}
|
|
3818
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3819
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3820
3820
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3821
3821
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3822
3822
|
.Tag-module_root__uRhoc {
|
|
@@ -5220,6 +5220,35 @@
|
|
|
5220
5220
|
}
|
|
5221
5221
|
}
|
|
5222
5222
|
/* stylelint-enable no-descending-specificity */
|
|
5223
|
+
/* stylelint-disable scss/at-if-no-null, declaration-block-no-redundant-longhand-properties */
|
|
5224
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5225
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5226
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5227
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5228
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5229
|
+
/* 16px */
|
|
5230
|
+
/* 16px */
|
|
5231
|
+
/* 16px */
|
|
5232
|
+
/*
|
|
5233
|
+
Because these components are deprecated, we've kept any inline/non-token values as values from the Zen theme to prevent any style regressions,
|
|
5234
|
+
as this is what consumers would have expected when pulling them in a the time.
|
|
5235
|
+
*/
|
|
5236
|
+
/* stylelint-enable scss/at-if-no-null, declaration-block-no-redundant-longhand-properties */
|
|
5237
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5238
|
+
.MainActions-module_mainActionsContainer__wN117 {
|
|
5239
|
+
display: flex;
|
|
5240
|
+
align-items: center;
|
|
5241
|
+
justify-content: flex-end;
|
|
5242
|
+
flex-grow: 1;
|
|
5243
|
+
flex-shrink: 0;
|
|
5244
|
+
margin-inline-end: 0;
|
|
5245
|
+
margin-inline-start: calc(1.5rem / 2);
|
|
5246
|
+
}
|
|
5247
|
+
@media (max-width: 767px) {
|
|
5248
|
+
.MainActions-module_mainActionsContainer__wN117 {
|
|
5249
|
+
display: none;
|
|
5250
|
+
}
|
|
5251
|
+
}
|
|
5223
5252
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5224
5253
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5225
5254
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -5370,47 +5399,6 @@
|
|
|
5370
5399
|
.OverlayArrow-module_overlayArrow__iXF0w.OverlayArrow-module_reversed__XZmUF path {
|
|
5371
5400
|
fill: var(--color-white, #ffffff);
|
|
5372
5401
|
}
|
|
5373
|
-
/* stylelint-disable scss/at-if-no-null, declaration-block-no-redundant-longhand-properties */
|
|
5374
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5375
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5376
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5377
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5378
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5379
|
-
/* 16px */
|
|
5380
|
-
/* 16px */
|
|
5381
|
-
/* 16px */
|
|
5382
|
-
/*
|
|
5383
|
-
Because these components are deprecated, we've kept any inline/non-token values as values from the Zen theme to prevent any style regressions,
|
|
5384
|
-
as this is what consumers would have expected when pulling them in a the time.
|
|
5385
|
-
*/
|
|
5386
|
-
/* stylelint-enable scss/at-if-no-null, declaration-block-no-redundant-longhand-properties */
|
|
5387
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5388
|
-
.MainActions-module_mainActionsContainer__wN117 {
|
|
5389
|
-
display: flex;
|
|
5390
|
-
align-items: center;
|
|
5391
|
-
justify-content: flex-end;
|
|
5392
|
-
flex-grow: 1;
|
|
5393
|
-
flex-shrink: 0;
|
|
5394
|
-
margin-inline-end: 0;
|
|
5395
|
-
margin-inline-start: calc(1.5rem / 2);
|
|
5396
|
-
}
|
|
5397
|
-
@media (max-width: 767px) {
|
|
5398
|
-
.MainActions-module_mainActionsContainer__wN117 {
|
|
5399
|
-
display: none;
|
|
5400
|
-
}
|
|
5401
|
-
}
|
|
5402
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5403
|
-
.CalendarSingle-module_nav__wSVua {
|
|
5404
|
-
position: absolute;
|
|
5405
|
-
display: flex;
|
|
5406
|
-
justify-content: space-between;
|
|
5407
|
-
width: 100%;
|
|
5408
|
-
color: var(--color-purple-800, #2f2438);
|
|
5409
|
-
}
|
|
5410
|
-
|
|
5411
|
-
.CalendarSingle-module_navButtonNext__-GrZx {
|
|
5412
|
-
inset-inline-end: 0;
|
|
5413
|
-
}
|
|
5414
5402
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5415
5403
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5416
5404
|
.CalendarRange-module_month__un61w {
|
|
@@ -5466,6 +5454,18 @@
|
|
|
5466
5454
|
color: var(--color-blue-500, #0168b3);
|
|
5467
5455
|
}
|
|
5468
5456
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5457
|
+
.CalendarSingle-module_nav__wSVua {
|
|
5458
|
+
position: absolute;
|
|
5459
|
+
display: flex;
|
|
5460
|
+
justify-content: space-between;
|
|
5461
|
+
width: 100%;
|
|
5462
|
+
color: var(--color-purple-800, #2f2438);
|
|
5463
|
+
}
|
|
5464
|
+
|
|
5465
|
+
.CalendarSingle-module_navButtonNext__-GrZx {
|
|
5466
|
+
inset-inline-end: 0;
|
|
5467
|
+
}
|
|
5468
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5469
5469
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5470
5470
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5471
5471
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -5720,19 +5720,6 @@
|
|
|
5720
5720
|
}
|
|
5721
5721
|
/* stylelint-enable no-descending-specificity */
|
|
5722
5722
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5723
|
-
.CheckboxGroup-module_checkboxGroupLabel__a9Iet {
|
|
5724
|
-
margin-bottom: var(--spacing-sm, 0.75rem);
|
|
5725
|
-
}
|
|
5726
|
-
|
|
5727
|
-
.CheckboxGroup-module_checkboxGroupContainer__NTUWc {
|
|
5728
|
-
display: flex;
|
|
5729
|
-
flex-direction: column;
|
|
5730
|
-
margin-bottom: var(--spacing-sm, 0.75rem);
|
|
5731
|
-
}
|
|
5732
|
-
.CheckboxGroup-module_checkboxGroupContainer__NTUWc.CheckboxGroup-module_noBottomMargin__J7ADb {
|
|
5733
|
-
margin-bottom: 0;
|
|
5734
|
-
}
|
|
5735
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5736
5723
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5737
5724
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5738
5725
|
/* stylelint-disable no-descending-specificity */
|
|
@@ -5823,6 +5810,19 @@
|
|
|
5823
5810
|
}
|
|
5824
5811
|
|
|
5825
5812
|
/* stylelint-enable no-descending-specificity */
|
|
5813
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5814
|
+
.CheckboxGroup-module_checkboxGroupLabel__a9Iet {
|
|
5815
|
+
margin-bottom: var(--spacing-sm, 0.75rem);
|
|
5816
|
+
}
|
|
5817
|
+
|
|
5818
|
+
.CheckboxGroup-module_checkboxGroupContainer__NTUWc {
|
|
5819
|
+
display: flex;
|
|
5820
|
+
flex-direction: column;
|
|
5821
|
+
margin-bottom: var(--spacing-sm, 0.75rem);
|
|
5822
|
+
}
|
|
5823
|
+
.CheckboxGroup-module_checkboxGroupContainer__NTUWc.CheckboxGroup-module_noBottomMargin__J7ADb {
|
|
5824
|
+
margin-bottom: 0;
|
|
5825
|
+
}
|
|
5826
5826
|
/* stylelint-disable scss/at-if-no-null, declaration-block-no-redundant-longhand-properties */
|
|
5827
5827
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5828
5828
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -5915,55 +5915,6 @@
|
|
|
5915
5915
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5916
5916
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5917
5917
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5918
|
-
.ExpertAdviceCollapsible-module_expertAdviceContainer__RIHw4 {
|
|
5919
|
-
background-color: var(--color-purple-100, #f4edf8);
|
|
5920
|
-
border: var(--border-width-1) var(--border-solid-border-style) var(--color-purple-400);
|
|
5921
|
-
box-shadow: none;
|
|
5922
|
-
color: var(--color-purple-800, #2f2438);
|
|
5923
|
-
}
|
|
5924
|
-
.ExpertAdviceCollapsible-module_expertAdviceContainer__RIHw4:hover {
|
|
5925
|
-
border-color: var(--color-purple-500, #844587);
|
|
5926
|
-
}
|
|
5927
|
-
|
|
5928
|
-
.ExpertAdviceCollapsible-module_expertAdviceContainer__RIHw4 > div:first-of-type {
|
|
5929
|
-
background-color: var(--color-purple-100, #f4edf8);
|
|
5930
|
-
border-radius: var(--border-borderless-border-radius, 7px);
|
|
5931
|
-
}
|
|
5932
|
-
|
|
5933
|
-
.ExpertAdviceCollapsible-module_expertAdviceHeader__1wthc {
|
|
5934
|
-
background-color: var(--color-purple-100, #f4edf8);
|
|
5935
|
-
flex: 1 1 auto;
|
|
5936
|
-
align-items: center;
|
|
5937
|
-
display: flex;
|
|
5938
|
-
}
|
|
5939
|
-
|
|
5940
|
-
.ExpertAdviceCollapsible-module_expertAdviceHeading__4G4Jh {
|
|
5941
|
-
color: var(--color-purple-600, #5f3361);
|
|
5942
|
-
}
|
|
5943
|
-
.ExpertAdviceCollapsible-module_expertAdviceContainer__RIHw4:hover .ExpertAdviceCollapsible-module_expertAdviceHeading__4G4Jh {
|
|
5944
|
-
color: var(--color-purple-700, #4a234d);
|
|
5945
|
-
}
|
|
5946
|
-
|
|
5947
|
-
.ExpertAdviceCollapsible-module_expertAdviceIcon__DMwbR {
|
|
5948
|
-
margin-inline-end: var(--spacing-sm, 0.75rem);
|
|
5949
|
-
width: 1.75rem;
|
|
5950
|
-
height: 1.75rem;
|
|
5951
|
-
}
|
|
5952
|
-
|
|
5953
|
-
.ExpertAdviceCollapsible-module_expertAdviceSection__ox-SR {
|
|
5954
|
-
padding: 0 var(--spacing-md, 1.5rem) var(--spacing-md, 1.5rem);
|
|
5955
|
-
}
|
|
5956
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5957
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5958
|
-
.CollapsibleGroup-module_container__EjMRg {
|
|
5959
|
-
background-color: white;
|
|
5960
|
-
box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
|
|
5961
|
-
border: var(--border-width-1) var(--border-solid-border-style) var(--color-gray-500);
|
|
5962
|
-
border-radius: var(--border-borderless-border-radius, 7px);
|
|
5963
|
-
}
|
|
5964
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5965
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5966
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5967
5918
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5968
5919
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
5969
5920
|
/* stylelint-disable selector-no-vendor-prefix */
|
|
@@ -6063,14 +6014,6 @@
|
|
|
6063
6014
|
border-color: var(--color-blue-300, #73c0e8);
|
|
6064
6015
|
}
|
|
6065
6016
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6066
|
-
.DateInput-module_dateInput__f0Rs6 {
|
|
6067
|
-
width: 100%;
|
|
6068
|
-
}
|
|
6069
|
-
|
|
6070
|
-
.DateInput-module_input__lVV0- {
|
|
6071
|
-
margin-top: var(--spacing-6, 0.375rem);
|
|
6072
|
-
}
|
|
6073
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6074
6017
|
.DateInputDescription-module_dateInputDescription__dEWv8 {
|
|
6075
6018
|
display: inline;
|
|
6076
6019
|
}
|
|
@@ -6090,6 +6033,14 @@
|
|
|
6090
6033
|
}
|
|
6091
6034
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6092
6035
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6036
|
+
.CollapsibleGroup-module_container__EjMRg {
|
|
6037
|
+
background-color: white;
|
|
6038
|
+
box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
|
|
6039
|
+
border: var(--border-width-1) var(--border-solid-border-style) var(--color-gray-500);
|
|
6040
|
+
border-radius: var(--border-borderless-border-radius, 7px);
|
|
6041
|
+
}
|
|
6042
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6043
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6093
6044
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6094
6045
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6095
6046
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -6177,6 +6128,55 @@
|
|
|
6177
6128
|
display: none;
|
|
6178
6129
|
}
|
|
6179
6130
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6131
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6132
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6133
|
+
.ExpertAdviceCollapsible-module_expertAdviceContainer__RIHw4 {
|
|
6134
|
+
background-color: var(--color-purple-100, #f4edf8);
|
|
6135
|
+
border: var(--border-width-1) var(--border-solid-border-style) var(--color-purple-400);
|
|
6136
|
+
box-shadow: none;
|
|
6137
|
+
color: var(--color-purple-800, #2f2438);
|
|
6138
|
+
}
|
|
6139
|
+
.ExpertAdviceCollapsible-module_expertAdviceContainer__RIHw4:hover {
|
|
6140
|
+
border-color: var(--color-purple-500, #844587);
|
|
6141
|
+
}
|
|
6142
|
+
|
|
6143
|
+
.ExpertAdviceCollapsible-module_expertAdviceContainer__RIHw4 > div:first-of-type {
|
|
6144
|
+
background-color: var(--color-purple-100, #f4edf8);
|
|
6145
|
+
border-radius: var(--border-borderless-border-radius, 7px);
|
|
6146
|
+
}
|
|
6147
|
+
|
|
6148
|
+
.ExpertAdviceCollapsible-module_expertAdviceHeader__1wthc {
|
|
6149
|
+
background-color: var(--color-purple-100, #f4edf8);
|
|
6150
|
+
flex: 1 1 auto;
|
|
6151
|
+
align-items: center;
|
|
6152
|
+
display: flex;
|
|
6153
|
+
}
|
|
6154
|
+
|
|
6155
|
+
.ExpertAdviceCollapsible-module_expertAdviceHeading__4G4Jh {
|
|
6156
|
+
color: var(--color-purple-600, #5f3361);
|
|
6157
|
+
}
|
|
6158
|
+
.ExpertAdviceCollapsible-module_expertAdviceContainer__RIHw4:hover .ExpertAdviceCollapsible-module_expertAdviceHeading__4G4Jh {
|
|
6159
|
+
color: var(--color-purple-700, #4a234d);
|
|
6160
|
+
}
|
|
6161
|
+
|
|
6162
|
+
.ExpertAdviceCollapsible-module_expertAdviceIcon__DMwbR {
|
|
6163
|
+
margin-inline-end: var(--spacing-sm, 0.75rem);
|
|
6164
|
+
width: 1.75rem;
|
|
6165
|
+
height: 1.75rem;
|
|
6166
|
+
}
|
|
6167
|
+
|
|
6168
|
+
.ExpertAdviceCollapsible-module_expertAdviceSection__ox-SR {
|
|
6169
|
+
padding: 0 var(--spacing-md, 1.5rem) var(--spacing-md, 1.5rem);
|
|
6170
|
+
}
|
|
6171
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6172
|
+
.DateInput-module_dateInput__f0Rs6 {
|
|
6173
|
+
width: 100%;
|
|
6174
|
+
}
|
|
6175
|
+
|
|
6176
|
+
.DateInput-module_input__lVV0- {
|
|
6177
|
+
margin-top: var(--spacing-6, 0.375rem);
|
|
6178
|
+
}
|
|
6179
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6180
6180
|
.LegacyCalendarRange-module_nav__DsZpy {
|
|
6181
6181
|
position: absolute;
|
|
6182
6182
|
display: flex;
|
|
@@ -6201,301 +6201,337 @@
|
|
|
6201
6201
|
}
|
|
6202
6202
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6203
6203
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6204
|
-
|
|
6205
|
-
|
|
6206
|
-
|
|
6207
|
-
|
|
6208
|
-
|
|
6204
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6205
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6206
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6207
|
+
.CalendarPopover-module_calendarPopover__p2xp9 {
|
|
6208
|
+
background-color: var(--color-white, #ffffff);
|
|
6209
|
+
z-index: 1010;
|
|
6210
|
+
box-shadow: var(--shadow-large-box-shadow, 0 3px 9px 0 rgba(0, 0, 0, 0.1), 0 8px 40px 0 rgba(0, 0, 0, 0.08));
|
|
6211
|
+
border-radius: var(--border-borderless-border-radius, 7px);
|
|
6212
|
+
padding: var(--spacing-12, 0.75rem) var(--spacing-8, 0.5rem);
|
|
6213
|
+
box-sizing: border-box;
|
|
6214
|
+
overflow: auto;
|
|
6209
6215
|
}
|
|
6210
|
-
|
|
6211
|
-
|
|
6216
|
+
@media (min-width: 768px) {
|
|
6217
|
+
.CalendarPopover-module_calendarPopover__p2xp9 {
|
|
6218
|
+
padding: var(--spacing-24, 1.5rem);
|
|
6219
|
+
}
|
|
6212
6220
|
}
|
|
6213
|
-
|
|
6214
|
-
|
|
6221
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6222
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6223
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6224
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6225
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6226
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6227
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6228
|
+
/* stylelint-disable selector-no-vendor-prefix */
|
|
6229
|
+
.Input-module_wrapper__9jBDN {
|
|
6230
|
+
position: relative;
|
|
6215
6231
|
}
|
|
6216
|
-
|
|
6217
|
-
|
|
6232
|
+
.Input-module_wrapper__9jBDN.Input-module_hasStatus__GjERD {
|
|
6233
|
+
z-index: 1;
|
|
6218
6234
|
}
|
|
6219
|
-
|
|
6220
|
-
|
|
6235
|
+
.Input-module_wrapper__9jBDN:hover {
|
|
6236
|
+
z-index: 2;
|
|
6221
6237
|
}
|
|
6222
|
-
|
|
6223
|
-
|
|
6224
|
-
width: auto;
|
|
6225
|
-
height: 0;
|
|
6226
|
-
box-sizing: border-box;
|
|
6227
|
-
border-top: 1px solid var(--color-gray-500, #878792);
|
|
6228
|
-
border-bottom: 2px solid var(--color-gray-500, #878792);
|
|
6229
|
-
border-radius: 4px;
|
|
6238
|
+
.Input-module_wrapper__9jBDN:focus-within {
|
|
6239
|
+
z-index: 3;
|
|
6230
6240
|
}
|
|
6231
|
-
|
|
6232
|
-
|
|
6233
|
-
|
|
6241
|
+
|
|
6242
|
+
.Input-module_input__d-Moh {
|
|
6243
|
+
outline: 0;
|
|
6234
6244
|
box-sizing: border-box;
|
|
6235
|
-
|
|
6236
|
-
|
|
6237
|
-
|
|
6245
|
+
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6246
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6247
|
+
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6248
|
+
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6249
|
+
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6250
|
+
position: static;
|
|
6251
|
+
background-color: transparent;
|
|
6252
|
+
background-clip: padding-box;
|
|
6253
|
+
border: var(--border-solid-border-width, 2px) var(--border-solid-border-style, solid) transparent;
|
|
6254
|
+
border-radius: var(--border-solid-border-radius, 7px);
|
|
6255
|
+
display: block;
|
|
6256
|
+
font-size: 1rem;
|
|
6257
|
+
line-height: 1.5;
|
|
6258
|
+
padding: 0 var(--spacing-sm, 0.75rem);
|
|
6259
|
+
height: 48px;
|
|
6260
|
+
width: 100%;
|
|
6261
|
+
margin-bottom: 2px;
|
|
6238
6262
|
}
|
|
6239
|
-
|
|
6240
|
-
-
|
|
6241
|
-
|
|
6242
|
-
|
|
6243
|
-
|
|
6244
|
-
|
|
6245
|
-
|
|
6246
|
-
|
|
6247
|
-
background: var(--color-blue-500, #0168b3);
|
|
6263
|
+
.Input-module_input__d-Moh::placeholder {
|
|
6264
|
+
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6265
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6266
|
+
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6267
|
+
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6268
|
+
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6269
|
+
position: static;
|
|
6270
|
+
opacity: 100%;
|
|
6248
6271
|
}
|
|
6249
|
-
|
|
6250
|
-
|
|
6251
|
-
|
|
6272
|
+
.Input-module_input__d-Moh:focus:not([disabled])::placeholder, .Input-module_input__d-Moh:hover:focus:not([disabled])::placeholder {
|
|
6273
|
+
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6274
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6275
|
+
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6276
|
+
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6277
|
+
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6278
|
+
position: static;
|
|
6279
|
+
opacity: 0%;
|
|
6252
6280
|
}
|
|
6253
|
-
|
|
6254
|
-
background: var(--color-
|
|
6255
|
-
width: 32px;
|
|
6256
|
-
height: 32px;
|
|
6281
|
+
.Input-module_input__d-Moh.Input-module_disabled__CJeOi:not(.Input-module_reversed__Kh7dc) {
|
|
6282
|
+
background: var(--color-gray-300, #eaeaec);
|
|
6257
6283
|
}
|
|
6258
|
-
|
|
6259
|
-
|
|
6260
|
-
|
|
6261
|
-
|
|
6262
|
-
|
|
6263
|
-
|
|
6264
|
-
|
|
6284
|
+
.Input-module_input__d-Moh.Input-module_disabled__CJeOi::placeholder {
|
|
6285
|
+
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6286
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6287
|
+
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6288
|
+
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6289
|
+
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6290
|
+
position: static;
|
|
6291
|
+
color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.3);
|
|
6265
6292
|
}
|
|
6266
|
-
|
|
6267
|
-
|
|
6268
|
-
|
|
6293
|
+
|
|
6294
|
+
.Input-module_input__d-Moh:focus + .Input-module_focusRing__E68jh {
|
|
6295
|
+
position: absolute;
|
|
6296
|
+
background: transparent;
|
|
6297
|
+
border-radius: var(--border-focus-ring-border-radius, 10px);
|
|
6298
|
+
border-width: var(--border-focus-ring-border-width, 2px);
|
|
6299
|
+
border-style: var(--border-focus-ring-border-style, solid);
|
|
6300
|
+
border-color: transparent;
|
|
6301
|
+
inset: -3px;
|
|
6302
|
+
pointer-events: none;
|
|
6269
6303
|
}
|
|
6270
|
-
|
|
6271
|
-
|
|
6272
|
-
|
|
6273
|
-
|
|
6274
|
-
|
|
6275
|
-
|
|
6276
|
-
|
|
6277
|
-
|
|
6278
|
-
|
|
6279
|
-
}
|
|
6280
|
-
input[type=range].InputRange-module_ratingScaleRange__gI-rs.InputRange-module_hideThumb__oscfB::-moz-range-thumb {
|
|
6281
|
-
width: 0;
|
|
6282
|
-
height: 0;
|
|
6283
|
-
border: none;
|
|
6284
|
-
}
|
|
6285
|
-
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-track {
|
|
6286
|
-
width: auto;
|
|
6287
|
-
height: 0;
|
|
6288
|
-
box-sizing: border-box;
|
|
6289
|
-
border-top: 1px solid var(--color-gray-500, #878792);
|
|
6290
|
-
border-bottom: 2px solid var(--color-gray-500, #878792);
|
|
6291
|
-
border-radius: 4px;
|
|
6292
|
-
color: transparent;
|
|
6293
|
-
border-width: 26px 0;
|
|
6294
|
-
border-color: transparent;
|
|
6295
|
-
background: transparent;
|
|
6296
|
-
}
|
|
6297
|
-
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-fill-lower {
|
|
6298
|
-
border: none;
|
|
6299
|
-
border-radius: 8px;
|
|
6300
|
-
background: var(--color-gray-500, #878792);
|
|
6301
|
-
}
|
|
6302
|
-
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-fill-upper {
|
|
6303
|
-
border: none;
|
|
6304
|
-
border-radius: 8px;
|
|
6305
|
-
background: var(--color-gray-500, #878792);
|
|
6306
|
-
}
|
|
6307
|
-
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb {
|
|
6308
|
-
box-sizing: content-box;
|
|
6309
|
-
width: 26px;
|
|
6310
|
-
height: 26px;
|
|
6311
|
-
border: 4px solid var(--color-white, #ffffff);
|
|
6312
|
-
border-radius: 100%;
|
|
6313
|
-
background: var(--color-blue-500, #0168b3);
|
|
6314
|
-
}
|
|
6315
|
-
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disabled) {
|
|
6316
|
-
transition: all 0.2s;
|
|
6317
|
-
transition-property: background, height, width;
|
|
6304
|
+
|
|
6305
|
+
/* stylelint-disable no-descending-specificity */
|
|
6306
|
+
.Input-module_withStartIconAdornment__de6-U .Input-module_startIconAdornment__pnn-b {
|
|
6307
|
+
position: absolute;
|
|
6308
|
+
height: 1.25rem;
|
|
6309
|
+
top: 50%;
|
|
6310
|
+
transform: translateY(-50%);
|
|
6311
|
+
z-index: 1;
|
|
6312
|
+
inset-inline: var(--spacing-sm, 0.75rem) auto;
|
|
6318
6313
|
}
|
|
6319
|
-
|
|
6320
|
-
|
|
6321
|
-
width: 32px;
|
|
6322
|
-
height: 32px;
|
|
6314
|
+
.Input-module_withStartIconAdornment__de6-U.Input-module_withDisabled__pzzCm .Input-module_startIconAdornment__pnn-b {
|
|
6315
|
+
opacity: 0.3;
|
|
6323
6316
|
}
|
|
6324
|
-
|
|
6325
|
-
.
|
|
6326
|
-
display: flex;
|
|
6327
|
-
justify-content: space-between;
|
|
6328
|
-
padding: 0 calc(34px / 2) var(--spacing-sm, 0.75rem);
|
|
6317
|
+
.Input-module_withStartIconAdornment__de6-U .Input-module_input__d-Moh {
|
|
6318
|
+
padding-inline: calc(1.25rem + var(--spacing-md, 1.5rem) * 0.75) var(--spacing-sm, 0.75rem);
|
|
6329
6319
|
}
|
|
6330
6320
|
|
|
6331
|
-
.
|
|
6332
|
-
|
|
6321
|
+
.Input-module_withEndIconAdornment__fSBPl .Input-module_endIconAdornment__bg-PL {
|
|
6322
|
+
position: absolute;
|
|
6323
|
+
height: 1.25rem;
|
|
6324
|
+
top: 50%;
|
|
6325
|
+
transform: translateY(-50%);
|
|
6326
|
+
z-index: 1;
|
|
6327
|
+
inset-inline: auto var(--spacing-sm, 0.75rem);
|
|
6333
6328
|
}
|
|
6334
|
-
|
|
6335
|
-
.
|
|
6336
|
-
display: flex;
|
|
6337
|
-
align-items: center;
|
|
6338
|
-
justify-content: center;
|
|
6339
|
-
width: 1px;
|
|
6329
|
+
.Input-module_withEndIconAdornment__fSBPl.Input-module_withDisabled__pzzCm .Input-module_endIconAdornment__bg-PL {
|
|
6330
|
+
opacity: 0.3;
|
|
6340
6331
|
}
|
|
6341
|
-
|
|
6342
|
-
.
|
|
6343
|
-
width: 0;
|
|
6344
|
-
height: 0;
|
|
6345
|
-
background: var(--color-gray-500, #878792);
|
|
6346
|
-
border: 2px solid var(--color-gray-500, #878792);
|
|
6347
|
-
border-radius: 100%;
|
|
6332
|
+
.Input-module_withEndIconAdornment__fSBPl .Input-module_input__d-Moh {
|
|
6333
|
+
padding-inline: var(--spacing-sm, 0.75rem) calc(1.25rem + var(--spacing-md, 1.5rem) * 0.75);
|
|
6348
6334
|
}
|
|
6349
6335
|
|
|
6350
|
-
.
|
|
6351
|
-
|
|
6352
|
-
justify-content: center;
|
|
6353
|
-
width: 100%;
|
|
6336
|
+
.Input-module_withStartIconAdornment__de6-U.Input-module_withEndIconAdornment__fSBPl .Input-module_input__d-Moh {
|
|
6337
|
+
padding-inline: calc(1.25rem + var(--spacing-md, 1.5rem) * 0.75) calc(1.25rem + var(--spacing-md, 1.5rem) * 0.75);
|
|
6354
6338
|
}
|
|
6355
6339
|
|
|
6356
|
-
|
|
6357
|
-
|
|
6358
|
-
|
|
6359
|
-
|
|
6340
|
+
/* stylelint-disable-next-line no-duplicate-selectors */
|
|
6341
|
+
.Input-module_withStartIconAdornment__de6-U {
|
|
6342
|
+
/* stylelint-disable-next-line no-duplicate-selectors */
|
|
6343
|
+
/* stylelint-disable-next-line no-duplicate-selectors */
|
|
6344
|
+
/* stylelint-disable-next-line no-duplicate-selectors */
|
|
6360
6345
|
}
|
|
6361
|
-
|
|
6362
|
-
|
|
6363
|
-
opacity:
|
|
6346
|
+
.Input-module_withStartIconAdornment__de6-U .Input-module_startIconAdornment__pnn-b {
|
|
6347
|
+
color: var(--color-purple-800, #2f2438);
|
|
6348
|
+
opacity: 50%;
|
|
6364
6349
|
}
|
|
6365
|
-
|
|
6366
|
-
|
|
6367
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6368
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6369
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6370
|
-
.CalendarPopover-module_calendarPopover__p2xp9 {
|
|
6371
|
-
background-color: var(--color-white, #ffffff);
|
|
6372
|
-
z-index: 1010;
|
|
6373
|
-
box-shadow: var(--shadow-large-box-shadow, 0 3px 9px 0 rgba(0, 0, 0, 0.1), 0 8px 40px 0 rgba(0, 0, 0, 0.08));
|
|
6374
|
-
border-radius: var(--border-borderless-border-radius, 7px);
|
|
6375
|
-
padding: var(--spacing-12, 0.75rem) var(--spacing-8, 0.5rem);
|
|
6376
|
-
box-sizing: border-box;
|
|
6377
|
-
overflow: auto;
|
|
6350
|
+
.Input-module_withStartIconAdornment__de6-U.Input-module_withDisabled__pzzCm {
|
|
6351
|
+
/* stylelint-disable-next-line no-duplicate-selectors */
|
|
6378
6352
|
}
|
|
6379
|
-
|
|
6380
|
-
|
|
6381
|
-
padding: var(--spacing-24, 1.5rem);
|
|
6382
|
-
}
|
|
6353
|
+
.Input-module_withStartIconAdornment__de6-U.Input-module_withDisabled__pzzCm .Input-module_startIconAdornment__pnn-b {
|
|
6354
|
+
opacity: 30%;
|
|
6383
6355
|
}
|
|
6384
|
-
|
|
6385
|
-
|
|
6386
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6387
|
-
/* stylelint-disable */
|
|
6388
|
-
/* stylelint-enable */
|
|
6389
|
-
/* prettier-ignore */
|
|
6390
|
-
/* stylelint-disable */
|
|
6391
|
-
/* stylelint-enable */
|
|
6392
|
-
/* prettier-ignore */
|
|
6393
|
-
/* stylelint-disable */
|
|
6394
|
-
/* stylelint-enable */
|
|
6395
|
-
/* prettier-ignore */
|
|
6396
|
-
/* stylelint-disable */
|
|
6397
|
-
/* stylelint-enable */
|
|
6398
|
-
/* prettier-ignore */
|
|
6399
|
-
/* stylelint-disable scss/at-if-no-null */
|
|
6400
|
-
/* stylelint-enable scss/at-if-no-null */
|
|
6401
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6402
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6403
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6404
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6405
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6406
|
-
/* stylelint-disable */
|
|
6407
|
-
/* stylelint-enable */
|
|
6408
|
-
/* prettier-ignore */
|
|
6409
|
-
/* stylelint-disable */
|
|
6410
|
-
/* stylelint-enable */
|
|
6411
|
-
/* prettier-ignore */
|
|
6412
|
-
/* prettier-ignore */
|
|
6413
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6414
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6415
|
-
/* stylelint-disable function-name-case, scss/at-function-pattern */
|
|
6416
|
-
/* stylelint-enable function-name-case, scss/at-function-pattern */
|
|
6417
|
-
/* prettier-ignore */
|
|
6418
|
-
/* prettier-ignore */
|
|
6419
|
-
/* prettier-ignore */
|
|
6420
|
-
/* prettier-ignore */
|
|
6421
|
-
/* prettier-ignore */
|
|
6422
|
-
/* prettier-ignore */
|
|
6423
|
-
.DateInputWithIconButton-module_iconButton__W7YMX {
|
|
6424
|
-
appearance: none;
|
|
6425
|
-
display: inline;
|
|
6426
|
-
background: transparent;
|
|
6427
|
-
color: inherit;
|
|
6428
|
-
font: inherit;
|
|
6429
|
-
margin: 0;
|
|
6430
|
-
padding: 0;
|
|
6431
|
-
border: none;
|
|
6432
|
-
display: flex;
|
|
6433
|
-
padding: var(--spacing-6);
|
|
6434
|
-
border: var(--border-solid-border-width, 2px) var(--border-solid-border-style, solid) transparent;
|
|
6435
|
-
border-radius: var(--border-solid-border-radius, 7px);
|
|
6436
|
-
position: relative;
|
|
6437
|
-
inset-inline-end: -0.35rem;
|
|
6438
|
-
top: -40%;
|
|
6356
|
+
.Input-module_withStartIconAdornment__de6-U:hover:not(.Input-module_withDisabled__pzzCm) .Input-module_startIconAdornment__pnn-b, .Input-module_withStartIconAdornment__de6-U:focus-within:not(.Input-module_withDisabled__pzzCm) .Input-module_startIconAdornment__pnn-b {
|
|
6357
|
+
opacity: 70%;
|
|
6439
6358
|
}
|
|
6440
|
-
|
|
6441
|
-
|
|
6359
|
+
|
|
6360
|
+
.Input-module_withStartIconAdornment__de6-U.Input-module_withReversed__SKSOD .Input-module_startIconAdornment__pnn-b {
|
|
6361
|
+
color: var(--color-white, #ffffff);
|
|
6362
|
+
opacity: 100%;
|
|
6442
6363
|
}
|
|
6443
|
-
.
|
|
6444
|
-
|
|
6445
|
-
outline: var(--color-blue-500, #0168b3) var(--border-focus-ring-border-style, solid) var(--border-focus-ring-border-width, 2px);
|
|
6364
|
+
.Input-module_withStartIconAdornment__de6-U.Input-module_withReversed__SKSOD.Input-module_withDisabled__pzzCm .Input-module_startIconAdornment__pnn-b {
|
|
6365
|
+
opacity: 30%;
|
|
6446
6366
|
}
|
|
6447
|
-
.
|
|
6448
|
-
|
|
6449
|
-
color: var(--color-blue-500, #0168b3);
|
|
6367
|
+
.Input-module_withStartIconAdornment__de6-U.Input-module_withReversed__SKSOD:hover:not(.Input-module_withDisabled__pzzCm) .Input-module_startIconAdornment__pnn-b, .Input-module_withStartIconAdornment__de6-U.Input-module_withReversed__SKSOD:focus-within:not(.Input-module_withDisabled__pzzCm) .Input-module_startIconAdornment__pnn-b {
|
|
6368
|
+
opacity: 100%;
|
|
6450
6369
|
}
|
|
6451
6370
|
|
|
6452
|
-
.
|
|
6453
|
-
color: var(--color-
|
|
6454
|
-
|
|
6371
|
+
.Input-module_withEndIconAdornment__fSBPl.Input-module_withReversed__SKSOD .Input-module_endIconAdornment__bg-PL {
|
|
6372
|
+
color: var(--color-white, #ffffff);
|
|
6373
|
+
opacity: 100%;
|
|
6455
6374
|
}
|
|
6456
|
-
|
|
6457
|
-
|
|
6458
|
-
opacity: 0.3;
|
|
6375
|
+
.Input-module_withEndIconAdornment__fSBPl.Input-module_withReversed__SKSOD.Input-module_withDisabled__pzzCm .Input-module_endIconAdornment__bg-PL {
|
|
6376
|
+
opacity: 30%;
|
|
6459
6377
|
}
|
|
6460
|
-
|
|
6461
|
-
|
|
6462
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6463
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6464
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6465
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6466
|
-
/* stylelint-disable selector-no-vendor-prefix */
|
|
6467
|
-
.InputSearch-module_wrapper__xz4kh {
|
|
6468
|
-
position: relative;
|
|
6378
|
+
.Input-module_withEndIconAdornment__fSBPl.Input-module_withReversed__SKSOD:hover:not(.Input-module_withDisabled__pzzCm) .Input-module_endIconAdornment__bg-PL, .Input-module_withEndIconAdornment__fSBPl.Input-module_withReversed__SKSOD:focus-within:not(.Input-module_withDisabled__pzzCm) .Input-module_endIconAdornment__bg-PL {
|
|
6379
|
+
opacity: 100%;
|
|
6469
6380
|
}
|
|
6470
6381
|
|
|
6471
|
-
.
|
|
6472
|
-
|
|
6473
|
-
|
|
6474
|
-
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6475
|
-
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6476
|
-
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6477
|
-
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6478
|
-
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6479
|
-
position: static;
|
|
6382
|
+
.Input-module_input__d-Moh.Input-module_default__zata3 {
|
|
6383
|
+
background-color: var(--color-white, #ffffff);
|
|
6384
|
+
color: var(--color-purple-800, #2f2438);
|
|
6480
6385
|
display: flex;
|
|
6481
6386
|
align-items: center;
|
|
6482
|
-
height: 48px;
|
|
6483
|
-
width: 100%;
|
|
6484
|
-
border: var(--border-solid-border-width, 2px) var(--border-solid-border-style, solid) transparent;
|
|
6485
|
-
border-radius: 48px;
|
|
6486
|
-
padding-block: 0;
|
|
6487
|
-
padding-inline: calc(1rem + 1.25rem + var(--spacing-sm, 0.75rem)) var(--spacing-sm, 0.75rem);
|
|
6488
|
-
font-size: 1rem;
|
|
6489
|
-
line-height: 1.5;
|
|
6490
6387
|
}
|
|
6491
|
-
.
|
|
6388
|
+
.Input-module_input__d-Moh.Input-module_default__zata3::placeholder {
|
|
6492
6389
|
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6493
6390
|
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6494
6391
|
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6495
6392
|
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6496
6393
|
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6497
6394
|
position: static;
|
|
6498
|
-
|
|
6395
|
+
color: var(--color-purple-800, #2f2438);
|
|
6396
|
+
opacity: 0.5;
|
|
6397
|
+
}
|
|
6398
|
+
.Input-module_input__d-Moh.Input-module_default__zata3:focus:not([disabled]), .Input-module_input__d-Moh.Input-module_default__zata3:hover:not([disabled]), .Input-module_input__d-Moh.Input-module_default__zata3:hover:focus:not([disabled]) {
|
|
6399
|
+
background-color: var(--color-gray-200, #f4f4f5);
|
|
6400
|
+
}
|
|
6401
|
+
.Input-module_input__d-Moh.Input-module_default__zata3:focus + .Input-module_focusRing__E68jh {
|
|
6402
|
+
border-color: var(--color-blue-500, #0168b3);
|
|
6403
|
+
}
|
|
6404
|
+
.Input-module_input__d-Moh.Input-module_default__zata3.Input-module_disabled__CJeOi {
|
|
6405
|
+
background-color: var(--color-white, #ffffff);
|
|
6406
|
+
border-color: rgba(var(--color-gray-500-rgb, 135, 135, 146), 0.3);
|
|
6407
|
+
color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.3);
|
|
6408
|
+
}
|
|
6409
|
+
.Input-module_input__d-Moh.Input-module_default__zata3.Input-module_disabled__CJeOi::placeholder {
|
|
6410
|
+
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6411
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6412
|
+
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6413
|
+
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6414
|
+
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6415
|
+
position: static;
|
|
6416
|
+
opacity: 0.3;
|
|
6417
|
+
}
|
|
6418
|
+
.Input-module_input__d-Moh.Input-module_default__zata3:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY) {
|
|
6419
|
+
border-color: var(--color-gray-500, #878792);
|
|
6420
|
+
}
|
|
6421
|
+
.Input-module_input__d-Moh.Input-module_default__zata3:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):disabled {
|
|
6422
|
+
border-color: rgba(var(--color-gray-500-rgb, 135, 135, 146), 0.3);
|
|
6423
|
+
}
|
|
6424
|
+
.Input-module_input__d-Moh.Input-module_default__zata3:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):focus:not([disabled]), .Input-module_input__d-Moh.Input-module_default__zata3:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):hover:not([disabled]), .Input-module_input__d-Moh.Input-module_default__zata3:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):hover:focus:not([disabled]) {
|
|
6425
|
+
border-color: var(--color-gray-600, #524e56);
|
|
6426
|
+
}
|
|
6427
|
+
.Input-module_input__d-Moh.Input-module_default__zata3.Input-module_error__a-BFh {
|
|
6428
|
+
border-color: var(--color-red-500, #c93b55);
|
|
6429
|
+
}
|
|
6430
|
+
.Input-module_input__d-Moh.Input-module_default__zata3.Input-module_error__a-BFh.Input-module_disabled__CJeOi {
|
|
6431
|
+
border-color: rgba(var(--color-red-500-rgb, 201, 59, 85), 0.3);
|
|
6432
|
+
}
|
|
6433
|
+
.Input-module_input__d-Moh.Input-module_default__zata3.Input-module_caution__rC0sY {
|
|
6434
|
+
border-color: var(--color-yellow-600, #c68600);
|
|
6435
|
+
}
|
|
6436
|
+
.Input-module_input__d-Moh.Input-module_default__zata3.Input-module_caution__rC0sY.Input-module_disabled__CJeOi {
|
|
6437
|
+
border-color: rgba(var(--color-yellow-600-rgb, 198, 134, 0), 0.3);
|
|
6438
|
+
}
|
|
6439
|
+
|
|
6440
|
+
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc {
|
|
6441
|
+
background: transparent;
|
|
6442
|
+
color: var(--color-white, #ffffff);
|
|
6443
|
+
}
|
|
6444
|
+
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc::placeholder {
|
|
6445
|
+
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6446
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6447
|
+
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6448
|
+
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6449
|
+
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6450
|
+
position: static;
|
|
6451
|
+
color: var(--color-white, #ffffff);
|
|
6452
|
+
opacity: 0.5;
|
|
6453
|
+
}
|
|
6454
|
+
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc:focus:not([disabled]), .Input-module_input__d-Moh.Input-module_reversed__Kh7dc:hover:not([disabled]), .Input-module_input__d-Moh.Input-module_reversed__Kh7dc:hover:focus:not([disabled]) {
|
|
6455
|
+
background: rgba(var(--color-white-rgb, 255, 255, 255), 0.1);
|
|
6456
|
+
}
|
|
6457
|
+
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc:focus + .Input-module_focusRing__E68jh {
|
|
6458
|
+
border-color: var(--color-blue-300, #73c0e8);
|
|
6459
|
+
}
|
|
6460
|
+
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY) {
|
|
6461
|
+
border-color: rgba(var(--color-white-rgb, 255, 255, 255), 0.65);
|
|
6462
|
+
}
|
|
6463
|
+
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):disabled {
|
|
6464
|
+
border-color: rgba(var(--color-white-rgb, 255, 255, 255), 0.3);
|
|
6465
|
+
}
|
|
6466
|
+
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):focus:not([disabled]), .Input-module_input__d-Moh.Input-module_reversed__Kh7dc:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):hover:not([disabled]), .Input-module_input__d-Moh.Input-module_reversed__Kh7dc:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):hover:focus:not([disabled]) {
|
|
6467
|
+
border-color: var(--color-white, #ffffff);
|
|
6468
|
+
}
|
|
6469
|
+
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc.Input-module_disabled__CJeOi {
|
|
6470
|
+
background: transparent;
|
|
6471
|
+
color: rgba(var(--color-white-rgb, 255, 255, 255), 0.3);
|
|
6472
|
+
}
|
|
6473
|
+
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc.Input-module_disabled__CJeOi::placeholder {
|
|
6474
|
+
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6475
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6476
|
+
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6477
|
+
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6478
|
+
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6479
|
+
position: static;
|
|
6480
|
+
opacity: 0.3;
|
|
6481
|
+
}
|
|
6482
|
+
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc.Input-module_error__a-BFh {
|
|
6483
|
+
border-color: var(--color-red-300, #f597a8);
|
|
6484
|
+
}
|
|
6485
|
+
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc.Input-module_error__a-BFh.Input-module_disabled__CJeOi {
|
|
6486
|
+
border-color: rgba(var(--color-red-300-rgb, 245, 151, 168), 0.3);
|
|
6487
|
+
}
|
|
6488
|
+
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc.Input-module_caution__rC0sY {
|
|
6489
|
+
border-color: var(--color-yellow-400, #ffca4d);
|
|
6490
|
+
}
|
|
6491
|
+
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc.Input-module_caution__rC0sY.Input-module_disabled__CJeOi {
|
|
6492
|
+
border-color: rgba(var(--color-yellow-400-rgb, 255, 202, 77), 0.3);
|
|
6493
|
+
}
|
|
6494
|
+
|
|
6495
|
+
/* stylelint-enable no-descending-specificity */
|
|
6496
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6497
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6498
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6499
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6500
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6501
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6502
|
+
/* stylelint-disable selector-no-vendor-prefix */
|
|
6503
|
+
.InputSearch-module_wrapper__xz4kh {
|
|
6504
|
+
position: relative;
|
|
6505
|
+
}
|
|
6506
|
+
|
|
6507
|
+
.InputSearch-module_input__hCit3[type=search] {
|
|
6508
|
+
outline: 0;
|
|
6509
|
+
box-sizing: border-box;
|
|
6510
|
+
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6511
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6512
|
+
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6513
|
+
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6514
|
+
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6515
|
+
position: static;
|
|
6516
|
+
display: flex;
|
|
6517
|
+
align-items: center;
|
|
6518
|
+
height: 48px;
|
|
6519
|
+
width: 100%;
|
|
6520
|
+
border: var(--border-solid-border-width, 2px) var(--border-solid-border-style, solid) transparent;
|
|
6521
|
+
border-radius: 48px;
|
|
6522
|
+
padding-block: 0;
|
|
6523
|
+
padding-inline: calc(1rem + 1.25rem + var(--spacing-sm, 0.75rem)) var(--spacing-sm, 0.75rem);
|
|
6524
|
+
font-size: 1rem;
|
|
6525
|
+
line-height: 1.5;
|
|
6526
|
+
}
|
|
6527
|
+
.InputSearch-module_input__hCit3[type=search]::placeholder {
|
|
6528
|
+
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6529
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6530
|
+
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6531
|
+
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6532
|
+
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6533
|
+
position: static;
|
|
6534
|
+
opacity: 100%;
|
|
6499
6535
|
}
|
|
6500
6536
|
.InputSearch-module_input__hCit3[type=search]::-webkit-search-cancel-button {
|
|
6501
6537
|
-webkit-appearance: none;
|
|
@@ -6662,281 +6698,242 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
6662
6698
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6663
6699
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6664
6700
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6701
|
+
/* stylelint-disable */
|
|
6702
|
+
/* stylelint-enable */
|
|
6703
|
+
/* prettier-ignore */
|
|
6704
|
+
/* stylelint-disable */
|
|
6705
|
+
/* stylelint-enable */
|
|
6706
|
+
/* prettier-ignore */
|
|
6707
|
+
/* stylelint-disable */
|
|
6708
|
+
/* stylelint-enable */
|
|
6709
|
+
/* prettier-ignore */
|
|
6710
|
+
/* stylelint-disable */
|
|
6711
|
+
/* stylelint-enable */
|
|
6712
|
+
/* prettier-ignore */
|
|
6713
|
+
/* stylelint-disable scss/at-if-no-null */
|
|
6714
|
+
/* stylelint-enable scss/at-if-no-null */
|
|
6715
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6665
6716
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6666
6717
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6667
6718
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6668
6719
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6669
|
-
/* stylelint-disable
|
|
6670
|
-
|
|
6720
|
+
/* stylelint-disable */
|
|
6721
|
+
/* stylelint-enable */
|
|
6722
|
+
/* prettier-ignore */
|
|
6723
|
+
/* stylelint-disable */
|
|
6724
|
+
/* stylelint-enable */
|
|
6725
|
+
/* prettier-ignore */
|
|
6726
|
+
/* prettier-ignore */
|
|
6727
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6728
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6729
|
+
/* stylelint-disable function-name-case, scss/at-function-pattern */
|
|
6730
|
+
/* stylelint-enable function-name-case, scss/at-function-pattern */
|
|
6731
|
+
/* prettier-ignore */
|
|
6732
|
+
/* prettier-ignore */
|
|
6733
|
+
/* prettier-ignore */
|
|
6734
|
+
/* prettier-ignore */
|
|
6735
|
+
/* prettier-ignore */
|
|
6736
|
+
/* prettier-ignore */
|
|
6737
|
+
.DateInputWithIconButton-module_iconButton__W7YMX {
|
|
6738
|
+
appearance: none;
|
|
6739
|
+
display: inline;
|
|
6740
|
+
background: transparent;
|
|
6741
|
+
color: inherit;
|
|
6742
|
+
font: inherit;
|
|
6743
|
+
margin: 0;
|
|
6744
|
+
padding: 0;
|
|
6745
|
+
border: none;
|
|
6746
|
+
display: flex;
|
|
6747
|
+
padding: var(--spacing-6);
|
|
6748
|
+
border: var(--border-solid-border-width, 2px) var(--border-solid-border-style, solid) transparent;
|
|
6749
|
+
border-radius: var(--border-solid-border-radius, 7px);
|
|
6671
6750
|
position: relative;
|
|
6751
|
+
inset-inline-end: -0.35rem;
|
|
6752
|
+
top: -40%;
|
|
6672
6753
|
}
|
|
6673
|
-
.
|
|
6674
|
-
|
|
6754
|
+
.DateInputWithIconButton-module_iconButton__W7YMX :focus {
|
|
6755
|
+
outline: none;
|
|
6675
6756
|
}
|
|
6676
|
-
.
|
|
6677
|
-
|
|
6757
|
+
.DateInputWithIconButton-module_iconButton__W7YMX:focus-visible {
|
|
6758
|
+
outline-offset: -2px;
|
|
6759
|
+
outline: var(--color-blue-500, #0168b3) var(--border-focus-ring-border-style, solid) var(--border-focus-ring-border-width, 2px);
|
|
6678
6760
|
}
|
|
6679
|
-
.
|
|
6680
|
-
|
|
6761
|
+
.DateInputWithIconButton-module_iconButton__W7YMX:hover:not([disabled]) {
|
|
6762
|
+
background-color: var(--color-blue-100, #e6f6ff);
|
|
6763
|
+
color: var(--color-blue-500, #0168b3);
|
|
6681
6764
|
}
|
|
6682
6765
|
|
|
6683
|
-
.
|
|
6684
|
-
|
|
6685
|
-
|
|
6686
|
-
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6687
|
-
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6688
|
-
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6689
|
-
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6690
|
-
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6691
|
-
position: static;
|
|
6692
|
-
background-color: transparent;
|
|
6693
|
-
background-clip: padding-box;
|
|
6694
|
-
border: var(--border-solid-border-width, 2px) var(--border-solid-border-style, solid) transparent;
|
|
6695
|
-
border-radius: var(--border-solid-border-radius, 7px);
|
|
6696
|
-
display: block;
|
|
6697
|
-
font-size: 1rem;
|
|
6698
|
-
line-height: 1.5;
|
|
6699
|
-
padding: 0 var(--spacing-sm, 0.75rem);
|
|
6700
|
-
height: 48px;
|
|
6701
|
-
width: 100%;
|
|
6702
|
-
margin-bottom: 2px;
|
|
6766
|
+
.DateInputWithIconButton-module_calendarActive__b2Vze {
|
|
6767
|
+
color: var(--color-blue-500, #0168b3);
|
|
6768
|
+
background-color: var(--color-blue-100, #e6f6ff);
|
|
6703
6769
|
}
|
|
6704
|
-
|
|
6705
|
-
|
|
6706
|
-
|
|
6707
|
-
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6708
|
-
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6709
|
-
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6710
|
-
position: static;
|
|
6711
|
-
opacity: 100%;
|
|
6770
|
+
|
|
6771
|
+
.DateInputWithIconButton-module_disabled__0IRHh {
|
|
6772
|
+
opacity: 0.3;
|
|
6712
6773
|
}
|
|
6713
|
-
|
|
6714
|
-
|
|
6715
|
-
|
|
6716
|
-
|
|
6717
|
-
|
|
6718
|
-
|
|
6719
|
-
|
|
6720
|
-
opacity: 0%;
|
|
6774
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6775
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6776
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs {
|
|
6777
|
+
all: unset;
|
|
6778
|
+
appearance: none;
|
|
6779
|
+
width: 100%;
|
|
6780
|
+
margin: 0;
|
|
6721
6781
|
}
|
|
6722
|
-
.
|
|
6723
|
-
|
|
6782
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs.InputRange-module_disabled__LCaIN {
|
|
6783
|
+
opacity: 40%;
|
|
6724
6784
|
}
|
|
6725
|
-
.
|
|
6726
|
-
|
|
6727
|
-
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6728
|
-
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6729
|
-
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6730
|
-
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6731
|
-
position: static;
|
|
6732
|
-
color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.3);
|
|
6733
|
-
}
|
|
6734
|
-
|
|
6735
|
-
.Input-module_input__d-Moh:focus + .Input-module_focusRing__E68jh {
|
|
6736
|
-
position: absolute;
|
|
6737
|
-
background: transparent;
|
|
6738
|
-
border-radius: var(--border-focus-ring-border-radius, 10px);
|
|
6739
|
-
border-width: var(--border-focus-ring-border-width, 2px);
|
|
6740
|
-
border-style: var(--border-focus-ring-border-style, solid);
|
|
6741
|
-
border-color: transparent;
|
|
6742
|
-
inset: -3px;
|
|
6743
|
-
pointer-events: none;
|
|
6785
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-moz-focus-outer {
|
|
6786
|
+
border: 0;
|
|
6744
6787
|
}
|
|
6745
|
-
|
|
6746
|
-
|
|
6747
|
-
.Input-module_withStartIconAdornment__de6-U .Input-module_startIconAdornment__pnn-b {
|
|
6748
|
-
position: absolute;
|
|
6749
|
-
height: 1.25rem;
|
|
6750
|
-
top: 50%;
|
|
6751
|
-
transform: translateY(-50%);
|
|
6752
|
-
z-index: 1;
|
|
6753
|
-
inset-inline: var(--spacing-sm, 0.75rem) auto;
|
|
6788
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs:focus {
|
|
6789
|
+
outline: 0;
|
|
6754
6790
|
}
|
|
6755
|
-
.
|
|
6756
|
-
|
|
6791
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs:focus-visible {
|
|
6792
|
+
outline: 2px solid var(--color-blue-500, #0168b3);
|
|
6757
6793
|
}
|
|
6758
|
-
.
|
|
6759
|
-
|
|
6794
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-webkit-slider-runnable-track {
|
|
6795
|
+
margin: var(--spacing-sm, 0.75rem) 0;
|
|
6796
|
+
width: auto;
|
|
6797
|
+
height: 0;
|
|
6798
|
+
box-sizing: border-box;
|
|
6799
|
+
border-top: 1px solid var(--color-gray-500, #878792);
|
|
6800
|
+
border-bottom: 2px solid var(--color-gray-500, #878792);
|
|
6801
|
+
border-radius: 4px;
|
|
6760
6802
|
}
|
|
6761
|
-
|
|
6762
|
-
|
|
6763
|
-
|
|
6764
|
-
|
|
6765
|
-
top:
|
|
6766
|
-
|
|
6767
|
-
|
|
6768
|
-
inset-inline: auto var(--spacing-sm, 0.75rem);
|
|
6803
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-moz-range-track {
|
|
6804
|
+
width: auto;
|
|
6805
|
+
height: 0;
|
|
6806
|
+
box-sizing: border-box;
|
|
6807
|
+
border-top: 1px solid var(--color-gray-500, #878792);
|
|
6808
|
+
border-bottom: 2px solid var(--color-gray-500, #878792);
|
|
6809
|
+
border-radius: 4px;
|
|
6769
6810
|
}
|
|
6770
|
-
.
|
|
6771
|
-
|
|
6811
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-webkit-slider-thumb {
|
|
6812
|
+
-webkit-appearance: none;
|
|
6813
|
+
margin-top: calc(34px / 2 * -1);
|
|
6814
|
+
box-sizing: content-box;
|
|
6815
|
+
width: 26px;
|
|
6816
|
+
height: 26px;
|
|
6817
|
+
border: 4px solid var(--color-white, #ffffff);
|
|
6818
|
+
border-radius: 100%;
|
|
6819
|
+
background: var(--color-blue-500, #0168b3);
|
|
6772
6820
|
}
|
|
6773
|
-
.
|
|
6774
|
-
|
|
6821
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-webkit-slider-thumb:not(:disabled) {
|
|
6822
|
+
transition: all 0.2s;
|
|
6823
|
+
transition-property: background, height, width;
|
|
6775
6824
|
}
|
|
6776
|
-
|
|
6777
|
-
|
|
6778
|
-
|
|
6825
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-webkit-slider-thumb:not(:disabled):hover {
|
|
6826
|
+
background: var(--color-blue-600, #004970);
|
|
6827
|
+
width: 32px;
|
|
6828
|
+
height: 32px;
|
|
6779
6829
|
}
|
|
6780
|
-
|
|
6781
|
-
|
|
6782
|
-
|
|
6783
|
-
|
|
6784
|
-
|
|
6785
|
-
|
|
6830
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-moz-range-thumb {
|
|
6831
|
+
box-sizing: content-box;
|
|
6832
|
+
width: 26px;
|
|
6833
|
+
height: 26px;
|
|
6834
|
+
border: 4px solid var(--color-white, #ffffff);
|
|
6835
|
+
border-radius: 100%;
|
|
6836
|
+
background: var(--color-blue-500, #0168b3);
|
|
6786
6837
|
}
|
|
6787
|
-
.
|
|
6788
|
-
|
|
6789
|
-
|
|
6838
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-moz-range-thumb:not(:disabled) {
|
|
6839
|
+
transition: all 0.2s;
|
|
6840
|
+
transition-property: background, height, width;
|
|
6790
6841
|
}
|
|
6791
|
-
.
|
|
6792
|
-
|
|
6842
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-moz-range-thumb:not(:disabled):hover {
|
|
6843
|
+
background: var(--color-blue-600, #004970);
|
|
6844
|
+
width: 32px;
|
|
6845
|
+
height: 32px;
|
|
6793
6846
|
}
|
|
6794
|
-
.
|
|
6795
|
-
|
|
6847
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs.InputRange-module_hideThumb__oscfB::-webkit-slider-thumb {
|
|
6848
|
+
width: 0;
|
|
6849
|
+
height: 0;
|
|
6850
|
+
border: none;
|
|
6796
6851
|
}
|
|
6797
|
-
.
|
|
6798
|
-
|
|
6852
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs.InputRange-module_hideThumb__oscfB::-moz-range-thumb {
|
|
6853
|
+
width: 0;
|
|
6854
|
+
height: 0;
|
|
6855
|
+
border: none;
|
|
6799
6856
|
}
|
|
6800
|
-
|
|
6801
|
-
|
|
6802
|
-
|
|
6803
|
-
|
|
6857
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-track {
|
|
6858
|
+
width: auto;
|
|
6859
|
+
height: 0;
|
|
6860
|
+
box-sizing: border-box;
|
|
6861
|
+
border-top: 1px solid var(--color-gray-500, #878792);
|
|
6862
|
+
border-bottom: 2px solid var(--color-gray-500, #878792);
|
|
6863
|
+
border-radius: 4px;
|
|
6864
|
+
color: transparent;
|
|
6865
|
+
border-width: 26px 0;
|
|
6866
|
+
border-color: transparent;
|
|
6867
|
+
background: transparent;
|
|
6804
6868
|
}
|
|
6805
|
-
.
|
|
6806
|
-
|
|
6869
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-fill-lower {
|
|
6870
|
+
border: none;
|
|
6871
|
+
border-radius: 8px;
|
|
6872
|
+
background: var(--color-gray-500, #878792);
|
|
6807
6873
|
}
|
|
6808
|
-
.
|
|
6809
|
-
|
|
6874
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-fill-upper {
|
|
6875
|
+
border: none;
|
|
6876
|
+
border-radius: 8px;
|
|
6877
|
+
background: var(--color-gray-500, #878792);
|
|
6810
6878
|
}
|
|
6811
|
-
|
|
6812
|
-
|
|
6813
|
-
|
|
6814
|
-
|
|
6879
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb {
|
|
6880
|
+
box-sizing: content-box;
|
|
6881
|
+
width: 26px;
|
|
6882
|
+
height: 26px;
|
|
6883
|
+
border: 4px solid var(--color-white, #ffffff);
|
|
6884
|
+
border-radius: 100%;
|
|
6885
|
+
background: var(--color-blue-500, #0168b3);
|
|
6815
6886
|
}
|
|
6816
|
-
.
|
|
6817
|
-
|
|
6887
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disabled) {
|
|
6888
|
+
transition: all 0.2s;
|
|
6889
|
+
transition-property: background, height, width;
|
|
6818
6890
|
}
|
|
6819
|
-
.
|
|
6820
|
-
|
|
6891
|
+
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disabled):hover {
|
|
6892
|
+
background: var(--color-blue-600, #004970);
|
|
6893
|
+
width: 32px;
|
|
6894
|
+
height: 32px;
|
|
6821
6895
|
}
|
|
6822
6896
|
|
|
6823
|
-
.
|
|
6824
|
-
background-color: var(--color-white, #ffffff);
|
|
6825
|
-
color: var(--color-purple-800, #2f2438);
|
|
6897
|
+
.InputRange-module_spokes__UFu4A {
|
|
6826
6898
|
display: flex;
|
|
6827
|
-
|
|
6828
|
-
|
|
6829
|
-
.Input-module_input__d-Moh.Input-module_default__zata3::placeholder {
|
|
6830
|
-
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6831
|
-
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6832
|
-
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6833
|
-
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6834
|
-
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6835
|
-
position: static;
|
|
6836
|
-
color: var(--color-purple-800, #2f2438);
|
|
6837
|
-
opacity: 0.5;
|
|
6838
|
-
}
|
|
6839
|
-
.Input-module_input__d-Moh.Input-module_default__zata3:focus:not([disabled]), .Input-module_input__d-Moh.Input-module_default__zata3:hover:not([disabled]), .Input-module_input__d-Moh.Input-module_default__zata3:hover:focus:not([disabled]) {
|
|
6840
|
-
background-color: var(--color-gray-200, #f4f4f5);
|
|
6841
|
-
}
|
|
6842
|
-
.Input-module_input__d-Moh.Input-module_default__zata3:focus + .Input-module_focusRing__E68jh {
|
|
6843
|
-
border-color: var(--color-blue-500, #0168b3);
|
|
6844
|
-
}
|
|
6845
|
-
.Input-module_input__d-Moh.Input-module_default__zata3.Input-module_disabled__CJeOi {
|
|
6846
|
-
background-color: var(--color-white, #ffffff);
|
|
6847
|
-
border-color: rgba(var(--color-gray-500-rgb, 135, 135, 146), 0.3);
|
|
6848
|
-
color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.3);
|
|
6849
|
-
}
|
|
6850
|
-
.Input-module_input__d-Moh.Input-module_default__zata3.Input-module_disabled__CJeOi::placeholder {
|
|
6851
|
-
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6852
|
-
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6853
|
-
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6854
|
-
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6855
|
-
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6856
|
-
position: static;
|
|
6857
|
-
opacity: 0.3;
|
|
6858
|
-
}
|
|
6859
|
-
.Input-module_input__d-Moh.Input-module_default__zata3:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY) {
|
|
6860
|
-
border-color: var(--color-gray-500, #878792);
|
|
6861
|
-
}
|
|
6862
|
-
.Input-module_input__d-Moh.Input-module_default__zata3:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):disabled {
|
|
6863
|
-
border-color: rgba(var(--color-gray-500-rgb, 135, 135, 146), 0.3);
|
|
6864
|
-
}
|
|
6865
|
-
.Input-module_input__d-Moh.Input-module_default__zata3:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):focus:not([disabled]), .Input-module_input__d-Moh.Input-module_default__zata3:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):hover:not([disabled]), .Input-module_input__d-Moh.Input-module_default__zata3:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):hover:focus:not([disabled]) {
|
|
6866
|
-
border-color: var(--color-gray-600, #524e56);
|
|
6867
|
-
}
|
|
6868
|
-
.Input-module_input__d-Moh.Input-module_default__zata3.Input-module_error__a-BFh {
|
|
6869
|
-
border-color: var(--color-red-500, #c93b55);
|
|
6870
|
-
}
|
|
6871
|
-
.Input-module_input__d-Moh.Input-module_default__zata3.Input-module_error__a-BFh.Input-module_disabled__CJeOi {
|
|
6872
|
-
border-color: rgba(var(--color-red-500-rgb, 201, 59, 85), 0.3);
|
|
6873
|
-
}
|
|
6874
|
-
.Input-module_input__d-Moh.Input-module_default__zata3.Input-module_caution__rC0sY {
|
|
6875
|
-
border-color: var(--color-yellow-600, #c68600);
|
|
6876
|
-
}
|
|
6877
|
-
.Input-module_input__d-Moh.Input-module_default__zata3.Input-module_caution__rC0sY.Input-module_disabled__CJeOi {
|
|
6878
|
-
border-color: rgba(var(--color-yellow-600-rgb, 198, 134, 0), 0.3);
|
|
6899
|
+
justify-content: space-between;
|
|
6900
|
+
padding: 0 calc(34px / 2) var(--spacing-sm, 0.75rem);
|
|
6879
6901
|
}
|
|
6880
6902
|
|
|
6881
|
-
.
|
|
6882
|
-
|
|
6883
|
-
color: var(--color-white, #ffffff);
|
|
6884
|
-
}
|
|
6885
|
-
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc::placeholder {
|
|
6886
|
-
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6887
|
-
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6888
|
-
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6889
|
-
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6890
|
-
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6891
|
-
position: static;
|
|
6892
|
-
color: var(--color-white, #ffffff);
|
|
6893
|
-
opacity: 0.5;
|
|
6894
|
-
}
|
|
6895
|
-
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc:focus:not([disabled]), .Input-module_input__d-Moh.Input-module_reversed__Kh7dc:hover:not([disabled]), .Input-module_input__d-Moh.Input-module_reversed__Kh7dc:hover:focus:not([disabled]) {
|
|
6896
|
-
background: rgba(var(--color-white-rgb, 255, 255, 255), 0.1);
|
|
6897
|
-
}
|
|
6898
|
-
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc:focus + .Input-module_focusRing__E68jh {
|
|
6899
|
-
border-color: var(--color-blue-300, #73c0e8);
|
|
6900
|
-
}
|
|
6901
|
-
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY) {
|
|
6902
|
-
border-color: rgba(var(--color-white-rgb, 255, 255, 255), 0.65);
|
|
6903
|
-
}
|
|
6904
|
-
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):disabled {
|
|
6905
|
-
border-color: rgba(var(--color-white-rgb, 255, 255, 255), 0.3);
|
|
6906
|
-
}
|
|
6907
|
-
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):focus:not([disabled]), .Input-module_input__d-Moh.Input-module_reversed__Kh7dc:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):hover:not([disabled]), .Input-module_input__d-Moh.Input-module_reversed__Kh7dc:not(.Input-module_error__a-BFh, .Input-module_caution__rC0sY):hover:focus:not([disabled]) {
|
|
6908
|
-
border-color: var(--color-white, #ffffff);
|
|
6909
|
-
}
|
|
6910
|
-
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc.Input-module_disabled__CJeOi {
|
|
6911
|
-
background: transparent;
|
|
6912
|
-
color: rgba(var(--color-white-rgb, 255, 255, 255), 0.3);
|
|
6913
|
-
}
|
|
6914
|
-
.Input-module_input__d-Moh.Input-module_reversed__Kh7dc.Input-module_disabled__CJeOi::placeholder {
|
|
6915
|
-
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
6916
|
-
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
6917
|
-
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
6918
|
-
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
6919
|
-
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
6920
|
-
position: static;
|
|
6921
|
-
opacity: 0.3;
|
|
6903
|
+
.InputRange-module_spokes__UFu4A.InputRange-module_disabled__LCaIN {
|
|
6904
|
+
opacity: 40%;
|
|
6922
6905
|
}
|
|
6923
|
-
|
|
6924
|
-
|
|
6906
|
+
|
|
6907
|
+
.InputRange-module_spokeContainer__i6epK {
|
|
6908
|
+
display: flex;
|
|
6909
|
+
align-items: center;
|
|
6910
|
+
justify-content: center;
|
|
6911
|
+
width: 1px;
|
|
6925
6912
|
}
|
|
6926
|
-
|
|
6927
|
-
|
|
6913
|
+
|
|
6914
|
+
.InputRange-module_spoke__k4Hzh {
|
|
6915
|
+
width: 0;
|
|
6916
|
+
height: 0;
|
|
6917
|
+
background: var(--color-gray-500, #878792);
|
|
6918
|
+
border: 2px solid var(--color-gray-500, #878792);
|
|
6919
|
+
border-radius: 100%;
|
|
6928
6920
|
}
|
|
6929
|
-
|
|
6930
|
-
|
|
6921
|
+
|
|
6922
|
+
.InputRange-module_labelsContainer__H-cPY {
|
|
6923
|
+
display: flex;
|
|
6924
|
+
justify-content: center;
|
|
6925
|
+
width: 100%;
|
|
6931
6926
|
}
|
|
6932
|
-
|
|
6933
|
-
|
|
6927
|
+
|
|
6928
|
+
.InputRange-module_sliderLabels__qpYBv {
|
|
6929
|
+
width: 100%;
|
|
6930
|
+
display: flex;
|
|
6931
|
+
justify-content: space-between;
|
|
6934
6932
|
}
|
|
6935
6933
|
|
|
6936
|
-
|
|
6937
|
-
|
|
6938
|
-
|
|
6939
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6934
|
+
.InputRange-module_sliderLabels__qpYBv.InputRange-module_disabled__LCaIN {
|
|
6935
|
+
opacity: 40%;
|
|
6936
|
+
}
|
|
6940
6937
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6941
6938
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
6942
6939
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -6993,12 +6990,12 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
6993
6990
|
/* prettier-ignore */
|
|
6994
6991
|
/* prettier-ignore */
|
|
6995
6992
|
/* prettier-ignore */
|
|
6996
|
-
.
|
|
6993
|
+
.GenericModal-module_defaultModalWidth__kG7lU {
|
|
6997
6994
|
min-width: 300px;
|
|
6998
6995
|
max-width: 600px;
|
|
6999
6996
|
}
|
|
7000
6997
|
|
|
7001
|
-
.
|
|
6998
|
+
.GenericModal-module_backdropLayer__RNQ-U {
|
|
7002
6999
|
position: fixed;
|
|
7003
7000
|
background-color: #000;
|
|
7004
7001
|
opacity: 50%;
|
|
@@ -7009,7 +7006,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7009
7006
|
inset-inline-start: 0;
|
|
7010
7007
|
}
|
|
7011
7008
|
|
|
7012
|
-
.
|
|
7009
|
+
.GenericModal-module_scrollLayer__A5VdY {
|
|
7013
7010
|
position: fixed;
|
|
7014
7011
|
display: flex;
|
|
7015
7012
|
align-items: center;
|
|
@@ -7021,42 +7018,16 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7021
7018
|
inset-inline-start: 0;
|
|
7022
7019
|
}
|
|
7023
7020
|
|
|
7024
|
-
.
|
|
7021
|
+
.GenericModal-module_modalLayer__WfD1U {
|
|
7025
7022
|
margin: auto;
|
|
7026
7023
|
padding: 1.5rem 0;
|
|
7027
7024
|
width: 100%;
|
|
7028
7025
|
}
|
|
7029
7026
|
|
|
7030
|
-
.
|
|
7031
|
-
margin: auto;
|
|
7032
|
-
background-color: var(--color-white, #ffffff);
|
|
7033
|
-
border-radius: var(--border-solid-border-radius, 7px);
|
|
7034
|
-
box-shadow: var(--shadow-large-box-shadow, 0 3px 9px 0 rgba(0, 0, 0, 0.1), 0 8px 40px 0 rgba(0, 0, 0, 0.08));
|
|
7035
|
-
position: relative;
|
|
7036
|
-
width: 90%;
|
|
7037
|
-
-webkit-font-smoothing: antialiased;
|
|
7038
|
-
color: var(--color-purple-800, #2f2438);
|
|
7039
|
-
}
|
|
7040
|
-
@media (min-width: 768px) {
|
|
7041
|
-
.ContextModal-module_modal__wriV7 {
|
|
7042
|
-
width: 100%;
|
|
7043
|
-
}
|
|
7044
|
-
}
|
|
7045
|
-
.ContextModal-module_modal__wriV7:has([class*="modalLabel"]:focus-visible)::after {
|
|
7046
|
-
content: "";
|
|
7047
|
-
position: absolute;
|
|
7048
|
-
background: transparent;
|
|
7049
|
-
border-radius: var(--border-focus-ring-border-radius, 10px);
|
|
7050
|
-
border-width: var(--border-focus-ring-border-width, 2px);
|
|
7051
|
-
border-style: var(--border-focus-ring-border-style, solid);
|
|
7052
|
-
border-color: var(--color-blue-300, #73c0e8);
|
|
7053
|
-
inset: -4px;
|
|
7054
|
-
}
|
|
7055
|
-
|
|
7056
|
-
.ContextModal-module_animatingEnter__53BlF {
|
|
7027
|
+
.GenericModal-module_animatingEnter__P3wuk {
|
|
7057
7028
|
transition-duration: var(--animation-duration-fast, 300ms);
|
|
7058
7029
|
}
|
|
7059
|
-
.
|
|
7030
|
+
.GenericModal-module_animatingEnter__P3wuk .GenericModal-module_backdropLayer__RNQ-U {
|
|
7060
7031
|
/*
|
|
7061
7032
|
There's a weird bug in Chrome/Blink 102.x that animates the opacity
|
|
7062
7033
|
all the way to 1 with 200ms ("rapid" token), but is fine with
|
|
@@ -7065,9 +7036,9 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7065
7036
|
animation-duration: 201ms;
|
|
7066
7037
|
animation-fill-mode: forwards;
|
|
7067
7038
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7068
|
-
animation-name:
|
|
7039
|
+
animation-name: GenericModal-module_fade-0-to-0-5__-4t3h;
|
|
7069
7040
|
}
|
|
7070
|
-
@keyframes
|
|
7041
|
+
@keyframes GenericModal-module_fade-0-to-0-5__-4t3h {
|
|
7071
7042
|
0% {
|
|
7072
7043
|
opacity: 0;
|
|
7073
7044
|
}
|
|
@@ -7075,14 +7046,14 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7075
7046
|
opacity: 0.5;
|
|
7076
7047
|
}
|
|
7077
7048
|
}
|
|
7078
|
-
.
|
|
7049
|
+
.GenericModal-module_animatingEnter__P3wuk [data-modal] {
|
|
7079
7050
|
animation-duration: var(--animation-duration-fast, 300ms);
|
|
7080
7051
|
animation-fill-mode: forwards;
|
|
7081
7052
|
animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
|
|
7082
7053
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7083
|
-
animation-name:
|
|
7054
|
+
animation-name: GenericModal-module_custom-1__G0JT4;
|
|
7084
7055
|
}
|
|
7085
|
-
@keyframes
|
|
7056
|
+
@keyframes GenericModal-module_custom-1__G0JT4 {
|
|
7086
7057
|
0% {
|
|
7087
7058
|
opacity: 0;
|
|
7088
7059
|
transform: scale(0.5);
|
|
@@ -7093,16 +7064,16 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7093
7064
|
}
|
|
7094
7065
|
}
|
|
7095
7066
|
|
|
7096
|
-
.
|
|
7067
|
+
.GenericModal-module_animatingLeave__rNkKX {
|
|
7097
7068
|
transition-duration: var(--animation-duration-rapid, 200ms);
|
|
7098
7069
|
}
|
|
7099
|
-
.
|
|
7070
|
+
.GenericModal-module_animatingLeave__rNkKX .GenericModal-module_backdropLayer__RNQ-U {
|
|
7100
7071
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
7101
7072
|
animation-fill-mode: forwards;
|
|
7102
7073
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7103
|
-
animation-name:
|
|
7074
|
+
animation-name: GenericModal-module_fade-0-5-to-0__JkaSn;
|
|
7104
7075
|
}
|
|
7105
|
-
@keyframes
|
|
7076
|
+
@keyframes GenericModal-module_fade-0-5-to-0__JkaSn {
|
|
7106
7077
|
0% {
|
|
7107
7078
|
opacity: 0.5;
|
|
7108
7079
|
}
|
|
@@ -7110,14 +7081,14 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7110
7081
|
opacity: 0;
|
|
7111
7082
|
}
|
|
7112
7083
|
}
|
|
7113
|
-
.
|
|
7084
|
+
.GenericModal-module_animatingLeave__rNkKX [data-modal] {
|
|
7114
7085
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
7115
7086
|
animation-fill-mode: forwards;
|
|
7116
7087
|
animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
|
|
7117
7088
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7118
|
-
animation-name:
|
|
7089
|
+
animation-name: GenericModal-module_custom-3__oWflS;
|
|
7119
7090
|
}
|
|
7120
|
-
@keyframes
|
|
7091
|
+
@keyframes GenericModal-module_custom-3__oWflS {
|
|
7121
7092
|
0% {
|
|
7122
7093
|
opacity: 1;
|
|
7123
7094
|
transform: scale(1);
|
|
@@ -7128,135 +7099,20 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7128
7099
|
}
|
|
7129
7100
|
}
|
|
7130
7101
|
|
|
7131
|
-
.
|
|
7102
|
+
.GenericModal-module_unscrollable__HjRaW {
|
|
7132
7103
|
/* Tech debt - this !important existed before Stylelint rules */
|
|
7133
7104
|
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
7134
7105
|
}
|
|
7135
7106
|
|
|
7136
|
-
.
|
|
7107
|
+
.GenericModal-module_pseudoScrollbar__BhRqh {
|
|
7137
7108
|
/* Tech debt - this !important existed before Stylelint rules */
|
|
7138
7109
|
padding-right: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
7139
7110
|
}
|
|
7140
7111
|
|
|
7141
|
-
.
|
|
7112
|
+
.GenericModal-module_hide__SK9PI {
|
|
7142
7113
|
opacity: 0%;
|
|
7143
7114
|
pointer-events: none;
|
|
7144
7115
|
}
|
|
7145
|
-
|
|
7146
|
-
.ContextModal-module_modal__wriV7 {
|
|
7147
|
-
min-width: 300px;
|
|
7148
|
-
max-width: 840px;
|
|
7149
|
-
}
|
|
7150
|
-
@media (min-width: 768px) {
|
|
7151
|
-
.ContextModal-module_modal__wriV7 {
|
|
7152
|
-
width: 90%;
|
|
7153
|
-
}
|
|
7154
|
-
}
|
|
7155
|
-
.ContextModal-module_animatingEnter__53BlF .ContextModal-module_modal__wriV7 {
|
|
7156
|
-
animation-duration: var(--animation-duration-fast, 300ms);
|
|
7157
|
-
animation-fill-mode: forwards;
|
|
7158
|
-
animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
|
|
7159
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7160
|
-
animation-name: ContextModal-module_custom-5__deZpl;
|
|
7161
|
-
}
|
|
7162
|
-
@keyframes ContextModal-module_custom-5__deZpl {
|
|
7163
|
-
0% {
|
|
7164
|
-
opacity: 0;
|
|
7165
|
-
transform: scale(0.5);
|
|
7166
|
-
}
|
|
7167
|
-
100% {
|
|
7168
|
-
opacity: 1;
|
|
7169
|
-
transform: scale(1);
|
|
7170
|
-
}
|
|
7171
|
-
}
|
|
7172
|
-
.ContextModal-module_animatingLeave__-JR11 .ContextModal-module_modal__wriV7 {
|
|
7173
|
-
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
7174
|
-
animation-fill-mode: forwards;
|
|
7175
|
-
animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
|
|
7176
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7177
|
-
animation-name: ContextModal-module_custom-7__rPmP4;
|
|
7178
|
-
}
|
|
7179
|
-
@keyframes ContextModal-module_custom-7__rPmP4 {
|
|
7180
|
-
0% {
|
|
7181
|
-
opacity: 1;
|
|
7182
|
-
transform: scale(1);
|
|
7183
|
-
}
|
|
7184
|
-
100% {
|
|
7185
|
-
opacity: 0;
|
|
7186
|
-
transform: scale(0.5);
|
|
7187
|
-
}
|
|
7188
|
-
}
|
|
7189
|
-
|
|
7190
|
-
.ContextModal-module_header__V4IRF {
|
|
7191
|
-
color: var(--color-purple-800, #2f2438);
|
|
7192
|
-
text-align: start;
|
|
7193
|
-
}
|
|
7194
|
-
.ContextModal-module_header__V4IRF.ContextModal-module_padded__osmk1 {
|
|
7195
|
-
padding: var(--spacing-md, 1.5rem);
|
|
7196
|
-
}
|
|
7197
|
-
@media (min-width: 768px) {
|
|
7198
|
-
.ContextModal-module_header__V4IRF.ContextModal-module_padded__osmk1 {
|
|
7199
|
-
padding: var(--spacing-md, 1.5rem) var(--spacing-lg, 2.25rem);
|
|
7200
|
-
}
|
|
7201
|
-
}
|
|
7202
|
-
|
|
7203
|
-
.ContextModal-module_footerWithSecondaryAction__-5sq8, .ContextModal-module_footer__JIwF5 {
|
|
7204
|
-
white-space: initial;
|
|
7205
|
-
}
|
|
7206
|
-
@media (min-width: 768px) {
|
|
7207
|
-
.ContextModal-module_footerWithSecondaryAction__-5sq8, .ContextModal-module_footer__JIwF5 {
|
|
7208
|
-
white-space: nowrap;
|
|
7209
|
-
}
|
|
7210
|
-
}
|
|
7211
|
-
|
|
7212
|
-
.ContextModal-module_footerWithSecondaryAction__-5sq8 {
|
|
7213
|
-
margin-left: calc(-1 * var(--spacing-sm, 0.75rem));
|
|
7214
|
-
}
|
|
7215
|
-
|
|
7216
|
-
.ContextModal-module_emptyFooter__UHWc- {
|
|
7217
|
-
height: var(--spacing-sm, 0.75rem);
|
|
7218
|
-
}
|
|
7219
|
-
|
|
7220
|
-
.ContextModal-module_portraitContentlayout__kqUJG {
|
|
7221
|
-
padding: var(--spacing-md, 1.5rem);
|
|
7222
|
-
display: block;
|
|
7223
|
-
box-sizing: content-box;
|
|
7224
|
-
}
|
|
7225
|
-
@media (min-width: 768px) {
|
|
7226
|
-
.ContextModal-module_portraitContentlayout__kqUJG {
|
|
7227
|
-
display: grid;
|
|
7228
|
-
max-width: 800px;
|
|
7229
|
-
grid-auto-columns: 1fr;
|
|
7230
|
-
grid-auto-flow: column;
|
|
7231
|
-
column-gap: var(--spacing-xl, 3rem);
|
|
7232
|
-
padding: var(--spacing-md, 1.5rem) var(--spacing-lg, 2.25rem);
|
|
7233
|
-
}
|
|
7234
|
-
}
|
|
7235
|
-
|
|
7236
|
-
.ContextModal-module_landscapeContentlayout__IFqQN {
|
|
7237
|
-
display: flex;
|
|
7238
|
-
padding: var(--spacing-md, 1.5rem);
|
|
7239
|
-
flex-direction: column;
|
|
7240
|
-
}
|
|
7241
|
-
@media (min-width: 768px) {
|
|
7242
|
-
.ContextModal-module_landscapeContentlayout__IFqQN {
|
|
7243
|
-
padding: var(--spacing-md, 1.5rem) var(--spacing-lg, 2.25rem);
|
|
7244
|
-
}
|
|
7245
|
-
}
|
|
7246
|
-
.ContextModal-module_landscapeContentlayout__IFqQN .ContextModal-module_image__aEDvK {
|
|
7247
|
-
display: flex;
|
|
7248
|
-
flex-direction: column;
|
|
7249
|
-
align-items: center;
|
|
7250
|
-
justify-content: center;
|
|
7251
|
-
}
|
|
7252
|
-
.ContextModal-module_landscapeContentlayout__IFqQN .ContextModal-module_content__-KrFF {
|
|
7253
|
-
padding-left: 0;
|
|
7254
|
-
}
|
|
7255
|
-
@media (min-width: 768px) {
|
|
7256
|
-
.ContextModal-module_landscapeContentlayout__IFqQN .ContextModal-module_content__-KrFF {
|
|
7257
|
-
max-width: 100%;
|
|
7258
|
-
}
|
|
7259
|
-
}
|
|
7260
7116
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
7261
7117
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
7262
7118
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -7316,12 +7172,12 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7316
7172
|
/* prettier-ignore */
|
|
7317
7173
|
/* prettier-ignore */
|
|
7318
7174
|
/* prettier-ignore */
|
|
7319
|
-
.
|
|
7175
|
+
.ContextModal-module_defaultModalWidth__bgf7L {
|
|
7320
7176
|
min-width: 300px;
|
|
7321
7177
|
max-width: 600px;
|
|
7322
7178
|
}
|
|
7323
7179
|
|
|
7324
|
-
.
|
|
7180
|
+
.ContextModal-module_backdropLayer__wuj3B {
|
|
7325
7181
|
position: fixed;
|
|
7326
7182
|
background-color: #000;
|
|
7327
7183
|
opacity: 50%;
|
|
@@ -7332,7 +7188,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7332
7188
|
inset-inline-start: 0;
|
|
7333
7189
|
}
|
|
7334
7190
|
|
|
7335
|
-
.
|
|
7191
|
+
.ContextModal-module_scrollLayer__JANXA {
|
|
7336
7192
|
position: fixed;
|
|
7337
7193
|
display: flex;
|
|
7338
7194
|
align-items: center;
|
|
@@ -7344,13 +7200,13 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7344
7200
|
inset-inline-start: 0;
|
|
7345
7201
|
}
|
|
7346
7202
|
|
|
7347
|
-
.
|
|
7203
|
+
.ContextModal-module_modalLayer__Cx6aX {
|
|
7348
7204
|
margin: auto;
|
|
7349
7205
|
padding: 1.5rem 0;
|
|
7350
7206
|
width: 100%;
|
|
7351
7207
|
}
|
|
7352
7208
|
|
|
7353
|
-
.
|
|
7209
|
+
.ContextModal-module_modal__wriV7 {
|
|
7354
7210
|
margin: auto;
|
|
7355
7211
|
background-color: var(--color-white, #ffffff);
|
|
7356
7212
|
border-radius: var(--border-solid-border-radius, 7px);
|
|
@@ -7361,11 +7217,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7361
7217
|
color: var(--color-purple-800, #2f2438);
|
|
7362
7218
|
}
|
|
7363
7219
|
@media (min-width: 768px) {
|
|
7364
|
-
.
|
|
7220
|
+
.ContextModal-module_modal__wriV7 {
|
|
7365
7221
|
width: 100%;
|
|
7366
7222
|
}
|
|
7367
7223
|
}
|
|
7368
|
-
.
|
|
7224
|
+
.ContextModal-module_modal__wriV7:has([class*="modalLabel"]:focus-visible)::after {
|
|
7369
7225
|
content: "";
|
|
7370
7226
|
position: absolute;
|
|
7371
7227
|
background: transparent;
|
|
@@ -7376,10 +7232,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7376
7232
|
inset: -4px;
|
|
7377
7233
|
}
|
|
7378
7234
|
|
|
7379
|
-
.
|
|
7235
|
+
.ContextModal-module_animatingEnter__53BlF {
|
|
7380
7236
|
transition-duration: var(--animation-duration-fast, 300ms);
|
|
7381
7237
|
}
|
|
7382
|
-
.
|
|
7238
|
+
.ContextModal-module_animatingEnter__53BlF .ContextModal-module_backdropLayer__wuj3B {
|
|
7383
7239
|
/*
|
|
7384
7240
|
There's a weird bug in Chrome/Blink 102.x that animates the opacity
|
|
7385
7241
|
all the way to 1 with 200ms ("rapid" token), but is fine with
|
|
@@ -7388,9 +7244,9 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7388
7244
|
animation-duration: 201ms;
|
|
7389
7245
|
animation-fill-mode: forwards;
|
|
7390
7246
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7391
|
-
animation-name:
|
|
7247
|
+
animation-name: ContextModal-module_fade-0-to-0-5__vZx9M;
|
|
7392
7248
|
}
|
|
7393
|
-
@keyframes
|
|
7249
|
+
@keyframes ContextModal-module_fade-0-to-0-5__vZx9M {
|
|
7394
7250
|
0% {
|
|
7395
7251
|
opacity: 0;
|
|
7396
7252
|
}
|
|
@@ -7398,14 +7254,14 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7398
7254
|
opacity: 0.5;
|
|
7399
7255
|
}
|
|
7400
7256
|
}
|
|
7401
|
-
.
|
|
7257
|
+
.ContextModal-module_animatingEnter__53BlF [data-modal] {
|
|
7402
7258
|
animation-duration: var(--animation-duration-fast, 300ms);
|
|
7403
7259
|
animation-fill-mode: forwards;
|
|
7404
7260
|
animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
|
|
7405
7261
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7406
|
-
animation-name:
|
|
7262
|
+
animation-name: ContextModal-module_custom-1__be8sO;
|
|
7407
7263
|
}
|
|
7408
|
-
@keyframes
|
|
7264
|
+
@keyframes ContextModal-module_custom-1__be8sO {
|
|
7409
7265
|
0% {
|
|
7410
7266
|
opacity: 0;
|
|
7411
7267
|
transform: scale(0.5);
|
|
@@ -7416,16 +7272,16 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7416
7272
|
}
|
|
7417
7273
|
}
|
|
7418
7274
|
|
|
7419
|
-
.
|
|
7275
|
+
.ContextModal-module_animatingLeave__-JR11 {
|
|
7420
7276
|
transition-duration: var(--animation-duration-rapid, 200ms);
|
|
7421
7277
|
}
|
|
7422
|
-
.
|
|
7278
|
+
.ContextModal-module_animatingLeave__-JR11 .ContextModal-module_backdropLayer__wuj3B {
|
|
7423
7279
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
7424
7280
|
animation-fill-mode: forwards;
|
|
7425
7281
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7426
|
-
animation-name:
|
|
7282
|
+
animation-name: ContextModal-module_fade-0-5-to-0__R4eO-;
|
|
7427
7283
|
}
|
|
7428
|
-
@keyframes
|
|
7284
|
+
@keyframes ContextModal-module_fade-0-5-to-0__R4eO- {
|
|
7429
7285
|
0% {
|
|
7430
7286
|
opacity: 0.5;
|
|
7431
7287
|
}
|
|
@@ -7433,14 +7289,14 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7433
7289
|
opacity: 0;
|
|
7434
7290
|
}
|
|
7435
7291
|
}
|
|
7436
|
-
.
|
|
7292
|
+
.ContextModal-module_animatingLeave__-JR11 [data-modal] {
|
|
7437
7293
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
7438
7294
|
animation-fill-mode: forwards;
|
|
7439
7295
|
animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
|
|
7440
7296
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7441
|
-
animation-name:
|
|
7297
|
+
animation-name: ContextModal-module_custom-3__klp3m;
|
|
7442
7298
|
}
|
|
7443
|
-
@keyframes
|
|
7299
|
+
@keyframes ContextModal-module_custom-3__klp3m {
|
|
7444
7300
|
0% {
|
|
7445
7301
|
opacity: 1;
|
|
7446
7302
|
transform: scale(1);
|
|
@@ -7451,33 +7307,38 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7451
7307
|
}
|
|
7452
7308
|
}
|
|
7453
7309
|
|
|
7454
|
-
.
|
|
7310
|
+
.ContextModal-module_unscrollable__kF7MR {
|
|
7455
7311
|
/* Tech debt - this !important existed before Stylelint rules */
|
|
7456
7312
|
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
7457
7313
|
}
|
|
7458
7314
|
|
|
7459
|
-
.
|
|
7315
|
+
.ContextModal-module_pseudoScrollbar__6RfHj {
|
|
7460
7316
|
/* Tech debt - this !important existed before Stylelint rules */
|
|
7461
7317
|
padding-right: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
7462
7318
|
}
|
|
7463
7319
|
|
|
7464
|
-
.
|
|
7320
|
+
.ContextModal-module_hide__Sdnsg {
|
|
7465
7321
|
opacity: 0%;
|
|
7466
7322
|
pointer-events: none;
|
|
7467
7323
|
}
|
|
7468
7324
|
|
|
7469
|
-
.
|
|
7325
|
+
.ContextModal-module_modal__wriV7 {
|
|
7470
7326
|
min-width: 300px;
|
|
7471
|
-
max-width:
|
|
7327
|
+
max-width: 840px;
|
|
7472
7328
|
}
|
|
7473
|
-
|
|
7329
|
+
@media (min-width: 768px) {
|
|
7330
|
+
.ContextModal-module_modal__wriV7 {
|
|
7331
|
+
width: 90%;
|
|
7332
|
+
}
|
|
7333
|
+
}
|
|
7334
|
+
.ContextModal-module_animatingEnter__53BlF .ContextModal-module_modal__wriV7 {
|
|
7474
7335
|
animation-duration: var(--animation-duration-fast, 300ms);
|
|
7475
7336
|
animation-fill-mode: forwards;
|
|
7476
7337
|
animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
|
|
7477
7338
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7478
|
-
animation-name:
|
|
7339
|
+
animation-name: ContextModal-module_custom-5__deZpl;
|
|
7479
7340
|
}
|
|
7480
|
-
@keyframes
|
|
7341
|
+
@keyframes ContextModal-module_custom-5__deZpl {
|
|
7481
7342
|
0% {
|
|
7482
7343
|
opacity: 0;
|
|
7483
7344
|
transform: scale(0.5);
|
|
@@ -7487,14 +7348,14 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7487
7348
|
transform: scale(1);
|
|
7488
7349
|
}
|
|
7489
7350
|
}
|
|
7490
|
-
.
|
|
7351
|
+
.ContextModal-module_animatingLeave__-JR11 .ContextModal-module_modal__wriV7 {
|
|
7491
7352
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
7492
7353
|
animation-fill-mode: forwards;
|
|
7493
7354
|
animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
|
|
7494
7355
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7495
|
-
animation-name:
|
|
7356
|
+
animation-name: ContextModal-module_custom-7__rPmP4;
|
|
7496
7357
|
}
|
|
7497
|
-
@keyframes
|
|
7358
|
+
@keyframes ContextModal-module_custom-7__rPmP4 {
|
|
7498
7359
|
0% {
|
|
7499
7360
|
opacity: 1;
|
|
7500
7361
|
transform: scale(1);
|
|
@@ -7505,31 +7366,74 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7505
7366
|
}
|
|
7506
7367
|
}
|
|
7507
7368
|
|
|
7508
|
-
.
|
|
7369
|
+
.ContextModal-module_header__V4IRF {
|
|
7509
7370
|
color: var(--color-purple-800, #2f2438);
|
|
7510
|
-
text-align:
|
|
7371
|
+
text-align: start;
|
|
7511
7372
|
}
|
|
7512
|
-
.
|
|
7513
|
-
|
|
7373
|
+
.ContextModal-module_header__V4IRF.ContextModal-module_padded__osmk1 {
|
|
7374
|
+
padding: var(--spacing-md, 1.5rem);
|
|
7514
7375
|
}
|
|
7515
|
-
|
|
7516
|
-
|
|
7376
|
+
@media (min-width: 768px) {
|
|
7377
|
+
.ContextModal-module_header__V4IRF.ContextModal-module_padded__osmk1 {
|
|
7378
|
+
padding: var(--spacing-md, 1.5rem) var(--spacing-lg, 2.25rem);
|
|
7379
|
+
}
|
|
7517
7380
|
}
|
|
7518
|
-
|
|
7519
|
-
|
|
7520
|
-
|
|
7381
|
+
|
|
7382
|
+
.ContextModal-module_footerWithSecondaryAction__-5sq8, .ContextModal-module_footer__JIwF5 {
|
|
7383
|
+
white-space: initial;
|
|
7384
|
+
}
|
|
7385
|
+
@media (min-width: 768px) {
|
|
7386
|
+
.ContextModal-module_footerWithSecondaryAction__-5sq8, .ContextModal-module_footer__JIwF5 {
|
|
7387
|
+
white-space: nowrap;
|
|
7521
7388
|
}
|
|
7522
7389
|
}
|
|
7523
7390
|
|
|
7524
|
-
.
|
|
7525
|
-
|
|
7391
|
+
.ContextModal-module_footerWithSecondaryAction__-5sq8 {
|
|
7392
|
+
margin-left: calc(-1 * var(--spacing-sm, 0.75rem));
|
|
7526
7393
|
}
|
|
7527
|
-
|
|
7528
|
-
|
|
7394
|
+
|
|
7395
|
+
.ContextModal-module_emptyFooter__UHWc- {
|
|
7396
|
+
height: var(--spacing-sm, 0.75rem);
|
|
7529
7397
|
}
|
|
7530
|
-
|
|
7531
|
-
|
|
7532
|
-
|
|
7398
|
+
|
|
7399
|
+
.ContextModal-module_portraitContentlayout__kqUJG {
|
|
7400
|
+
padding: var(--spacing-md, 1.5rem);
|
|
7401
|
+
display: block;
|
|
7402
|
+
box-sizing: content-box;
|
|
7403
|
+
}
|
|
7404
|
+
@media (min-width: 768px) {
|
|
7405
|
+
.ContextModal-module_portraitContentlayout__kqUJG {
|
|
7406
|
+
display: grid;
|
|
7407
|
+
max-width: 800px;
|
|
7408
|
+
grid-auto-columns: 1fr;
|
|
7409
|
+
grid-auto-flow: column;
|
|
7410
|
+
column-gap: var(--spacing-xl, 3rem);
|
|
7411
|
+
padding: var(--spacing-md, 1.5rem) var(--spacing-lg, 2.25rem);
|
|
7412
|
+
}
|
|
7413
|
+
}
|
|
7414
|
+
|
|
7415
|
+
.ContextModal-module_landscapeContentlayout__IFqQN {
|
|
7416
|
+
display: flex;
|
|
7417
|
+
padding: var(--spacing-md, 1.5rem);
|
|
7418
|
+
flex-direction: column;
|
|
7419
|
+
}
|
|
7420
|
+
@media (min-width: 768px) {
|
|
7421
|
+
.ContextModal-module_landscapeContentlayout__IFqQN {
|
|
7422
|
+
padding: var(--spacing-md, 1.5rem) var(--spacing-lg, 2.25rem);
|
|
7423
|
+
}
|
|
7424
|
+
}
|
|
7425
|
+
.ContextModal-module_landscapeContentlayout__IFqQN .ContextModal-module_image__aEDvK {
|
|
7426
|
+
display: flex;
|
|
7427
|
+
flex-direction: column;
|
|
7428
|
+
align-items: center;
|
|
7429
|
+
justify-content: center;
|
|
7430
|
+
}
|
|
7431
|
+
.ContextModal-module_landscapeContentlayout__IFqQN .ContextModal-module_content__-KrFF {
|
|
7432
|
+
padding-left: 0;
|
|
7433
|
+
}
|
|
7434
|
+
@media (min-width: 768px) {
|
|
7435
|
+
.ContextModal-module_landscapeContentlayout__IFqQN .ContextModal-module_content__-KrFF {
|
|
7436
|
+
max-width: 100%;
|
|
7533
7437
|
}
|
|
7534
7438
|
}
|
|
7535
7439
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -7928,6 +7832,60 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7928
7832
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
7929
7833
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
7930
7834
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
7835
|
+
.RadioField-module_container__r6T25 {
|
|
7836
|
+
position: relative;
|
|
7837
|
+
overflow-wrap: break-word;
|
|
7838
|
+
word-wrap: break-word;
|
|
7839
|
+
word-break: break-word;
|
|
7840
|
+
margin-bottom: var(--spacing-sm, 0.75rem);
|
|
7841
|
+
}
|
|
7842
|
+
.RadioField-module_container__r6T25 label {
|
|
7843
|
+
-webkit-tap-highlight-color: transparent;
|
|
7844
|
+
}
|
|
7845
|
+
.ideal-sans .RadioField-module_container__r6T25 label {
|
|
7846
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
7847
|
+
padding-top: 0;
|
|
7848
|
+
}
|
|
7849
|
+
.RadioField-module_container__r6T25.RadioField-module_selected__kdlz8 label {
|
|
7850
|
+
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
7851
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
7852
|
+
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
7853
|
+
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
7854
|
+
font-weight: var(--typography-paragraph-bold-font-weight, 600);
|
|
7855
|
+
position: static;
|
|
7856
|
+
}
|
|
7857
|
+
.RadioField-module_container__r6T25:not(.RadioField-module_reversed__EX79j) label:hover input:not([disabled]) + span {
|
|
7858
|
+
border-color: var(--color-gray-600, #524e56);
|
|
7859
|
+
background-color: var(--color-gray-200, #f4f4f5);
|
|
7860
|
+
}
|
|
7861
|
+
.RadioField-module_container__r6T25.RadioField-module_reversed__EX79j label:hover input:not([disabled]) + span {
|
|
7862
|
+
border-color: var(--color-white, #ffffff);
|
|
7863
|
+
background-color: transparent;
|
|
7864
|
+
}
|
|
7865
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
7866
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
7867
|
+
.RadioGroup-module_radioGroupLabel__wIl4z {
|
|
7868
|
+
margin-bottom: var(--spacing-sm, 0.75rem);
|
|
7869
|
+
}
|
|
7870
|
+
.ideal-sans .RadioGroup-module_radioGroupLabel__wIl4z label {
|
|
7871
|
+
padding-top: 0;
|
|
7872
|
+
}
|
|
7873
|
+
.RadioGroup-module_radioGroupLabel__wIl4z.RadioGroup-module_reversed__VeBun {
|
|
7874
|
+
color: var(--color-white, #ffffff);
|
|
7875
|
+
}
|
|
7876
|
+
|
|
7877
|
+
.RadioGroup-module_radioGroupContainer__NKWpt {
|
|
7878
|
+
display: flex;
|
|
7879
|
+
flex-direction: column;
|
|
7880
|
+
margin-bottom: var(--spacing-sm, 0.75rem);
|
|
7881
|
+
}
|
|
7882
|
+
.RadioGroup-module_radioGroupContainer__NKWpt.RadioGroup-module_noBottomMargin__VKF2T {
|
|
7883
|
+
margin-bottom: 0;
|
|
7884
|
+
}
|
|
7885
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
7886
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
7887
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
7888
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
7931
7889
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
7932
7890
|
/* stylelint-disable selector-no-vendor-prefix */
|
|
7933
7891
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -8008,57 +7966,104 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8008
7966
|
}
|
|
8009
7967
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8010
7968
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8011
|
-
|
|
8012
|
-
|
|
8013
|
-
|
|
8014
|
-
|
|
8015
|
-
|
|
7969
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
7970
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror {
|
|
7971
|
+
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
7972
|
+
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
7973
|
+
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
7974
|
+
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
7975
|
+
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
7976
|
+
position: relative;
|
|
7977
|
+
white-space: pre-wrap;
|
|
7978
|
+
box-sizing: content-box;
|
|
7979
|
+
color: var(--color-purple-800, #2f2438);
|
|
8016
7980
|
}
|
|
8017
|
-
.
|
|
8018
|
-
|
|
7981
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror > p {
|
|
7982
|
+
margin: 0 0 var(--spacing-16, 1rem);
|
|
8019
7983
|
}
|
|
8020
|
-
|
|
8021
|
-
|
|
8022
|
-
display: flex;
|
|
8023
|
-
flex-direction: column;
|
|
8024
|
-
margin-bottom: var(--spacing-sm, 0.75rem);
|
|
7984
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror > *:last-child {
|
|
7985
|
+
margin-bottom: 0;
|
|
8025
7986
|
}
|
|
8026
|
-
.
|
|
7987
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror > *:last-child > li:last-of-type p {
|
|
8027
7988
|
margin-bottom: 0;
|
|
8028
7989
|
}
|
|
8029
|
-
|
|
8030
|
-
|
|
8031
|
-
|
|
8032
|
-
|
|
8033
|
-
|
|
8034
|
-
|
|
8035
|
-
|
|
8036
|
-
|
|
8037
|
-
|
|
8038
|
-
|
|
7990
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror > *:first-child {
|
|
7991
|
+
margin-top: 0;
|
|
7992
|
+
}
|
|
7993
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror > *:first-child > li:first-of-type p {
|
|
7994
|
+
margin-top: 0;
|
|
7995
|
+
}
|
|
7996
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror a {
|
|
7997
|
+
color: var(--color-blue-500, #0168b3);
|
|
7998
|
+
}
|
|
7999
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror a:hover {
|
|
8000
|
+
text-decoration: none;
|
|
8001
|
+
}
|
|
8002
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ul,
|
|
8003
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ol {
|
|
8004
|
+
padding-inline-start: var(--spacing-40, 2.5rem);
|
|
8005
|
+
}
|
|
8006
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ol {
|
|
8007
|
+
list-style-type: decimal;
|
|
8008
|
+
}
|
|
8009
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol {
|
|
8010
|
+
list-style-type: lower-alpha;
|
|
8011
|
+
}
|
|
8012
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol {
|
|
8013
|
+
list-style-type: lower-roman;
|
|
8014
|
+
}
|
|
8015
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ul,
|
|
8016
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ol {
|
|
8017
|
+
padding-inline-start: var(--spacing-40, 2.5rem);
|
|
8018
|
+
}
|
|
8019
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ol {
|
|
8020
|
+
list-style-type: decimal;
|
|
8021
|
+
}
|
|
8022
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ol ol {
|
|
8023
|
+
list-style-type: lower-alpha;
|
|
8024
|
+
}
|
|
8025
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ol ol ol {
|
|
8026
|
+
list-style-type: lower-roman;
|
|
8027
|
+
}
|
|
8028
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ul {
|
|
8029
|
+
list-style-type: disc;
|
|
8030
|
+
}
|
|
8031
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ul ul {
|
|
8032
|
+
list-style-type: circle;
|
|
8033
|
+
}
|
|
8034
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ul ul ul {
|
|
8035
|
+
list-style-type: square;
|
|
8036
|
+
}
|
|
8037
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ul {
|
|
8038
|
+
list-style-type: disc;
|
|
8039
|
+
}
|
|
8040
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ul ul {
|
|
8041
|
+
list-style-type: circle;
|
|
8042
|
+
}
|
|
8043
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ul ul ul {
|
|
8044
|
+
list-style-type: square;
|
|
8045
|
+
}
|
|
8046
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ul ul ul ul,
|
|
8047
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ul ul ul ol {
|
|
8048
|
+
padding-inline-start: var(--spacing-40, 2.5rem);
|
|
8039
8049
|
}
|
|
8040
|
-
.
|
|
8041
|
-
-
|
|
8050
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ul ul ul ol {
|
|
8051
|
+
list-style-type: decimal;
|
|
8042
8052
|
}
|
|
8043
|
-
.
|
|
8044
|
-
|
|
8045
|
-
padding-top: 0;
|
|
8053
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ul ul ul ol ol {
|
|
8054
|
+
list-style-type: lower-alpha;
|
|
8046
8055
|
}
|
|
8047
|
-
.
|
|
8048
|
-
|
|
8049
|
-
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
8050
|
-
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
8051
|
-
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
8052
|
-
font-weight: var(--typography-paragraph-bold-font-weight, 600);
|
|
8053
|
-
position: static;
|
|
8056
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ul ul ul ol ol ol {
|
|
8057
|
+
list-style-type: lower-roman;
|
|
8054
8058
|
}
|
|
8055
|
-
.
|
|
8056
|
-
|
|
8057
|
-
background-color: var(--color-gray-200, #f4f4f5);
|
|
8059
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ul ul ul ul {
|
|
8060
|
+
list-style-type: disc;
|
|
8058
8061
|
}
|
|
8059
|
-
.
|
|
8060
|
-
|
|
8061
|
-
|
|
8062
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ul ul ul ul ul {
|
|
8063
|
+
list-style-type: circle;
|
|
8064
|
+
}
|
|
8065
|
+
.RichTextContent-module_content__vVcWj > .ProseMirror ul ul ul ul ul ul {
|
|
8066
|
+
list-style-type: square;
|
|
8062
8067
|
}
|
|
8063
8068
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8064
8069
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -8101,6 +8106,9 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8101
8106
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8102
8107
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8103
8108
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8109
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8110
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8111
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8104
8112
|
/* stylelint-disable scss/at-if-no-null, declaration-block-no-redundant-longhand-properties */
|
|
8105
8113
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8106
8114
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -8153,12 +8161,12 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8153
8161
|
/* prettier-ignore */
|
|
8154
8162
|
/* prettier-ignore */
|
|
8155
8163
|
/* prettier-ignore */
|
|
8156
|
-
.
|
|
8164
|
+
.InputEditModal-module_defaultModalWidth__My9Eh {
|
|
8157
8165
|
min-width: 300px;
|
|
8158
8166
|
max-width: 600px;
|
|
8159
8167
|
}
|
|
8160
8168
|
|
|
8161
|
-
.
|
|
8169
|
+
.InputEditModal-module_backdropLayer__aVLSb {
|
|
8162
8170
|
position: fixed;
|
|
8163
8171
|
background-color: #000;
|
|
8164
8172
|
opacity: 50%;
|
|
@@ -8169,7 +8177,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8169
8177
|
inset-inline-start: 0;
|
|
8170
8178
|
}
|
|
8171
8179
|
|
|
8172
|
-
.
|
|
8180
|
+
.InputEditModal-module_scrollLayer__isygg {
|
|
8173
8181
|
position: fixed;
|
|
8174
8182
|
display: flex;
|
|
8175
8183
|
align-items: center;
|
|
@@ -8181,16 +8189,42 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8181
8189
|
inset-inline-start: 0;
|
|
8182
8190
|
}
|
|
8183
8191
|
|
|
8184
|
-
.
|
|
8192
|
+
.InputEditModal-module_modalLayer__r5vqj {
|
|
8185
8193
|
margin: auto;
|
|
8186
8194
|
padding: 1.5rem 0;
|
|
8187
8195
|
width: 100%;
|
|
8188
8196
|
}
|
|
8189
8197
|
|
|
8190
|
-
.
|
|
8198
|
+
.InputEditModal-module_modal__SbQqp {
|
|
8199
|
+
margin: auto;
|
|
8200
|
+
background-color: var(--color-white, #ffffff);
|
|
8201
|
+
border-radius: var(--border-solid-border-radius, 7px);
|
|
8202
|
+
box-shadow: var(--shadow-large-box-shadow, 0 3px 9px 0 rgba(0, 0, 0, 0.1), 0 8px 40px 0 rgba(0, 0, 0, 0.08));
|
|
8203
|
+
position: relative;
|
|
8204
|
+
width: 90%;
|
|
8205
|
+
-webkit-font-smoothing: antialiased;
|
|
8206
|
+
color: var(--color-purple-800, #2f2438);
|
|
8207
|
+
}
|
|
8208
|
+
@media (min-width: 768px) {
|
|
8209
|
+
.InputEditModal-module_modal__SbQqp {
|
|
8210
|
+
width: 100%;
|
|
8211
|
+
}
|
|
8212
|
+
}
|
|
8213
|
+
.InputEditModal-module_modal__SbQqp:has([class*="modalLabel"]:focus-visible)::after {
|
|
8214
|
+
content: "";
|
|
8215
|
+
position: absolute;
|
|
8216
|
+
background: transparent;
|
|
8217
|
+
border-radius: var(--border-focus-ring-border-radius, 10px);
|
|
8218
|
+
border-width: var(--border-focus-ring-border-width, 2px);
|
|
8219
|
+
border-style: var(--border-focus-ring-border-style, solid);
|
|
8220
|
+
border-color: var(--color-blue-300, #73c0e8);
|
|
8221
|
+
inset: -4px;
|
|
8222
|
+
}
|
|
8223
|
+
|
|
8224
|
+
.InputEditModal-module_animatingEnter__qZgX2 {
|
|
8191
8225
|
transition-duration: var(--animation-duration-fast, 300ms);
|
|
8192
8226
|
}
|
|
8193
|
-
.
|
|
8227
|
+
.InputEditModal-module_animatingEnter__qZgX2 .InputEditModal-module_backdropLayer__aVLSb {
|
|
8194
8228
|
/*
|
|
8195
8229
|
There's a weird bug in Chrome/Blink 102.x that animates the opacity
|
|
8196
8230
|
all the way to 1 with 200ms ("rapid" token), but is fine with
|
|
@@ -8199,9 +8233,9 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8199
8233
|
animation-duration: 201ms;
|
|
8200
8234
|
animation-fill-mode: forwards;
|
|
8201
8235
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
8202
|
-
animation-name:
|
|
8236
|
+
animation-name: InputEditModal-module_fade-0-to-0-5__ywvjR;
|
|
8203
8237
|
}
|
|
8204
|
-
@keyframes
|
|
8238
|
+
@keyframes InputEditModal-module_fade-0-to-0-5__ywvjR {
|
|
8205
8239
|
0% {
|
|
8206
8240
|
opacity: 0;
|
|
8207
8241
|
}
|
|
@@ -8209,14 +8243,14 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8209
8243
|
opacity: 0.5;
|
|
8210
8244
|
}
|
|
8211
8245
|
}
|
|
8212
|
-
.
|
|
8246
|
+
.InputEditModal-module_animatingEnter__qZgX2 [data-modal] {
|
|
8213
8247
|
animation-duration: var(--animation-duration-fast, 300ms);
|
|
8214
8248
|
animation-fill-mode: forwards;
|
|
8215
8249
|
animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
|
|
8216
8250
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
8217
|
-
animation-name:
|
|
8251
|
+
animation-name: InputEditModal-module_custom-1__wSZX6;
|
|
8218
8252
|
}
|
|
8219
|
-
@keyframes
|
|
8253
|
+
@keyframes InputEditModal-module_custom-1__wSZX6 {
|
|
8220
8254
|
0% {
|
|
8221
8255
|
opacity: 0;
|
|
8222
8256
|
transform: scale(0.5);
|
|
@@ -8227,16 +8261,16 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8227
8261
|
}
|
|
8228
8262
|
}
|
|
8229
8263
|
|
|
8230
|
-
.
|
|
8264
|
+
.InputEditModal-module_animatingLeave__S2HGz {
|
|
8231
8265
|
transition-duration: var(--animation-duration-rapid, 200ms);
|
|
8232
8266
|
}
|
|
8233
|
-
.
|
|
8267
|
+
.InputEditModal-module_animatingLeave__S2HGz .InputEditModal-module_backdropLayer__aVLSb {
|
|
8234
8268
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
8235
8269
|
animation-fill-mode: forwards;
|
|
8236
8270
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
8237
|
-
animation-name:
|
|
8271
|
+
animation-name: InputEditModal-module_fade-0-5-to-0__s2WmG;
|
|
8238
8272
|
}
|
|
8239
|
-
@keyframes
|
|
8273
|
+
@keyframes InputEditModal-module_fade-0-5-to-0__s2WmG {
|
|
8240
8274
|
0% {
|
|
8241
8275
|
opacity: 0.5;
|
|
8242
8276
|
}
|
|
@@ -8244,14 +8278,14 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8244
8278
|
opacity: 0;
|
|
8245
8279
|
}
|
|
8246
8280
|
}
|
|
8247
|
-
.
|
|
8281
|
+
.InputEditModal-module_animatingLeave__S2HGz [data-modal] {
|
|
8248
8282
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
8249
8283
|
animation-fill-mode: forwards;
|
|
8250
8284
|
animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
|
|
8251
8285
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
8252
|
-
animation-name:
|
|
8286
|
+
animation-name: InputEditModal-module_custom-3__T3riv;
|
|
8253
8287
|
}
|
|
8254
|
-
@keyframes
|
|
8288
|
+
@keyframes InputEditModal-module_custom-3__T3riv {
|
|
8255
8289
|
0% {
|
|
8256
8290
|
opacity: 1;
|
|
8257
8291
|
transform: scale(1);
|
|
@@ -8262,120 +8296,86 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8262
8296
|
}
|
|
8263
8297
|
}
|
|
8264
8298
|
|
|
8265
|
-
.
|
|
8299
|
+
.InputEditModal-module_unscrollable__GN1M2 {
|
|
8266
8300
|
/* Tech debt - this !important existed before Stylelint rules */
|
|
8267
8301
|
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
8268
8302
|
}
|
|
8269
8303
|
|
|
8270
|
-
.
|
|
8304
|
+
.InputEditModal-module_pseudoScrollbar__WCHmn {
|
|
8271
8305
|
/* Tech debt - this !important existed before Stylelint rules */
|
|
8272
8306
|
padding-right: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
8273
8307
|
}
|
|
8274
8308
|
|
|
8275
|
-
.
|
|
8309
|
+
.InputEditModal-module_hide__N88RW {
|
|
8276
8310
|
opacity: 0%;
|
|
8277
8311
|
pointer-events: none;
|
|
8278
8312
|
}
|
|
8279
|
-
|
|
8280
|
-
|
|
8281
|
-
|
|
8282
|
-
|
|
8283
|
-
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
8284
|
-
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
8285
|
-
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
8286
|
-
line-height: var(--typography-paragraph-body-line-height, 1.5rem);
|
|
8287
|
-
letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
|
|
8288
|
-
position: relative;
|
|
8289
|
-
white-space: pre-wrap;
|
|
8290
|
-
box-sizing: content-box;
|
|
8291
|
-
color: var(--color-purple-800, #2f2438);
|
|
8292
|
-
}
|
|
8293
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror > p {
|
|
8294
|
-
margin: 0 0 var(--spacing-16, 1rem);
|
|
8295
|
-
}
|
|
8296
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror > *:last-child {
|
|
8297
|
-
margin-bottom: 0;
|
|
8298
|
-
}
|
|
8299
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror > *:last-child > li:last-of-type p {
|
|
8300
|
-
margin-bottom: 0;
|
|
8301
|
-
}
|
|
8302
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror > *:first-child {
|
|
8303
|
-
margin-top: 0;
|
|
8304
|
-
}
|
|
8305
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror > *:first-child > li:first-of-type p {
|
|
8306
|
-
margin-top: 0;
|
|
8307
|
-
}
|
|
8308
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror a {
|
|
8309
|
-
color: var(--color-blue-500, #0168b3);
|
|
8310
|
-
}
|
|
8311
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror a:hover {
|
|
8312
|
-
text-decoration: none;
|
|
8313
|
-
}
|
|
8314
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror ul,
|
|
8315
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror ol {
|
|
8316
|
-
padding-inline-start: var(--spacing-40, 2.5rem);
|
|
8317
|
-
}
|
|
8318
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror ol {
|
|
8319
|
-
list-style-type: decimal;
|
|
8320
|
-
}
|
|
8321
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol {
|
|
8322
|
-
list-style-type: lower-alpha;
|
|
8323
|
-
}
|
|
8324
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol {
|
|
8325
|
-
list-style-type: lower-roman;
|
|
8326
|
-
}
|
|
8327
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ul,
|
|
8328
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ol {
|
|
8329
|
-
padding-inline-start: var(--spacing-40, 2.5rem);
|
|
8330
|
-
}
|
|
8331
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ol {
|
|
8332
|
-
list-style-type: decimal;
|
|
8333
|
-
}
|
|
8334
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ol ol {
|
|
8335
|
-
list-style-type: lower-alpha;
|
|
8336
|
-
}
|
|
8337
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ol ol ol {
|
|
8338
|
-
list-style-type: lower-roman;
|
|
8339
|
-
}
|
|
8340
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ul {
|
|
8341
|
-
list-style-type: disc;
|
|
8342
|
-
}
|
|
8343
|
-
.RichTextContent-module_content__vVcWj > .ProseMirror ol ol ol ul ul {
|
|
8344
|
-
list-style-type: circle;
|
|
8313
|
+
|
|
8314
|
+
.InputEditModal-module_modal__SbQqp {
|
|
8315
|
+
min-width: 300px;
|
|
8316
|
+
max-width: 600px;
|
|
8345
8317
|
}
|
|
8346
|
-
.
|
|
8347
|
-
|
|
8318
|
+
.InputEditModal-module_animatingEnter__qZgX2 .InputEditModal-module_modal__SbQqp {
|
|
8319
|
+
animation-duration: var(--animation-duration-fast, 300ms);
|
|
8320
|
+
animation-fill-mode: forwards;
|
|
8321
|
+
animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
|
|
8322
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
8323
|
+
animation-name: InputEditModal-module_custom-5__trORr;
|
|
8348
8324
|
}
|
|
8349
|
-
|
|
8350
|
-
|
|
8325
|
+
@keyframes InputEditModal-module_custom-5__trORr {
|
|
8326
|
+
0% {
|
|
8327
|
+
opacity: 0;
|
|
8328
|
+
transform: scale(0.5);
|
|
8329
|
+
}
|
|
8330
|
+
100% {
|
|
8331
|
+
opacity: 1;
|
|
8332
|
+
transform: scale(1);
|
|
8333
|
+
}
|
|
8351
8334
|
}
|
|
8352
|
-
.
|
|
8353
|
-
|
|
8335
|
+
.InputEditModal-module_animatingLeave__S2HGz .InputEditModal-module_modal__SbQqp {
|
|
8336
|
+
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
8337
|
+
animation-fill-mode: forwards;
|
|
8338
|
+
animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
|
|
8339
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
8340
|
+
animation-name: InputEditModal-module_custom-7__-98CZ;
|
|
8354
8341
|
}
|
|
8355
|
-
|
|
8356
|
-
|
|
8342
|
+
@keyframes InputEditModal-module_custom-7__-98CZ {
|
|
8343
|
+
0% {
|
|
8344
|
+
opacity: 1;
|
|
8345
|
+
transform: scale(1);
|
|
8346
|
+
}
|
|
8347
|
+
100% {
|
|
8348
|
+
opacity: 0;
|
|
8349
|
+
transform: scale(0.5);
|
|
8350
|
+
}
|
|
8357
8351
|
}
|
|
8358
|
-
|
|
8359
|
-
.
|
|
8360
|
-
|
|
8352
|
+
|
|
8353
|
+
.InputEditModal-module_header__nivTf {
|
|
8354
|
+
color: var(--color-purple-800, #2f2438);
|
|
8355
|
+
text-align: left;
|
|
8361
8356
|
}
|
|
8362
|
-
.
|
|
8363
|
-
|
|
8357
|
+
.InputEditModal-module_header__nivTf.InputEditModal-module_textAlignRTL__5QQP8 {
|
|
8358
|
+
text-align: right;
|
|
8364
8359
|
}
|
|
8365
|
-
.
|
|
8366
|
-
|
|
8360
|
+
.InputEditModal-module_header__nivTf.InputEditModal-module_padded__ZdEIS {
|
|
8361
|
+
padding: var(--spacing-md, 1.5rem) var(--spacing-lg, 2.25rem);
|
|
8367
8362
|
}
|
|
8368
|
-
|
|
8369
|
-
|
|
8363
|
+
@media (max-width: 768px) {
|
|
8364
|
+
.InputEditModal-module_header__nivTf.InputEditModal-module_padded__ZdEIS {
|
|
8365
|
+
padding: var(--spacing-md, 1.5rem);
|
|
8366
|
+
}
|
|
8370
8367
|
}
|
|
8371
|
-
|
|
8372
|
-
|
|
8368
|
+
|
|
8369
|
+
.InputEditModal-module_body__LyxBE {
|
|
8370
|
+
background: var(--color-gray-200, #f4f4f5);
|
|
8373
8371
|
}
|
|
8374
|
-
.
|
|
8375
|
-
|
|
8372
|
+
.InputEditModal-module_body__LyxBE.InputEditModal-module_padded__ZdEIS {
|
|
8373
|
+
padding: var(--spacing-md, 1.5rem) var(--spacing-lg, 2.25rem) var(--spacing-md, 1.5rem) var(--spacing-lg, 2.25rem);
|
|
8376
8374
|
}
|
|
8377
|
-
|
|
8378
|
-
|
|
8375
|
+
@media (max-width: 768px) {
|
|
8376
|
+
.InputEditModal-module_body__LyxBE.InputEditModal-module_padded__ZdEIS {
|
|
8377
|
+
padding: var(--spacing-md, 1.5rem);
|
|
8378
|
+
}
|
|
8379
8379
|
}
|
|
8380
8380
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8381
8381
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -8795,6 +8795,22 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8795
8795
|
width: 180px;
|
|
8796
8796
|
}
|
|
8797
8797
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8798
|
+
@media (max-width: 1080px) {
|
|
8799
|
+
.SkirtCard-module_wrapper__05vkl {
|
|
8800
|
+
margin-left: -12px;
|
|
8801
|
+
margin-right: -12px;
|
|
8802
|
+
border-bottom-left-radius: 0;
|
|
8803
|
+
border-bottom-right-radius: 0;
|
|
8804
|
+
}
|
|
8805
|
+
}
|
|
8806
|
+
@media (max-width: 768px) {
|
|
8807
|
+
.SkirtCard-module_wrapper__05vkl {
|
|
8808
|
+
border-radius: 0;
|
|
8809
|
+
margin-left: -12px;
|
|
8810
|
+
margin-right: -12px;
|
|
8811
|
+
}
|
|
8812
|
+
}
|
|
8813
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8798
8814
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8799
8815
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8800
8816
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -8826,13 +8842,13 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8826
8842
|
/* stylelint-disable no-descending-specificity */
|
|
8827
8843
|
/* stylelint-enable no-descending-specificity */
|
|
8828
8844
|
}
|
|
8829
|
-
.ToggleSwitch-module_checkbox__ezWz3:focus + .ToggleSwitch-module_track__fcDMP, .ToggleSwitch-module_checkbox__ezWz3:hover:focus + .ToggleSwitch-module_track__fcDMP {
|
|
8845
|
+
.ToggleSwitch-module_checkbox__ezWz3:not(.ToggleSwitch-module_disabled__3H-9R):focus + .ToggleSwitch-module_track__fcDMP, .ToggleSwitch-module_checkbox__ezWz3:not(.ToggleSwitch-module_disabled__3H-9R):hover:focus + .ToggleSwitch-module_track__fcDMP {
|
|
8830
8846
|
border-color: transparent;
|
|
8831
8847
|
outline: 2px solid var(--color-blue-500, #0168b3);
|
|
8832
8848
|
outline-offset: 1px;
|
|
8833
8849
|
background-color: var(--color-gray-600, #524e56);
|
|
8834
8850
|
}
|
|
8835
|
-
.ToggleSwitch-module_checkbox__ezWz3 + .ToggleSwitch-module_track__fcDMP:hover, label:hover .ToggleSwitch-module_checkbox__ezWz3 + .ToggleSwitch-module_track__fcDMP {
|
|
8851
|
+
.ToggleSwitch-module_checkbox__ezWz3:not(.ToggleSwitch-module_disabled__3H-9R) + .ToggleSwitch-module_track__fcDMP:hover, label:hover .ToggleSwitch-module_checkbox__ezWz3:not(.ToggleSwitch-module_disabled__3H-9R) + .ToggleSwitch-module_track__fcDMP {
|
|
8836
8852
|
background-color: var(--color-purple-500, #844587);
|
|
8837
8853
|
background-color: var(--color-gray-600, #524e56);
|
|
8838
8854
|
}
|
|
@@ -8845,6 +8861,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8845
8861
|
border: var(--border-borderless-border-width, 2px) var(--border-borderless-border-style, solid) var(--border-borderless-border-color, transparent);
|
|
8846
8862
|
border-radius: var(--spacing-md, 1.5rem);
|
|
8847
8863
|
transition: left var(--animation-duration-immediate, 100ms) var(--animation-easing-function-linear, linear), right var(--animation-duration-immediate, 100ms) var(--animation-easing-function-linear, linear);
|
|
8864
|
+
cursor: default;
|
|
8848
8865
|
}
|
|
8849
8866
|
|
|
8850
8867
|
.ToggleSwitch-module_checkIcon__8iitB {
|
|
@@ -8860,7 +8877,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8860
8877
|
}
|
|
8861
8878
|
.ToggleSwitch-module_on__CQpkh .ToggleSwitch-module_checkbox__ezWz3:focus + .ToggleSwitch-module_track__fcDMP {
|
|
8862
8879
|
border-color: transparent;
|
|
8863
|
-
background-color: var(--color-green-
|
|
8880
|
+
background-color: var(--color-green-600, #2c7d67);
|
|
8864
8881
|
}
|
|
8865
8882
|
.ToggleSwitch-module_on__CQpkh .ToggleSwitch-module_thumb__8PULV {
|
|
8866
8883
|
position: relative;
|
|
@@ -8872,7 +8889,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8872
8889
|
transition-delay: var(--animation-duration-immediate, 100ms);
|
|
8873
8890
|
transition-duration: var(--animation-duration-fast, 300ms);
|
|
8874
8891
|
}
|
|
8875
|
-
.ToggleSwitch-module_on__CQpkh .ToggleSwitch-module_checkbox__ezWz3 + .ToggleSwitch-module_track__fcDMP:hover, label:hover .ToggleSwitch-module_on__CQpkh .ToggleSwitch-module_checkbox__ezWz3 + .ToggleSwitch-module_track__fcDMP {
|
|
8892
|
+
.ToggleSwitch-module_on__CQpkh .ToggleSwitch-module_checkbox__ezWz3:not(.ToggleSwitch-module_disabled__3H-9R) + .ToggleSwitch-module_track__fcDMP:hover, label:hover .ToggleSwitch-module_on__CQpkh .ToggleSwitch-module_checkbox__ezWz3:not(.ToggleSwitch-module_disabled__3H-9R) + .ToggleSwitch-module_track__fcDMP {
|
|
8876
8893
|
background-color: var(--color-green-600, #2c7d67);
|
|
8877
8894
|
}
|
|
8878
8895
|
|
|
@@ -8893,27 +8910,19 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8893
8910
|
.ToggleSwitch-module_reversed__Q3-iM.ToggleSwitch-module_off__OhSEP .ToggleSwitch-module_checkbox__ezWz3:hover:focus + .ToggleSwitch-module_track__fcDMP {
|
|
8894
8911
|
background-color: rgba(var(--color-white-rgb, 255, 255, 255), 0.65);
|
|
8895
8912
|
}
|
|
8896
|
-
.ToggleSwitch-module_reversed__Q3-iM.ToggleSwitch-module_off__OhSEP .ToggleSwitch-module_checkbox__ezWz3 + .ToggleSwitch-module_track__fcDMP:hover, label:hover .ToggleSwitch-module_reversed__Q3-iM.ToggleSwitch-module_off__OhSEP .ToggleSwitch-module_checkbox__ezWz3 + .ToggleSwitch-module_track__fcDMP {
|
|
8913
|
+
.ToggleSwitch-module_reversed__Q3-iM.ToggleSwitch-module_off__OhSEP .ToggleSwitch-module_checkbox__ezWz3:not(.ToggleSwitch-module_disabled__3H-9R) + .ToggleSwitch-module_track__fcDMP:hover, label:hover .ToggleSwitch-module_reversed__Q3-iM.ToggleSwitch-module_off__OhSEP .ToggleSwitch-module_checkbox__ezWz3:not(.ToggleSwitch-module_disabled__3H-9R) + .ToggleSwitch-module_track__fcDMP {
|
|
8897
8914
|
background-color: rgba(var(--color-white-rgb, 255, 255, 255), 0.65);
|
|
8898
8915
|
}
|
|
8899
8916
|
|
|
8900
|
-
|
|
8901
|
-
|
|
8902
|
-
@media (max-width: 1080px) {
|
|
8903
|
-
.SkirtCard-module_wrapper__05vkl {
|
|
8904
|
-
margin-left: -12px;
|
|
8905
|
-
margin-right: -12px;
|
|
8906
|
-
border-bottom-left-radius: 0;
|
|
8907
|
-
border-bottom-right-radius: 0;
|
|
8908
|
-
}
|
|
8917
|
+
label .ToggleSwitch-module_disabled__3H-9R.ToggleSwitch-module_track__fcDMP {
|
|
8918
|
+
opacity: 100%;
|
|
8909
8919
|
}
|
|
8910
|
-
|
|
8911
|
-
|
|
8912
|
-
|
|
8913
|
-
margin-left: -12px;
|
|
8914
|
-
margin-right: -12px;
|
|
8915
|
-
}
|
|
8920
|
+
|
|
8921
|
+
.ToggleSwitch-module_disabled__3H-9R.ToggleSwitch-module_track__fcDMP {
|
|
8922
|
+
opacity: 30%;
|
|
8916
8923
|
}
|
|
8924
|
+
|
|
8925
|
+
/* stylelint-enable no-descending-specificity */
|
|
8917
8926
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8918
8927
|
.MultiSelectOptions-module_multiSelectOptions__b8hYg {
|
|
8919
8928
|
display: flex;
|
|
@@ -8925,6 +8934,24 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8925
8934
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8926
8935
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8927
8936
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8937
|
+
.Popover-module_popover__B7k5I {
|
|
8938
|
+
box-sizing: border-box;
|
|
8939
|
+
box-shadow: var(--shadow-large-box-shadow, 0 3px 9px 0 rgba(0, 0, 0, 0.1), 0 8px 40px 0 rgba(0, 0, 0, 0.08));
|
|
8940
|
+
border: var(--border-focus-ring-border-width, 2px) var(--border-focus-ring-border-style, solid) transparent;
|
|
8941
|
+
border-radius: var(--border-solid-border-radius, 7px);
|
|
8942
|
+
background: var(--color-white, #ffffff);
|
|
8943
|
+
overflow: auto;
|
|
8944
|
+
z-index: 100000;
|
|
8945
|
+
}
|
|
8946
|
+
.Popover-module_popover__B7k5I:focus {
|
|
8947
|
+
outline: none;
|
|
8948
|
+
}
|
|
8949
|
+
.Popover-module_popover__B7k5I:focus-visible {
|
|
8950
|
+
border-color: var(--color-blue-500, #0168b3);
|
|
8951
|
+
}
|
|
8952
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8953
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8954
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8928
8955
|
.MultiSelectToggle-module_multiSelectToggle__CeR4G {
|
|
8929
8956
|
position: relative;
|
|
8930
8957
|
display: inline-flex;
|
|
@@ -9004,24 +9031,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
9004
9031
|
}
|
|
9005
9032
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9006
9033
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9007
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9008
|
-
.Popover-module_popover__B7k5I {
|
|
9009
|
-
box-sizing: border-box;
|
|
9010
|
-
box-shadow: var(--shadow-large-box-shadow, 0 3px 9px 0 rgba(0, 0, 0, 0.1), 0 8px 40px 0 rgba(0, 0, 0, 0.08));
|
|
9011
|
-
border: var(--border-focus-ring-border-width, 2px) var(--border-focus-ring-border-style, solid) transparent;
|
|
9012
|
-
border-radius: var(--border-solid-border-radius, 7px);
|
|
9013
|
-
background: var(--color-white, #ffffff);
|
|
9014
|
-
overflow: auto;
|
|
9015
|
-
z-index: 100000;
|
|
9016
|
-
}
|
|
9017
|
-
.Popover-module_popover__B7k5I:focus {
|
|
9018
|
-
outline: none;
|
|
9019
|
-
}
|
|
9020
|
-
.Popover-module_popover__B7k5I:focus-visible {
|
|
9021
|
-
border-color: var(--color-blue-500, #0168b3);
|
|
9022
|
-
}
|
|
9023
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9024
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9025
9034
|
.ToastNotificationsList-module_toastNotificationsList__APiSP {
|
|
9026
9035
|
display: flex;
|
|
9027
9036
|
flex-direction: column;
|
|
@@ -9080,6 +9089,9 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
9080
9089
|
margin-inline-start: unset;
|
|
9081
9090
|
border-inline-start-width: var(--border-solid-border-width, 2px);
|
|
9082
9091
|
}
|
|
9092
|
+
.DateInputField-module_disabled__-Y0lJ {
|
|
9093
|
+
opacity: 0.3;
|
|
9094
|
+
}
|
|
9083
9095
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9084
9096
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9085
9097
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -9412,9 +9424,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
9412
9424
|
color: var(--color-purple-800, #2f2438);
|
|
9413
9425
|
--icon-color: var(--color-red-500);
|
|
9414
9426
|
}
|
|
9415
|
-
.DateInputField-module_disabled__-Y0lJ {
|
|
9416
|
-
opacity: 0.3;
|
|
9417
|
-
}
|
|
9418
9427
|
.SVG-module_icon__8J5Ev {
|
|
9419
9428
|
width: 20px;
|
|
9420
9429
|
height: 20px;
|
|
@@ -9604,12 +9613,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
9604
9613
|
outline-color: var(--color-blue-300, #73c0e8);
|
|
9605
9614
|
}
|
|
9606
9615
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9607
|
-
.RemovableTag-module_removableTag__QcpqV {
|
|
9608
|
-
padding: var(--spacing-4, 0.25rem) var(--spacing-4, 0.25rem) var(--spacing-4, 0.25rem) var(--spacing-8, 0.5rem);
|
|
9609
|
-
padding-block: var(--spacing-4, 0.25rem);
|
|
9610
|
-
padding-inline: var(--spacing-8, 0.5rem) var(--spacing-4, 0.25rem);
|
|
9611
|
-
}
|
|
9612
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9613
9616
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9614
9617
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9615
9618
|
.Tag-module_tag__I-0Un {
|
|
@@ -9682,6 +9685,12 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
9682
9685
|
color: var(--color-purple-500, #844587);
|
|
9683
9686
|
}
|
|
9684
9687
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9688
|
+
.RemovableTag-module_removableTag__QcpqV {
|
|
9689
|
+
padding: var(--spacing-4, 0.25rem) var(--spacing-4, 0.25rem) var(--spacing-4, 0.25rem) var(--spacing-8, 0.5rem);
|
|
9690
|
+
padding-block: var(--spacing-4, 0.25rem);
|
|
9691
|
+
padding-inline: var(--spacing-8, 0.5rem) var(--spacing-4, 0.25rem);
|
|
9692
|
+
}
|
|
9693
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9685
9694
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9686
9695
|
.Base-module_wrapper__UMpe0 {
|
|
9687
9696
|
width: 100%;
|
|
@@ -9976,9 +9985,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
9976
9985
|
margin-top: var(--spacing-sm, 0.75rem);
|
|
9977
9986
|
height: var(--spacing-xl, 3rem);
|
|
9978
9987
|
}
|
|
9979
|
-
.ModalAccessibleDescription-module_modalDescription__gq-Mn {
|
|
9980
|
-
grid-column-start: 2;
|
|
9981
|
-
}
|
|
9982
9988
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9983
9989
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
9984
9990
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -10031,11 +10037,85 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10031
10037
|
border-radius: var(--border-focus-ring-border-radius, 10px);
|
|
10032
10038
|
border: var(--border-focus-ring-border-width, 2px) var(--border-focus-ring-border-style, solid) var(--color-blue-500, #0168b3);
|
|
10033
10039
|
}
|
|
10040
|
+
.ModalAccessibleDescription-module_modalDescription__gq-Mn {
|
|
10041
|
+
grid-column-start: 2;
|
|
10042
|
+
}
|
|
10034
10043
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10035
10044
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10036
|
-
|
|
10037
|
-
|
|
10038
|
-
|
|
10045
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10046
|
+
.ModalFooter-module_actions__q2PiD {
|
|
10047
|
+
display: flex;
|
|
10048
|
+
flex-direction: row-reverse;
|
|
10049
|
+
justify-content: flex-start;
|
|
10050
|
+
}
|
|
10051
|
+
|
|
10052
|
+
.ModalFooter-module_actionsAlignStart__4wZ75 {
|
|
10053
|
+
flex-direction: row-reverse;
|
|
10054
|
+
justify-content: flex-end;
|
|
10055
|
+
}
|
|
10056
|
+
|
|
10057
|
+
.ModalFooter-module_padded__9PLtz {
|
|
10058
|
+
padding: var(--spacing-md, 1.5rem);
|
|
10059
|
+
flex-direction: column;
|
|
10060
|
+
}
|
|
10061
|
+
@media (min-width: 768px) {
|
|
10062
|
+
.ModalFooter-module_padded__9PLtz {
|
|
10063
|
+
padding: 0 var(--spacing-lg, 2.25rem) var(--spacing-lg, 2.25rem);
|
|
10064
|
+
flex-direction: row-reverse;
|
|
10065
|
+
}
|
|
10066
|
+
}
|
|
10067
|
+
|
|
10068
|
+
.ModalFooter-module_actionButton__YD4vG {
|
|
10069
|
+
width: 100%;
|
|
10070
|
+
}
|
|
10071
|
+
@media (min-width: 768px) {
|
|
10072
|
+
.ModalFooter-module_actionButton__YD4vG {
|
|
10073
|
+
width: inherit;
|
|
10074
|
+
}
|
|
10075
|
+
}
|
|
10076
|
+
|
|
10077
|
+
.ModalFooter-module_actionButton__YD4vG + .ModalFooter-module_actionButton__YD4vG {
|
|
10078
|
+
margin-right: var(--spacing-sm, 0.75rem);
|
|
10079
|
+
}
|
|
10080
|
+
@media (max-width: calc(768px - 1px)) {
|
|
10081
|
+
.ModalFooter-module_actionButton__YD4vG + .ModalFooter-module_actionButton__YD4vG {
|
|
10082
|
+
margin-top: var(--spacing-sm, 0.75rem);
|
|
10083
|
+
}
|
|
10084
|
+
}
|
|
10085
|
+
|
|
10086
|
+
.ModalFooter-module_footerWrap__IEAMY {
|
|
10087
|
+
align-items: baseline;
|
|
10088
|
+
width: 100%;
|
|
10089
|
+
box-sizing: border-box;
|
|
10090
|
+
}
|
|
10091
|
+
|
|
10092
|
+
.ModalFooter-module_center__w232S {
|
|
10093
|
+
display: flex;
|
|
10094
|
+
justify-content: center;
|
|
10095
|
+
}
|
|
10096
|
+
|
|
10097
|
+
.ModalFooter-module_border__jj-Zy {
|
|
10098
|
+
border-top: 1px solid var(--border-solid-border-color, #e1e2ea);
|
|
10099
|
+
}
|
|
10100
|
+
|
|
10101
|
+
.ModalFooter-module_start__0GJno {
|
|
10102
|
+
display: flex;
|
|
10103
|
+
justify-content: flex-start;
|
|
10104
|
+
}
|
|
10105
|
+
|
|
10106
|
+
.ModalFooter-module_end__KuUbk {
|
|
10107
|
+
display: flex;
|
|
10108
|
+
justify-content: flex-end;
|
|
10109
|
+
}
|
|
10110
|
+
|
|
10111
|
+
.ModalFooter-module_fixed__mV5fZ {
|
|
10112
|
+
position: absolute;
|
|
10113
|
+
bottom: 0;
|
|
10114
|
+
left: 0;
|
|
10115
|
+
}
|
|
10116
|
+
|
|
10117
|
+
.ModalFooter-module_filler__kElGb {
|
|
10118
|
+
visibility: hidden;
|
|
10039
10119
|
}
|
|
10040
10120
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10041
10121
|
/* stylelint-disable scss/at-if-no-null, declaration-block-no-redundant-longhand-properties */
|
|
@@ -10075,25 +10155,9 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10075
10155
|
}
|
|
10076
10156
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10077
10157
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10078
|
-
|
|
10079
|
-
|
|
10080
|
-
|
|
10081
|
-
font-size: 1.625rem;
|
|
10082
|
-
line-height: 2rem;
|
|
10083
|
-
}
|
|
10084
|
-
}
|
|
10085
|
-
@media (max-width: 375px) {
|
|
10086
|
-
.ModalAccessibleLabel-module_modalLabel__CQAIs h2 {
|
|
10087
|
-
font-size: 1.5rem;
|
|
10088
|
-
line-height: 1.875rem;
|
|
10089
|
-
}
|
|
10090
|
-
}
|
|
10091
|
-
.ModalAccessibleLabel-module_modalLabel__CQAIs.ModalAccessibleLabel-module_prominent__WEPnY {
|
|
10092
|
-
grid-column-start: 2;
|
|
10093
|
-
text-align: left;
|
|
10094
|
-
}
|
|
10095
|
-
.ModalAccessibleLabel-module_modalLabel__CQAIs:focus {
|
|
10096
|
-
outline: none;
|
|
10158
|
+
.ModalBody-module_inputEdit__4Krgt {
|
|
10159
|
+
background-color: var(--color-gray-200, #f4f4f5);
|
|
10160
|
+
border-radius: var(--border-solid-border-radius, 7px);
|
|
10097
10161
|
}
|
|
10098
10162
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10099
10163
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -10128,108 +10192,53 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10128
10192
|
}
|
|
10129
10193
|
|
|
10130
10194
|
.Checkbox-module_selected__-Nd6E {
|
|
10131
|
-
background: var(--color-gray-500, #878792);
|
|
10132
|
-
background-color: var(--color-gray-500, #878792);
|
|
10133
|
-
}
|
|
10134
|
-
.Checkbox-module_selected__-Nd6E:hover, .Checkbox-module_selected__-Nd6E:focus-within {
|
|
10135
|
-
background: var(--color-gray-600, #524e56);
|
|
10136
|
-
border-color: var(--color-gray-600, #524e56);
|
|
10137
|
-
}
|
|
10138
|
-
|
|
10139
|
-
.Checkbox-module_nativeCheckbox__BauKG {
|
|
10140
|
-
opacity: 0%;
|
|
10141
|
-
position: absolute;
|
|
10142
|
-
width: 100%;
|
|
10143
|
-
height: 100%;
|
|
10144
|
-
}
|
|
10145
|
-
|
|
10146
|
-
.Checkbox-module_iconContainer__Nsip6 {
|
|
10147
|
-
display: inline-block;
|
|
10148
|
-
position: relative;
|
|
10149
|
-
pointer-events: none;
|
|
10150
|
-
height: 100%;
|
|
10151
|
-
width: 100%;
|
|
10152
|
-
}
|
|
10153
|
-
|
|
10154
|
-
.Checkbox-module_icon__2b48e {
|
|
10155
|
-
color: var(--color-white, #ffffff);
|
|
10156
|
-
}
|
|
10157
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10158
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10159
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10160
|
-
.ModalFooter-module_actions__q2PiD {
|
|
10161
|
-
display: flex;
|
|
10162
|
-
flex-direction: row-reverse;
|
|
10163
|
-
justify-content: flex-start;
|
|
10164
|
-
}
|
|
10165
|
-
|
|
10166
|
-
.ModalFooter-module_actionsAlignStart__4wZ75 {
|
|
10167
|
-
flex-direction: row-reverse;
|
|
10168
|
-
justify-content: flex-end;
|
|
10169
|
-
}
|
|
10170
|
-
|
|
10171
|
-
.ModalFooter-module_padded__9PLtz {
|
|
10172
|
-
padding: var(--spacing-md, 1.5rem);
|
|
10173
|
-
flex-direction: column;
|
|
10174
|
-
}
|
|
10175
|
-
@media (min-width: 768px) {
|
|
10176
|
-
.ModalFooter-module_padded__9PLtz {
|
|
10177
|
-
padding: 0 var(--spacing-lg, 2.25rem) var(--spacing-lg, 2.25rem);
|
|
10178
|
-
flex-direction: row-reverse;
|
|
10179
|
-
}
|
|
10180
|
-
}
|
|
10181
|
-
|
|
10182
|
-
.ModalFooter-module_actionButton__YD4vG {
|
|
10183
|
-
width: 100%;
|
|
10184
|
-
}
|
|
10185
|
-
@media (min-width: 768px) {
|
|
10186
|
-
.ModalFooter-module_actionButton__YD4vG {
|
|
10187
|
-
width: inherit;
|
|
10188
|
-
}
|
|
10189
|
-
}
|
|
10190
|
-
|
|
10191
|
-
.ModalFooter-module_actionButton__YD4vG + .ModalFooter-module_actionButton__YD4vG {
|
|
10192
|
-
margin-right: var(--spacing-sm, 0.75rem);
|
|
10193
|
-
}
|
|
10194
|
-
@media (max-width: calc(768px - 1px)) {
|
|
10195
|
-
.ModalFooter-module_actionButton__YD4vG + .ModalFooter-module_actionButton__YD4vG {
|
|
10196
|
-
margin-top: var(--spacing-sm, 0.75rem);
|
|
10197
|
-
}
|
|
10195
|
+
background: var(--color-gray-500, #878792);
|
|
10196
|
+
background-color: var(--color-gray-500, #878792);
|
|
10197
|
+
}
|
|
10198
|
+
.Checkbox-module_selected__-Nd6E:hover, .Checkbox-module_selected__-Nd6E:focus-within {
|
|
10199
|
+
background: var(--color-gray-600, #524e56);
|
|
10200
|
+
border-color: var(--color-gray-600, #524e56);
|
|
10198
10201
|
}
|
|
10199
10202
|
|
|
10200
|
-
.
|
|
10201
|
-
|
|
10203
|
+
.Checkbox-module_nativeCheckbox__BauKG {
|
|
10204
|
+
opacity: 0%;
|
|
10205
|
+
position: absolute;
|
|
10202
10206
|
width: 100%;
|
|
10203
|
-
|
|
10207
|
+
height: 100%;
|
|
10204
10208
|
}
|
|
10205
10209
|
|
|
10206
|
-
.
|
|
10207
|
-
display:
|
|
10208
|
-
|
|
10210
|
+
.Checkbox-module_iconContainer__Nsip6 {
|
|
10211
|
+
display: inline-block;
|
|
10212
|
+
position: relative;
|
|
10213
|
+
pointer-events: none;
|
|
10214
|
+
height: 100%;
|
|
10215
|
+
width: 100%;
|
|
10209
10216
|
}
|
|
10210
10217
|
|
|
10211
|
-
.
|
|
10212
|
-
|
|
10218
|
+
.Checkbox-module_icon__2b48e {
|
|
10219
|
+
color: var(--color-white, #ffffff);
|
|
10213
10220
|
}
|
|
10214
|
-
|
|
10215
|
-
|
|
10216
|
-
|
|
10217
|
-
|
|
10221
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10222
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10223
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10224
|
+
@media (max-width: 768px) {
|
|
10225
|
+
.ModalAccessibleLabel-module_modalLabel__CQAIs h2 {
|
|
10226
|
+
font-size: 1.625rem;
|
|
10227
|
+
line-height: 2rem;
|
|
10228
|
+
}
|
|
10218
10229
|
}
|
|
10219
|
-
|
|
10220
|
-
.
|
|
10221
|
-
|
|
10222
|
-
|
|
10230
|
+
@media (max-width: 375px) {
|
|
10231
|
+
.ModalAccessibleLabel-module_modalLabel__CQAIs h2 {
|
|
10232
|
+
font-size: 1.5rem;
|
|
10233
|
+
line-height: 1.875rem;
|
|
10234
|
+
}
|
|
10223
10235
|
}
|
|
10224
|
-
|
|
10225
|
-
|
|
10226
|
-
|
|
10227
|
-
bottom: 0;
|
|
10228
|
-
left: 0;
|
|
10236
|
+
.ModalAccessibleLabel-module_modalLabel__CQAIs.ModalAccessibleLabel-module_prominent__WEPnY {
|
|
10237
|
+
grid-column-start: 2;
|
|
10238
|
+
text-align: left;
|
|
10229
10239
|
}
|
|
10230
|
-
|
|
10231
|
-
|
|
10232
|
-
visibility: hidden;
|
|
10240
|
+
.ModalAccessibleLabel-module_modalLabel__CQAIs:focus {
|
|
10241
|
+
outline: none;
|
|
10233
10242
|
}
|
|
10234
10243
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10235
10244
|
.Toolbar-module_toolbar__ooRzV {
|
|
@@ -10238,6 +10247,26 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10238
10247
|
}
|
|
10239
10248
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10240
10249
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10250
|
+
.ToolbarSection-module_toolbarSection__nCI0O {
|
|
10251
|
+
display: inline-flex;
|
|
10252
|
+
align-items: center;
|
|
10253
|
+
gap: var(--spacing-xs, 0.375rem);
|
|
10254
|
+
margin: var(--spacing-xs, 0.375rem) 0;
|
|
10255
|
+
padding: 0 var(--spacing-xs, 0.375rem);
|
|
10256
|
+
flex-wrap: wrap;
|
|
10257
|
+
}
|
|
10258
|
+
|
|
10259
|
+
.ToolbarSection-module_toolbarSection__nCI0O + .ToolbarSection-module_toolbarSection__nCI0O {
|
|
10260
|
+
border-inline-start: 1px solid rgba(var(--color-gray-600-rgb, 82, 78, 86), 0.1);
|
|
10261
|
+
}
|
|
10262
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10263
|
+
.FilterDatePickerField-module_filterDatePickerField__ClXMw {
|
|
10264
|
+
width: 288px;
|
|
10265
|
+
display: grid;
|
|
10266
|
+
gap: var(--spacing-16, 1rem);
|
|
10267
|
+
}
|
|
10268
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10269
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10241
10270
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10242
10271
|
.ToggleIconButton-module_button__86Iau {
|
|
10243
10272
|
border: none;
|
|
@@ -10333,19 +10362,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10333
10362
|
opacity: 100%;
|
|
10334
10363
|
outline: var(--color-purple-800, #2f2438) var(--border-solid-border-style, solid) var(--border-focus-ring-border-width, 2px);
|
|
10335
10364
|
}
|
|
10336
|
-
|
|
10337
|
-
|
|
10338
|
-
.ToolbarSection-module_toolbarSection__nCI0O {
|
|
10339
|
-
display: inline-flex;
|
|
10340
|
-
align-items: center;
|
|
10341
|
-
gap: var(--spacing-xs, 0.375rem);
|
|
10342
|
-
margin: var(--spacing-xs, 0.375rem) 0;
|
|
10343
|
-
padding: 0 var(--spacing-xs, 0.375rem);
|
|
10344
|
-
flex-wrap: wrap;
|
|
10345
|
-
}
|
|
10346
|
-
|
|
10347
|
-
.ToolbarSection-module_toolbarSection__nCI0O + .ToolbarSection-module_toolbarSection__nCI0O {
|
|
10348
|
-
border-inline-start: 1px solid rgba(var(--color-gray-600-rgb, 82, 78, 86), 0.1);
|
|
10365
|
+
.DateInputField-module_disabled__gfago {
|
|
10366
|
+
opacity: 0.3;
|
|
10349
10367
|
}
|
|
10350
10368
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10351
10369
|
.FilterDateRangePickerField-module_filterDateRangePickerField__fSmbz {
|
|
@@ -10360,125 +10378,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10360
10378
|
display: inline-flex;
|
|
10361
10379
|
gap: var(--spacing-6, 0.375rem);
|
|
10362
10380
|
}
|
|
10363
|
-
.DateInputField-module_disabled__gfago {
|
|
10364
|
-
opacity: 0.3;
|
|
10365
|
-
}
|
|
10366
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10367
|
-
.FilterDatePickerField-module_filterDatePickerField__ClXMw {
|
|
10368
|
-
width: 288px;
|
|
10369
|
-
display: grid;
|
|
10370
|
-
gap: var(--spacing-16, 1rem);
|
|
10371
|
-
}
|
|
10372
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10373
|
-
.LoadMoreButton-module_container__sXwB6 {
|
|
10374
|
-
padding: var(--spacing-sm, 0.75rem) var(--spacing-sm, 0.75rem) 0;
|
|
10375
|
-
}
|
|
10376
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10377
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10378
|
-
.RemoveButton-module_removeButton__Gu9DM {
|
|
10379
|
-
appearance: none;
|
|
10380
|
-
display: inline;
|
|
10381
|
-
background: transparent;
|
|
10382
|
-
color: inherit;
|
|
10383
|
-
font: inherit;
|
|
10384
|
-
margin: 0;
|
|
10385
|
-
padding: 0;
|
|
10386
|
-
border: none;
|
|
10387
|
-
position: relative;
|
|
10388
|
-
display: inline-flex;
|
|
10389
|
-
border-radius: 50%;
|
|
10390
|
-
color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
|
|
10391
|
-
}
|
|
10392
|
-
.RemoveButton-module_removeButton__Gu9DM:focus, .RemoveButton-module_removeButton__Gu9DM:focus-visible {
|
|
10393
|
-
outline: none;
|
|
10394
|
-
}
|
|
10395
|
-
.RemoveButton-module_removeButton__Gu9DM:focus::after, .RemoveButton-module_removeButton__Gu9DM:focus-visible::after {
|
|
10396
|
-
border-color: var(--color-blue-500, #0168b3);
|
|
10397
|
-
content: "";
|
|
10398
|
-
position: absolute;
|
|
10399
|
-
background: transparent;
|
|
10400
|
-
border-width: var(--border-focus-ring-border-width, 2px);
|
|
10401
|
-
border-style: var(--border-focus-ring-border-style, solid);
|
|
10402
|
-
border-radius: 50%;
|
|
10403
|
-
inset: -3px;
|
|
10404
|
-
}
|
|
10405
|
-
.RemoveButton-module_removeButton__Gu9DM::before {
|
|
10406
|
-
position: absolute;
|
|
10407
|
-
content: "";
|
|
10408
|
-
inset: -5px;
|
|
10409
|
-
border-radius: 50%;
|
|
10410
|
-
}
|
|
10411
|
-
.RemoveButton-module_removeButton__Gu9DM:hover, .RemoveButton-module_removeButton__Gu9DM:focus, .RemoveButton-module_removeButton__Gu9DM:focus-visible {
|
|
10412
|
-
background-color: rgba(var(--color-gray-600-rgb, 82, 78, 86), 0.2);
|
|
10413
|
-
cursor: pointer;
|
|
10414
|
-
color: var(--color-purple-800, #2f2438);
|
|
10415
|
-
}
|
|
10416
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10417
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10418
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10419
|
-
.ListBoxSection-module_listBoxSection__AMlz- {
|
|
10420
|
-
display: grid;
|
|
10421
|
-
list-style: none;
|
|
10422
|
-
padding: 0;
|
|
10423
|
-
}
|
|
10424
|
-
|
|
10425
|
-
.ListBoxSection-module_listBoxSectionHeader__N-2Fi {
|
|
10426
|
-
font-family: var(--typography-heading-6-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
10427
|
-
font-size: var(--typography-heading-6-font-size, 0.875rem);
|
|
10428
|
-
font-weight: var(--typography-heading-6-font-weight, 600);
|
|
10429
|
-
line-height: var(--typography-heading-6-line-height, 1.5rem);
|
|
10430
|
-
color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
|
|
10431
|
-
margin: var(--spacing-6, 0.375rem) 0;
|
|
10432
|
-
}
|
|
10433
|
-
.NoResults-module_container__2l8Ol {
|
|
10434
|
-
padding: 1.125rem;
|
|
10435
|
-
}
|
|
10436
|
-
.SectionDivider-module_divider__G-itP {
|
|
10437
|
-
margin: 0.5rem 0;
|
|
10438
|
-
}
|
|
10439
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10440
|
-
.ListBox-module_listBox__q95MO {
|
|
10441
|
-
list-style: none;
|
|
10442
|
-
padding: var(--spacing-sm, 0.75rem);
|
|
10443
|
-
margin: 0 var(--spacing-sm, 0.75rem) 0 0;
|
|
10444
|
-
display: grid;
|
|
10445
|
-
max-height: 22rem;
|
|
10446
|
-
overflow-y: auto;
|
|
10447
|
-
}
|
|
10448
|
-
|
|
10449
|
-
.ListBox-module_overflown__wChQA {
|
|
10450
|
-
padding-right: var(--spacing-sm, 0.75rem);
|
|
10451
|
-
}
|
|
10452
|
-
|
|
10453
|
-
.ListBox-module_hidden__eYdXv {
|
|
10454
|
-
display: none;
|
|
10455
|
-
}
|
|
10456
|
-
|
|
10457
|
-
.ListBox-module_noResultsWrapper__WcLRm {
|
|
10458
|
-
list-style: none;
|
|
10459
|
-
}
|
|
10460
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10461
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10462
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10463
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10464
|
-
.MenuPopup-module_menuPopup__UVgnP {
|
|
10465
|
-
position: absolute;
|
|
10466
|
-
z-index: 1000;
|
|
10467
|
-
box-sizing: border-box;
|
|
10468
|
-
background: var(--color-white, #ffffff);
|
|
10469
|
-
color: var(--color-purple-800, #2f2438);
|
|
10470
|
-
border-radius: var(--border-solid-border-radius, 7px);
|
|
10471
|
-
box-shadow: var(--shadow-large-box-shadow, 0 3px 9px 0 rgba(0, 0, 0, 0.1), 0 8px 40px 0 rgba(0, 0, 0, 0.08));
|
|
10472
|
-
padding: var(--spacing-sm, 0.75rem) 0;
|
|
10473
|
-
margin-top: var(--spacing-xs, 0.375rem);
|
|
10474
|
-
text-align: start;
|
|
10475
|
-
width: 294px;
|
|
10476
|
-
}
|
|
10477
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10478
|
-
.SearchInput-module_inputSearchContainer__u9K6k {
|
|
10479
|
-
position: relative;
|
|
10480
|
-
margin: 0 var(--spacing-sm, 0.75rem);
|
|
10481
|
-
}
|
|
10482
10381
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10483
10382
|
.DateRangeInputField-module_dateRangeInputContainer__zjhqr {
|
|
10484
10383
|
display: flex;
|
|
@@ -10492,64 +10391,32 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10492
10391
|
border-end-end-radius: 0;
|
|
10493
10392
|
}
|
|
10494
10393
|
.DateRangeInputField-module_inputStartDate__fLwxZ input + [class*=focusRing] {
|
|
10495
|
-
/* stylelint-disable declaration-no-important */
|
|
10496
|
-
border-start-end-radius: 0 !important;
|
|
10497
|
-
border-end-end-radius: 0 !important;
|
|
10498
|
-
/* stylelint-enable declaration-no-important */
|
|
10499
|
-
}
|
|
10500
|
-
|
|
10501
|
-
.DateRangeInputField-module_inputEndDate__j0qQu input {
|
|
10502
|
-
position: relative;
|
|
10503
|
-
inset-inline-start: calc(-1 * var(--border-solid-border-width, 2px));
|
|
10504
|
-
border-start-start-radius: 0;
|
|
10505
|
-
border-end-start-radius: 0;
|
|
10506
|
-
}
|
|
10507
|
-
.DateRangeInputField-module_inputEndDate__j0qQu input + [class*=focusRing] {
|
|
10508
|
-
/* stylelint-disable declaration-no-important */
|
|
10509
|
-
border-start-start-radius: 0 !important;
|
|
10510
|
-
border-end-start-radius: 0 !important;
|
|
10511
|
-
inset-inline: calc(-1 * (2 * var(--border-solid-border-width, 2px) + 1px)) -1px !important;
|
|
10512
|
-
/* stylelint-enable declaration-no-important */
|
|
10513
|
-
}
|
|
10514
|
-
|
|
10515
|
-
.DateRangeInputField-module_disabled__vOSK8 {
|
|
10516
|
-
opacity: 0.3;
|
|
10517
|
-
}
|
|
10518
|
-
.ListBox-module_listBox__eV6P3 {
|
|
10519
|
-
list-style: none;
|
|
10520
|
-
margin-top: 0;
|
|
10521
|
-
margin-bottom: 0;
|
|
10522
|
-
padding: 0;
|
|
10523
|
-
display: grid;
|
|
10524
|
-
max-height: 22rem;
|
|
10525
|
-
}
|
|
10526
|
-
|
|
10527
|
-
.ListBox-module_listBox__eV6P3:focus-visible {
|
|
10528
|
-
outline: none;
|
|
10529
|
-
}
|
|
10530
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10531
|
-
.ListBoxSection-module_sectionWrapper__mwpFh {
|
|
10532
|
-
display: flex;
|
|
10533
|
-
flex-direction: column;
|
|
10534
|
-
}
|
|
10535
|
-
.ListBoxSection-module_sectionWrapper__mwpFh:not(:first-child) {
|
|
10536
|
-
margin-top: var(--spacing-8, 0.5rem);
|
|
10394
|
+
/* stylelint-disable declaration-no-important */
|
|
10395
|
+
border-start-end-radius: 0 !important;
|
|
10396
|
+
border-end-end-radius: 0 !important;
|
|
10397
|
+
/* stylelint-enable declaration-no-important */
|
|
10537
10398
|
}
|
|
10538
10399
|
|
|
10539
|
-
.
|
|
10540
|
-
|
|
10400
|
+
.DateRangeInputField-module_inputEndDate__j0qQu input {
|
|
10401
|
+
position: relative;
|
|
10402
|
+
inset-inline-start: calc(-1 * var(--border-solid-border-width, 2px));
|
|
10403
|
+
border-start-start-radius: 0;
|
|
10404
|
+
border-end-start-radius: 0;
|
|
10405
|
+
}
|
|
10406
|
+
.DateRangeInputField-module_inputEndDate__j0qQu input + [class*=focusRing] {
|
|
10407
|
+
/* stylelint-disable declaration-no-important */
|
|
10408
|
+
border-start-start-radius: 0 !important;
|
|
10409
|
+
border-end-start-radius: 0 !important;
|
|
10410
|
+
inset-inline: calc(-1 * (2 * var(--border-solid-border-width, 2px) + 1px)) -1px !important;
|
|
10411
|
+
/* stylelint-enable declaration-no-important */
|
|
10541
10412
|
}
|
|
10542
10413
|
|
|
10543
|
-
.
|
|
10544
|
-
|
|
10545
|
-
flex-direction: column;
|
|
10546
|
-
padding: var(--spacing-xs, 0.375rem) 0 0 0;
|
|
10414
|
+
.DateRangeInputField-module_disabled__vOSK8 {
|
|
10415
|
+
opacity: 0.3;
|
|
10547
10416
|
}
|
|
10548
10417
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10549
10418
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10550
|
-
|
|
10551
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10552
|
-
.SelectionControlButton-module_button__u-ysH {
|
|
10419
|
+
.RemoveButton-module_removeButton__Gu9DM {
|
|
10553
10420
|
appearance: none;
|
|
10554
10421
|
display: inline;
|
|
10555
10422
|
background: transparent;
|
|
@@ -10558,50 +10425,55 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10558
10425
|
margin: 0;
|
|
10559
10426
|
padding: 0;
|
|
10560
10427
|
border: none;
|
|
10561
|
-
-webkit-font-smoothing: antialiased;
|
|
10562
|
-
-moz-osx-font-smoothing: grayscale;
|
|
10563
10428
|
position: relative;
|
|
10564
10429
|
display: inline-flex;
|
|
10565
|
-
|
|
10566
|
-
|
|
10567
|
-
border: var(--border-solid-border-width, 2px) var(--border-solid-border-style, solid);
|
|
10568
|
-
border-color: var(--border-borderless-border-color, transparent);
|
|
10569
|
-
border-radius: var(--border-solid-border-radius, 7px);
|
|
10570
|
-
padding: var(--spacing-4, 0.25rem) var(--spacing-8, 0.5rem);
|
|
10571
|
-
font-weight: var(--typography-button-secondary-font-weight, 500);
|
|
10572
|
-
font-family: var(--typography-button-secondary-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
10573
|
-
font-size: var(--typography-button-secondary-font-size, 1rem);
|
|
10574
|
-
line-height: var(--typography-button-secondary-line-height, 1.5rem);
|
|
10575
|
-
letter-spacing: var(--typography-button-secondary-letter-spacing, normal);
|
|
10576
|
-
color: var(--color-blue-500, #0168b3);
|
|
10430
|
+
border-radius: 50%;
|
|
10431
|
+
color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
|
|
10577
10432
|
}
|
|
10578
|
-
.
|
|
10433
|
+
.RemoveButton-module_removeButton__Gu9DM:focus, .RemoveButton-module_removeButton__Gu9DM:focus-visible {
|
|
10579
10434
|
outline: none;
|
|
10580
10435
|
}
|
|
10581
|
-
.
|
|
10582
|
-
|
|
10583
|
-
}
|
|
10584
|
-
.SelectionControlButton-module_button__u-ysH:focus-visible::after {
|
|
10436
|
+
.RemoveButton-module_removeButton__Gu9DM:focus::after, .RemoveButton-module_removeButton__Gu9DM:focus-visible::after {
|
|
10437
|
+
border-color: var(--color-blue-500, #0168b3);
|
|
10585
10438
|
content: "";
|
|
10586
10439
|
position: absolute;
|
|
10587
10440
|
background: transparent;
|
|
10588
|
-
border-radius: var(--border-focus-ring-border-radius, 10px);
|
|
10589
10441
|
border-width: var(--border-focus-ring-border-width, 2px);
|
|
10590
10442
|
border-style: var(--border-focus-ring-border-style, solid);
|
|
10591
|
-
border-
|
|
10592
|
-
inset:
|
|
10443
|
+
border-radius: 50%;
|
|
10444
|
+
inset: -3px;
|
|
10593
10445
|
}
|
|
10594
|
-
.
|
|
10595
|
-
|
|
10596
|
-
|
|
10597
|
-
|
|
10446
|
+
.RemoveButton-module_removeButton__Gu9DM::before {
|
|
10447
|
+
position: absolute;
|
|
10448
|
+
content: "";
|
|
10449
|
+
inset: -5px;
|
|
10450
|
+
border-radius: 50%;
|
|
10598
10451
|
}
|
|
10599
|
-
.
|
|
10600
|
-
|
|
10601
|
-
|
|
10452
|
+
.RemoveButton-module_removeButton__Gu9DM:hover, .RemoveButton-module_removeButton__Gu9DM:focus, .RemoveButton-module_removeButton__Gu9DM:focus-visible {
|
|
10453
|
+
background-color: rgba(var(--color-gray-600-rgb, 82, 78, 86), 0.2);
|
|
10454
|
+
cursor: pointer;
|
|
10455
|
+
color: var(--color-purple-800, #2f2438);
|
|
10602
10456
|
}
|
|
10603
|
-
|
|
10604
|
-
|
|
10457
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10458
|
+
.ListBox-module_listBox__q95MO {
|
|
10459
|
+
list-style: none;
|
|
10460
|
+
padding: var(--spacing-sm, 0.75rem);
|
|
10461
|
+
margin: 0 var(--spacing-sm, 0.75rem) 0 0;
|
|
10462
|
+
display: grid;
|
|
10463
|
+
max-height: 22rem;
|
|
10464
|
+
overflow-y: auto;
|
|
10465
|
+
}
|
|
10466
|
+
|
|
10467
|
+
.ListBox-module_overflown__wChQA {
|
|
10468
|
+
padding-right: var(--spacing-sm, 0.75rem);
|
|
10469
|
+
}
|
|
10470
|
+
|
|
10471
|
+
.ListBox-module_hidden__eYdXv {
|
|
10472
|
+
display: none;
|
|
10473
|
+
}
|
|
10474
|
+
|
|
10475
|
+
.ListBox-module_noResultsWrapper__WcLRm {
|
|
10476
|
+
list-style: none;
|
|
10605
10477
|
}
|
|
10606
10478
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10607
10479
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -10691,8 +10563,65 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10691
10563
|
background-color: var(--color-gray-600, #524e56);
|
|
10692
10564
|
}
|
|
10693
10565
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10694
|
-
|
|
10695
|
-
|
|
10566
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10567
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10568
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10569
|
+
.MenuPopup-module_menuPopup__UVgnP {
|
|
10570
|
+
position: absolute;
|
|
10571
|
+
z-index: 1000;
|
|
10572
|
+
box-sizing: border-box;
|
|
10573
|
+
background: var(--color-white, #ffffff);
|
|
10574
|
+
color: var(--color-purple-800, #2f2438);
|
|
10575
|
+
border-radius: var(--border-solid-border-radius, 7px);
|
|
10576
|
+
box-shadow: var(--shadow-large-box-shadow, 0 3px 9px 0 rgba(0, 0, 0, 0.1), 0 8px 40px 0 rgba(0, 0, 0, 0.08));
|
|
10577
|
+
padding: var(--spacing-sm, 0.75rem) 0;
|
|
10578
|
+
margin-top: var(--spacing-xs, 0.375rem);
|
|
10579
|
+
text-align: start;
|
|
10580
|
+
width: 294px;
|
|
10581
|
+
}
|
|
10582
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10583
|
+
.LoadMoreButton-module_container__sXwB6 {
|
|
10584
|
+
padding: var(--spacing-sm, 0.75rem) var(--spacing-sm, 0.75rem) 0;
|
|
10585
|
+
}
|
|
10586
|
+
.NoResults-module_container__2l8Ol {
|
|
10587
|
+
padding: 1.125rem;
|
|
10588
|
+
}
|
|
10589
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10590
|
+
.SearchInput-module_inputSearchContainer__u9K6k {
|
|
10591
|
+
position: relative;
|
|
10592
|
+
margin: 0 var(--spacing-sm, 0.75rem);
|
|
10593
|
+
}
|
|
10594
|
+
.SectionDivider-module_divider__G-itP {
|
|
10595
|
+
margin: 0.5rem 0;
|
|
10596
|
+
}
|
|
10597
|
+
.ListBox-module_listBox__eV6P3 {
|
|
10598
|
+
list-style: none;
|
|
10599
|
+
margin-top: 0;
|
|
10600
|
+
margin-bottom: 0;
|
|
10601
|
+
padding: 0;
|
|
10602
|
+
display: grid;
|
|
10603
|
+
max-height: 22rem;
|
|
10604
|
+
}
|
|
10605
|
+
|
|
10606
|
+
.ListBox-module_listBox__eV6P3:focus-visible {
|
|
10607
|
+
outline: none;
|
|
10608
|
+
}
|
|
10609
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10610
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10611
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10612
|
+
.ListBoxSection-module_listBoxSection__AMlz- {
|
|
10613
|
+
display: grid;
|
|
10614
|
+
list-style: none;
|
|
10615
|
+
padding: 0;
|
|
10616
|
+
}
|
|
10617
|
+
|
|
10618
|
+
.ListBoxSection-module_listBoxSectionHeader__N-2Fi {
|
|
10619
|
+
font-family: var(--typography-heading-6-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
10620
|
+
font-size: var(--typography-heading-6-font-size, 0.875rem);
|
|
10621
|
+
font-weight: var(--typography-heading-6-font-weight, 600);
|
|
10622
|
+
line-height: var(--typography-heading-6-line-height, 1.5rem);
|
|
10623
|
+
color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
|
|
10624
|
+
margin: var(--spacing-6, 0.375rem) 0;
|
|
10696
10625
|
}
|
|
10697
10626
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10698
10627
|
.SectionDivider-module_divider__81AP0 {
|
|
@@ -10702,13 +10631,89 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10702
10631
|
display: none;
|
|
10703
10632
|
}
|
|
10704
10633
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10705
|
-
.
|
|
10706
|
-
|
|
10634
|
+
.ListBoxSection-module_sectionWrapper__mwpFh {
|
|
10635
|
+
display: flex;
|
|
10636
|
+
flex-direction: column;
|
|
10637
|
+
}
|
|
10638
|
+
.ListBoxSection-module_sectionWrapper__mwpFh:not(:first-child) {
|
|
10639
|
+
margin-top: var(--spacing-8, 0.5rem);
|
|
10707
10640
|
}
|
|
10708
10641
|
|
|
10709
|
-
.
|
|
10710
|
-
|
|
10711
|
-
|
|
10642
|
+
.ListBoxSection-module_sectionHeading__N7GmS {
|
|
10643
|
+
padding-inline-start: var(--spacing-4, 0.25rem);
|
|
10644
|
+
}
|
|
10645
|
+
|
|
10646
|
+
.ListBoxSection-module_sectionList__abvnM {
|
|
10647
|
+
display: flex;
|
|
10648
|
+
flex-direction: column;
|
|
10649
|
+
padding: var(--spacing-xs, 0.375rem) 0 0 0;
|
|
10650
|
+
}
|
|
10651
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10652
|
+
.SelectPopoverContents-module_selectPopoverContents__YyueT {
|
|
10653
|
+
padding: var(--spacing-12, 0.75rem);
|
|
10654
|
+
}
|
|
10655
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10656
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10657
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10658
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10659
|
+
.SelectionControlButton-module_button__u-ysH {
|
|
10660
|
+
appearance: none;
|
|
10661
|
+
display: inline;
|
|
10662
|
+
background: transparent;
|
|
10663
|
+
color: inherit;
|
|
10664
|
+
font: inherit;
|
|
10665
|
+
margin: 0;
|
|
10666
|
+
padding: 0;
|
|
10667
|
+
border: none;
|
|
10668
|
+
-webkit-font-smoothing: antialiased;
|
|
10669
|
+
-moz-osx-font-smoothing: grayscale;
|
|
10670
|
+
position: relative;
|
|
10671
|
+
display: inline-flex;
|
|
10672
|
+
align-items: center;
|
|
10673
|
+
gap: var(--spacing-xs, 0.375rem);
|
|
10674
|
+
border: var(--border-solid-border-width, 2px) var(--border-solid-border-style, solid);
|
|
10675
|
+
border-color: var(--border-borderless-border-color, transparent);
|
|
10676
|
+
border-radius: var(--border-solid-border-radius, 7px);
|
|
10677
|
+
padding: var(--spacing-4, 0.25rem) var(--spacing-8, 0.5rem);
|
|
10678
|
+
font-weight: var(--typography-button-secondary-font-weight, 500);
|
|
10679
|
+
font-family: var(--typography-button-secondary-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
10680
|
+
font-size: var(--typography-button-secondary-font-size, 1rem);
|
|
10681
|
+
line-height: var(--typography-button-secondary-line-height, 1.5rem);
|
|
10682
|
+
letter-spacing: var(--typography-button-secondary-letter-spacing, normal);
|
|
10683
|
+
color: var(--color-blue-500, #0168b3);
|
|
10684
|
+
}
|
|
10685
|
+
.SelectionControlButton-module_button__u-ysH:focus {
|
|
10686
|
+
outline: none;
|
|
10687
|
+
}
|
|
10688
|
+
.SelectionControlButton-module_button__u-ysH:hover:not(.SelectionControlButton-module_isDisabled__0axMR), .SelectionControlButton-module_button__u-ysH:active:not(.SelectionControlButton-module_isDisabled__0axMR), .SelectionControlButton-module_button__u-ysH:focus:not(.SelectionControlButton-module_isDisabled__0axMR) {
|
|
10689
|
+
background-color: var(--color-blue-100, #e6f6ff);
|
|
10690
|
+
}
|
|
10691
|
+
.SelectionControlButton-module_button__u-ysH:focus-visible::after {
|
|
10692
|
+
content: "";
|
|
10693
|
+
position: absolute;
|
|
10694
|
+
background: transparent;
|
|
10695
|
+
border-radius: var(--border-focus-ring-border-radius, 10px);
|
|
10696
|
+
border-width: var(--border-focus-ring-border-width, 2px);
|
|
10697
|
+
border-style: var(--border-focus-ring-border-style, solid);
|
|
10698
|
+
border-color: var(--color-blue-500, #0168b3);
|
|
10699
|
+
inset: calc(-1 * calc(var(--border-focus-ring-border-width, 2px) * 2 + 1px));
|
|
10700
|
+
}
|
|
10701
|
+
.SelectionControlButton-module_button__u-ysH.SelectionControlButton-module_isDisabled__0axMR {
|
|
10702
|
+
pointer-events: none;
|
|
10703
|
+
color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.3);
|
|
10704
|
+
opacity: 100%;
|
|
10705
|
+
}
|
|
10706
|
+
.SelectionControlButton-module_button__u-ysH.SelectionControlButton-module_isDisabled__0axMR:focus {
|
|
10707
|
+
outline: none;
|
|
10708
|
+
border: 2px solid transparent;
|
|
10709
|
+
}
|
|
10710
|
+
.SelectionControlButton-module_button__u-ysH.SelectionControlButton-module_isDisabled__0axMR:focus-visible::after {
|
|
10711
|
+
border-color: var(--color-gray-400, #cdcdd0);
|
|
10712
|
+
}
|
|
10713
|
+
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10714
|
+
.DateRangeValidationMessage-module_fieldMessageList__4-tJ7 {
|
|
10715
|
+
margin: var(--spacing-0, 0);
|
|
10716
|
+
padding-inline-start: var(--spacing-24, 1.5rem);
|
|
10712
10717
|
}
|
|
10713
10718
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10714
10719
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -10781,12 +10786,13 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10781
10786
|
color: var(--color-gray-500, #878792);
|
|
10782
10787
|
}
|
|
10783
10788
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10784
|
-
.
|
|
10785
|
-
margin: var(--spacing-
|
|
10786
|
-
padding-inline-start: var(--spacing-24, 1.5rem);
|
|
10789
|
+
.MenuLoadingSkeleton-module_loadingInput__-6KsQ {
|
|
10790
|
+
margin-bottom: var(--spacing-sm, 0.75rem);
|
|
10787
10791
|
}
|
|
10788
|
-
|
|
10789
|
-
|
|
10792
|
+
|
|
10793
|
+
.MenuLoadingSkeleton-module_loadingContainer__QFFBR {
|
|
10794
|
+
margin-left: var(--spacing-sm, 0.75rem);
|
|
10795
|
+
margin-right: var(--spacing-sm, 0.75rem);
|
|
10790
10796
|
}
|
|
10791
10797
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10792
10798
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -10923,6 +10929,9 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10923
10929
|
display: flex;
|
|
10924
10930
|
padding: var(--spacing-sm, 0.75rem) var(--spacing-sm, 0.75rem) 0;
|
|
10925
10931
|
}
|
|
10932
|
+
.LinkModal-module_validationErrorMessage__APw4U ul {
|
|
10933
|
+
margin-bottom: 0;
|
|
10934
|
+
}
|
|
10926
10935
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10927
10936
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
10928
10937
|
.LinkPopover-module_popoverContent__qGPyp {
|