@ptcwebops/ptcw-design 6.3.44-beta → 6.3.46-beta
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/global-92142fb4.js +28 -0
- package/dist/cjs/loader.cjs.js +1 -0
- package/dist/cjs/ptc-filter-dropdown_4.cjs.entry.js +23 -5
- package/dist/cjs/ptc-filter-level-theater.cjs.entry.js +1 -1
- package/dist/cjs/ptc-product-list.cjs.entry.js +4 -0
- package/dist/cjs/ptc-quote.cjs.entry.js +1 -1
- package/dist/cjs/ptc-theater-video-modal.cjs.entry.js +1 -1
- package/dist/cjs/ptcw-design.cjs.js +1 -0
- package/dist/collection/collection-manifest.json +2 -1
- package/dist/collection/components/ptc-filter-dropdown/ptc-filter-dropdown.js +22 -4
- package/dist/collection/components/ptc-filter-level-theater/ptc-filter-level-theater.css +1 -0
- package/dist/collection/components/ptc-product-list/ptc-product-list.js +4 -0
- package/dist/collection/components/ptc-quote/ptc-quote.js +1 -1
- package/dist/collection/components/ptc-theater-video/ptc-theater-video.css +2 -0
- package/dist/collection/components/ptc-theater-video-modal/ptc-theater-video-modal.css +3 -0
- package/dist/collection/global/global.js +3 -0
- package/dist/collection/utils/fef-logger.js +23 -0
- package/dist/custom-elements/index.js +57 -8
- package/dist/esm/global-c58db4a9.js +26 -0
- package/dist/esm/loader.js +1 -0
- package/dist/esm/ptc-filter-dropdown_4.entry.js +23 -5
- package/dist/esm/ptc-filter-level-theater.entry.js +1 -1
- package/dist/esm/ptc-product-list.entry.js +4 -0
- package/dist/esm/ptc-quote.entry.js +1 -1
- package/dist/esm/ptc-theater-video-modal.entry.js +1 -1
- package/dist/esm/ptcw-design.js +1 -0
- package/dist/ptcw-design/p-1feb2812.entry.js +1 -0
- package/dist/ptcw-design/{p-f8b34e78.entry.js → p-410f98c6.entry.js} +1 -1
- package/dist/ptcw-design/p-66ecd7b9.entry.js +1 -0
- package/dist/ptcw-design/p-a36f147a.js +1 -0
- package/dist/ptcw-design/{p-ad673338.entry.js → p-d9ee43ba.entry.js} +1 -1
- package/dist/ptcw-design/ptcw-design.css +1 -1
- package/dist/ptcw-design/ptcw-design.esm.js +1 -1
- package/dist/types/components/ptc-filter-dropdown/ptc-filter-dropdown.d.ts +1 -1
- package/dist/types/components/ptc-mobile-select/mobile-select/dist/mobile-select.d.ts +209 -0
- package/dist/types/global/global.d.ts +4 -0
- package/dist/types/utils/eloqua.d.ts +9 -0
- package/dist/types/utils/fef-logger.d.ts +10 -0
- package/package.json +1 -1
- package/readme.md +1 -1
- package/dist/ptcw-design/p-3ee2a531.entry.js +0 -1
- package/dist/ptcw-design/p-ad1bd6fe.entry.js +0 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
class PTCLogger {
|
|
4
|
+
constructor() {
|
|
5
|
+
this.prefix = '[PTC FEF LOG]';
|
|
6
|
+
}
|
|
7
|
+
format(level, message, ...args) {
|
|
8
|
+
const timestamp = new Date().toISOString();
|
|
9
|
+
return [`${this.prefix} [${level.toUpperCase()}] ${timestamp}:`, message, ...args];
|
|
10
|
+
}
|
|
11
|
+
log(message, ...args) {
|
|
12
|
+
console.log(...this.format('log', message, ...args));
|
|
13
|
+
}
|
|
14
|
+
info(message, ...args) {
|
|
15
|
+
console.info(...this.format('info', message, ...args));
|
|
16
|
+
}
|
|
17
|
+
warn(message, ...args) {
|
|
18
|
+
console.warn(...this.format('warn', message, ...args));
|
|
19
|
+
}
|
|
20
|
+
error(message, ...args) {
|
|
21
|
+
console.error(...this.format('error', message, ...args));
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
// Singleton
|
|
25
|
+
const ptcLogger = new PTCLogger();
|
|
26
|
+
|
|
27
|
+
// src/global/global.ts
|
|
28
|
+
globalThis.ptcLogger = ptcLogger;
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -40,8 +40,16 @@ const PtcFilterDropdown = class {
|
|
|
40
40
|
}));
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
|
-
toggleDropdown() {
|
|
43
|
+
toggleDropdown(focusInput = false) {
|
|
44
44
|
this.isOpen = !this.isOpen;
|
|
45
|
+
if (focusInput) {
|
|
46
|
+
requestAnimationFrame(() => {
|
|
47
|
+
var _a;
|
|
48
|
+
const selected = this.hostElement.shadowRoot.querySelector('.filter-list input:checked');
|
|
49
|
+
const firstInput = this.hostElement.shadowRoot.querySelector('.filter-list input');
|
|
50
|
+
(_a = (selected || firstInput)) === null || _a === void 0 ? void 0 : _a.focus();
|
|
51
|
+
});
|
|
52
|
+
}
|
|
45
53
|
}
|
|
46
54
|
clearFilter() {
|
|
47
55
|
this.selectedOptions = [];
|
|
@@ -57,6 +65,7 @@ const PtcFilterDropdown = class {
|
|
|
57
65
|
this.emitSelectedOptions('clearButton');
|
|
58
66
|
}
|
|
59
67
|
emitSelectedOptions(clickedButton) {
|
|
68
|
+
var _a;
|
|
60
69
|
// debugger
|
|
61
70
|
this.selectedOptions = this.internalOptions
|
|
62
71
|
.filter((option) => {
|
|
@@ -76,7 +85,7 @@ const PtcFilterDropdown = class {
|
|
|
76
85
|
this.toggleDropdown();
|
|
77
86
|
}
|
|
78
87
|
if (this.dropdownPlaceholder) {
|
|
79
|
-
this.dropdownPlaceholder.textContent = this.selectedOptions[0].value;
|
|
88
|
+
this.dropdownPlaceholder.textContent = (_a = this.selectedOptions[0]) === null || _a === void 0 ? void 0 : _a.value;
|
|
80
89
|
}
|
|
81
90
|
}
|
|
82
91
|
componentWillRender() {
|
|
@@ -84,11 +93,20 @@ const PtcFilterDropdown = class {
|
|
|
84
93
|
}
|
|
85
94
|
handleKeyDown(e) {
|
|
86
95
|
if (e.key === 'Enter') {
|
|
87
|
-
this.toggleDropdown();
|
|
96
|
+
this.toggleDropdown(true); // Focus after Enter
|
|
97
|
+
}
|
|
98
|
+
else if (e.key === 'Tab' && this.isOpen) {
|
|
99
|
+
// Let browser do default tabbing, but also guide focus inside dropdown
|
|
100
|
+
requestAnimationFrame(() => {
|
|
101
|
+
var _a;
|
|
102
|
+
const selected = this.hostElement.shadowRoot.querySelector('.filter-list input:checked');
|
|
103
|
+
const firstInput = this.hostElement.shadowRoot.querySelector('.filter-list input');
|
|
104
|
+
(_a = (selected || firstInput)) === null || _a === void 0 ? void 0 : _a.focus();
|
|
105
|
+
});
|
|
88
106
|
}
|
|
89
107
|
}
|
|
90
108
|
render() {
|
|
91
|
-
return (index.h(index.Host, null, this.styles && index.h("style", null, this.styles), index.h("div", { class: "dropdown" }, index.h("div", { class: "dropdown-toggle mf-listen", onClick: () => this.toggleDropdown(), tabIndex: 0, onKeyDown: (e) => { this.handleKeyDown(e); } }, index.h("span", { class: "dropdown-placeholder" }, index.h("strong", null, "Filter: "), index.h("span", { class: "dropdown-filter-name" }, this.placeholder)), index.h("span", { class: "caret" }, index.h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "12", height: "7", viewBox: "0 0 12 7", fill: "none" }, index.h("path", { d: "M10.2426 1.24264L6 5.48528L1.75736 1.24264", stroke: "#20262A", "stroke-width": "2", "stroke-linecap": "round" })))), this.isOpen && (index.h("div", { class: "dropdown-menu" }, index.h("ul", { class: "filter-list" }, this.internalOptions.map((option) => (index.h("li", { key: option.tabId }, index.h("label", { class: "radio-label", htmlFor: option.value.replace(/\s+/g, '') }, index.h("input", { type: "radio", id: option.value.replace(/\s+/g, ''), name: "theater-filter", value: option.value, checked: this.selectedOptions.some((item) => item.value === option.value), "tab-id": option.tabId, "tag-name": option.tagName }), option.value))))), index.h("div", { class: "filter-btns" }, index.h("span", { class: "clear-btn mf-listen", onClick: () => this.clearFilter(), tabIndex: 0, onKeyDown: (e) => {
|
|
109
|
+
return (index.h(index.Host, null, this.styles && index.h("style", null, this.styles), index.h("div", { class: "dropdown" }, index.h("div", { class: "dropdown-toggle mf-listen", onClick: () => this.toggleDropdown(true), tabIndex: 0, onKeyDown: (e) => { this.handleKeyDown(e); } }, index.h("span", { class: "dropdown-placeholder" }, index.h("strong", null, "Filter: "), index.h("span", { class: "dropdown-filter-name" }, this.placeholder)), index.h("span", { class: "caret" }, index.h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "12", height: "7", viewBox: "0 0 12 7", fill: "none" }, index.h("path", { d: "M10.2426 1.24264L6 5.48528L1.75736 1.24264", stroke: "#20262A", "stroke-width": "2", "stroke-linecap": "round" })))), this.isOpen && (index.h("div", { class: "dropdown-menu" }, index.h("ul", { class: "filter-list" }, this.internalOptions.map((option) => (index.h("li", { key: option.tabId }, index.h("label", { class: "radio-label", htmlFor: option.value.replace(/\s+/g, '') }, index.h("input", { type: "radio", id: option.value.replace(/\s+/g, ''), name: "theater-filter", value: option.value, checked: this.selectedOptions.some((item) => item.value === option.value), "tab-id": option.tabId, "tag-name": option.tagName }), option.value))))), index.h("div", { class: "filter-btns" }, index.h("span", { class: "clear-btn mf-listen", onClick: () => this.clearFilter(), tabIndex: 0, onKeyDown: (e) => {
|
|
92
110
|
if (e.key === 'Enter')
|
|
93
111
|
this.clearFilter();
|
|
94
112
|
} }, "Clear"), index.h("ptc-button", { "tracker-id": "filter-apply-cta", type: "link", color: "ptc-secondary", onClick: () => this.emitSelectedOptions('applyButton'), styles: ' a span { font-size: 16px !important; } a{ padding: 10px 16px !important; }' }, "Apply"))))), index.h("div", { class: "hidden" }, index.h("slot", null))));
|
|
@@ -177,7 +195,7 @@ const PtcSocialShare = class {
|
|
|
177
195
|
};
|
|
178
196
|
PtcSocialShare.style = ptcSocialShareCss;
|
|
179
197
|
|
|
180
|
-
const ptcTheaterVideoCss = "h1.sc-ptc-theater-video,h2.sc-ptc-theater-video,h3.sc-ptc-theater-video,h4.sc-ptc-theater-video,h5.sc-ptc-theater-video,h6.sc-ptc-theater-video,p.sc-ptc-theater-video,ul.sc-ptc-theater-video,li.sc-ptc-theater-video,ptc-subnav.sc-ptc-theater-video,ptc-tab-list.sc-ptc-theater-video,ptc-link.sc-ptc-theater-video,ptc-square-card.sc-ptc-theater-video,.hyphenate-text.sc-ptc-theater-video,ptc-footer.sc-ptc-theater-video{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1.sc-ptc-theater-video,h2.sc-ptc-theater-video,h3.sc-ptc-theater-video,h4.sc-ptc-theater-video,h5.sc-ptc-theater-video,h6.sc-ptc-theater-video,p.sc-ptc-theater-video,ul.sc-ptc-theater-video,li.sc-ptc-theater-video,ptc-subnav.sc-ptc-theater-video,ptc-tab-list.sc-ptc-theater-video,ptc-link.sc-ptc-theater-video,ptc-square-card.sc-ptc-theater-video,.hyphenate-text.sc-ptc-theater-video,ptc-footer.sc-ptc-theater-video{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}.sc-ptc-theater-video-h{display:block;max-width:205px;min-width:205px;color:var(--color-white)}.hide.sc-ptc-theater-video-h{display:none}.show.sc-ptc-theater-video-h{display:inline-block}@media only screen and (min-width: 768px){.sc-ptc-theater-video-h{min-width:auto;min-width:205px}}@media only screen and (min-width: 1200px){.sc-ptc-theater-video-h{max-width:260px;min-width:260px}}.sc-ptc-theater-video-h .img-wrap.sc-ptc-theater-video{position:relative;border-radius:12px;box-shadow:0px 2px 6px 0px rgba(0, 0, 0, 0.24);cursor:pointer}.sc-ptc-theater-video-h .img-wrap.sc-ptc-theater-video:focus-visible{border-radius:var(--ptc-border-radius-standard);outline:5px solid var(--keyboard-nav-outline)}.sc-ptc-theater-video-h .img-wrap.sc-ptc-theater-video img.sc-ptc-theater-video{max-width:100%;border-radius:12px}.sc-ptc-theater-video-h .img-wrap.sc-ptc-theater-video svg.sc-ptc-theater-video{fill:#FFF;filter:drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.5));position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.sc-ptc-theater-video-h .img-wrap.sc-ptc-theater-video .card-number.sc-ptc-theater-video{position:absolute;left:6px;top:6px;width:32px;height:32px;background-color:var(--color-gray-09);border-radius:50%;border:2px solid var(--color-green-05);text-align:center;color:#FFF;font-size:18px;font-weight:700;display:flex;align-items:center;justify-content:center;box-sizing:border-box;padding-bottom:3px}.sc-ptc-theater-video-h h3.sc-ptc-theater-video{margin:12px 0 0 0;font-size:var(--ptc-font-size-x-small);font-weight:var(--ptc-font-weight-bold);color:var(--color-white)}.sc-ptc-theater-video-h .hidden.sc-ptc-theater-video{display:none}";
|
|
198
|
+
const ptcTheaterVideoCss = "h1.sc-ptc-theater-video,h2.sc-ptc-theater-video,h3.sc-ptc-theater-video,h4.sc-ptc-theater-video,h5.sc-ptc-theater-video,h6.sc-ptc-theater-video,p.sc-ptc-theater-video,ul.sc-ptc-theater-video,li.sc-ptc-theater-video,ptc-subnav.sc-ptc-theater-video,ptc-tab-list.sc-ptc-theater-video,ptc-link.sc-ptc-theater-video,ptc-square-card.sc-ptc-theater-video,.hyphenate-text.sc-ptc-theater-video,ptc-footer.sc-ptc-theater-video{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1.sc-ptc-theater-video,h2.sc-ptc-theater-video,h3.sc-ptc-theater-video,h4.sc-ptc-theater-video,h5.sc-ptc-theater-video,h6.sc-ptc-theater-video,p.sc-ptc-theater-video,ul.sc-ptc-theater-video,li.sc-ptc-theater-video,ptc-subnav.sc-ptc-theater-video,ptc-tab-list.sc-ptc-theater-video,ptc-link.sc-ptc-theater-video,ptc-square-card.sc-ptc-theater-video,.hyphenate-text.sc-ptc-theater-video,ptc-footer.sc-ptc-theater-video{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}.sc-ptc-theater-video-h{display:block;max-width:205px;min-width:205px;color:var(--color-white)}.hide.sc-ptc-theater-video-h{display:none}.show.sc-ptc-theater-video-h{display:inline-block}@media only screen and (min-width: 768px){.sc-ptc-theater-video-h{min-width:auto;min-width:205px}}@media only screen and (min-width: 1200px){.sc-ptc-theater-video-h{max-width:260px;min-width:260px}}.sc-ptc-theater-video-h .img-wrap.sc-ptc-theater-video{position:relative;border-radius:12px;box-shadow:0px 2px 6px 0px rgba(0, 0, 0, 0.24);margin-top:5px;cursor:pointer}.sc-ptc-theater-video-h .img-wrap.sc-ptc-theater-video:focus-visible{border-radius:var(--ptc-border-radius-standard);border:2px solid white;outline:5px solid var(--keyboard-nav-outline)}.sc-ptc-theater-video-h .img-wrap.sc-ptc-theater-video img.sc-ptc-theater-video{max-width:100%;border-radius:12px}.sc-ptc-theater-video-h .img-wrap.sc-ptc-theater-video svg.sc-ptc-theater-video{fill:#FFF;filter:drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.5));position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.sc-ptc-theater-video-h .img-wrap.sc-ptc-theater-video .card-number.sc-ptc-theater-video{position:absolute;left:6px;top:6px;width:32px;height:32px;background-color:var(--color-gray-09);border-radius:50%;border:2px solid var(--color-green-05);text-align:center;color:#FFF;font-size:18px;font-weight:700;display:flex;align-items:center;justify-content:center;box-sizing:border-box;padding-bottom:3px}.sc-ptc-theater-video-h h3.sc-ptc-theater-video{margin:12px 0 0 0;font-size:var(--ptc-font-size-x-small);font-weight:var(--ptc-font-weight-bold);color:var(--color-white)}.sc-ptc-theater-video-h .hidden.sc-ptc-theater-video{display:none}";
|
|
181
199
|
|
|
182
200
|
const PtcTheaterVideo = class {
|
|
183
201
|
constructor(hostRef) {
|
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
const index = require('./index-63ddc79c.js');
|
|
6
6
|
|
|
7
|
-
const ptcFilterLevelTheaterCss = "h1.sc-ptc-filter-level-theater,h2.sc-ptc-filter-level-theater,h3.sc-ptc-filter-level-theater,h4.sc-ptc-filter-level-theater,h5.sc-ptc-filter-level-theater,h6.sc-ptc-filter-level-theater,p.sc-ptc-filter-level-theater,ul.sc-ptc-filter-level-theater,li.sc-ptc-filter-level-theater,ptc-subnav.sc-ptc-filter-level-theater,ptc-tab-list.sc-ptc-filter-level-theater,ptc-link.sc-ptc-filter-level-theater,ptc-square-card.sc-ptc-filter-level-theater,.hyphenate-text.sc-ptc-filter-level-theater,ptc-footer.sc-ptc-filter-level-theater{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1.sc-ptc-filter-level-theater,h2.sc-ptc-filter-level-theater,h3.sc-ptc-filter-level-theater,h4.sc-ptc-filter-level-theater,h5.sc-ptc-filter-level-theater,h6.sc-ptc-filter-level-theater,p.sc-ptc-filter-level-theater,ul.sc-ptc-filter-level-theater,li.sc-ptc-filter-level-theater,ptc-subnav.sc-ptc-filter-level-theater,ptc-tab-list.sc-ptc-filter-level-theater,ptc-link.sc-ptc-filter-level-theater,ptc-square-card.sc-ptc-filter-level-theater,.hyphenate-text.sc-ptc-filter-level-theater,ptc-footer.sc-ptc-filter-level-theater{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}.ptc-container.sc-ptc-filter-level-theater{padding-right:24px;padding-left:24px;margin-right:auto;margin-left:auto}@media only screen and (min-width: 1200px){.ptc-container.sc-ptc-filter-level-theater{padding-left:0;padding-right:0;max-width:1136px}}@media only screen and (min-width: 1440px){.ptc-container.sc-ptc-filter-level-theater{padding-left:0;padding-right:0;max-width:1200px}}.ptc-container-lg.sc-ptc-filter-level-theater{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media only screen and (min-width: 480px){.ptc-container-lg.sc-ptc-filter-level-theater{padding-left:var(--ptc-layout-spacing-03);padding-right:var(--ptc-layout-spacing-03)}}@media only screen and (min-width: 768px){.ptc-container-lg.sc-ptc-filter-level-theater{padding-left:var(--ptc-layout-spacing-04);padding-right:var(--ptc-layout-spacing-04)}}@media only screen and (min-width: 992px){.ptc-container-lg.sc-ptc-filter-level-theater{padding-left:var(--ptc-element-spacing-08);padding-right:var(--ptc-element-spacing-08)}}@media only screen and (min-width: 1980px){.ptc-container-lg.sc-ptc-filter-level-theater{padding-left:0;padding-right:0;max-width:1900px}}.ptc-container-fluid.sc-ptc-filter-level-theater{width:100%}a.sc-ptc-filter-level-theater{font-family:var(--ptc-font-latin);font-style:var(--ptc-font-style-normal);text-decoration-line:underline;color:var(--color-hyperlink);transition:color var(--ptc-transition-medium) var(--ptc-ease-out);font-weight:var(--ptc-font-weight-bold)}a.sc-ptc-filter-level-theater:visited{color:var(--color-blue-10)}a.sc-ptc-filter-level-theater:active,a.sc-ptc-filter-level-theater:visited:active{transition:none;color:var(--color-blue-09)}a.sc-ptc-filter-level-theater:hover,a.sc-ptc-filter-level-theater:visited:hover{color:var(--color-blue-08)}a.disabled.sc-ptc-filter-level-theater{color:var(--color-gray-04) !important;cursor:not-allowed}a.sc-ptc-filter-level-theater:focus-visible{outline:5px solid #003DD6 !important;outline-offset:0px !important;border-radius:var(--ptc-border-radius-standard)}.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater,.light-links.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater,.background-grey-10.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater{color:var(--color-blue-04);margin:-2px;border:2px solid transparent}.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited,.light-links.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited,.background-grey-10.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited{color:var(--color-blue-06)}.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:active,.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited:active,.light-links.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:active,.light-links.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited:active,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:active,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited:active,.background-grey-10.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:active,.background-grey-10.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited:active,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:active,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited:active,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:active,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited:active{transition:none;color:var(--color-blue-07)}.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:hover,.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited:hover,.light-links.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:hover,.light-links.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited:hover,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:hover,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited:hover,.background-grey-10.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:hover,.background-grey-10.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited:hover,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:hover,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited:hover,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:hover,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited:hover{color:var(--color-blue-05)}.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).disabled.sc-ptc-filter-level-theater,.light-links.sc-ptc-filter-level-theater a.light-link.disabled.sc-ptc-filter-level-theater,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).disabled.sc-ptc-filter-level-theater,.background-grey-10.sc-ptc-filter-level-theater a.light-link.disabled.sc-ptc-filter-level-theater,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).disabled.sc-ptc-filter-level-theater,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.disabled.sc-ptc-filter-level-theater{color:var(--color-gray-04) !important;cursor:not-allowed}.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:focus-visible,.light-links.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:focus-visible,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:focus-visible,.background-grey-10.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:focus-visible,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:focus-visible,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:focus-visible{border-radius:var(--ptc-border-radius-standard);border:2px solid white;outline:5px solid var(--keyboard-nav-outline)}.light-links.sc-ptc-filter-level-theater .podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.background-grey-10.sc-ptc-filter-level-theater .podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.background-plm-grey.sc-ptc-filter-level-theater .podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater{border:2px solid transparent}.light-links.sc-ptc-filter-level-theater .podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:focus-visible,.background-grey-10.sc-ptc-filter-level-theater .podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:focus-visible,.background-plm-grey.sc-ptc-filter-level-theater .podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:focus-visible{border-radius:var(--ptc-border-radius-standard);border:2px solid white;outline:5px solid var(--keyboard-nav-outline)}.ptc-link.sc-ptc-filter-level-theater{color:var(--color-gray-10);text-decoration:underline;text-decoration-thickness:2px;text-decoration-color:var(--color-green-06);text-underline-offset:5px;transition:text-decoration-color var(--ptc-transition-medium) var(--ptc-ease-inout)}.ptc-link.sc-ptc-filter-level-theater:hover{color:var(--color-green-06)}.ptc-link.sc-ptc-filter-level-theater:visited{color:var(--color-gray-10)}.ptc-link.sc-ptc-filter-level-theater:active,.ptc-link.sc-ptc-filter-level-theater:visited:active{transition:none;color:var(--color-green-06)}.ptc-link.sc-ptc-filter-level-theater:hover,.ptc-link.sc-ptc-filter-level-theater:visited:hover{color:var(--color-green-06)}.ptc-link-dark.sc-ptc-filter-level-theater{color:var(--color-white);text-decoration:underline;text-decoration-thickness:2px;text-decoration-color:var(--color-green-06);text-underline-offset:5px;transition:text-decoration-color var(--ptc-transition-medium) var(--ptc-ease-inout)}.ptc-link-dark.sc-ptc-filter-level-theater:hover{color:var(--color-green-06)}.ptc-link-dark.sc-ptc-filter-level-theater:visited{color:var(--color-white)}.ptc-link-dark.sc-ptc-filter-level-theater:active,.ptc-link-dark.sc-ptc-filter-level-theater:visited:active{transition:none;color:var(--color-green-06)}.ptc-link-dark.sc-ptc-filter-level-theater:hover,.ptc-link-dark.sc-ptc-filter-level-theater:visited:hover{color:var(--color-green-06)}.vjs-social-share-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater{color:var(--color-white)}.vjs-social-share-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:hover{color:var(--color-white)}.sc-ptc-filter-level-theater-h{display:block;position:relative;background-color:var(--color-gray-12);color:var(--color-white);box-sizing:border-box}.sc-ptc-filter-level-theater-h .filter-section.sc-ptc-filter-level-theater{max-width:400px}@media only screen and (min-width: 992px){.sc-ptc-filter-level-theater-h .filter-section.sc-ptc-filter-level-theater{max-width:600px}}.sc-ptc-filter-level-theater-h .filter-section.sc-ptc-filter-level-theater ptc-product-dropdown.sc-ptc-filter-level-theater{color:var(--color-gray-10)}.sc-ptc-filter-level-theater-h .flt-bg-image-wrapper.sc-ptc-filter-level-theater{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;z-index:0;overflow-x:hidden}.sc-ptc-filter-level-theater-h .flt-bg-image-wrapper.sc-ptc-filter-level-theater .flt-bg-img.sc-ptc-filter-level-theater{width:100%;height:100%;display:none;position:absolute;right:-100%;animation:slide 0.5s forwards;animation-delay:2s}.sc-ptc-filter-level-theater-h .flt-bg-image-wrapper.sc-ptc-filter-level-theater .flt-bg-img.active-tab.sc-ptc-filter-level-theater{display:block;animation:slide 0.5s forwards;animation-delay:0.1s}@-webkit-keyframes slide{100%{right:0}}@keyframes slide{100%{right:0}}.sc-ptc-filter-level-theater-h .flt-bg-image-wrapper.sc-ptc-filter-level-theater .bg-img-overlay.sc-ptc-filter-level-theater{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(40, 47, 53, 0.7)}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater{padding-top:44px;padding-bottom:44px;position:relative}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .flt-actions-container.sc-ptc-filter-level-theater{display:flex;justify-content:space-between}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .back-button.sc-ptc-filter-level-theater{height:max-content;background-color:var(--color-gray-10);border-radius:var(--ptc-border-radius-standard);display:flex;align-items:center;padding:var(--ptc-element-spacing-01) 14px var(--ptc-element-spacing-01) 14px;margin:0;position:absolute;top:-24px;width:100%}@media only screen and (min-width: 768px){.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .back-button.sc-ptc-filter-level-theater{top:-64px;width:auto}}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .back-button.sc-ptc-filter-level-theater icon-asset.sc-ptc-filter-level-theater{margin-right:var(--ptc-element-spacing-02)}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .back-button.sc-ptc-filter-level-theater span.sc-ptc-filter-level-theater{color:#FFF;font-size:var(--ptc-font-size-x-small);font-style:normal;font-weight:var(--ptc-font-weight-semibold);line-height:24px}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .back-button.sc-ptc-filter-level-theater:hover{cursor:pointer}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .back-button.sc-ptc-filter-level-theater:focus-visible{border-radius:var(--ptc-border-radius-standard);outline:5px solid var(--keyboard-nav-outline)}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .filter-section.sc-ptc-filter-level-theater{padding-bottom:36px}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater{width:100%;display:flex;flex-direction:column}@media only screen and (min-width: 768px){.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater{flex-direction:row;justify-content:space-between}}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-content-wrap.sc-ptc-filter-level-theater{order:2}@media only screen and (min-width: 768px){.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-content-wrap.sc-ptc-filter-level-theater{order:1;max-width:700px;padding-right:24px}}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-content-wrap.sc-ptc-filter-level-theater .flt-content.sc-ptc-filter-level-theater p.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-content-wrap.sc-ptc-filter-level-theater .flt-content.sc-ptc-filter-level-theater ul.sc-ptc-filter-level-theater li.sc-ptc-filter-level-theater{font-size:18px;line-height:1.5;color:var(--color-white)}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-content-wrap.sc-ptc-filter-level-theater .flt-content.active-tab.sc-ptc-filter-level-theater{display:block}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater{margin-bottom:32px;position:relative}@media only screen and (min-width: 768px){.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater{order:2;max-width:304px;margin-bottom:0}}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater{min-width:223px;display:flex;overflow-x:auto;align-items:center;padding-bottom:24px;padding-top:40px}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater::-webkit-scrollbar{height:3px;border-radius:4px}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater::-webkit-scrollbar-track{background-color:#3E4A52;border-radius:4px}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater::-webkit-scrollbar-thumb{background-color:#819099;border-radius:4px}@media only screen and (min-width: 768px){.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater{display:block;overflow-x:hidden;padding-bottom:0;padding-top:0}}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .tab-box.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater ptc-button.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .flt-social-icon-list.sc-ptc-filter-level-theater{max-width:304px;min-width:223px;margin-right:24px;margin-bottom:0}@media only screen and (min-width: 768px){.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .tab-box.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater ptc-button.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .flt-social-icon-list.sc-ptc-filter-level-theater{min-width:auto;margin-bottom:24px;margin-right:0}}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .tab-box.sc-ptc-filter-level-theater{border-radius:4px;box-sizing:border-box;border:2px solid #33A13C;padding:16px 24px;background-color:#323B42;cursor:pointer}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .tab-box.active-box.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .tab-box.sc-ptc-filter-level-theater:hover{border-color:#C37729;background-color:#20262A}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater ptc-button.sc-ptc-filter-level-theater{width:100%;display:block}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .flt-social-icon-list.sc-ptc-filter-level-theater{border-radius:4px;padding:12px;text-align:center;background:#BEC6CA;box-sizing:border-box}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .flt-social-icon-list.sc-ptc-filter-level-theater ptc-social-share.sc-ptc-filter-level-theater{margin-right:24px}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .flt-social-icon-list.sc-ptc-filter-level-theater ptc-social-share.sc-ptc-filter-level-theater:last-child{margin-right:0}.sc-ptc-filter-level-theater-h ptc-theater-video-playlist.sc-ptc-filter-level-theater{padding-top:26px;clear:both}.sc-ptc-filter-level-theater-h ptc-theater-video-playlist.sc-ptc-filter-level-theater ptc-theater-video.sc-ptc-filter-level-theater{margin-right:32px;display:inline-block;margin-bottom:28px}@media only screen and (min-width: 1200px){.sc-ptc-filter-level-theater-h ptc-theater-video-playlist.sc-ptc-filter-level-theater ptc-theater-video.sc-ptc-filter-level-theater{margin-right:40px}}.sc-ptc-filter-level-theater-h p.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h ul.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h li.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h ptc-title.sc-ptc-filter-level-theater .sc-ptc-title.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h span.sc-ptc-filter-level-theater{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){.sc-ptc-filter-level-theater-h p.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h ul.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h li.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h ptc-title.sc-ptc-filter-level-theater .sc-ptc-title.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h span.sc-ptc-filter-level-theater{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}a.sc-ptc-filter-level-theater{font-family:\"Raleway\", sans-serif;font-style:normal;text-decoration-line:underline;color:#197BC0;transition:color 250ms cubic-bezier(0, 0, 0.58, 1);font-weight:700}a.sc-ptc-filter-level-theater:visited{color:#0D3E62}a.sc-ptc-filter-level-theater:active,a.sc-ptc-filter-level-theater:visited:active{color:#104E7B;transition:none}a.sc-ptc-filter-level-theater:hover,a.sc-ptc-filter-level-theater:visited:hover{color:#14629A}a.disabled.sc-ptc-filter-level-theater{color:#AEB8BD !important;cursor:not-allowed}";
|
|
7
|
+
const ptcFilterLevelTheaterCss = "h1.sc-ptc-filter-level-theater,h2.sc-ptc-filter-level-theater,h3.sc-ptc-filter-level-theater,h4.sc-ptc-filter-level-theater,h5.sc-ptc-filter-level-theater,h6.sc-ptc-filter-level-theater,p.sc-ptc-filter-level-theater,ul.sc-ptc-filter-level-theater,li.sc-ptc-filter-level-theater,ptc-subnav.sc-ptc-filter-level-theater,ptc-tab-list.sc-ptc-filter-level-theater,ptc-link.sc-ptc-filter-level-theater,ptc-square-card.sc-ptc-filter-level-theater,.hyphenate-text.sc-ptc-filter-level-theater,ptc-footer.sc-ptc-filter-level-theater{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1.sc-ptc-filter-level-theater,h2.sc-ptc-filter-level-theater,h3.sc-ptc-filter-level-theater,h4.sc-ptc-filter-level-theater,h5.sc-ptc-filter-level-theater,h6.sc-ptc-filter-level-theater,p.sc-ptc-filter-level-theater,ul.sc-ptc-filter-level-theater,li.sc-ptc-filter-level-theater,ptc-subnav.sc-ptc-filter-level-theater,ptc-tab-list.sc-ptc-filter-level-theater,ptc-link.sc-ptc-filter-level-theater,ptc-square-card.sc-ptc-filter-level-theater,.hyphenate-text.sc-ptc-filter-level-theater,ptc-footer.sc-ptc-filter-level-theater{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}.ptc-container.sc-ptc-filter-level-theater{padding-right:24px;padding-left:24px;margin-right:auto;margin-left:auto}@media only screen and (min-width: 1200px){.ptc-container.sc-ptc-filter-level-theater{padding-left:0;padding-right:0;max-width:1136px}}@media only screen and (min-width: 1440px){.ptc-container.sc-ptc-filter-level-theater{padding-left:0;padding-right:0;max-width:1200px}}.ptc-container-lg.sc-ptc-filter-level-theater{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media only screen and (min-width: 480px){.ptc-container-lg.sc-ptc-filter-level-theater{padding-left:var(--ptc-layout-spacing-03);padding-right:var(--ptc-layout-spacing-03)}}@media only screen and (min-width: 768px){.ptc-container-lg.sc-ptc-filter-level-theater{padding-left:var(--ptc-layout-spacing-04);padding-right:var(--ptc-layout-spacing-04)}}@media only screen and (min-width: 992px){.ptc-container-lg.sc-ptc-filter-level-theater{padding-left:var(--ptc-element-spacing-08);padding-right:var(--ptc-element-spacing-08)}}@media only screen and (min-width: 1980px){.ptc-container-lg.sc-ptc-filter-level-theater{padding-left:0;padding-right:0;max-width:1900px}}.ptc-container-fluid.sc-ptc-filter-level-theater{width:100%}a.sc-ptc-filter-level-theater{font-family:var(--ptc-font-latin);font-style:var(--ptc-font-style-normal);text-decoration-line:underline;color:var(--color-hyperlink);transition:color var(--ptc-transition-medium) var(--ptc-ease-out);font-weight:var(--ptc-font-weight-bold)}a.sc-ptc-filter-level-theater:visited{color:var(--color-blue-10)}a.sc-ptc-filter-level-theater:active,a.sc-ptc-filter-level-theater:visited:active{transition:none;color:var(--color-blue-09)}a.sc-ptc-filter-level-theater:hover,a.sc-ptc-filter-level-theater:visited:hover{color:var(--color-blue-08)}a.disabled.sc-ptc-filter-level-theater{color:var(--color-gray-04) !important;cursor:not-allowed}a.sc-ptc-filter-level-theater:focus-visible{outline:5px solid #003DD6 !important;outline-offset:0px !important;border-radius:var(--ptc-border-radius-standard)}.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater,.light-links.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater,.background-grey-10.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater{color:var(--color-blue-04);margin:-2px;border:2px solid transparent}.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited,.light-links.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited,.background-grey-10.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited{color:var(--color-blue-06)}.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:active,.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited:active,.light-links.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:active,.light-links.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited:active,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:active,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited:active,.background-grey-10.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:active,.background-grey-10.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited:active,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:active,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited:active,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:active,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited:active{transition:none;color:var(--color-blue-07)}.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:hover,.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited:hover,.light-links.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:hover,.light-links.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited:hover,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:hover,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited:hover,.background-grey-10.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:hover,.background-grey-10.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited:hover,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:hover,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:visited:hover,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:hover,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:visited:hover{color:var(--color-blue-05)}.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).disabled.sc-ptc-filter-level-theater,.light-links.sc-ptc-filter-level-theater a.light-link.disabled.sc-ptc-filter-level-theater,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).disabled.sc-ptc-filter-level-theater,.background-grey-10.sc-ptc-filter-level-theater a.light-link.disabled.sc-ptc-filter-level-theater,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).disabled.sc-ptc-filter-level-theater,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.disabled.sc-ptc-filter-level-theater{color:var(--color-gray-04) !important;cursor:not-allowed}.light-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:focus-visible,.light-links.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:focus-visible,.background-grey-10.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:focus-visible,.background-grey-10.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:focus-visible,.background-plm-grey.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:not(.hero-footer-form-wrapper a.sc-ptc-filter-level-theater,ptc-modal.sc-ptc-filter-level-theater inline-form.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.vjs-social-share-links.sc-ptc-filter-level-theater a).sc-ptc-filter-level-theater:focus-visible,.background-plm-grey.sc-ptc-filter-level-theater a.light-link.sc-ptc-filter-level-theater:focus-visible{border-radius:var(--ptc-border-radius-standard);border:2px solid white;outline:5px solid var(--keyboard-nav-outline)}.light-links.sc-ptc-filter-level-theater .podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.background-grey-10.sc-ptc-filter-level-theater .podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater,.background-plm-grey.sc-ptc-filter-level-theater .podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater{border:2px solid transparent}.light-links.sc-ptc-filter-level-theater .podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:focus-visible,.background-grey-10.sc-ptc-filter-level-theater .podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:focus-visible,.background-plm-grey.sc-ptc-filter-level-theater .podcast-cta-section.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:focus-visible{border-radius:var(--ptc-border-radius-standard);border:2px solid white;outline:5px solid var(--keyboard-nav-outline)}.ptc-link.sc-ptc-filter-level-theater{color:var(--color-gray-10);text-decoration:underline;text-decoration-thickness:2px;text-decoration-color:var(--color-green-06);text-underline-offset:5px;transition:text-decoration-color var(--ptc-transition-medium) var(--ptc-ease-inout)}.ptc-link.sc-ptc-filter-level-theater:hover{color:var(--color-green-06)}.ptc-link.sc-ptc-filter-level-theater:visited{color:var(--color-gray-10)}.ptc-link.sc-ptc-filter-level-theater:active,.ptc-link.sc-ptc-filter-level-theater:visited:active{transition:none;color:var(--color-green-06)}.ptc-link.sc-ptc-filter-level-theater:hover,.ptc-link.sc-ptc-filter-level-theater:visited:hover{color:var(--color-green-06)}.ptc-link-dark.sc-ptc-filter-level-theater{color:var(--color-white);text-decoration:underline;text-decoration-thickness:2px;text-decoration-color:var(--color-green-06);text-underline-offset:5px;transition:text-decoration-color var(--ptc-transition-medium) var(--ptc-ease-inout)}.ptc-link-dark.sc-ptc-filter-level-theater:hover{color:var(--color-green-06)}.ptc-link-dark.sc-ptc-filter-level-theater:visited{color:var(--color-white)}.ptc-link-dark.sc-ptc-filter-level-theater:active,.ptc-link-dark.sc-ptc-filter-level-theater:visited:active{transition:none;color:var(--color-green-06)}.ptc-link-dark.sc-ptc-filter-level-theater:hover,.ptc-link-dark.sc-ptc-filter-level-theater:visited:hover{color:var(--color-green-06)}.vjs-social-share-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater{color:var(--color-white)}.vjs-social-share-links.sc-ptc-filter-level-theater a.sc-ptc-filter-level-theater:hover{color:var(--color-white)}.sc-ptc-filter-level-theater-h{display:block;position:relative;background-color:var(--color-gray-12);color:var(--color-white);box-sizing:border-box}.sc-ptc-filter-level-theater-h .filter-section.sc-ptc-filter-level-theater{max-width:400px}@media only screen and (min-width: 992px){.sc-ptc-filter-level-theater-h .filter-section.sc-ptc-filter-level-theater{max-width:600px}}.sc-ptc-filter-level-theater-h .filter-section.sc-ptc-filter-level-theater ptc-product-dropdown.sc-ptc-filter-level-theater{color:var(--color-gray-10)}.sc-ptc-filter-level-theater-h .flt-bg-image-wrapper.sc-ptc-filter-level-theater{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;z-index:0;overflow-x:hidden}.sc-ptc-filter-level-theater-h .flt-bg-image-wrapper.sc-ptc-filter-level-theater .flt-bg-img.sc-ptc-filter-level-theater{width:100%;height:100%;display:none;position:absolute;right:-100%;animation:slide 0.5s forwards;animation-delay:2s}.sc-ptc-filter-level-theater-h .flt-bg-image-wrapper.sc-ptc-filter-level-theater .flt-bg-img.active-tab.sc-ptc-filter-level-theater{display:block;animation:slide 0.5s forwards;animation-delay:0.1s}@-webkit-keyframes slide{100%{right:0}}@keyframes slide{100%{right:0}}.sc-ptc-filter-level-theater-h .flt-bg-image-wrapper.sc-ptc-filter-level-theater .bg-img-overlay.sc-ptc-filter-level-theater{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(40, 47, 53, 0.7)}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater{padding-top:44px;padding-bottom:44px;position:relative}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .flt-actions-container.sc-ptc-filter-level-theater{display:flex;justify-content:space-between}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .back-button.sc-ptc-filter-level-theater{height:max-content;background-color:var(--color-gray-10);border-radius:var(--ptc-border-radius-standard);display:flex;align-items:center;padding:var(--ptc-element-spacing-01) 14px var(--ptc-element-spacing-01) 14px;margin:0;position:absolute;top:-24px;width:100%}@media only screen and (min-width: 768px){.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .back-button.sc-ptc-filter-level-theater{top:-64px;width:auto}}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .back-button.sc-ptc-filter-level-theater icon-asset.sc-ptc-filter-level-theater{margin-right:var(--ptc-element-spacing-02)}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .back-button.sc-ptc-filter-level-theater span.sc-ptc-filter-level-theater{color:#FFF;font-size:var(--ptc-font-size-x-small);font-style:normal;font-weight:var(--ptc-font-weight-semibold);line-height:24px}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .back-button.sc-ptc-filter-level-theater:hover{cursor:pointer}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .back-button.sc-ptc-filter-level-theater:focus-visible{border-radius:var(--ptc-border-radius-standard);border:2px solid white;outline:5px solid var(--keyboard-nav-outline)}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .filter-section.sc-ptc-filter-level-theater{padding-bottom:36px}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater{width:100%;display:flex;flex-direction:column}@media only screen and (min-width: 768px){.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater{flex-direction:row;justify-content:space-between}}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-content-wrap.sc-ptc-filter-level-theater{order:2}@media only screen and (min-width: 768px){.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-content-wrap.sc-ptc-filter-level-theater{order:1;max-width:700px;padding-right:24px}}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-content-wrap.sc-ptc-filter-level-theater .flt-content.sc-ptc-filter-level-theater p.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-content-wrap.sc-ptc-filter-level-theater .flt-content.sc-ptc-filter-level-theater ul.sc-ptc-filter-level-theater li.sc-ptc-filter-level-theater{font-size:18px;line-height:1.5;color:var(--color-white)}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-content-wrap.sc-ptc-filter-level-theater .flt-content.active-tab.sc-ptc-filter-level-theater{display:block}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater{margin-bottom:32px;position:relative}@media only screen and (min-width: 768px){.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater{order:2;max-width:304px;margin-bottom:0}}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater{min-width:223px;display:flex;overflow-x:auto;align-items:center;padding-bottom:24px;padding-top:40px}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater::-webkit-scrollbar{height:3px;border-radius:4px}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater::-webkit-scrollbar-track{background-color:#3E4A52;border-radius:4px}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater::-webkit-scrollbar-thumb{background-color:#819099;border-radius:4px}@media only screen and (min-width: 768px){.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater{display:block;overflow-x:hidden;padding-bottom:0;padding-top:0}}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .tab-box.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater ptc-button.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .flt-social-icon-list.sc-ptc-filter-level-theater{max-width:304px;min-width:223px;margin-right:24px;margin-bottom:0}@media only screen and (min-width: 768px){.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .tab-box.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater ptc-button.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .flt-social-icon-list.sc-ptc-filter-level-theater{min-width:auto;margin-bottom:24px;margin-right:0}}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .tab-box.sc-ptc-filter-level-theater{border-radius:4px;box-sizing:border-box;border:2px solid #33A13C;padding:16px 24px;background-color:#323B42;cursor:pointer}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .tab-box.active-box.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .tab-box.sc-ptc-filter-level-theater:hover{border-color:#C37729;background-color:#20262A}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater ptc-button.sc-ptc-filter-level-theater{width:100%;display:block}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .flt-social-icon-list.sc-ptc-filter-level-theater{border-radius:4px;padding:12px;text-align:center;background:#BEC6CA;box-sizing:border-box}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .flt-social-icon-list.sc-ptc-filter-level-theater ptc-social-share.sc-ptc-filter-level-theater{margin-right:24px}.sc-ptc-filter-level-theater-h .flt-wrapper.sc-ptc-filter-level-theater .content-tab-wrapper.sc-ptc-filter-level-theater .flt-tab-wrapper.sc-ptc-filter-level-theater .tab-list.sc-ptc-filter-level-theater .flt-social-icon-list.sc-ptc-filter-level-theater ptc-social-share.sc-ptc-filter-level-theater:last-child{margin-right:0}.sc-ptc-filter-level-theater-h ptc-theater-video-playlist.sc-ptc-filter-level-theater{padding-top:26px;clear:both}.sc-ptc-filter-level-theater-h ptc-theater-video-playlist.sc-ptc-filter-level-theater ptc-theater-video.sc-ptc-filter-level-theater{margin-right:32px;display:inline-block;margin-bottom:28px}@media only screen and (min-width: 1200px){.sc-ptc-filter-level-theater-h ptc-theater-video-playlist.sc-ptc-filter-level-theater ptc-theater-video.sc-ptc-filter-level-theater{margin-right:40px}}.sc-ptc-filter-level-theater-h p.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h ul.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h li.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h ptc-title.sc-ptc-filter-level-theater .sc-ptc-title.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h span.sc-ptc-filter-level-theater{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){.sc-ptc-filter-level-theater-h p.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h ul.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h li.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h ptc-title.sc-ptc-filter-level-theater .sc-ptc-title.sc-ptc-filter-level-theater,.sc-ptc-filter-level-theater-h span.sc-ptc-filter-level-theater{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}a.sc-ptc-filter-level-theater{font-family:\"Raleway\", sans-serif;font-style:normal;text-decoration-line:underline;color:#197BC0;transition:color 250ms cubic-bezier(0, 0, 0.58, 1);font-weight:700}a.sc-ptc-filter-level-theater:visited{color:#0D3E62}a.sc-ptc-filter-level-theater:active,a.sc-ptc-filter-level-theater:visited:active{color:#104E7B;transition:none}a.sc-ptc-filter-level-theater:hover,a.sc-ptc-filter-level-theater:visited:hover{color:#14629A}a.disabled.sc-ptc-filter-level-theater{color:#AEB8BD !important;cursor:not-allowed}";
|
|
8
8
|
|
|
9
9
|
const PtcFilterLevelTheater = class {
|
|
10
10
|
constructor(hostRef) {
|
|
@@ -98,6 +98,10 @@ const PtcProductList = class {
|
|
|
98
98
|
});
|
|
99
99
|
}
|
|
100
100
|
componentDidLoad() {
|
|
101
|
+
// ptcLogger.log('Component loaded!');
|
|
102
|
+
// ptcLogger.info('Component loaded!');
|
|
103
|
+
// ptcLogger.warn('Component loaded!');
|
|
104
|
+
// ptcLogger.error('Component loaded!');
|
|
101
105
|
this.addIds();
|
|
102
106
|
this.noresultSection = this.hostElement.shadowRoot.querySelector('.no-result-wrap');
|
|
103
107
|
this.productList = this.hostElement.shadowRoot.querySelector('.product-list');
|
|
@@ -24,7 +24,7 @@ const PtcQuote = class {
|
|
|
24
24
|
}
|
|
25
25
|
render() {
|
|
26
26
|
const classMap = this.getCssClassMap();
|
|
27
|
-
return (index.h(index.Host, { class: classMap }, this.imgSrc ? (index.h("div", { class: "quote-media" }, this.imgSrc ? index.h("img", { src: this.imgSrc, alt: this.imgTitle ? this.imgTitle : 'quote Image' }) : null, this.imgTitle ? this.getImageTitle() : null)) : null, index.h("div", { class: "quote-content" }, this.quoteType == 'image-quote' ? index.h("div", { class: 'quotemarks', innerHTML: QuotationMark }) : null, index.h("blockquote", null, this.quoteType == 'value-led-quote' &&
|
|
27
|
+
return (index.h(index.Host, { class: classMap }, this.imgSrc ? (index.h("div", { class: "quote-media" }, this.imgSrc ? index.h("img", { src: this.imgSrc, alt: this.imgTitle ? this.imgTitle : 'quote Image' }) : null, this.imgTitle ? this.getImageTitle() : null)) : null, index.h("div", { class: "quote-content" }, this.quoteType == 'image-quote' ? index.h("div", { class: 'quotemarks', innerHTML: QuotationMark }) : null, index.h("blockquote", null, this.quoteType == 'value-led-quote' && this.quoteImage &&
|
|
28
28
|
index.h("ptc-picture", { alt: "quote", src: this.quoteImage }), index.h("p", null, index.h("slot", null)), index.h("span", { class: "quote-name" }, this.quoteName ? this.quoteName : null), this.ctaText && this.ctaUrl ? (index.h("ptc-button", { type: "link", color: "ptc-secondary", "link-href": this.ctaUrl }, this.ctaText)) : null))));
|
|
29
29
|
}
|
|
30
30
|
getCssClassMap() {
|