@ptcwebops/ptcw-design 0.1.7 → 0.1.9

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 (42) hide show
  1. package/dist/cjs/icon-asset_5.cjs.entry.js +7 -7
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/ptc-countdown.cjs.entry.js +19 -0
  4. package/dist/cjs/ptc-picture.cjs.entry.js +1 -1
  5. package/dist/cjs/ptcw-design.cjs.js +1 -1
  6. package/dist/collection/collection-manifest.json +1 -0
  7. package/dist/collection/components/icon-asset/icon-asset.js +9 -9
  8. package/dist/{ptcw-design/assets/ptc-sprite.svg → collection/components/icon-asset/media/designer.svg} +29 -29
  9. package/dist/collection/components/ptc-button/ptc-button.css +8 -8
  10. package/dist/collection/components/ptc-countdown/ptc-countdown.css +3 -0
  11. package/dist/collection/components/ptc-countdown/ptc-countdown.js +15 -0
  12. package/dist/collection/components/ptc-picture/ptc-picture.js +1 -1
  13. package/dist/collection/components/ptc-svg-btn/ptc-svg-btn.js +1 -1
  14. package/dist/custom-elements/index.d.ts +6 -0
  15. package/dist/custom-elements/index.js +25 -9
  16. package/dist/esm/icon-asset_5.entry.js +7 -7
  17. package/dist/esm/loader.js +1 -1
  18. package/dist/esm/ptc-countdown.entry.js +15 -0
  19. package/dist/esm/ptc-picture.entry.js +1 -1
  20. package/dist/esm/ptcw-design.js +1 -1
  21. package/dist/{collection/components/icon-asset/assets/ptc-sprite.svg → ptcw-design/media/designer.svg} +29 -29
  22. package/dist/ptcw-design/p-62706e4e.entry.js +1 -0
  23. package/dist/ptcw-design/p-b60cefa5.entry.js +1 -0
  24. package/dist/ptcw-design/p-d17b386a.entry.js +1 -0
  25. package/dist/ptcw-design/ptcw-design.esm.js +1 -1
  26. package/dist/types/components/icon-asset/icon-asset.d.ts +1 -1
  27. package/dist/types/components/ptc-countdown/ptc-countdown.d.ts +3 -0
  28. package/dist/types/components.d.ts +15 -2
  29. package/package.json +1 -1
  30. package/dist/collection/components/icon-asset/assets/footer-social.svg +0 -0
  31. package/dist/ptcw-design/assets/footer-social.svg +0 -0
  32. package/dist/ptcw-design/p-6194817a.entry.js +0 -1
  33. package/dist/ptcw-design/p-b1af353d.entry.js +0 -1
  34. /package/dist/collection/components/icon-asset/{assets → media}/brands.svg +0 -0
  35. /package/dist/collection/components/icon-asset/{assets → media}/regular.svg +0 -0
  36. /package/dist/collection/components/icon-asset/{assets → media}/solid.svg +0 -0
  37. /package/dist/collection/components/icon-asset/{assets → media}/svg-with-js.min.css +0 -0
  38. /package/dist/collection/{assets → media}/svg-imgs/close.svg +0 -0
  39. /package/dist/ptcw-design/{assets → media}/brands.svg +0 -0
  40. /package/dist/ptcw-design/{assets → media}/regular.svg +0 -0
  41. /package/dist/ptcw-design/{assets → media}/solid.svg +0 -0
  42. /package/dist/ptcw-design/{assets → media}/svg-with-js.min.css +0 -0
@@ -28,11 +28,11 @@ const IconAsset = class {
28
28
  /**
29
29
  * Icon Color
30
30
  */
31
- this.color = 'black';
32
- this.regularSprite = index.getAssetPath('./assets/regular.svg');
33
- this.solidSprite = index.getAssetPath('./assets/solid.svg');
34
- this.brandSprite = index.getAssetPath('./assets/brands.svg');
35
- this.ptcSprite = index.getAssetPath('./assets/ptc-sprite.svg');
31
+ this.color = 'default';
32
+ this.regularSprite = index.getAssetPath('./media/regular.svg');
33
+ this.solidSprite = index.getAssetPath('./media/solid.svg');
34
+ this.brandSprite = index.getAssetPath('./media/brands.svg');
35
+ this.ptcSprite = index.getAssetPath('./media/designer.svg');
36
36
  }
37
37
  render() {
38
38
  const classMap = this.getCssClassMap();
@@ -57,7 +57,7 @@ const IconAsset = class {
57
57
  [this.color]: true,
58
58
  };
59
59
  }
60
- static get assetsDirs() { return ["assets"]; }
60
+ static get assetsDirs() { return ["media"]; }
61
61
  };
62
62
  IconAsset.style = iconAssetCss;
63
63
 
@@ -89,7 +89,7 @@ const PtcAnnouncement = class {
89
89
  };
90
90
  PtcAnnouncement.style = ptcAnnouncementCss;
91
91
 
92
- const ptcButtonCss = "button:disabled{pointer-events:none;opacity:0.6}button{background-color:var(--color-primary-uigrey);display:inline-block;border-style:solid;border-width:1px;white-space:normal;position:relative;text-decoration:none;cursor:pointer;padding:9.4px 17.5px;border-radius:3px}button.animation-right ::slotted([slot=slot-after-text]),button.animation-right ::slotted([slot=slot-before-text]),button.animation-down ::slotted([slot=slot-after-text]),button.animation-down ::slotted([slot=slot-before-text]){transition:transform var(--ptc-transition-medium) var(--ptc-standard-ease);position:relative;display:inline-block}button:hover.animation-right ::slotted([slot=slot-after-text]),button:hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}button:hover.animation-down ::slotted([slot=slot-after-text]),button:hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}button span{font-size:var(--ptc-font-size-small);font-weight:bold;line-height:0.86}.icon-left ::slotted([slot=slot-before-text]){margin-right:var(--ptc-element-spacing-01)}.icon-right ::slotted([slot=slot-after-text]){margin-left:var(--ptc-element-spacing-01)}.blackgrey{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(285deg, var(--color-primary-uigrey) 155%, #6e717c 62%)}.blackgrey:hover{box-shadow:var(--ptc-shadow-x-large)}.blackgrey span{color:var(--color-white)}.turtlegreen{box-shadow:var(--ptc-shadow-x-small);border:solid 1px #5bb73b;background-image:linear-gradient(285deg, #5bb73b 155%, #178642 62%)}.turtlegreen:hover{box-shadow:var(--ptc-shadow-x-large)}.turtlegreen span{color:var(--color-white)}.offwhite{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(to right, #ffffff, #d3d3d3, #e5e5e5)}.offwhite:hover{box-shadow:var(--ptc-shadow-x-large)}.offwhite span{color:var(--color-primary-uigrey)}.legacy-green{box-shadow:0 0 25.8px 3.2px rgba(0, 0, 0, 0.5);border:solid 2.5px var(--color-secondary-tutlegreen-dark);background-image:linear-gradient(to right, var(--color-secondary-turtlegreen), var(--color-secondary-tutlegreen-dark))}@media screen and (min-width: 768px){.legacy-green{padding:20px 20px}}.legacy-green:after{position:absolute;content:\"\";top:-1px;left:0;bottom:0;right:0;width:100%;height:103%;background-image:linear-gradient(to right, var(--color-secondary-tutlegreen-dark), var(--color-secondary-turtlegreen));opacity:0;transition:opacity 0.6s cubic-bezier(0, 0, 0.23, 1);border-radius:2px}.legacy-green:hover{box-shadow:0 0 49px 6.1px rgba(0, 0, 0, 0.55)}.legacy-green:hover span{color:var(--color-white)}.legacy-green:hover:after{opacity:1}.legacy-green span{font-family:var(--ptc-font-secondary-latin);color:var(--color-white);z-index:100;position:relative;text-transform:uppercase;font-weight:var(--ptc-font-weight-bold);letter-spacing:var(--ptc-letter-spacing-normal);font-size:var(--ptc-font-size-medium)}@media screen and (min-width: 768px){.legacy-green span{font-size:19px;letter-spacing:var(--ptc-letter-spacing-loose)}}.legacy-green icon-asset{display:inline}:host(a){border-style:solid;border-width:1px;position:relative;text-decoration:none;padding:9.4px 17.5px;border-radius:3px;text-decoration:none;display:inline-block;outline:none;position:relative}:host(a).animation-right ::slotted([slot=slot-after-text]),:host(a).animation-right ::slotted([slot=slot-before-text]),:host(a).animation-down ::slotted([slot=slot-after-text]),:host(a).animation-down ::slotted([slot=slot-before-text]){transition:all ease-out 0.25s;position:relative;display:inline-block;margin-left:5px}:host(a):hover.animation-right ::slotted([slot=slot-after-text]),:host(a):hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}:host(a):hover.animation-down ::slotted([slot=slot-after-text]),:host(a):hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}.nav{background-color:#323b42;border-radius:var(--ptc-border-radius-medium);border:1px solid var(--color-white);border-bottom-style:solid;border-bottom-width:1px;box-sizing:border-box;color:var(--color-white);display:inline-block;font-size:13px;font-stretch:100%;font-weight:var(--ptc-font-weight-bold);line-height:26px;list-style:none;padding:3px var(--ptc-element-spacing-04);position:relative;text-align:center;text-decoration:none;transition:background-color var(--ptc-transition-medium) var(--ptc-decelerated-ease)}.nav:hover{background-color:#20262a}";
92
+ const ptcButtonCss = "button:disabled{pointer-events:none;opacity:0.6}button{background-color:var(--color-primary-uigrey);display:inline-block;border-style:solid;border-width:1px;white-space:normal;position:relative;text-decoration:none;cursor:pointer;padding:9.4px 17.5px;border-radius:3px}button.animation-right ::slotted([slot=slot-after-text]),button.animation-right ::slotted([slot=slot-before-text]),button.animation-down ::slotted([slot=slot-after-text]),button.animation-down ::slotted([slot=slot-before-text]){transition:transform var(--ptc-transition-medium) var(--ptc-standard-ease);position:relative;display:inline-block}button:hover.animation-right ::slotted([slot=slot-after-text]),button:hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}button:hover.animation-down ::slotted([slot=slot-after-text]),button:hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}button span{font-size:var(--ptc-font-size-small);font-weight:bold;line-height:0.86}.icon-left ::slotted([slot=slot-before-text]){margin-right:var(--ptc-element-spacing-01)}.icon-right ::slotted([slot=slot-after-text]){margin-left:var(--ptc-element-spacing-01)}.blackgrey{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(285deg, var(--color-primary-uigrey) 155%, #6e717c 62%)}.blackgrey:hover{box-shadow:var(--ptc-shadow-x-large)}.blackgrey span{color:var(--color-white)}.turtlegreen{box-shadow:var(--ptc-shadow-x-small);border:solid 1px #5bb73b;background-image:linear-gradient(285deg, #5bb73b 155%, #178642 62%)}.turtlegreen:hover{box-shadow:var(--ptc-shadow-x-large)}.turtlegreen span{color:var(--color-white)}.offwhite{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(to right, #ffffff, #d3d3d3, #e5e5e5)}.offwhite:hover{box-shadow:var(--ptc-shadow-x-large)}.offwhite span{color:var(--color-primary-uigrey)}.legacy-green{box-shadow:0 0 25.8px 3.2px rgba(0, 0, 0, 0.5);border:solid 2.5px var(--color-secondary-tutlegreen-dark);background-image:linear-gradient(to right, var(--color-secondary-turtlegreen), var(--color-secondary-tutlegreen-dark))}@media screen and (min-width: 768px){.legacy-green{padding:20px 20px}}.legacy-green:after{position:absolute;content:\"\";top:-1px;left:0;bottom:0;right:0;width:100%;height:103%;background-image:linear-gradient(to right, var(--color-secondary-tutlegreen-dark), var(--color-secondary-turtlegreen));opacity:0;transition:opacity 0.6s cubic-bezier(0, 0, 0.23, 1);border-radius:2px}.legacy-green:hover{box-shadow:0 0 49px 6.1px rgba(0, 0, 0, 0.55)}.legacy-green:hover span{color:var(--color-white)}.legacy-green:hover:after{opacity:1}.legacy-green span{font-family:var(--ptc-font-secondary-latin);color:var(--color-white);z-index:100;position:relative;text-transform:uppercase;font-weight:var(--ptc-font-weight-bold);letter-spacing:var(--ptc-letter-spacing-normal);font-size:var(--ptc-font-size-medium)}@media screen and (min-width: 768px){.legacy-green span{font-size:19px;letter-spacing:var(--ptc-letter-spacing-loose)}}.legacy-green icon-asset{display:inline}a{border-style:solid;border-width:1px;position:relative;text-decoration:none;padding:9.4px 17.5px;border-radius:3px;text-decoration:none;display:inline-block;outline:none;position:relative}a.animation-right ::slotted([slot=slot-after-text]),a.animation-right ::slotted([slot=slot-before-text]),a.animation-down ::slotted([slot=slot-after-text]),a.animation-down ::slotted([slot=slot-before-text]){transition:all ease-out 0.25s;position:relative;display:inline-block;margin-left:5px}a:hover.animation-right ::slotted([slot=slot-after-text]),a:hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}a:hover.animation-down ::slotted([slot=slot-after-text]),a:hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}.nav{background-color:#323b42;border-radius:var(--ptc-border-radius-medium);border:1px solid var(--color-white);border-bottom-style:solid;border-bottom-width:1px;box-sizing:border-box;color:var(--color-white);display:inline-block;font-size:13px;font-stretch:100%;font-weight:var(--ptc-font-weight-bold);line-height:26px;list-style:none;padding:3px var(--ptc-element-spacing-04);position:relative;text-align:center;text-decoration:none;transition:background-color var(--ptc-transition-medium) var(--ptc-decelerated-ease)}.nav:hover{background-color:#20262a}";
93
93
 
94
94
  const PtcButton = class {
95
95
  constructor(hostRef) {
@@ -14,7 +14,7 @@ const patchEsm = () => {
14
14
  const defineCustomElements = (win, options) => {
15
15
  if (typeof window === 'undefined') return Promise.resolve();
16
16
  return patchEsm().then(() => {
17
- return index.bootstrapLazy([["ptc-card.cjs",[[1,"ptc-card",{"cardType":[1,"card-type"],"cardHref":[1,"card-href"],"target":[1],"rel":[1],"hasImage":[4,"has-image"],"hasVideo":[4,"has-video"],"hasLottie":[4,"has-lottie"],"heading":[1],"cardDate":[1,"card-date"],"styles":[1]}]]],["ptc-link.cjs",[[1,"ptc-link",{"disabled":[516],"external":[516],"href":[1],"target":[1],"linkTitle":[1,"link-title"],"theme":[1],"uppercase":[4],"fontSize":[1,"font-size"]}]]],["ptc-lottie.cjs",[[1,"ptc-lottie",{"jsonSrc":[1025,"json-src"],"speed":[1026]}]]],["list-item.cjs",[[4,"list-item",{"listType":[1,"list-type"],"linkHref":[1,"link-href"]}]]],["my-component.cjs",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]],["ptc-avatar.cjs",[[1,"ptc-avatar"]]],["ptc-footer.cjs",[[1,"ptc-footer"]]],["ptc-img.cjs",[[0,"ptc-img",{"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"imgUrl":[1,"img-url"],"imageType":[1,"image-type"],"borderRadius":[1,"border-radius"],"loadMode":[1,"load-mode"]},[[9,"resize","WindowResize"]]]]],["ptc-list.cjs",[[0,"ptc-list",{"listType":[1,"list-type"],"listItems":[16]}]]],["ptc-nav.cjs",[[1,"ptc-nav"]]],["ptc-nav-item.cjs",[[1,"ptc-nav-item",{"url":[1025],"label":[1025],"ariaExpanded":[1028,"aria-expanded"],"depth":[1538],"hasChildren":[1028,"has-children"],"parentExpanded":[1540,"parent-expanded"],"navType":[1,"nav-type"]},[[0,"handleClick","handleClick"],[9,"resize","handleResize"]]]]],["ptc-overlay.cjs",[[4,"ptc-overlay"]]],["ptc-picture.cjs",[[1,"ptc-picture",{"src":[1],"alt":[1],"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"borderRadius":[1,"border-radius"],"height":[1],"width":[1],"objectFit":[1,"object-fit"],"styles":[1],"oldSrc":[32]},[[9,"resize","WindowResize"]]]]],["ptc-spacer.cjs",[[1,"ptc-spacer",{"breakpoint":[1],"size":[1],"direction":[1]}]]],["ptc-span.cjs",[[1,"ptc-span",{"spanStyle":[1,"span-style"],"display":[1],"styles":[1]}]]],["ptc-title.cjs",[[1,"ptc-title",{"type":[1],"textAlign":[1,"text-align"],"upperline":[1]}]]],["lottie-player.cjs",[[1,"lottie-player",{"mode":[1],"autoplay":[4],"background":[513],"controls":[4],"count":[2],"direction":[2],"hover":[4],"loop":[516],"renderer":[1],"speed":[2],"src":[1],"currentState":[1,"current-state"],"seeker":[8],"intermission":[2],"play":[64],"pause":[64],"stop":[64],"seek":[64],"getLottie":[64],"setSpeed":[64],"setDirection":[64],"setLooping":[64],"togglePlay":[64],"toggleLooping":[64]}]]],["ptc-date.cjs",[[1,"ptc-date",{"year":[2],"month":[2],"day":[2],"country":[1],"dateString":[1,"date-string"],"dateStyles":[1,"date-styles"]}]]],["icon-asset_5.cjs",[[1,"ptc-announcement",{"btnText":[513,"btn-text"],"visible":[1540],"btnLink":[513,"btn-link"],"tempContainer":[4,"temp-container"]}],[1,"ptc-para",{"fontSize":[1,"font-size"],"fontWeight":[1,"font-weight"],"paraStyle":[1,"para-style"],"paraMargin":[1,"para-margin"]}],[1,"ptc-button",{"disabled":[516],"type":[1],"color":[1],"iconAnimation":[1,"icon-animation"],"iconPosition":[1,"icon-position"],"linkHref":[1,"link-href"],"target":[1],"rel":[1],"styles":[1]}],[1,"ptc-svg-btn",{"svgName":[1,"svg-name"]}],[0,"icon-asset",{"name":[1],"size":[1],"type":[1],"spin":[1],"pulse":[1],"color":[1]}]]]], options);
17
+ return index.bootstrapLazy([["ptc-card.cjs",[[1,"ptc-card",{"cardType":[1,"card-type"],"cardHref":[1,"card-href"],"target":[1],"rel":[1],"hasImage":[4,"has-image"],"hasVideo":[4,"has-video"],"hasLottie":[4,"has-lottie"],"heading":[1],"cardDate":[1,"card-date"],"styles":[1]}]]],["ptc-link.cjs",[[1,"ptc-link",{"disabled":[516],"external":[516],"href":[1],"target":[1],"linkTitle":[1,"link-title"],"theme":[1],"uppercase":[4],"fontSize":[1,"font-size"]}]]],["ptc-lottie.cjs",[[1,"ptc-lottie",{"jsonSrc":[1025,"json-src"],"speed":[1026]}]]],["list-item.cjs",[[4,"list-item",{"listType":[1,"list-type"],"linkHref":[1,"link-href"]}]]],["my-component.cjs",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]],["ptc-avatar.cjs",[[1,"ptc-avatar"]]],["ptc-countdown.cjs",[[1,"ptc-countdown"]]],["ptc-footer.cjs",[[1,"ptc-footer"]]],["ptc-img.cjs",[[0,"ptc-img",{"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"imgUrl":[1,"img-url"],"imageType":[1,"image-type"],"borderRadius":[1,"border-radius"],"loadMode":[1,"load-mode"]},[[9,"resize","WindowResize"]]]]],["ptc-list.cjs",[[0,"ptc-list",{"listType":[1,"list-type"],"listItems":[16]}]]],["ptc-nav.cjs",[[1,"ptc-nav"]]],["ptc-nav-item.cjs",[[1,"ptc-nav-item",{"url":[1025],"label":[1025],"ariaExpanded":[1028,"aria-expanded"],"depth":[1538],"hasChildren":[1028,"has-children"],"parentExpanded":[1540,"parent-expanded"],"navType":[1,"nav-type"]},[[0,"handleClick","handleClick"],[9,"resize","handleResize"]]]]],["ptc-overlay.cjs",[[4,"ptc-overlay"]]],["ptc-picture.cjs",[[1,"ptc-picture",{"src":[1],"alt":[1],"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"borderRadius":[1,"border-radius"],"height":[1],"width":[1],"objectFit":[1,"object-fit"],"styles":[1],"oldSrc":[32]},[[9,"resize","WindowResize"]]]]],["ptc-spacer.cjs",[[1,"ptc-spacer",{"breakpoint":[1],"size":[1],"direction":[1]}]]],["ptc-span.cjs",[[1,"ptc-span",{"spanStyle":[1,"span-style"],"display":[1],"styles":[1]}]]],["ptc-title.cjs",[[1,"ptc-title",{"type":[1],"textAlign":[1,"text-align"],"upperline":[1]}]]],["lottie-player.cjs",[[1,"lottie-player",{"mode":[1],"autoplay":[4],"background":[513],"controls":[4],"count":[2],"direction":[2],"hover":[4],"loop":[516],"renderer":[1],"speed":[2],"src":[1],"currentState":[1,"current-state"],"seeker":[8],"intermission":[2],"play":[64],"pause":[64],"stop":[64],"seek":[64],"getLottie":[64],"setSpeed":[64],"setDirection":[64],"setLooping":[64],"togglePlay":[64],"toggleLooping":[64]}]]],["ptc-date.cjs",[[1,"ptc-date",{"year":[2],"month":[2],"day":[2],"country":[1],"dateString":[1,"date-string"],"dateStyles":[1,"date-styles"]}]]],["icon-asset_5.cjs",[[1,"ptc-announcement",{"btnText":[513,"btn-text"],"visible":[1540],"btnLink":[513,"btn-link"],"tempContainer":[4,"temp-container"]}],[1,"ptc-para",{"fontSize":[1,"font-size"],"fontWeight":[1,"font-weight"],"paraStyle":[1,"para-style"],"paraMargin":[1,"para-margin"]}],[1,"ptc-button",{"disabled":[516],"type":[1],"color":[1],"iconAnimation":[1,"icon-animation"],"iconPosition":[1,"icon-position"],"linkHref":[1,"link-href"],"target":[1],"rel":[1],"styles":[1]}],[1,"ptc-svg-btn",{"svgName":[1,"svg-name"]}],[0,"icon-asset",{"name":[1],"size":[1],"type":[1],"spin":[1],"pulse":[1],"color":[1]}]]]], options);
18
18
  });
19
19
  };
20
20
 
@@ -0,0 +1,19 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ const index = require('./index-ac192914.js');
6
+
7
+ const ptcCountdownCss = ":host{display:block}";
8
+
9
+ const PtcCountdown = class {
10
+ constructor(hostRef) {
11
+ index.registerInstance(this, hostRef);
12
+ }
13
+ render() {
14
+ return (index.h(index.Host, null, index.h("slot", null)));
15
+ }
16
+ };
17
+ PtcCountdown.style = ptcCountdownCss;
18
+
19
+ exports.ptc_countdown = PtcCountdown;
@@ -107,7 +107,7 @@ const PtcPicture = class {
107
107
  }
108
108
  render() {
109
109
  const classMap = this.getCssClassMap();
110
- return (index.h(index.Host, null, this.styles && index.h("style", null, this.styles), index.h("img", Object.assign({ class: classMap, "data-xs": `${this.src}:${this.sizeXs}`, "data-sm": `${this.src}:${this.sizeSm}`, "data-md": `${this.src}:${this.sizeMd}`, "data-lg": `${this.src}:${this.sizeLg}` }, (!!this.width ? { width: this.width } : {}), (!!this.height ? { height: this.height } : {}), { alt: this.alt }))));
110
+ return (index.h(index.Host, null, this.styles && index.h("style", null, this.styles), index.h("img", Object.assign({ class: classMap, "data-xs": !!this.sizeXs ? `${this.src}:${this.sizeXs}` : `${this.src}`, "data-sm": !!this.sizeSm ? `${this.src}:${this.sizeSm}` : `${this.src}`, "data-md": !!this.sizeMd ? `${this.src}:${this.sizeMd}` : `${this.src}`, "data-lg": !!this.sizeLg ? `${this.src}:${this.sizeLg}` : `${this.src}` }, (!!this.width ? { width: this.width } : {}), (!!this.height ? { height: this.height } : {}), { alt: this.alt }))));
111
111
  }
112
112
  getCurrentBreakPoints() {
113
113
  // Define local variables
@@ -15,5 +15,5 @@ const patchBrowser = () => {
15
15
  };
16
16
 
17
17
  patchBrowser().then(options => {
18
- return index.bootstrapLazy([["ptc-card.cjs",[[1,"ptc-card",{"cardType":[1,"card-type"],"cardHref":[1,"card-href"],"target":[1],"rel":[1],"hasImage":[4,"has-image"],"hasVideo":[4,"has-video"],"hasLottie":[4,"has-lottie"],"heading":[1],"cardDate":[1,"card-date"],"styles":[1]}]]],["ptc-link.cjs",[[1,"ptc-link",{"disabled":[516],"external":[516],"href":[1],"target":[1],"linkTitle":[1,"link-title"],"theme":[1],"uppercase":[4],"fontSize":[1,"font-size"]}]]],["ptc-lottie.cjs",[[1,"ptc-lottie",{"jsonSrc":[1025,"json-src"],"speed":[1026]}]]],["list-item.cjs",[[4,"list-item",{"listType":[1,"list-type"],"linkHref":[1,"link-href"]}]]],["my-component.cjs",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]],["ptc-avatar.cjs",[[1,"ptc-avatar"]]],["ptc-footer.cjs",[[1,"ptc-footer"]]],["ptc-img.cjs",[[0,"ptc-img",{"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"imgUrl":[1,"img-url"],"imageType":[1,"image-type"],"borderRadius":[1,"border-radius"],"loadMode":[1,"load-mode"]},[[9,"resize","WindowResize"]]]]],["ptc-list.cjs",[[0,"ptc-list",{"listType":[1,"list-type"],"listItems":[16]}]]],["ptc-nav.cjs",[[1,"ptc-nav"]]],["ptc-nav-item.cjs",[[1,"ptc-nav-item",{"url":[1025],"label":[1025],"ariaExpanded":[1028,"aria-expanded"],"depth":[1538],"hasChildren":[1028,"has-children"],"parentExpanded":[1540,"parent-expanded"],"navType":[1,"nav-type"]},[[0,"handleClick","handleClick"],[9,"resize","handleResize"]]]]],["ptc-overlay.cjs",[[4,"ptc-overlay"]]],["ptc-picture.cjs",[[1,"ptc-picture",{"src":[1],"alt":[1],"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"borderRadius":[1,"border-radius"],"height":[1],"width":[1],"objectFit":[1,"object-fit"],"styles":[1],"oldSrc":[32]},[[9,"resize","WindowResize"]]]]],["ptc-spacer.cjs",[[1,"ptc-spacer",{"breakpoint":[1],"size":[1],"direction":[1]}]]],["ptc-span.cjs",[[1,"ptc-span",{"spanStyle":[1,"span-style"],"display":[1],"styles":[1]}]]],["ptc-title.cjs",[[1,"ptc-title",{"type":[1],"textAlign":[1,"text-align"],"upperline":[1]}]]],["lottie-player.cjs",[[1,"lottie-player",{"mode":[1],"autoplay":[4],"background":[513],"controls":[4],"count":[2],"direction":[2],"hover":[4],"loop":[516],"renderer":[1],"speed":[2],"src":[1],"currentState":[1,"current-state"],"seeker":[8],"intermission":[2],"play":[64],"pause":[64],"stop":[64],"seek":[64],"getLottie":[64],"setSpeed":[64],"setDirection":[64],"setLooping":[64],"togglePlay":[64],"toggleLooping":[64]}]]],["ptc-date.cjs",[[1,"ptc-date",{"year":[2],"month":[2],"day":[2],"country":[1],"dateString":[1,"date-string"],"dateStyles":[1,"date-styles"]}]]],["icon-asset_5.cjs",[[1,"ptc-announcement",{"btnText":[513,"btn-text"],"visible":[1540],"btnLink":[513,"btn-link"],"tempContainer":[4,"temp-container"]}],[1,"ptc-para",{"fontSize":[1,"font-size"],"fontWeight":[1,"font-weight"],"paraStyle":[1,"para-style"],"paraMargin":[1,"para-margin"]}],[1,"ptc-button",{"disabled":[516],"type":[1],"color":[1],"iconAnimation":[1,"icon-animation"],"iconPosition":[1,"icon-position"],"linkHref":[1,"link-href"],"target":[1],"rel":[1],"styles":[1]}],[1,"ptc-svg-btn",{"svgName":[1,"svg-name"]}],[0,"icon-asset",{"name":[1],"size":[1],"type":[1],"spin":[1],"pulse":[1],"color":[1]}]]]], options);
18
+ return index.bootstrapLazy([["ptc-card.cjs",[[1,"ptc-card",{"cardType":[1,"card-type"],"cardHref":[1,"card-href"],"target":[1],"rel":[1],"hasImage":[4,"has-image"],"hasVideo":[4,"has-video"],"hasLottie":[4,"has-lottie"],"heading":[1],"cardDate":[1,"card-date"],"styles":[1]}]]],["ptc-link.cjs",[[1,"ptc-link",{"disabled":[516],"external":[516],"href":[1],"target":[1],"linkTitle":[1,"link-title"],"theme":[1],"uppercase":[4],"fontSize":[1,"font-size"]}]]],["ptc-lottie.cjs",[[1,"ptc-lottie",{"jsonSrc":[1025,"json-src"],"speed":[1026]}]]],["list-item.cjs",[[4,"list-item",{"listType":[1,"list-type"],"linkHref":[1,"link-href"]}]]],["my-component.cjs",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]],["ptc-avatar.cjs",[[1,"ptc-avatar"]]],["ptc-countdown.cjs",[[1,"ptc-countdown"]]],["ptc-footer.cjs",[[1,"ptc-footer"]]],["ptc-img.cjs",[[0,"ptc-img",{"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"imgUrl":[1,"img-url"],"imageType":[1,"image-type"],"borderRadius":[1,"border-radius"],"loadMode":[1,"load-mode"]},[[9,"resize","WindowResize"]]]]],["ptc-list.cjs",[[0,"ptc-list",{"listType":[1,"list-type"],"listItems":[16]}]]],["ptc-nav.cjs",[[1,"ptc-nav"]]],["ptc-nav-item.cjs",[[1,"ptc-nav-item",{"url":[1025],"label":[1025],"ariaExpanded":[1028,"aria-expanded"],"depth":[1538],"hasChildren":[1028,"has-children"],"parentExpanded":[1540,"parent-expanded"],"navType":[1,"nav-type"]},[[0,"handleClick","handleClick"],[9,"resize","handleResize"]]]]],["ptc-overlay.cjs",[[4,"ptc-overlay"]]],["ptc-picture.cjs",[[1,"ptc-picture",{"src":[1],"alt":[1],"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"borderRadius":[1,"border-radius"],"height":[1],"width":[1],"objectFit":[1,"object-fit"],"styles":[1],"oldSrc":[32]},[[9,"resize","WindowResize"]]]]],["ptc-spacer.cjs",[[1,"ptc-spacer",{"breakpoint":[1],"size":[1],"direction":[1]}]]],["ptc-span.cjs",[[1,"ptc-span",{"spanStyle":[1,"span-style"],"display":[1],"styles":[1]}]]],["ptc-title.cjs",[[1,"ptc-title",{"type":[1],"textAlign":[1,"text-align"],"upperline":[1]}]]],["lottie-player.cjs",[[1,"lottie-player",{"mode":[1],"autoplay":[4],"background":[513],"controls":[4],"count":[2],"direction":[2],"hover":[4],"loop":[516],"renderer":[1],"speed":[2],"src":[1],"currentState":[1,"current-state"],"seeker":[8],"intermission":[2],"play":[64],"pause":[64],"stop":[64],"seek":[64],"getLottie":[64],"setSpeed":[64],"setDirection":[64],"setLooping":[64],"togglePlay":[64],"toggleLooping":[64]}]]],["ptc-date.cjs",[[1,"ptc-date",{"year":[2],"month":[2],"day":[2],"country":[1],"dateString":[1,"date-string"],"dateStyles":[1,"date-styles"]}]]],["icon-asset_5.cjs",[[1,"ptc-announcement",{"btnText":[513,"btn-text"],"visible":[1540],"btnLink":[513,"btn-link"],"tempContainer":[4,"temp-container"]}],[1,"ptc-para",{"fontSize":[1,"font-size"],"fontWeight":[1,"font-weight"],"paraStyle":[1,"para-style"],"paraMargin":[1,"para-margin"]}],[1,"ptc-button",{"disabled":[516],"type":[1],"color":[1],"iconAnimation":[1,"icon-animation"],"iconPosition":[1,"icon-position"],"linkHref":[1,"link-href"],"target":[1],"rel":[1],"styles":[1]}],[1,"ptc-svg-btn",{"svgName":[1,"svg-name"]}],[0,"icon-asset",{"name":[1],"size":[1],"type":[1],"spin":[1],"pulse":[1],"color":[1]}]]]], options);
19
19
  });
@@ -7,6 +7,7 @@
7
7
  "./components/ptc-avatar/ptc-avatar.js",
8
8
  "./components/ptc-button/ptc-button.js",
9
9
  "./components/ptc-card/ptc-card.js",
10
+ "./components/ptc-countdown/ptc-countdown.js",
10
11
  "./components/ptc-date/ptc-date.js",
11
12
  "./components/ptc-footer/ptc-footer.js",
12
13
  "./components/ptc-img/ptc-img.js",
@@ -20,11 +20,11 @@ export class IconAsset {
20
20
  /**
21
21
  * Icon Color
22
22
  */
23
- this.color = 'black';
24
- this.regularSprite = getAssetPath('./assets/regular.svg');
25
- this.solidSprite = getAssetPath('./assets/solid.svg');
26
- this.brandSprite = getAssetPath('./assets/brands.svg');
27
- this.ptcSprite = getAssetPath('./assets/ptc-sprite.svg');
23
+ this.color = 'default';
24
+ this.regularSprite = getAssetPath('./media/regular.svg');
25
+ this.solidSprite = getAssetPath('./media/solid.svg');
26
+ this.brandSprite = getAssetPath('./media/brands.svg');
27
+ this.ptcSprite = getAssetPath('./media/designer.svg');
28
28
  }
29
29
  render() {
30
30
  const classMap = this.getCssClassMap();
@@ -64,7 +64,7 @@ export class IconAsset {
64
64
  static get styleUrls() { return {
65
65
  "$": ["icon-asset.css"]
66
66
  }; }
67
- static get assetsDirs() { return ["assets"]; }
67
+ static get assetsDirs() { return ["media"]; }
68
68
  static get properties() { return {
69
69
  "name": {
70
70
  "type": "string",
@@ -159,8 +159,8 @@ export class IconAsset {
159
159
  "type": "string",
160
160
  "mutable": false,
161
161
  "complexType": {
162
- "original": "'black' | 'white' | 'ptc-green'",
163
- "resolved": "\"black\" | \"ptc-green\" | \"white\"",
162
+ "original": "'black' | 'white' | 'ptc-green' | 'default'",
163
+ "resolved": "\"black\" | \"default\" | \"ptc-green\" | \"white\"",
164
164
  "references": {}
165
165
  },
166
166
  "required": false,
@@ -171,7 +171,7 @@ export class IconAsset {
171
171
  },
172
172
  "attribute": "color",
173
173
  "reflect": false,
174
- "defaultValue": "'black'"
174
+ "defaultValue": "'default'"
175
175
  }
176
176
  }; }
177
177
  }
@@ -169,13 +169,13 @@
169
169
  <defs></defs>
170
170
  <g id="Layer_2">
171
171
  <g id="Layer_1-2">
172
- <polygon points="54.5 28.88 54.5 9.06 38.8 0 21.65 9.9 54.5 28.88"></polygon>
173
- <polygon points="60.44 50.45 77.6 40.54 77.6 22.4 60.44 12.49 60.44 50.45"></polygon>
174
- <polygon points="23.09 60.78 23.09 80.55 38.8 89.61 55.91 79.74 23.09 60.78"></polygon>
175
- <polygon points="44.71 66.4 61.85 76.3 77.6 67.2 77.6 47.4 44.71 66.4"></polygon>
176
- <polygon points="32.84 23.23 15.71 13.33 0 22.4 0 42.21 32.84 23.23"></polygon>
177
- <polygon points="17.16 39.15 0 49.07 0 67.2 17.16 77.11 17.16 39.15"></polygon>
178
- <polygon points="54.5 53.87 38.8 62.94 23.09 53.87 23.09 35.74 38.8 26.67 54.5 35.74 54.5 53.87"></polygon>
172
+ <polygon style="fill:white;" points="54.5 28.88 54.5 9.06 38.8 0 21.65 9.9 54.5 28.88"></polygon>
173
+ <polygon style="fill:white;" points="60.44 50.45 77.6 40.54 77.6 22.4 60.44 12.49 60.44 50.45"></polygon>
174
+ <polygon style="fill:white;" points="23.09 60.78 23.09 80.55 38.8 89.61 55.91 79.74 23.09 60.78"></polygon>
175
+ <polygon style="fill:white;" points="44.71 66.4 61.85 76.3 77.6 67.2 77.6 47.4 44.71 66.4"></polygon>
176
+ <polygon style="fill:white;" points="32.84 23.23 15.71 13.33 0 22.4 0 42.21 32.84 23.23"></polygon>
177
+ <polygon style="fill:white;" points="17.16 39.15 0 49.07 0 67.2 17.16 77.11 17.16 39.15"></polygon>
178
+ <polygon style="fill:#5cb747;" points="54.5 53.87 38.8 62.94 23.09 53.87 23.09 35.74 38.8 26.67 54.5 35.74 54.5 53.87"></polygon>
179
179
  </g>
180
180
  </g>
181
181
  </symbol>
@@ -183,9 +183,9 @@
183
183
  <defs></defs>
184
184
  <g id="Layer_2">
185
185
  <g id="Layer_1-2">
186
- <path id="Path_4275" d="M38.54,63.26,71.23,44.39,38.45,25.53,5.82,44.39Z"></path>
187
- <path id="Path_4276" d="M38.25,0,0,22.35V40.94L38.44,18.71l38.5,22.16V22.33Z"></path>
188
- <path id="Path_4277" d="M0,66.45,38.69,88.78,77,66.43V47.91L38.55,70.08,0,47.85Z"></path>
186
+ <path id="Path_4275" style="fill:#5cb747;" d="M38.54,63.26,71.23,44.39,38.45,25.53,5.82,44.39Z"></path>
187
+ <path id="Path_4276" style="fill:white;" d="M38.25,0,0,22.35V40.94L38.44,18.71l38.5,22.16V22.33Z"></path>
188
+ <path id="Path_4277" style="fill:white;" d="M0,66.45,38.69,88.78,77,66.43V47.91L38.55,70.08,0,47.85Z"></path>
189
189
  </g>
190
190
  </g>
191
191
  </symbol>
@@ -193,10 +193,10 @@
193
193
  <defs></defs>
194
194
  <g id="Layer_2">
195
195
  <g id="Layer_1-2">
196
- <polygon points="41.56 41.6 72.06 59.2 72.06 24 41.56 41.6"></polygon>
197
- <polygon points="36.01 38.4 69.28 19.2 36.03 0 2.75 19.21 36.01 38.4"></polygon>
198
- <polygon points="30.45 41.6 0 24.03 0 59.18 30.45 41.6"></polygon>
199
- <polygon points="36.01 44.81 2.76 64 36.03 83.21 69.29 64.01 36.01 44.81"></polygon>
196
+ <polygon style="fill:#5cb747;" points="41.56 41.6 72.06 59.2 72.06 24 41.56 41.6"></polygon>
197
+ <polygon style="fill:white;" points="36.01 38.4 69.28 19.2 36.03 0 2.75 19.21 36.01 38.4"></polygon>
198
+ <polygon style="fill:#5cb747;" points="30.45 41.6 0 24.03 0 59.18 30.45 41.6"></polygon>
199
+ <polygon style="fill:white;" points="36.01 44.81 2.76 64 36.03 83.21 69.29 64.01 36.01 44.81"></polygon>
200
200
  </g>
201
201
  </g>
202
202
  </symbol>
@@ -204,12 +204,12 @@
204
204
  <defs></defs>
205
205
  <g id="Layer_2">
206
206
  <g id="Layer_1-2">
207
- <polygon points="13.92 27.93 48.65 7.82 35.08 0 0 20.27 0 38.41 13.92 46.67 13.92 27.93"></polygon>
208
- <polygon points="0 44.37 0 60.99 35.27 81.35 50.71 72.45 50.71 55.42 35.1 65.59 0 44.37"></polygon>
209
- <polygon points="54.05 10.94 39.55 19.36 55.96 28.82 55.93 69.42 70.53 60.99 70.53 20.38 54.05 10.94"></polygon>
210
- <polygon points="25.18 34.64 40.46 25.79 34.52 22.36 19.08 31.28 19.08 39.23 25.18 42.81 25.18 34.64"></polygon>
211
- <polygon points="35.09 52.18 19.08 42.44 19.08 49.72 35.09 59.33 41.67 55.27 41.67 47.96 35.09 52.18"></polygon>
212
- <polygon points="37.02 31.24 44.33 35.46 44.32 53.59 50.71 49.55 50.71 31.71 43.43 27.52 37.02 31.24"></polygon>
207
+ <polygon style="fill:#5cb747;" points="13.92 27.93 48.65 7.82 35.08 0 0 20.27 0 38.41 13.92 46.67 13.92 27.93"></polygon>
208
+ <polygon style="fill:#5cb747;" points="0 44.37 0 60.99 35.27 81.35 50.71 72.45 50.71 55.42 35.1 65.59 0 44.37"></polygon>
209
+ <polygon style="fill:#5cb747;" points="54.05 10.94 39.55 19.36 55.96 28.82 55.93 69.42 70.53 60.99 70.53 20.38 54.05 10.94"></polygon>
210
+ <polygon style="fill:white;" points="25.18 34.64 40.46 25.79 34.52 22.36 19.08 31.28 19.08 39.23 25.18 42.81 25.18 34.64"></polygon>
211
+ <polygon style="fill:white;" points="35.09 52.18 19.08 42.44 19.08 49.72 35.09 59.33 41.67 55.27 41.67 47.96 35.09 52.18"></polygon>
212
+ <polygon style="fill:white;" points="37.02 31.24 44.33 35.46 44.32 53.59 50.71 49.55 50.71 31.71 43.43 27.52 37.02 31.24"></polygon>
213
213
  </g>
214
214
  </g>
215
215
  </symbol>
@@ -217,9 +217,9 @@
217
217
  <defs></defs>
218
218
  <g id="Layer_2">
219
219
  <g id="Layer_1-2">
220
- <polygon points="37.7 40.16 72.48 20.1 37.7 0 2.9 20.1 37.7 40.16"></polygon>
221
- <polygon points="34.81 45.13 0 25.07 0 65.27 34.81 85.37 34.81 45.13"></polygon>
222
- <polygon points="40.56 45.13 40.56 85.37 75.37 65.27 75.37 25.04 40.56 45.13"></polygon>
220
+ <polygon style="fill:white;" points="37.7 40.16 72.48 20.1 37.7 0 2.9 20.1 37.7 40.16"></polygon>
221
+ <polygon style="fill:white;" points="34.81 45.13 0 25.07 0 65.27 34.81 85.37 34.81 45.13"></polygon>
222
+ <polygon style="fill:#5cb747;" points="40.56 45.13 40.56 85.37 75.37 65.27 75.37 25.04 40.56 45.13"></polygon>
223
223
  </g>
224
224
  </g>
225
225
  </symbol>
@@ -227,12 +227,12 @@
227
227
  <defs></defs>
228
228
  <g id="Layer_2">
229
229
  <g id="Layer_1-2">
230
- <path id="Path_4334" d="M60.26,25.14l9.51-5.5L35.85,0,13.4,13.48,22.9,19l12.94-8Z"></path>
231
- <path id="Path_4335" d="M22.77,76.11v-11l-13.25-8V32.25L0,26.76V62.61Z"></path>
232
- <path id="Path_4336" d="M56.35,48.39l0,9.72L36,69.78V83.67l-8.89-5.5V64.92Z"></path>
233
- <path id="Path_4337" d="M22.77,59.94l-8.62-5.11,0-25L0,21.5l9-5.43,13.73,8Z"></path>
234
- <path id="Path_4338" d="M70.21,24.37l-.09,11.49-9.56,5.5L26.86,21.84l9.35-5.61L60.27,30.07Z"></path>
235
- <path id="Path_4339" d="M40.37,83.62,70.21,66.49V40.65L60.7,46.08V61.31L40.36,73Z"></path>
230
+ <path id="Path_4334" style="fill:#5cb747;" d="M60.26,25.14l9.51-5.5L35.85,0,13.4,13.48,22.9,19l12.94-8Z"></path>
231
+ <path id="Path_4335" style="fill:white;" d="M22.77,76.11v-11l-13.25-8V32.25L0,26.76V62.61Z"></path>
232
+ <path id="Path_4336" style="fill:#5cb747;" d="M56.35,48.39l0,9.72L36,69.78V83.67l-8.89-5.5V64.92Z"></path>
233
+ <path id="Path_4337" style="fill:#5cb747;" d="M22.77,59.94l-8.62-5.11,0-25L0,21.5l9-5.43,13.73,8Z"></path>
234
+ <path id="Path_4338" style="fill:white;" d="M70.21,24.37l-.09,11.49-9.56,5.5L26.86,21.84l9.35-5.61L60.27,30.07Z"></path>
235
+ <path id="Path_4339" style="fill:white;" d="M40.37,83.62,70.21,66.49V40.65L60.7,46.08V61.31L40.36,73Z"></path>
236
236
  </g>
237
237
  </g>
238
238
  </symbol>
@@ -133,7 +133,7 @@ button span {
133
133
  display: inline;
134
134
  }
135
135
 
136
- :host(a) {
136
+ a {
137
137
  border-style: solid;
138
138
  border-width: 1px;
139
139
  position: relative;
@@ -145,20 +145,20 @@ button span {
145
145
  outline: none;
146
146
  position: relative;
147
147
  }
148
- :host(a).animation-right ::slotted([slot=slot-after-text]),
149
- :host(a).animation-right ::slotted([slot=slot-before-text]), :host(a).animation-down ::slotted([slot=slot-after-text]),
150
- :host(a).animation-down ::slotted([slot=slot-before-text]) {
148
+ a.animation-right ::slotted([slot=slot-after-text]),
149
+ a.animation-right ::slotted([slot=slot-before-text]), a.animation-down ::slotted([slot=slot-after-text]),
150
+ a.animation-down ::slotted([slot=slot-before-text]) {
151
151
  transition: all ease-out 0.25s;
152
152
  position: relative;
153
153
  display: inline-block;
154
154
  margin-left: 5px;
155
155
  }
156
- :host(a):hover.animation-right ::slotted([slot=slot-after-text]),
157
- :host(a):hover.animation-right ::slotted([slot=slot-before-text]) {
156
+ a:hover.animation-right ::slotted([slot=slot-after-text]),
157
+ a:hover.animation-right ::slotted([slot=slot-before-text]) {
158
158
  transform: translateX(var(--ptc-element-spacing-02));
159
159
  }
160
- :host(a):hover.animation-down ::slotted([slot=slot-after-text]),
161
- :host(a):hover.animation-down ::slotted([slot=slot-before-text]) {
160
+ a:hover.animation-down ::slotted([slot=slot-after-text]),
161
+ a:hover.animation-down ::slotted([slot=slot-before-text]) {
162
162
  transform: translateY(var(--ptc-element-spacing-02));
163
163
  }
164
164
 
@@ -0,0 +1,3 @@
1
+ :host {
2
+ display: block;
3
+ }
@@ -0,0 +1,15 @@
1
+ import { Component, Host, h } from '@stencil/core';
2
+ export class PtcCountdown {
3
+ render() {
4
+ return (h(Host, null,
5
+ h("slot", null)));
6
+ }
7
+ static get is() { return "ptc-countdown"; }
8
+ static get encapsulation() { return "shadow"; }
9
+ static get originalStyleUrls() { return {
10
+ "$": ["ptc-countdown.css"]
11
+ }; }
12
+ static get styleUrls() { return {
13
+ "$": ["ptc-countdown.css"]
14
+ }; }
15
+ }
@@ -101,7 +101,7 @@ export class PtcPicture {
101
101
  const classMap = this.getCssClassMap();
102
102
  return (h(Host, null,
103
103
  this.styles && h("style", null, this.styles),
104
- h("img", Object.assign({ class: classMap, "data-xs": `${this.src}:${this.sizeXs}`, "data-sm": `${this.src}:${this.sizeSm}`, "data-md": `${this.src}:${this.sizeMd}`, "data-lg": `${this.src}:${this.sizeLg}` }, (!!this.width ? { width: this.width } : {}), (!!this.height ? { height: this.height } : {}), { alt: this.alt }))));
104
+ h("img", Object.assign({ class: classMap, "data-xs": !!this.sizeXs ? `${this.src}:${this.sizeXs}` : `${this.src}`, "data-sm": !!this.sizeSm ? `${this.src}:${this.sizeSm}` : `${this.src}`, "data-md": !!this.sizeMd ? `${this.src}:${this.sizeMd}` : `${this.src}`, "data-lg": !!this.sizeLg ? `${this.src}:${this.sizeLg}` : `${this.src}` }, (!!this.width ? { width: this.width } : {}), (!!this.height ? { height: this.height } : {}), { alt: this.alt }))));
105
105
  }
106
106
  getCurrentBreakPoints() {
107
107
  // Define local variables
@@ -1,5 +1,5 @@
1
1
  import { Component, Host, h, Prop } from '@stencil/core';
2
- import closeSvg from '../../assets/svg-imgs/close.svg';
2
+ import closeSvg from '../../media/svg-imgs/close.svg';
3
3
  export class PtcSvgBtn {
4
4
  render() {
5
5
  return (h(Host, null, !!this.svgName && this.svgName === 'close' ? h("div", { class: 'svg-close', innerHTML: closeSvg }) : null));
@@ -44,6 +44,12 @@ export const PtcCard: {
44
44
  new (): PtcCard;
45
45
  };
46
46
 
47
+ interface PtcCountdown extends Components.PtcCountdown, HTMLElement {}
48
+ export const PtcCountdown: {
49
+ prototype: PtcCountdown;
50
+ new (): PtcCountdown;
51
+ };
52
+
47
53
  interface PtcDate extends Components.PtcDate, HTMLElement {}
48
54
  export const PtcDate: {
49
55
  prototype: PtcDate;
@@ -26,11 +26,11 @@ const IconAsset$1 = class extends HTMLElement {
26
26
  /**
27
27
  * Icon Color
28
28
  */
29
- this.color = 'black';
30
- this.regularSprite = getAssetPath('./assets/regular.svg');
31
- this.solidSprite = getAssetPath('./assets/solid.svg');
32
- this.brandSprite = getAssetPath('./assets/brands.svg');
33
- this.ptcSprite = getAssetPath('./assets/ptc-sprite.svg');
29
+ this.color = 'default';
30
+ this.regularSprite = getAssetPath('./media/regular.svg');
31
+ this.solidSprite = getAssetPath('./media/solid.svg');
32
+ this.brandSprite = getAssetPath('./media/brands.svg');
33
+ this.ptcSprite = getAssetPath('./media/designer.svg');
34
34
  }
35
35
  render() {
36
36
  const classMap = this.getCssClassMap();
@@ -55,7 +55,7 @@ const IconAsset$1 = class extends HTMLElement {
55
55
  [this.color]: true,
56
56
  };
57
57
  }
58
- static get assetsDirs() { return ["assets"]; }
58
+ static get assetsDirs() { return ["media"]; }
59
59
  static get style() { return iconAssetCss; }
60
60
  };
61
61
 
@@ -13616,7 +13616,7 @@ const PtcAvatar$1 = class extends HTMLElement {
13616
13616
  static get style() { return ptcAvatarCss; }
13617
13617
  };
13618
13618
 
13619
- const ptcButtonCss = "button:disabled{pointer-events:none;opacity:0.6}button{background-color:var(--color-primary-uigrey);display:inline-block;border-style:solid;border-width:1px;white-space:normal;position:relative;text-decoration:none;cursor:pointer;padding:9.4px 17.5px;border-radius:3px}button.animation-right ::slotted([slot=slot-after-text]),button.animation-right ::slotted([slot=slot-before-text]),button.animation-down ::slotted([slot=slot-after-text]),button.animation-down ::slotted([slot=slot-before-text]){transition:transform var(--ptc-transition-medium) var(--ptc-standard-ease);position:relative;display:inline-block}button:hover.animation-right ::slotted([slot=slot-after-text]),button:hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}button:hover.animation-down ::slotted([slot=slot-after-text]),button:hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}button span{font-size:var(--ptc-font-size-small);font-weight:bold;line-height:0.86}.icon-left ::slotted([slot=slot-before-text]){margin-right:var(--ptc-element-spacing-01)}.icon-right ::slotted([slot=slot-after-text]){margin-left:var(--ptc-element-spacing-01)}.blackgrey{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(285deg, var(--color-primary-uigrey) 155%, #6e717c 62%)}.blackgrey:hover{box-shadow:var(--ptc-shadow-x-large)}.blackgrey span{color:var(--color-white)}.turtlegreen{box-shadow:var(--ptc-shadow-x-small);border:solid 1px #5bb73b;background-image:linear-gradient(285deg, #5bb73b 155%, #178642 62%)}.turtlegreen:hover{box-shadow:var(--ptc-shadow-x-large)}.turtlegreen span{color:var(--color-white)}.offwhite{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(to right, #ffffff, #d3d3d3, #e5e5e5)}.offwhite:hover{box-shadow:var(--ptc-shadow-x-large)}.offwhite span{color:var(--color-primary-uigrey)}.legacy-green{box-shadow:0 0 25.8px 3.2px rgba(0, 0, 0, 0.5);border:solid 2.5px var(--color-secondary-tutlegreen-dark);background-image:linear-gradient(to right, var(--color-secondary-turtlegreen), var(--color-secondary-tutlegreen-dark))}@media screen and (min-width: 768px){.legacy-green{padding:20px 20px}}.legacy-green:after{position:absolute;content:\"\";top:-1px;left:0;bottom:0;right:0;width:100%;height:103%;background-image:linear-gradient(to right, var(--color-secondary-tutlegreen-dark), var(--color-secondary-turtlegreen));opacity:0;transition:opacity 0.6s cubic-bezier(0, 0, 0.23, 1);border-radius:2px}.legacy-green:hover{box-shadow:0 0 49px 6.1px rgba(0, 0, 0, 0.55)}.legacy-green:hover span{color:var(--color-white)}.legacy-green:hover:after{opacity:1}.legacy-green span{font-family:var(--ptc-font-secondary-latin);color:var(--color-white);z-index:100;position:relative;text-transform:uppercase;font-weight:var(--ptc-font-weight-bold);letter-spacing:var(--ptc-letter-spacing-normal);font-size:var(--ptc-font-size-medium)}@media screen and (min-width: 768px){.legacy-green span{font-size:19px;letter-spacing:var(--ptc-letter-spacing-loose)}}.legacy-green icon-asset{display:inline}:host(a){border-style:solid;border-width:1px;position:relative;text-decoration:none;padding:9.4px 17.5px;border-radius:3px;text-decoration:none;display:inline-block;outline:none;position:relative}:host(a).animation-right ::slotted([slot=slot-after-text]),:host(a).animation-right ::slotted([slot=slot-before-text]),:host(a).animation-down ::slotted([slot=slot-after-text]),:host(a).animation-down ::slotted([slot=slot-before-text]){transition:all ease-out 0.25s;position:relative;display:inline-block;margin-left:5px}:host(a):hover.animation-right ::slotted([slot=slot-after-text]),:host(a):hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}:host(a):hover.animation-down ::slotted([slot=slot-after-text]),:host(a):hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}.nav{background-color:#323b42;border-radius:var(--ptc-border-radius-medium);border:1px solid var(--color-white);border-bottom-style:solid;border-bottom-width:1px;box-sizing:border-box;color:var(--color-white);display:inline-block;font-size:13px;font-stretch:100%;font-weight:var(--ptc-font-weight-bold);line-height:26px;list-style:none;padding:3px var(--ptc-element-spacing-04);position:relative;text-align:center;text-decoration:none;transition:background-color var(--ptc-transition-medium) var(--ptc-decelerated-ease)}.nav:hover{background-color:#20262a}";
13619
+ const ptcButtonCss = "button:disabled{pointer-events:none;opacity:0.6}button{background-color:var(--color-primary-uigrey);display:inline-block;border-style:solid;border-width:1px;white-space:normal;position:relative;text-decoration:none;cursor:pointer;padding:9.4px 17.5px;border-radius:3px}button.animation-right ::slotted([slot=slot-after-text]),button.animation-right ::slotted([slot=slot-before-text]),button.animation-down ::slotted([slot=slot-after-text]),button.animation-down ::slotted([slot=slot-before-text]){transition:transform var(--ptc-transition-medium) var(--ptc-standard-ease);position:relative;display:inline-block}button:hover.animation-right ::slotted([slot=slot-after-text]),button:hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}button:hover.animation-down ::slotted([slot=slot-after-text]),button:hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}button span{font-size:var(--ptc-font-size-small);font-weight:bold;line-height:0.86}.icon-left ::slotted([slot=slot-before-text]){margin-right:var(--ptc-element-spacing-01)}.icon-right ::slotted([slot=slot-after-text]){margin-left:var(--ptc-element-spacing-01)}.blackgrey{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(285deg, var(--color-primary-uigrey) 155%, #6e717c 62%)}.blackgrey:hover{box-shadow:var(--ptc-shadow-x-large)}.blackgrey span{color:var(--color-white)}.turtlegreen{box-shadow:var(--ptc-shadow-x-small);border:solid 1px #5bb73b;background-image:linear-gradient(285deg, #5bb73b 155%, #178642 62%)}.turtlegreen:hover{box-shadow:var(--ptc-shadow-x-large)}.turtlegreen span{color:var(--color-white)}.offwhite{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(to right, #ffffff, #d3d3d3, #e5e5e5)}.offwhite:hover{box-shadow:var(--ptc-shadow-x-large)}.offwhite span{color:var(--color-primary-uigrey)}.legacy-green{box-shadow:0 0 25.8px 3.2px rgba(0, 0, 0, 0.5);border:solid 2.5px var(--color-secondary-tutlegreen-dark);background-image:linear-gradient(to right, var(--color-secondary-turtlegreen), var(--color-secondary-tutlegreen-dark))}@media screen and (min-width: 768px){.legacy-green{padding:20px 20px}}.legacy-green:after{position:absolute;content:\"\";top:-1px;left:0;bottom:0;right:0;width:100%;height:103%;background-image:linear-gradient(to right, var(--color-secondary-tutlegreen-dark), var(--color-secondary-turtlegreen));opacity:0;transition:opacity 0.6s cubic-bezier(0, 0, 0.23, 1);border-radius:2px}.legacy-green:hover{box-shadow:0 0 49px 6.1px rgba(0, 0, 0, 0.55)}.legacy-green:hover span{color:var(--color-white)}.legacy-green:hover:after{opacity:1}.legacy-green span{font-family:var(--ptc-font-secondary-latin);color:var(--color-white);z-index:100;position:relative;text-transform:uppercase;font-weight:var(--ptc-font-weight-bold);letter-spacing:var(--ptc-letter-spacing-normal);font-size:var(--ptc-font-size-medium)}@media screen and (min-width: 768px){.legacy-green span{font-size:19px;letter-spacing:var(--ptc-letter-spacing-loose)}}.legacy-green icon-asset{display:inline}a{border-style:solid;border-width:1px;position:relative;text-decoration:none;padding:9.4px 17.5px;border-radius:3px;text-decoration:none;display:inline-block;outline:none;position:relative}a.animation-right ::slotted([slot=slot-after-text]),a.animation-right ::slotted([slot=slot-before-text]),a.animation-down ::slotted([slot=slot-after-text]),a.animation-down ::slotted([slot=slot-before-text]){transition:all ease-out 0.25s;position:relative;display:inline-block;margin-left:5px}a:hover.animation-right ::slotted([slot=slot-after-text]),a:hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}a:hover.animation-down ::slotted([slot=slot-after-text]),a:hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}.nav{background-color:#323b42;border-radius:var(--ptc-border-radius-medium);border:1px solid var(--color-white);border-bottom-style:solid;border-bottom-width:1px;box-sizing:border-box;color:var(--color-white);display:inline-block;font-size:13px;font-stretch:100%;font-weight:var(--ptc-font-weight-bold);line-height:26px;list-style:none;padding:3px var(--ptc-element-spacing-04);position:relative;text-align:center;text-decoration:none;transition:background-color var(--ptc-transition-medium) var(--ptc-decelerated-ease)}.nav:hover{background-color:#20262a}";
13620
13620
 
13621
13621
  const PtcButton$1 = class extends HTMLElement {
13622
13622
  constructor() {
@@ -13742,6 +13742,20 @@ const PtcCard$1 = class extends HTMLElement {
13742
13742
  static get style() { return ptcCardCss; }
13743
13743
  };
13744
13744
 
13745
+ const ptcCountdownCss = ":host{display:block}";
13746
+
13747
+ const PtcCountdown$1 = class extends HTMLElement {
13748
+ constructor() {
13749
+ super();
13750
+ this.__registerHost();
13751
+ attachShadow(this);
13752
+ }
13753
+ render() {
13754
+ return (h(Host, null, h("slot", null)));
13755
+ }
13756
+ static get style() { return ptcCountdownCss; }
13757
+ };
13758
+
13745
13759
  const ptcDateCss = ":host{display:block}";
13746
13760
 
13747
13761
  const PtcDate$1 = class extends HTMLElement {
@@ -14305,7 +14319,7 @@ const PtcPicture$1 = class extends HTMLElement {
14305
14319
  }
14306
14320
  render() {
14307
14321
  const classMap = this.getCssClassMap();
14308
- return (h(Host, null, this.styles && h("style", null, this.styles), h("img", Object.assign({ class: classMap, "data-xs": `${this.src}:${this.sizeXs}`, "data-sm": `${this.src}:${this.sizeSm}`, "data-md": `${this.src}:${this.sizeMd}`, "data-lg": `${this.src}:${this.sizeLg}` }, (!!this.width ? { width: this.width } : {}), (!!this.height ? { height: this.height } : {}), { alt: this.alt }))));
14322
+ return (h(Host, null, this.styles && h("style", null, this.styles), h("img", Object.assign({ class: classMap, "data-xs": !!this.sizeXs ? `${this.src}:${this.sizeXs}` : `${this.src}`, "data-sm": !!this.sizeSm ? `${this.src}:${this.sizeSm}` : `${this.src}`, "data-md": !!this.sizeMd ? `${this.src}:${this.sizeMd}` : `${this.src}`, "data-lg": !!this.sizeLg ? `${this.src}:${this.sizeLg}` : `${this.src}` }, (!!this.width ? { width: this.width } : {}), (!!this.height ? { height: this.height } : {}), { alt: this.alt }))));
14309
14323
  }
14310
14324
  getCurrentBreakPoints() {
14311
14325
  // Define local variables
@@ -14499,6 +14513,7 @@ const PtcAnnouncement = /*@__PURE__*/proxyCustomElement(PtcAnnouncement$1, [1,"p
14499
14513
  const PtcAvatar = /*@__PURE__*/proxyCustomElement(PtcAvatar$1, [1,"ptc-avatar"]);
14500
14514
  const PtcButton = /*@__PURE__*/proxyCustomElement(PtcButton$1, [1,"ptc-button",{"disabled":[516],"type":[1],"color":[1],"iconAnimation":[1,"icon-animation"],"iconPosition":[1,"icon-position"],"linkHref":[1,"link-href"],"target":[1],"rel":[1],"styles":[1]}]);
14501
14515
  const PtcCard = /*@__PURE__*/proxyCustomElement(PtcCard$1, [1,"ptc-card",{"cardType":[1,"card-type"],"cardHref":[1,"card-href"],"target":[1],"rel":[1],"hasImage":[4,"has-image"],"hasVideo":[4,"has-video"],"hasLottie":[4,"has-lottie"],"heading":[1],"cardDate":[1,"card-date"],"styles":[1]}]);
14516
+ const PtcCountdown = /*@__PURE__*/proxyCustomElement(PtcCountdown$1, [1,"ptc-countdown"]);
14502
14517
  const PtcDate = /*@__PURE__*/proxyCustomElement(PtcDate$1, [1,"ptc-date",{"year":[2],"month":[2],"day":[2],"country":[1],"dateString":[1,"date-string"],"dateStyles":[1,"date-styles"]}]);
14503
14518
  const PtcFooter = /*@__PURE__*/proxyCustomElement(PtcFooter$1, [1,"ptc-footer"]);
14504
14519
  const PtcImg = /*@__PURE__*/proxyCustomElement(PtcImg$1, [0,"ptc-img",{"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"imgUrl":[1,"img-url"],"imageType":[1,"image-type"],"borderRadius":[1,"border-radius"],"loadMode":[1,"load-mode"]},[[9,"resize","WindowResize"]]]);
@@ -14525,6 +14540,7 @@ const defineCustomElements = (opts) => {
14525
14540
  PtcAvatar,
14526
14541
  PtcButton,
14527
14542
  PtcCard,
14543
+ PtcCountdown,
14528
14544
  PtcDate,
14529
14545
  PtcFooter,
14530
14546
  PtcImg,
@@ -14548,4 +14564,4 @@ const defineCustomElements = (opts) => {
14548
14564
  }
14549
14565
  };
14550
14566
 
14551
- export { IconAsset, ListItem, LottiePlayer, MyComponent, PtcAnnouncement, PtcAvatar, PtcButton, PtcCard, PtcDate, PtcFooter, PtcImg, PtcLink, PtcList, PtcLottie, PtcNav, PtcNavItem, PtcOverlay, PtcPara, PtcPicture, PtcSpacer, PtcSpan, PtcSvgBtn, PtcTitle, defineCustomElements };
14567
+ export { IconAsset, ListItem, LottiePlayer, MyComponent, PtcAnnouncement, PtcAvatar, PtcButton, PtcCard, PtcCountdown, PtcDate, PtcFooter, PtcImg, PtcLink, PtcList, PtcLottie, PtcNav, PtcNavItem, PtcOverlay, PtcPara, PtcPicture, PtcSpacer, PtcSpan, PtcSvgBtn, PtcTitle, defineCustomElements };
@@ -24,11 +24,11 @@ const IconAsset = class {
24
24
  /**
25
25
  * Icon Color
26
26
  */
27
- this.color = 'black';
28
- this.regularSprite = getAssetPath('./assets/regular.svg');
29
- this.solidSprite = getAssetPath('./assets/solid.svg');
30
- this.brandSprite = getAssetPath('./assets/brands.svg');
31
- this.ptcSprite = getAssetPath('./assets/ptc-sprite.svg');
27
+ this.color = 'default';
28
+ this.regularSprite = getAssetPath('./media/regular.svg');
29
+ this.solidSprite = getAssetPath('./media/solid.svg');
30
+ this.brandSprite = getAssetPath('./media/brands.svg');
31
+ this.ptcSprite = getAssetPath('./media/designer.svg');
32
32
  }
33
33
  render() {
34
34
  const classMap = this.getCssClassMap();
@@ -53,7 +53,7 @@ const IconAsset = class {
53
53
  [this.color]: true,
54
54
  };
55
55
  }
56
- static get assetsDirs() { return ["assets"]; }
56
+ static get assetsDirs() { return ["media"]; }
57
57
  };
58
58
  IconAsset.style = iconAssetCss;
59
59
 
@@ -85,7 +85,7 @@ const PtcAnnouncement = class {
85
85
  };
86
86
  PtcAnnouncement.style = ptcAnnouncementCss;
87
87
 
88
- const ptcButtonCss = "button:disabled{pointer-events:none;opacity:0.6}button{background-color:var(--color-primary-uigrey);display:inline-block;border-style:solid;border-width:1px;white-space:normal;position:relative;text-decoration:none;cursor:pointer;padding:9.4px 17.5px;border-radius:3px}button.animation-right ::slotted([slot=slot-after-text]),button.animation-right ::slotted([slot=slot-before-text]),button.animation-down ::slotted([slot=slot-after-text]),button.animation-down ::slotted([slot=slot-before-text]){transition:transform var(--ptc-transition-medium) var(--ptc-standard-ease);position:relative;display:inline-block}button:hover.animation-right ::slotted([slot=slot-after-text]),button:hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}button:hover.animation-down ::slotted([slot=slot-after-text]),button:hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}button span{font-size:var(--ptc-font-size-small);font-weight:bold;line-height:0.86}.icon-left ::slotted([slot=slot-before-text]){margin-right:var(--ptc-element-spacing-01)}.icon-right ::slotted([slot=slot-after-text]){margin-left:var(--ptc-element-spacing-01)}.blackgrey{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(285deg, var(--color-primary-uigrey) 155%, #6e717c 62%)}.blackgrey:hover{box-shadow:var(--ptc-shadow-x-large)}.blackgrey span{color:var(--color-white)}.turtlegreen{box-shadow:var(--ptc-shadow-x-small);border:solid 1px #5bb73b;background-image:linear-gradient(285deg, #5bb73b 155%, #178642 62%)}.turtlegreen:hover{box-shadow:var(--ptc-shadow-x-large)}.turtlegreen span{color:var(--color-white)}.offwhite{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(to right, #ffffff, #d3d3d3, #e5e5e5)}.offwhite:hover{box-shadow:var(--ptc-shadow-x-large)}.offwhite span{color:var(--color-primary-uigrey)}.legacy-green{box-shadow:0 0 25.8px 3.2px rgba(0, 0, 0, 0.5);border:solid 2.5px var(--color-secondary-tutlegreen-dark);background-image:linear-gradient(to right, var(--color-secondary-turtlegreen), var(--color-secondary-tutlegreen-dark))}@media screen and (min-width: 768px){.legacy-green{padding:20px 20px}}.legacy-green:after{position:absolute;content:\"\";top:-1px;left:0;bottom:0;right:0;width:100%;height:103%;background-image:linear-gradient(to right, var(--color-secondary-tutlegreen-dark), var(--color-secondary-turtlegreen));opacity:0;transition:opacity 0.6s cubic-bezier(0, 0, 0.23, 1);border-radius:2px}.legacy-green:hover{box-shadow:0 0 49px 6.1px rgba(0, 0, 0, 0.55)}.legacy-green:hover span{color:var(--color-white)}.legacy-green:hover:after{opacity:1}.legacy-green span{font-family:var(--ptc-font-secondary-latin);color:var(--color-white);z-index:100;position:relative;text-transform:uppercase;font-weight:var(--ptc-font-weight-bold);letter-spacing:var(--ptc-letter-spacing-normal);font-size:var(--ptc-font-size-medium)}@media screen and (min-width: 768px){.legacy-green span{font-size:19px;letter-spacing:var(--ptc-letter-spacing-loose)}}.legacy-green icon-asset{display:inline}:host(a){border-style:solid;border-width:1px;position:relative;text-decoration:none;padding:9.4px 17.5px;border-radius:3px;text-decoration:none;display:inline-block;outline:none;position:relative}:host(a).animation-right ::slotted([slot=slot-after-text]),:host(a).animation-right ::slotted([slot=slot-before-text]),:host(a).animation-down ::slotted([slot=slot-after-text]),:host(a).animation-down ::slotted([slot=slot-before-text]){transition:all ease-out 0.25s;position:relative;display:inline-block;margin-left:5px}:host(a):hover.animation-right ::slotted([slot=slot-after-text]),:host(a):hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}:host(a):hover.animation-down ::slotted([slot=slot-after-text]),:host(a):hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}.nav{background-color:#323b42;border-radius:var(--ptc-border-radius-medium);border:1px solid var(--color-white);border-bottom-style:solid;border-bottom-width:1px;box-sizing:border-box;color:var(--color-white);display:inline-block;font-size:13px;font-stretch:100%;font-weight:var(--ptc-font-weight-bold);line-height:26px;list-style:none;padding:3px var(--ptc-element-spacing-04);position:relative;text-align:center;text-decoration:none;transition:background-color var(--ptc-transition-medium) var(--ptc-decelerated-ease)}.nav:hover{background-color:#20262a}";
88
+ const ptcButtonCss = "button:disabled{pointer-events:none;opacity:0.6}button{background-color:var(--color-primary-uigrey);display:inline-block;border-style:solid;border-width:1px;white-space:normal;position:relative;text-decoration:none;cursor:pointer;padding:9.4px 17.5px;border-radius:3px}button.animation-right ::slotted([slot=slot-after-text]),button.animation-right ::slotted([slot=slot-before-text]),button.animation-down ::slotted([slot=slot-after-text]),button.animation-down ::slotted([slot=slot-before-text]){transition:transform var(--ptc-transition-medium) var(--ptc-standard-ease);position:relative;display:inline-block}button:hover.animation-right ::slotted([slot=slot-after-text]),button:hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}button:hover.animation-down ::slotted([slot=slot-after-text]),button:hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}button span{font-size:var(--ptc-font-size-small);font-weight:bold;line-height:0.86}.icon-left ::slotted([slot=slot-before-text]){margin-right:var(--ptc-element-spacing-01)}.icon-right ::slotted([slot=slot-after-text]){margin-left:var(--ptc-element-spacing-01)}.blackgrey{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(285deg, var(--color-primary-uigrey) 155%, #6e717c 62%)}.blackgrey:hover{box-shadow:var(--ptc-shadow-x-large)}.blackgrey span{color:var(--color-white)}.turtlegreen{box-shadow:var(--ptc-shadow-x-small);border:solid 1px #5bb73b;background-image:linear-gradient(285deg, #5bb73b 155%, #178642 62%)}.turtlegreen:hover{box-shadow:var(--ptc-shadow-x-large)}.turtlegreen span{color:var(--color-white)}.offwhite{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(to right, #ffffff, #d3d3d3, #e5e5e5)}.offwhite:hover{box-shadow:var(--ptc-shadow-x-large)}.offwhite span{color:var(--color-primary-uigrey)}.legacy-green{box-shadow:0 0 25.8px 3.2px rgba(0, 0, 0, 0.5);border:solid 2.5px var(--color-secondary-tutlegreen-dark);background-image:linear-gradient(to right, var(--color-secondary-turtlegreen), var(--color-secondary-tutlegreen-dark))}@media screen and (min-width: 768px){.legacy-green{padding:20px 20px}}.legacy-green:after{position:absolute;content:\"\";top:-1px;left:0;bottom:0;right:0;width:100%;height:103%;background-image:linear-gradient(to right, var(--color-secondary-tutlegreen-dark), var(--color-secondary-turtlegreen));opacity:0;transition:opacity 0.6s cubic-bezier(0, 0, 0.23, 1);border-radius:2px}.legacy-green:hover{box-shadow:0 0 49px 6.1px rgba(0, 0, 0, 0.55)}.legacy-green:hover span{color:var(--color-white)}.legacy-green:hover:after{opacity:1}.legacy-green span{font-family:var(--ptc-font-secondary-latin);color:var(--color-white);z-index:100;position:relative;text-transform:uppercase;font-weight:var(--ptc-font-weight-bold);letter-spacing:var(--ptc-letter-spacing-normal);font-size:var(--ptc-font-size-medium)}@media screen and (min-width: 768px){.legacy-green span{font-size:19px;letter-spacing:var(--ptc-letter-spacing-loose)}}.legacy-green icon-asset{display:inline}a{border-style:solid;border-width:1px;position:relative;text-decoration:none;padding:9.4px 17.5px;border-radius:3px;text-decoration:none;display:inline-block;outline:none;position:relative}a.animation-right ::slotted([slot=slot-after-text]),a.animation-right ::slotted([slot=slot-before-text]),a.animation-down ::slotted([slot=slot-after-text]),a.animation-down ::slotted([slot=slot-before-text]){transition:all ease-out 0.25s;position:relative;display:inline-block;margin-left:5px}a:hover.animation-right ::slotted([slot=slot-after-text]),a:hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}a:hover.animation-down ::slotted([slot=slot-after-text]),a:hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}.nav{background-color:#323b42;border-radius:var(--ptc-border-radius-medium);border:1px solid var(--color-white);border-bottom-style:solid;border-bottom-width:1px;box-sizing:border-box;color:var(--color-white);display:inline-block;font-size:13px;font-stretch:100%;font-weight:var(--ptc-font-weight-bold);line-height:26px;list-style:none;padding:3px var(--ptc-element-spacing-04);position:relative;text-align:center;text-decoration:none;transition:background-color var(--ptc-transition-medium) var(--ptc-decelerated-ease)}.nav:hover{background-color:#20262a}";
89
89
 
90
90
  const PtcButton = class {
91
91
  constructor(hostRef) {
@@ -10,7 +10,7 @@ const patchEsm = () => {
10
10
  const defineCustomElements = (win, options) => {
11
11
  if (typeof window === 'undefined') return Promise.resolve();
12
12
  return patchEsm().then(() => {
13
- return bootstrapLazy([["ptc-card",[[1,"ptc-card",{"cardType":[1,"card-type"],"cardHref":[1,"card-href"],"target":[1],"rel":[1],"hasImage":[4,"has-image"],"hasVideo":[4,"has-video"],"hasLottie":[4,"has-lottie"],"heading":[1],"cardDate":[1,"card-date"],"styles":[1]}]]],["ptc-link",[[1,"ptc-link",{"disabled":[516],"external":[516],"href":[1],"target":[1],"linkTitle":[1,"link-title"],"theme":[1],"uppercase":[4],"fontSize":[1,"font-size"]}]]],["ptc-lottie",[[1,"ptc-lottie",{"jsonSrc":[1025,"json-src"],"speed":[1026]}]]],["list-item",[[4,"list-item",{"listType":[1,"list-type"],"linkHref":[1,"link-href"]}]]],["my-component",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]],["ptc-avatar",[[1,"ptc-avatar"]]],["ptc-footer",[[1,"ptc-footer"]]],["ptc-img",[[0,"ptc-img",{"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"imgUrl":[1,"img-url"],"imageType":[1,"image-type"],"borderRadius":[1,"border-radius"],"loadMode":[1,"load-mode"]},[[9,"resize","WindowResize"]]]]],["ptc-list",[[0,"ptc-list",{"listType":[1,"list-type"],"listItems":[16]}]]],["ptc-nav",[[1,"ptc-nav"]]],["ptc-nav-item",[[1,"ptc-nav-item",{"url":[1025],"label":[1025],"ariaExpanded":[1028,"aria-expanded"],"depth":[1538],"hasChildren":[1028,"has-children"],"parentExpanded":[1540,"parent-expanded"],"navType":[1,"nav-type"]},[[0,"handleClick","handleClick"],[9,"resize","handleResize"]]]]],["ptc-overlay",[[4,"ptc-overlay"]]],["ptc-picture",[[1,"ptc-picture",{"src":[1],"alt":[1],"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"borderRadius":[1,"border-radius"],"height":[1],"width":[1],"objectFit":[1,"object-fit"],"styles":[1],"oldSrc":[32]},[[9,"resize","WindowResize"]]]]],["ptc-spacer",[[1,"ptc-spacer",{"breakpoint":[1],"size":[1],"direction":[1]}]]],["ptc-span",[[1,"ptc-span",{"spanStyle":[1,"span-style"],"display":[1],"styles":[1]}]]],["ptc-title",[[1,"ptc-title",{"type":[1],"textAlign":[1,"text-align"],"upperline":[1]}]]],["lottie-player",[[1,"lottie-player",{"mode":[1],"autoplay":[4],"background":[513],"controls":[4],"count":[2],"direction":[2],"hover":[4],"loop":[516],"renderer":[1],"speed":[2],"src":[1],"currentState":[1,"current-state"],"seeker":[8],"intermission":[2],"play":[64],"pause":[64],"stop":[64],"seek":[64],"getLottie":[64],"setSpeed":[64],"setDirection":[64],"setLooping":[64],"togglePlay":[64],"toggleLooping":[64]}]]],["ptc-date",[[1,"ptc-date",{"year":[2],"month":[2],"day":[2],"country":[1],"dateString":[1,"date-string"],"dateStyles":[1,"date-styles"]}]]],["icon-asset_5",[[1,"ptc-announcement",{"btnText":[513,"btn-text"],"visible":[1540],"btnLink":[513,"btn-link"],"tempContainer":[4,"temp-container"]}],[1,"ptc-para",{"fontSize":[1,"font-size"],"fontWeight":[1,"font-weight"],"paraStyle":[1,"para-style"],"paraMargin":[1,"para-margin"]}],[1,"ptc-button",{"disabled":[516],"type":[1],"color":[1],"iconAnimation":[1,"icon-animation"],"iconPosition":[1,"icon-position"],"linkHref":[1,"link-href"],"target":[1],"rel":[1],"styles":[1]}],[1,"ptc-svg-btn",{"svgName":[1,"svg-name"]}],[0,"icon-asset",{"name":[1],"size":[1],"type":[1],"spin":[1],"pulse":[1],"color":[1]}]]]], options);
13
+ return bootstrapLazy([["ptc-card",[[1,"ptc-card",{"cardType":[1,"card-type"],"cardHref":[1,"card-href"],"target":[1],"rel":[1],"hasImage":[4,"has-image"],"hasVideo":[4,"has-video"],"hasLottie":[4,"has-lottie"],"heading":[1],"cardDate":[1,"card-date"],"styles":[1]}]]],["ptc-link",[[1,"ptc-link",{"disabled":[516],"external":[516],"href":[1],"target":[1],"linkTitle":[1,"link-title"],"theme":[1],"uppercase":[4],"fontSize":[1,"font-size"]}]]],["ptc-lottie",[[1,"ptc-lottie",{"jsonSrc":[1025,"json-src"],"speed":[1026]}]]],["list-item",[[4,"list-item",{"listType":[1,"list-type"],"linkHref":[1,"link-href"]}]]],["my-component",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]],["ptc-avatar",[[1,"ptc-avatar"]]],["ptc-countdown",[[1,"ptc-countdown"]]],["ptc-footer",[[1,"ptc-footer"]]],["ptc-img",[[0,"ptc-img",{"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"imgUrl":[1,"img-url"],"imageType":[1,"image-type"],"borderRadius":[1,"border-radius"],"loadMode":[1,"load-mode"]},[[9,"resize","WindowResize"]]]]],["ptc-list",[[0,"ptc-list",{"listType":[1,"list-type"],"listItems":[16]}]]],["ptc-nav",[[1,"ptc-nav"]]],["ptc-nav-item",[[1,"ptc-nav-item",{"url":[1025],"label":[1025],"ariaExpanded":[1028,"aria-expanded"],"depth":[1538],"hasChildren":[1028,"has-children"],"parentExpanded":[1540,"parent-expanded"],"navType":[1,"nav-type"]},[[0,"handleClick","handleClick"],[9,"resize","handleResize"]]]]],["ptc-overlay",[[4,"ptc-overlay"]]],["ptc-picture",[[1,"ptc-picture",{"src":[1],"alt":[1],"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"borderRadius":[1,"border-radius"],"height":[1],"width":[1],"objectFit":[1,"object-fit"],"styles":[1],"oldSrc":[32]},[[9,"resize","WindowResize"]]]]],["ptc-spacer",[[1,"ptc-spacer",{"breakpoint":[1],"size":[1],"direction":[1]}]]],["ptc-span",[[1,"ptc-span",{"spanStyle":[1,"span-style"],"display":[1],"styles":[1]}]]],["ptc-title",[[1,"ptc-title",{"type":[1],"textAlign":[1,"text-align"],"upperline":[1]}]]],["lottie-player",[[1,"lottie-player",{"mode":[1],"autoplay":[4],"background":[513],"controls":[4],"count":[2],"direction":[2],"hover":[4],"loop":[516],"renderer":[1],"speed":[2],"src":[1],"currentState":[1,"current-state"],"seeker":[8],"intermission":[2],"play":[64],"pause":[64],"stop":[64],"seek":[64],"getLottie":[64],"setSpeed":[64],"setDirection":[64],"setLooping":[64],"togglePlay":[64],"toggleLooping":[64]}]]],["ptc-date",[[1,"ptc-date",{"year":[2],"month":[2],"day":[2],"country":[1],"dateString":[1,"date-string"],"dateStyles":[1,"date-styles"]}]]],["icon-asset_5",[[1,"ptc-announcement",{"btnText":[513,"btn-text"],"visible":[1540],"btnLink":[513,"btn-link"],"tempContainer":[4,"temp-container"]}],[1,"ptc-para",{"fontSize":[1,"font-size"],"fontWeight":[1,"font-weight"],"paraStyle":[1,"para-style"],"paraMargin":[1,"para-margin"]}],[1,"ptc-button",{"disabled":[516],"type":[1],"color":[1],"iconAnimation":[1,"icon-animation"],"iconPosition":[1,"icon-position"],"linkHref":[1,"link-href"],"target":[1],"rel":[1],"styles":[1]}],[1,"ptc-svg-btn",{"svgName":[1,"svg-name"]}],[0,"icon-asset",{"name":[1],"size":[1],"type":[1],"spin":[1],"pulse":[1],"color":[1]}]]]], options);
14
14
  });
15
15
  };
16
16
 
@@ -0,0 +1,15 @@
1
+ import { r as registerInstance, h, H as Host } from './index-7a3883ee.js';
2
+
3
+ const ptcCountdownCss = ":host{display:block}";
4
+
5
+ const PtcCountdown = class {
6
+ constructor(hostRef) {
7
+ registerInstance(this, hostRef);
8
+ }
9
+ render() {
10
+ return (h(Host, null, h("slot", null)));
11
+ }
12
+ };
13
+ PtcCountdown.style = ptcCountdownCss;
14
+
15
+ export { PtcCountdown as ptc_countdown };
@@ -103,7 +103,7 @@ const PtcPicture = class {
103
103
  }
104
104
  render() {
105
105
  const classMap = this.getCssClassMap();
106
- return (h(Host, null, this.styles && h("style", null, this.styles), h("img", Object.assign({ class: classMap, "data-xs": `${this.src}:${this.sizeXs}`, "data-sm": `${this.src}:${this.sizeSm}`, "data-md": `${this.src}:${this.sizeMd}`, "data-lg": `${this.src}:${this.sizeLg}` }, (!!this.width ? { width: this.width } : {}), (!!this.height ? { height: this.height } : {}), { alt: this.alt }))));
106
+ return (h(Host, null, this.styles && h("style", null, this.styles), h("img", Object.assign({ class: classMap, "data-xs": !!this.sizeXs ? `${this.src}:${this.sizeXs}` : `${this.src}`, "data-sm": !!this.sizeSm ? `${this.src}:${this.sizeSm}` : `${this.src}`, "data-md": !!this.sizeMd ? `${this.src}:${this.sizeMd}` : `${this.src}`, "data-lg": !!this.sizeLg ? `${this.src}:${this.sizeLg}` : `${this.src}` }, (!!this.width ? { width: this.width } : {}), (!!this.height ? { height: this.height } : {}), { alt: this.alt }))));
107
107
  }
108
108
  getCurrentBreakPoints() {
109
109
  // Define local variables
@@ -13,5 +13,5 @@ const patchBrowser = () => {
13
13
  };
14
14
 
15
15
  patchBrowser().then(options => {
16
- return bootstrapLazy([["ptc-card",[[1,"ptc-card",{"cardType":[1,"card-type"],"cardHref":[1,"card-href"],"target":[1],"rel":[1],"hasImage":[4,"has-image"],"hasVideo":[4,"has-video"],"hasLottie":[4,"has-lottie"],"heading":[1],"cardDate":[1,"card-date"],"styles":[1]}]]],["ptc-link",[[1,"ptc-link",{"disabled":[516],"external":[516],"href":[1],"target":[1],"linkTitle":[1,"link-title"],"theme":[1],"uppercase":[4],"fontSize":[1,"font-size"]}]]],["ptc-lottie",[[1,"ptc-lottie",{"jsonSrc":[1025,"json-src"],"speed":[1026]}]]],["list-item",[[4,"list-item",{"listType":[1,"list-type"],"linkHref":[1,"link-href"]}]]],["my-component",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]],["ptc-avatar",[[1,"ptc-avatar"]]],["ptc-footer",[[1,"ptc-footer"]]],["ptc-img",[[0,"ptc-img",{"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"imgUrl":[1,"img-url"],"imageType":[1,"image-type"],"borderRadius":[1,"border-radius"],"loadMode":[1,"load-mode"]},[[9,"resize","WindowResize"]]]]],["ptc-list",[[0,"ptc-list",{"listType":[1,"list-type"],"listItems":[16]}]]],["ptc-nav",[[1,"ptc-nav"]]],["ptc-nav-item",[[1,"ptc-nav-item",{"url":[1025],"label":[1025],"ariaExpanded":[1028,"aria-expanded"],"depth":[1538],"hasChildren":[1028,"has-children"],"parentExpanded":[1540,"parent-expanded"],"navType":[1,"nav-type"]},[[0,"handleClick","handleClick"],[9,"resize","handleResize"]]]]],["ptc-overlay",[[4,"ptc-overlay"]]],["ptc-picture",[[1,"ptc-picture",{"src":[1],"alt":[1],"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"borderRadius":[1,"border-radius"],"height":[1],"width":[1],"objectFit":[1,"object-fit"],"styles":[1],"oldSrc":[32]},[[9,"resize","WindowResize"]]]]],["ptc-spacer",[[1,"ptc-spacer",{"breakpoint":[1],"size":[1],"direction":[1]}]]],["ptc-span",[[1,"ptc-span",{"spanStyle":[1,"span-style"],"display":[1],"styles":[1]}]]],["ptc-title",[[1,"ptc-title",{"type":[1],"textAlign":[1,"text-align"],"upperline":[1]}]]],["lottie-player",[[1,"lottie-player",{"mode":[1],"autoplay":[4],"background":[513],"controls":[4],"count":[2],"direction":[2],"hover":[4],"loop":[516],"renderer":[1],"speed":[2],"src":[1],"currentState":[1,"current-state"],"seeker":[8],"intermission":[2],"play":[64],"pause":[64],"stop":[64],"seek":[64],"getLottie":[64],"setSpeed":[64],"setDirection":[64],"setLooping":[64],"togglePlay":[64],"toggleLooping":[64]}]]],["ptc-date",[[1,"ptc-date",{"year":[2],"month":[2],"day":[2],"country":[1],"dateString":[1,"date-string"],"dateStyles":[1,"date-styles"]}]]],["icon-asset_5",[[1,"ptc-announcement",{"btnText":[513,"btn-text"],"visible":[1540],"btnLink":[513,"btn-link"],"tempContainer":[4,"temp-container"]}],[1,"ptc-para",{"fontSize":[1,"font-size"],"fontWeight":[1,"font-weight"],"paraStyle":[1,"para-style"],"paraMargin":[1,"para-margin"]}],[1,"ptc-button",{"disabled":[516],"type":[1],"color":[1],"iconAnimation":[1,"icon-animation"],"iconPosition":[1,"icon-position"],"linkHref":[1,"link-href"],"target":[1],"rel":[1],"styles":[1]}],[1,"ptc-svg-btn",{"svgName":[1,"svg-name"]}],[0,"icon-asset",{"name":[1],"size":[1],"type":[1],"spin":[1],"pulse":[1],"color":[1]}]]]], options);
16
+ return bootstrapLazy([["ptc-card",[[1,"ptc-card",{"cardType":[1,"card-type"],"cardHref":[1,"card-href"],"target":[1],"rel":[1],"hasImage":[4,"has-image"],"hasVideo":[4,"has-video"],"hasLottie":[4,"has-lottie"],"heading":[1],"cardDate":[1,"card-date"],"styles":[1]}]]],["ptc-link",[[1,"ptc-link",{"disabled":[516],"external":[516],"href":[1],"target":[1],"linkTitle":[1,"link-title"],"theme":[1],"uppercase":[4],"fontSize":[1,"font-size"]}]]],["ptc-lottie",[[1,"ptc-lottie",{"jsonSrc":[1025,"json-src"],"speed":[1026]}]]],["list-item",[[4,"list-item",{"listType":[1,"list-type"],"linkHref":[1,"link-href"]}]]],["my-component",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]],["ptc-avatar",[[1,"ptc-avatar"]]],["ptc-countdown",[[1,"ptc-countdown"]]],["ptc-footer",[[1,"ptc-footer"]]],["ptc-img",[[0,"ptc-img",{"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"imgUrl":[1,"img-url"],"imageType":[1,"image-type"],"borderRadius":[1,"border-radius"],"loadMode":[1,"load-mode"]},[[9,"resize","WindowResize"]]]]],["ptc-list",[[0,"ptc-list",{"listType":[1,"list-type"],"listItems":[16]}]]],["ptc-nav",[[1,"ptc-nav"]]],["ptc-nav-item",[[1,"ptc-nav-item",{"url":[1025],"label":[1025],"ariaExpanded":[1028,"aria-expanded"],"depth":[1538],"hasChildren":[1028,"has-children"],"parentExpanded":[1540,"parent-expanded"],"navType":[1,"nav-type"]},[[0,"handleClick","handleClick"],[9,"resize","handleResize"]]]]],["ptc-overlay",[[4,"ptc-overlay"]]],["ptc-picture",[[1,"ptc-picture",{"src":[1],"alt":[1],"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"borderRadius":[1,"border-radius"],"height":[1],"width":[1],"objectFit":[1,"object-fit"],"styles":[1],"oldSrc":[32]},[[9,"resize","WindowResize"]]]]],["ptc-spacer",[[1,"ptc-spacer",{"breakpoint":[1],"size":[1],"direction":[1]}]]],["ptc-span",[[1,"ptc-span",{"spanStyle":[1,"span-style"],"display":[1],"styles":[1]}]]],["ptc-title",[[1,"ptc-title",{"type":[1],"textAlign":[1,"text-align"],"upperline":[1]}]]],["lottie-player",[[1,"lottie-player",{"mode":[1],"autoplay":[4],"background":[513],"controls":[4],"count":[2],"direction":[2],"hover":[4],"loop":[516],"renderer":[1],"speed":[2],"src":[1],"currentState":[1,"current-state"],"seeker":[8],"intermission":[2],"play":[64],"pause":[64],"stop":[64],"seek":[64],"getLottie":[64],"setSpeed":[64],"setDirection":[64],"setLooping":[64],"togglePlay":[64],"toggleLooping":[64]}]]],["ptc-date",[[1,"ptc-date",{"year":[2],"month":[2],"day":[2],"country":[1],"dateString":[1,"date-string"],"dateStyles":[1,"date-styles"]}]]],["icon-asset_5",[[1,"ptc-announcement",{"btnText":[513,"btn-text"],"visible":[1540],"btnLink":[513,"btn-link"],"tempContainer":[4,"temp-container"]}],[1,"ptc-para",{"fontSize":[1,"font-size"],"fontWeight":[1,"font-weight"],"paraStyle":[1,"para-style"],"paraMargin":[1,"para-margin"]}],[1,"ptc-button",{"disabled":[516],"type":[1],"color":[1],"iconAnimation":[1,"icon-animation"],"iconPosition":[1,"icon-position"],"linkHref":[1,"link-href"],"target":[1],"rel":[1],"styles":[1]}],[1,"ptc-svg-btn",{"svgName":[1,"svg-name"]}],[0,"icon-asset",{"name":[1],"size":[1],"type":[1],"spin":[1],"pulse":[1],"color":[1]}]]]], options);
17
17
  });
@@ -169,13 +169,13 @@
169
169
  <defs></defs>
170
170
  <g id="Layer_2">
171
171
  <g id="Layer_1-2">
172
- <polygon points="54.5 28.88 54.5 9.06 38.8 0 21.65 9.9 54.5 28.88"></polygon>
173
- <polygon points="60.44 50.45 77.6 40.54 77.6 22.4 60.44 12.49 60.44 50.45"></polygon>
174
- <polygon points="23.09 60.78 23.09 80.55 38.8 89.61 55.91 79.74 23.09 60.78"></polygon>
175
- <polygon points="44.71 66.4 61.85 76.3 77.6 67.2 77.6 47.4 44.71 66.4"></polygon>
176
- <polygon points="32.84 23.23 15.71 13.33 0 22.4 0 42.21 32.84 23.23"></polygon>
177
- <polygon points="17.16 39.15 0 49.07 0 67.2 17.16 77.11 17.16 39.15"></polygon>
178
- <polygon points="54.5 53.87 38.8 62.94 23.09 53.87 23.09 35.74 38.8 26.67 54.5 35.74 54.5 53.87"></polygon>
172
+ <polygon style="fill:white;" points="54.5 28.88 54.5 9.06 38.8 0 21.65 9.9 54.5 28.88"></polygon>
173
+ <polygon style="fill:white;" points="60.44 50.45 77.6 40.54 77.6 22.4 60.44 12.49 60.44 50.45"></polygon>
174
+ <polygon style="fill:white;" points="23.09 60.78 23.09 80.55 38.8 89.61 55.91 79.74 23.09 60.78"></polygon>
175
+ <polygon style="fill:white;" points="44.71 66.4 61.85 76.3 77.6 67.2 77.6 47.4 44.71 66.4"></polygon>
176
+ <polygon style="fill:white;" points="32.84 23.23 15.71 13.33 0 22.4 0 42.21 32.84 23.23"></polygon>
177
+ <polygon style="fill:white;" points="17.16 39.15 0 49.07 0 67.2 17.16 77.11 17.16 39.15"></polygon>
178
+ <polygon style="fill:#5cb747;" points="54.5 53.87 38.8 62.94 23.09 53.87 23.09 35.74 38.8 26.67 54.5 35.74 54.5 53.87"></polygon>
179
179
  </g>
180
180
  </g>
181
181
  </symbol>
@@ -183,9 +183,9 @@
183
183
  <defs></defs>
184
184
  <g id="Layer_2">
185
185
  <g id="Layer_1-2">
186
- <path id="Path_4275" d="M38.54,63.26,71.23,44.39,38.45,25.53,5.82,44.39Z"></path>
187
- <path id="Path_4276" d="M38.25,0,0,22.35V40.94L38.44,18.71l38.5,22.16V22.33Z"></path>
188
- <path id="Path_4277" d="M0,66.45,38.69,88.78,77,66.43V47.91L38.55,70.08,0,47.85Z"></path>
186
+ <path id="Path_4275" style="fill:#5cb747;" d="M38.54,63.26,71.23,44.39,38.45,25.53,5.82,44.39Z"></path>
187
+ <path id="Path_4276" style="fill:white;" d="M38.25,0,0,22.35V40.94L38.44,18.71l38.5,22.16V22.33Z"></path>
188
+ <path id="Path_4277" style="fill:white;" d="M0,66.45,38.69,88.78,77,66.43V47.91L38.55,70.08,0,47.85Z"></path>
189
189
  </g>
190
190
  </g>
191
191
  </symbol>
@@ -193,10 +193,10 @@
193
193
  <defs></defs>
194
194
  <g id="Layer_2">
195
195
  <g id="Layer_1-2">
196
- <polygon points="41.56 41.6 72.06 59.2 72.06 24 41.56 41.6"></polygon>
197
- <polygon points="36.01 38.4 69.28 19.2 36.03 0 2.75 19.21 36.01 38.4"></polygon>
198
- <polygon points="30.45 41.6 0 24.03 0 59.18 30.45 41.6"></polygon>
199
- <polygon points="36.01 44.81 2.76 64 36.03 83.21 69.29 64.01 36.01 44.81"></polygon>
196
+ <polygon style="fill:#5cb747;" points="41.56 41.6 72.06 59.2 72.06 24 41.56 41.6"></polygon>
197
+ <polygon style="fill:white;" points="36.01 38.4 69.28 19.2 36.03 0 2.75 19.21 36.01 38.4"></polygon>
198
+ <polygon style="fill:#5cb747;" points="30.45 41.6 0 24.03 0 59.18 30.45 41.6"></polygon>
199
+ <polygon style="fill:white;" points="36.01 44.81 2.76 64 36.03 83.21 69.29 64.01 36.01 44.81"></polygon>
200
200
  </g>
201
201
  </g>
202
202
  </symbol>
@@ -204,12 +204,12 @@
204
204
  <defs></defs>
205
205
  <g id="Layer_2">
206
206
  <g id="Layer_1-2">
207
- <polygon points="13.92 27.93 48.65 7.82 35.08 0 0 20.27 0 38.41 13.92 46.67 13.92 27.93"></polygon>
208
- <polygon points="0 44.37 0 60.99 35.27 81.35 50.71 72.45 50.71 55.42 35.1 65.59 0 44.37"></polygon>
209
- <polygon points="54.05 10.94 39.55 19.36 55.96 28.82 55.93 69.42 70.53 60.99 70.53 20.38 54.05 10.94"></polygon>
210
- <polygon points="25.18 34.64 40.46 25.79 34.52 22.36 19.08 31.28 19.08 39.23 25.18 42.81 25.18 34.64"></polygon>
211
- <polygon points="35.09 52.18 19.08 42.44 19.08 49.72 35.09 59.33 41.67 55.27 41.67 47.96 35.09 52.18"></polygon>
212
- <polygon points="37.02 31.24 44.33 35.46 44.32 53.59 50.71 49.55 50.71 31.71 43.43 27.52 37.02 31.24"></polygon>
207
+ <polygon style="fill:#5cb747;" points="13.92 27.93 48.65 7.82 35.08 0 0 20.27 0 38.41 13.92 46.67 13.92 27.93"></polygon>
208
+ <polygon style="fill:#5cb747;" points="0 44.37 0 60.99 35.27 81.35 50.71 72.45 50.71 55.42 35.1 65.59 0 44.37"></polygon>
209
+ <polygon style="fill:#5cb747;" points="54.05 10.94 39.55 19.36 55.96 28.82 55.93 69.42 70.53 60.99 70.53 20.38 54.05 10.94"></polygon>
210
+ <polygon style="fill:white;" points="25.18 34.64 40.46 25.79 34.52 22.36 19.08 31.28 19.08 39.23 25.18 42.81 25.18 34.64"></polygon>
211
+ <polygon style="fill:white;" points="35.09 52.18 19.08 42.44 19.08 49.72 35.09 59.33 41.67 55.27 41.67 47.96 35.09 52.18"></polygon>
212
+ <polygon style="fill:white;" points="37.02 31.24 44.33 35.46 44.32 53.59 50.71 49.55 50.71 31.71 43.43 27.52 37.02 31.24"></polygon>
213
213
  </g>
214
214
  </g>
215
215
  </symbol>
@@ -217,9 +217,9 @@
217
217
  <defs></defs>
218
218
  <g id="Layer_2">
219
219
  <g id="Layer_1-2">
220
- <polygon points="37.7 40.16 72.48 20.1 37.7 0 2.9 20.1 37.7 40.16"></polygon>
221
- <polygon points="34.81 45.13 0 25.07 0 65.27 34.81 85.37 34.81 45.13"></polygon>
222
- <polygon points="40.56 45.13 40.56 85.37 75.37 65.27 75.37 25.04 40.56 45.13"></polygon>
220
+ <polygon style="fill:white;" points="37.7 40.16 72.48 20.1 37.7 0 2.9 20.1 37.7 40.16"></polygon>
221
+ <polygon style="fill:white;" points="34.81 45.13 0 25.07 0 65.27 34.81 85.37 34.81 45.13"></polygon>
222
+ <polygon style="fill:#5cb747;" points="40.56 45.13 40.56 85.37 75.37 65.27 75.37 25.04 40.56 45.13"></polygon>
223
223
  </g>
224
224
  </g>
225
225
  </symbol>
@@ -227,12 +227,12 @@
227
227
  <defs></defs>
228
228
  <g id="Layer_2">
229
229
  <g id="Layer_1-2">
230
- <path id="Path_4334" d="M60.26,25.14l9.51-5.5L35.85,0,13.4,13.48,22.9,19l12.94-8Z"></path>
231
- <path id="Path_4335" d="M22.77,76.11v-11l-13.25-8V32.25L0,26.76V62.61Z"></path>
232
- <path id="Path_4336" d="M56.35,48.39l0,9.72L36,69.78V83.67l-8.89-5.5V64.92Z"></path>
233
- <path id="Path_4337" d="M22.77,59.94l-8.62-5.11,0-25L0,21.5l9-5.43,13.73,8Z"></path>
234
- <path id="Path_4338" d="M70.21,24.37l-.09,11.49-9.56,5.5L26.86,21.84l9.35-5.61L60.27,30.07Z"></path>
235
- <path id="Path_4339" d="M40.37,83.62,70.21,66.49V40.65L60.7,46.08V61.31L40.36,73Z"></path>
230
+ <path id="Path_4334" style="fill:#5cb747;" d="M60.26,25.14l9.51-5.5L35.85,0,13.4,13.48,22.9,19l12.94-8Z"></path>
231
+ <path id="Path_4335" style="fill:white;" d="M22.77,76.11v-11l-13.25-8V32.25L0,26.76V62.61Z"></path>
232
+ <path id="Path_4336" style="fill:#5cb747;" d="M56.35,48.39l0,9.72L36,69.78V83.67l-8.89-5.5V64.92Z"></path>
233
+ <path id="Path_4337" style="fill:#5cb747;" d="M22.77,59.94l-8.62-5.11,0-25L0,21.5l9-5.43,13.73,8Z"></path>
234
+ <path id="Path_4338" style="fill:white;" d="M70.21,24.37l-.09,11.49-9.56,5.5L26.86,21.84l9.35-5.61L60.27,30.07Z"></path>
235
+ <path id="Path_4339" style="fill:white;" d="M40.37,83.62,70.21,66.49V40.65L60.7,46.08V61.31L40.36,73Z"></path>
236
236
  </g>
237
237
  </g>
238
238
  </symbol>
@@ -0,0 +1 @@
1
+ import{r as s,h as o,H as t}from"./p-50923c9a.js";const r=class{constructor(o){s(this,o)}render(){return o(t,null,o("slot",null))}};r.style=":host{display:block}";export{r as ptc_countdown}
@@ -0,0 +1 @@
1
+ import{r as t,g as i,h as g,H as I,c as a}from"./p-50923c9a.js";const e=class{constructor(g){t(this,g),this.size="small",this.type="regular",this.spin="",this.pulse="",this.color="default",this.regularSprite=i("./media/regular.svg"),this.solidSprite=i("./media/solid.svg"),this.brandSprite=i("./media/brands.svg"),this.ptcSprite=i("./media/designer.svg")}render(){const t=this.getCssClassMap();return g(I,null,g("svg",{class:t},g("use","brands"==this.type?{href:`${this.brandSprite}#${this.name}`}:"solid"==this.type?{href:`${this.solidSprite}#${this.name}`}:"ptc"==this.type?{href:`${this.ptcSprite}#${this.name}`}:{href:`${this.regularSprite}#${this.name}`})))}getCssClassMap(){return{[this.size]:!0,[this.spin]:!0,[this.pulse]:!0,[this.color]:!0}}static get assetsDirs(){return["media"]}};e.style='/*!\n * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */.svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible}.svg-inline--fa{display:inline-block;font-size:inherit;height:1em;vertical-align:-.125em}.svg-inline--fa.fa-lg{vertical-align:-.225em}.svg-inline--fa.fa-w-1{width:.0625em}.svg-inline--fa.fa-w-2{width:.125em}.svg-inline--fa.fa-w-3{width:.1875em}.svg-inline--fa.fa-w-4{width:.25em}.svg-inline--fa.fa-w-5{width:.3125em}.svg-inline--fa.fa-w-6{width:.375em}.svg-inline--fa.fa-w-7{width:.4375em}.svg-inline--fa.fa-w-8{width:.5em}.svg-inline--fa.fa-w-9{width:.5625em}.svg-inline--fa.fa-w-10{width:.625em}.svg-inline--fa.fa-w-11{width:.6875em}.svg-inline--fa.fa-w-12{width:.75em}.svg-inline--fa.fa-w-13{width:.8125em}.svg-inline--fa.fa-w-14{width:.875em}.svg-inline--fa.fa-w-15{width:.9375em}.svg-inline--fa.fa-w-16{width:1em}.svg-inline--fa.fa-w-17{width:1.0625em}.svg-inline--fa.fa-w-18{width:1.125em}.svg-inline--fa.fa-w-19{width:1.1875em}.svg-inline--fa.fa-w-20{width:1.25em}.svg-inline--fa.fa-pull-left{margin-right:.3em;width:auto}.svg-inline--fa.fa-pull-right{margin-left:.3em;width:auto}.svg-inline--fa.fa-border{height:1.5em}.svg-inline--fa.fa-li{width:2em}.svg-inline--fa.fa-fw{width:1.25em}.fa-layers svg.svg-inline--fa{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.fa-layers{display:inline-block;height:1em;position:relative;text-align:center;vertical-align:-.125em;width:1em}.fa-layers svg.svg-inline--fa{-webkit-transform-origin:center center;transform-origin:center center}.fa-layers-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.fa-layers-text{left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform-origin:center center;transform-origin:center center}.fa-layers-counter{background-color:#ff253a;border-radius:1em;-webkit-box-sizing:border-box;box-sizing:border-box;color:#fff;height:1.5em;line-height:1;max-width:5em;min-width:1.5em;overflow:hidden;padding:.25em;right:0;text-overflow:ellipsis;top:0;-webkit-transform:scale(.25);transform:scale(.25);-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-bottom-right{bottom:0;right:0;top:auto;-webkit-transform:scale(.25);transform:scale(.25);-webkit-transform-origin:bottom right;transform-origin:bottom right}.fa-layers-bottom-left{bottom:0;left:0;right:auto;top:auto;-webkit-transform:scale(.25);transform:scale(.25);-webkit-transform-origin:bottom left;transform-origin:bottom left}.fa-layers-top-right{right:0;top:0;-webkit-transform:scale(.25);transform:scale(.25);-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-top-left{left:0;right:auto;top:0;-webkit-transform:scale(.25);transform:scale(.25);-webkit-transform-origin:top left;transform-origin:top left}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;position:relative;width:2.5em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.svg-inline--fa.fa-stack-1x{height:1em;width:1.25em}.svg-inline--fa.fa-stack-2x{height:2em;width:2.5em}.fa-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.svg-inline--fa .fa-primary{fill:var(--fa-primary-color,currentColor);opacity:1;opacity:var(--fa-primary-opacity,1)}.svg-inline--fa .fa-secondary{fill:var(--fa-secondary-color,currentColor)}.svg-inline--fa .fa-secondary,.svg-inline--fa.fa-swap-opacity .fa-primary{opacity:.4;opacity:var(--fa-secondary-opacity,.4)}.svg-inline--fa.fa-swap-opacity .fa-secondary{opacity:1;opacity:var(--fa-primary-opacity,1)}.svg-inline--fa mask .fa-primary,.svg-inline--fa mask .fa-secondary{fill:#000}.fad.fa-inverse{color:#fff}icon-asset{vertical-align:middle}svg.small{width:var(--ptc-font-size-x-small);height:var(--ptc-font-size-x-small)}svg.large{width:var(--ptc-font-size-large);height:var(--ptc-font-size-large)}svg.xx-large{width:var(--ptc-font-size-xx-large);height:var(--ptc-font-size-xx-large)}svg.white{fill:var(--color-white)}svg.black{fill:var(--color-black)}svg.ptc-green{fill:var(--color-primary-green)}';const o=class{constructor(i){t(this,i),this.close=a(this,"close",7),this.btnLink="#",this.closeClick=()=>{this.visible=!1,this.close.emit()}}render(){const t=this.getCssClassMap();return g(I,null,g("div",{class:t,part:"part-announcement"},g("div",{class:this.tempContainer?"content-wrapper temp-container":"content-wrapper"},g("div",{class:"left-content",part:"part-left-content"},g("div",{class:"description"},g("slot",null)),this.btnText?g("ptc-button",{color:"legacy-green","icon-animation":"animation-right","link-href":this.btnLink},this.btnText,g("icon-asset",{slot:"slot-after-text",type:"ptc",size:"small",name:"icon-thin-arrow-right",color:"white"})):null),g("ptc-svg-btn",{"svg-name":"close",onClick:this.closeClick}))))}getCssClassMap(){return{announcement:!0,[this.visible?"visible":""]:!0}}};o.style=":host{display:block}.announcement{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNTUyLjI5NiIgaGVpZ2h0PSI0Ni45ODEiIHZpZXdCb3g9IjAgMCAxNTUyLjI5NiA0Ni45ODEiPg0KICAgIDxkZWZzPg0KICAgICAgICA8c3R5bGU+DQogICAgICAgICAgICAucHJlZml4X19jbHMtMntmaWxsOiNmZmZ9DQogICAgICAgIDwvc3R5bGU+DQogICAgPC9kZWZzPg0KICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzM3MCIgZGF0YS1uYW1lPSJHcm91cCAzNzAiIHN0eWxlPSJvcGFjaXR5Oi4yNTttaXgtYmxlbmQtbW9kZTpzb2Z0LWxpZ2h0O2lzb2xhdGlvbjppc29sYXRlIj4NCiAgICAgICAgPGcgaWQ9InByZWZpeF9fQXJ0d29ya18xMyIgZGF0YS1uYW1lPSJBcnR3b3JrIDEzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjkuMzM2IDIzLjQ5KSI+DQogICAgICAgICAgICA8ZyBpZD0icHJlZml4X19BcnR3b3JrXzEzLTIiIGRhdGEtbmFtZT0iQXJ0d29yayAxMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEyOS4zMzYgLTIzLjQ5KSI+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzEwIiBkYXRhLW5hbWU9Ikdyb3VwIDMxMCI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTI1NyIgZD0iTTAgMHYyNi4wMjhMMjYuMDI4IDB6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEyNTciLz4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF8xMjU4IiBkPSJNNDMwLjA3NiAwTDM4My4xIDQ2Ljk4MWgyNi4xMDdsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTI1OCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM2NS40MDgpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzMxMSIgZGF0YS1uYW1lPSJHcm91cCAzMTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDY0LjY2OCkiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEyNTkiIGQ9Ik0xNDAwLjMgMHYyNi4wMjhMMTQyNi4zMjggMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTI1OSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE0MDAuMzAxKSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEyNjAiIGQ9Ik0xODMwLjM3NiAwTDE3ODMuNCA0Ni45ODFoMjYuMTA3bDIwLjg2OS0yMC44Njl6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEyNjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNzY1LjcwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzEyIiBkYXRhLW5hbWU9Ikdyb3VwIDMxMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTI5LjMzNikiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEyNjEiIGQ9Ik0yODAwLjYgMHYyNi4wMjhMMjgyNi42MjkgMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTI2MSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI4MDAuNjAxKSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEyNjIiIGQ9Ik0zMjMwLjY3NiAwTDMxODMuNyA0Ni45ODFoMjYuMTA2bDIwLjg2OS0yMC44Njl6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEyNjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zMTY2LjAwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzEzIiBkYXRhLW5hbWU9Ikdyb3VwIDMxMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTk0LjAwNCkiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEyNjMiIGQ9Ik00MjAwLjkgMHYyNi4wMjhMNDIyNi45MjcgMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTI2MyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQyMDAuODk3KSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEyNjQiIGQ9Ik00NjMwLjk3NCAwTDQ1ODQgNDYuOTgxaDI2LjFsMjAuODctMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMjY0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDU2Ni4zMDYpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgPC9nPg0KICAgICAgICA8L2c+DQogICAgICAgIDxnIGlkPSJwcmVmaXhfX0FydHdvcmtfMTMtMyIgZGF0YS1uYW1lPSJBcnR3b3JrIDEzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzODguMTk5IDIzLjQ5KSI+DQogICAgICAgICAgICA8ZyBpZD0icHJlZml4X19BcnR3b3JrXzEzLTQiIGRhdGEtbmFtZT0iQXJ0d29yayAxMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEyOS4zMzYgLTIzLjQ5KSI+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzM0IiBkYXRhLW5hbWU9Ikdyb3VwIDMzNCI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTI5NyIgZD0iTTAgMHYyNi4wMjhMMjYuMDI4IDB6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEyOTciLz4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF8xMjk4IiBkPSJNNDMwLjA3NiAwTDM4My4xIDQ2Ljk4MWgyNi4xMDdsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTI5OCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM2NS40MDgpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzMzNSIgZGF0YS1uYW1lPSJHcm91cCAzMzUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDY0LjY2OCkiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEyOTkiIGQ9Ik0xNDAwLjMgMHYyNi4wMjhMMTQyNi4zMjggMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTI5OSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE0MDAuMzAxKSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMDAiIGQ9Ik0xODMwLjM3NiAwTDE3ODMuNCA0Ni45ODFoMjYuMTA3bDIwLjg2OS0yMC44Njl6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzMDAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNzY1LjcwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzM2IiBkYXRhLW5hbWU9Ikdyb3VwIDMzNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTI5LjMzNikiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMDEiIGQ9Ik0yODAwLjYgMHYyNi4wMjhMMjgyNi42MjkgMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMwMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI4MDAuNjAxKSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMDIiIGQ9Ik0zMjMwLjY3NiAwTDMxODMuNyA0Ni45ODFoMjYuMTA2bDIwLjg2OS0yMC44Njl6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzMDIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zMTY2LjAwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzM3IiBkYXRhLW5hbWU9Ikdyb3VwIDMzNyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTk0LjAwNCkiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMDMiIGQ9Ik00MjAwLjkgMHYyNi4wMjhMNDIyNi45MjcgMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMwMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQyMDAuODk3KSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMDQiIGQ9Ik00NjMwLjk3NCAwTDQ1ODQgNDYuOTgxaDI2LjFsMjAuODctMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzA0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDU2Ni4zMDYpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgPC9nPg0KICAgICAgICA8L2c+DQogICAgICAgIDxnIGlkPSJwcmVmaXhfX0FydHdvcmtfMTMtNSIgZGF0YS1uYW1lPSJBcnR3b3JrIDEzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2NDYuOTk2IDIzLjQ5KSI+DQogICAgICAgICAgICA8ZyBpZD0icHJlZml4X19BcnR3b3JrXzEzLTYiIGRhdGEtbmFtZT0iQXJ0d29yayAxMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEyOS4zMzYgLTIzLjQ5KSI+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzQzIiBkYXRhLW5hbWU9Ikdyb3VwIDM0MyI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTMxMyIgZD0iTTAgMHYyNi4wMjhMMjYuMDI4IDB6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzMTMiLz4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF8xMzE0IiBkPSJNNDMwLjA3NiAwTDM4My4xIDQ2Ljk4MWgyNi4xMDdsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMxNCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM2NS40MDgpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzM0NCIgZGF0YS1uYW1lPSJHcm91cCAzNDQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDY0LjY2OCkiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMTUiIGQ9Ik0xNDAwLjMgMHYyNi4wMjhMMTQyNi4zMjggMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMxNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE0MDAuMzAxKSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMTYiIGQ9Ik0xODMwLjM3NiAwTDE3ODMuNCA0Ni45ODFoMjYuMTA3bDIwLjg2OS0yMC44Njl6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzMTYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNzY1LjcwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzQ1IiBkYXRhLW5hbWU9Ikdyb3VwIDM0NSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTI5LjMzNikiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMTciIGQ9Ik0yODAwLjYgMHYyNi4wMjhMMjgyNi42MjkgMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMxNyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI4MDAuNjAxKSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMTgiIGQ9Ik0zMjMwLjY3NiAwTDMxODMuNyA0Ni45ODFoMjYuMTA2bDIwLjg2OS0yMC44Njl6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzMTgiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zMTY2LjAwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzQ2IiBkYXRhLW5hbWU9Ikdyb3VwIDM0NiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTk0LjAwNCkiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMTkiIGQ9Ik00MjAwLjkgMHYyNi4wMjhMNDIyNi45MjcgMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMxOSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQyMDAuODk3KSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMjAiIGQ9Ik00NjMwLjk3NCAwTDQ1ODQgNDYuOTgxaDI2LjFsMjAuODctMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzIwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDU2Ni4zMDYpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgPC9nPg0KICAgICAgICA8L2c+DQogICAgICAgIDxnIGlkPSJwcmVmaXhfX0FydHdvcmtfMTMtNyIgZGF0YS1uYW1lPSJBcnR3b3JrIDEzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg5MDUuMDU2IDIzLjQ5KSI+DQogICAgICAgICAgICA8ZyBpZD0icHJlZml4X19BcnR3b3JrXzEzLTgiIGRhdGEtbmFtZT0iQXJ0d29yayAxMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEyOS4zMzYgLTIzLjQ5KSI+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzUyIiBkYXRhLW5hbWU9Ikdyb3VwIDM1MiI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTMyOSIgZD0iTTAgMHYyNi4wMjhMMjYuMDI4IDB6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzMjkiLz4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF8xMzMwIiBkPSJNNDMwLjA3NiAwTDM4My4xIDQ2Ljk4aDI2LjEwNmwyMC44NjktMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzMwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzY1LjQwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzUzIiBkYXRhLW5hbWU9Ikdyb3VwIDM1MyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjQuNjY4KSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTMzMSIgZD0iTTE0MDAuMyAwdjI2LjAyOEwxNDI2LjMyOCAweiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzMxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTQwMC4zMDEpIi8+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTMzMiIgZD0iTTE4MzAuMzc2IDBMMTc4My40IDQ2Ljk4aDI2LjEwN2wyMC44NjktMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzMyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTc2NS43MDgpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzM1NCIgZGF0YS1uYW1lPSJHcm91cCAzNTQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyOS4zMzYpIj4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF8xMzMzIiBkPSJNMjgwMC42IDB2MjYuMDI4TDI4MjYuNjI5IDB6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzMzMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yODAwLjYwMSkiLz4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF8xMzM0IiBkPSJNMzIzMC42NzYgMEwzMTgzLjcgNDYuOThoMjYuMTA2bDIwLjg3LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMzNCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMxNjYuMDA4KSIvPg0KICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgICAgICA8ZyBpZD0icHJlZml4X19Hcm91cF8zNTUiIGRhdGEtbmFtZT0iR3JvdXAgMzU1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxOTQuMDA0KSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTMzNSIgZD0iTTQyMDAuOSAwdjI2LjAyOEw0MjI2LjkyOCAweiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzM1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDIwMC44OTkpIi8+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTMzNiIgZD0iTTQ2MzAuOTc1IDBMNDU4NCA0Ni45OGgyNi4xMDVsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMzNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQ1NjYuMzA4KSIvPg0KICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgIDwvZz4NCiAgICAgICAgPC9nPg0KICAgICAgICA8ZyBpZD0icHJlZml4X19BcnR3b3JrXzEzLTkiIGRhdGEtbmFtZT0iQXJ0d29yayAxMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTE2My45NiAyMy40OSkiPg0KICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fQXJ0d29ya18xMy0xMCIgZGF0YS1uYW1lPSJBcnR3b3JrIDEzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTI5LjMzNiAtMjMuNDkpIj4NCiAgICAgICAgICAgICAgICA8ZyBpZD0icHJlZml4X19Hcm91cF8zNjEiIGRhdGEtbmFtZT0iR3JvdXAgMzYxIj4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF8xMzQ1IiBkPSJNMCAwdjI2LjAyOEwyNi4wMjggMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTM0NSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzNDYiIGQ9Ik00MzAuMDc2IDBMMzgzLjEgNDYuOTgxaDI2LjEwN2wyMC44NjktMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzQ2IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzY1LjQwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzYyIiBkYXRhLW5hbWU9Ikdyb3VwIDM2MiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjQuNjY4KSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTM0NyIgZD0iTTE0MDAuMyAwdjI2LjAyOEwxNDI2LjMyOCAweiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzQ3IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTQwMC4zMDEpIi8+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTM0OCIgZD0iTTE4MzAuMzc2IDBMMTc4My40IDQ2Ljk4MWgyNi4xMDdsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTM0OCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE3NjUuNzA4KSIvPg0KICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgICAgICA8ZyBpZD0icHJlZml4X19Hcm91cF8zNjMiIGRhdGEtbmFtZT0iR3JvdXAgMzYzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjkuMzM2KSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTM0OSIgZD0iTTI4MDAuNiAwdjI2LjAyOEwyODI2LjYyOSAweiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzQ5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjgwMC42MDEpIi8+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTM1MCIgZD0iTTMyMzAuNjc2IDBMMzE4My43IDQ2Ljk4MWgyNi4xMDZsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTM1MCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMxNjYuMDA4KSIvPg0KICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgICAgICA8ZyBpZD0icHJlZml4X19Hcm91cF8zNjQiIGRhdGEtbmFtZT0iR3JvdXAgMzY0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxOTQuMDA0KSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTM1MSIgZD0iTTQyMDAuOSAwdjI2LjAyOEw0MjI2LjkyNiAweiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzUxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDIwMC44OTcpIi8+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTM1MiIgZD0iTTQ2MzAuOTczIDBMNDU4NCA0Ni45ODFoMjYuMWwyMC44Ny0yMC44Njl6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzNTIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00NTY2LjMwNSkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICA8L2c+DQogICAgICAgIDwvZz4NCiAgICAgICAgPGcgaWQ9InByZWZpeF9fQXJ0d29ya18xMy0xMSIgZGF0YS1uYW1lPSJBcnR3b3JrIDEzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNDIyLjk2IDIzLjQ5KSI+DQogICAgICAgICAgICA8ZyBpZD0icHJlZml4X19BcnR3b3JrXzEzLTEyIiBkYXRhLW5hbWU9IkFydHdvcmsgMTMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMjkuMzM2IC0yMy40OSkiPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzMwMzMiIGRhdGEtbmFtZT0iR3JvdXAgMzAzMyI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfOTA1MyIgZD0iTTAgMHYyNi4wMjhMMjYuMDI4IDB6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDkwNTMiLz4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF85MDU0IiBkPSJNNDMwLjA3NiAwTDM4My4xIDQ2Ljk4MWgyNi4xMDdsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggOTA1NCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM2NS40MDgpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzMwMzQiIGRhdGEtbmFtZT0iR3JvdXAgMzAzNCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjQuNjY4KSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfOTA1NSIgZD0iTTE0MDAuMyAwdjI2LjAyOEwxNDI2LjMyOCAweiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCA5MDU1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTQwMC4zMDEpIi8+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfOTA1NiIgZD0iTTE4MzAuMzc2IDBMMTc4My40IDQ2Ljk4MWgyNi4xMDdsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggOTA1NiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE3NjUuNzA4KSIvPg0KICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgICAgICA8ZyBpZD0icHJlZml4X19Hcm91cF8zMDM1IiBkYXRhLW5hbWU9Ikdyb3VwIDMwMzUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyOS4zMzYpIj4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF85MDU3IiBkPSJNMjgwMC42IDB2MjYuMDI4TDI4MjYuNjI5IDB6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDkwNTciIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yODAwLjYwMSkiLz4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF85MDU4IiBkPSJNMzIzMC42NzYgMEwzMTgzLjcgNDYuOTgxaDI2LjEwNmwyMC44NjktMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCA5MDU4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzE2Ni4wMDgpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzMwMzYiIGRhdGEtbmFtZT0iR3JvdXAgMzAzNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTk0LjAwNCkiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzkwNTkiIGQ9Ik00MjAwLjkgMHYyNi4wMjhMNDIyNi45MjYgMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggOTA1OSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQyMDAuODk3KSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzkwNjAiIGQ9Ik00NjMwLjk3MyAwTDQ1ODQgNDYuOTgxaDI2LjFsMjAuODctMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCA5MDYwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDU2Ni4zMDUpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgPC9nPg0KICAgICAgICA8L2c+DQogICAgPC9nPg0KPC9zdmc+DQo=);width:100%;position:relative;background-color:rgba(211, 211, 211, 0.4);z-index:860;background-size:cover;background-repeat:repeat-x;border:1px solid var(--color-secondary-turtlegreen);-webkit-box-shadow:1px 1px 9px 0 rgba(0, 0, 0, 0.56);box-shadow:1px 1px 9px 0 rgba(0, 0, 0, 0.56);z-index:999;display:none}.visible{display:block}.content-wrapper{display:flex;padding:5px 15px;margin:0 auto;align-items:center;justify-content:space-between}@media screen and (min-width: 768px){.content-wrapper{padding:10px 15px}}@media screen and (min-width: 768px){.temp-container{width:750px}}@media screen and (min-width: 992px){.temp-container{width:970px}}@media screen and (min-width: 1200px){.temp-container{width:1170px}}@media screen and (min-width: 1440px){.temp-container{width:1400px}}@media screen and (min-width: 1600px){.temp-container{width:1560px}}.left-content{display:block;flex-basis:82%}@media screen and (min-width: 768px){.left-content{display:flex;align-items:center;justify-content:flex-start}}.ptc-svg-btn{flex-basis:18%}.description{margin-bottom:var(--ptc-element-spacing-04)}@media screen and (min-width: 768px){.description{margin-bottom:unset;margin-right:var(--ptc-element-spacing-04)}}";const n=class{constructor(i){t(this,i),this.clickEvent=a(this,"clickEvent",7),this.type="button",this.color="blackgrey",this.iconAnimation="",this.iconPosition="icon-right",this.linkHref=void 0,this.target="_self",this.rel=void 0}clickEventHandler(){this.clickEvent.emit()}render(){const t=this.getCssClassMap(),i=this.linkHref?"a":"button";return g(I,null,this.styles&&g("style",null,this.styles),g(i,Object.assign({class:t,disabled:this.disabled,onClick:this.clickEventHandler.bind(this)},this.linkHref?{href:this.linkHref}:{},this.linkHref?{}:{type:this.type},this.target&&this.linkHref?{target:this.target}:{},this.rel&&this.linkHref?{rel:this.rel}:{}),g("span",null,g("slot",{name:"slot-before-text"}),g("slot",null),g("slot",{name:"slot-after-text"}))))}getCssClassMap(){return{[this.color]:!0,[this.iconAnimation]:!0,[this.iconPosition]:!0}}};n.style='button:disabled{pointer-events:none;opacity:0.6}button{background-color:var(--color-primary-uigrey);display:inline-block;border-style:solid;border-width:1px;white-space:normal;position:relative;text-decoration:none;cursor:pointer;padding:9.4px 17.5px;border-radius:3px}button.animation-right ::slotted([slot=slot-after-text]),button.animation-right ::slotted([slot=slot-before-text]),button.animation-down ::slotted([slot=slot-after-text]),button.animation-down ::slotted([slot=slot-before-text]){transition:transform var(--ptc-transition-medium) var(--ptc-standard-ease);position:relative;display:inline-block}button:hover.animation-right ::slotted([slot=slot-after-text]),button:hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}button:hover.animation-down ::slotted([slot=slot-after-text]),button:hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}button span{font-size:var(--ptc-font-size-small);font-weight:bold;line-height:0.86}.icon-left ::slotted([slot=slot-before-text]){margin-right:var(--ptc-element-spacing-01)}.icon-right ::slotted([slot=slot-after-text]){margin-left:var(--ptc-element-spacing-01)}.blackgrey{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(285deg, var(--color-primary-uigrey) 155%, #6e717c 62%)}.blackgrey:hover{box-shadow:var(--ptc-shadow-x-large)}.blackgrey span{color:var(--color-white)}.turtlegreen{box-shadow:var(--ptc-shadow-x-small);border:solid 1px #5bb73b;background-image:linear-gradient(285deg, #5bb73b 155%, #178642 62%)}.turtlegreen:hover{box-shadow:var(--ptc-shadow-x-large)}.turtlegreen span{color:var(--color-white)}.offwhite{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(to right, #ffffff, #d3d3d3, #e5e5e5)}.offwhite:hover{box-shadow:var(--ptc-shadow-x-large)}.offwhite span{color:var(--color-primary-uigrey)}.legacy-green{box-shadow:0 0 25.8px 3.2px rgba(0, 0, 0, 0.5);border:solid 2.5px var(--color-secondary-tutlegreen-dark);background-image:linear-gradient(to right, var(--color-secondary-turtlegreen), var(--color-secondary-tutlegreen-dark))}@media screen and (min-width: 768px){.legacy-green{padding:20px 20px}}.legacy-green:after{position:absolute;content:"";top:-1px;left:0;bottom:0;right:0;width:100%;height:103%;background-image:linear-gradient(to right, var(--color-secondary-tutlegreen-dark), var(--color-secondary-turtlegreen));opacity:0;transition:opacity 0.6s cubic-bezier(0, 0, 0.23, 1);border-radius:2px}.legacy-green:hover{box-shadow:0 0 49px 6.1px rgba(0, 0, 0, 0.55)}.legacy-green:hover span{color:var(--color-white)}.legacy-green:hover:after{opacity:1}.legacy-green span{font-family:var(--ptc-font-secondary-latin);color:var(--color-white);z-index:100;position:relative;text-transform:uppercase;font-weight:var(--ptc-font-weight-bold);letter-spacing:var(--ptc-letter-spacing-normal);font-size:var(--ptc-font-size-medium)}@media screen and (min-width: 768px){.legacy-green span{font-size:19px;letter-spacing:var(--ptc-letter-spacing-loose)}}.legacy-green icon-asset{display:inline}a{border-style:solid;border-width:1px;position:relative;text-decoration:none;padding:9.4px 17.5px;border-radius:3px;text-decoration:none;display:inline-block;outline:none;position:relative}a.animation-right ::slotted([slot=slot-after-text]),a.animation-right ::slotted([slot=slot-before-text]),a.animation-down ::slotted([slot=slot-after-text]),a.animation-down ::slotted([slot=slot-before-text]){transition:all ease-out 0.25s;position:relative;display:inline-block;margin-left:5px}a:hover.animation-right ::slotted([slot=slot-after-text]),a:hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}a:hover.animation-down ::slotted([slot=slot-after-text]),a:hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}.nav{background-color:#323b42;border-radius:var(--ptc-border-radius-medium);border:1px solid var(--color-white);border-bottom-style:solid;border-bottom-width:1px;box-sizing:border-box;color:var(--color-white);display:inline-block;font-size:13px;font-stretch:100%;font-weight:var(--ptc-font-weight-bold);line-height:26px;list-style:none;padding:3px var(--ptc-element-spacing-04);position:relative;text-align:center;text-decoration:none;transition:background-color var(--ptc-transition-medium) var(--ptc-decelerated-ease)}.nav:hover{background-color:#20262a}';const r=class{constructor(i){t(this,i),this.fontSize="medium",this.fontWeight="w-4",this.paraStyle="default"}render(){const t=this.getCssClassMap();return g("p",{class:t,part:"part-para"},g("slot",null))}getCssClassMap(){return{[this.fontSize]:!0,[this.fontWeight]:!0,[this.paraStyle]:!0,[this.paraMargin]:!0}}};r.style="p.default{text-shadow:0 3px 6px var(--color-white);line-height:var(--ptc-line-height-dense);color:var(--color-primary-grey)}p.xx-small{font-size:var(--ptc-font-size-xx-small)}p.x-small{font-size:var(--ptc-font-size-x-small)}p.small{font-size:var(--ptc-font-size-small)}p.medium{font-size:var(--ptc-font-size-medium)}p.large{font-size:var(--ptc-font-size-large)}p.x-large{font-size:var(--ptc-font-size-x-large)}p.xx-large{font-size:var(--ptc-font-size-xx-large)}p.xxx-large{font-size:var(--ptc-font-size-xxx-large)}p.xxxx-large{font-size:var(--ptc-font-size-xxxx-large)}p.w-3{font-weight:var(--ptc-font-weight-thin)}p.w-4{font-weight:var(--ptc-font-weight-regular)}p.w-5{font-weight:var(--ptc-font-weight-medium)}p.w-6{font-weight:var(--ptc-font-weight-semibold)}p.w-7{font-weight:var(--ptc-font-weight-bold)}p.w-8{font-weight:var(--ptc-font-weight-extrabold)}p.w-9{font-weight:var(--ptc-font-weight-black)}p.margin-flush{margin-top:0;margin-bottom:0}p.margin-top-3{margin-top:var(--ptc-element-spacing-03)}p.margin-top-4{margin-top:var(--ptc-element-spacing-04)}p.margin-top-5{margin-top:var(--ptc-element-spacing-05)}p.margin-top-6{margin-top:var(--ptc-element-spacing-06)}p.margin-bottom-3{margin-bottom:var(--ptc-element-spacing-03)}p.margin-bottom-4{margin-bottom:var(--ptc-element-spacing-04)}p.margin-bottom-5{margin-bottom:var(--ptc-element-spacing-05)}p.margin-bottom-6{margin-bottom:var(--ptc-element-spacing-06)}p.announcement{text-transform:uppercase;font-size:var(--ptc-font-size-small);color:var(--color-secondary-grey);line-height:var(--ptc-line-height-looser);letter-spacing:1px}";const s=class{constructor(i){t(this,i)}render(){return g(I,null,this.svgName&&"close"===this.svgName?g("div",{class:"svg-close",innerHTML:'<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 42 41.485">\n <g id="Group_1042" data-name="Group 1042" transform="rotate(180 108.25 87.993)">\n <path id="Line_446" d="M0 0v39.486" class="cls-1" data-name="Line 446"></path>\n <path id="Line_447" d="M0 0h40" class="cls-1" data-name="Line 447"></path>\n <path id="Line_448" d="M0 33.592V0" class="cls-1" data-name="Line 448"></path>\n <path id="Line_449" d="M23.994 0H0" class="cls-1" data-name="Line 449"></path>\n <path id="Line_450" d="M0 0l17.596 17.596" class="cls-2" data-name="Line 450" transform="translate(187.229 147.226)"></path>\n <path id="Line_451" d="M0 7.198L7.199 0" class="cls-2" data-name="Line 451" transform="translate(197.55 147.312)"></path>\n <path id="Path_114" d="M0 7.2L7.2 0" class="cls-2" data-name="Path 114" transform="translate(187.313 157.549)"></path>\n </g>\n</svg>'}):null)}};s.style=":host{display:block;cursor:pointer}.svg-close svg .cls-1,.svg-close svg .cls-2{fill:none;stroke-width:2px}.svg-close svg .cls-1{stroke:#1c2439;stroke-linecap:square}.svg-close svg .cls-2{stroke:#74c34d}.svg-close svg path{-webkit-transition:all 0.25s ease-in-out;-o-transition:all ease-in-out 0.25s;transition:all 0.25s ease-in-out}.svg-close svg .cls-1:first-child{-webkit-transform:translate(175.5px, 135.5px);-ms-transform:translate(175.5px, 135.5px);transform:translate(175.5px, 135.5px)}.svg-close svg .cls-1:nth-child(2){-webkit-transform:translate(175.5px, 174.985px);-ms-transform:translate(175.5px, 174.985px);transform:translate(175.5px, 174.985px)}.svg-close svg .cls-1:nth-child(3){-webkit-transform:translate(215.5px, 141.393px);-ms-transform:translate(215.5px, 141.393px);transform:translate(215.5px, 141.393px)}.svg-close svg .cls-1:nth-child(4){-webkit-transform:translate(175.5px, 135.5px);-ms-transform:translate(175.5px, 135.5px);transform:translate(175.5px, 135.5px)}.svg-close:hover svg .cls-1:first-child{-webkit-transform:translate(175.5px, 162px);-ms-transform:translate(175.5px, 162px);transform:translate(175.5px, 162px)}.svg-close:hover svg .cls-1:nth-child(2){-webkit-transform:translate(149px, 174.985px);-ms-transform:translate(149px, 174.985px);transform:translate(149px, 174.985px)}.svg-close:hover svg .cls-1:nth-child(3){-webkit-transform:translate(215.5px, 174px);-ms-transform:translate(215.5px, 174px);transform:translate(215.5px, 174px)}.svg-close:hover svg .cls-1:nth-child(4){-webkit-transform:translate(152.5px, 135.5px);-ms-transform:translate(152.5px, 135.5px);transform:translate(152.5px, 135.5px)}.svg-close.svg-close-white .cls-1{stroke:#fff}";export{e as icon_asset,o as ptc_announcement,n as ptc_button,r as ptc_para,s as ptc_svg_btn}
@@ -0,0 +1 @@
1
+ import{r as t,h as i,H as s,a as e}from"./p-50923c9a.js";import{a as n}from"./p-240733ce.js";const o=class{constructor(i){t(this,i),this.alt="image",this.sizeXs="510x340",this.sizeSm="1240x496",this.sizeMd="1366x500",this.sizeLg="1920x1080",this.borderRadius="",this.objectFit="cover"}WindowResize(){this.addIntersectionObserver()}componentDidLoad(){this.addIntersectionObserver()}componentWillUpdate(){this.src!==this.oldSrc&&this.addIntersectionObserver(),this.oldSrc=this.src}addIntersectionObserver(){if(this.src)if("IntersectionObserver"in window){let t=new IntersectionObserver((i=>{i.forEach((i=>{if(i.isIntersecting){const i=this.el.shadowRoot.querySelector("img");i.src=this.setResponsiveBg(),console.log("loaded"),t.unobserve(i)}}))}));t.observe(this.el.shadowRoot.querySelector("img"))}else setTimeout((()=>{const t=this.el.shadowRoot.querySelector("img");t.src=this.setResponsiveBg(),t.onload=()=>{t.removeAttribute("data-src"),console.log("loaded fallback")}}),5e3)}setResponsiveBg(){let t,i,s=(this.el.shadowRoot||document).querySelectorAll("img"),e=this.getCurrentBreakPoints();for(var n=0,o=s.length;n<o;n++){if(t=s[n],i=t.getAttribute("data-"+e),null!==i)return i;"object"==typeof console&&console.warn("Data attribute: data-"+e+" not found on element:\n\n"+t.outerHTML+"\n\n\n")}}render(){const t=this.getCssClassMap();return i(s,null,this.styles&&i("style",null,this.styles),i("img",Object.assign({class:t,"data-xs":this.sizeXs?`${this.src}:${this.sizeXs}`:`${this.src}`,"data-sm":this.sizeSm?`${this.src}:${this.sizeSm}`:`${this.src}`,"data-md":this.sizeMd?`${this.src}:${this.sizeMd}`:`${this.src}`,"data-lg":this.sizeLg?`${this.src}:${this.sizeLg}`:`${this.src}`},this.width?{width:this.width}:{},this.height?{height:this.height}:{},{alt:this.alt})))}getCurrentBreakPoints(){let t,i=window.document,s=i.createElement("div");i.body.appendChild(s);for(let e=n.envs.length-1;e>=0;e--)if(t=n.envs[e],s.className="hidden-"+t,null===s.offsetParent)return i.body.removeChild(s),console.log("remove test node"),t;return i.body.removeChild(s),this.getFallbackBreakpoint()}getFallbackBreakpoint(){return window.matchMedia("(min-width: 992px)").matches?"lg":window.matchMedia("(min-width: 768px)").matches?"md":window.matchMedia("(min-width: 576px)").matches?"sm":"xs"}getCssClassMap(){return{[this.borderRadius]:!0,[this.objectFit]:!0}}get el(){return e(this)}};o.style=":host{display:block;overflow:hidden}img{max-width:100%;height:auto}.cover{object-fit:cover}.fill{object-fit:fill}.contain{object-fit:contain}.scale-down{object-fit:scale-down}.none{object-fit:none}.initial{object-fit:initial}.inherit{object-fit:inherit}";export{o as ptc_picture}
@@ -1 +1 @@
1
- import{p as e,b as t}from"./p-50923c9a.js";(()=>{const t=import.meta.url,i={};return""!==t&&(i.resourcesUrl=new URL(".",t).href),e(i)})().then((e=>t([["p-ff28ce2d",[[1,"ptc-card",{cardType:[1,"card-type"],cardHref:[1,"card-href"],target:[1],rel:[1],hasImage:[4,"has-image"],hasVideo:[4,"has-video"],hasLottie:[4,"has-lottie"],heading:[1],cardDate:[1,"card-date"],styles:[1]}]]],["p-da19148c",[[1,"ptc-link",{disabled:[516],external:[516],href:[1],target:[1],linkTitle:[1,"link-title"],theme:[1],uppercase:[4],fontSize:[1,"font-size"]}]]],["p-ef250898",[[1,"ptc-lottie",{jsonSrc:[1025,"json-src"],speed:[1026]}]]],["p-90402319",[[4,"list-item",{listType:[1,"list-type"],linkHref:[1,"link-href"]}]]],["p-f80152dc",[[1,"my-component",{first:[1],middle:[1],last:[1]}]]],["p-73e2418e",[[1,"ptc-avatar"]]],["p-66ffa30c",[[1,"ptc-footer"]]],["p-f694e46a",[[0,"ptc-img",{sizeXs:[1025,"size-xs"],sizeSm:[1025,"size-sm"],sizeMd:[1025,"size-md"],sizeLg:[1025,"size-lg"],imgUrl:[1,"img-url"],imageType:[1,"image-type"],borderRadius:[1,"border-radius"],loadMode:[1,"load-mode"]},[[9,"resize","WindowResize"]]]]],["p-919311d2",[[0,"ptc-list",{listType:[1,"list-type"],listItems:[16]}]]],["p-2d5f8cff",[[1,"ptc-nav"]]],["p-186beb2c",[[1,"ptc-nav-item",{url:[1025],label:[1025],ariaExpanded:[1028,"aria-expanded"],depth:[1538],hasChildren:[1028,"has-children"],parentExpanded:[1540,"parent-expanded"],navType:[1,"nav-type"]},[[0,"handleClick","handleClick"],[9,"resize","handleResize"]]]]],["p-ac449734",[[4,"ptc-overlay"]]],["p-b1af353d",[[1,"ptc-picture",{src:[1],alt:[1],sizeXs:[1025,"size-xs"],sizeSm:[1025,"size-sm"],sizeMd:[1025,"size-md"],sizeLg:[1025,"size-lg"],borderRadius:[1,"border-radius"],height:[1],width:[1],objectFit:[1,"object-fit"],styles:[1],oldSrc:[32]},[[9,"resize","WindowResize"]]]]],["p-d6553853",[[1,"ptc-spacer",{breakpoint:[1],size:[1],direction:[1]}]]],["p-6b1a35e1",[[1,"ptc-span",{spanStyle:[1,"span-style"],display:[1],styles:[1]}]]],["p-0c8df906",[[1,"ptc-title",{type:[1],textAlign:[1,"text-align"],upperline:[1]}]]],["p-51a3e9e6",[[1,"lottie-player",{mode:[1],autoplay:[4],background:[513],controls:[4],count:[2],direction:[2],hover:[4],loop:[516],renderer:[1],speed:[2],src:[1],currentState:[1,"current-state"],seeker:[8],intermission:[2],play:[64],pause:[64],stop:[64],seek:[64],getLottie:[64],setSpeed:[64],setDirection:[64],setLooping:[64],togglePlay:[64],toggleLooping:[64]}]]],["p-796b8287",[[1,"ptc-date",{year:[2],month:[2],day:[2],country:[1],dateString:[1,"date-string"],dateStyles:[1,"date-styles"]}]]],["p-6194817a",[[1,"ptc-announcement",{btnText:[513,"btn-text"],visible:[1540],btnLink:[513,"btn-link"],tempContainer:[4,"temp-container"]}],[1,"ptc-para",{fontSize:[1,"font-size"],fontWeight:[1,"font-weight"],paraStyle:[1,"para-style"],paraMargin:[1,"para-margin"]}],[1,"ptc-button",{disabled:[516],type:[1],color:[1],iconAnimation:[1,"icon-animation"],iconPosition:[1,"icon-position"],linkHref:[1,"link-href"],target:[1],rel:[1],styles:[1]}],[1,"ptc-svg-btn",{svgName:[1,"svg-name"]}],[0,"icon-asset",{name:[1],size:[1],type:[1],spin:[1],pulse:[1],color:[1]}]]]],e)));
1
+ import{p as e,b as t}from"./p-50923c9a.js";(()=>{const t=import.meta.url,i={};return""!==t&&(i.resourcesUrl=new URL(".",t).href),e(i)})().then((e=>t([["p-ff28ce2d",[[1,"ptc-card",{cardType:[1,"card-type"],cardHref:[1,"card-href"],target:[1],rel:[1],hasImage:[4,"has-image"],hasVideo:[4,"has-video"],hasLottie:[4,"has-lottie"],heading:[1],cardDate:[1,"card-date"],styles:[1]}]]],["p-da19148c",[[1,"ptc-link",{disabled:[516],external:[516],href:[1],target:[1],linkTitle:[1,"link-title"],theme:[1],uppercase:[4],fontSize:[1,"font-size"]}]]],["p-ef250898",[[1,"ptc-lottie",{jsonSrc:[1025,"json-src"],speed:[1026]}]]],["p-90402319",[[4,"list-item",{listType:[1,"list-type"],linkHref:[1,"link-href"]}]]],["p-f80152dc",[[1,"my-component",{first:[1],middle:[1],last:[1]}]]],["p-73e2418e",[[1,"ptc-avatar"]]],["p-62706e4e",[[1,"ptc-countdown"]]],["p-66ffa30c",[[1,"ptc-footer"]]],["p-f694e46a",[[0,"ptc-img",{sizeXs:[1025,"size-xs"],sizeSm:[1025,"size-sm"],sizeMd:[1025,"size-md"],sizeLg:[1025,"size-lg"],imgUrl:[1,"img-url"],imageType:[1,"image-type"],borderRadius:[1,"border-radius"],loadMode:[1,"load-mode"]},[[9,"resize","WindowResize"]]]]],["p-919311d2",[[0,"ptc-list",{listType:[1,"list-type"],listItems:[16]}]]],["p-2d5f8cff",[[1,"ptc-nav"]]],["p-186beb2c",[[1,"ptc-nav-item",{url:[1025],label:[1025],ariaExpanded:[1028,"aria-expanded"],depth:[1538],hasChildren:[1028,"has-children"],parentExpanded:[1540,"parent-expanded"],navType:[1,"nav-type"]},[[0,"handleClick","handleClick"],[9,"resize","handleResize"]]]]],["p-ac449734",[[4,"ptc-overlay"]]],["p-d17b386a",[[1,"ptc-picture",{src:[1],alt:[1],sizeXs:[1025,"size-xs"],sizeSm:[1025,"size-sm"],sizeMd:[1025,"size-md"],sizeLg:[1025,"size-lg"],borderRadius:[1,"border-radius"],height:[1],width:[1],objectFit:[1,"object-fit"],styles:[1],oldSrc:[32]},[[9,"resize","WindowResize"]]]]],["p-d6553853",[[1,"ptc-spacer",{breakpoint:[1],size:[1],direction:[1]}]]],["p-6b1a35e1",[[1,"ptc-span",{spanStyle:[1,"span-style"],display:[1],styles:[1]}]]],["p-0c8df906",[[1,"ptc-title",{type:[1],textAlign:[1,"text-align"],upperline:[1]}]]],["p-51a3e9e6",[[1,"lottie-player",{mode:[1],autoplay:[4],background:[513],controls:[4],count:[2],direction:[2],hover:[4],loop:[516],renderer:[1],speed:[2],src:[1],currentState:[1,"current-state"],seeker:[8],intermission:[2],play:[64],pause:[64],stop:[64],seek:[64],getLottie:[64],setSpeed:[64],setDirection:[64],setLooping:[64],togglePlay:[64],toggleLooping:[64]}]]],["p-796b8287",[[1,"ptc-date",{year:[2],month:[2],day:[2],country:[1],dateString:[1,"date-string"],dateStyles:[1,"date-styles"]}]]],["p-b60cefa5",[[1,"ptc-announcement",{btnText:[513,"btn-text"],visible:[1540],btnLink:[513,"btn-link"],tempContainer:[4,"temp-container"]}],[1,"ptc-para",{fontSize:[1,"font-size"],fontWeight:[1,"font-weight"],paraStyle:[1,"para-style"],paraMargin:[1,"para-margin"]}],[1,"ptc-button",{disabled:[516],type:[1],color:[1],iconAnimation:[1,"icon-animation"],iconPosition:[1,"icon-position"],linkHref:[1,"link-href"],target:[1],rel:[1],styles:[1]}],[1,"ptc-svg-btn",{svgName:[1,"svg-name"]}],[0,"icon-asset",{name:[1],size:[1],type:[1],spin:[1],pulse:[1],color:[1]}]]]],e)));
@@ -22,7 +22,7 @@ export declare class IconAsset {
22
22
  /**
23
23
  * Icon Color
24
24
  */
25
- color: 'black' | 'white' | 'ptc-green';
25
+ color: 'black' | 'white' | 'ptc-green' | 'default';
26
26
  render(): any;
27
27
  private getCssClassMap;
28
28
  private regularSprite;
@@ -0,0 +1,3 @@
1
+ export declare class PtcCountdown {
2
+ render(): any;
3
+ }
@@ -10,7 +10,7 @@ export namespace Components {
10
10
  /**
11
11
  * Icon Color
12
12
  */
13
- "color": 'black' | 'white' | 'ptc-green';
13
+ "color": 'black' | 'white' | 'ptc-green' | 'default';
14
14
  /**
15
15
  * Icon ID name
16
16
  */
@@ -150,6 +150,8 @@ export namespace Components {
150
150
  */
151
151
  "target"?: string;
152
152
  }
153
+ interface PtcCountdown {
154
+ }
153
155
  interface PtcDate {
154
156
  /**
155
157
  * Country examples: en-US, zh-CN, zh-TW, fr-FR, ja-JP, ru-RU, de-DE, ko-KR, it-IT, es-ES
@@ -444,6 +446,12 @@ declare global {
444
446
  prototype: HTMLPtcCardElement;
445
447
  new (): HTMLPtcCardElement;
446
448
  };
449
+ interface HTMLPtcCountdownElement extends Components.PtcCountdown, HTMLStencilElement {
450
+ }
451
+ var HTMLPtcCountdownElement: {
452
+ prototype: HTMLPtcCountdownElement;
453
+ new (): HTMLPtcCountdownElement;
454
+ };
447
455
  interface HTMLPtcDateElement extends Components.PtcDate, HTMLStencilElement {
448
456
  }
449
457
  var HTMLPtcDateElement: {
@@ -542,6 +550,7 @@ declare global {
542
550
  "ptc-avatar": HTMLPtcAvatarElement;
543
551
  "ptc-button": HTMLPtcButtonElement;
544
552
  "ptc-card": HTMLPtcCardElement;
553
+ "ptc-countdown": HTMLPtcCountdownElement;
545
554
  "ptc-date": HTMLPtcDateElement;
546
555
  "ptc-footer": HTMLPtcFooterElement;
547
556
  "ptc-img": HTMLPtcImgElement;
@@ -564,7 +573,7 @@ declare namespace LocalJSX {
564
573
  /**
565
574
  * Icon Color
566
575
  */
567
- "color"?: 'black' | 'white' | 'ptc-green';
576
+ "color"?: 'black' | 'white' | 'ptc-green' | 'default';
568
577
  /**
569
578
  * Icon ID name
570
579
  */
@@ -712,6 +721,8 @@ declare namespace LocalJSX {
712
721
  */
713
722
  "target"?: string;
714
723
  }
724
+ interface PtcCountdown {
725
+ }
715
726
  interface PtcDate {
716
727
  /**
717
728
  * Country examples: en-US, zh-CN, zh-TW, fr-FR, ja-JP, ru-RU, de-DE, ko-KR, it-IT, es-ES
@@ -974,6 +985,7 @@ declare namespace LocalJSX {
974
985
  "ptc-avatar": PtcAvatar;
975
986
  "ptc-button": PtcButton;
976
987
  "ptc-card": PtcCard;
988
+ "ptc-countdown": PtcCountdown;
977
989
  "ptc-date": PtcDate;
978
990
  "ptc-footer": PtcFooter;
979
991
  "ptc-img": PtcImg;
@@ -1002,6 +1014,7 @@ declare module "@stencil/core" {
1002
1014
  "ptc-avatar": LocalJSX.PtcAvatar & JSXBase.HTMLAttributes<HTMLPtcAvatarElement>;
1003
1015
  "ptc-button": LocalJSX.PtcButton & JSXBase.HTMLAttributes<HTMLPtcButtonElement>;
1004
1016
  "ptc-card": LocalJSX.PtcCard & JSXBase.HTMLAttributes<HTMLPtcCardElement>;
1017
+ "ptc-countdown": LocalJSX.PtcCountdown & JSXBase.HTMLAttributes<HTMLPtcCountdownElement>;
1005
1018
  "ptc-date": LocalJSX.PtcDate & JSXBase.HTMLAttributes<HTMLPtcDateElement>;
1006
1019
  "ptc-footer": LocalJSX.PtcFooter & JSXBase.HTMLAttributes<HTMLPtcFooterElement>;
1007
1020
  "ptc-img": LocalJSX.PtcImg & JSXBase.HTMLAttributes<HTMLPtcImgElement>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ptcwebops/ptcw-design",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/custom-elements/index.js",
File without changes
@@ -1 +0,0 @@
1
- import{r as t,g as i,h as g,H as I,c as a}from"./p-50923c9a.js";const e=class{constructor(g){t(this,g),this.size="small",this.type="regular",this.spin="",this.pulse="",this.color="black",this.regularSprite=i("./assets/regular.svg"),this.solidSprite=i("./assets/solid.svg"),this.brandSprite=i("./assets/brands.svg"),this.ptcSprite=i("./assets/ptc-sprite.svg")}render(){const t=this.getCssClassMap();return g(I,null,g("svg",{class:t},g("use","brands"==this.type?{href:`${this.brandSprite}#${this.name}`}:"solid"==this.type?{href:`${this.solidSprite}#${this.name}`}:"ptc"==this.type?{href:`${this.ptcSprite}#${this.name}`}:{href:`${this.regularSprite}#${this.name}`})))}getCssClassMap(){return{[this.size]:!0,[this.spin]:!0,[this.pulse]:!0,[this.color]:!0}}static get assetsDirs(){return["assets"]}};e.style='/*!\n * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */.svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible}.svg-inline--fa{display:inline-block;font-size:inherit;height:1em;vertical-align:-.125em}.svg-inline--fa.fa-lg{vertical-align:-.225em}.svg-inline--fa.fa-w-1{width:.0625em}.svg-inline--fa.fa-w-2{width:.125em}.svg-inline--fa.fa-w-3{width:.1875em}.svg-inline--fa.fa-w-4{width:.25em}.svg-inline--fa.fa-w-5{width:.3125em}.svg-inline--fa.fa-w-6{width:.375em}.svg-inline--fa.fa-w-7{width:.4375em}.svg-inline--fa.fa-w-8{width:.5em}.svg-inline--fa.fa-w-9{width:.5625em}.svg-inline--fa.fa-w-10{width:.625em}.svg-inline--fa.fa-w-11{width:.6875em}.svg-inline--fa.fa-w-12{width:.75em}.svg-inline--fa.fa-w-13{width:.8125em}.svg-inline--fa.fa-w-14{width:.875em}.svg-inline--fa.fa-w-15{width:.9375em}.svg-inline--fa.fa-w-16{width:1em}.svg-inline--fa.fa-w-17{width:1.0625em}.svg-inline--fa.fa-w-18{width:1.125em}.svg-inline--fa.fa-w-19{width:1.1875em}.svg-inline--fa.fa-w-20{width:1.25em}.svg-inline--fa.fa-pull-left{margin-right:.3em;width:auto}.svg-inline--fa.fa-pull-right{margin-left:.3em;width:auto}.svg-inline--fa.fa-border{height:1.5em}.svg-inline--fa.fa-li{width:2em}.svg-inline--fa.fa-fw{width:1.25em}.fa-layers svg.svg-inline--fa{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.fa-layers{display:inline-block;height:1em;position:relative;text-align:center;vertical-align:-.125em;width:1em}.fa-layers svg.svg-inline--fa{-webkit-transform-origin:center center;transform-origin:center center}.fa-layers-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.fa-layers-text{left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform-origin:center center;transform-origin:center center}.fa-layers-counter{background-color:#ff253a;border-radius:1em;-webkit-box-sizing:border-box;box-sizing:border-box;color:#fff;height:1.5em;line-height:1;max-width:5em;min-width:1.5em;overflow:hidden;padding:.25em;right:0;text-overflow:ellipsis;top:0;-webkit-transform:scale(.25);transform:scale(.25);-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-bottom-right{bottom:0;right:0;top:auto;-webkit-transform:scale(.25);transform:scale(.25);-webkit-transform-origin:bottom right;transform-origin:bottom right}.fa-layers-bottom-left{bottom:0;left:0;right:auto;top:auto;-webkit-transform:scale(.25);transform:scale(.25);-webkit-transform-origin:bottom left;transform-origin:bottom left}.fa-layers-top-right{right:0;top:0;-webkit-transform:scale(.25);transform:scale(.25);-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-top-left{left:0;right:auto;top:0;-webkit-transform:scale(.25);transform:scale(.25);-webkit-transform-origin:top left;transform-origin:top left}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;position:relative;width:2.5em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.svg-inline--fa.fa-stack-1x{height:1em;width:1.25em}.svg-inline--fa.fa-stack-2x{height:2em;width:2.5em}.fa-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.svg-inline--fa .fa-primary{fill:var(--fa-primary-color,currentColor);opacity:1;opacity:var(--fa-primary-opacity,1)}.svg-inline--fa .fa-secondary{fill:var(--fa-secondary-color,currentColor)}.svg-inline--fa .fa-secondary,.svg-inline--fa.fa-swap-opacity .fa-primary{opacity:.4;opacity:var(--fa-secondary-opacity,.4)}.svg-inline--fa.fa-swap-opacity .fa-secondary{opacity:1;opacity:var(--fa-primary-opacity,1)}.svg-inline--fa mask .fa-primary,.svg-inline--fa mask .fa-secondary{fill:#000}.fad.fa-inverse{color:#fff}icon-asset{vertical-align:middle}svg.small{width:var(--ptc-font-size-x-small);height:var(--ptc-font-size-x-small)}svg.large{width:var(--ptc-font-size-large);height:var(--ptc-font-size-large)}svg.xx-large{width:var(--ptc-font-size-xx-large);height:var(--ptc-font-size-xx-large)}svg.white{fill:var(--color-white)}svg.black{fill:var(--color-black)}svg.ptc-green{fill:var(--color-primary-green)}';const o=class{constructor(i){t(this,i),this.close=a(this,"close",7),this.btnLink="#",this.closeClick=()=>{this.visible=!1,this.close.emit()}}render(){const t=this.getCssClassMap();return g(I,null,g("div",{class:t,part:"part-announcement"},g("div",{class:this.tempContainer?"content-wrapper temp-container":"content-wrapper"},g("div",{class:"left-content",part:"part-left-content"},g("div",{class:"description"},g("slot",null)),this.btnText?g("ptc-button",{color:"legacy-green","icon-animation":"animation-right","link-href":this.btnLink},this.btnText,g("icon-asset",{slot:"slot-after-text",type:"ptc",size:"small",name:"icon-thin-arrow-right",color:"white"})):null),g("ptc-svg-btn",{"svg-name":"close",onClick:this.closeClick}))))}getCssClassMap(){return{announcement:!0,[this.visible?"visible":""]:!0}}};o.style=":host{display:block}.announcement{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNTUyLjI5NiIgaGVpZ2h0PSI0Ni45ODEiIHZpZXdCb3g9IjAgMCAxNTUyLjI5NiA0Ni45ODEiPg0KICAgIDxkZWZzPg0KICAgICAgICA8c3R5bGU+DQogICAgICAgICAgICAucHJlZml4X19jbHMtMntmaWxsOiNmZmZ9DQogICAgICAgIDwvc3R5bGU+DQogICAgPC9kZWZzPg0KICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzM3MCIgZGF0YS1uYW1lPSJHcm91cCAzNzAiIHN0eWxlPSJvcGFjaXR5Oi4yNTttaXgtYmxlbmQtbW9kZTpzb2Z0LWxpZ2h0O2lzb2xhdGlvbjppc29sYXRlIj4NCiAgICAgICAgPGcgaWQ9InByZWZpeF9fQXJ0d29ya18xMyIgZGF0YS1uYW1lPSJBcnR3b3JrIDEzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjkuMzM2IDIzLjQ5KSI+DQogICAgICAgICAgICA8ZyBpZD0icHJlZml4X19BcnR3b3JrXzEzLTIiIGRhdGEtbmFtZT0iQXJ0d29yayAxMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEyOS4zMzYgLTIzLjQ5KSI+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzEwIiBkYXRhLW5hbWU9Ikdyb3VwIDMxMCI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTI1NyIgZD0iTTAgMHYyNi4wMjhMMjYuMDI4IDB6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEyNTciLz4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF8xMjU4IiBkPSJNNDMwLjA3NiAwTDM4My4xIDQ2Ljk4MWgyNi4xMDdsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTI1OCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM2NS40MDgpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzMxMSIgZGF0YS1uYW1lPSJHcm91cCAzMTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDY0LjY2OCkiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEyNTkiIGQ9Ik0xNDAwLjMgMHYyNi4wMjhMMTQyNi4zMjggMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTI1OSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE0MDAuMzAxKSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEyNjAiIGQ9Ik0xODMwLjM3NiAwTDE3ODMuNCA0Ni45ODFoMjYuMTA3bDIwLjg2OS0yMC44Njl6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEyNjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNzY1LjcwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzEyIiBkYXRhLW5hbWU9Ikdyb3VwIDMxMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTI5LjMzNikiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEyNjEiIGQ9Ik0yODAwLjYgMHYyNi4wMjhMMjgyNi42MjkgMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTI2MSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI4MDAuNjAxKSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEyNjIiIGQ9Ik0zMjMwLjY3NiAwTDMxODMuNyA0Ni45ODFoMjYuMTA2bDIwLjg2OS0yMC44Njl6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEyNjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zMTY2LjAwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzEzIiBkYXRhLW5hbWU9Ikdyb3VwIDMxMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTk0LjAwNCkiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEyNjMiIGQ9Ik00MjAwLjkgMHYyNi4wMjhMNDIyNi45MjcgMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTI2MyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQyMDAuODk3KSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEyNjQiIGQ9Ik00NjMwLjk3NCAwTDQ1ODQgNDYuOTgxaDI2LjFsMjAuODctMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMjY0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDU2Ni4zMDYpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgPC9nPg0KICAgICAgICA8L2c+DQogICAgICAgIDxnIGlkPSJwcmVmaXhfX0FydHdvcmtfMTMtMyIgZGF0YS1uYW1lPSJBcnR3b3JrIDEzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzODguMTk5IDIzLjQ5KSI+DQogICAgICAgICAgICA8ZyBpZD0icHJlZml4X19BcnR3b3JrXzEzLTQiIGRhdGEtbmFtZT0iQXJ0d29yayAxMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEyOS4zMzYgLTIzLjQ5KSI+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzM0IiBkYXRhLW5hbWU9Ikdyb3VwIDMzNCI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTI5NyIgZD0iTTAgMHYyNi4wMjhMMjYuMDI4IDB6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEyOTciLz4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF8xMjk4IiBkPSJNNDMwLjA3NiAwTDM4My4xIDQ2Ljk4MWgyNi4xMDdsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTI5OCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM2NS40MDgpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzMzNSIgZGF0YS1uYW1lPSJHcm91cCAzMzUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDY0LjY2OCkiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEyOTkiIGQ9Ik0xNDAwLjMgMHYyNi4wMjhMMTQyNi4zMjggMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTI5OSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE0MDAuMzAxKSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMDAiIGQ9Ik0xODMwLjM3NiAwTDE3ODMuNCA0Ni45ODFoMjYuMTA3bDIwLjg2OS0yMC44Njl6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzMDAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNzY1LjcwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzM2IiBkYXRhLW5hbWU9Ikdyb3VwIDMzNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTI5LjMzNikiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMDEiIGQ9Ik0yODAwLjYgMHYyNi4wMjhMMjgyNi42MjkgMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMwMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI4MDAuNjAxKSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMDIiIGQ9Ik0zMjMwLjY3NiAwTDMxODMuNyA0Ni45ODFoMjYuMTA2bDIwLjg2OS0yMC44Njl6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzMDIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zMTY2LjAwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzM3IiBkYXRhLW5hbWU9Ikdyb3VwIDMzNyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTk0LjAwNCkiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMDMiIGQ9Ik00MjAwLjkgMHYyNi4wMjhMNDIyNi45MjcgMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMwMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQyMDAuODk3KSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMDQiIGQ9Ik00NjMwLjk3NCAwTDQ1ODQgNDYuOTgxaDI2LjFsMjAuODctMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzA0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDU2Ni4zMDYpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgPC9nPg0KICAgICAgICA8L2c+DQogICAgICAgIDxnIGlkPSJwcmVmaXhfX0FydHdvcmtfMTMtNSIgZGF0YS1uYW1lPSJBcnR3b3JrIDEzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2NDYuOTk2IDIzLjQ5KSI+DQogICAgICAgICAgICA8ZyBpZD0icHJlZml4X19BcnR3b3JrXzEzLTYiIGRhdGEtbmFtZT0iQXJ0d29yayAxMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEyOS4zMzYgLTIzLjQ5KSI+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzQzIiBkYXRhLW5hbWU9Ikdyb3VwIDM0MyI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTMxMyIgZD0iTTAgMHYyNi4wMjhMMjYuMDI4IDB6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzMTMiLz4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF8xMzE0IiBkPSJNNDMwLjA3NiAwTDM4My4xIDQ2Ljk4MWgyNi4xMDdsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMxNCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM2NS40MDgpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzM0NCIgZGF0YS1uYW1lPSJHcm91cCAzNDQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDY0LjY2OCkiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMTUiIGQ9Ik0xNDAwLjMgMHYyNi4wMjhMMTQyNi4zMjggMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMxNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE0MDAuMzAxKSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMTYiIGQ9Ik0xODMwLjM3NiAwTDE3ODMuNCA0Ni45ODFoMjYuMTA3bDIwLjg2OS0yMC44Njl6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzMTYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNzY1LjcwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzQ1IiBkYXRhLW5hbWU9Ikdyb3VwIDM0NSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTI5LjMzNikiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMTciIGQ9Ik0yODAwLjYgMHYyNi4wMjhMMjgyNi42MjkgMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMxNyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI4MDAuNjAxKSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMTgiIGQ9Ik0zMjMwLjY3NiAwTDMxODMuNyA0Ni45ODFoMjYuMTA2bDIwLjg2OS0yMC44Njl6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzMTgiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zMTY2LjAwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzQ2IiBkYXRhLW5hbWU9Ikdyb3VwIDM0NiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTk0LjAwNCkiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMTkiIGQ9Ik00MjAwLjkgMHYyNi4wMjhMNDIyNi45MjcgMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMxOSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQyMDAuODk3KSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzMjAiIGQ9Ik00NjMwLjk3NCAwTDQ1ODQgNDYuOTgxaDI2LjFsMjAuODctMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzIwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDU2Ni4zMDYpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgPC9nPg0KICAgICAgICA8L2c+DQogICAgICAgIDxnIGlkPSJwcmVmaXhfX0FydHdvcmtfMTMtNyIgZGF0YS1uYW1lPSJBcnR3b3JrIDEzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg5MDUuMDU2IDIzLjQ5KSI+DQogICAgICAgICAgICA8ZyBpZD0icHJlZml4X19BcnR3b3JrXzEzLTgiIGRhdGEtbmFtZT0iQXJ0d29yayAxMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEyOS4zMzYgLTIzLjQ5KSI+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzUyIiBkYXRhLW5hbWU9Ikdyb3VwIDM1MiI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTMyOSIgZD0iTTAgMHYyNi4wMjhMMjYuMDI4IDB6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzMjkiLz4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF8xMzMwIiBkPSJNNDMwLjA3NiAwTDM4My4xIDQ2Ljk4aDI2LjEwNmwyMC44NjktMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzMwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzY1LjQwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzUzIiBkYXRhLW5hbWU9Ikdyb3VwIDM1MyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjQuNjY4KSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTMzMSIgZD0iTTE0MDAuMyAwdjI2LjAyOEwxNDI2LjMyOCAweiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzMxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTQwMC4zMDEpIi8+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTMzMiIgZD0iTTE4MzAuMzc2IDBMMTc4My40IDQ2Ljk4aDI2LjEwN2wyMC44NjktMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzMyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTc2NS43MDgpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzM1NCIgZGF0YS1uYW1lPSJHcm91cCAzNTQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyOS4zMzYpIj4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF8xMzMzIiBkPSJNMjgwMC42IDB2MjYuMDI4TDI4MjYuNjI5IDB6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzMzMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yODAwLjYwMSkiLz4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF8xMzM0IiBkPSJNMzIzMC42NzYgMEwzMTgzLjcgNDYuOThoMjYuMTA2bDIwLjg3LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMzNCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMxNjYuMDA4KSIvPg0KICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgICAgICA8ZyBpZD0icHJlZml4X19Hcm91cF8zNTUiIGRhdGEtbmFtZT0iR3JvdXAgMzU1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxOTQuMDA0KSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTMzNSIgZD0iTTQyMDAuOSAwdjI2LjAyOEw0MjI2LjkyOCAweiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzM1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDIwMC44OTkpIi8+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTMzNiIgZD0iTTQ2MzAuOTc1IDBMNDU4NCA0Ni45OGgyNi4xMDVsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTMzNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQ1NjYuMzA4KSIvPg0KICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgIDwvZz4NCiAgICAgICAgPC9nPg0KICAgICAgICA8ZyBpZD0icHJlZml4X19BcnR3b3JrXzEzLTkiIGRhdGEtbmFtZT0iQXJ0d29yayAxMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTE2My45NiAyMy40OSkiPg0KICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fQXJ0d29ya18xMy0xMCIgZGF0YS1uYW1lPSJBcnR3b3JrIDEzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTI5LjMzNiAtMjMuNDkpIj4NCiAgICAgICAgICAgICAgICA8ZyBpZD0icHJlZml4X19Hcm91cF8zNjEiIGRhdGEtbmFtZT0iR3JvdXAgMzYxIj4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF8xMzQ1IiBkPSJNMCAwdjI2LjAyOEwyNi4wMjggMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTM0NSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzEzNDYiIGQ9Ik00MzAuMDc2IDBMMzgzLjEgNDYuOTgxaDI2LjEwN2wyMC44NjktMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzQ2IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzY1LjQwOCkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgPGcgaWQ9InByZWZpeF9fR3JvdXBfMzYyIiBkYXRhLW5hbWU9Ikdyb3VwIDM2MiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjQuNjY4KSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTM0NyIgZD0iTTE0MDAuMyAwdjI2LjAyOEwxNDI2LjMyOCAweiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzQ3IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTQwMC4zMDEpIi8+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTM0OCIgZD0iTTE4MzAuMzc2IDBMMTc4My40IDQ2Ljk4MWgyNi4xMDdsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTM0OCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE3NjUuNzA4KSIvPg0KICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgICAgICA8ZyBpZD0icHJlZml4X19Hcm91cF8zNjMiIGRhdGEtbmFtZT0iR3JvdXAgMzYzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjkuMzM2KSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTM0OSIgZD0iTTI4MDAuNiAwdjI2LjAyOEwyODI2LjYyOSAweiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzQ5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjgwMC42MDEpIi8+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTM1MCIgZD0iTTMyMzAuNjc2IDBMMzE4My43IDQ2Ljk4MWgyNi4xMDZsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggMTM1MCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMxNjYuMDA4KSIvPg0KICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgICAgICA8ZyBpZD0icHJlZml4X19Hcm91cF8zNjQiIGRhdGEtbmFtZT0iR3JvdXAgMzY0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxOTQuMDA0KSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTM1MSIgZD0iTTQyMDAuOSAwdjI2LjAyOEw0MjI2LjkyNiAweiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCAxMzUxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDIwMC44OTcpIi8+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfMTM1MiIgZD0iTTQ2MzAuOTczIDBMNDU4NCA0Ni45ODFoMjYuMWwyMC44Ny0yMC44Njl6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDEzNTIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00NTY2LjMwNSkiLz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICA8L2c+DQogICAgICAgIDwvZz4NCiAgICAgICAgPGcgaWQ9InByZWZpeF9fQXJ0d29ya18xMy0xMSIgZGF0YS1uYW1lPSJBcnR3b3JrIDEzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNDIyLjk2IDIzLjQ5KSI+DQogICAgICAgICAgICA8ZyBpZD0icHJlZml4X19BcnR3b3JrXzEzLTEyIiBkYXRhLW5hbWU9IkFydHdvcmsgMTMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMjkuMzM2IC0yMy40OSkiPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzMwMzMiIGRhdGEtbmFtZT0iR3JvdXAgMzAzMyI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfOTA1MyIgZD0iTTAgMHYyNi4wMjhMMjYuMDI4IDB6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDkwNTMiLz4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF85MDU0IiBkPSJNNDMwLjA3NiAwTDM4My4xIDQ2Ljk4MWgyNi4xMDdsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggOTA1NCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM2NS40MDgpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzMwMzQiIGRhdGEtbmFtZT0iR3JvdXAgMzAzNCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjQuNjY4KSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfOTA1NSIgZD0iTTE0MDAuMyAwdjI2LjAyOEwxNDI2LjMyOCAweiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCA5MDU1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTQwMC4zMDEpIi8+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGlkPSJwcmVmaXhfX1BhdGhfOTA1NiIgZD0iTTE4MzAuMzc2IDBMMTc4My40IDQ2Ljk4MWgyNi4xMDdsMjAuODY5LTIwLjg2OXoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggOTA1NiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE3NjUuNzA4KSIvPg0KICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgICAgICA8ZyBpZD0icHJlZml4X19Hcm91cF8zMDM1IiBkYXRhLW5hbWU9Ikdyb3VwIDMwMzUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyOS4zMzYpIj4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF85MDU3IiBkPSJNMjgwMC42IDB2MjYuMDI4TDI4MjYuNjI5IDB6IiBjbGFzcz0icHJlZml4X19jbHMtMiIgZGF0YS1uYW1lPSJQYXRoIDkwNTciIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yODAwLjYwMSkiLz4NCiAgICAgICAgICAgICAgICAgICAgPHBhdGggaWQ9InByZWZpeF9fUGF0aF85MDU4IiBkPSJNMzIzMC42NzYgMEwzMTgzLjcgNDYuOTgxaDI2LjEwNmwyMC44NjktMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCA5MDU4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzE2Ni4wMDgpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJwcmVmaXhfX0dyb3VwXzMwMzYiIGRhdGEtbmFtZT0iR3JvdXAgMzAzNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTk0LjAwNCkiPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzkwNTkiIGQ9Ik00MjAwLjkgMHYyNi4wMjhMNDIyNi45MjYgMHoiIGNsYXNzPSJwcmVmaXhfX2Nscy0yIiBkYXRhLW5hbWU9IlBhdGggOTA1OSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQyMDAuODk3KSIvPg0KICAgICAgICAgICAgICAgICAgICA8cGF0aCBpZD0icHJlZml4X19QYXRoXzkwNjAiIGQ9Ik00NjMwLjk3MyAwTDQ1ODQgNDYuOTgxaDI2LjFsMjAuODctMjAuODY5eiIgY2xhc3M9InByZWZpeF9fY2xzLTIiIGRhdGEtbmFtZT0iUGF0aCA5MDYwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDU2Ni4zMDUpIi8+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgPC9nPg0KICAgICAgICA8L2c+DQogICAgPC9nPg0KPC9zdmc+DQo=);width:100%;position:relative;background-color:rgba(211, 211, 211, 0.4);z-index:860;background-size:cover;background-repeat:repeat-x;border:1px solid var(--color-secondary-turtlegreen);-webkit-box-shadow:1px 1px 9px 0 rgba(0, 0, 0, 0.56);box-shadow:1px 1px 9px 0 rgba(0, 0, 0, 0.56);z-index:999;display:none}.visible{display:block}.content-wrapper{display:flex;padding:5px 15px;margin:0 auto;align-items:center;justify-content:space-between}@media screen and (min-width: 768px){.content-wrapper{padding:10px 15px}}@media screen and (min-width: 768px){.temp-container{width:750px}}@media screen and (min-width: 992px){.temp-container{width:970px}}@media screen and (min-width: 1200px){.temp-container{width:1170px}}@media screen and (min-width: 1440px){.temp-container{width:1400px}}@media screen and (min-width: 1600px){.temp-container{width:1560px}}.left-content{display:block;flex-basis:82%}@media screen and (min-width: 768px){.left-content{display:flex;align-items:center;justify-content:flex-start}}.ptc-svg-btn{flex-basis:18%}.description{margin-bottom:var(--ptc-element-spacing-04)}@media screen and (min-width: 768px){.description{margin-bottom:unset;margin-right:var(--ptc-element-spacing-04)}}";const n=class{constructor(i){t(this,i),this.clickEvent=a(this,"clickEvent",7),this.type="button",this.color="blackgrey",this.iconAnimation="",this.iconPosition="icon-right",this.linkHref=void 0,this.target="_self",this.rel=void 0}clickEventHandler(){this.clickEvent.emit()}render(){const t=this.getCssClassMap(),i=this.linkHref?"a":"button";return g(I,null,this.styles&&g("style",null,this.styles),g(i,Object.assign({class:t,disabled:this.disabled,onClick:this.clickEventHandler.bind(this)},this.linkHref?{href:this.linkHref}:{},this.linkHref?{}:{type:this.type},this.target&&this.linkHref?{target:this.target}:{},this.rel&&this.linkHref?{rel:this.rel}:{}),g("span",null,g("slot",{name:"slot-before-text"}),g("slot",null),g("slot",{name:"slot-after-text"}))))}getCssClassMap(){return{[this.color]:!0,[this.iconAnimation]:!0,[this.iconPosition]:!0}}};n.style='button:disabled{pointer-events:none;opacity:0.6}button{background-color:var(--color-primary-uigrey);display:inline-block;border-style:solid;border-width:1px;white-space:normal;position:relative;text-decoration:none;cursor:pointer;padding:9.4px 17.5px;border-radius:3px}button.animation-right ::slotted([slot=slot-after-text]),button.animation-right ::slotted([slot=slot-before-text]),button.animation-down ::slotted([slot=slot-after-text]),button.animation-down ::slotted([slot=slot-before-text]){transition:transform var(--ptc-transition-medium) var(--ptc-standard-ease);position:relative;display:inline-block}button:hover.animation-right ::slotted([slot=slot-after-text]),button:hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}button:hover.animation-down ::slotted([slot=slot-after-text]),button:hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}button span{font-size:var(--ptc-font-size-small);font-weight:bold;line-height:0.86}.icon-left ::slotted([slot=slot-before-text]){margin-right:var(--ptc-element-spacing-01)}.icon-right ::slotted([slot=slot-after-text]){margin-left:var(--ptc-element-spacing-01)}.blackgrey{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(285deg, var(--color-primary-uigrey) 155%, #6e717c 62%)}.blackgrey:hover{box-shadow:var(--ptc-shadow-x-large)}.blackgrey span{color:var(--color-white)}.turtlegreen{box-shadow:var(--ptc-shadow-x-small);border:solid 1px #5bb73b;background-image:linear-gradient(285deg, #5bb73b 155%, #178642 62%)}.turtlegreen:hover{box-shadow:var(--ptc-shadow-x-large)}.turtlegreen span{color:var(--color-white)}.offwhite{box-shadow:var(--ptc-shadow-x-small);border:solid 1px var(--color-primary-uigrey);background-image:linear-gradient(to right, #ffffff, #d3d3d3, #e5e5e5)}.offwhite:hover{box-shadow:var(--ptc-shadow-x-large)}.offwhite span{color:var(--color-primary-uigrey)}.legacy-green{box-shadow:0 0 25.8px 3.2px rgba(0, 0, 0, 0.5);border:solid 2.5px var(--color-secondary-tutlegreen-dark);background-image:linear-gradient(to right, var(--color-secondary-turtlegreen), var(--color-secondary-tutlegreen-dark))}@media screen and (min-width: 768px){.legacy-green{padding:20px 20px}}.legacy-green:after{position:absolute;content:"";top:-1px;left:0;bottom:0;right:0;width:100%;height:103%;background-image:linear-gradient(to right, var(--color-secondary-tutlegreen-dark), var(--color-secondary-turtlegreen));opacity:0;transition:opacity 0.6s cubic-bezier(0, 0, 0.23, 1);border-radius:2px}.legacy-green:hover{box-shadow:0 0 49px 6.1px rgba(0, 0, 0, 0.55)}.legacy-green:hover span{color:var(--color-white)}.legacy-green:hover:after{opacity:1}.legacy-green span{font-family:var(--ptc-font-secondary-latin);color:var(--color-white);z-index:100;position:relative;text-transform:uppercase;font-weight:var(--ptc-font-weight-bold);letter-spacing:var(--ptc-letter-spacing-normal);font-size:var(--ptc-font-size-medium)}@media screen and (min-width: 768px){.legacy-green span{font-size:19px;letter-spacing:var(--ptc-letter-spacing-loose)}}.legacy-green icon-asset{display:inline}:host(a){border-style:solid;border-width:1px;position:relative;text-decoration:none;padding:9.4px 17.5px;border-radius:3px;text-decoration:none;display:inline-block;outline:none;position:relative}:host(a).animation-right ::slotted([slot=slot-after-text]),:host(a).animation-right ::slotted([slot=slot-before-text]),:host(a).animation-down ::slotted([slot=slot-after-text]),:host(a).animation-down ::slotted([slot=slot-before-text]){transition:all ease-out 0.25s;position:relative;display:inline-block;margin-left:5px}:host(a):hover.animation-right ::slotted([slot=slot-after-text]),:host(a):hover.animation-right ::slotted([slot=slot-before-text]){transform:translateX(var(--ptc-element-spacing-02))}:host(a):hover.animation-down ::slotted([slot=slot-after-text]),:host(a):hover.animation-down ::slotted([slot=slot-before-text]){transform:translateY(var(--ptc-element-spacing-02))}.nav{background-color:#323b42;border-radius:var(--ptc-border-radius-medium);border:1px solid var(--color-white);border-bottom-style:solid;border-bottom-width:1px;box-sizing:border-box;color:var(--color-white);display:inline-block;font-size:13px;font-stretch:100%;font-weight:var(--ptc-font-weight-bold);line-height:26px;list-style:none;padding:3px var(--ptc-element-spacing-04);position:relative;text-align:center;text-decoration:none;transition:background-color var(--ptc-transition-medium) var(--ptc-decelerated-ease)}.nav:hover{background-color:#20262a}';const r=class{constructor(i){t(this,i),this.fontSize="medium",this.fontWeight="w-4",this.paraStyle="default"}render(){const t=this.getCssClassMap();return g("p",{class:t,part:"part-para"},g("slot",null))}getCssClassMap(){return{[this.fontSize]:!0,[this.fontWeight]:!0,[this.paraStyle]:!0,[this.paraMargin]:!0}}};r.style="p.default{text-shadow:0 3px 6px var(--color-white);line-height:var(--ptc-line-height-dense);color:var(--color-primary-grey)}p.xx-small{font-size:var(--ptc-font-size-xx-small)}p.x-small{font-size:var(--ptc-font-size-x-small)}p.small{font-size:var(--ptc-font-size-small)}p.medium{font-size:var(--ptc-font-size-medium)}p.large{font-size:var(--ptc-font-size-large)}p.x-large{font-size:var(--ptc-font-size-x-large)}p.xx-large{font-size:var(--ptc-font-size-xx-large)}p.xxx-large{font-size:var(--ptc-font-size-xxx-large)}p.xxxx-large{font-size:var(--ptc-font-size-xxxx-large)}p.w-3{font-weight:var(--ptc-font-weight-thin)}p.w-4{font-weight:var(--ptc-font-weight-regular)}p.w-5{font-weight:var(--ptc-font-weight-medium)}p.w-6{font-weight:var(--ptc-font-weight-semibold)}p.w-7{font-weight:var(--ptc-font-weight-bold)}p.w-8{font-weight:var(--ptc-font-weight-extrabold)}p.w-9{font-weight:var(--ptc-font-weight-black)}p.margin-flush{margin-top:0;margin-bottom:0}p.margin-top-3{margin-top:var(--ptc-element-spacing-03)}p.margin-top-4{margin-top:var(--ptc-element-spacing-04)}p.margin-top-5{margin-top:var(--ptc-element-spacing-05)}p.margin-top-6{margin-top:var(--ptc-element-spacing-06)}p.margin-bottom-3{margin-bottom:var(--ptc-element-spacing-03)}p.margin-bottom-4{margin-bottom:var(--ptc-element-spacing-04)}p.margin-bottom-5{margin-bottom:var(--ptc-element-spacing-05)}p.margin-bottom-6{margin-bottom:var(--ptc-element-spacing-06)}p.announcement{text-transform:uppercase;font-size:var(--ptc-font-size-small);color:var(--color-secondary-grey);line-height:var(--ptc-line-height-looser);letter-spacing:1px}";const s=class{constructor(i){t(this,i)}render(){return g(I,null,this.svgName&&"close"===this.svgName?g("div",{class:"svg-close",innerHTML:'<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 42 41.485">\n <g id="Group_1042" data-name="Group 1042" transform="rotate(180 108.25 87.993)">\n <path id="Line_446" d="M0 0v39.486" class="cls-1" data-name="Line 446"></path>\n <path id="Line_447" d="M0 0h40" class="cls-1" data-name="Line 447"></path>\n <path id="Line_448" d="M0 33.592V0" class="cls-1" data-name="Line 448"></path>\n <path id="Line_449" d="M23.994 0H0" class="cls-1" data-name="Line 449"></path>\n <path id="Line_450" d="M0 0l17.596 17.596" class="cls-2" data-name="Line 450" transform="translate(187.229 147.226)"></path>\n <path id="Line_451" d="M0 7.198L7.199 0" class="cls-2" data-name="Line 451" transform="translate(197.55 147.312)"></path>\n <path id="Path_114" d="M0 7.2L7.2 0" class="cls-2" data-name="Path 114" transform="translate(187.313 157.549)"></path>\n </g>\n</svg>'}):null)}};s.style=":host{display:block;cursor:pointer}.svg-close svg .cls-1,.svg-close svg .cls-2{fill:none;stroke-width:2px}.svg-close svg .cls-1{stroke:#1c2439;stroke-linecap:square}.svg-close svg .cls-2{stroke:#74c34d}.svg-close svg path{-webkit-transition:all 0.25s ease-in-out;-o-transition:all ease-in-out 0.25s;transition:all 0.25s ease-in-out}.svg-close svg .cls-1:first-child{-webkit-transform:translate(175.5px, 135.5px);-ms-transform:translate(175.5px, 135.5px);transform:translate(175.5px, 135.5px)}.svg-close svg .cls-1:nth-child(2){-webkit-transform:translate(175.5px, 174.985px);-ms-transform:translate(175.5px, 174.985px);transform:translate(175.5px, 174.985px)}.svg-close svg .cls-1:nth-child(3){-webkit-transform:translate(215.5px, 141.393px);-ms-transform:translate(215.5px, 141.393px);transform:translate(215.5px, 141.393px)}.svg-close svg .cls-1:nth-child(4){-webkit-transform:translate(175.5px, 135.5px);-ms-transform:translate(175.5px, 135.5px);transform:translate(175.5px, 135.5px)}.svg-close:hover svg .cls-1:first-child{-webkit-transform:translate(175.5px, 162px);-ms-transform:translate(175.5px, 162px);transform:translate(175.5px, 162px)}.svg-close:hover svg .cls-1:nth-child(2){-webkit-transform:translate(149px, 174.985px);-ms-transform:translate(149px, 174.985px);transform:translate(149px, 174.985px)}.svg-close:hover svg .cls-1:nth-child(3){-webkit-transform:translate(215.5px, 174px);-ms-transform:translate(215.5px, 174px);transform:translate(215.5px, 174px)}.svg-close:hover svg .cls-1:nth-child(4){-webkit-transform:translate(152.5px, 135.5px);-ms-transform:translate(152.5px, 135.5px);transform:translate(152.5px, 135.5px)}.svg-close.svg-close-white .cls-1{stroke:#fff}";export{e as icon_asset,o as ptc_announcement,n as ptc_button,r as ptc_para,s as ptc_svg_btn}
@@ -1 +0,0 @@
1
- import{r as t,h as i,H as e,a as s}from"./p-50923c9a.js";import{a as n}from"./p-240733ce.js";const o=class{constructor(i){t(this,i),this.alt="image",this.sizeXs="510x340",this.sizeSm="1240x496",this.sizeMd="1366x500",this.sizeLg="1920x1080",this.borderRadius="",this.objectFit="cover"}WindowResize(){this.addIntersectionObserver()}componentDidLoad(){this.addIntersectionObserver()}componentWillUpdate(){this.src!==this.oldSrc&&this.addIntersectionObserver(),this.oldSrc=this.src}addIntersectionObserver(){if(this.src)if("IntersectionObserver"in window){let t=new IntersectionObserver((i=>{i.forEach((i=>{if(i.isIntersecting){const i=this.el.shadowRoot.querySelector("img");i.src=this.setResponsiveBg(),console.log("loaded"),t.unobserve(i)}}))}));t.observe(this.el.shadowRoot.querySelector("img"))}else setTimeout((()=>{const t=this.el.shadowRoot.querySelector("img");t.src=this.setResponsiveBg(),t.onload=()=>{t.removeAttribute("data-src"),console.log("loaded fallback")}}),5e3)}setResponsiveBg(){let t,i,e=(this.el.shadowRoot||document).querySelectorAll("img"),s=this.getCurrentBreakPoints();for(var n=0,o=e.length;n<o;n++){if(t=e[n],i=t.getAttribute("data-"+s),null!==i)return i;"object"==typeof console&&console.warn("Data attribute: data-"+s+" not found on element:\n\n"+t.outerHTML+"\n\n\n")}}render(){const t=this.getCssClassMap();return i(e,null,this.styles&&i("style",null,this.styles),i("img",Object.assign({class:t,"data-xs":`${this.src}:${this.sizeXs}`,"data-sm":`${this.src}:${this.sizeSm}`,"data-md":`${this.src}:${this.sizeMd}`,"data-lg":`${this.src}:${this.sizeLg}`},this.width?{width:this.width}:{},this.height?{height:this.height}:{},{alt:this.alt})))}getCurrentBreakPoints(){let t,i=window.document,e=i.createElement("div");i.body.appendChild(e);for(let s=n.envs.length-1;s>=0;s--)if(t=n.envs[s],e.className="hidden-"+t,null===e.offsetParent)return i.body.removeChild(e),console.log("remove test node"),t;return i.body.removeChild(e),this.getFallbackBreakpoint()}getFallbackBreakpoint(){return window.matchMedia("(min-width: 992px)").matches?"lg":window.matchMedia("(min-width: 768px)").matches?"md":window.matchMedia("(min-width: 576px)").matches?"sm":"xs"}getCssClassMap(){return{[this.borderRadius]:!0,[this.objectFit]:!0}}get el(){return s(this)}};o.style=":host{display:block;overflow:hidden}img{max-width:100%;height:auto}.cover{object-fit:cover}.fill{object-fit:fill}.contain{object-fit:contain}.scale-down{object-fit:scale-down}.none{object-fit:none}.initial{object-fit:initial}.inherit{object-fit:inherit}";export{o as ptc_picture}
File without changes
File without changes
File without changes