summit-registration-lite 7.0.0 → 7.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/.claude/rules/summit-registration-lite-i18n.md +62 -0
  2. package/.claude/rules/summit-registration-lite-step-flow.md +77 -0
  3. package/.claude/rules/summit-registration-lite-utils.md +71 -0
  4. package/.codegraph/config.json +141 -0
  5. package/.github/workflows/ci.yml +54 -0
  6. package/dist/components/index.css +12 -27
  7. package/dist/components/index.css.map +1 -1
  8. package/dist/components/index.js +795 -247
  9. package/dist/components/index.js.map +1 -1
  10. package/dist/components/login-passwordless.css +1 -2
  11. package/dist/components/login-passwordless.js +21 -4
  12. package/dist/components/login-passwordless.js.map +1 -1
  13. package/dist/components/login.css +1 -2
  14. package/dist/components/login.js +69 -2
  15. package/dist/components/login.js.map +1 -1
  16. package/dist/components/registration-form.css +12 -26
  17. package/dist/components/registration-form.css.map +1 -1
  18. package/dist/components/registration-form.js +790 -243
  19. package/dist/components/registration-form.js.map +1 -1
  20. package/dist/components/registration-modal.css +12 -27
  21. package/dist/components/registration-modal.css.map +1 -1
  22. package/dist/components/registration-modal.js +794 -246
  23. package/dist/components/registration-modal.js.map +1 -1
  24. package/dist/index.css +12 -27
  25. package/dist/index.css.map +1 -1
  26. package/dist/index.js +794 -246
  27. package/dist/index.js.map +1 -1
  28. package/dist/utils/constants.js +11 -1
  29. package/dist/utils/constants.js.map +1 -1
  30. package/e2e/fixtures.js +84 -0
  31. package/e2e/promo-code-discovery.spec.js +364 -0
  32. package/package.json +12 -4
  33. package/playwright.config.js +26 -0
@@ -0,0 +1,62 @@
1
+ # i18n / Translation Pattern
2
+
3
+ ## When to Apply
4
+
5
+ Adding user-facing text to components or modifying existing strings.
6
+
7
+ ## Pattern
8
+
9
+ **Library:** `i18n-react` — imported as `T`.
10
+
11
+ **Setup (in `registration-lite.js`):**
12
+
13
+ ```javascript
14
+ import T from 'i18n-react';
15
+
16
+ // Loaded once at component init, falls back to English
17
+ try {
18
+ T.setTexts(require(`../i18n/${language}.json`));
19
+ } catch {
20
+ T.setTexts(require(`../i18n/en.json`));
21
+ }
22
+ ```
23
+
24
+ **Usage in components:**
25
+
26
+ ```javascript
27
+ import T from 'i18n-react';
28
+
29
+ // Simple key
30
+ T.translate("bar_button.next") // → "Next"
31
+
32
+ // With interpolation
33
+ T.translate("purchase_complete_step.footer_assistance_text", { supportEmail: "help@example.com" })
34
+ // Template: "For further assistance, please email <a href=\"mailto:{supportEmail}\">{supportEmail}</a>"
35
+ ```
36
+
37
+ ## Translation File Structure
38
+
39
+ `src/i18n/en.json` — flat namespaced by UI section:
40
+
41
+ ```json
42
+ {
43
+ "purchase_complete_step": { "title": "...", "initial_order_complete_button": "..." },
44
+ "ticket_type": { "ticket_quantity_tooltip": "..." },
45
+ "promo_code": { "promo_code_tooltip": "..." },
46
+ "bar_button": { "back": "Back", "next": "Next", "get_ticket": "Get Ticket", "pay_now": "Pay Now", "loading": "Loading" }
47
+ }
48
+ ```
49
+
50
+ ## Key Points
51
+
52
+ - Namespace keys by component/step: `"section_name.key_name"`
53
+ - Interpolation uses `{variableName}` syntax (not `${}` or `%s`)
54
+ - HTML is allowed in translation values (rendered as-is)
55
+ - Only English (`en.json`) exists — add new languages as `{lang}.json` in `src/i18n/`
56
+ - Components using text must `import T from 'i18n-react'`
57
+
58
+ ## Common Mistakes
59
+
60
+ - Hardcoding user-facing strings instead of using `T.translate()`
61
+ - Adding keys without updating `en.json` (renders the key path as literal text)
62
+ - Using wrong namespace (check `en.json` for existing sections before creating new ones)
@@ -0,0 +1,77 @@
1
+ # Multi-Step Registration Flow
2
+
3
+ ## When to Apply
4
+
5
+ Adding step-specific logic, modifying step transitions, or rendering step-dependent UI.
6
+
7
+ ## Step Constants
8
+
9
+ Defined in `src/utils/constants.js`:
10
+
11
+ ```javascript
12
+ export const STEP_SELECT_TICKET_TYPE = 0; // Ticket selection + promo code
13
+ export const STEP_PERSONAL_INFO = 1; // Attendee details + ticket assignment
14
+ export const STEP_PAYMENT = 2; // Payment form (Stripe/LawPay)
15
+ export const STEP_COMPLETE = 3; // Order confirmation
16
+ ```
17
+
18
+ ## Step Transitions
19
+
20
+ **Forward flow (happy path):**
21
+
22
+ ```
23
+ STEP_SELECT_TICKET_TYPE → (Next/validate promo) → STEP_PERSONAL_INFO
24
+ STEP_PERSONAL_INFO → (submit form) → reserveTicket → STEP_PAYMENT
25
+ STEP_PAYMENT → (pay) → payTicketWithProvider → STEP_COMPLETE
26
+ ```
27
+
28
+ **Special cases:**
29
+
30
+ | Scenario | Transition |
31
+ |----------|------------|
32
+ | Free ticket (cost === 0) | `STEP_PERSONAL_INFO` → skip payment → `STEP_COMPLETE` |
33
+ | Pre-paid ticket | `STEP_PERSONAL_INFO` → skip payment → `STEP_COMPLETE` |
34
+ | Payment failure | `STEP_PAYMENT` → `removeReservedTicket()` → `STEP_PERSONAL_INFO` |
35
+ | No ticket selected + back | Any step → `STEP_SELECT_TICKET_TYPE` |
36
+
37
+ **Back navigation:**
38
+
39
+ - From `STEP_PERSONAL_INFO`: `changeStep(step - 1)`
40
+ - From `STEP_PAYMENT`: `removeReservedTicket()` (clears reservation, reducer resets to `STEP_PERSONAL_INFO`)
41
+
42
+ ## Redux Integration
43
+
44
+ ```javascript
45
+ // Action
46
+ export const changeStep = (step) => (dispatch, getState) => {
47
+ dispatch(createAction(CHANGE_STEP)(step));
48
+ };
49
+
50
+ // Reducer
51
+ case CHANGE_STEP: {
52
+ return { ...state, step: payload };
53
+ }
54
+ ```
55
+
56
+ Default state: `step: STEP_SELECT_TICKET_TYPE`
57
+
58
+ ## Rendering Pattern
59
+
60
+ In `registration-lite.js`, each step renders conditionally:
61
+
62
+ ```javascript
63
+ <StepComponent isActive={step === STEP_SELECT_TICKET_TYPE} ... />
64
+ <StepComponent isActive={step === STEP_PERSONAL_INFO} ... />
65
+ <StepComponent isActive={step === STEP_PAYMENT} ... />
66
+ {step === STEP_COMPLETE && <PurchaseCompleteComponent ... />}
67
+ ```
68
+
69
+ - Steps 0-2 share layout with `ButtonBarComponent`
70
+ - Step 3 (complete) has its own layout, no button bar
71
+ - Button bar renders step-specific buttons based on current `step` value
72
+
73
+ ## Common Mistakes
74
+
75
+ - Skipping `removeReservedTicket()` when going back from payment (leaves stale reservation)
76
+ - Not checking `reservation` existence before allowing forward navigation
77
+ - Adding steps without updating `ButtonBarComponent` (buttons won't render for new step)
@@ -0,0 +1,71 @@
1
+ # Utility Functions
2
+
3
+ ## When to Apply
4
+
5
+ Working with ticket pricing, order status checks, payment provider resolution, or UI color logic.
6
+
7
+ ## Key Functions (`src/utils/utils.js`)
8
+
9
+ ### Order/Ticket Status Checks
10
+
11
+ ```javascript
12
+ isFreeOrder(reservation) // reservation.amount === 0
13
+ isPrePaidOrder(reservation) // status === 'Paid' && payment_method === 'Offline'
14
+ isPrePaidTicketType(ticketType) // ticketType.sub_type === 'PrePaid'
15
+ hasDiscountApplied(ticketType) // has cost_with_applied_discount !== cost
16
+ ```
17
+
18
+ Used in payment providers to decide whether to skip the payment gateway.
19
+
20
+ ### Pricing Display
21
+
22
+ ```javascript
23
+ getTicketCost(ticket, quantity) // Returns JSX: strikethrough original + discounted price, or just price
24
+ getTicketTaxes(ticket, taxes) // Returns tax label string: " plus Tax A & Tax B"
25
+ formatCurrency(amount, { currency }) // From helpers/ — locale-aware currency formatting
26
+ ```
27
+
28
+ ### Payment Provider Resolution
29
+
30
+ ```javascript
31
+ getCurrentProvider(summit)
32
+ // Iterates summit.payment_profiles for application_type === 'Registration'
33
+ // Returns { publicKey, provider } — uses test vs live key based on test_mode_enabled
34
+ ```
35
+
36
+ ### UI Helpers
37
+
38
+ ```javascript
39
+ getContrastingTextColor(bgColor, lightColor, darkColor) // WCAG luminance contrast
40
+ parseColor(input, element) // Resolves CSS variables to RGB
41
+ removeWhiteSpaces(value) // Strip all whitespace
42
+ isEmptyString(val) // Trim-aware empty check
43
+ ```
44
+
45
+ ### Error Tracking
46
+
47
+ ```javascript
48
+ handleSentryException(err) // Sends to Sentry if window.SENTRY_DSN is set, else console.log
49
+ ```
50
+
51
+ ### Analytics
52
+
53
+ ```javascript
54
+ buildTrackEvent(data, ticketQuantity, promoCode)
55
+ // Builds GA4-style event data with currency, items_array, discount
56
+ ```
57
+
58
+ ## Helper Exports (`src/helpers/`)
59
+
60
+ Barrel export from `src/helpers/index.js`:
61
+
62
+ - `capitalizeFirstLetter` — text formatting
63
+ - `formatCurrency` — locale-aware currency display
64
+ - `formatErrorMessage` — error message normalization
65
+ - `getTicketMaxQuantity` — ticket quantity constraints
66
+
67
+ ## Common Mistakes
68
+
69
+ - Using `reservation.amount === 0` directly instead of `isFreeOrder()` (misses edge cases)
70
+ - Forgetting `isPrePaidOrder()` check alongside `isFreeOrder()` in payment flows
71
+ - Not handling `getCurrentProvider()` returning `{ publicKey: null, provider: '' }` when no payment profile exists
@@ -0,0 +1,141 @@
1
+ {
2
+ "version": 1,
3
+ "include": [
4
+ "**/*.ts",
5
+ "**/*.tsx",
6
+ "**/*.js",
7
+ "**/*.jsx",
8
+ "**/*.py",
9
+ "**/*.go",
10
+ "**/*.rs",
11
+ "**/*.java",
12
+ "**/*.c",
13
+ "**/*.h",
14
+ "**/*.cpp",
15
+ "**/*.hpp",
16
+ "**/*.cc",
17
+ "**/*.cxx",
18
+ "**/*.cs",
19
+ "**/*.php",
20
+ "**/*.rb",
21
+ "**/*.swift",
22
+ "**/*.kt",
23
+ "**/*.kts",
24
+ "**/*.dart",
25
+ "**/*.svelte",
26
+ "**/*.liquid",
27
+ "**/*.pas",
28
+ "**/*.dpr",
29
+ "**/*.dpk",
30
+ "**/*.lpr",
31
+ "**/*.dfm",
32
+ "**/*.fmx"
33
+ ],
34
+ "exclude": [
35
+ "**/.git/**",
36
+ "**/node_modules/**",
37
+ "**/vendor/**",
38
+ "**/Pods/**",
39
+ "**/dist/**",
40
+ "**/build/**",
41
+ "**/out/**",
42
+ "**/bin/**",
43
+ "**/obj/**",
44
+ "**/target/**",
45
+ "**/*.min.js",
46
+ "**/*.bundle.js",
47
+ "**/.next/**",
48
+ "**/.nuxt/**",
49
+ "**/.svelte-kit/**",
50
+ "**/.output/**",
51
+ "**/.turbo/**",
52
+ "**/.cache/**",
53
+ "**/.parcel-cache/**",
54
+ "**/.vite/**",
55
+ "**/.astro/**",
56
+ "**/.docusaurus/**",
57
+ "**/.gatsby/**",
58
+ "**/.webpack/**",
59
+ "**/.nx/**",
60
+ "**/.yarn/cache/**",
61
+ "**/.pnpm-store/**",
62
+ "**/storybook-static/**",
63
+ "**/.expo/**",
64
+ "**/web-build/**",
65
+ "**/ios/Pods/**",
66
+ "**/ios/build/**",
67
+ "**/android/build/**",
68
+ "**/android/.gradle/**",
69
+ "**/__pycache__/**",
70
+ "**/.venv/**",
71
+ "**/venv/**",
72
+ "**/site-packages/**",
73
+ "**/dist-packages/**",
74
+ "**/.pytest_cache/**",
75
+ "**/.mypy_cache/**",
76
+ "**/.ruff_cache/**",
77
+ "**/.tox/**",
78
+ "**/.nox/**",
79
+ "**/*.egg-info/**",
80
+ "**/.eggs/**",
81
+ "**/go/pkg/mod/**",
82
+ "**/target/debug/**",
83
+ "**/target/release/**",
84
+ "**/.gradle/**",
85
+ "**/.m2/**",
86
+ "**/generated-sources/**",
87
+ "**/.kotlin/**",
88
+ "**/.dart_tool/**",
89
+ "**/.vs/**",
90
+ "**/.nuget/**",
91
+ "**/artifacts/**",
92
+ "**/publish/**",
93
+ "**/cmake-build-*/**",
94
+ "**/CMakeFiles/**",
95
+ "**/bazel-*/**",
96
+ "**/vcpkg_installed/**",
97
+ "**/.conan/**",
98
+ "**/Debug/**",
99
+ "**/Release/**",
100
+ "**/x64/**",
101
+ "**/.pio/**",
102
+ "**/release/**",
103
+ "**/*.app/**",
104
+ "**/*.asar",
105
+ "**/DerivedData/**",
106
+ "**/.build/**",
107
+ "**/.swiftpm/**",
108
+ "**/xcuserdata/**",
109
+ "**/Carthage/Build/**",
110
+ "**/SourcePackages/**",
111
+ "**/__history/**",
112
+ "**/__recovery/**",
113
+ "**/*.dcu",
114
+ "**/.composer/**",
115
+ "**/storage/framework/**",
116
+ "**/bootstrap/cache/**",
117
+ "**/.bundle/**",
118
+ "**/tmp/cache/**",
119
+ "**/public/assets/**",
120
+ "**/public/packs/**",
121
+ "**/.yardoc/**",
122
+ "**/coverage/**",
123
+ "**/htmlcov/**",
124
+ "**/.nyc_output/**",
125
+ "**/test-results/**",
126
+ "**/.coverage/**",
127
+ "**/.idea/**",
128
+ "**/logs/**",
129
+ "**/tmp/**",
130
+ "**/temp/**",
131
+ "**/_build/**",
132
+ "**/docs/_build/**",
133
+ "**/site/**"
134
+ ],
135
+ "languages": [],
136
+ "frameworks": [],
137
+ "maxFileSize": 1048576,
138
+ "extractDocstrings": true,
139
+ "trackCallSites": true,
140
+ "enableEmbeddings": true
141
+ }
@@ -0,0 +1,54 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+
8
+ jobs:
9
+ unit-tests:
10
+ name: Unit Tests
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+
15
+ - name: Setup Node.js
16
+ uses: actions/setup-node@v4
17
+ with:
18
+ node-version-file: '.nvmrc'
19
+ cache: yarn
20
+
21
+ - name: Install dependencies
22
+ run: yarn install --frozen-lockfile
23
+
24
+ - name: Run unit tests
25
+ run: yarn test:ci
26
+
27
+ e2e-tests:
28
+ name: E2E Tests
29
+ runs-on: ubuntu-latest
30
+ steps:
31
+ - uses: actions/checkout@v4
32
+
33
+ - name: Setup Node.js
34
+ uses: actions/setup-node@v4
35
+ with:
36
+ node-version-file: '.nvmrc'
37
+ cache: yarn
38
+
39
+ - name: Install dependencies
40
+ run: yarn install --frozen-lockfile
41
+
42
+ - name: Install Playwright Chromium
43
+ run: npx playwright install chromium
44
+
45
+ - name: Run E2E tests
46
+ run: yarn test:e2e
47
+
48
+ - name: Upload Playwright report
49
+ if: failure()
50
+ uses: actions/upload-artifact@v4
51
+ with:
52
+ name: playwright-report
53
+ path: playwright-report/
54
+ retention-days: 14
@@ -1,34 +1,19 @@
1
- .loginWrapper___sxUEn{display:flex;justify-content:center;font-weight:bold;text-align:center;padding:20px 0 30px}.innerWrapper___GQRkq{display:flex;flex-direction:column;justify-content:center;width:300px}.innerWrapper___GQRkq span{margin:10px 0}.button___QMZPu{padding:10px 30px;font-weight:normal;display:inline-flex;justify-content:center;margin:5px 0;border-radius:5px;cursor:pointer;background-position:12px center;background-repeat:no-repeat;background-size:16px;line-height:1.4;box-shadow:0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12)}.button___QMZPu:hover{box-shadow:0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)}.title___NnwWR{padding:15px 0 0 0}.loginCode___dDBup{margin-bottom:10px;font-size:15px}.loginCode___dDBup>div{margin-top:10px}.loginCode___dDBup span{display:inline-block;font-weight:normal;font-size:14px}.loginCode___dDBup .error___aCF7E{color:#e5424d;font-size:14px;font-weight:bold}.loginCode___dDBup .error___aCF7E a{color:#e5424d;text-decoration:underline}.primaryEmailButton___gH1fC{background-color:var(--color_input_background_color);border:1px solid var(--color_input_border_color);color:var(--color_input_text_color)}.buttonDisabled___T9tkn{background-color:var(--color_secondary_contrast);color:var(--color_input_text_color_disabled)}.pointerDisabled___qt_HK{pointer-events:none}.email_login_button___seiLi{display:flex;justify-content:space-between;padding:10px 9px;width:100%}.email_login_button___seiLi span{padding:0 0 0 8px;margin:0}.h2Styled___rfIKD{color:var(--color_gray_darker) !important;font-size:18px !important;font-weight:800 !important;display:flex;flex-direction:row}.h2Styled___rfIKD::before,.h2Styled___rfIKD::after{content:"";flex:1 1;border-bottom:1px solid var(--color_gray_dark);margin:auto}.h2Styled___rfIKD::before{margin-right:10px}.h2Styled___rfIKD::after{margin-left:10px}.input___QR9sA{display:flex;height:40px;margin-top:5px}.input___QR9sA input{border:1px solid var(--color_input_border_color);color:var(--color_input_text_color);background-color:var(--color_input_background_color);border-radius:5px;padding:5px;width:100%}.input___QR9sA input::placeholder{color:var(--color_text_input_hints)}.input___QR9sA button{margin-left:5px;background-color:var(--color_input_background_color);padding:0px 15px;border:1px solid var(--color_input_border_color);color:var(--color_text_dark);box-shadow:none;text-align:center;white-space:nowrap;font-weight:bold;border-radius:5px;cursor:pointer;display:flex;align-items:center;justify-content:center}
2
-
3
- .passwordlessWrapper___BRQ_s{height:450px;display:flex;justify-content:center;align-items:center;flex-direction:column}.passwordlessWrapper___BRQ_s .codeSent___NzYb_{margin-top:10px;color:#e5424d;font-weight:bold;font-size:14px}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi{text-align:center;font-weight:bold;height:100%;width:300px;display:flex;flex-direction:column;justify-content:center}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .logo___qNVrv{width:175px;align-self:center}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .logo___qNVrv.logoDark___VVYee{display:none}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .digits___Vu5iy{margin-top:15px;display:inline-block}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .codeInput___LnTZe{margin-top:20px;display:flex;justify-content:center}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .codeInput___LnTZe input{font-family:"Monaco", monospace, "OpenSans", Helvetica;height:56px;width:56px;font-size:42px;color:var(--color_input_text_color);background-color:var(--color_input_background_color);border:1px solid var(--color_input_border_color);border-radius:5px;padding:5px;display:inline-flex;text-transform:uppercase;text-align:center;margin:0 5px}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .error___wZflZ{margin-top:10px;color:#e5424d;font-size:14px}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .verify___IBgMl{margin-top:10px}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .verify___IBgMl .button___nBhtQ{padding:10px 30px;font-weight:normal;justify-content:center;margin:5px 0;border-radius:5px;cursor:pointer;color:var(--color_input_text_color);background-color:var(--color_input_background_color);border:1px solid var(--color_input_border_color);width:100%;font-size:1em}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .verify___IBgMl .link___f6fDT{color:var(--color_text_dark);text-decoration:underline;cursor:pointer}.passwordlessWrapper___BRQ_s .resend___Nma1U{margin:auto 0 0 0;font-weight:normal;font-size:14px}.passwordlessWrapper___BRQ_s .resend___Nma1U button{color:var(--color_text_dark);text-decoration:underline;cursor:pointer;display:inline;border:none;background-color:transparent;padding:0}.passwordlessWrapper___BRQ_s .resend___Nma1U .disabled___fMnzY{color:var(--color_text_med);cursor:not-allowed}html[data-theme='DARK'] .logoLight___vSbn_{display:none}html[data-theme='DARK'] .logoDark___VVYee{display:block !important}html[data-theme='LIGHT'] .logoDark___VVYee{display:none}html[data-theme='LIGHT'] .logoLight___vSbn_{display:block !important}
4
-
1
+ .loginWrapper___sxUEn{display:flex;justify-content:center;font-weight:bold;text-align:center;padding:20px 0 30px}.innerWrapper___GQRkq{display:flex;flex-direction:column;justify-content:center;width:300px}.innerWrapper___GQRkq span{margin:10px 0}.button___QMZPu{padding:10px 30px;font-weight:normal;display:inline-flex;justify-content:center;margin:5px 0;border-radius:5px;cursor:pointer;background-position:12px center;background-repeat:no-repeat;background-size:16px;line-height:1.4;box-shadow:0px 3px 1px -2px rgba(0,0,0,.2),0px 2px 2px 0px rgba(0,0,0,.14),0px 1px 5px 0px rgba(0,0,0,.12)}.button___QMZPu:hover{box-shadow:0px 2px 4px -1px rgba(0,0,0,.2),0px 4px 5px 0px rgba(0,0,0,.14),0px 1px 10px 0px rgba(0,0,0,.12)}.title___NnwWR{padding:15px 0 0 0}.loginCode___dDBup{margin-bottom:10px;font-size:15px}.loginCode___dDBup>div{margin-top:10px}.loginCode___dDBup span{display:inline-block;font-weight:normal;font-size:14px}.loginCode___dDBup .error___aCF7E{color:#e5424d;font-size:14px;font-weight:bold}.loginCode___dDBup .error___aCF7E a{color:#e5424d;text-decoration:underline}.primaryEmailButton___gH1fC{background-color:var(--color_input_background_color);border:1px solid var(--color_input_border_color);color:var(--color_input_text_color)}.buttonDisabled___T9tkn{background-color:var(--color_secondary_contrast);color:var(--color_input_text_color_disabled)}.pointerDisabled___qt_HK{pointer-events:none}.email_login_button___seiLi{display:flex;justify-content:space-between;padding:10px 9px;width:100%}.email_login_button___seiLi span{padding:0 0 0 8px;margin:0}.h2Styled___rfIKD{color:var(--color_gray_darker) !important;font-size:18px !important;font-weight:800 !important;display:flex;flex-direction:row}.h2Styled___rfIKD::before,.h2Styled___rfIKD::after{content:"";flex:1 1;border-bottom:1px solid var(--color_gray_dark);margin:auto}.h2Styled___rfIKD::before{margin-right:10px}.h2Styled___rfIKD::after{margin-left:10px}.input___QR9sA{display:flex;height:40px;margin-top:5px}.input___QR9sA input{border:1px solid var(--color_input_border_color);color:var(--color_input_text_color);background-color:var(--color_input_background_color);border-radius:5px;padding:5px;width:100%}.input___QR9sA input::placeholder{color:var(--color_text_input_hints)}.input___QR9sA button{margin-left:5px;background-color:var(--color_input_background_color);padding:0px 15px;border:1px solid var(--color_input_border_color);color:var(--color_text_dark);box-shadow:none;text-align:center;white-space:nowrap;font-weight:bold;border-radius:5px;cursor:pointer;display:flex;align-items:center;justify-content:center}
2
+ .passwordlessWrapper___BRQ_s{height:450px;display:flex;justify-content:center;align-items:center;flex-direction:column}.passwordlessWrapper___BRQ_s .codeSent___NzYb_{margin-top:10px;color:#e5424d;font-weight:bold;font-size:14px}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi{text-align:center;font-weight:bold;height:100%;width:300px;display:flex;flex-direction:column;justify-content:center}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .logo___qNVrv{width:175px;align-self:center}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .logo___qNVrv.logoDark___VVYee{display:none}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .digits___Vu5iy{margin-top:15px;display:inline-block}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .codeInput___LnTZe{margin-top:20px;display:flex;justify-content:center}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .codeInput___LnTZe input{font-family:"Monaco",monospace,"OpenSans",Helvetica;height:56px;width:56px;font-size:42px;color:var(--color_input_text_color);background-color:var(--color_input_background_color);border:1px solid var(--color_input_border_color);border-radius:5px;padding:5px;display:inline-flex;text-transform:uppercase;text-align:center;margin:0 5px}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .error___wZflZ{margin-top:10px;color:#e5424d;font-size:14px}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .verify___IBgMl{margin-top:10px}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .verify___IBgMl .button___nBhtQ{padding:10px 30px;font-weight:normal;justify-content:center;margin:5px 0;border-radius:5px;cursor:pointer;color:var(--color_input_text_color);background-color:var(--color_input_background_color);border:1px solid var(--color_input_border_color);width:100%;font-size:1em}.passwordlessWrapper___BRQ_s .innerWrapper___nRLDi .verify___IBgMl .link___f6fDT{color:var(--color_text_dark);text-decoration:underline;cursor:pointer}.passwordlessWrapper___BRQ_s .resend___Nma1U{margin:auto 0 0 0;font-weight:normal;font-size:14px}.passwordlessWrapper___BRQ_s .resend___Nma1U button{color:var(--color_text_dark);text-decoration:underline;cursor:pointer;display:inline;border:none;background-color:rgba(0,0,0,0);padding:0}.passwordlessWrapper___BRQ_s .resend___Nma1U .disabled___fMnzY{color:var(--color_text_med);cursor:not-allowed}html[data-theme=DARK] .logoLight___vSbn_{display:none}html[data-theme=DARK] .logoDark___VVYee{display:block !important}html[data-theme=LIGHT] .logoDark___VVYee{display:none}html[data-theme=LIGHT] .logoLight___vSbn_{display:block !important}
5
3
  .step-wrapper{padding:10px;margin:10px;border:1px solid var(--color_input_border_color);border-radius:5px}.summit-registration-lite{color:var(--color_text_dark);font-size:15px;font-smooth:auto !important;-moz-osx-font-smoothing:auto !important;-webkit-font-smoothing:auto !important}.summit-registration-lite input:-moz-placeholder,.summit-registration-lite input::-moz-placeholder{opacity:1}input{outline:none}.registration_company_dll .registration_company_dll_prefix__control{border:1px solid var(--color_primary) !important;border-radius:5px !important}
6
-
7
- .title___LksVm{font-weight:bold;cursor:pointer}.form___v5GIx{display:flex;flex-wrap:wrap;justify-content:space-between;margin:10px 0}.form___v5GIx div.fieldWrapper___Eoe61{width:48%;border-radius:5px;color:var(--color_input_text_color);border:1px solid var(--color_input_border_color);background-color:var(--color_input_background_color);height:36px;padding:5px 10px;display:flex;justify-content:space-between;align-items:center;margin-bottom:5px}.form___v5GIx div.fieldWrapper___Eoe61:first-of-type{width:100%}.form___v5GIx div.fieldWrapper___Eoe61 input{width:100%;background-color:transparent;border:none}.form___v5GIx div.fieldWrapper___Eoe61 input:focus-visible{outline:none}.form___v5GIx div.fieldWrapper___Eoe61 i{position:relative}.form___v5GIx div.fieldWrapper___Eoe61>div{width:100%}.form___v5GIx div.fieldWrapper___Eoe61>div:first-of-type{width:95%}.form___v5GIx input{width:48%;border-radius:5px;color:var(--color_input_text_color);border:1px solid var(--color_input_border_color);background-color:var(--color_input_background_color);font-size:16px;height:36px;padding:5px 10px;display:flex;justify-content:space-between;align-items:center;margin-bottom:5px;font-weight:bold}.form___v5GIx input::placeholder{color:var(--color_text_input_hints)}
8
-
9
- .form___zXb7s{display:flex;flex-wrap:wrap;justify-content:space-between;margin:10px 0}.form___zXb7s div.fieldWrapper___G4Wqw{width:100%;margin-bottom:5px}.form___zXb7s div.fieldWrapper___G4Wqw:first-of-type div.inputWrapper___Yz5zB{width:100%}.form___zXb7s div.fieldWrapper___G4Wqw .fieldRow___NfZdJ{justify-content:space-between;display:flex}.form___zXb7s div.fieldWrapper___G4Wqw div.inputWrapper___Yz5zB{width:48%}.form___zXb7s div.fieldWrapper___G4Wqw div.inputWrapper___Yz5zB.addressField___vmAQh{width:100%}.form___zXb7s div.lawpayWrapper___hpUBf{height:36px}.form___zXb7s div.dateWrapper___XDfqs{display:flex;justify-content:space-between}.form___zXb7s div.dateWrapper___XDfqs>div{width:48%}.form___zXb7s div.dateWrapper___XDfqs>div .dropdown___l3_bk{width:100%}.form___zXb7s div.dateWrapper___XDfqs>div .dropdown___l3_bk>div{border:1px solid var(--color_primary);width:100%}.form___zXb7s div.inputWrapper___Yz5zB{display:flex;border-radius:5px;border:1px solid var(--color_primary);height:36px;padding:5px 10px;justify-content:space-between;align-items:center}.form___zXb7s div.inputWrapper___Yz5zB iframe{height:inherit;width:inherit}.form___zXb7s div.inputWrapper___Yz5zB input{width:100%;background-color:transparent;border:none;padding:0;font-size:16px;display:flex;justify-content:space-between;align-items:center}.form___zXb7s div.inputWrapper___Yz5zB input::placeholder{color:var(--color_text_input_hints);font-size:16px}.form___zXb7s div.inputWrapper___Yz5zB input:focus-visible{outline:none}.form___zXb7s div.inputWrapper___Yz5zB i{position:relative}.form___zXb7s div.inputWrapper___Yz5zB>div{width:100%}.form___zXb7s div.inputWrapper___Yz5zB>div:first-of-type{width:95%}.form___zXb7s div.fieldError___Igq3U{margin-top:5px;margin-bottom:5px;color:#e5424d;font-size:14px;line-height:1.5}.form___zXb7s div.fieldError___Igq3U::before{font-family:FontAwesome;content:'\f071';margin-right:5px}
10
-
11
- .form___DoT3x{display:flex;flex-wrap:wrap;flex-direction:column;justify-content:space-between;margin:10px 0}.form___DoT3x div.fieldWrapper___wa1Ks{margin-top:15px}.form___DoT3x div.fieldWrapper___wa1Ks:first-of-type{width:100%}.form___DoT3x div.inputWrapper___CbXhF{display:flex;border-radius:5px;border:1px solid var(--color_input_border_color);background-color:var(--color_input_background_color);height:44.4px;padding:5px 10px;justify-content:space-between;align-items:center;box-shadow:0px 1px 1px rgba(0,0,0,0.03),0px 3px 6px rgba(0,0,0,0.02)}.form___DoT3x div.inputWrapper___CbXhF input{width:100%;color:var(--color_input_text_color);background-color:var(--color_input_background_color);border:none;padding:0;font-size:16px;display:flex;justify-content:space-between;align-items:center}.form___DoT3x div.inputWrapper___CbXhF input::placeholder{color:var(--color_text_input_hints);font-size:16px}.form___DoT3x div.inputWrapper___CbXhF input:-webkit-autofill,.form___DoT3x div.inputWrapper___CbXhF input :-webkit-autofill:focus{color:var(--color_input_text_color) !important;background-color:var(--color_input_background_color) !important;-webkit-box-shadow:0 0 0px 1000px var(--color_input_background_color) inset;-webkit-text-fill-color:var(--color_input_text_color)}.form___DoT3x div.inputWrapper___CbXhF input:focus-visible{outline:none}.form___DoT3x div.inputWrapper___CbXhF i{position:relative}.form___DoT3x div.inputWrapper___CbXhF>div{width:100%}.form___DoT3x div.inputWrapper___CbXhF>div:first-of-type{width:95%}.form___DoT3x div.fieldError___QrMYW{margin-top:5px;margin-bottom:5px;color:#e5424d;font-size:14px;line-height:1.5}.form___DoT3x div.fieldError___QrMYW::before{font-family:FontAwesome;content:'\f071';margin-right:5px}
12
-
13
- .title___ECoNz{font-weight:bold;cursor:pointer;display:flex;justify-content:space-between}.title___ECoNz div{font-weight:normal}.form___lDFka{display:flex;flex-wrap:wrap;justify-content:space-between;margin:10px 0 0}.form___lDFka div.fieldWrapper___Mi_nL{width:48%;margin-bottom:5px}.form___lDFka div.fieldWrapperRadio___x18VG{width:100%;margin-bottom:10px}.form___lDFka div.fieldWrapperRadio___x18VG label{display:inline-block;margin-bottom:5px}.form___lDFka div.fieldWrapperRadio___x18VG>div>div{padding-left:0px !important}.form___lDFka div.inputWrapper___PEQFR{display:flex;border-radius:5px;border:1px solid var(--color_input_border_color);background-color:var(--color_input_background_color);height:36px;padding:5px 10px;justify-content:space-between;align-items:center}.form___lDFka div.inputWrapper___PEQFR input{width:100%;background-color:transparent;color:var(--color_input_text_color);border:none;padding:0;font-size:16px;display:flex;justify-content:space-between;align-items:center}.form___lDFka div.inputWrapper___PEQFR input::placeholder{color:var(--color_text_input_hints);font-size:16px}.form___lDFka div.inputWrapper___PEQFR input:focus-visible{outline:none}.form___lDFka div.inputWrapper___PEQFR .readOnly___WRazF{opacity:0.6;cursor:default}.form___lDFka div.fieldError___ksJVe{margin-top:5px;margin-bottom:5px;color:#e5424d;font-size:14px;line-height:1.5;justify-content:left !important}.form___lDFka div.fieldError___ksJVe::before{font-family:FontAwesome;content:'\f071';margin-right:5px}.form___lDFka .fieldWrapperRadio___x18VG>div{display:flex;flex-direction:row}.moreInfo___cQYdZ{display:inline-block;margin-top:10px}.moreInfoTooltip___lslgT{max-width:280px}.ticketQuantityNotice___L6gis{margin:10px 0 0 !important}.formErrors___dQQMe{margin-top:10px}.formErrors___dQQMe div+div{margin-top:10px}
14
-
15
- .title___DNZyl{font-weight:bold;cursor:pointer;display:flex;justify-content:space-between}.summary___quWdZ{text-align:right}.promoCode___bqTCw{display:inline-flex}.promoCode___bqTCw abbr{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:10ch}.crossOut___QZ7dy{text-decoration:line-through}.discount___sEK_Q{color:red}.promocodeError___oxk4p{margin-top:10px;color:red}.promocodeError___oxk4p::before{font-family:FontAwesome;content:'\f071';margin-right:5px}.taxes___fe8oJ{display:inline-flex}.taxes___fe8oJ abbr{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:15ch}.promo___F8lPO{font-weight:bold;display:flex;justify-content:flex-end}.form___aoo7w{display:flex;gap:10px;margin-top:10px}.dropdown____HWg0{flex:1 1 auto;min-width:0}.quantity___SIEQZ{flex-shrink:0}.quantity___SIEQZ input,.quantity___SIEQZ button{height:36px;text-align:center;border:1px solid var(--color_input_border_color)}.quantity___SIEQZ input{padding:0 8px;width:48px !important}.quantity___SIEQZ input,.quantity___SIEQZ input:read-only{border:1px solid var(--color_input_border_color);color:var(--color_input_text_color);background-color:var(--color_input_background_color)}.quantity___SIEQZ button{display:flex;align-items:center}.quantity___SIEQZ button:disabled,.quantity___SIEQZ button:disabled:hover{opacity:0.65;background:#dedede;border-color:#bebebe}.soldOut___Hatfr{height:36px;padding:0 16px;line-height:34px;font-weight:700px;background:#dedede;border:solid 1px #bebebe;border-radius:5px;opacity:0.65;font-weight:700;flex-shrink:0}.moreInfo___LmwOe{display:inline-block;margin-top:10px}.moreInfoTooltip___nOBf1{max-width:280px}.inPersonDisclaimer___PXGTz{margin-top:15px;padding-right:10px;max-height:150px;overflow-y:auto}
16
-
17
- .placeholder___pcdCn{border-radius:5px;width:100%;border:1px solid var(--color_input_border_color);background-color:var(--color_input_background_color);padding:5px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;height:36px}.placeholder___pcdCn i{padding:2px 5px;border-left:1px solid var(--color_primary)}.placeholder___pcdCn .selectedTicket___qkbpH{flex:1;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.inPersonDisclaimer___z_DzO{padding:4px}.dropdown___mfbPG{margin-top:10px;border-radius:5px;width:100%;border:1px solid var(--color_input_border_color);color:var(--color_input_text_color);background-color:var(--color_input_background_color);cursor:pointer}.dropdown___mfbPG div{padding:5px}.dropdown___mfbPG div:hover{border-radius:5px;background-color:var(--color_primary50);color:var(--color_input_text_color)}.soldOut___rBLC0,.soldOut___rBLC0:hover,.soldOut___rBLC0:focus{color:inherit !important;background-color:#dedede !important;opacity:0.65;cursor:not-allowed}
18
-
19
- .promoCodeWrapper___aw3Zx{padding-top:16px;display:flex;justify-content:space-between;align-items:baseline;flex-wrap:wrap;gap:15px}.promoCodeWrapper___aw3Zx span{color:var(--color_text_dark);font-size:14px;font-weight:600;line-height:140%;width:30%}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET{display:flex;align-items:center;position:relative;flex:1;height:33px;width:50%;min-width:220px}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET input{display:inline-flex;padding:13px 8px;width:70%;height:100%;color:var(--color_input_text_color);background-color:var(--color_input_background_color);border:1.5px solid var(--color_input_border_color);border-radius:4px 0px 0px 4px}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET input.promoCodeActive___j7xnn{padding-right:25px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET .codeButtonWrapper___jVZh5{display:flex;align-items:center;width:30%;height:100%;background-color:#818181;border-radius:0px 4px 4px 0px}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET .codeButtonWrapper___jVZh5.noCode___YUmVy{background-color:#CFCFCF;cursor:not-allowed}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET .codeButtonWrapper___jVZh5 button{color:#fff;font-size:14px;font-style:normal;font-weight:600;line-height:120%;letter-spacing:-0.14px;width:100%;height:100%;border:none;background-color:transparent}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET .appliedCodeIcon___pa3B4{position:absolute;left:60%}.promoCodeWrapper___aw3Zx .moreInfo___Ru3Rv{display:inline-block}@media screen and (max-width: 540px){.promoCodeWrapper___aw3Zx span{width:100%}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET{width:100%}.promoCodeWrapper___aw3Zx .moreInfo___Ru3Rv{width:100%}}.moreInfoTooltip___eaYWm{max-width:280px}
20
-
21
- .button___MZBIY{font-weight:bold !important;font-size:1em !important;cursor:pointer !important;border:1px solid var(--color_input_border_color) !important;color:var(--color_input_text_color) !important;background-color:var(--color_input_background_color) !important}.button___MZBIY[disabled]{background-color:var(--color_secondary_contrast) !important}.button___MZBIY:hover{color:var(--color_input_text_color) !important}.button___MZBIY:active,.button___MZBIY:focus{color:var(--color_input_text_color) !important}.outerWrapper___XRnaq{padding:10px 0px 10px 10px;margin:10px}.outerWrapper___XRnaq .innerWrapper___LFsOH{display:flex;justify-content:space-between;align-items:center}.outerWrapper___XRnaq .innerWrapper___LFsOH span{font-size:14px}.outerWrapper___XRnaq .innerWrapper___LFsOH .registration___jdf6T{cursor:pointer;color:var(--color_primary);text-decoration:underline}.outerWrapper___XRnaq .innerWrapper___LFsOH .actions___Gsf0y{display:flex}.outerWrapper___XRnaq .innerWrapper___LFsOH .actions___Gsf0y button{margin-left:10px}
22
-
23
- .button___XMN8a{font-weight:bold !important;font-size:1em !important;cursor:pointer !important;border:1px solid var(--color_input_border_color) !important;color:var(--color_input_text_color) !important;background-color:var(--color_input_background_color) !important}.button___XMN8a[disabled]{background-color:var(--color_secondary_contrast) !important}.button___XMN8a:hover{color:var(--color_input_text_color) !important}.button___XMN8a:active,.button___XMN8a:focus{color:var(--color_input_text_color) !important}.wrapper___Jd5Xg{height:370px;display:flex;flex-direction:column;align-items:center;justify-content:space-around;margin:15px 0;padding:15px;border-radius:5px;border:1px solid var(--color_input_border_color);text-align:center}.wrapper___Jd5Xg .circle___lcN86{margin-bottom:10px;background-color:var(--color_input_background_color);border-radius:50px;border:1px solid var(--color_text_dark);padding:10px}.wrapper___Jd5Xg .circle___lcN86 i{font-size:36px;color:var(--color_text_dark)}.wrapper___Jd5Xg .complete___HAHzl{font-weight:bold;font-size:20px}.wrapper___Jd5Xg .actions___jJdPX{display:flex}.wrapper___Jd5Xg button{margin:10px 5px 0 5px;background-color:var(--color_button_background_color) !important;color:var(--color_button_color) !important}.wrapper___Jd5Xg span{font-size:14px}.wrapper___Jd5Xg a{color:var(--color_text_dark);text-decoration:underline}.wrapper___Jd5Xg .footer___FL9TW{font-size:14px;font-weight:normal}
24
-
4
+ .title___LksVm{font-weight:bold}.form___v5GIx{display:flex;flex-wrap:wrap;justify-content:space-between;margin:10px 0}.form___v5GIx div.fieldWrapper___Eoe61{width:48%;border-radius:5px;color:var(--color_input_text_color);border:1px solid var(--color_input_border_color);background-color:var(--color_input_background_color);height:36px;padding:5px 10px;display:flex;justify-content:space-between;align-items:center;margin-bottom:5px}.form___v5GIx div.fieldWrapper___Eoe61:first-of-type{width:100%}.form___v5GIx div.fieldWrapper___Eoe61 input{width:100%;background-color:rgba(0,0,0,0);border:none}.form___v5GIx div.fieldWrapper___Eoe61 input:focus-visible{outline:none}.form___v5GIx div.fieldWrapper___Eoe61 i{position:relative}.form___v5GIx div.fieldWrapper___Eoe61>div{width:100%}.form___v5GIx div.fieldWrapper___Eoe61>div:first-of-type{width:95%}.form___v5GIx input{width:48%;border-radius:5px;color:var(--color_input_text_color);border:1px solid var(--color_input_border_color);background-color:var(--color_input_background_color);font-size:16px;height:36px;padding:5px 10px;display:flex;justify-content:space-between;align-items:center;margin-bottom:5px;font-weight:bold}.form___v5GIx input::placeholder{color:var(--color_text_input_hints)}
5
+ .form___zXb7s{display:flex;flex-wrap:wrap;justify-content:space-between;margin:10px 0}.form___zXb7s div.fieldWrapper___G4Wqw{width:100%;margin-bottom:5px}.form___zXb7s div.fieldWrapper___G4Wqw:first-of-type div.inputWrapper___Yz5zB{width:100%}.form___zXb7s div.fieldWrapper___G4Wqw .fieldRow___NfZdJ{justify-content:space-between;display:flex}.form___zXb7s div.fieldWrapper___G4Wqw div.inputWrapper___Yz5zB{width:48%}.form___zXb7s div.fieldWrapper___G4Wqw div.inputWrapper___Yz5zB.addressField___vmAQh{width:100%}.form___zXb7s div.lawpayWrapper___hpUBf{height:36px}.form___zXb7s div.dateWrapper___XDfqs{display:flex;justify-content:space-between}.form___zXb7s div.dateWrapper___XDfqs>div{width:48%}.form___zXb7s div.dateWrapper___XDfqs>div .dropdown___l3_bk{width:100%}.form___zXb7s div.dateWrapper___XDfqs>div .dropdown___l3_bk>div{border:1px solid var(--color_primary);width:100%}.form___zXb7s div.inputWrapper___Yz5zB{display:flex;border-radius:5px;border:1px solid var(--color_primary);height:36px;padding:5px 10px;justify-content:space-between;align-items:center}.form___zXb7s div.inputWrapper___Yz5zB iframe{height:inherit;width:inherit}.form___zXb7s div.inputWrapper___Yz5zB input{width:100%;background-color:rgba(0,0,0,0);border:none;padding:0;font-size:16px;display:flex;justify-content:space-between;align-items:center}.form___zXb7s div.inputWrapper___Yz5zB input::placeholder{color:var(--color_text_input_hints);font-size:16px}.form___zXb7s div.inputWrapper___Yz5zB input:focus-visible{outline:none}.form___zXb7s div.inputWrapper___Yz5zB i{position:relative}.form___zXb7s div.inputWrapper___Yz5zB>div{width:100%}.form___zXb7s div.inputWrapper___Yz5zB>div:first-of-type{width:95%}.form___zXb7s div.fieldError___Igq3U{margin-top:5px;margin-bottom:5px;color:#e5424d;font-size:14px;line-height:1.5}.form___zXb7s div.fieldError___Igq3U::before{font-family:FontAwesome;content:"";margin-right:5px}
6
+ .form___DoT3x{display:flex;flex-wrap:wrap;flex-direction:column;justify-content:space-between;margin:10px 0}.form___DoT3x div.fieldWrapper___wa1Ks{margin-top:15px}.form___DoT3x div.fieldWrapper___wa1Ks:first-of-type{width:100%}.form___DoT3x div.inputWrapper___CbXhF{display:flex;border-radius:5px;border:1px solid var(--color_input_border_color);background-color:var(--color_input_background_color);height:44.4px;padding:5px 10px;justify-content:space-between;align-items:center;box-shadow:0px 1px 1px rgba(0,0,0,.03),0px 3px 6px rgba(0,0,0,.02)}.form___DoT3x div.inputWrapper___CbXhF input{width:100%;color:var(--color_input_text_color);background-color:var(--color_input_background_color);border:none;padding:0;font-size:16px;display:flex;justify-content:space-between;align-items:center}.form___DoT3x div.inputWrapper___CbXhF input::placeholder{color:var(--color_text_input_hints);font-size:16px}.form___DoT3x div.inputWrapper___CbXhF input:-webkit-autofill,.form___DoT3x div.inputWrapper___CbXhF input :-webkit-autofill:focus{color:var(--color_input_text_color) !important;background-color:var(--color_input_background_color) !important;-webkit-box-shadow:0 0 0px 1000px var(--color_input_background_color) inset;-webkit-text-fill-color:var(--color_input_text_color)}.form___DoT3x div.inputWrapper___CbXhF input:focus-visible{outline:none}.form___DoT3x div.inputWrapper___CbXhF i{position:relative}.form___DoT3x div.inputWrapper___CbXhF>div{width:100%}.form___DoT3x div.inputWrapper___CbXhF>div:first-of-type{width:95%}.form___DoT3x div.fieldError___QrMYW{margin-top:5px;margin-bottom:5px;color:#e5424d;font-size:14px;line-height:1.5}.form___DoT3x div.fieldError___QrMYW::before{font-family:FontAwesome;content:"";margin-right:5px}
7
+ .title___ECoNz{font-weight:bold;display:flex;justify-content:space-between}.title___ECoNz div{font-weight:normal}.form___lDFka{display:flex;flex-wrap:wrap;justify-content:space-between;margin:10px 0 0}.form___lDFka div.fieldWrapper___Mi_nL{width:48%;margin-bottom:5px}.form___lDFka div.fieldWrapperRadio___x18VG{width:100%;margin-top:10px;margin-bottom:10px}.form___lDFka div.fieldWrapperRadio___x18VG label{display:inline-block;margin-bottom:5px;font-weight:600;font-size:14px;color:var(--color_text_dark)}.form___lDFka div.fieldWrapperRadio___x18VG>div>div{padding-top:4px;padding-left:5px !important;margin-left:0 !important;margin-right:16px;float:none !important;display:inline-flex;align-items:center;gap:4px}.form___lDFka div.fieldWrapperRadio___x18VG>div>div .form-check-label___MgGSC{font-weight:normal;font-size:14px}.form___lDFka div.inputWrapper___PEQFR{display:flex;border-radius:5px;border:1px solid var(--color_input_border_color);background-color:var(--color_input_background_color);height:36px;padding:5px 10px;justify-content:space-between;align-items:center}.form___lDFka div.inputWrapper___PEQFR input{width:100%;background-color:rgba(0,0,0,0);color:var(--color_input_text_color);border:none;padding:0;font-size:16px;display:flex;justify-content:space-between;align-items:center}.form___lDFka div.inputWrapper___PEQFR input::placeholder{color:var(--color_text_input_hints);font-size:16px}.form___lDFka div.inputWrapper___PEQFR input:focus-visible{outline:none}.form___lDFka div.inputWrapper___PEQFR .readOnly___WRazF{opacity:.6;cursor:default}.form___lDFka div.fieldError___ksJVe{margin-top:5px;margin-bottom:5px;color:#e5424d;font-size:14px;line-height:1.5;justify-content:left !important}.form___lDFka div.fieldError___ksJVe::before{font-family:FontAwesome;content:"";margin-right:5px}.form___lDFka .fieldWrapperRadio___x18VG>div{display:flex;flex-direction:row;flex-wrap:wrap;align-items:center}.moreInfo___cQYdZ{display:inline-block;margin-top:10px}.moreInfoTooltip___lslgT{max-width:280px}.ticketQuantityNotice___L6gis{margin:10px 0 0 !important}.formErrors___dQQMe{margin-top:10px}.formErrors___dQQMe div+div{margin-top:10px}
8
+ .title___DNZyl{font-weight:bold;display:flex;justify-content:space-between}.summary___quWdZ{text-align:right}.promoCode___bqTCw{display:inline-flex}.promoCode___bqTCw abbr{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:10ch}.crossOut___QZ7dy{text-decoration:line-through}.discount___sEK_Q{color:red}.taxes___fe8oJ{display:inline-flex}.taxes___fe8oJ abbr{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:15ch}.promo___F8lPO{font-weight:bold;display:flex;justify-content:flex-end}.form___aoo7w{display:flex;gap:10px;margin-top:10px}.dropdown____HWg0{flex:1 1 auto;min-width:0}.quantity___SIEQZ{flex-shrink:0}.quantity___SIEQZ input,.quantity___SIEQZ button{height:36px;text-align:center;border:1px solid var(--color_input_border_color)}.quantity___SIEQZ input{padding:0 8px;width:48px !important}.quantity___SIEQZ input,.quantity___SIEQZ input:read-only{border:1px solid var(--color_input_border_color);color:var(--color_input_text_color);background-color:var(--color_input_background_color)}.quantity___SIEQZ button{display:flex;align-items:center}.quantity___SIEQZ button:disabled,.quantity___SIEQZ button:disabled:hover{opacity:.65;background:#dedede;border-color:#bebebe}.soldOut___Hatfr{height:36px;padding:0 16px;line-height:34px;font-weight:700px;background:#dedede;border:solid 1px #bebebe;border-radius:5px;opacity:.65;font-weight:700;flex-shrink:0}.moreInfo___LmwOe{display:inline-block;margin-top:4px;font-size:12px}.moreInfoTooltip___nOBf1{max-width:280px}.inPersonDisclaimer___PXGTz{margin-top:15px;padding-right:10px;max-height:150px;overflow-y:auto}
9
+ .placeholder___pcdCn{border-radius:5px;width:100%;border:1px solid var(--color_input_border_color);background-color:var(--color_input_background_color);padding:5px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;height:36px}.placeholder___pcdCn i{padding:2px 5px;border-left:1px solid var(--color_primary)}.placeholder___pcdCn .selectedTicket___qkbpH{flex:1;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.inPersonDisclaimer___z_DzO{padding:4px}.dropdown___mfbPG{margin-top:10px;border-radius:5px;width:100%;border:1px solid var(--color_input_border_color);color:var(--color_input_text_color);background-color:var(--color_input_background_color);cursor:pointer}.dropdown___mfbPG div{padding:5px}.dropdown___mfbPG div:hover{border-radius:5px;background-color:var(--color_primary50);color:var(--color_input_text_color)}.soldOut___rBLC0,.soldOut___rBLC0:hover,.soldOut___rBLC0:focus{color:inherit !important;background-color:#dedede !important;opacity:.65;cursor:not-allowed}
10
+ .promoCodeWrapper___aw3Zx{padding-top:16px;display:flex;flex-direction:column;gap:8px}.promoCodeWrapper___aw3Zx span{color:var(--color_text_dark);font-size:14px;font-weight:600;line-height:140%}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET{display:flex;align-items:center;position:relative;height:36px;max-width:400px}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET input{display:inline-flex;padding:13px 8px;width:70%;height:100%;color:var(--color_input_text_color);background-color:var(--color_input_background_color);border:1px solid var(--color_input_border_color);border-right:none;border-radius:5px 0px 0px 5px}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET input.promoCodeActive___j7xnn{padding-right:25px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;color:var(--color_gray_dark, #333) !important;background-color:var(--color_gray_lighter, #f5f5f5) !important}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET .codeButtonWrapper___jVZh5{display:flex;align-items:center;width:30%;height:100%;background-color:#818181;border-radius:0px 5px 5px 0px}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET .codeButtonWrapper___jVZh5.noCode___YUmVy{background-color:#cfcfcf;cursor:not-allowed}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET .codeButtonWrapper___jVZh5 button{color:#fff;font-size:14px;font-style:normal;font-weight:600;line-height:120%;letter-spacing:-0.14px;width:100%;height:100%;border:none;background-color:rgba(0,0,0,0)}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET .statusIcon___l1uV0{position:absolute;right:32%;font-size:16px;font-weight:bold;line-height:1}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET .valid___pDUq_{color:#92cd76}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET .invalid___UO9dX{color:#d32f2f}.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET .spinner___SKEJg{width:16px;height:16px;border:2px solid var(--color_gray_light);border-top-color:var(--color_primary);border-radius:50%;animation:spin___wP5uK .6s linear infinite;font-size:0}@keyframes spin___wP5uK{to{transform:rotate(360deg)}}.promoCodeWrapper___aw3Zx .moreInfo___Ru3Rv{display:inline-block;margin-top:-4px;font-size:12px}@media screen and (max-width: 540px){.promoCodeWrapper___aw3Zx .promoCodeInput___rDiET{max-width:100%}.promoCodeWrapper___aw3Zx .moreInfo___Ru3Rv{display:none}}.moreInfoTooltip___eaYWm{max-width:280px}
11
+ .notice____Pa2z{margin-top:10px;padding:10px 12px;border-radius:4px;font-size:13px}.notice____Pa2z>div+div{margin-top:1px}.error___WzZms{background-color:#fff0f0;border:1px solid #ffcdd2;color:#d32f2f}.info___WFfzs{background-color:#f0f7ff;border:1px solid #b8daff;color:inherit}.icon___YWZms{margin-right:6px}
12
+ .button___MZBIY[disabled]{background-color:var(--color_secondary_contrast) !important}.button___MZBIY{font-weight:bold !important;font-size:1em !important;cursor:pointer !important;border:1px solid var(--color_input_border_color) !important;color:var(--color_input_text_color) !important;background-color:var(--color_input_background_color) !important}.button___MZBIY:hover{color:var(--color_input_text_color) !important}.button___MZBIY:active,.button___MZBIY:focus{color:var(--color_input_text_color) !important}.outerWrapper___XRnaq{padding:10px 0px 10px 10px;margin:10px}.outerWrapper___XRnaq .innerWrapper___LFsOH{display:flex;justify-content:space-between;align-items:center}.outerWrapper___XRnaq .innerWrapper___LFsOH span{font-size:14px}.outerWrapper___XRnaq .innerWrapper___LFsOH .registration___jdf6T{cursor:pointer;color:var(--color_primary);text-decoration:underline}.outerWrapper___XRnaq .innerWrapper___LFsOH .actions___Gsf0y{display:flex}.outerWrapper___XRnaq .innerWrapper___LFsOH .actions___Gsf0y button{margin-left:10px}
13
+ .button___XMN8a[disabled]{background-color:var(--color_secondary_contrast) !important}.button___XMN8a{font-weight:bold !important;font-size:1em !important;cursor:pointer !important;border:1px solid var(--color_input_border_color) !important;color:var(--color_input_text_color) !important;background-color:var(--color_input_background_color) !important}.button___XMN8a:hover{color:var(--color_input_text_color) !important}.button___XMN8a:active,.button___XMN8a:focus{color:var(--color_input_text_color) !important}.wrapper___Jd5Xg{height:370px;display:flex;flex-direction:column;align-items:center;justify-content:space-around;margin:15px 0;padding:15px;border-radius:5px;border:1px solid var(--color_input_border_color);text-align:center}.wrapper___Jd5Xg .circle___lcN86{margin-bottom:10px;background-color:var(--color_input_background_color);border-radius:50px;border:1px solid var(--color_text_dark);padding:10px}.wrapper___Jd5Xg .circle___lcN86 i{font-size:36px;color:var(--color_text_dark)}.wrapper___Jd5Xg .complete___HAHzl{font-weight:bold;font-size:20px}.wrapper___Jd5Xg .actions___jJdPX{display:flex}.wrapper___Jd5Xg button{margin:10px 5px 0 5px;background-color:var(--color_button_background_color) !important;color:var(--color_button_color) !important}.wrapper___Jd5Xg span{font-size:14px}.wrapper___Jd5Xg a{color:var(--color_text_dark);text-decoration:underline}.wrapper___Jd5Xg .footer___FL9TW{font-size:14px;font-weight:normal}
25
14
  .ticketOwnedWrapper___nhkDY{margin:10px}.ticketOwnedWrapper___nhkDY span{display:block}.alert___c49oP{margin:0 !important}
26
-
27
15
  .noAllowedWrapper___k52of{margin:10px}.alert___McKm0{margin:0 !important}
28
-
29
16
  .ticketTaxesErrorWrapper___ldztd{margin:10px;min-height:150px;display:flex;flex-direction:column}.ticketTaxesErrorWrapper___ldztd button{width:100px;align-self:center;margin:10px 5px 0 5px}.alert___AM17V{margin:0 !important;text-align:center;padding:30px}
30
-
31
17
  #modal___G3Cmq{padding:100px 0;overflow-y:auto}.modalContent___lIaqw{overflow:initial}@media screen and (min-width: 769px){.modalContent___lIaqw{width:720px}}.outerWrapper___OWXyi{border:1px solid var(--color_input_border_color);background-color:var(--color_background_light);border-radius:5px}.innerWrapper___mIrBF{padding:10px}.title___Tbvkl{display:flex;justify-content:center;align-items:center;border-bottom:1px solid var(--color_input_border_color);margin:0px -10px;padding:0px 15px 5px}.title___Tbvkl i{cursor:pointer;margin-left:auto}.title___Tbvkl span{width:100%;font-weight:bold;font-size:18px;text-align:center;color:var(--color_text_dark)}
32
18
 
33
-
34
19
  /*# sourceMappingURL=index.css.map*/
@@ -1 +1 @@
1
- {"version":3,"file":"./components/index.css","mappings":";;;;AAAA,cACE,YAAa,CACb,WAAY,CACZ,gDAAiD,CACjD,iBAAkB,CACnB,0BAGC,4BAA6B,CAC7B,cAAe,CAIf,2BAA4B,CAC5B,uCAAwC,CACxC,sCAAuC,CARzC,mGAYI,SAAU,CACX,MAID,YAAa,CACd,oEAIG,gDAAiD,CACjD,4BAA6B","sources":["webpack://summit-registration-lite/./src/styles/styles.scss"],"sourcesContent":[".step-wrapper {\n padding: 10px;\n margin: 10px;\n border: 1px solid var(--color_input_border_color);\n border-radius: 5px;\n}\n\n.summit-registration-lite {\n color: var(--color_text_dark);\n font-size: 15px;\n\n // Font smoothing is deprecated, so let's disable it.\n // This also helps w/ consistent font rendering between our app and the Stripe elements.\n font-smooth: auto !important;\n -moz-osx-font-smoothing: auto !important;\n -webkit-font-smoothing: auto !important;\n\n input:-moz-placeholder,\n input::-moz-placeholder {\n opacity: 1;\n }\n}\n\ninput {\n outline: none;\n}\n\n.registration_company_dll {\n .registration_company_dll_prefix__control {\n border: 1px solid var(--color_primary) !important;\n border-radius: 5px !important;;\n }\n}\n"],"names":[],"sourceRoot":""}
1
+ {"version":3,"file":"./components/index.css","mappings":";;AAAA,cACE,aACA,YACA,iDACA,kBAGF,0BACE,6BACA,eAIA,4BACA,wCACA,uCAEA,mGAEE,UAIJ,MACE,aAIA,oEACE,iDACA,6B","sources":["webpack://summit-registration-lite/./src/styles/styles.scss"],"sourcesContent":[".step-wrapper {\n padding: 10px;\n margin: 10px;\n border: 1px solid var(--color_input_border_color);\n border-radius: 5px;\n}\n\n.summit-registration-lite {\n color: var(--color_text_dark);\n font-size: 15px;\n\n // Font smoothing is deprecated, so let's disable it.\n // This also helps w/ consistent font rendering between our app and the Stripe elements.\n font-smooth: auto !important;\n -moz-osx-font-smoothing: auto !important;\n -webkit-font-smoothing: auto !important;\n\n input:-moz-placeholder,\n input::-moz-placeholder {\n opacity: 1;\n }\n}\n\ninput {\n outline: none;\n}\n\n.registration_company_dll {\n .registration_company_dll_prefix__control {\n border: 1px solid var(--color_primary) !important;\n border-radius: 5px !important;;\n }\n}\n"],"names":[],"sourceRoot":""}