Changeset 3250227
- Timestamp:
- 03/04/2025 09:47:49 AM (6 days ago)
- Location:
- hello-plus/trunk
- Files:
-
- 50 added
- 4 deleted
- 64 edited
Legend:
- Unmodified
- Added
- Removed
-
hello-plus/trunk/assets/dev/scss/ehp-button.scss
r3238471 r3250227 13 13 --ehp-button-primary-padding-inline-end: 16px; 14 14 --ehp-button-primary-padding-inline-start: 16px; 15 --ehp-button-primary-border-radius: 0;16 15 --ehp-button-primary-border-radius-block-end: #{$corners-shape-default}; 17 16 --ehp-button-primary-border-radius-block-start: #{$corners-shape-default}; … … 29 28 --ehp-button-secondary-padding-inline-end: 16px; 30 29 --ehp-button-secondary-padding-inline-start: 16px; 31 --ehp-button-secondary-border-radius: #{$corners-shape-default};32 --ehp-button-secondary-border-radius-block-end: #{$corners-shape-default};33 --ehp-button-secondary-border-radius-block-start: #{$corners-shape-default};34 --ehp-button-secondary-border-radius-inline-end: #{$corners-shape-default};35 --ehp-button-secondary-border-radius-inline-start: #{$corners-shape-default};36 30 37 31 --ehp-button-text-color: var(--ehp-button-primary-text-color); … … 49 43 --ehp-button-border-radius-inline-end: var(--ehp-button-primary-border-radius-inline-end); 50 44 --ehp-button-border-radius-inline-start: var(--ehp-button-primary-border-radius-inline-start); 51 52 --ehp-button-border-radius-default: #{$corners-shape-default};53 --ehp-button-border-radius-sharp: #{$corners-shape-sharp};54 --ehp-button-border-radius-rounded: #{$corners-shape-rounded};55 --ehp-button-border-radius-round: #{$corners-shape-round};56 --ehp-button-border-radius-oval: #{$corners-shape-oval};57 45 58 46 align-items: center; … … 106 94 } 107 95 108 @mixin shapes() { 109 &-sharp { 110 border-radius: var(--ehp-button-border-radius-sharp); 111 } 112 113 &-rounded { 114 border-radius: var(--ehp-button-border-radius-rounded); 115 } 116 117 &-round { 118 border-radius: var(--ehp-button-border-radius-round); 119 } 120 121 &-default { 122 border-radius: var(--ehp-button-border-radius-default); 123 } 124 125 &-oval { 126 border-radius: var(--ehp-button-border-radius-oval); 127 } 128 129 &-custom { 130 border-top-left-radius: var(--ehp-button-border-radius-block-end); 131 border-top-right-radius: var(--ehp-button-border-radius-block-start); 132 border-bottom-right-radius: var(--ehp-button-border-radius-inline-end); 133 border-bottom-left-radius: var(--ehp-button-border-radius-inline-start); 134 } 135 } 136 137 &.has-shape { 138 @include shapes(); 139 140 &-md { 141 @media screen and (max-width: $screen-tablet-max) { 142 @include shapes(); 143 } 144 } 145 146 &-sm { 147 @media screen and (max-width: $screen-mobile-max) { 148 @include shapes(); 149 } 150 } 96 &.has-shape-custom { 97 --ehp-shapes-border-radius-block-end: var(--ehp-button-primary-border-radius-block-end); 98 --ehp-shapes-border-radius-block-start: var(--ehp-button-primary-border-radius-block-start); 99 --ehp-shapes-border-radius-inline-end: var(--ehp-button-primary-border-radius-inline-end); 100 --ehp-shapes-border-radius-inline-start: var(--ehp-button-primary-border-radius-inline-start); 151 101 } 152 102 … … 173 123 --ehp-button-border-radius-inline-end: var(--ehp-button-secondary-border-radius-inline-end); 174 124 --ehp-button-border-radius-inline-start: var(--ehp-button-secondary-border-radius-inline-start); 125 126 &.has-shape-custom { 127 --ehp-shapes-border-radius-block-end: var(--ehp-button-secondary-border-radius-block-end); 128 --ehp-shapes-border-radius-block-start: var(--ehp-button-secondary-border-radius-block-start); 129 --ehp-shapes-border-radius-inline-end: var(--ehp-button-secondary-border-radius-inline-end); 130 --ehp-shapes-border-radius-inline-start: var(--ehp-button-secondary-border-radius-inline-start); 131 } 175 132 } -
hello-plus/trunk/assets/dev/scss/ehp-image.scss
r3241372 r3250227 13 13 --ehp-image-border-radius-inline-start: #{$corners-shape-default}; 14 14 15 --ehp-image-border-radius-default: #{$corners-shape-default};16 --ehp-image-border-radius-sharp: #{$corners-shape-sharp};17 --ehp-image-border-radius-rounded: #{$corners-image-shape-rounded};18 --ehp-image-border-radius-round: #{$corners-image-shape-round};19 --ehp-image-border-radius-oval: #{$corners-shape-oval};20 21 15 align-items: center; 22 16 display: flex; … … 31 25 width: var(--ehp-image-width); 32 26 33 @mixin shapes() { 34 &-sharp { 35 border-radius: var(--ehp-image-border-radius-sharp); 36 } 37 38 &-rounded { 39 border-radius: var(--ehp-image-border-radius-rounded); 40 } 41 42 &-round { 43 border-radius: var(--ehp-image-border-radius-round); 44 } 45 46 &-default { 47 border-radius: var(--ehp-image-border-radius-default); 48 } 49 50 &-oval { 51 border-radius: var(--ehp-image-border-radius-oval); 52 } 53 54 &-custom { 55 border-top-left-radius: var(--ehp-image-border-radius-block-end); 56 border-top-right-radius: var(--ehp-image-border-radius-block-start); 57 border-bottom-right-radius: var(--ehp-image-border-radius-inline-end); 58 border-bottom-left-radius: var(--ehp-image-border-radius-inline-start); 59 } 60 } 61 62 &.has-shape { 63 @include shapes(); 64 65 &-md { 66 @media screen and (max-width: $screen-tablet-max) { 67 @include shapes(); 68 } 69 } 70 71 &-sm { 72 @media screen and (max-width: $screen-mobile-max) { 73 @include shapes(); 74 } 75 } 27 &.has-shape-custom { 28 --ehp-shapes-border-radius-block-end: var(--ehp-image-border-radius-block-end); 29 --ehp-shapes-border-radius-block-start: var(--ehp-image-border-radius-block-start); 30 --ehp-shapes-border-radius-inline-end: var(--ehp-image-border-radius-inline-end); 31 --ehp-shapes-border-radius-inline-start: var(--ehp-image-border-radius-inline-start); 76 32 } 77 33 -
hello-plus/trunk/build/css/helloplus-button-rtl.css
r3238471 r3250227 1 a.ehp-button,a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:10px;--ehp-button-primary-icon-size:16px;--ehp-button-primary-text-color:#fff;--ehp-button-primary-text-color-hover:#555963;--ehp-button-primary-border-width:0;--ehp-button-primary-border-color:transparent;--ehp-button-primary-padding-block-end:8px;--ehp-button-primary-padding-block-start:8px;--ehp-button-primary-padding-inline-end:16px;--ehp-button-primary-padding-inline-start:16px;--ehp-button-primary-border-radius :0;--ehp-button-primary-border-radius-block-end:8px;--ehp-button-primary-border-radius-block-start:8px;--ehp-button-primary-border-radius-inline-end:8px;--ehp-button-primary-border-radius-inline-start:8px;--ehp-button-secondary-icon-spacing:10px;--ehp-button-secondary-icon-size:16px;--ehp-button-secondary-text-color:#555963;--ehp-button-secondary-text-color-hover:#555963;--ehp-button-secondary-border-width:2px;--ehp-button-secondary-border-color:#555963;--ehp-button-secondary-padding-block-end:8px;--ehp-button-secondary-padding-block-start:8px;--ehp-button-secondary-padding-inline-end:16px;--ehp-button-secondary-padding-inline-start:16px;--ehp-button-secondary-border-radius:8px;--ehp-button-secondary-border-radius-block-end:8px;--ehp-button-secondary-border-radius-block-start:8px;--ehp-button-secondary-border-radius-inline-end:8px;--ehp-button-secondary-border-radius-inline-start:8px;--ehp-button-text-color:var(--ehp-button-primary-text-color);--ehp-button-text-color-hover:var(--ehp-button-primary-text-color-hover);--ehp-button-border-color:var(--ehp-button-primary-border-color);--ehp-button-padding-block-end:var(--ehp-button-primary-padding-block-end);--ehp-button-padding-block-start:var(--ehp-button-primary-padding-block-start);--ehp-button-padding-inline-end:var(--ehp-button-primary-padding-inline-end);--ehp-button-padding-inline-start:var(--ehp-button-primary-padding-inline-start);--ehp-button-border-width:var(--ehp-button-primary-border-width);--ehp-button-icon-spacing:var(--ehp-button-primary-icon-spacing);--ehp-button-icon-size:var(--ehp-button-primary-icon-size);--ehp-button-border-radius-block-end:var(--ehp-button-primary-border-radius-block-end);--ehp-button-border-radius-block-start:var(--ehp-button-primary-border-radius-block-start);--ehp-button-border-radius-inline-end:var(--ehp-button-primary-border-radius-inline-end);--ehp-button-border-radius-inline-start:var(--ehp-button-primary-border-radius-inline-start);--ehp-button-border-radius-default:8px;--ehp-button-border-radius-sharp:0;--ehp-button-border-radius-rounded:12px;--ehp-button-border-radius-round:32px;--ehp-button-border-radius-oval:50%;align-items:center;display:flex;gap:var(--ehp-button-icon-spacing);justify-content:center;text-decoration:none;transition:all .3s}a.ehp-button:focus,a.ehp-button:hover,a.ehp-button:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]):hover{transition:all .3s}a.ehp-button.has-border,a.ehp-button:not([href]):not([tabindex]).has-border{border-color:var(--ehp-button-border-color);border-style:solid;border-width:var(--ehp-button-border-width)}a.ehp-button.is-type-button,a.ehp-button:not([href]):not([tabindex]).is-type-button{padding-block-end:var(--ehp-button-padding-block-end);padding-block-start:var(--ehp-button-padding-block-start);padding-inline-end:var(--ehp-button-padding-inline-end);padding-inline-start:var(--ehp-button-padding-inline-start);text-decoration:none}a.ehp-button.is-type-link,a.ehp-button.is-type-link:not([href]):not([tabindex]),a.ehp-button:not([href]):not([tabindex]).is-type-link,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]){align-self:center;background:none;text-decoration:underline}a.ehp-button.is-type-link:focus,a.ehp-button.is-type-link:hover,a.ehp-button.is-type-link:not([href]):not([tabindex]):focus,a.ehp-button.is-type-link:not([href]):not([tabindex]):hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):hover{background:none}a.ehp-button.is-type-button,a.ehp-button.is-type-button:not([href]):not([tabindex]),a.ehp-button.is-type-link,a.ehp-button.is-type-link:not([href]):not([tabindex]),a.ehp-button:not([href]):not([tabindex]).is-type-button,a.ehp-button:not([href]):not([tabindex]).is-type-button:not([href]):not([tabindex]),a.ehp-button:not([href]):not([tabindex]).is-type-link,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]){color:var(--ehp-button-text-color)}a.ehp-button.is-type-button:focus,a.ehp-button.is-type-button:hover,a.ehp-button.is-type-button:not([href]):not([tabindex]):focus,a.ehp-button.is-type-button:not([href]):not([tabindex]):hover,a.ehp-button.is-type-link:focus,a.ehp-button.is-type-link:hover,a.ehp-button.is-type-link:not([href]):not([tabindex]):focus,a.ehp-button.is-type-link:not([href]):not([tabindex]):hover,a.ehp-button:not([href]):not([tabindex]).is-type-button:focus,a.ehp-button:not([href]):not([tabindex]).is-type-button:hover,a.ehp-button:not([href]):not([tabindex]).is-type-button:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]).is-type-button:not([href]):not([tabindex]):hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):hover{color:var(--ehp-button-text-color-hover)}a.ehp-button.has-shape-sharp,a.ehp-button:not([href]):not([tabindex]).has-shape-sharp{border-radius:var(--ehp-button-border-radius-sharp)}a.ehp-button.has-shape-rounded,a.ehp-button:not([href]):not([tabindex]).has-shape-rounded{border-radius:var(--ehp-button-border-radius-rounded)}a.ehp-button.has-shape-round,a.ehp-button:not([href]):not([tabindex]).has-shape-round{border-radius:var(--ehp-button-border-radius-round)}a.ehp-button.has-shape-default,a.ehp-button:not([href]):not([tabindex]).has-shape-default{border-radius:var(--ehp-button-border-radius-default)}a.ehp-button.has-shape-oval,a.ehp-button:not([href]):not([tabindex]).has-shape-oval{border-radius:var(--ehp-button-border-radius-oval)}a.ehp-button.has-shape-custom,a.ehp-button:not([href]):not([tabindex]).has-shape-custom{border-bottom-right-radius:var(--ehp-button-border-radius-inline-start);border-bottom-left-radius:var(--ehp-button-border-radius-inline-end);border-top-right-radius:var(--ehp-button-border-radius-block-end);border-top-left-radius:var(--ehp-button-border-radius-block-start)}@media screen and (max-width:1024px){a.ehp-button.has-shape-md-sharp,a.ehp-button:not([href]):not([tabindex]).has-shape-md-sharp{border-radius:var(--ehp-button-border-radius-sharp)}a.ehp-button.has-shape-md-rounded,a.ehp-button:not([href]):not([tabindex]).has-shape-md-rounded{border-radius:var(--ehp-button-border-radius-rounded)}a.ehp-button.has-shape-md-round,a.ehp-button:not([href]):not([tabindex]).has-shape-md-round{border-radius:var(--ehp-button-border-radius-round)}a.ehp-button.has-shape-md-default,a.ehp-button:not([href]):not([tabindex]).has-shape-md-default{border-radius:var(--ehp-button-border-radius-default)}a.ehp-button.has-shape-md-oval,a.ehp-button:not([href]):not([tabindex]).has-shape-md-oval{border-radius:var(--ehp-button-border-radius-oval)}a.ehp-button.has-shape-md-custom,a.ehp-button:not([href]):not([tabindex]).has-shape-md-custom{border-bottom-right-radius:var(--ehp-button-border-radius-inline-start);border-bottom-left-radius:var(--ehp-button-border-radius-inline-end);border-top-right-radius:var(--ehp-button-border-radius-block-end);border-top-left-radius:var(--ehp-button-border-radius-block-start)}}@media screen and (max-width:767px){a.ehp-button.has-shape-sm-sharp,a.ehp-button:not([href]):not([tabindex]).has-shape-sm-sharp{border-radius:var(--ehp-button-border-radius-sharp)}a.ehp-button.has-shape-sm-rounded,a.ehp-button:not([href]):not([tabindex]).has-shape-sm-rounded{border-radius:var(--ehp-button-border-radius-rounded)}a.ehp-button.has-shape-sm-round,a.ehp-button:not([href]):not([tabindex]).has-shape-sm-round{border-radius:var(--ehp-button-border-radius-round)}a.ehp-button.has-shape-sm-default,a.ehp-button:not([href]):not([tabindex]).has-shape-sm-default{border-radius:var(--ehp-button-border-radius-default)}a.ehp-button.has-shape-sm-oval,a.ehp-button:not([href]):not([tabindex]).has-shape-sm-oval{border-radius:var(--ehp-button-border-radius-oval)}a.ehp-button.has-shape-sm-custom,a.ehp-button:not([href]):not([tabindex]).has-shape-sm-custom{border-bottom-right-radius:var(--ehp-button-border-radius-inline-start);border-bottom-left-radius:var(--ehp-button-border-radius-inline-end);border-top-right-radius:var(--ehp-button-border-radius-block-end);border-top-left-radius:var(--ehp-button-border-radius-block-start)}}a.ehp-button .ehp-button__icon,a.ehp-button:not([href]):not([tabindex]) .ehp-button__icon{fill:currentColor;height:var(--ehp-button-icon-size);width:var(--ehp-button-icon-size)}a.ehp-button--secondary,a.ehp-button--secondary:not([href]):not([tabindex]){--ehp-button-text-color:var(--ehp-button-secondary-text-color);--ehp-button-text-color-hover:var(--ehp-button-secondary-text-color-hover);--ehp-button-border-color:var(--ehp-button-secondary-border-color);--ehp-button-padding-block-end:var(--ehp-button-secondary-padding-block-end);--ehp-button-padding-block-start:var(--ehp-button-secondary-padding-block-start);--ehp-button-padding-inline-end:var(--ehp-button-secondary-padding-inline-end);--ehp-button-padding-inline-start:var(--ehp-button-secondary-padding-inline-start);--ehp-button-border-width:var(--ehp-button-secondary-border-width);--ehp-button-icon-spacing:var(--ehp-button-secondary-icon-spacing);--ehp-button-border-radius-block-end:var(--ehp-button-secondary-border-radius-block-end);--ehp-button-border-radius-block-start:var(--ehp-button-secondary-border-radius-block-start);--ehp-button-border-radius-inline-end:var(--ehp-button-secondary-border-radius-inline-end);--ehp-button-border-radius-inline-start:var(--ehp-button-secondary-border-radius-inline-start)}1 a.ehp-button,a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:10px;--ehp-button-primary-icon-size:16px;--ehp-button-primary-text-color:#fff;--ehp-button-primary-text-color-hover:#555963;--ehp-button-primary-border-width:0;--ehp-button-primary-border-color:transparent;--ehp-button-primary-padding-block-end:8px;--ehp-button-primary-padding-block-start:8px;--ehp-button-primary-padding-inline-end:16px;--ehp-button-primary-padding-inline-start:16px;--ehp-button-primary-border-radius-block-end:8px;--ehp-button-primary-border-radius-block-start:8px;--ehp-button-primary-border-radius-inline-end:8px;--ehp-button-primary-border-radius-inline-start:8px;--ehp-button-secondary-icon-spacing:10px;--ehp-button-secondary-icon-size:16px;--ehp-button-secondary-text-color:#555963;--ehp-button-secondary-text-color-hover:#555963;--ehp-button-secondary-border-width:2px;--ehp-button-secondary-border-color:#555963;--ehp-button-secondary-padding-block-end:8px;--ehp-button-secondary-padding-block-start:8px;--ehp-button-secondary-padding-inline-end:16px;--ehp-button-secondary-padding-inline-start:16px;--ehp-button-text-color:var(--ehp-button-primary-text-color);--ehp-button-text-color-hover:var(--ehp-button-primary-text-color-hover);--ehp-button-border-color:var(--ehp-button-primary-border-color);--ehp-button-padding-block-end:var(--ehp-button-primary-padding-block-end);--ehp-button-padding-block-start:var(--ehp-button-primary-padding-block-start);--ehp-button-padding-inline-end:var(--ehp-button-primary-padding-inline-end);--ehp-button-padding-inline-start:var(--ehp-button-primary-padding-inline-start);--ehp-button-border-width:var(--ehp-button-primary-border-width);--ehp-button-icon-spacing:var(--ehp-button-primary-icon-spacing);--ehp-button-icon-size:var(--ehp-button-primary-icon-size);--ehp-button-border-radius-block-end:var(--ehp-button-primary-border-radius-block-end);--ehp-button-border-radius-block-start:var(--ehp-button-primary-border-radius-block-start);--ehp-button-border-radius-inline-end:var(--ehp-button-primary-border-radius-inline-end);--ehp-button-border-radius-inline-start:var(--ehp-button-primary-border-radius-inline-start);align-items:center;display:flex;gap:var(--ehp-button-icon-spacing);justify-content:center;text-decoration:none;transition:all .3s}a.ehp-button:focus,a.ehp-button:hover,a.ehp-button:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]):hover{transition:all .3s}a.ehp-button.has-border,a.ehp-button:not([href]):not([tabindex]).has-border{border-color:var(--ehp-button-border-color);border-style:solid;border-width:var(--ehp-button-border-width)}a.ehp-button.is-type-button,a.ehp-button:not([href]):not([tabindex]).is-type-button{padding-block-end:var(--ehp-button-padding-block-end);padding-block-start:var(--ehp-button-padding-block-start);padding-inline-end:var(--ehp-button-padding-inline-end);padding-inline-start:var(--ehp-button-padding-inline-start);text-decoration:none}a.ehp-button.is-type-link,a.ehp-button.is-type-link:not([href]):not([tabindex]),a.ehp-button:not([href]):not([tabindex]).is-type-link,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]){align-self:center;background:none;text-decoration:underline}a.ehp-button.is-type-link:focus,a.ehp-button.is-type-link:hover,a.ehp-button.is-type-link:not([href]):not([tabindex]):focus,a.ehp-button.is-type-link:not([href]):not([tabindex]):hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):hover{background:none}a.ehp-button.is-type-button,a.ehp-button.is-type-button:not([href]):not([tabindex]),a.ehp-button.is-type-link,a.ehp-button.is-type-link:not([href]):not([tabindex]),a.ehp-button:not([href]):not([tabindex]).is-type-button,a.ehp-button:not([href]):not([tabindex]).is-type-button:not([href]):not([tabindex]),a.ehp-button:not([href]):not([tabindex]).is-type-link,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]){color:var(--ehp-button-text-color)}a.ehp-button.is-type-button:focus,a.ehp-button.is-type-button:hover,a.ehp-button.is-type-button:not([href]):not([tabindex]):focus,a.ehp-button.is-type-button:not([href]):not([tabindex]):hover,a.ehp-button.is-type-link:focus,a.ehp-button.is-type-link:hover,a.ehp-button.is-type-link:not([href]):not([tabindex]):focus,a.ehp-button.is-type-link:not([href]):not([tabindex]):hover,a.ehp-button:not([href]):not([tabindex]).is-type-button:focus,a.ehp-button:not([href]):not([tabindex]).is-type-button:hover,a.ehp-button:not([href]):not([tabindex]).is-type-button:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]).is-type-button:not([href]):not([tabindex]):hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):hover{color:var(--ehp-button-text-color-hover)}a.ehp-button.has-shape-custom,a.ehp-button:not([href]):not([tabindex]).has-shape-custom{--ehp-shapes-border-radius-block-end:var(--ehp-button-primary-border-radius-block-end);--ehp-shapes-border-radius-block-start:var(--ehp-button-primary-border-radius-block-start);--ehp-shapes-border-radius-inline-end:var(--ehp-button-primary-border-radius-inline-end);--ehp-shapes-border-radius-inline-start:var(--ehp-button-primary-border-radius-inline-start)}a.ehp-button .ehp-button__icon,a.ehp-button:not([href]):not([tabindex]) .ehp-button__icon{fill:currentColor;height:var(--ehp-button-icon-size);width:var(--ehp-button-icon-size)}a.ehp-button--secondary,a.ehp-button--secondary:not([href]):not([tabindex]){--ehp-button-text-color:var(--ehp-button-secondary-text-color);--ehp-button-text-color-hover:var(--ehp-button-secondary-text-color-hover);--ehp-button-border-color:var(--ehp-button-secondary-border-color);--ehp-button-padding-block-end:var(--ehp-button-secondary-padding-block-end);--ehp-button-padding-block-start:var(--ehp-button-secondary-padding-block-start);--ehp-button-padding-inline-end:var(--ehp-button-secondary-padding-inline-end);--ehp-button-padding-inline-start:var(--ehp-button-secondary-padding-inline-start);--ehp-button-border-width:var(--ehp-button-secondary-border-width);--ehp-button-icon-spacing:var(--ehp-button-secondary-icon-spacing);--ehp-button-border-radius-block-end:var(--ehp-button-secondary-border-radius-block-end);--ehp-button-border-radius-block-start:var(--ehp-button-secondary-border-radius-block-start);--ehp-button-border-radius-inline-end:var(--ehp-button-secondary-border-radius-inline-end);--ehp-button-border-radius-inline-start:var(--ehp-button-secondary-border-radius-inline-start)}a.ehp-button--secondary.has-shape-custom,a.ehp-button--secondary:not([href]):not([tabindex]).has-shape-custom{--ehp-shapes-border-radius-block-end:var(--ehp-button-secondary-border-radius-block-end);--ehp-shapes-border-radius-block-start:var(--ehp-button-secondary-border-radius-block-start);--ehp-shapes-border-radius-inline-end:var(--ehp-button-secondary-border-radius-inline-end);--ehp-shapes-border-radius-inline-start:var(--ehp-button-secondary-border-radius-inline-start)} -
hello-plus/trunk/build/css/helloplus-button.asset.php
r3238471 r3250227 1 <?php return array('dependencies' => array(), 'version' => ' 4cb04f4ce08839f9d8ea');1 <?php return array('dependencies' => array(), 'version' => 'c1d013224289ce5162e3'); -
hello-plus/trunk/build/css/helloplus-button.css
r3238471 r3250227 1 a.ehp-button,a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:10px;--ehp-button-primary-icon-size:16px;--ehp-button-primary-text-color:#fff;--ehp-button-primary-text-color-hover:#555963;--ehp-button-primary-border-width:0;--ehp-button-primary-border-color:transparent;--ehp-button-primary-padding-block-end:8px;--ehp-button-primary-padding-block-start:8px;--ehp-button-primary-padding-inline-end:16px;--ehp-button-primary-padding-inline-start:16px;--ehp-button-primary-border-radius :0;--ehp-button-primary-border-radius-block-end:8px;--ehp-button-primary-border-radius-block-start:8px;--ehp-button-primary-border-radius-inline-end:8px;--ehp-button-primary-border-radius-inline-start:8px;--ehp-button-secondary-icon-spacing:10px;--ehp-button-secondary-icon-size:16px;--ehp-button-secondary-text-color:#555963;--ehp-button-secondary-text-color-hover:#555963;--ehp-button-secondary-border-width:2px;--ehp-button-secondary-border-color:#555963;--ehp-button-secondary-padding-block-end:8px;--ehp-button-secondary-padding-block-start:8px;--ehp-button-secondary-padding-inline-end:16px;--ehp-button-secondary-padding-inline-start:16px;--ehp-button-secondary-border-radius:8px;--ehp-button-secondary-border-radius-block-end:8px;--ehp-button-secondary-border-radius-block-start:8px;--ehp-button-secondary-border-radius-inline-end:8px;--ehp-button-secondary-border-radius-inline-start:8px;--ehp-button-text-color:var(--ehp-button-primary-text-color);--ehp-button-text-color-hover:var(--ehp-button-primary-text-color-hover);--ehp-button-border-color:var(--ehp-button-primary-border-color);--ehp-button-padding-block-end:var(--ehp-button-primary-padding-block-end);--ehp-button-padding-block-start:var(--ehp-button-primary-padding-block-start);--ehp-button-padding-inline-end:var(--ehp-button-primary-padding-inline-end);--ehp-button-padding-inline-start:var(--ehp-button-primary-padding-inline-start);--ehp-button-border-width:var(--ehp-button-primary-border-width);--ehp-button-icon-spacing:var(--ehp-button-primary-icon-spacing);--ehp-button-icon-size:var(--ehp-button-primary-icon-size);--ehp-button-border-radius-block-end:var(--ehp-button-primary-border-radius-block-end);--ehp-button-border-radius-block-start:var(--ehp-button-primary-border-radius-block-start);--ehp-button-border-radius-inline-end:var(--ehp-button-primary-border-radius-inline-end);--ehp-button-border-radius-inline-start:var(--ehp-button-primary-border-radius-inline-start);--ehp-button-border-radius-default:8px;--ehp-button-border-radius-sharp:0;--ehp-button-border-radius-rounded:12px;--ehp-button-border-radius-round:32px;--ehp-button-border-radius-oval:50%;align-items:center;display:flex;gap:var(--ehp-button-icon-spacing);justify-content:center;text-decoration:none;transition:all .3s}a.ehp-button:focus,a.ehp-button:hover,a.ehp-button:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]):hover{transition:all .3s}a.ehp-button.has-border,a.ehp-button:not([href]):not([tabindex]).has-border{border-color:var(--ehp-button-border-color);border-style:solid;border-width:var(--ehp-button-border-width)}a.ehp-button.is-type-button,a.ehp-button:not([href]):not([tabindex]).is-type-button{padding-block-end:var(--ehp-button-padding-block-end);padding-block-start:var(--ehp-button-padding-block-start);padding-inline-end:var(--ehp-button-padding-inline-end);padding-inline-start:var(--ehp-button-padding-inline-start);text-decoration:none}a.ehp-button.is-type-link,a.ehp-button.is-type-link:not([href]):not([tabindex]),a.ehp-button:not([href]):not([tabindex]).is-type-link,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]){align-self:center;background:none;text-decoration:underline}a.ehp-button.is-type-link:focus,a.ehp-button.is-type-link:hover,a.ehp-button.is-type-link:not([href]):not([tabindex]):focus,a.ehp-button.is-type-link:not([href]):not([tabindex]):hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):hover{background:none}a.ehp-button.is-type-button,a.ehp-button.is-type-button:not([href]):not([tabindex]),a.ehp-button.is-type-link,a.ehp-button.is-type-link:not([href]):not([tabindex]),a.ehp-button:not([href]):not([tabindex]).is-type-button,a.ehp-button:not([href]):not([tabindex]).is-type-button:not([href]):not([tabindex]),a.ehp-button:not([href]):not([tabindex]).is-type-link,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]){color:var(--ehp-button-text-color)}a.ehp-button.is-type-button:focus,a.ehp-button.is-type-button:hover,a.ehp-button.is-type-button:not([href]):not([tabindex]):focus,a.ehp-button.is-type-button:not([href]):not([tabindex]):hover,a.ehp-button.is-type-link:focus,a.ehp-button.is-type-link:hover,a.ehp-button.is-type-link:not([href]):not([tabindex]):focus,a.ehp-button.is-type-link:not([href]):not([tabindex]):hover,a.ehp-button:not([href]):not([tabindex]).is-type-button:focus,a.ehp-button:not([href]):not([tabindex]).is-type-button:hover,a.ehp-button:not([href]):not([tabindex]).is-type-button:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]).is-type-button:not([href]):not([tabindex]):hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):hover{color:var(--ehp-button-text-color-hover)}a.ehp-button.has-shape-sharp,a.ehp-button:not([href]):not([tabindex]).has-shape-sharp{border-radius:var(--ehp-button-border-radius-sharp)}a.ehp-button.has-shape-rounded,a.ehp-button:not([href]):not([tabindex]).has-shape-rounded{border-radius:var(--ehp-button-border-radius-rounded)}a.ehp-button.has-shape-round,a.ehp-button:not([href]):not([tabindex]).has-shape-round{border-radius:var(--ehp-button-border-radius-round)}a.ehp-button.has-shape-default,a.ehp-button:not([href]):not([tabindex]).has-shape-default{border-radius:var(--ehp-button-border-radius-default)}a.ehp-button.has-shape-oval,a.ehp-button:not([href]):not([tabindex]).has-shape-oval{border-radius:var(--ehp-button-border-radius-oval)}a.ehp-button.has-shape-custom,a.ehp-button:not([href]):not([tabindex]).has-shape-custom{border-bottom-left-radius:var(--ehp-button-border-radius-inline-start);border-bottom-right-radius:var(--ehp-button-border-radius-inline-end);border-top-left-radius:var(--ehp-button-border-radius-block-end);border-top-right-radius:var(--ehp-button-border-radius-block-start)}@media screen and (max-width:1024px){a.ehp-button.has-shape-md-sharp,a.ehp-button:not([href]):not([tabindex]).has-shape-md-sharp{border-radius:var(--ehp-button-border-radius-sharp)}a.ehp-button.has-shape-md-rounded,a.ehp-button:not([href]):not([tabindex]).has-shape-md-rounded{border-radius:var(--ehp-button-border-radius-rounded)}a.ehp-button.has-shape-md-round,a.ehp-button:not([href]):not([tabindex]).has-shape-md-round{border-radius:var(--ehp-button-border-radius-round)}a.ehp-button.has-shape-md-default,a.ehp-button:not([href]):not([tabindex]).has-shape-md-default{border-radius:var(--ehp-button-border-radius-default)}a.ehp-button.has-shape-md-oval,a.ehp-button:not([href]):not([tabindex]).has-shape-md-oval{border-radius:var(--ehp-button-border-radius-oval)}a.ehp-button.has-shape-md-custom,a.ehp-button:not([href]):not([tabindex]).has-shape-md-custom{border-bottom-left-radius:var(--ehp-button-border-radius-inline-start);border-bottom-right-radius:var(--ehp-button-border-radius-inline-end);border-top-left-radius:var(--ehp-button-border-radius-block-end);border-top-right-radius:var(--ehp-button-border-radius-block-start)}}@media screen and (max-width:767px){a.ehp-button.has-shape-sm-sharp,a.ehp-button:not([href]):not([tabindex]).has-shape-sm-sharp{border-radius:var(--ehp-button-border-radius-sharp)}a.ehp-button.has-shape-sm-rounded,a.ehp-button:not([href]):not([tabindex]).has-shape-sm-rounded{border-radius:var(--ehp-button-border-radius-rounded)}a.ehp-button.has-shape-sm-round,a.ehp-button:not([href]):not([tabindex]).has-shape-sm-round{border-radius:var(--ehp-button-border-radius-round)}a.ehp-button.has-shape-sm-default,a.ehp-button:not([href]):not([tabindex]).has-shape-sm-default{border-radius:var(--ehp-button-border-radius-default)}a.ehp-button.has-shape-sm-oval,a.ehp-button:not([href]):not([tabindex]).has-shape-sm-oval{border-radius:var(--ehp-button-border-radius-oval)}a.ehp-button.has-shape-sm-custom,a.ehp-button:not([href]):not([tabindex]).has-shape-sm-custom{border-bottom-left-radius:var(--ehp-button-border-radius-inline-start);border-bottom-right-radius:var(--ehp-button-border-radius-inline-end);border-top-left-radius:var(--ehp-button-border-radius-block-end);border-top-right-radius:var(--ehp-button-border-radius-block-start)}}a.ehp-button .ehp-button__icon,a.ehp-button:not([href]):not([tabindex]) .ehp-button__icon{fill:currentColor;height:var(--ehp-button-icon-size);width:var(--ehp-button-icon-size)}a.ehp-button--secondary,a.ehp-button--secondary:not([href]):not([tabindex]){--ehp-button-text-color:var(--ehp-button-secondary-text-color);--ehp-button-text-color-hover:var(--ehp-button-secondary-text-color-hover);--ehp-button-border-color:var(--ehp-button-secondary-border-color);--ehp-button-padding-block-end:var(--ehp-button-secondary-padding-block-end);--ehp-button-padding-block-start:var(--ehp-button-secondary-padding-block-start);--ehp-button-padding-inline-end:var(--ehp-button-secondary-padding-inline-end);--ehp-button-padding-inline-start:var(--ehp-button-secondary-padding-inline-start);--ehp-button-border-width:var(--ehp-button-secondary-border-width);--ehp-button-icon-spacing:var(--ehp-button-secondary-icon-spacing);--ehp-button-border-radius-block-end:var(--ehp-button-secondary-border-radius-block-end);--ehp-button-border-radius-block-start:var(--ehp-button-secondary-border-radius-block-start);--ehp-button-border-radius-inline-end:var(--ehp-button-secondary-border-radius-inline-end);--ehp-button-border-radius-inline-start:var(--ehp-button-secondary-border-radius-inline-start)}1 a.ehp-button,a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:10px;--ehp-button-primary-icon-size:16px;--ehp-button-primary-text-color:#fff;--ehp-button-primary-text-color-hover:#555963;--ehp-button-primary-border-width:0;--ehp-button-primary-border-color:transparent;--ehp-button-primary-padding-block-end:8px;--ehp-button-primary-padding-block-start:8px;--ehp-button-primary-padding-inline-end:16px;--ehp-button-primary-padding-inline-start:16px;--ehp-button-primary-border-radius-block-end:8px;--ehp-button-primary-border-radius-block-start:8px;--ehp-button-primary-border-radius-inline-end:8px;--ehp-button-primary-border-radius-inline-start:8px;--ehp-button-secondary-icon-spacing:10px;--ehp-button-secondary-icon-size:16px;--ehp-button-secondary-text-color:#555963;--ehp-button-secondary-text-color-hover:#555963;--ehp-button-secondary-border-width:2px;--ehp-button-secondary-border-color:#555963;--ehp-button-secondary-padding-block-end:8px;--ehp-button-secondary-padding-block-start:8px;--ehp-button-secondary-padding-inline-end:16px;--ehp-button-secondary-padding-inline-start:16px;--ehp-button-text-color:var(--ehp-button-primary-text-color);--ehp-button-text-color-hover:var(--ehp-button-primary-text-color-hover);--ehp-button-border-color:var(--ehp-button-primary-border-color);--ehp-button-padding-block-end:var(--ehp-button-primary-padding-block-end);--ehp-button-padding-block-start:var(--ehp-button-primary-padding-block-start);--ehp-button-padding-inline-end:var(--ehp-button-primary-padding-inline-end);--ehp-button-padding-inline-start:var(--ehp-button-primary-padding-inline-start);--ehp-button-border-width:var(--ehp-button-primary-border-width);--ehp-button-icon-spacing:var(--ehp-button-primary-icon-spacing);--ehp-button-icon-size:var(--ehp-button-primary-icon-size);--ehp-button-border-radius-block-end:var(--ehp-button-primary-border-radius-block-end);--ehp-button-border-radius-block-start:var(--ehp-button-primary-border-radius-block-start);--ehp-button-border-radius-inline-end:var(--ehp-button-primary-border-radius-inline-end);--ehp-button-border-radius-inline-start:var(--ehp-button-primary-border-radius-inline-start);align-items:center;display:flex;gap:var(--ehp-button-icon-spacing);justify-content:center;text-decoration:none;transition:all .3s}a.ehp-button:focus,a.ehp-button:hover,a.ehp-button:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]):hover{transition:all .3s}a.ehp-button.has-border,a.ehp-button:not([href]):not([tabindex]).has-border{border-color:var(--ehp-button-border-color);border-style:solid;border-width:var(--ehp-button-border-width)}a.ehp-button.is-type-button,a.ehp-button:not([href]):not([tabindex]).is-type-button{padding-block-end:var(--ehp-button-padding-block-end);padding-block-start:var(--ehp-button-padding-block-start);padding-inline-end:var(--ehp-button-padding-inline-end);padding-inline-start:var(--ehp-button-padding-inline-start);text-decoration:none}a.ehp-button.is-type-link,a.ehp-button.is-type-link:not([href]):not([tabindex]),a.ehp-button:not([href]):not([tabindex]).is-type-link,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]){align-self:center;background:none;text-decoration:underline}a.ehp-button.is-type-link:focus,a.ehp-button.is-type-link:hover,a.ehp-button.is-type-link:not([href]):not([tabindex]):focus,a.ehp-button.is-type-link:not([href]):not([tabindex]):hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):hover{background:none}a.ehp-button.is-type-button,a.ehp-button.is-type-button:not([href]):not([tabindex]),a.ehp-button.is-type-link,a.ehp-button.is-type-link:not([href]):not([tabindex]),a.ehp-button:not([href]):not([tabindex]).is-type-button,a.ehp-button:not([href]):not([tabindex]).is-type-button:not([href]):not([tabindex]),a.ehp-button:not([href]):not([tabindex]).is-type-link,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]){color:var(--ehp-button-text-color)}a.ehp-button.is-type-button:focus,a.ehp-button.is-type-button:hover,a.ehp-button.is-type-button:not([href]):not([tabindex]):focus,a.ehp-button.is-type-button:not([href]):not([tabindex]):hover,a.ehp-button.is-type-link:focus,a.ehp-button.is-type-link:hover,a.ehp-button.is-type-link:not([href]):not([tabindex]):focus,a.ehp-button.is-type-link:not([href]):not([tabindex]):hover,a.ehp-button:not([href]):not([tabindex]).is-type-button:focus,a.ehp-button:not([href]):not([tabindex]).is-type-button:hover,a.ehp-button:not([href]):not([tabindex]).is-type-button:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]).is-type-button:not([href]):not([tabindex]):hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:hover,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):focus,a.ehp-button:not([href]):not([tabindex]).is-type-link:not([href]):not([tabindex]):hover{color:var(--ehp-button-text-color-hover)}a.ehp-button.has-shape-custom,a.ehp-button:not([href]):not([tabindex]).has-shape-custom{--ehp-shapes-border-radius-block-end:var(--ehp-button-primary-border-radius-block-end);--ehp-shapes-border-radius-block-start:var(--ehp-button-primary-border-radius-block-start);--ehp-shapes-border-radius-inline-end:var(--ehp-button-primary-border-radius-inline-end);--ehp-shapes-border-radius-inline-start:var(--ehp-button-primary-border-radius-inline-start)}a.ehp-button .ehp-button__icon,a.ehp-button:not([href]):not([tabindex]) .ehp-button__icon{fill:currentColor;height:var(--ehp-button-icon-size);width:var(--ehp-button-icon-size)}a.ehp-button--secondary,a.ehp-button--secondary:not([href]):not([tabindex]){--ehp-button-text-color:var(--ehp-button-secondary-text-color);--ehp-button-text-color-hover:var(--ehp-button-secondary-text-color-hover);--ehp-button-border-color:var(--ehp-button-secondary-border-color);--ehp-button-padding-block-end:var(--ehp-button-secondary-padding-block-end);--ehp-button-padding-block-start:var(--ehp-button-secondary-padding-block-start);--ehp-button-padding-inline-end:var(--ehp-button-secondary-padding-inline-end);--ehp-button-padding-inline-start:var(--ehp-button-secondary-padding-inline-start);--ehp-button-border-width:var(--ehp-button-secondary-border-width);--ehp-button-icon-spacing:var(--ehp-button-secondary-icon-spacing);--ehp-button-border-radius-block-end:var(--ehp-button-secondary-border-radius-block-end);--ehp-button-border-radius-block-start:var(--ehp-button-secondary-border-radius-block-start);--ehp-button-border-radius-inline-end:var(--ehp-button-secondary-border-radius-inline-end);--ehp-button-border-radius-inline-start:var(--ehp-button-secondary-border-radius-inline-start)}a.ehp-button--secondary.has-shape-custom,a.ehp-button--secondary:not([href]):not([tabindex]).has-shape-custom{--ehp-shapes-border-radius-block-end:var(--ehp-button-secondary-border-radius-block-end);--ehp-shapes-border-radius-block-start:var(--ehp-button-secondary-border-radius-block-start);--ehp-shapes-border-radius-inline-end:var(--ehp-button-secondary-border-radius-inline-end);--ehp-shapes-border-radius-inline-start:var(--ehp-button-secondary-border-radius-inline-start)} -
hello-plus/trunk/build/css/helloplus-cta-rtl.css
r3241372 r3250227 1 .ehp-cta{--cta-box-height:auto;--cta-box-full-height:100vh;--cta-elements-spacing:40px;--cta-buttons-space-between:16px;--cta-content-alignment:center;--cta-buttons-vertical-position:start;--cta-content-position-vertical:start;--cta-heading-color:#28292b;--cta-description-color:#28292b;--cta-button-primary-icon-spacing:10px;--cta-button-primary-icon-size:16px;--cta-button-primary-text-color:#fff;--cta-button-primary-text-color-hover:#7a7a7a;--cta-button-primary-border-width:0;--cta-button-primary-border-color:transparent;--cta-button-primary-border-radius-block-end:8px;--cta-button-primary-border-radius-block-start:8px;--cta-button-primary-border-radius-inline-end:8px;--cta-button-primary-border-radius-inline-start:8px;--cta-button-secondary-icon-spacing:10px;--cta-button-secondary-icon-size:16px;--cta-button-secondary-text-color:#54595f;--cta-button-secondary-text-color-hover:#54595f;--cta-button-secondary-border-width:2px;--cta-button-secondary-border-color:#54595f;--cta-b utton-secondary-border-radius-block-end:8px;--cta-button-secondary-border-radius-block-start:8px;--cta-button-secondary-border-radius-inline-end:8px;--cta-button-secondary-border-radius-inline-start:8px;--cta-box-border-color:#54595f;--cta-box-border-width:1px;--cta-border-radius-default:8px;--cta-border-radius-sharp:0;--cta-border-radius-rounded:12px;--cta-border-radius-round:32px;--cta-border-radius-oval:50%;--cta-box-border-radius-custom-block-end:0;--cta-box-border-radius-custom-block-start:0;--cta-box-border-radius-custom-inline-end:0;--cta-box-border-radius-custom-inline-start:0;--cta-text-container-flex-grow-default:0;--cta-text-container-flex-grow-end:1;--cta-text-container-flex-grow:var(--cta-text-container-flex-grow-default);display:flex;height:100%;justify-content:center;min-height:var(--cta-box-height);padding-block-end:var(--cta-box-padding-block-end);padding-block-start:var(--cta-box-padding-block-start);padding-inline-end:var(--cta-box-padding-inline-end);padding-inline-start:var(--cta-box-padding-inline-start)}.ehp-cta .has-shape-sharp,.ehp-cta.has-shape-sharp{border-radius:var(--cta-border-radius-sharp)}.ehp-cta .has-shape-rounded,.ehp-cta.has-shape-rounded{border-radius:var(--cta-border-radius-rounded)}.ehp-cta .has-shape-round,.ehp-cta.has-shape-round{border-radius:var(--cta-border-radius-round)}.ehp-cta .has-shape-default,.ehp-cta.has-shape-default{border-radius:var(--cta-border-radius-default)}.ehp-cta .has-shape-oval,.ehp-cta.has-shape-oval{border-radius:var(--cta-border-radius-oval)}.ehp-cta .has-shape-custom,.ehp-cta.has-shape-custom{border-bottom-right-radius:var(--cta-border-radius-inline-start);border-bottom-left-radius:var(--cta-border-radius-inline-end);border-top-right-radius:var(--cta-border-radius-block-end);border-top-left-radius:var(--cta-border-radius-block-start)}@media screen and (max-width:1024px){.ehp-cta .has-shape-md-sharp,.ehp-cta.has-shape-md-sharp{border-radius:var(--cta-border-radius-sharp)}.ehp-cta .has-shape-md-rounded,.ehp-cta.has-shape-md-rounded{border-radius:var(--cta-border-radius-rounded)}.ehp-cta .has-shape-md-round,.ehp-cta.has-shape-md-round{border-radius:var(--cta-border-radius-round)}.ehp-cta .has-shape-md-default,.ehp-cta.has-shape-md-default{border-radius:var(--cta-border-radius-default)}.ehp-cta .has-shape-md-oval,.ehp-cta.has-shape-md-oval{border-radius:var(--cta-border-radius-oval)}.ehp-cta .has-shape-md-custom,.ehp-cta.has-shape-md-custom{border-bottom-right-radius:var(--cta-border-radius-inline-start);border-bottom-left-radius:var(--cta-border-radius-inline-end);border-top-right-radius:var(--cta-border-radius-block-end);border-top-left-radius:var(--cta-border-radius-block-start)}}@media screen and (max-width:767px){.ehp-cta .has-shape-sm-sharp,.ehp-cta.has-shape-sm-sharp{border-radius:var(--cta-border-radius-sharp)}.ehp-cta .has-shape-sm-rounded,.ehp-cta.has-shape-sm-rounded{border-radius:var(--cta-border-radius-rounded)}.ehp-cta .has-shape-sm-round,.ehp-cta.has-shape-sm-round{border-radius:var(--cta-border-radius-round)}.ehp-cta .has-shape-sm-default,.ehp-cta.has-shape-sm-default{border-radius:var(--cta-border-radius-default)}.ehp-cta .has-shape-sm-oval,.ehp-cta.has-shape-sm-oval{border-radius:var(--cta-border-radius-oval)}.ehp-cta .has-shape-sm-custom,.ehp-cta.has-shape-sm-custom{border-bottom-right-radius:var(--cta-border-radius-inline-start);border-bottom-left-radius:var(--cta-border-radius-inline-end);border-top-right-radius:var(--cta-border-radius-block-end);border-top-left-radius:var(--cta-border-radius-block-start)}}.ehp-cta.has-shape-rounded{--cta-border-shape-rounded:52px}.ehp-cta.has-shape-custom{--cta-border-radius-block-end:var(--cta-box-border-radius-custom-block-end);--cta-border-radius-block-start:var(--cta-box-border-radius-custom-block-start);--cta-border-radius-inline-end:var(--cta-box-border-radius-custom-inline-end);--cta-border-radius-inline-start:var(--cta-box-border-radius-custom-inline-start)}@media screen and (max-width:1024px){.ehp-cta.has-shape-md-rounded{--cta-border-shape-rounded:52px}.ehp-cta.has-shape-md-custom{--cta-border-radius-block-end:var(--cta-box-border-radius-custom-block-end);--cta-border-radius-block-start:var(--cta-box-border-radius-custom-block-start);--cta-border-radius-inline-end:var(--cta-box-border-radius-custom-inline-end);--cta-border-radius-inline-start:var(--cta-box-border-radius-custom-inline-start)}}@media screen and (max-width:767px){.ehp-cta.has-shape-sm-rounded{--cta-border-shape-rounded:52px}.ehp-cta.has-shape-sm-custom{--cta-border-radius-block-end:var(--cta-box-border-radius-custom-block-end);--cta-border-radius-block-start:var(--cta-box-border-radius-custom-block-start);--cta-border-radius-inline-end:var(--cta-box-border-radius-custom-inline-end);--cta-border-radius-inline-start:var(--cta-box-border-radius-custom-inline-start)}}.ehp-cta.has-border{border-color:var(--cta-box-border-color);border-style:solid;border-width:var(--cta-box-border-width)}.ehp-cta.has-image-stretch{--cta-image-width:100%;padding:0}.ehp-cta.has-image-stretch.has-preset-showcase .ehp-cta__elements-container{gap:0}.ehp-cta.has-image-stretch.has-preset-showcase .ehp-cta__text-container{padding-block-end:var(--cta-box-padding-block-end);padding-block-start:var(--cta-box-padding-block-start);padding-inline-end:var(--cta-box-padding-inline-end);padding-inline-start:var(--cta-box-padding-inline-start)}.ehp-cta.has-image-stretch.has-preset-storytelling .ehp-cta__elements-container{padding-block-end:var(--cta-box-padding-block-end)}.ehp-cta.has-image-stretch.has-preset-storytelling .ehp-cta__ctas-container,.ehp-cta.has-image-stretch.has-preset-storytelling .ehp-cta__text-container{padding-inline-end:var(--cta-box-padding-inline-end);padding-inline-start:var(--cta-box-padding-inline-start)}@supports(height:100dvh){.ehp-cta{--cta-box-full-height:100dvh}}@media(max-width:767px){.ehp-cta.is-full-height-mobile{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:-1)and (max-width:-1){.ehp-cta.is-full-height-mobile_extra{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:768px)and (max-width:1024px){.ehp-cta.is-full-height-tablet{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:-1)and (max-width:-1){.ehp-cta.is-full-height-laptop,.ehp-cta.is-full-height-tablet_extra{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:1025px){.ehp-cta.is-full-height-desktop{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:1025px)and (max-width:99999px){.ehp-cta.is-full-height-desktop.is-full-height-widescreen{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:-1){.ehp-cta.is-full-height-widescreen{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}.ehp-cta.has-preset-focus{--cta-content-alignment:start}.ehp-cta.has-preset-focus .ehp-cta__elements-container{display:flex;flex-direction:column}@media screen and (min-width:1025px){.ehp-cta.has-preset-focus .ehp-cta__elements-container{flex-direction:row;justify-content:space-between}.ehp-cta.has-preset-focus .ehp-cta__text-container{width:66.66%}.ehp-cta.has-preset-focus .ehp-cta__buttons-wrapper{justify-content:flex-end}}.ehp-cta.has-preset-storytelling,.ehp-cta.has-preset-streamline{--cta-content-alignment:center}.ehp-cta.has-preset-storytelling .ehp-cta__elements-container,.ehp-cta.has-preset-streamline .ehp-cta__elements-container{display:flex;flex-direction:column}@media screen and (max-width:767px){.ehp-cta.has-preset-focus .ehp-cta__buttons-wrapper,.ehp-cta.has-preset-showcase .ehp-cta__buttons-wrapper{flex-direction:column}}.ehp-cta.has-preset-showcase{--cta-content-alignment:start}.ehp-cta.has-preset-showcase .ehp-cta__elements-container{display:flex;flex-direction:column}@media screen and (min-width:1025px){.ehp-cta.has-preset-showcase .ehp-cta__elements-container{flex-direction:row}.ehp-cta.has-preset-showcase .ehp-cta__elements-container .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container .ehp-cta__text-container{width:50%}}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-start .ehp-cta__image-container{order:1}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-end .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-start .ehp-cta__text-container{order:2}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-end .ehp-cta__text-container{order:1}@media screen and (max-width:1024px){.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-start .ehp-cta__image-container{order:1}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-end .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-start .ehp-cta__text-container{order:2}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-end .ehp-cta__text-container{order:1}}@media screen and (max-width:767px){.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-start .ehp-cta__image-container{order:1}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-end .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-start .ehp-cta__text-container{order:2}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-end .ehp-cta__text-container{order:1}}@media screen and (min-width:1025px){.ehp-cta.has-preset-showcase .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__text-container{display:flex;flex-direction:column;justify-content:var(--cta-content-position-vertical)}}.ehp-cta a.ehp-button,.ehp-cta a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--cta-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--cta-button-primary-icon-size);--ehp-button-primary-text-color:var(--cta-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--cta-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--cta-button-primary-border-width);--ehp-button-primary-border-color:var(--cta-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--cta-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--cta-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--cta-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--cta-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--cta-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--cta-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--cta-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--cta-button-primary-border-radius-inline-start);--ehp-button-secondary-icon-spacing:var(--cta-button-secondary-icon-spacing);--ehp-button-secondary-icon-size:var(--cta-button-secondary-icon-size);--ehp-button-secondary-text-color:var(--cta-button-secondary-text-color);--ehp-button-secondary-text-color-hover:var(--cta-button-secondary-text-color-hover);--ehp-button-secondary-border-width:var(--cta-button-secondary-border-width);--ehp-button-secondary-border-color:var(--cta-button-secondary-border-color);--ehp-button-secondary-padding-block-end:var(--cta-button-secondary-padding-block-end);--ehp-button-secondary-padding-block-start:var(--cta-button-secondary-padding-block-start);--ehp-button-secondary-padding-inline-end:var(--cta-button-secondary-padding-inline-end);--ehp-button-secondary-padding-inline-start:var(--cta-button-secondary-padding-inline-start);--ehp-button-secondary-border-radius-block-end:var(--cta-button-secondary-border-radius-block-end);--ehp-button-secondary-border-radius-block-start:var(--cta-button-secondary-border-radius-block-start);--ehp-button-secondary-border-radius-inline-end:var(--cta-button-secondary-border-radius-inline-end);--ehp-button-secondary-border-radius-inline-start:var(--cta-button-secondary-border-radius-inline-start)}.ehp-cta .ehp-image{--ehp-image-height:var(--cta-image-height);--ehp-image-min-height:var(--cta-image-min-height);--ehp-image-position:var(--cta-image-position);--ehp-image-width:var(--cta-image-width);--ehp-image-border-color:var(--cta-image-border-color);--ehp-image-border-width:var(--cta-image-border-width);--ehp-image-border-radius-block-end:var(--cta-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--cta-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--cta-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--cta-image-border-radius-inline-start)}.ehp-cta__ctas-container{align-items:var(--cta-buttons-vertical-position);display:flex}.ehp-cta__buttons-wrapper{display:flex;gap:var(--cta-buttons-space-between);justify-content:var(--cta-content-alignment);width:100%}@media screen and (min-width:768px){.ehp-cta__buttons-wrapper{align-items:center;flex-direction:row}}.ehp-cta__buttons-wrapper.has-cta-width-default{flex-direction:row}.ehp-cta__buttons-wrapper.has-cta-width-stretch{align-items:flex-start;flex-direction:column}.ehp-cta__buttons-wrapper.has-cta-width-stretch .ehp-cta__button{width:100%}@media screen and (max-width:1024px){.ehp-cta__buttons-wrapper.has-cta-width-md-default{flex-direction:row}.ehp-cta__buttons-wrapper.has-cta-width-md-stretch{align-items:flex-start;flex-direction:column}.ehp-cta__buttons-wrapper.has-cta-width-md-stretch .ehp-cta__button{width:100%}}@media screen and (max-width:767px){.ehp-cta__buttons-wrapper.has-cta-width-sm-default{flex-direction:row}.ehp-cta__buttons-wrapper.has-cta-width-sm-stretch{align-items:flex-start;flex-direction:column}.ehp-cta__buttons-wrapper.has-cta-width-sm-stretch .ehp-cta__button{width:100%}}.ehp-cta__elements-container{display:flex;gap:var(--cta-elements-spacing);height:100%;max-width:var(--cta-content-width);width:100%;z-index:1}.ehp-cta__heading{color:var(--cta-heading-color);margin:0}.ehp-cta__description{color:var(--cta-description-color);margin:0}.ehp-cta__text-container{display:flex;flex-direction:column;flex-grow:var(--cta-text-container-flex-grow);gap:var(--cta-elements-spacing);text-align:var(--cta-content-alignment)}.ehp-cta__overlay{height:100%;right:0;opacity:var(--cta-overlay-opacity);position:absolute;top:0;width:100%;z-index:1}1 .ehp-cta{--cta-box-height:auto;--cta-box-full-height:100vh;--cta-elements-spacing:40px;--cta-buttons-space-between:16px;--cta-content-alignment:center;--cta-buttons-vertical-position:start;--cta-content-position-vertical:start;--cta-heading-color:#28292b;--cta-description-color:#28292b;--cta-button-primary-icon-spacing:10px;--cta-button-primary-icon-size:16px;--cta-button-primary-text-color:#fff;--cta-button-primary-text-color-hover:#7a7a7a;--cta-button-primary-border-width:0;--cta-button-primary-border-color:transparent;--cta-button-primary-border-radius-block-end:8px;--cta-button-primary-border-radius-block-start:8px;--cta-button-primary-border-radius-inline-end:8px;--cta-button-primary-border-radius-inline-start:8px;--cta-button-secondary-icon-spacing:10px;--cta-button-secondary-icon-size:16px;--cta-button-secondary-text-color:#54595f;--cta-button-secondary-text-color-hover:#54595f;--cta-button-secondary-border-width:2px;--cta-button-secondary-border-color:#54595f;--cta-box-border-color:#54595f;--cta-box-border-width:1px;--cta-text-container-flex-grow-default:0;--cta-text-container-flex-grow-end:1;--cta-text-container-flex-grow:var(--cta-text-container-flex-grow-default);display:flex;height:100%;justify-content:center;min-height:var(--cta-box-height);padding-block-end:var(--cta-box-padding-block-end);padding-block-start:var(--cta-box-padding-block-start);padding-inline-end:var(--cta-box-padding-inline-end);padding-inline-start:var(--cta-box-padding-inline-start)}.ehp-cta.has-border{border-color:var(--cta-box-border-color);border-style:solid;border-width:var(--cta-box-border-width)}.ehp-cta.has-image-stretch{--cta-image-width:100%;padding:0}.ehp-cta.has-image-stretch.has-preset-showcase .ehp-cta__elements-container{gap:0}.ehp-cta.has-image-stretch.has-preset-showcase .ehp-cta__text-container{padding-block-end:var(--cta-box-padding-block-end);padding-block-start:var(--cta-box-padding-block-start);padding-inline-end:var(--cta-box-padding-inline-end);padding-inline-start:var(--cta-box-padding-inline-start)}.ehp-cta.has-image-stretch.has-preset-storytelling .ehp-cta__elements-container{padding-block-end:var(--cta-box-padding-block-end)}.ehp-cta.has-image-stretch.has-preset-storytelling .ehp-cta__ctas-container,.ehp-cta.has-image-stretch.has-preset-storytelling .ehp-cta__text-container{padding-inline-end:var(--cta-box-padding-inline-end);padding-inline-start:var(--cta-box-padding-inline-start)}@supports(height:100dvh){.ehp-cta{--cta-box-full-height:100dvh}}@media(max-width:767px){.ehp-cta.is-full-height-mobile{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:-1)and (max-width:-1){.ehp-cta.is-full-height-mobile_extra{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:768px)and (max-width:1024px){.ehp-cta.is-full-height-tablet{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:-1)and (max-width:-1){.ehp-cta.is-full-height-laptop,.ehp-cta.is-full-height-tablet_extra{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:1025px){.ehp-cta.is-full-height-desktop{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:1025px)and (max-width:99999px){.ehp-cta.is-full-height-desktop.is-full-height-widescreen{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:-1){.ehp-cta.is-full-height-widescreen{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}.ehp-cta.has-preset-focus{--cta-content-alignment:start}.ehp-cta.has-preset-focus .ehp-cta__elements-container{display:flex;flex-direction:column}@media screen and (min-width:1025px){.ehp-cta.has-preset-focus .ehp-cta__elements-container{flex-direction:row;justify-content:space-between}.ehp-cta.has-preset-focus .ehp-cta__text-container{width:66.66%}.ehp-cta.has-preset-focus .ehp-cta__buttons-wrapper{justify-content:flex-end}}.ehp-cta.has-preset-storytelling,.ehp-cta.has-preset-streamline{--cta-content-alignment:center}.ehp-cta.has-preset-storytelling .ehp-cta__elements-container,.ehp-cta.has-preset-streamline .ehp-cta__elements-container{display:flex;flex-direction:column}@media screen and (max-width:767px){.ehp-cta.has-preset-focus .ehp-cta__buttons-wrapper,.ehp-cta.has-preset-showcase .ehp-cta__buttons-wrapper{flex-direction:column}}.ehp-cta.has-preset-showcase{--cta-content-alignment:start}.ehp-cta.has-preset-showcase .ehp-cta__elements-container{display:flex;flex-direction:column}@media screen and (min-width:1025px){.ehp-cta.has-preset-showcase .ehp-cta__elements-container{flex-direction:row}.ehp-cta.has-preset-showcase .ehp-cta__elements-container .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container .ehp-cta__text-container{width:50%}}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-start .ehp-cta__image-container{order:1}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-end .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-start .ehp-cta__text-container{order:2}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-end .ehp-cta__text-container{order:1}@media screen and (max-width:1024px){.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-start .ehp-cta__image-container{order:1}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-end .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-start .ehp-cta__text-container{order:2}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-end .ehp-cta__text-container{order:1}}@media screen and (max-width:767px){.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-start .ehp-cta__image-container{order:1}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-end .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-start .ehp-cta__text-container{order:2}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-end .ehp-cta__text-container{order:1}}@media screen and (min-width:1025px){.ehp-cta.has-preset-showcase .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__text-container{display:flex;flex-direction:column;justify-content:var(--cta-content-position-vertical)}}.ehp-cta.has-preset-storytelling .ehp-cta__elements-container{max-width:unset}.ehp-cta.has-preset-storytelling .ehp-cta__ctas-container,.ehp-cta.has-preset-storytelling .ehp-cta__text-container{margin:0 auto;max-width:var(--cta-content-width)}.ehp-cta a.ehp-button,.ehp-cta a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--cta-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--cta-button-primary-icon-size);--ehp-button-primary-text-color:var(--cta-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--cta-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--cta-button-primary-border-width);--ehp-button-primary-border-color:var(--cta-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--cta-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--cta-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--cta-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--cta-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--cta-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--cta-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--cta-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--cta-button-primary-border-radius-inline-start);--ehp-button-secondary-icon-spacing:var(--cta-button-secondary-icon-spacing);--ehp-button-secondary-icon-size:var(--cta-button-secondary-icon-size);--ehp-button-secondary-text-color:var(--cta-button-secondary-text-color);--ehp-button-secondary-text-color-hover:var(--cta-button-secondary-text-color-hover);--ehp-button-secondary-border-width:var(--cta-button-secondary-border-width);--ehp-button-secondary-border-color:var(--cta-button-secondary-border-color);--ehp-button-secondary-padding-block-end:var(--cta-button-secondary-padding-block-end);--ehp-button-secondary-padding-block-start:var(--cta-button-secondary-padding-block-start);--ehp-button-secondary-padding-inline-end:var(--cta-button-secondary-padding-inline-end);--ehp-button-secondary-padding-inline-start:var(--cta-button-secondary-padding-inline-start);--ehp-button-secondary-border-radius-block-end:var(--cta-button-secondary-border-radius-block-end);--ehp-button-secondary-border-radius-block-start:var(--cta-button-secondary-border-radius-block-start);--ehp-button-secondary-border-radius-inline-end:var(--cta-button-secondary-border-radius-inline-end);--ehp-button-secondary-border-radius-inline-start:var(--cta-button-secondary-border-radius-inline-start)}.ehp-cta .ehp-image{--ehp-image-height:var(--cta-image-height);--ehp-image-min-height:var(--cta-image-min-height);--ehp-image-position:var(--cta-image-position);--ehp-image-width:var(--cta-image-width);--ehp-image-border-color:var(--cta-image-border-color);--ehp-image-border-width:var(--cta-image-border-width);--ehp-image-border-radius-block-end:var(--cta-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--cta-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--cta-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--cta-image-border-radius-inline-start)}.ehp-cta.has-shape-custom.shape-type-box{--ehp-shapes-border-radius-block-end:var(--cta-box-border-radius-block-end,var(--cta-box-border-radius-custom-block-end));--ehp-shapes-border-radius-block-start:var(--cta-box-border-radius-block-start,var(--cta-box-border-radius-custom-block-start));--ehp-shapes-border-radius-inline-end:var(--cta-box-border-radius-inline-end,var(--cta-box-border-radius-custom-inline-end));--ehp-shapes-border-radius-inline-start:var(--cta-box-border-radius-inline-start,var(--cta-box-border-radius-custom-inline-start))}.ehp-cta.has-shape-custom.shape-type-image{--ehp-shapes-border-radius-block-end:var(--cta-image-border-radius-block-end,var(--cta-image-border-radius-custom-block-end));--ehp-shapes-border-radius-block-start:var(--cta-image-border-radius-block-start,var(--cta-image-border-radius-custom-block-start));--ehp-shapes-border-radius-inline-end:var(--cta-image-border-radius-inline-end,var(--cta-image-border-radius-custom-inline-end));--ehp-shapes-border-radius-inline-start:var(--cta-image-border-radius-inline-start,var(--cta-image-border-radius-custom-inline-start))}.ehp-cta__ctas-container{align-items:var(--cta-buttons-vertical-position);display:flex}.ehp-cta__buttons-wrapper{display:flex;gap:var(--cta-buttons-space-between);justify-content:var(--cta-content-alignment);width:100%}@media screen and (min-width:768px){.ehp-cta__buttons-wrapper{align-items:center;flex-direction:row}}.ehp-cta__buttons-wrapper.has-cta-width-default{flex-direction:row}.ehp-cta__buttons-wrapper.has-cta-width-stretch{align-items:flex-start;flex-direction:column}.ehp-cta__buttons-wrapper.has-cta-width-stretch .ehp-cta__button{width:100%}@media screen and (max-width:1024px){.ehp-cta__buttons-wrapper.has-cta-width-md-default{flex-direction:row}.ehp-cta__buttons-wrapper.has-cta-width-md-stretch{align-items:flex-start;flex-direction:column}.ehp-cta__buttons-wrapper.has-cta-width-md-stretch .ehp-cta__button{width:100%}}@media screen and (max-width:767px){.ehp-cta__buttons-wrapper.has-cta-width-sm-default{flex-direction:row}.ehp-cta__buttons-wrapper.has-cta-width-sm-stretch{align-items:flex-start;flex-direction:column}.ehp-cta__buttons-wrapper.has-cta-width-sm-stretch .ehp-cta__button{width:100%}}.ehp-cta__elements-container{display:flex;gap:var(--cta-elements-spacing);height:100%;max-width:var(--cta-content-width);width:100%;z-index:1}.ehp-cta__heading{color:var(--cta-heading-color);margin:0}.ehp-cta__description{color:var(--cta-description-color);margin:0}.ehp-cta__text-container{display:flex;flex-direction:column;flex-grow:var(--cta-text-container-flex-grow);gap:var(--cta-elements-spacing);text-align:var(--cta-content-alignment)}.ehp-cta__overlay{height:100%;right:0;opacity:var(--cta-overlay-opacity);position:absolute;top:0;width:100%;z-index:1} -
hello-plus/trunk/build/css/helloplus-cta.asset.php
r3241372 r3250227 1 <?php return array('dependencies' => array(), 'version' => ' 4b59e85b1a1e4a7278af');1 <?php return array('dependencies' => array(), 'version' => '2b15bec530ed63a34de1'); -
hello-plus/trunk/build/css/helloplus-cta.css
r3241372 r3250227 1 .ehp-cta{--cta-box-height:auto;--cta-box-full-height:100vh;--cta-elements-spacing:40px;--cta-buttons-space-between:16px;--cta-content-alignment:center;--cta-buttons-vertical-position:start;--cta-content-position-vertical:start;--cta-heading-color:#28292b;--cta-description-color:#28292b;--cta-button-primary-icon-spacing:10px;--cta-button-primary-icon-size:16px;--cta-button-primary-text-color:#fff;--cta-button-primary-text-color-hover:#7a7a7a;--cta-button-primary-border-width:0;--cta-button-primary-border-color:transparent;--cta-button-primary-border-radius-block-end:8px;--cta-button-primary-border-radius-block-start:8px;--cta-button-primary-border-radius-inline-end:8px;--cta-button-primary-border-radius-inline-start:8px;--cta-button-secondary-icon-spacing:10px;--cta-button-secondary-icon-size:16px;--cta-button-secondary-text-color:#54595f;--cta-button-secondary-text-color-hover:#54595f;--cta-button-secondary-border-width:2px;--cta-button-secondary-border-color:#54595f;--cta-b utton-secondary-border-radius-block-end:8px;--cta-button-secondary-border-radius-block-start:8px;--cta-button-secondary-border-radius-inline-end:8px;--cta-button-secondary-border-radius-inline-start:8px;--cta-box-border-color:#54595f;--cta-box-border-width:1px;--cta-border-radius-default:8px;--cta-border-radius-sharp:0;--cta-border-radius-rounded:12px;--cta-border-radius-round:32px;--cta-border-radius-oval:50%;--cta-box-border-radius-custom-block-end:0;--cta-box-border-radius-custom-block-start:0;--cta-box-border-radius-custom-inline-end:0;--cta-box-border-radius-custom-inline-start:0;--cta-text-container-flex-grow-default:0;--cta-text-container-flex-grow-end:1;--cta-text-container-flex-grow:var(--cta-text-container-flex-grow-default);display:flex;height:100%;justify-content:center;min-height:var(--cta-box-height);padding-block-end:var(--cta-box-padding-block-end);padding-block-start:var(--cta-box-padding-block-start);padding-inline-end:var(--cta-box-padding-inline-end);padding-inline-start:var(--cta-box-padding-inline-start)}.ehp-cta .has-shape-sharp,.ehp-cta.has-shape-sharp{border-radius:var(--cta-border-radius-sharp)}.ehp-cta .has-shape-rounded,.ehp-cta.has-shape-rounded{border-radius:var(--cta-border-radius-rounded)}.ehp-cta .has-shape-round,.ehp-cta.has-shape-round{border-radius:var(--cta-border-radius-round)}.ehp-cta .has-shape-default,.ehp-cta.has-shape-default{border-radius:var(--cta-border-radius-default)}.ehp-cta .has-shape-oval,.ehp-cta.has-shape-oval{border-radius:var(--cta-border-radius-oval)}.ehp-cta .has-shape-custom,.ehp-cta.has-shape-custom{border-bottom-left-radius:var(--cta-border-radius-inline-start);border-bottom-right-radius:var(--cta-border-radius-inline-end);border-top-left-radius:var(--cta-border-radius-block-end);border-top-right-radius:var(--cta-border-radius-block-start)}@media screen and (max-width:1024px){.ehp-cta .has-shape-md-sharp,.ehp-cta.has-shape-md-sharp{border-radius:var(--cta-border-radius-sharp)}.ehp-cta .has-shape-md-rounded,.ehp-cta.has-shape-md-rounded{border-radius:var(--cta-border-radius-rounded)}.ehp-cta .has-shape-md-round,.ehp-cta.has-shape-md-round{border-radius:var(--cta-border-radius-round)}.ehp-cta .has-shape-md-default,.ehp-cta.has-shape-md-default{border-radius:var(--cta-border-radius-default)}.ehp-cta .has-shape-md-oval,.ehp-cta.has-shape-md-oval{border-radius:var(--cta-border-radius-oval)}.ehp-cta .has-shape-md-custom,.ehp-cta.has-shape-md-custom{border-bottom-left-radius:var(--cta-border-radius-inline-start);border-bottom-right-radius:var(--cta-border-radius-inline-end);border-top-left-radius:var(--cta-border-radius-block-end);border-top-right-radius:var(--cta-border-radius-block-start)}}@media screen and (max-width:767px){.ehp-cta .has-shape-sm-sharp,.ehp-cta.has-shape-sm-sharp{border-radius:var(--cta-border-radius-sharp)}.ehp-cta .has-shape-sm-rounded,.ehp-cta.has-shape-sm-rounded{border-radius:var(--cta-border-radius-rounded)}.ehp-cta .has-shape-sm-round,.ehp-cta.has-shape-sm-round{border-radius:var(--cta-border-radius-round)}.ehp-cta .has-shape-sm-default,.ehp-cta.has-shape-sm-default{border-radius:var(--cta-border-radius-default)}.ehp-cta .has-shape-sm-oval,.ehp-cta.has-shape-sm-oval{border-radius:var(--cta-border-radius-oval)}.ehp-cta .has-shape-sm-custom,.ehp-cta.has-shape-sm-custom{border-bottom-left-radius:var(--cta-border-radius-inline-start);border-bottom-right-radius:var(--cta-border-radius-inline-end);border-top-left-radius:var(--cta-border-radius-block-end);border-top-right-radius:var(--cta-border-radius-block-start)}}.ehp-cta.has-shape-rounded{--cta-border-shape-rounded:52px}.ehp-cta.has-shape-custom{--cta-border-radius-block-end:var(--cta-box-border-radius-custom-block-end);--cta-border-radius-block-start:var(--cta-box-border-radius-custom-block-start);--cta-border-radius-inline-end:var(--cta-box-border-radius-custom-inline-end);--cta-border-radius-inline-start:var(--cta-box-border-radius-custom-inline-start)}@media screen and (max-width:1024px){.ehp-cta.has-shape-md-rounded{--cta-border-shape-rounded:52px}.ehp-cta.has-shape-md-custom{--cta-border-radius-block-end:var(--cta-box-border-radius-custom-block-end);--cta-border-radius-block-start:var(--cta-box-border-radius-custom-block-start);--cta-border-radius-inline-end:var(--cta-box-border-radius-custom-inline-end);--cta-border-radius-inline-start:var(--cta-box-border-radius-custom-inline-start)}}@media screen and (max-width:767px){.ehp-cta.has-shape-sm-rounded{--cta-border-shape-rounded:52px}.ehp-cta.has-shape-sm-custom{--cta-border-radius-block-end:var(--cta-box-border-radius-custom-block-end);--cta-border-radius-block-start:var(--cta-box-border-radius-custom-block-start);--cta-border-radius-inline-end:var(--cta-box-border-radius-custom-inline-end);--cta-border-radius-inline-start:var(--cta-box-border-radius-custom-inline-start)}}.ehp-cta.has-border{border-color:var(--cta-box-border-color);border-style:solid;border-width:var(--cta-box-border-width)}.ehp-cta.has-image-stretch{--cta-image-width:100%;padding:0}.ehp-cta.has-image-stretch.has-preset-showcase .ehp-cta__elements-container{gap:0}.ehp-cta.has-image-stretch.has-preset-showcase .ehp-cta__text-container{padding-block-end:var(--cta-box-padding-block-end);padding-block-start:var(--cta-box-padding-block-start);padding-inline-end:var(--cta-box-padding-inline-end);padding-inline-start:var(--cta-box-padding-inline-start)}.ehp-cta.has-image-stretch.has-preset-storytelling .ehp-cta__elements-container{padding-block-end:var(--cta-box-padding-block-end)}.ehp-cta.has-image-stretch.has-preset-storytelling .ehp-cta__ctas-container,.ehp-cta.has-image-stretch.has-preset-storytelling .ehp-cta__text-container{padding-inline-end:var(--cta-box-padding-inline-end);padding-inline-start:var(--cta-box-padding-inline-start)}@supports(height:100dvh){.ehp-cta{--cta-box-full-height:100dvh}}@media(max-width:767px){.ehp-cta.is-full-height-mobile{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:-1)and (max-width:-1){.ehp-cta.is-full-height-mobile_extra{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:768px)and (max-width:1024px){.ehp-cta.is-full-height-tablet{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:-1)and (max-width:-1){.ehp-cta.is-full-height-laptop,.ehp-cta.is-full-height-tablet_extra{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:1025px){.ehp-cta.is-full-height-desktop{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:1025px)and (max-width:99999px){.ehp-cta.is-full-height-desktop.is-full-height-widescreen{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:-1){.ehp-cta.is-full-height-widescreen{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}.ehp-cta.has-preset-focus{--cta-content-alignment:start}.ehp-cta.has-preset-focus .ehp-cta__elements-container{display:flex;flex-direction:column}@media screen and (min-width:1025px){.ehp-cta.has-preset-focus .ehp-cta__elements-container{flex-direction:row;justify-content:space-between}.ehp-cta.has-preset-focus .ehp-cta__text-container{width:66.66%}.ehp-cta.has-preset-focus .ehp-cta__buttons-wrapper{justify-content:flex-end}}.ehp-cta.has-preset-storytelling,.ehp-cta.has-preset-streamline{--cta-content-alignment:center}.ehp-cta.has-preset-storytelling .ehp-cta__elements-container,.ehp-cta.has-preset-streamline .ehp-cta__elements-container{display:flex;flex-direction:column}@media screen and (max-width:767px){.ehp-cta.has-preset-focus .ehp-cta__buttons-wrapper,.ehp-cta.has-preset-showcase .ehp-cta__buttons-wrapper{flex-direction:column}}.ehp-cta.has-preset-showcase{--cta-content-alignment:start}.ehp-cta.has-preset-showcase .ehp-cta__elements-container{display:flex;flex-direction:column}@media screen and (min-width:1025px){.ehp-cta.has-preset-showcase .ehp-cta__elements-container{flex-direction:row}.ehp-cta.has-preset-showcase .ehp-cta__elements-container .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container .ehp-cta__text-container{width:50%}}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-start .ehp-cta__image-container{order:1}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-end .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-start .ehp-cta__text-container{order:2}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-end .ehp-cta__text-container{order:1}@media screen and (max-width:1024px){.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-start .ehp-cta__image-container{order:1}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-end .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-start .ehp-cta__text-container{order:2}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-end .ehp-cta__text-container{order:1}}@media screen and (max-width:767px){.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-start .ehp-cta__image-container{order:1}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-end .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-start .ehp-cta__text-container{order:2}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-end .ehp-cta__text-container{order:1}}@media screen and (min-width:1025px){.ehp-cta.has-preset-showcase .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__text-container{display:flex;flex-direction:column;justify-content:var(--cta-content-position-vertical)}}.ehp-cta a.ehp-button,.ehp-cta a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--cta-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--cta-button-primary-icon-size);--ehp-button-primary-text-color:var(--cta-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--cta-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--cta-button-primary-border-width);--ehp-button-primary-border-color:var(--cta-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--cta-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--cta-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--cta-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--cta-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--cta-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--cta-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--cta-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--cta-button-primary-border-radius-inline-start);--ehp-button-secondary-icon-spacing:var(--cta-button-secondary-icon-spacing);--ehp-button-secondary-icon-size:var(--cta-button-secondary-icon-size);--ehp-button-secondary-text-color:var(--cta-button-secondary-text-color);--ehp-button-secondary-text-color-hover:var(--cta-button-secondary-text-color-hover);--ehp-button-secondary-border-width:var(--cta-button-secondary-border-width);--ehp-button-secondary-border-color:var(--cta-button-secondary-border-color);--ehp-button-secondary-padding-block-end:var(--cta-button-secondary-padding-block-end);--ehp-button-secondary-padding-block-start:var(--cta-button-secondary-padding-block-start);--ehp-button-secondary-padding-inline-end:var(--cta-button-secondary-padding-inline-end);--ehp-button-secondary-padding-inline-start:var(--cta-button-secondary-padding-inline-start);--ehp-button-secondary-border-radius-block-end:var(--cta-button-secondary-border-radius-block-end);--ehp-button-secondary-border-radius-block-start:var(--cta-button-secondary-border-radius-block-start);--ehp-button-secondary-border-radius-inline-end:var(--cta-button-secondary-border-radius-inline-end);--ehp-button-secondary-border-radius-inline-start:var(--cta-button-secondary-border-radius-inline-start)}.ehp-cta .ehp-image{--ehp-image-height:var(--cta-image-height);--ehp-image-min-height:var(--cta-image-min-height);--ehp-image-position:var(--cta-image-position);--ehp-image-width:var(--cta-image-width);--ehp-image-border-color:var(--cta-image-border-color);--ehp-image-border-width:var(--cta-image-border-width);--ehp-image-border-radius-block-end:var(--cta-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--cta-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--cta-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--cta-image-border-radius-inline-start)}.ehp-cta__ctas-container{align-items:var(--cta-buttons-vertical-position);display:flex}.ehp-cta__buttons-wrapper{display:flex;gap:var(--cta-buttons-space-between);justify-content:var(--cta-content-alignment);width:100%}@media screen and (min-width:768px){.ehp-cta__buttons-wrapper{align-items:center;flex-direction:row}}.ehp-cta__buttons-wrapper.has-cta-width-default{flex-direction:row}.ehp-cta__buttons-wrapper.has-cta-width-stretch{align-items:flex-start;flex-direction:column}.ehp-cta__buttons-wrapper.has-cta-width-stretch .ehp-cta__button{width:100%}@media screen and (max-width:1024px){.ehp-cta__buttons-wrapper.has-cta-width-md-default{flex-direction:row}.ehp-cta__buttons-wrapper.has-cta-width-md-stretch{align-items:flex-start;flex-direction:column}.ehp-cta__buttons-wrapper.has-cta-width-md-stretch .ehp-cta__button{width:100%}}@media screen and (max-width:767px){.ehp-cta__buttons-wrapper.has-cta-width-sm-default{flex-direction:row}.ehp-cta__buttons-wrapper.has-cta-width-sm-stretch{align-items:flex-start;flex-direction:column}.ehp-cta__buttons-wrapper.has-cta-width-sm-stretch .ehp-cta__button{width:100%}}.ehp-cta__elements-container{display:flex;gap:var(--cta-elements-spacing);height:100%;max-width:var(--cta-content-width);width:100%;z-index:1}.ehp-cta__heading{color:var(--cta-heading-color);margin:0}.ehp-cta__description{color:var(--cta-description-color);margin:0}.ehp-cta__text-container{display:flex;flex-direction:column;flex-grow:var(--cta-text-container-flex-grow);gap:var(--cta-elements-spacing);text-align:var(--cta-content-alignment)}.ehp-cta__overlay{height:100%;left:0;opacity:var(--cta-overlay-opacity);position:absolute;top:0;width:100%;z-index:1}1 .ehp-cta{--cta-box-height:auto;--cta-box-full-height:100vh;--cta-elements-spacing:40px;--cta-buttons-space-between:16px;--cta-content-alignment:center;--cta-buttons-vertical-position:start;--cta-content-position-vertical:start;--cta-heading-color:#28292b;--cta-description-color:#28292b;--cta-button-primary-icon-spacing:10px;--cta-button-primary-icon-size:16px;--cta-button-primary-text-color:#fff;--cta-button-primary-text-color-hover:#7a7a7a;--cta-button-primary-border-width:0;--cta-button-primary-border-color:transparent;--cta-button-primary-border-radius-block-end:8px;--cta-button-primary-border-radius-block-start:8px;--cta-button-primary-border-radius-inline-end:8px;--cta-button-primary-border-radius-inline-start:8px;--cta-button-secondary-icon-spacing:10px;--cta-button-secondary-icon-size:16px;--cta-button-secondary-text-color:#54595f;--cta-button-secondary-text-color-hover:#54595f;--cta-button-secondary-border-width:2px;--cta-button-secondary-border-color:#54595f;--cta-box-border-color:#54595f;--cta-box-border-width:1px;--cta-text-container-flex-grow-default:0;--cta-text-container-flex-grow-end:1;--cta-text-container-flex-grow:var(--cta-text-container-flex-grow-default);display:flex;height:100%;justify-content:center;min-height:var(--cta-box-height);padding-block-end:var(--cta-box-padding-block-end);padding-block-start:var(--cta-box-padding-block-start);padding-inline-end:var(--cta-box-padding-inline-end);padding-inline-start:var(--cta-box-padding-inline-start)}.ehp-cta.has-border{border-color:var(--cta-box-border-color);border-style:solid;border-width:var(--cta-box-border-width)}.ehp-cta.has-image-stretch{--cta-image-width:100%;padding:0}.ehp-cta.has-image-stretch.has-preset-showcase .ehp-cta__elements-container{gap:0}.ehp-cta.has-image-stretch.has-preset-showcase .ehp-cta__text-container{padding-block-end:var(--cta-box-padding-block-end);padding-block-start:var(--cta-box-padding-block-start);padding-inline-end:var(--cta-box-padding-inline-end);padding-inline-start:var(--cta-box-padding-inline-start)}.ehp-cta.has-image-stretch.has-preset-storytelling .ehp-cta__elements-container{padding-block-end:var(--cta-box-padding-block-end)}.ehp-cta.has-image-stretch.has-preset-storytelling .ehp-cta__ctas-container,.ehp-cta.has-image-stretch.has-preset-storytelling .ehp-cta__text-container{padding-inline-end:var(--cta-box-padding-inline-end);padding-inline-start:var(--cta-box-padding-inline-start)}@supports(height:100dvh){.ehp-cta{--cta-box-full-height:100dvh}}@media(max-width:767px){.ehp-cta.is-full-height-mobile{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:-1)and (max-width:-1){.ehp-cta.is-full-height-mobile_extra{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:768px)and (max-width:1024px){.ehp-cta.is-full-height-tablet{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:-1)and (max-width:-1){.ehp-cta.is-full-height-laptop,.ehp-cta.is-full-height-tablet_extra{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:1025px){.ehp-cta.is-full-height-desktop{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:1025px)and (max-width:99999px){.ehp-cta.is-full-height-desktop.is-full-height-widescreen{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}@media(min-width:-1){.ehp-cta.is-full-height-widescreen{--cta-box-height:var(--cta-box-full-height,100vh);align-items:center}}.ehp-cta.has-preset-focus{--cta-content-alignment:start}.ehp-cta.has-preset-focus .ehp-cta__elements-container{display:flex;flex-direction:column}@media screen and (min-width:1025px){.ehp-cta.has-preset-focus .ehp-cta__elements-container{flex-direction:row;justify-content:space-between}.ehp-cta.has-preset-focus .ehp-cta__text-container{width:66.66%}.ehp-cta.has-preset-focus .ehp-cta__buttons-wrapper{justify-content:flex-end}}.ehp-cta.has-preset-storytelling,.ehp-cta.has-preset-streamline{--cta-content-alignment:center}.ehp-cta.has-preset-storytelling .ehp-cta__elements-container,.ehp-cta.has-preset-streamline .ehp-cta__elements-container{display:flex;flex-direction:column}@media screen and (max-width:767px){.ehp-cta.has-preset-focus .ehp-cta__buttons-wrapper,.ehp-cta.has-preset-showcase .ehp-cta__buttons-wrapper{flex-direction:column}}.ehp-cta.has-preset-showcase{--cta-content-alignment:start}.ehp-cta.has-preset-showcase .ehp-cta__elements-container{display:flex;flex-direction:column}@media screen and (min-width:1025px){.ehp-cta.has-preset-showcase .ehp-cta__elements-container{flex-direction:row}.ehp-cta.has-preset-showcase .ehp-cta__elements-container .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container .ehp-cta__text-container{width:50%}}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-start .ehp-cta__image-container{order:1}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-end .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-start .ehp-cta__text-container{order:2}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-end .ehp-cta__text-container{order:1}@media screen and (max-width:1024px){.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-start .ehp-cta__image-container{order:1}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-end .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-start .ehp-cta__text-container{order:2}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-md-end .ehp-cta__text-container{order:1}}@media screen and (max-width:767px){.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-start .ehp-cta__image-container{order:1}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-end .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-start .ehp-cta__text-container{order:2}.ehp-cta.has-preset-showcase .ehp-cta__elements-container.has-image-position-sm-end .ehp-cta__text-container{order:1}}@media screen and (min-width:1025px){.ehp-cta.has-preset-showcase .ehp-cta__image-container,.ehp-cta.has-preset-showcase .ehp-cta__text-container{display:flex;flex-direction:column;justify-content:var(--cta-content-position-vertical)}}.ehp-cta.has-preset-storytelling .ehp-cta__elements-container{max-width:unset}.ehp-cta.has-preset-storytelling .ehp-cta__ctas-container,.ehp-cta.has-preset-storytelling .ehp-cta__text-container{margin:0 auto;max-width:var(--cta-content-width)}.ehp-cta a.ehp-button,.ehp-cta a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--cta-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--cta-button-primary-icon-size);--ehp-button-primary-text-color:var(--cta-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--cta-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--cta-button-primary-border-width);--ehp-button-primary-border-color:var(--cta-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--cta-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--cta-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--cta-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--cta-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--cta-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--cta-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--cta-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--cta-button-primary-border-radius-inline-start);--ehp-button-secondary-icon-spacing:var(--cta-button-secondary-icon-spacing);--ehp-button-secondary-icon-size:var(--cta-button-secondary-icon-size);--ehp-button-secondary-text-color:var(--cta-button-secondary-text-color);--ehp-button-secondary-text-color-hover:var(--cta-button-secondary-text-color-hover);--ehp-button-secondary-border-width:var(--cta-button-secondary-border-width);--ehp-button-secondary-border-color:var(--cta-button-secondary-border-color);--ehp-button-secondary-padding-block-end:var(--cta-button-secondary-padding-block-end);--ehp-button-secondary-padding-block-start:var(--cta-button-secondary-padding-block-start);--ehp-button-secondary-padding-inline-end:var(--cta-button-secondary-padding-inline-end);--ehp-button-secondary-padding-inline-start:var(--cta-button-secondary-padding-inline-start);--ehp-button-secondary-border-radius-block-end:var(--cta-button-secondary-border-radius-block-end);--ehp-button-secondary-border-radius-block-start:var(--cta-button-secondary-border-radius-block-start);--ehp-button-secondary-border-radius-inline-end:var(--cta-button-secondary-border-radius-inline-end);--ehp-button-secondary-border-radius-inline-start:var(--cta-button-secondary-border-radius-inline-start)}.ehp-cta .ehp-image{--ehp-image-height:var(--cta-image-height);--ehp-image-min-height:var(--cta-image-min-height);--ehp-image-position:var(--cta-image-position);--ehp-image-width:var(--cta-image-width);--ehp-image-border-color:var(--cta-image-border-color);--ehp-image-border-width:var(--cta-image-border-width);--ehp-image-border-radius-block-end:var(--cta-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--cta-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--cta-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--cta-image-border-radius-inline-start)}.ehp-cta.has-shape-custom.shape-type-box{--ehp-shapes-border-radius-block-end:var(--cta-box-border-radius-block-end,var(--cta-box-border-radius-custom-block-end));--ehp-shapes-border-radius-block-start:var(--cta-box-border-radius-block-start,var(--cta-box-border-radius-custom-block-start));--ehp-shapes-border-radius-inline-end:var(--cta-box-border-radius-inline-end,var(--cta-box-border-radius-custom-inline-end));--ehp-shapes-border-radius-inline-start:var(--cta-box-border-radius-inline-start,var(--cta-box-border-radius-custom-inline-start))}.ehp-cta.has-shape-custom.shape-type-image{--ehp-shapes-border-radius-block-end:var(--cta-image-border-radius-block-end,var(--cta-image-border-radius-custom-block-end));--ehp-shapes-border-radius-block-start:var(--cta-image-border-radius-block-start,var(--cta-image-border-radius-custom-block-start));--ehp-shapes-border-radius-inline-end:var(--cta-image-border-radius-inline-end,var(--cta-image-border-radius-custom-inline-end));--ehp-shapes-border-radius-inline-start:var(--cta-image-border-radius-inline-start,var(--cta-image-border-radius-custom-inline-start))}.ehp-cta__ctas-container{align-items:var(--cta-buttons-vertical-position);display:flex}.ehp-cta__buttons-wrapper{display:flex;gap:var(--cta-buttons-space-between);justify-content:var(--cta-content-alignment);width:100%}@media screen and (min-width:768px){.ehp-cta__buttons-wrapper{align-items:center;flex-direction:row}}.ehp-cta__buttons-wrapper.has-cta-width-default{flex-direction:row}.ehp-cta__buttons-wrapper.has-cta-width-stretch{align-items:flex-start;flex-direction:column}.ehp-cta__buttons-wrapper.has-cta-width-stretch .ehp-cta__button{width:100%}@media screen and (max-width:1024px){.ehp-cta__buttons-wrapper.has-cta-width-md-default{flex-direction:row}.ehp-cta__buttons-wrapper.has-cta-width-md-stretch{align-items:flex-start;flex-direction:column}.ehp-cta__buttons-wrapper.has-cta-width-md-stretch .ehp-cta__button{width:100%}}@media screen and (max-width:767px){.ehp-cta__buttons-wrapper.has-cta-width-sm-default{flex-direction:row}.ehp-cta__buttons-wrapper.has-cta-width-sm-stretch{align-items:flex-start;flex-direction:column}.ehp-cta__buttons-wrapper.has-cta-width-sm-stretch .ehp-cta__button{width:100%}}.ehp-cta__elements-container{display:flex;gap:var(--cta-elements-spacing);height:100%;max-width:var(--cta-content-width);width:100%;z-index:1}.ehp-cta__heading{color:var(--cta-heading-color);margin:0}.ehp-cta__description{color:var(--cta-description-color);margin:0}.ehp-cta__text-container{display:flex;flex-direction:column;flex-grow:var(--cta-text-container-flex-grow);gap:var(--cta-elements-spacing);text-align:var(--cta-content-alignment)}.ehp-cta__overlay{height:100%;left:0;opacity:var(--cta-overlay-opacity);position:absolute;top:0;width:100%;z-index:1} -
hello-plus/trunk/build/css/helloplus-flex-hero-rtl.css
r3241372 r3250227 1 .ehp-flex-hero{--flex-hero-content-alignment-showcase:center;--flex-hero-content-alignment-storytelling:start;--flex-hero-content-position:flex-start;--flex-hero-content-width:648px;--flex-hero-buttons-space-between:16px;--flex-hero-gap:60px;--flex-hero-element-spacing:40px;--flex-hero-box-height:auto;--flex-hero-box-full-height:100vh;--flex-hero-intro-color:#7a7a7a;--flex-hero-heading-color:#54595f;--flex-hero-subheading-color:#54595f;--flex-hero-button-primary-icon-spacing:10px;--flex-hero-button-primary-icon-size:16px;--flex-hero-button-primary-text-color:#fff;--flex-hero-button-primary-text-color-hover:#7a7a7a;--flex-hero-button-primary-border-width:0;--flex-hero-button-primary-border-color:transparent;--flex-hero-button-primary-border-radius-block-end:8px;--flex-hero-button-primary-border-radius-block-start:8px;--flex-hero-button-primary-border-radius-inline-end:8px;--flex-hero-button-primary-border-radius-inline-start:8px;--flex-hero-button-secondary-icon-spacing:10px;--flex-hero-button-secondary-icon-size:16px;--flex-hero-button-secondary-text-color:#54595f;--flex-hero-button-secondary-text-color-hover:#54595f;--flex-hero-button-secondary-border-width:2px;--flex-hero-button-secondary-border-color:#54595f;--flex-hero-b utton-secondary-border-radius-block-end:8px;--flex-hero-button-secondary-border-radius-block-start:8px;--flex-hero-button-secondary-border-radius-inline-end:8px;--flex-hero-button-secondary-border-radius-inline-start:8px;--flex-hero-box-border-color:#54595f;--flex-hero-box-border-width:1px;--flex-hero-border-radius-default:8px;--flex-hero-border-radius-sharp:0;--flex-hero-border-radius-rounded:12px;--flex-hero-border-radius-round:32px;--flex-hero-border-radius-oval:50%;--flex-hero-box-border-radius-custom-block-end:0;--flex-hero-box-border-radius-custom-block-start:0;--flex-hero-box-border-radius-custom-inline-end:0;--flex-hero-box-border-radius-custom-inline-start:0;display:flex;flex-direction:column;gap:var(--flex-hero-gap);min-height:var(--flex-hero-box-height);overflow:hidden;padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start);position:relative}@supports(height:100dvh){.ehp-flex-hero{--flex-hero-box-full-height:100dvh}}@media(max-width:767px){.ehp-flex-hero.is-full-height-mobile{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:-1)and (max-width:-1){.ehp-flex-hero.is-full-height-mobile_extra{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:768px)and (max-width:1024px){.ehp-flex-hero.is-full-height-tablet{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:-1)and (max-width:-1){.ehp-flex-hero.is-full-height-laptop,.ehp-flex-hero.is-full-height-tablet_extra{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:1025px){.ehp-flex-hero.is-full-height-desktop{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:1025px)and (max-width:99999px){.ehp-flex-hero.is-full-height-desktop.is-full-height-widescreen{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:-1){.ehp-flex-hero.is-full-height-widescreen{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}.ehp-flex-hero .has-shape-sharp,.ehp-flex-hero.has-shape-sharp{border-radius:var(--flex-hero-border-radius-sharp)}.ehp-flex-hero .has-shape-rounded,.ehp-flex-hero.has-shape-rounded{border-radius:var(--flex-hero-border-radius-rounded)}.ehp-flex-hero .has-shape-round,.ehp-flex-hero.has-shape-round{border-radius:var(--flex-hero-border-radius-round)}.ehp-flex-hero .has-shape-default,.ehp-flex-hero.has-shape-default{border-radius:var(--flex-hero-border-radius-default)}.ehp-flex-hero .has-shape-oval,.ehp-flex-hero.has-shape-oval{border-radius:var(--flex-hero-border-radius-oval)}.ehp-flex-hero .has-shape-custom,.ehp-flex-hero.has-shape-custom{border-bottom-right-radius:var(--flex-hero-border-radius-inline-start);border-bottom-left-radius:var(--flex-hero-border-radius-inline-end);border-top-right-radius:var(--flex-hero-border-radius-block-end);border-top-left-radius:var(--flex-hero-border-radius-block-start)}@media screen and (max-width:1024px){.ehp-flex-hero .has-shape-md-sharp,.ehp-flex-hero.has-shape-md-sharp{border-radius:var(--flex-hero-border-radius-sharp)}.ehp-flex-hero .has-shape-md-rounded,.ehp-flex-hero.has-shape-md-rounded{border-radius:var(--flex-hero-border-radius-rounded)}.ehp-flex-hero .has-shape-md-round,.ehp-flex-hero.has-shape-md-round{border-radius:var(--flex-hero-border-radius-round)}.ehp-flex-hero .has-shape-md-default,.ehp-flex-hero.has-shape-md-default{border-radius:var(--flex-hero-border-radius-default)}.ehp-flex-hero .has-shape-md-oval,.ehp-flex-hero.has-shape-md-oval{border-radius:var(--flex-hero-border-radius-oval)}.ehp-flex-hero .has-shape-md-custom,.ehp-flex-hero.has-shape-md-custom{border-bottom-right-radius:var(--flex-hero-border-radius-inline-start);border-bottom-left-radius:var(--flex-hero-border-radius-inline-end);border-top-right-radius:var(--flex-hero-border-radius-block-end);border-top-left-radius:var(--flex-hero-border-radius-block-start)}}@media screen and (max-width:767px){.ehp-flex-hero .has-shape-sm-sharp,.ehp-flex-hero.has-shape-sm-sharp{border-radius:var(--flex-hero-border-radius-sharp)}.ehp-flex-hero .has-shape-sm-rounded,.ehp-flex-hero.has-shape-sm-rounded{border-radius:var(--flex-hero-border-radius-rounded)}.ehp-flex-hero .has-shape-sm-round,.ehp-flex-hero.has-shape-sm-round{border-radius:var(--flex-hero-border-radius-round)}.ehp-flex-hero .has-shape-sm-default,.ehp-flex-hero.has-shape-sm-default{border-radius:var(--flex-hero-border-radius-default)}.ehp-flex-hero .has-shape-sm-oval,.ehp-flex-hero.has-shape-sm-oval{border-radius:var(--flex-hero-border-radius-oval)}.ehp-flex-hero .has-shape-sm-custom,.ehp-flex-hero.has-shape-sm-custom{border-bottom-right-radius:var(--flex-hero-border-radius-inline-start);border-bottom-left-radius:var(--flex-hero-border-radius-inline-end);border-top-right-radius:var(--flex-hero-border-radius-block-end);border-top-left-radius:var(--flex-hero-border-radius-block-start)}}.ehp-flex-hero a.ehp-button,.ehp-flex-hero a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--flex-hero-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--flex-hero-button-primary-icon-size);--ehp-button-primary-text-color:var(--flex-hero-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--flex-hero-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--flex-hero-button-primary-border-width);--ehp-button-primary-border-color:var(--flex-hero-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--flex-hero-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--flex-hero-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--flex-hero-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--flex-hero-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--flex-hero-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--flex-hero-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--flex-hero-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--flex-hero-button-primary-border-radius-inline-start);--ehp-button-secondary-icon-spacing:var(--flex-hero-button-secondary-icon-spacing);--ehp-button-secondary-icon-size:var(--flex-hero-button-secondary-icon-size);--ehp-button-secondary-text-color:var(--flex-hero-button-secondary-text-color);--ehp-button-secondary-text-color-hover:var(--flex-hero-button-secondary-text-color-hover);--ehp-button-secondary-border-width:var(--flex-hero-button-secondary-border-width);--ehp-button-secondary-border-color:var(--flex-hero-button-secondary-border-color);--ehp-button-secondary-padding-block-end:var(--flex-hero-button-secondary-padding-block-end);--ehp-button-secondary-padding-block-start:var(--flex-hero-button-secondary-padding-block-start);--ehp-button-secondary-padding-inline-end:var(--flex-hero-button-secondary-padding-inline-end);--ehp-button-secondary-padding-inline-start:var(--flex-hero-button-secondary-padding-inline-start);--ehp-button-secondary-border-radius-block-end:var(--flex-hero-button-secondary-border-radius-block-end);--ehp-button-secondary-border-radius-block-start:var(--flex-hero-button-secondary-border-radius-block-start);--ehp-button-secondary-border-radius-inline-end:var(--flex-hero-button-secondary-border-radius-inline-end);--ehp-button-secondary-border-radius-inline-start:var(--flex-hero-button-secondary-border-radius-inline-start)}.ehp-flex-hero .ehp-image{--ehp-image-height:var(--flex-hero-image-height);--ehp-image-min-height:var(--flex-hero-image-min-height);--ehp-image-position:var(--flex-hero-image-position);--ehp-image-width:var(--flex-hero-image-width);--ehp-image-border-color:var(--flex-hero-image-border-color);--ehp-image-border-width:var(--flex-hero-image-border-width);--ehp-image-border-radius-block-end:var(--flex-hero-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--flex-hero-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--flex-hero-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--flex-hero-image-border-radius-inline-start)}.ehp-flex-hero.has-shape-rounded{--flex-hero-border-shape-rounded:52px}.ehp-flex-hero.has-shape-custom{--flex-hero-border-radius-block-end:var(--flex-hero-box-border-radius-custom-block-end);--flex-hero-border-radius-block-start:var(--flex-hero-box-border-radius-custom-block-start);--flex-hero-border-radius-inline-end:var(--flex-hero-box-border-radius-custom-inline-end);--flex-hero-border-radius-inline-start:var(--flex-hero-box-border-radius-custom-inline-start)}@media screen and (max-width:1024px){.ehp-flex-hero.has-shape-md-rounded{--flex-hero-border-shape-rounded:52px}.ehp-flex-hero.has-shape-md-custom{--flex-hero-border-radius-block-end:var(--flex-hero-box-border-radius-custom-block-end);--flex-hero-border-radius-block-start:var(--flex-hero-box-border-radius-custom-block-start);--flex-hero-border-radius-inline-end:var(--flex-hero-box-border-radius-custom-inline-end);--flex-hero-border-radius-inline-start:var(--flex-hero-box-border-radius-custom-inline-start)}}@media screen and (max-width:767px){.ehp-flex-hero.has-shape-sm-rounded{--flex-hero-border-shape-rounded:52px}.ehp-flex-hero.has-shape-sm-custom{--flex-hero-border-radius-block-end:var(--flex-hero-box-border-radius-custom-block-end);--flex-hero-border-radius-block-start:var(--flex-hero-box-border-radius-custom-block-start);--flex-hero-border-radius-inline-end:var(--flex-hero-box-border-radius-custom-inline-end);--flex-hero-border-radius-inline-start:var(--flex-hero-box-border-radius-custom-inline-start)}}.ehp-flex-hero.has-border{border-color:var(--flex-hero-box-border-color);border-style:solid;border-width:var(--flex-hero-box-border-width)}.ehp-flex-hero.has-image-stretch{--flex-hero-image-width:100%;padding:0}@media screen and (min-width:1025px){.ehp-flex-hero.has-image-stretch.has-layout-preset-storytelling .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-layout-preset-showcase{flex-direction:row}.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__content-container,.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__image{flex-basis:50%}}.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__content-container{justify-content:var(--flex-hero-content-alignment-showcase)}.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__image{align-items:var(--flex-hero-content-alignment-showcase)}.ehp-flex-hero.has-layout-preset-storytelling{flex-direction:column}.ehp-flex-hero.has-layout-preset-storytelling .ehp-flex-hero__content-container{align-items:var(--flex-hero-content-alignment-storytelling);align-self:var(--flex-hero-content-position);max-width:var(--flex-hero-content-width);text-align:var(--flex-hero-content-alignment-storytelling);width:100%}.ehp-flex-hero.has-image-position-start .ehp-flex-hero__content-container{order:2}.ehp-flex-hero.has-image-position-start .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:0;padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-image-position-end .ehp-flex-hero__content-container,.ehp-flex-hero.has-image-position-end .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}@media screen and (max-width:1024px){.ehp-flex-hero.has-image-position-md-start .ehp-flex-hero__content-container{order:2}.ehp-flex-hero.has-image-position-md-start .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-md-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:0;padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-image-position-md-end .ehp-flex-hero__content-container,.ehp-flex-hero.has-image-position-md-end .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-md-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}}@media screen and (max-width:767px){.ehp-flex-hero.has-image-position-sm-start .ehp-flex-hero__content-container{order:2}.ehp-flex-hero.has-image-position-sm-start .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-sm-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:0;padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-image-position-sm-end .ehp-flex-hero__content-container,.ehp-flex-hero.has-image-position-sm-end .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-sm-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}}@media screen and (min-width:1025px){.ehp-flex-hero.has-image-position-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:0}.ehp-flex-hero.has-image-position-end{flex-direction:row-reverse}.ehp-flex-hero.has-image-position-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:0;padding-inline-start:var(--flex-hero-box-padding-inline-start)}}.ehp-flex-hero__content-container{display:flex;flex-direction:column;gap:var(--flex-hero-element-spacing);z-index:2}.ehp-flex-hero__intro{color:var(--flex-hero-intro-color);margin:0}.ehp-flex-hero__heading{color:var(--flex-hero-heading-color);margin:0}.ehp-flex-hero__subheading{color:var(--flex-hero-subheading-color);margin:0}.ehp-flex-hero__ctas-container{display:flex;gap:var(--flex-hero-buttons-space-between)}@media screen and (max-width:1024px){.ehp-flex-hero__ctas-container{flex-direction:column}}.ehp-flex-hero__overlay{height:100%;right:0;opacity:var(--flex-hero-overlay-opacity);position:absolute;top:0;width:100%;z-index:1}1 .ehp-flex-hero{--flex-hero-content-alignment-showcase:center;--flex-hero-content-alignment-storytelling:start;--flex-hero-content-position:flex-start;--flex-hero-content-width:648px;--flex-hero-buttons-space-between:16px;--flex-hero-gap:60px;--flex-hero-element-spacing:40px;--flex-hero-box-height:auto;--flex-hero-box-full-height:100vh;--flex-hero-intro-color:#7a7a7a;--flex-hero-heading-color:#54595f;--flex-hero-subheading-color:#54595f;--flex-hero-button-primary-icon-spacing:10px;--flex-hero-button-primary-icon-size:16px;--flex-hero-button-primary-text-color:#fff;--flex-hero-button-primary-text-color-hover:#7a7a7a;--flex-hero-button-primary-border-width:0;--flex-hero-button-primary-border-color:transparent;--flex-hero-button-primary-border-radius-block-end:8px;--flex-hero-button-primary-border-radius-block-start:8px;--flex-hero-button-primary-border-radius-inline-end:8px;--flex-hero-button-primary-border-radius-inline-start:8px;--flex-hero-button-secondary-icon-spacing:10px;--flex-hero-button-secondary-icon-size:16px;--flex-hero-button-secondary-text-color:#54595f;--flex-hero-button-secondary-text-color-hover:#54595f;--flex-hero-button-secondary-border-width:2px;--flex-hero-button-secondary-border-color:#54595f;--flex-hero-box-border-color:#54595f;--flex-hero-box-border-width:1px;display:flex;flex-direction:column;gap:var(--flex-hero-gap);min-height:var(--flex-hero-box-height);overflow:hidden;padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start);position:relative}@supports(height:100dvh){.ehp-flex-hero{--flex-hero-box-full-height:100dvh}}@media(max-width:767px){.ehp-flex-hero.is-full-height-mobile{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:-1)and (max-width:-1){.ehp-flex-hero.is-full-height-mobile_extra{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:768px)and (max-width:1024px){.ehp-flex-hero.is-full-height-tablet{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:-1)and (max-width:-1){.ehp-flex-hero.is-full-height-laptop,.ehp-flex-hero.is-full-height-tablet_extra{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:1025px){.ehp-flex-hero.is-full-height-desktop{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:1025px)and (max-width:99999px){.ehp-flex-hero.is-full-height-desktop.is-full-height-widescreen{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:-1){.ehp-flex-hero.is-full-height-widescreen{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}.ehp-flex-hero a.ehp-button,.ehp-flex-hero a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--flex-hero-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--flex-hero-button-primary-icon-size);--ehp-button-primary-text-color:var(--flex-hero-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--flex-hero-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--flex-hero-button-primary-border-width);--ehp-button-primary-border-color:var(--flex-hero-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--flex-hero-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--flex-hero-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--flex-hero-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--flex-hero-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--flex-hero-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--flex-hero-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--flex-hero-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--flex-hero-button-primary-border-radius-inline-start);--ehp-button-secondary-icon-spacing:var(--flex-hero-button-secondary-icon-spacing);--ehp-button-secondary-icon-size:var(--flex-hero-button-secondary-icon-size);--ehp-button-secondary-text-color:var(--flex-hero-button-secondary-text-color);--ehp-button-secondary-text-color-hover:var(--flex-hero-button-secondary-text-color-hover);--ehp-button-secondary-border-width:var(--flex-hero-button-secondary-border-width);--ehp-button-secondary-border-color:var(--flex-hero-button-secondary-border-color);--ehp-button-secondary-padding-block-end:var(--flex-hero-button-secondary-padding-block-end);--ehp-button-secondary-padding-block-start:var(--flex-hero-button-secondary-padding-block-start);--ehp-button-secondary-padding-inline-end:var(--flex-hero-button-secondary-padding-inline-end);--ehp-button-secondary-padding-inline-start:var(--flex-hero-button-secondary-padding-inline-start);--ehp-button-secondary-border-radius-block-end:var(--flex-hero-button-secondary-border-radius-block-end);--ehp-button-secondary-border-radius-block-start:var(--flex-hero-button-secondary-border-radius-block-start);--ehp-button-secondary-border-radius-inline-end:var(--flex-hero-button-secondary-border-radius-inline-end);--ehp-button-secondary-border-radius-inline-start:var(--flex-hero-button-secondary-border-radius-inline-start)}.ehp-flex-hero .ehp-image{--ehp-image-height:var(--flex-hero-image-height);--ehp-image-min-height:var(--flex-hero-image-min-height);--ehp-image-position:var(--flex-hero-image-position);--ehp-image-width:var(--flex-hero-image-width);--ehp-image-border-color:var(--flex-hero-image-border-color);--ehp-image-border-width:var(--flex-hero-image-border-width);--ehp-image-border-radius-block-end:var(--flex-hero-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--flex-hero-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--flex-hero-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--flex-hero-image-border-radius-inline-start)}.ehp-flex-hero.has-shape-custom.shape-type-box{--ehp-shapes-border-radius-block-end:var(--flex-hero-box-border-radius-block-end,var(--flex-hero-box-border-radius-custom-block-end));--ehp-shapes-border-radius-block-start:var(--flex-hero-box-border-radius-block-start,var(--flex-hero-box-border-radius-custom-block-start));--ehp-shapes-border-radius-inline-end:var(--flex-hero-box-border-radius-inline-end,var(--flex-hero-box-border-radius-custom-inline-end));--ehp-shapes-border-radius-inline-start:var(--flex-hero-box-border-radius-inline-start,var(--flex-hero-box-border-radius-custom-inline-start))}.ehp-flex-hero.has-shape-custom.shape-type-image{--ehp-shapes-border-radius-block-end:var(--flex-hero-image-border-radius-block-end,var(--flex-hero-image-border-radius-custom-block-end));--ehp-shapes-border-radius-block-start:var(--flex-hero-image-border-radius-block-start,var(--flex-hero-image-border-radius-custom-block-start));--ehp-shapes-border-radius-inline-end:var(--flex-hero-image-border-radius-inline-end,var(--flex-hero-image-border-radius-custom-inline-end));--ehp-shapes-border-radius-inline-start:var(--flex-hero-image-border-radius-inline-start,var(--flex-hero-image-border-radius-custom-inline-start))}.ehp-flex-hero.has-border{border-color:var(--flex-hero-box-border-color);border-style:solid;border-width:var(--flex-hero-box-border-width)}.ehp-flex-hero.has-image-stretch{--flex-hero-image-width:100%;padding:0}@media screen and (min-width:1025px){.ehp-flex-hero.has-image-stretch.has-layout-preset-storytelling .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-layout-preset-showcase{flex-direction:row}.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__content-container,.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__image{flex-basis:50%}}.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__content-container{justify-content:var(--flex-hero-content-alignment-showcase)}.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__image{align-items:var(--flex-hero-content-alignment-showcase)}.ehp-flex-hero.has-layout-preset-storytelling{flex-direction:column}.ehp-flex-hero.has-layout-preset-storytelling .ehp-flex-hero__content-container{align-items:var(--flex-hero-content-alignment-storytelling);align-self:var(--flex-hero-content-position);max-width:var(--flex-hero-content-width);text-align:var(--flex-hero-content-alignment-storytelling);width:100%}.ehp-flex-hero.has-image-position-start .ehp-flex-hero__content-container{order:2}.ehp-flex-hero.has-image-position-start .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:0;padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-image-position-end .ehp-flex-hero__content-container,.ehp-flex-hero.has-image-position-end .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}@media screen and (max-width:1024px){.ehp-flex-hero.has-image-position-md-start .ehp-flex-hero__content-container{order:2}.ehp-flex-hero.has-image-position-md-start .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-md-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:0;padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-image-position-md-end .ehp-flex-hero__content-container,.ehp-flex-hero.has-image-position-md-end .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-md-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}}@media screen and (max-width:767px){.ehp-flex-hero.has-image-position-sm-start .ehp-flex-hero__content-container{order:2}.ehp-flex-hero.has-image-position-sm-start .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-sm-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:0;padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-image-position-sm-end .ehp-flex-hero__content-container,.ehp-flex-hero.has-image-position-sm-end .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-sm-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}}@media screen and (min-width:1025px){.ehp-flex-hero.has-image-position-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:0}.ehp-flex-hero.has-image-position-end{flex-direction:row-reverse}.ehp-flex-hero.has-image-position-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:0;padding-inline-start:var(--flex-hero-box-padding-inline-start)}}.ehp-flex-hero__content-container{display:flex;flex-direction:column;gap:var(--flex-hero-element-spacing);z-index:2}.ehp-flex-hero__intro{color:var(--flex-hero-intro-color);margin:0}.ehp-flex-hero__heading{color:var(--flex-hero-heading-color);margin:0}.ehp-flex-hero__subheading{color:var(--flex-hero-subheading-color);margin:0}.ehp-flex-hero__ctas-container{display:flex;gap:var(--flex-hero-buttons-space-between)}@media screen and (max-width:1024px){.ehp-flex-hero__ctas-container{flex-direction:column}}.ehp-flex-hero__overlay{height:100%;right:0;opacity:var(--flex-hero-overlay-opacity);position:absolute;top:0;width:100%;z-index:1} -
hello-plus/trunk/build/css/helloplus-flex-hero.asset.php
r3241372 r3250227 1 <?php return array('dependencies' => array(), 'version' => ' 93b061da6ed1455ad5b9');1 <?php return array('dependencies' => array(), 'version' => 'be288bf77ccc157dd560'); -
hello-plus/trunk/build/css/helloplus-flex-hero.css
r3241372 r3250227 1 .ehp-flex-hero{--flex-hero-content-alignment-showcase:center;--flex-hero-content-alignment-storytelling:start;--flex-hero-content-position:flex-start;--flex-hero-content-width:648px;--flex-hero-buttons-space-between:16px;--flex-hero-gap:60px;--flex-hero-element-spacing:40px;--flex-hero-box-height:auto;--flex-hero-box-full-height:100vh;--flex-hero-intro-color:#7a7a7a;--flex-hero-heading-color:#54595f;--flex-hero-subheading-color:#54595f;--flex-hero-button-primary-icon-spacing:10px;--flex-hero-button-primary-icon-size:16px;--flex-hero-button-primary-text-color:#fff;--flex-hero-button-primary-text-color-hover:#7a7a7a;--flex-hero-button-primary-border-width:0;--flex-hero-button-primary-border-color:transparent;--flex-hero-button-primary-border-radius-block-end:8px;--flex-hero-button-primary-border-radius-block-start:8px;--flex-hero-button-primary-border-radius-inline-end:8px;--flex-hero-button-primary-border-radius-inline-start:8px;--flex-hero-button-secondary-icon-spacing:10px;--flex-hero-button-secondary-icon-size:16px;--flex-hero-button-secondary-text-color:#54595f;--flex-hero-button-secondary-text-color-hover:#54595f;--flex-hero-button-secondary-border-width:2px;--flex-hero-button-secondary-border-color:#54595f;--flex-hero-b utton-secondary-border-radius-block-end:8px;--flex-hero-button-secondary-border-radius-block-start:8px;--flex-hero-button-secondary-border-radius-inline-end:8px;--flex-hero-button-secondary-border-radius-inline-start:8px;--flex-hero-box-border-color:#54595f;--flex-hero-box-border-width:1px;--flex-hero-border-radius-default:8px;--flex-hero-border-radius-sharp:0;--flex-hero-border-radius-rounded:12px;--flex-hero-border-radius-round:32px;--flex-hero-border-radius-oval:50%;--flex-hero-box-border-radius-custom-block-end:0;--flex-hero-box-border-radius-custom-block-start:0;--flex-hero-box-border-radius-custom-inline-end:0;--flex-hero-box-border-radius-custom-inline-start:0;display:flex;flex-direction:column;gap:var(--flex-hero-gap);min-height:var(--flex-hero-box-height);overflow:hidden;padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start);position:relative}@supports(height:100dvh){.ehp-flex-hero{--flex-hero-box-full-height:100dvh}}@media(max-width:767px){.ehp-flex-hero.is-full-height-mobile{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:-1)and (max-width:-1){.ehp-flex-hero.is-full-height-mobile_extra{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:768px)and (max-width:1024px){.ehp-flex-hero.is-full-height-tablet{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:-1)and (max-width:-1){.ehp-flex-hero.is-full-height-laptop,.ehp-flex-hero.is-full-height-tablet_extra{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:1025px){.ehp-flex-hero.is-full-height-desktop{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:1025px)and (max-width:99999px){.ehp-flex-hero.is-full-height-desktop.is-full-height-widescreen{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:-1){.ehp-flex-hero.is-full-height-widescreen{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}.ehp-flex-hero .has-shape-sharp,.ehp-flex-hero.has-shape-sharp{border-radius:var(--flex-hero-border-radius-sharp)}.ehp-flex-hero .has-shape-rounded,.ehp-flex-hero.has-shape-rounded{border-radius:var(--flex-hero-border-radius-rounded)}.ehp-flex-hero .has-shape-round,.ehp-flex-hero.has-shape-round{border-radius:var(--flex-hero-border-radius-round)}.ehp-flex-hero .has-shape-default,.ehp-flex-hero.has-shape-default{border-radius:var(--flex-hero-border-radius-default)}.ehp-flex-hero .has-shape-oval,.ehp-flex-hero.has-shape-oval{border-radius:var(--flex-hero-border-radius-oval)}.ehp-flex-hero .has-shape-custom,.ehp-flex-hero.has-shape-custom{border-bottom-left-radius:var(--flex-hero-border-radius-inline-start);border-bottom-right-radius:var(--flex-hero-border-radius-inline-end);border-top-left-radius:var(--flex-hero-border-radius-block-end);border-top-right-radius:var(--flex-hero-border-radius-block-start)}@media screen and (max-width:1024px){.ehp-flex-hero .has-shape-md-sharp,.ehp-flex-hero.has-shape-md-sharp{border-radius:var(--flex-hero-border-radius-sharp)}.ehp-flex-hero .has-shape-md-rounded,.ehp-flex-hero.has-shape-md-rounded{border-radius:var(--flex-hero-border-radius-rounded)}.ehp-flex-hero .has-shape-md-round,.ehp-flex-hero.has-shape-md-round{border-radius:var(--flex-hero-border-radius-round)}.ehp-flex-hero .has-shape-md-default,.ehp-flex-hero.has-shape-md-default{border-radius:var(--flex-hero-border-radius-default)}.ehp-flex-hero .has-shape-md-oval,.ehp-flex-hero.has-shape-md-oval{border-radius:var(--flex-hero-border-radius-oval)}.ehp-flex-hero .has-shape-md-custom,.ehp-flex-hero.has-shape-md-custom{border-bottom-left-radius:var(--flex-hero-border-radius-inline-start);border-bottom-right-radius:var(--flex-hero-border-radius-inline-end);border-top-left-radius:var(--flex-hero-border-radius-block-end);border-top-right-radius:var(--flex-hero-border-radius-block-start)}}@media screen and (max-width:767px){.ehp-flex-hero .has-shape-sm-sharp,.ehp-flex-hero.has-shape-sm-sharp{border-radius:var(--flex-hero-border-radius-sharp)}.ehp-flex-hero .has-shape-sm-rounded,.ehp-flex-hero.has-shape-sm-rounded{border-radius:var(--flex-hero-border-radius-rounded)}.ehp-flex-hero .has-shape-sm-round,.ehp-flex-hero.has-shape-sm-round{border-radius:var(--flex-hero-border-radius-round)}.ehp-flex-hero .has-shape-sm-default,.ehp-flex-hero.has-shape-sm-default{border-radius:var(--flex-hero-border-radius-default)}.ehp-flex-hero .has-shape-sm-oval,.ehp-flex-hero.has-shape-sm-oval{border-radius:var(--flex-hero-border-radius-oval)}.ehp-flex-hero .has-shape-sm-custom,.ehp-flex-hero.has-shape-sm-custom{border-bottom-left-radius:var(--flex-hero-border-radius-inline-start);border-bottom-right-radius:var(--flex-hero-border-radius-inline-end);border-top-left-radius:var(--flex-hero-border-radius-block-end);border-top-right-radius:var(--flex-hero-border-radius-block-start)}}.ehp-flex-hero a.ehp-button,.ehp-flex-hero a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--flex-hero-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--flex-hero-button-primary-icon-size);--ehp-button-primary-text-color:var(--flex-hero-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--flex-hero-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--flex-hero-button-primary-border-width);--ehp-button-primary-border-color:var(--flex-hero-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--flex-hero-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--flex-hero-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--flex-hero-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--flex-hero-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--flex-hero-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--flex-hero-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--flex-hero-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--flex-hero-button-primary-border-radius-inline-start);--ehp-button-secondary-icon-spacing:var(--flex-hero-button-secondary-icon-spacing);--ehp-button-secondary-icon-size:var(--flex-hero-button-secondary-icon-size);--ehp-button-secondary-text-color:var(--flex-hero-button-secondary-text-color);--ehp-button-secondary-text-color-hover:var(--flex-hero-button-secondary-text-color-hover);--ehp-button-secondary-border-width:var(--flex-hero-button-secondary-border-width);--ehp-button-secondary-border-color:var(--flex-hero-button-secondary-border-color);--ehp-button-secondary-padding-block-end:var(--flex-hero-button-secondary-padding-block-end);--ehp-button-secondary-padding-block-start:var(--flex-hero-button-secondary-padding-block-start);--ehp-button-secondary-padding-inline-end:var(--flex-hero-button-secondary-padding-inline-end);--ehp-button-secondary-padding-inline-start:var(--flex-hero-button-secondary-padding-inline-start);--ehp-button-secondary-border-radius-block-end:var(--flex-hero-button-secondary-border-radius-block-end);--ehp-button-secondary-border-radius-block-start:var(--flex-hero-button-secondary-border-radius-block-start);--ehp-button-secondary-border-radius-inline-end:var(--flex-hero-button-secondary-border-radius-inline-end);--ehp-button-secondary-border-radius-inline-start:var(--flex-hero-button-secondary-border-radius-inline-start)}.ehp-flex-hero .ehp-image{--ehp-image-height:var(--flex-hero-image-height);--ehp-image-min-height:var(--flex-hero-image-min-height);--ehp-image-position:var(--flex-hero-image-position);--ehp-image-width:var(--flex-hero-image-width);--ehp-image-border-color:var(--flex-hero-image-border-color);--ehp-image-border-width:var(--flex-hero-image-border-width);--ehp-image-border-radius-block-end:var(--flex-hero-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--flex-hero-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--flex-hero-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--flex-hero-image-border-radius-inline-start)}.ehp-flex-hero.has-shape-rounded{--flex-hero-border-shape-rounded:52px}.ehp-flex-hero.has-shape-custom{--flex-hero-border-radius-block-end:var(--flex-hero-box-border-radius-custom-block-end);--flex-hero-border-radius-block-start:var(--flex-hero-box-border-radius-custom-block-start);--flex-hero-border-radius-inline-end:var(--flex-hero-box-border-radius-custom-inline-end);--flex-hero-border-radius-inline-start:var(--flex-hero-box-border-radius-custom-inline-start)}@media screen and (max-width:1024px){.ehp-flex-hero.has-shape-md-rounded{--flex-hero-border-shape-rounded:52px}.ehp-flex-hero.has-shape-md-custom{--flex-hero-border-radius-block-end:var(--flex-hero-box-border-radius-custom-block-end);--flex-hero-border-radius-block-start:var(--flex-hero-box-border-radius-custom-block-start);--flex-hero-border-radius-inline-end:var(--flex-hero-box-border-radius-custom-inline-end);--flex-hero-border-radius-inline-start:var(--flex-hero-box-border-radius-custom-inline-start)}}@media screen and (max-width:767px){.ehp-flex-hero.has-shape-sm-rounded{--flex-hero-border-shape-rounded:52px}.ehp-flex-hero.has-shape-sm-custom{--flex-hero-border-radius-block-end:var(--flex-hero-box-border-radius-custom-block-end);--flex-hero-border-radius-block-start:var(--flex-hero-box-border-radius-custom-block-start);--flex-hero-border-radius-inline-end:var(--flex-hero-box-border-radius-custom-inline-end);--flex-hero-border-radius-inline-start:var(--flex-hero-box-border-radius-custom-inline-start)}}.ehp-flex-hero.has-border{border-color:var(--flex-hero-box-border-color);border-style:solid;border-width:var(--flex-hero-box-border-width)}.ehp-flex-hero.has-image-stretch{--flex-hero-image-width:100%;padding:0}@media screen and (min-width:1025px){.ehp-flex-hero.has-image-stretch.has-layout-preset-storytelling .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-layout-preset-showcase{flex-direction:row}.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__content-container,.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__image{flex-basis:50%}}.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__content-container{justify-content:var(--flex-hero-content-alignment-showcase)}.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__image{align-items:var(--flex-hero-content-alignment-showcase)}.ehp-flex-hero.has-layout-preset-storytelling{flex-direction:column}.ehp-flex-hero.has-layout-preset-storytelling .ehp-flex-hero__content-container{align-items:var(--flex-hero-content-alignment-storytelling);align-self:var(--flex-hero-content-position);max-width:var(--flex-hero-content-width);text-align:var(--flex-hero-content-alignment-storytelling);width:100%}.ehp-flex-hero.has-image-position-start .ehp-flex-hero__content-container{order:2}.ehp-flex-hero.has-image-position-start .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:0;padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-image-position-end .ehp-flex-hero__content-container,.ehp-flex-hero.has-image-position-end .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}@media screen and (max-width:1024px){.ehp-flex-hero.has-image-position-md-start .ehp-flex-hero__content-container{order:2}.ehp-flex-hero.has-image-position-md-start .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-md-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:0;padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-image-position-md-end .ehp-flex-hero__content-container,.ehp-flex-hero.has-image-position-md-end .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-md-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}}@media screen and (max-width:767px){.ehp-flex-hero.has-image-position-sm-start .ehp-flex-hero__content-container{order:2}.ehp-flex-hero.has-image-position-sm-start .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-sm-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:0;padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-image-position-sm-end .ehp-flex-hero__content-container,.ehp-flex-hero.has-image-position-sm-end .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-sm-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}}@media screen and (min-width:1025px){.ehp-flex-hero.has-image-position-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:0}.ehp-flex-hero.has-image-position-end{flex-direction:row-reverse}.ehp-flex-hero.has-image-position-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:0;padding-inline-start:var(--flex-hero-box-padding-inline-start)}}.ehp-flex-hero__content-container{display:flex;flex-direction:column;gap:var(--flex-hero-element-spacing);z-index:2}.ehp-flex-hero__intro{color:var(--flex-hero-intro-color);margin:0}.ehp-flex-hero__heading{color:var(--flex-hero-heading-color);margin:0}.ehp-flex-hero__subheading{color:var(--flex-hero-subheading-color);margin:0}.ehp-flex-hero__ctas-container{display:flex;gap:var(--flex-hero-buttons-space-between)}@media screen and (max-width:1024px){.ehp-flex-hero__ctas-container{flex-direction:column}}.ehp-flex-hero__overlay{height:100%;left:0;opacity:var(--flex-hero-overlay-opacity);position:absolute;top:0;width:100%;z-index:1}1 .ehp-flex-hero{--flex-hero-content-alignment-showcase:center;--flex-hero-content-alignment-storytelling:start;--flex-hero-content-position:flex-start;--flex-hero-content-width:648px;--flex-hero-buttons-space-between:16px;--flex-hero-gap:60px;--flex-hero-element-spacing:40px;--flex-hero-box-height:auto;--flex-hero-box-full-height:100vh;--flex-hero-intro-color:#7a7a7a;--flex-hero-heading-color:#54595f;--flex-hero-subheading-color:#54595f;--flex-hero-button-primary-icon-spacing:10px;--flex-hero-button-primary-icon-size:16px;--flex-hero-button-primary-text-color:#fff;--flex-hero-button-primary-text-color-hover:#7a7a7a;--flex-hero-button-primary-border-width:0;--flex-hero-button-primary-border-color:transparent;--flex-hero-button-primary-border-radius-block-end:8px;--flex-hero-button-primary-border-radius-block-start:8px;--flex-hero-button-primary-border-radius-inline-end:8px;--flex-hero-button-primary-border-radius-inline-start:8px;--flex-hero-button-secondary-icon-spacing:10px;--flex-hero-button-secondary-icon-size:16px;--flex-hero-button-secondary-text-color:#54595f;--flex-hero-button-secondary-text-color-hover:#54595f;--flex-hero-button-secondary-border-width:2px;--flex-hero-button-secondary-border-color:#54595f;--flex-hero-box-border-color:#54595f;--flex-hero-box-border-width:1px;display:flex;flex-direction:column;gap:var(--flex-hero-gap);min-height:var(--flex-hero-box-height);overflow:hidden;padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start);position:relative}@supports(height:100dvh){.ehp-flex-hero{--flex-hero-box-full-height:100dvh}}@media(max-width:767px){.ehp-flex-hero.is-full-height-mobile{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:-1)and (max-width:-1){.ehp-flex-hero.is-full-height-mobile_extra{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:768px)and (max-width:1024px){.ehp-flex-hero.is-full-height-tablet{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:-1)and (max-width:-1){.ehp-flex-hero.is-full-height-laptop,.ehp-flex-hero.is-full-height-tablet_extra{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:1025px){.ehp-flex-hero.is-full-height-desktop{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:1025px)and (max-width:99999px){.ehp-flex-hero.is-full-height-desktop.is-full-height-widescreen{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}@media(min-width:-1){.ehp-flex-hero.is-full-height-widescreen{--flex-hero-box-height:var(--flex-hero-box-full-height,100vh)}}.ehp-flex-hero a.ehp-button,.ehp-flex-hero a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--flex-hero-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--flex-hero-button-primary-icon-size);--ehp-button-primary-text-color:var(--flex-hero-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--flex-hero-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--flex-hero-button-primary-border-width);--ehp-button-primary-border-color:var(--flex-hero-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--flex-hero-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--flex-hero-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--flex-hero-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--flex-hero-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--flex-hero-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--flex-hero-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--flex-hero-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--flex-hero-button-primary-border-radius-inline-start);--ehp-button-secondary-icon-spacing:var(--flex-hero-button-secondary-icon-spacing);--ehp-button-secondary-icon-size:var(--flex-hero-button-secondary-icon-size);--ehp-button-secondary-text-color:var(--flex-hero-button-secondary-text-color);--ehp-button-secondary-text-color-hover:var(--flex-hero-button-secondary-text-color-hover);--ehp-button-secondary-border-width:var(--flex-hero-button-secondary-border-width);--ehp-button-secondary-border-color:var(--flex-hero-button-secondary-border-color);--ehp-button-secondary-padding-block-end:var(--flex-hero-button-secondary-padding-block-end);--ehp-button-secondary-padding-block-start:var(--flex-hero-button-secondary-padding-block-start);--ehp-button-secondary-padding-inline-end:var(--flex-hero-button-secondary-padding-inline-end);--ehp-button-secondary-padding-inline-start:var(--flex-hero-button-secondary-padding-inline-start);--ehp-button-secondary-border-radius-block-end:var(--flex-hero-button-secondary-border-radius-block-end);--ehp-button-secondary-border-radius-block-start:var(--flex-hero-button-secondary-border-radius-block-start);--ehp-button-secondary-border-radius-inline-end:var(--flex-hero-button-secondary-border-radius-inline-end);--ehp-button-secondary-border-radius-inline-start:var(--flex-hero-button-secondary-border-radius-inline-start)}.ehp-flex-hero .ehp-image{--ehp-image-height:var(--flex-hero-image-height);--ehp-image-min-height:var(--flex-hero-image-min-height);--ehp-image-position:var(--flex-hero-image-position);--ehp-image-width:var(--flex-hero-image-width);--ehp-image-border-color:var(--flex-hero-image-border-color);--ehp-image-border-width:var(--flex-hero-image-border-width);--ehp-image-border-radius-block-end:var(--flex-hero-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--flex-hero-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--flex-hero-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--flex-hero-image-border-radius-inline-start)}.ehp-flex-hero.has-shape-custom.shape-type-box{--ehp-shapes-border-radius-block-end:var(--flex-hero-box-border-radius-block-end,var(--flex-hero-box-border-radius-custom-block-end));--ehp-shapes-border-radius-block-start:var(--flex-hero-box-border-radius-block-start,var(--flex-hero-box-border-radius-custom-block-start));--ehp-shapes-border-radius-inline-end:var(--flex-hero-box-border-radius-inline-end,var(--flex-hero-box-border-radius-custom-inline-end));--ehp-shapes-border-radius-inline-start:var(--flex-hero-box-border-radius-inline-start,var(--flex-hero-box-border-radius-custom-inline-start))}.ehp-flex-hero.has-shape-custom.shape-type-image{--ehp-shapes-border-radius-block-end:var(--flex-hero-image-border-radius-block-end,var(--flex-hero-image-border-radius-custom-block-end));--ehp-shapes-border-radius-block-start:var(--flex-hero-image-border-radius-block-start,var(--flex-hero-image-border-radius-custom-block-start));--ehp-shapes-border-radius-inline-end:var(--flex-hero-image-border-radius-inline-end,var(--flex-hero-image-border-radius-custom-inline-end));--ehp-shapes-border-radius-inline-start:var(--flex-hero-image-border-radius-inline-start,var(--flex-hero-image-border-radius-custom-inline-start))}.ehp-flex-hero.has-border{border-color:var(--flex-hero-box-border-color);border-style:solid;border-width:var(--flex-hero-box-border-width)}.ehp-flex-hero.has-image-stretch{--flex-hero-image-width:100%;padding:0}@media screen and (min-width:1025px){.ehp-flex-hero.has-image-stretch.has-layout-preset-storytelling .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-layout-preset-showcase{flex-direction:row}.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__content-container,.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__image{flex-basis:50%}}.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__content-container{justify-content:var(--flex-hero-content-alignment-showcase)}.ehp-flex-hero.has-layout-preset-showcase .ehp-flex-hero__image{align-items:var(--flex-hero-content-alignment-showcase)}.ehp-flex-hero.has-layout-preset-storytelling{flex-direction:column}.ehp-flex-hero.has-layout-preset-storytelling .ehp-flex-hero__content-container{align-items:var(--flex-hero-content-alignment-storytelling);align-self:var(--flex-hero-content-position);max-width:var(--flex-hero-content-width);text-align:var(--flex-hero-content-alignment-storytelling);width:100%}.ehp-flex-hero.has-image-position-start .ehp-flex-hero__content-container{order:2}.ehp-flex-hero.has-image-position-start .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:0;padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-image-position-end .ehp-flex-hero__content-container,.ehp-flex-hero.has-image-position-end .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}@media screen and (max-width:1024px){.ehp-flex-hero.has-image-position-md-start .ehp-flex-hero__content-container{order:2}.ehp-flex-hero.has-image-position-md-start .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-md-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:0;padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-image-position-md-end .ehp-flex-hero__content-container,.ehp-flex-hero.has-image-position-md-end .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-md-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}}@media screen and (max-width:767px){.ehp-flex-hero.has-image-position-sm-start .ehp-flex-hero__content-container{order:2}.ehp-flex-hero.has-image-position-sm-start .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-sm-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:0;padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}.ehp-flex-hero.has-image-position-sm-end .ehp-flex-hero__content-container,.ehp-flex-hero.has-image-position-sm-end .ehp-flex-hero__image{order:1}.ehp-flex-hero.has-image-position-sm-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:0;padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:var(--flex-hero-box-padding-inline-start)}}@media screen and (min-width:1025px){.ehp-flex-hero.has-image-position-start.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:var(--flex-hero-box-padding-inline-end);padding-inline-start:0}.ehp-flex-hero.has-image-position-end{flex-direction:row-reverse}.ehp-flex-hero.has-image-position-end.has-image-stretch .ehp-flex-hero__content-container{padding-block-end:var(--flex-hero-box-padding-block-end);padding-block-start:var(--flex-hero-box-padding-block-start);padding-inline-end:0;padding-inline-start:var(--flex-hero-box-padding-inline-start)}}.ehp-flex-hero__content-container{display:flex;flex-direction:column;gap:var(--flex-hero-element-spacing);z-index:2}.ehp-flex-hero__intro{color:var(--flex-hero-intro-color);margin:0}.ehp-flex-hero__heading{color:var(--flex-hero-heading-color);margin:0}.ehp-flex-hero__subheading{color:var(--flex-hero-subheading-color);margin:0}.ehp-flex-hero__ctas-container{display:flex;gap:var(--flex-hero-buttons-space-between)}@media screen and (max-width:1024px){.ehp-flex-hero__ctas-container{flex-direction:column}}.ehp-flex-hero__overlay{height:100%;left:0;opacity:var(--flex-hero-overlay-opacity);position:absolute;top:0;width:100%;z-index:1} -
hello-plus/trunk/build/css/helloplus-header-rtl.css
r3241372 r3250227 1 .ehp-header{--header-logo-width:68px;--header-logo-width-sticky:34px;--header-site-title-color:#0052ff;--header-buttons-space-between:16px;--header-logo-order:0;--header-navigation-breakpoint:767px;--header-menu-item-spacing:32px;--header-title-size-sticky:20px;--header-title-weight-sticky:800;--header-align-menu:start;--header-element-spacing:0;--header-blur-level:7px;--header-wp-admin-bar-height:0;--header-float-offset:0px;--header-float-height:calc(var(--header-wp-admin-bar-height) + var(--header-float-offset));--header-float-width:100%;--header-scroll-down:0;--header-button-primary-icon-spacing:10px;--header-button-primary-icon-size:16px;--header-button-primary-text-color:#fff;--header-button-primary-text-color-hover:#7a7a7a;--header-button-primary-border-width:0;--header-button-primary-border-color:transparent;--header-button-primary-border-radius-block-end:8px;--header-button-primary-border-radius-block-start:8px;--header-button-primary-border-radius-inline-end:8px;--header-button-primary-border-radius-inline-start:8px;--header-button-secondary-icon-spacing:10px;--header-button-secondary-icon-size:16px;--header-button-secondary-text-color:#54595f;--header-button-secondary-text-color-hover:#54595f;--header-button-secondary-border-width:2px;--header-button-secondary-border-color:#54595f;--header-button-secondary-border-radius-block-end:8px;--header-button-secondary-border-radius-block-start:8px;--header-button-secondary-border-radius-inline-end:8px;--header-button-secondary-border-radius-inline-start:8px;--header-toggle-icon-color:#555963;--header-toggle-icon-color-active:#555963;--header-toggle-icon-size:22px;--header-menu-item-color:#555963;--header-menu-item-color-hover:#555963;--header-menu-item-color-active:#555963;--header-pointer-hover-underline-width:2px;--header-pointer-hover-underline-color:#0052ff;--header-pointer-hover-highlight-bg-color:#e0eaff;--header-pointer-hover-highlight-padding-inline-default:8px;--header-pointer-hover-highlight-padding-block-default:4px;--header-pointer-hover-highlight-padding-inline-thin:6px;--header-pointer-hover-highlight-padding-block-thin:2px;--header-pointer-hover-highlight-padding-inline-thick:8px;--header-pointer-hover-highlight-padding-block-thick:8px;--header-pointer-hover-highlight-padding-inline:var(--header-pointer-hover-highlight-padding-inline-default);--header-pointer-hover-highlight-padding-block:var(--header-pointer-hover-highlight-padding-block-default);--header-focus-active-underline-width:2px;--header-focus-active-underline-color:#0052ff;--header-focus-active-highlight-bg-color:#e0eaff;--header-focus-active-highlight-padding-inline-default:8px;--header-focus-active-highlight-padding-block-default:4px;--header-focus-active-highlight-padding-inline-thin:6px;--header-focus-active-highlight-padding-block-thin:2px;--header-focus-active-highlight-padding-inline-thick:8px;--header-focus-active-highlight-padding-block-thick:8px;--header-focus-active-highlight-padding-inline:var(--header-focus-active-highlight-padding-inline-default);--header-focus-active-highlight-padding-block:var(--header-focus-active-highlight-padding-block-default);--header-dropdown-text-align:flex-start;--header-dropdown-divider-color:#e0e1e2;--header-dropdown-divider-width:1px;--header-box-border-width:1px;--header-box-border-color:#555963;--header-contact-button-size:16px;--header-contact-button-spacing:12px;--header-bo rder-radius-default:8px;--header-border-radius-sharp:0;--header-border-radius-rounded:12px;--header-border-radius-round:32px;--header-border-radius-oval:50%;--header-button-border-radius-custom-block-end:8px;--header-button-border-radius-custom-block-start:8px;--header-button-border-radius-custom-inline-end:8px;--header-button-border-radius-custom-inline-start:8px;--header-box-padding-block-start:16px;--header-box-padding-block-end:16px;--header-box-padding-inline-start:32px;--header-box-padding-inline-end:32px;display:flex;max-width:var(--header-float-width);padding-block-end:var(--header-box-padding-block-end);padding-block-start:var(--header-box-padding-block-start);padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header.has-box-border{border-bottom:var(--header-box-border-width) solid var(--header-box-border-color)}.ehp-header.has-behavior-float{--header-float-offset:16px;--header-float-width:1140px}.ehp-header.has-behavior-float.has-box-border{border:var(--header-box-border-width) solid var(--header-box-border-color)}.ehp-header.has-behavior-onscroll-always,.ehp-header.has-behavior-onscroll-scroll-up{right:0;margin:0 auto;position:fixed;left:0;top:var(--header-float-height);transition:top .5s ease-in-out;width:100%;z-index:999}.ehp-header.has-behavior-onscroll-scroll-up.scroll-down{top:calc(var(--header-scroll-down)*-1);transition:top .5s ease-in-out}.ehp-header.has-blur-background{backdrop-filter:blur(var(--header-blur-background-level))}.ehp-header .has-shape-sharp,.ehp-header.has-shape-sharp{border-radius:var(--header-border-radius-sharp)}.ehp-header .has-shape-rounded,.ehp-header.has-shape-rounded{border-radius:var(--header-border-radius-rounded)}.ehp-header .has-shape-round,.ehp-header.has-shape-round{border-radius:var(--header-border-radius-round)}.ehp-header .has-shape-default,.ehp-header.has-shape-default{border-radius:var(--header-border-radius-default)}.ehp-header .has-shape-oval,.ehp-header.has-shape-oval{border-radius:var(--header-border-radius-oval)}.ehp-header .has-shape-custom,.ehp-header.has-shape-custom{border-bottom-right-radius:var(--header-border-radius-inline-start);border-bottom-left-radius:var(--header-border-radius-inline-end);border-top-right-radius:var(--header-border-radius-block-end);border-top-left-radius:var(--header-border-radius-block-start)}@media screen and (max-width:1024px){.ehp-header .has-shape-md-sharp,.ehp-header.has-shape-md-sharp{border-radius:var(--header-border-radius-sharp)}.ehp-header .has-shape-md-rounded,.ehp-header.has-shape-md-rounded{border-radius:var(--header-border-radius-rounded)}.ehp-header .has-shape-md-round,.ehp-header.has-shape-md-round{border-radius:var(--header-border-radius-round)}.ehp-header .has-shape-md-default,.ehp-header.has-shape-md-default{border-radius:var(--header-border-radius-default)}.ehp-header .has-shape-md-oval,.ehp-header.has-shape-md-oval{border-radius:var(--header-border-radius-oval)}.ehp-header .has-shape-md-custom,.ehp-header.has-shape-md-custom{border-bottom-right-radius:var(--header-border-radius-inline-start);border-bottom-left-radius:var(--header-border-radius-inline-end);border-top-right-radius:var(--header-border-radius-block-end);border-top-left-radius:var(--header-border-radius-block-start)}}@media screen and (max-width:767px){.ehp-header .has-shape-sm-sharp,.ehp-header.has-shape-sm-sharp{border-radius:var(--header-border-radius-sharp)}.ehp-header .has-shape-sm-rounded,.ehp-header.has-shape-sm-rounded{border-radius:var(--header-border-radius-rounded)}.ehp-header .has-shape-sm-round,.ehp-header.has-shape-sm-round{border-radius:var(--header-border-radius-round)}.ehp-header .has-shape-sm-default,.ehp-header.has-shape-sm-default{border-radius:var(--header-border-radius-default)}.ehp-header .has-shape-sm-oval,.ehp-header.has-shape-sm-oval{border-radius:var(--header-border-radius-oval)}.ehp-header .has-shape-sm-custom,.ehp-header.has-shape-sm-custom{border-bottom-right-radius:var(--header-border-radius-inline-start);border-bottom-left-radius:var(--header-border-radius-inline-end);border-top-right-radius:var(--header-border-radius-block-end);border-top-left-radius:var(--header-border-radius-block-start)}}.ehp-header.has-behavior-float.has-shape-custom{--header-border-radius-block-end:var(--header-float-border-radius-custom-block-end);--header-border-radius-block-start:var(--header-float-border-radius-custom-block-start);--header-border-radius-inline-end:var(--header-float-border-radius-custom-inline-end);--header-border-radius-inline-start:var(--header-float-border-radius-custom-inline-start)}@media screen and (max-width:1024px){.ehp-header.has-behavior-float.has-shape-md-custom{--header-border-radius-block-end:var(--header-float-border-radius-custom-block-end);--header-border-radius-block-start:var(--header-float-border-radius-custom-block-start);--header-border-radius-inline-end:var(--header-float-border-radius-custom-inline-end);--header-border-radius-inline-start:var(--header-float-border-radius-custom-inline-start)}}@media screen and (max-width:767px){.ehp-header.has-behavior-float.has-shape-sm-custom{--header-border-radius-block-end:var(--header-float-border-radius-custom-block-end);--header-border-radius-block-start:var(--header-float-border-radius-custom-block-start);--header-border-radius-inline-end:var(--header-float-border-radius-custom-inline-end);--header-border-radius-inline-start:var(--header-float-border-radius-custom-inline-start)}}.ehp-header__elements-container{display:grid;grid-gap:var(--header-element-spacing);flex-grow:1;grid-template-areas:"start center end";grid-template-columns:1fr auto 1fr;position:relative}.ehp-header__elements-container>.ehp-header__ctas-container{grid-area:end;-ms-grid-column:5;-ms-grid-row:1;justify-content:flex-end}.ehp-header__site-link{align-items:center;display:flex}.ehp-header__site-link img{width:var(--header-logo-width)}.ehp-header__site-title{color:var(--header-site-title-color);font-weight:600;margin:0}.ehp-header__ctas-container{align-items:center;display:flex;gap:var(--header-buttons-space-between);order:3}.ehp-header a.ehp-button,.ehp-header a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--header-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--header-button-primary-icon-size);--ehp-button-primary-text-color:var(--header-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--header-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--header-button-primary-border-width);--ehp-button-primary-border-color:var(--header-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--header-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--header-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--header-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--header-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--header-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--header-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--header-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--header-button-primary-border-radius-inline-start);--ehp-button-secondary-icon-spacing:var(--header-button-secondary-icon-spacing);--ehp-button-secondary-icon-size:var(--header-button-secondary-icon-size);--ehp-button-secondary-text-color:var(--header-button-secondary-text-color);--ehp-button-secondary-text-color-hover:var(--header-button-secondary-text-color-hover);--ehp-button-secondary-border-width:var(--header-button-secondary-border-width);--ehp-button-secondary-border-color:var(--header-button-secondary-border-color);--ehp-button-secondary-padding-block-end:var(--header-button-secondary-padding-block-end);--ehp-button-secondary-padding-block-start:var(--header-button-secondary-padding-block-start);--ehp-button-secondary-padding-inline-end:var(--header-button-secondary-padding-inline-end);--ehp-button-secondary-padding-inline-start:var(--header-button-secondary-padding-inline-start);--ehp-button-secondary-border-radius-block-end:var(--header-button-secondary-border-radius-block-end);--ehp-button-secondary-border-radius-block-start:var(--header-button-secondary-border-radius-block-start);--ehp-button-secondary-border-radius-inline-end:var(--header-button-secondary-border-radius-inline-end);--ehp-button-secondary-border-radius-inline-start:var(--header-button-secondary-border-radius-inline-start)}.ehp-header__navigation{order:1;z-index:999}.ehp-header__navigation[aria-hidden=true]{display:none}.ehp-header__toggle-icon--open{display:block}.ehp-header__toggle-icon--close{display:none}.ehp-header__side-toggle{display:none;gap:16px;grid-area:end;-ms-grid-column:5;-ms-grid-row:1;justify-content:flex-end;order:3}.ehp-header__button-toggle{align-items:center;background:none;border:none;cursor:pointer;padding:0}.ehp-header__button-toggle:focus,.ehp-header__button-toggle:hover{background:none}.ehp-header__button-toggle svg{fill:var(--header-toggle-icon-color);height:var(--header-toggle-icon-size);width:var(--header-toggle-icon-size)}.ehp-header__button-toggle .ehp-header__toggle-icon--close{color:var(--header-toggle-icon-color-active);fill:var(--header-toggle-icon-color-active)}.ehp-header__button-toggle i{color:var(--header-toggle-icon-color);font-size:var(--header-toggle-icon-size)}.ehp-header__button-toggle[aria-expanded=true] .ehp-header__toggle-icon--open{display:none}.ehp-header__button-toggle[aria-expanded=false] .ehp-header__toggle-icon--open,.ehp-header__button-toggle[aria-expanded=true] .ehp-header__toggle-icon--close{display:block}.ehp-header__button-toggle[aria-expanded=false] .ehp-header__toggle-icon--close{display:none}.ehp-header__dropdown{display:flex;gap:var(--header-menu-item-spacing);right:-16px;list-style:none;padding:0;position:absolute;top:calc(100% + var(--header-box-padding-block-end));width:auto;z-index:9}.ehp-header__dropdown .menu-item{flex-grow:1}.ehp-header__dropdown.has-shape-custom{--header-border-radius-block-end:var(--header-submenu-border-radius-custom-block-end);--header-border-radius-block-start:var(--header-submenu-border-radius-custom-block-start);--header-border-radius-inline-end:var(--header-submenu-border-radius-custom-inline-end);--header-border-radius-inline-start:var(--header-submenu-border-radius-custom-inline-start)}.ehp-header__dropdown[aria-hidden=true]{display:none}.ehp-header__item--sub-level{white-space:nowrap}.ehp-header__item:is([type=button]),.ehp-header__item:is(a){color:var(--header-menu-item-color);transition:all .3s}.ehp-header__item:is([type=button]):focus,.ehp-header__item:is([type=button]):hover,.ehp-header__item:is(a):focus,.ehp-header__item:is(a):hover{color:var(--header-menu-item-color-hover);transition:all .3s}.ehp-header__item:is([type=button])[aria-expanded=true] .ehp-header__submenu-toggle-icon,.ehp-header__item:is(a)[aria-expanded=true] .ehp-header__submenu-toggle-icon{transform:rotate(-180deg)}.ehp-header__dropdown-toggle[type=button]{border:unset;border-radius:unset;padding:unset}.ehp-header__dropdown-toggle[type=button]:focus,.ehp-header__dropdown-toggle[type=button]:hover{background:unset}.ehp-header .menu-item{align-items:center;display:flex;height:100%;position:relative}.ehp-header .menu-item.current-menu-item .ehp-header__item{color:var(--header-menu-item-color-active)}.ehp-header__menu{align-items:center;display:flex;gap:var(--header-menu-item-spacing);list-style-type:none;padding:0}.ehp-header__menu.has-focus-active-underline .menu-item.current-menu-item .ehp-header__item{position:relative}.ehp-header__menu.has-focus-active-underline .menu-item.current-menu-item .ehp-header__item:after{background-color:var(--header-focus-active-underline-color);bottom:-5px;content:"";height:var(--header-focus-active-underline-width);right:0;position:absolute;width:100%}.ehp-header__menu.has-focus-active-highlight .menu-item.current-menu-item .ehp-header__item{border-radius:8px;padding-block:var(--header-focus-active-highlight-padding-block);padding-inline:var(--header-focus-active-highlight-padding-inline)}.ehp-header__menu.has-focus-active-highlight .menu-item.current-menu-item .ehp-header__item:focus,.ehp-header__menu.has-focus-active-highlight .menu-item.current-menu-item .ehp-header__item:hover{background-color:var(--header-focus-active-highlight-bg-color)}.ehp-header__submenu-toggle-icon{fill:currentColor;height:12px;margin-right:4px;width:12px}.ehp-header__contact-buttons{align-items:center;display:flex;gap:var(--header-contact-button-spacing)}.ehp-header__contact-button .ehp-header__contact-button-icon,.ehp-header__contact-button .ehp-header__contact-button-label{color:var(--header-contact-button-color)}.ehp-header__contact-button:focus .ehp-header__contact-button-icon,.ehp-header__contact-button:focus .ehp-header__contact-button-label,.ehp-header__contact-button:hover .ehp-header__contact-button-icon,.ehp-header__contact-button:hover .ehp-header__contact-button-label{color:var(--header-contact-button-color-hover)}.ehp-header__contact-button-icon:is(i){font-size:var(--header-contact-button-size)}.ehp-header__contact-button-icon:is(svg){height:var(--header-contact-button-size);width:var(--header-contact-button-size)}.ehp-header.has-behavior-onscroll-always,.ehp-header.has-behavior-onscroll-always .ehp-header__site-link img,.ehp-header.has-behavior-onscroll-always .ehp-header__site-title,.ehp-header.has-behavior-onscroll-always.scroll-down{transition:all .3s}.ehp-header.has-behavior-onscroll-always.scroll-down.has-behavior-sticky-scale-logo .ehp-header__site-link img{transition:all .3s;width:var(--header-logo-width-sticky)}.ehp-header.has-behavior-onscroll-always.scroll-down.has-behavior-sticky-scale-title .ehp-header__site-title{font-size:var(--header-title-size-sticky);font-weight:var(--header-title-weight-sticky);transition:all .3s}@media screen and (max-width:767px){.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__elements-container>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown{align-items:var(--header-dropdown-text-align);background-color:transparent!important;background-image:none!important;border-radius:unset;flex-direction:column;right:unset;position:relative;top:unset;width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation{right:calc(var(--header-box-padding-inline-start)*-1);padding-block-end:var(--header-box-padding-block-end);padding-block-start:var(--header-box-padding-block-start);position:absolute;top:calc(100% + var(--header-box-padding-block-end));width:calc(100% + var(--header-box-padding-inline-start) + var(--header-box-padding-inline-end))}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation .ehp-header__ctas-container{align-items:stretch;display:flex;flex-direction:column}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation .ehp-header__contact-buttons.has-responsive-display-navbar{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__button{justify-content:center}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__side-toggle{display:flex}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__side-toggle .ehp-header__contact-buttons.has-responsive-display-dropdown{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;margin-bottom:32px;padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-responsive-divider>.menu-item{border-bottom:var(--header-dropdown-divider-width) solid var(--header-dropdown-divider-color);padding-block-end:var(--header-menu-item-spacing);width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-responsive-divider>.menu-item:last-child{border-bottom:none;padding-bottom:0}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__ctas-container.has-responsive-width-default{padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .menu-item{justify-content:var(--header-dropdown-text-align)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .menu-item.menu-item-has-children{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .menu-item.menu-item-has-children .ehp-header__dropdown-toggle[aria-expanded=true]{margin-bottom:var(--header-menu-item-spacing)}}@media screen and (min-width:768px){.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-start .ehp-header__navigation{justify-content:center}.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-center .ehp-header__site-link{grid-area:center;-ms-grid-column:3;-ms-grid-row:1;justify-content:center}.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-connect .ehp-header__elements-container{grid-template-columns:auto 1fr auto}.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-connect .ehp-header__navigation{justify-content:var(--header-align-menu)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation{align-items:center;background:none!important;display:flex}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation>.ehp-header__contact-buttons,.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown{padding:16px 32px}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown.has-layout-horizontal{flex-direction:row}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown.has-layout-vertical{flex-direction:column}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover{position:relative}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover:after{background-color:var(--header-pointer-hover-underline-color);bottom:-5px;content:"";height:var(--header-pointer-hover-underline-width);right:0;position:absolute;width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item{border-radius:8px;padding-block:var(--header-pointer-hover-highlight-padding-block);padding-inline:var(--header-pointer-hover-highlight-padding-inline)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item:hover{background-color:var(--header-pointer-hover-highlight-bg-color)}}@media screen and (max-width:1024px){.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__elements-container>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown{align-items:var(--header-dropdown-text-align);background-color:transparent!important;background-image:none!important;border-radius:unset;flex-direction:column;right:unset;position:relative;top:unset;width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation{right:calc(var(--header-box-padding-inline-start)*-1);padding-block-end:var(--header-box-padding-block-end);padding-block-start:var(--header-box-padding-block-start);position:absolute;top:calc(100% + var(--header-box-padding-block-end));width:calc(100% + var(--header-box-padding-inline-start) + var(--header-box-padding-inline-end))}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation .ehp-header__ctas-container{align-items:stretch;display:flex;flex-direction:column}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation .ehp-header__contact-buttons.has-responsive-display-navbar{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__button{justify-content:center}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__side-toggle{display:flex}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__side-toggle .ehp-header__contact-buttons.has-responsive-display-dropdown{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;margin-bottom:32px;padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-responsive-divider>.menu-item{border-bottom:var(--header-dropdown-divider-width) solid var(--header-dropdown-divider-color);padding-block-end:var(--header-menu-item-spacing);width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-responsive-divider>.menu-item:last-child{border-bottom:none;padding-bottom:0}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__ctas-container.has-responsive-width-default{padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .menu-item{justify-content:var(--header-dropdown-text-align)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .menu-item.menu-item-has-children{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .menu-item.menu-item-has-children .ehp-header__dropdown-toggle[aria-expanded=true]{margin-bottom:var(--header-menu-item-spacing)}}@media screen and (min-width:1025px){.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-start .ehp-header__navigation{justify-content:center}.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-center .ehp-header__site-link{grid-area:center;-ms-grid-column:3;-ms-grid-row:1;justify-content:center}.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-connect .ehp-header__elements-container{grid-template-columns:auto 1fr auto}.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-connect .ehp-header__navigation{justify-content:var(--header-align-menu)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation{align-items:center;background:none!important;display:flex}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation>.ehp-header__contact-buttons,.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown{padding:16px 32px}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown.has-layout-horizontal{flex-direction:row}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown.has-layout-vertical{flex-direction:column}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover{position:relative}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover:after{background-color:var(--header-pointer-hover-underline-color);bottom:-5px;content:"";height:var(--header-pointer-hover-underline-width);right:0;position:absolute;width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item{border-radius:8px;padding-block:var(--header-pointer-hover-highlight-padding-block);padding-inline:var(--header-pointer-hover-highlight-padding-inline)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item:hover{background-color:var(--header-pointer-hover-highlight-bg-color)}}.e-con.e-con--ehp-header,.e-con:has(.ehp-header:is(.has-behavior-onscroll-none):not(.has-behavior-float)){padding:0}.e-con.e-con--ehp-header>.e-con-inner,.e-con.e-con--ehp-header>.e-con-inner.e-con-inner--ehp-header,.e-con:has(.ehp-header:is(.has-behavior-onscroll-none):not(.has-behavior-float))>.e-con-inner,.e-con:has(.ehp-header:is(.has-behavior-onscroll-none):not(.has-behavior-float))>.e-con-inner.e-con-inner--ehp-header{max-width:unset;padding-block-end:0;padding-block-start:0}1 .ehp-header{--header-logo-width:68px;--header-logo-width-sticky:34px;--header-site-title-color:#0052ff;--header-buttons-space-between:16px;--header-logo-order:0;--header-navigation-breakpoint:767px;--header-menu-item-spacing:32px;--header-title-size-sticky:20px;--header-title-weight-sticky:800;--header-align-menu:start;--header-element-spacing:0;--header-blur-level:7px;--header-wp-admin-bar-height:0;--header-float-offset:0px;--header-float-height:calc(var(--header-wp-admin-bar-height) + var(--header-float-offset));--header-float-width:100%;--header-scroll-down:0;--header-button-primary-icon-spacing:10px;--header-button-primary-icon-size:16px;--header-button-primary-text-color:#fff;--header-button-primary-text-color-hover:#7a7a7a;--header-button-primary-border-width:0;--header-button-primary-border-color:transparent;--header-button-primary-border-radius-block-end:8px;--header-button-primary-border-radius-block-start:8px;--header-button-primary-border-radius-inline-end:8px;--header-button-primary-border-radius-inline-start:8px;--header-button-secondary-icon-spacing:10px;--header-button-secondary-icon-size:16px;--header-button-secondary-text-color:#54595f;--header-button-secondary-text-color-hover:#54595f;--header-button-secondary-border-width:2px;--header-button-secondary-border-color:#54595f;--header-button-secondary-border-radius-block-end:8px;--header-button-secondary-border-radius-block-start:8px;--header-button-secondary-border-radius-inline-end:8px;--header-button-secondary-border-radius-inline-start:8px;--header-toggle-icon-color:#555963;--header-toggle-icon-color-active:#555963;--header-toggle-icon-size:22px;--header-menu-item-color:#555963;--header-menu-item-color-hover:#555963;--header-menu-item-color-active:#555963;--header-pointer-hover-underline-width:2px;--header-pointer-hover-underline-color:#0052ff;--header-pointer-hover-highlight-bg-color:#e0eaff;--header-pointer-hover-highlight-padding-inline-default:8px;--header-pointer-hover-highlight-padding-block-default:4px;--header-pointer-hover-highlight-padding-inline-thin:6px;--header-pointer-hover-highlight-padding-block-thin:2px;--header-pointer-hover-highlight-padding-inline-thick:8px;--header-pointer-hover-highlight-padding-block-thick:8px;--header-pointer-hover-highlight-padding-inline:var(--header-pointer-hover-highlight-padding-inline-default);--header-pointer-hover-highlight-padding-block:var(--header-pointer-hover-highlight-padding-block-default);--header-focus-active-underline-width:2px;--header-focus-active-underline-color:#0052ff;--header-focus-active-highlight-bg-color:#e0eaff;--header-focus-active-highlight-padding-inline-default:8px;--header-focus-active-highlight-padding-block-default:4px;--header-focus-active-highlight-padding-inline-thin:6px;--header-focus-active-highlight-padding-block-thin:2px;--header-focus-active-highlight-padding-inline-thick:8px;--header-focus-active-highlight-padding-block-thick:8px;--header-focus-active-highlight-padding-inline:var(--header-focus-active-highlight-padding-inline-default);--header-focus-active-highlight-padding-block:var(--header-focus-active-highlight-padding-block-default);--header-dropdown-text-align:flex-start;--header-dropdown-divider-color:#e0e1e2;--header-dropdown-divider-width:1px;--header-box-border-width:1px;--header-box-border-color:#555963;--header-contact-button-size:16px;--header-contact-button-spacing:12px;--header-box-padding-block-start:16px;--header-box-padding-block-end:16px;--header-box-padding-inline-start:32px;--header-box-padding-inline-end:32px;display:flex;max-width:var(--header-float-width);padding-block-end:var(--header-box-padding-block-end);padding-block-start:var(--header-box-padding-block-start);padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header.has-box-border{border-bottom:var(--header-box-border-width) solid var(--header-box-border-color)}.ehp-header.has-behavior-float{--header-float-offset:16px;--header-float-width:1140px}.ehp-header.has-behavior-float.has-box-border{border:var(--header-box-border-width) solid var(--header-box-border-color)}.ehp-header.has-behavior-onscroll-always,.ehp-header.has-behavior-onscroll-scroll-up{right:0;margin:0 auto;position:fixed;left:0;top:var(--header-float-height);transition:top .5s ease-in-out;width:100%;z-index:999}.ehp-header.has-behavior-onscroll-scroll-up.scroll-down{top:calc(var(--header-scroll-down)*-1);transition:top .5s ease-in-out}.ehp-header.has-blur-background{backdrop-filter:blur(var(--header-blur-background-level))}.ehp-header.shape-type-float.has-shape-custom{--ehp-shapes-border-radius-block-end:var(--header-float-border-radius-custom-block-end,var(--header-float-border-radius-block-end));--ehp-shapes-border-radius-block-start:var(--header-float-border-radius-custom-block-start,var(--header-float-border-radius-block-start));--ehp-shapes-border-radius-inline-end:var(--header-float-border-radius-custom-inline-end,var(--header-float-border-radius-inline-end));--ehp-shapes-border-radius-inline-start:var(--header-float-border-radius-custom-inline-start,var(--header-float-border-radius-inline-start))}.ehp-header__elements-container{display:grid;grid-gap:var(--header-element-spacing);flex-grow:1;grid-template-areas:"start center end";grid-template-columns:1fr auto 1fr;position:relative}.ehp-header__elements-container>.ehp-header__ctas-container{grid-area:end;-ms-grid-column:5;-ms-grid-row:1;justify-content:flex-end}.ehp-header__site-link{align-items:center;display:flex}.ehp-header__site-link img{width:var(--header-logo-width)}.ehp-header__site-title{color:var(--header-site-title-color);font-weight:600;margin:0}.ehp-header__ctas-container{align-items:center;display:flex;gap:var(--header-buttons-space-between);order:3}.ehp-header a.ehp-button,.ehp-header a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--header-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--header-button-primary-icon-size);--ehp-button-primary-text-color:var(--header-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--header-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--header-button-primary-border-width);--ehp-button-primary-border-color:var(--header-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--header-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--header-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--header-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--header-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--header-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--header-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--header-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--header-button-primary-border-radius-inline-start);--ehp-button-secondary-icon-spacing:var(--header-button-secondary-icon-spacing);--ehp-button-secondary-icon-size:var(--header-button-secondary-icon-size);--ehp-button-secondary-text-color:var(--header-button-secondary-text-color);--ehp-button-secondary-text-color-hover:var(--header-button-secondary-text-color-hover);--ehp-button-secondary-border-width:var(--header-button-secondary-border-width);--ehp-button-secondary-border-color:var(--header-button-secondary-border-color);--ehp-button-secondary-padding-block-end:var(--header-button-secondary-padding-block-end);--ehp-button-secondary-padding-block-start:var(--header-button-secondary-padding-block-start);--ehp-button-secondary-padding-inline-end:var(--header-button-secondary-padding-inline-end);--ehp-button-secondary-padding-inline-start:var(--header-button-secondary-padding-inline-start);--ehp-button-secondary-border-radius-block-end:var(--header-button-secondary-border-radius-block-end);--ehp-button-secondary-border-radius-block-start:var(--header-button-secondary-border-radius-block-start);--ehp-button-secondary-border-radius-inline-end:var(--header-button-secondary-border-radius-inline-end);--ehp-button-secondary-border-radius-inline-start:var(--header-button-secondary-border-radius-inline-start)}.ehp-header__navigation{order:1;z-index:999}.ehp-header__navigation[aria-hidden=true]{display:none}.ehp-header__toggle-icon--open{display:block}.ehp-header__toggle-icon--close{display:none}.ehp-header__side-toggle{display:none;gap:16px;grid-area:end;-ms-grid-column:5;-ms-grid-row:1;justify-content:flex-end;order:3}.ehp-header__button-toggle{align-items:center;background:none;border:none;cursor:pointer;padding:0}.ehp-header__button-toggle:focus,.ehp-header__button-toggle:hover{background:none}.ehp-header__button-toggle svg{fill:var(--header-toggle-icon-color);height:var(--header-toggle-icon-size);width:var(--header-toggle-icon-size)}.ehp-header__button-toggle .ehp-header__toggle-icon--close{color:var(--header-toggle-icon-color-active);fill:var(--header-toggle-icon-color-active)}.ehp-header__button-toggle i{color:var(--header-toggle-icon-color);font-size:var(--header-toggle-icon-size)}.ehp-header__button-toggle[aria-expanded=true] .ehp-header__toggle-icon--open{display:none}.ehp-header__button-toggle[aria-expanded=false] .ehp-header__toggle-icon--open,.ehp-header__button-toggle[aria-expanded=true] .ehp-header__toggle-icon--close{display:block}.ehp-header__button-toggle[aria-expanded=false] .ehp-header__toggle-icon--close{display:none}.ehp-header__dropdown{display:flex;gap:var(--header-menu-item-spacing);right:-16px;list-style:none;padding:0;position:absolute;top:calc(100% + var(--header-box-padding-block-end));width:auto;z-index:9}.ehp-header__dropdown .menu-item{flex-grow:1}.ehp-header__dropdown.shape-type-submenu.has-shape-custom{--ehp-shapes-border-radius-block-end:var(--header-submenu-border-radius-custom-block-end,var(--header-submenu-border-radius-block-end));--ehp-shapes-border-radius-block-start:var(--header-submenu-border-radius-custom-block-start,var(--header-submenu-border-radius-block-start));--ehp-shapes-border-radius-inline-end:var(--header-submenu-border-radius-custom-inline-end,var(--header-submenu-border-radius-inline-end));--ehp-shapes-border-radius-inline-start:var(--header-submenu-border-radius-custom-inline-start,var(--header-submenu-border-radius-inline-start))}.ehp-header__dropdown[aria-hidden=true]{display:none}.ehp-header__item--sub-level{white-space:nowrap}.ehp-header__item:is([type=button]),.ehp-header__item:is(a){color:var(--header-menu-item-color);transition:all .3s}.ehp-header__item:is([type=button]):focus,.ehp-header__item:is([type=button]):hover,.ehp-header__item:is(a):focus,.ehp-header__item:is(a):hover{color:var(--header-menu-item-color-hover);transition:all .3s}.ehp-header__item:is([type=button])[aria-expanded=true] .ehp-header__submenu-toggle-icon,.ehp-header__item:is(a)[aria-expanded=true] .ehp-header__submenu-toggle-icon{transform:rotate(-180deg)}.ehp-header__dropdown-toggle[type=button]{border:unset;border-radius:unset;padding:unset}.ehp-header__dropdown-toggle[type=button]:focus,.ehp-header__dropdown-toggle[type=button]:hover{background:unset}.ehp-header .menu-item{align-items:center;display:flex;height:100%;position:relative}.ehp-header .menu-item.current-menu-item .ehp-header__item{color:var(--header-menu-item-color-active)}.ehp-header__menu{align-items:center;display:flex;gap:var(--header-menu-item-spacing);list-style-type:none;padding:0}.ehp-header__menu.has-focus-active-underline .menu-item.current-menu-item .ehp-header__item{position:relative}.ehp-header__menu.has-focus-active-underline .menu-item.current-menu-item .ehp-header__item:after{background-color:var(--header-focus-active-underline-color);bottom:-5px;content:"";height:var(--header-focus-active-underline-width);right:0;position:absolute;width:100%}.ehp-header__menu.has-focus-active-highlight .menu-item.current-menu-item .ehp-header__item{border-radius:8px;padding-block:var(--header-focus-active-highlight-padding-block);padding-inline:var(--header-focus-active-highlight-padding-inline)}.ehp-header__menu.has-focus-active-highlight .menu-item.current-menu-item .ehp-header__item:focus,.ehp-header__menu.has-focus-active-highlight .menu-item.current-menu-item .ehp-header__item:hover{background-color:var(--header-focus-active-highlight-bg-color)}.ehp-header__submenu-toggle-icon{fill:currentColor;height:12px;margin-right:4px;width:12px}.ehp-header__contact-buttons{align-items:center;display:flex;gap:var(--header-contact-button-spacing)}.ehp-header__contact-button .ehp-header__contact-button-icon,.ehp-header__contact-button .ehp-header__contact-button-label{color:var(--header-contact-button-color)}.ehp-header__contact-button:focus .ehp-header__contact-button-icon,.ehp-header__contact-button:focus .ehp-header__contact-button-label,.ehp-header__contact-button:hover .ehp-header__contact-button-icon,.ehp-header__contact-button:hover .ehp-header__contact-button-label{color:var(--header-contact-button-color-hover)}.ehp-header__contact-button-icon:is(i){font-size:var(--header-contact-button-size)}.ehp-header__contact-button-icon:is(svg){height:var(--header-contact-button-size);width:var(--header-contact-button-size)}.ehp-header.has-behavior-onscroll-always,.ehp-header.has-behavior-onscroll-always .ehp-header__site-link img,.ehp-header.has-behavior-onscroll-always .ehp-header__site-title,.ehp-header.has-behavior-onscroll-always.scroll-down{transition:all .3s}.ehp-header.has-behavior-onscroll-always.scroll-down.has-behavior-sticky-scale-logo .ehp-header__site-link img{transition:all .3s;width:var(--header-logo-width-sticky)}.ehp-header.has-behavior-onscroll-always.scroll-down.has-behavior-sticky-scale-title .ehp-header__site-title{font-size:var(--header-title-size-sticky);font-weight:var(--header-title-weight-sticky);transition:all .3s}@media screen and (max-width:767px){.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__elements-container>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown{align-items:var(--header-dropdown-text-align);background-color:transparent!important;background-image:none!important;border-radius:unset;flex-direction:column;right:unset;position:relative;top:unset;width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation{right:calc(var(--header-box-padding-inline-start)*-1);padding-block-end:var(--header-box-padding-block-end);padding-block-start:var(--header-box-padding-block-start);position:absolute;top:calc(100% + var(--header-box-padding-block-end));width:calc(100% + var(--header-box-padding-inline-start) + var(--header-box-padding-inline-end))}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation .ehp-header__ctas-container{align-items:stretch;display:flex;flex-direction:column}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation .ehp-header__contact-buttons.has-responsive-display-navbar{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__button{justify-content:center}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__side-toggle{display:flex}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__side-toggle .ehp-header__contact-buttons.has-responsive-display-dropdown{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;margin-bottom:32px;padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-responsive-divider>.menu-item{border-bottom:var(--header-dropdown-divider-width) solid var(--header-dropdown-divider-color);padding-block-end:var(--header-menu-item-spacing);width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-responsive-divider>.menu-item:last-child{border-bottom:none;padding-bottom:0}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__ctas-container.has-responsive-width-default{padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .menu-item{justify-content:var(--header-dropdown-text-align)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .menu-item.menu-item-has-children{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .menu-item.menu-item-has-children .ehp-header__dropdown-toggle[aria-expanded=true]{margin-bottom:var(--header-menu-item-spacing)}}@media screen and (min-width:768px){.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-start .ehp-header__navigation{justify-content:center}.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-center .ehp-header__site-link{grid-area:center;-ms-grid-column:3;-ms-grid-row:1;justify-content:center}.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-connect .ehp-header__elements-container{grid-template-columns:auto 1fr auto}.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-connect .ehp-header__navigation{justify-content:var(--header-align-menu)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation{align-items:center;background:none!important;display:flex}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation>.ehp-header__contact-buttons,.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown{padding:16px 32px}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown.has-layout-horizontal{flex-direction:row}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown.has-layout-vertical{flex-direction:column}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover{position:relative}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover:after{background-color:var(--header-pointer-hover-underline-color);bottom:-5px;content:"";height:var(--header-pointer-hover-underline-width);right:0;position:absolute;width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item{border-radius:8px;padding-block:var(--header-pointer-hover-highlight-padding-block);padding-inline:var(--header-pointer-hover-highlight-padding-inline)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item:hover{background-color:var(--header-pointer-hover-highlight-bg-color)}}@media screen and (max-width:1024px){.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__elements-container>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown{align-items:var(--header-dropdown-text-align);background-color:transparent!important;background-image:none!important;border-radius:unset;flex-direction:column;right:unset;position:relative;top:unset;width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation{right:calc(var(--header-box-padding-inline-start)*-1);padding-block-end:var(--header-box-padding-block-end);padding-block-start:var(--header-box-padding-block-start);position:absolute;top:calc(100% + var(--header-box-padding-block-end));width:calc(100% + var(--header-box-padding-inline-start) + var(--header-box-padding-inline-end))}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation .ehp-header__ctas-container{align-items:stretch;display:flex;flex-direction:column}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation .ehp-header__contact-buttons.has-responsive-display-navbar{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__button{justify-content:center}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__side-toggle{display:flex}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__side-toggle .ehp-header__contact-buttons.has-responsive-display-dropdown{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;margin-bottom:32px;padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-responsive-divider>.menu-item{border-bottom:var(--header-dropdown-divider-width) solid var(--header-dropdown-divider-color);padding-block-end:var(--header-menu-item-spacing);width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-responsive-divider>.menu-item:last-child{border-bottom:none;padding-bottom:0}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__ctas-container.has-responsive-width-default{padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .menu-item{justify-content:var(--header-dropdown-text-align)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .menu-item.menu-item-has-children{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .menu-item.menu-item-has-children .ehp-header__dropdown-toggle[aria-expanded=true]{margin-bottom:var(--header-menu-item-spacing)}}@media screen and (min-width:1025px){.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-start .ehp-header__navigation{justify-content:center}.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-center .ehp-header__site-link{grid-area:center;-ms-grid-column:3;-ms-grid-row:1;justify-content:center}.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-connect .ehp-header__elements-container{grid-template-columns:auto 1fr auto}.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-connect .ehp-header__navigation{justify-content:var(--header-align-menu)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation{align-items:center;background:none!important;display:flex}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation>.ehp-header__contact-buttons,.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown{padding:16px 32px}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown.has-layout-horizontal{flex-direction:row}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown.has-layout-vertical{flex-direction:column}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover{position:relative}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover:after{background-color:var(--header-pointer-hover-underline-color);bottom:-5px;content:"";height:var(--header-pointer-hover-underline-width);right:0;position:absolute;width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item{border-radius:8px;padding-block:var(--header-pointer-hover-highlight-padding-block);padding-inline:var(--header-pointer-hover-highlight-padding-inline)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item:hover{background-color:var(--header-pointer-hover-highlight-bg-color)}}.e-con.e-con--ehp-header,.e-con:has(.ehp-header:is(.has-behavior-onscroll-none):not(.has-behavior-float)){padding:0}.e-con.e-con--ehp-header>.e-con-inner,.e-con.e-con--ehp-header>.e-con-inner.e-con-inner--ehp-header,.e-con:has(.ehp-header:is(.has-behavior-onscroll-none):not(.has-behavior-float))>.e-con-inner,.e-con:has(.ehp-header:is(.has-behavior-onscroll-none):not(.has-behavior-float))>.e-con-inner.e-con-inner--ehp-header{max-width:unset;padding-block-end:0;padding-block-start:0} -
hello-plus/trunk/build/css/helloplus-header.asset.php
r3241372 r3250227 1 <?php return array('dependencies' => array(), 'version' => ' 69a6fdb6b34b21b84113');1 <?php return array('dependencies' => array(), 'version' => '5f2179d1ce5f2c62f4bd'); -
hello-plus/trunk/build/css/helloplus-header.css
r3241372 r3250227 1 .ehp-header{--header-logo-width:68px;--header-logo-width-sticky:34px;--header-site-title-color:#0052ff;--header-buttons-space-between:16px;--header-logo-order:0;--header-navigation-breakpoint:767px;--header-menu-item-spacing:32px;--header-title-size-sticky:20px;--header-title-weight-sticky:800;--header-align-menu:start;--header-element-spacing:0;--header-blur-level:7px;--header-wp-admin-bar-height:0;--header-float-offset:0px;--header-float-height:calc(var(--header-wp-admin-bar-height) + var(--header-float-offset));--header-float-width:100%;--header-scroll-down:0;--header-button-primary-icon-spacing:10px;--header-button-primary-icon-size:16px;--header-button-primary-text-color:#fff;--header-button-primary-text-color-hover:#7a7a7a;--header-button-primary-border-width:0;--header-button-primary-border-color:transparent;--header-button-primary-border-radius-block-end:8px;--header-button-primary-border-radius-block-start:8px;--header-button-primary-border-radius-inline-end:8px;--header-button-primary-border-radius-inline-start:8px;--header-button-secondary-icon-spacing:10px;--header-button-secondary-icon-size:16px;--header-button-secondary-text-color:#54595f;--header-button-secondary-text-color-hover:#54595f;--header-button-secondary-border-width:2px;--header-button-secondary-border-color:#54595f;--header-button-secondary-border-radius-block-end:8px;--header-button-secondary-border-radius-block-start:8px;--header-button-secondary-border-radius-inline-end:8px;--header-button-secondary-border-radius-inline-start:8px;--header-toggle-icon-color:#555963;--header-toggle-icon-color-active:#555963;--header-toggle-icon-size:22px;--header-menu-item-color:#555963;--header-menu-item-color-hover:#555963;--header-menu-item-color-active:#555963;--header-pointer-hover-underline-width:2px;--header-pointer-hover-underline-color:#0052ff;--header-pointer-hover-highlight-bg-color:#e0eaff;--header-pointer-hover-highlight-padding-inline-default:8px;--header-pointer-hover-highlight-padding-block-default:4px;--header-pointer-hover-highlight-padding-inline-thin:6px;--header-pointer-hover-highlight-padding-block-thin:2px;--header-pointer-hover-highlight-padding-inline-thick:8px;--header-pointer-hover-highlight-padding-block-thick:8px;--header-pointer-hover-highlight-padding-inline:var(--header-pointer-hover-highlight-padding-inline-default);--header-pointer-hover-highlight-padding-block:var(--header-pointer-hover-highlight-padding-block-default);--header-focus-active-underline-width:2px;--header-focus-active-underline-color:#0052ff;--header-focus-active-highlight-bg-color:#e0eaff;--header-focus-active-highlight-padding-inline-default:8px;--header-focus-active-highlight-padding-block-default:4px;--header-focus-active-highlight-padding-inline-thin:6px;--header-focus-active-highlight-padding-block-thin:2px;--header-focus-active-highlight-padding-inline-thick:8px;--header-focus-active-highlight-padding-block-thick:8px;--header-focus-active-highlight-padding-inline:var(--header-focus-active-highlight-padding-inline-default);--header-focus-active-highlight-padding-block:var(--header-focus-active-highlight-padding-block-default);--header-dropdown-text-align:flex-start;--header-dropdown-divider-color:#e0e1e2;--header-dropdown-divider-width:1px;--header-box-border-width:1px;--header-box-border-color:#555963;--header-contact-button-size:16px;--header-contact-button-spacing:12px;--header-bo rder-radius-default:8px;--header-border-radius-sharp:0;--header-border-radius-rounded:12px;--header-border-radius-round:32px;--header-border-radius-oval:50%;--header-button-border-radius-custom-block-end:8px;--header-button-border-radius-custom-block-start:8px;--header-button-border-radius-custom-inline-end:8px;--header-button-border-radius-custom-inline-start:8px;--header-box-padding-block-start:16px;--header-box-padding-block-end:16px;--header-box-padding-inline-start:32px;--header-box-padding-inline-end:32px;display:flex;max-width:var(--header-float-width);padding-block-end:var(--header-box-padding-block-end);padding-block-start:var(--header-box-padding-block-start);padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header.has-box-border{border-bottom:var(--header-box-border-width) solid var(--header-box-border-color)}.ehp-header.has-behavior-float{--header-float-offset:16px;--header-float-width:1140px}.ehp-header.has-behavior-float.has-box-border{border:var(--header-box-border-width) solid var(--header-box-border-color)}.ehp-header.has-behavior-onscroll-always,.ehp-header.has-behavior-onscroll-scroll-up{left:0;margin:0 auto;position:fixed;right:0;top:var(--header-float-height);transition:top .5s ease-in-out;width:100%;z-index:999}.ehp-header.has-behavior-onscroll-scroll-up.scroll-down{top:calc(var(--header-scroll-down)*-1);transition:top .5s ease-in-out}.ehp-header.has-blur-background{backdrop-filter:blur(var(--header-blur-background-level))}.ehp-header .has-shape-sharp,.ehp-header.has-shape-sharp{border-radius:var(--header-border-radius-sharp)}.ehp-header .has-shape-rounded,.ehp-header.has-shape-rounded{border-radius:var(--header-border-radius-rounded)}.ehp-header .has-shape-round,.ehp-header.has-shape-round{border-radius:var(--header-border-radius-round)}.ehp-header .has-shape-default,.ehp-header.has-shape-default{border-radius:var(--header-border-radius-default)}.ehp-header .has-shape-oval,.ehp-header.has-shape-oval{border-radius:var(--header-border-radius-oval)}.ehp-header .has-shape-custom,.ehp-header.has-shape-custom{border-bottom-left-radius:var(--header-border-radius-inline-start);border-bottom-right-radius:var(--header-border-radius-inline-end);border-top-left-radius:var(--header-border-radius-block-end);border-top-right-radius:var(--header-border-radius-block-start)}@media screen and (max-width:1024px){.ehp-header .has-shape-md-sharp,.ehp-header.has-shape-md-sharp{border-radius:var(--header-border-radius-sharp)}.ehp-header .has-shape-md-rounded,.ehp-header.has-shape-md-rounded{border-radius:var(--header-border-radius-rounded)}.ehp-header .has-shape-md-round,.ehp-header.has-shape-md-round{border-radius:var(--header-border-radius-round)}.ehp-header .has-shape-md-default,.ehp-header.has-shape-md-default{border-radius:var(--header-border-radius-default)}.ehp-header .has-shape-md-oval,.ehp-header.has-shape-md-oval{border-radius:var(--header-border-radius-oval)}.ehp-header .has-shape-md-custom,.ehp-header.has-shape-md-custom{border-bottom-left-radius:var(--header-border-radius-inline-start);border-bottom-right-radius:var(--header-border-radius-inline-end);border-top-left-radius:var(--header-border-radius-block-end);border-top-right-radius:var(--header-border-radius-block-start)}}@media screen and (max-width:767px){.ehp-header .has-shape-sm-sharp,.ehp-header.has-shape-sm-sharp{border-radius:var(--header-border-radius-sharp)}.ehp-header .has-shape-sm-rounded,.ehp-header.has-shape-sm-rounded{border-radius:var(--header-border-radius-rounded)}.ehp-header .has-shape-sm-round,.ehp-header.has-shape-sm-round{border-radius:var(--header-border-radius-round)}.ehp-header .has-shape-sm-default,.ehp-header.has-shape-sm-default{border-radius:var(--header-border-radius-default)}.ehp-header .has-shape-sm-oval,.ehp-header.has-shape-sm-oval{border-radius:var(--header-border-radius-oval)}.ehp-header .has-shape-sm-custom,.ehp-header.has-shape-sm-custom{border-bottom-left-radius:var(--header-border-radius-inline-start);border-bottom-right-radius:var(--header-border-radius-inline-end);border-top-left-radius:var(--header-border-radius-block-end);border-top-right-radius:var(--header-border-radius-block-start)}}.ehp-header.has-behavior-float.has-shape-custom{--header-border-radius-block-end:var(--header-float-border-radius-custom-block-end);--header-border-radius-block-start:var(--header-float-border-radius-custom-block-start);--header-border-radius-inline-end:var(--header-float-border-radius-custom-inline-end);--header-border-radius-inline-start:var(--header-float-border-radius-custom-inline-start)}@media screen and (max-width:1024px){.ehp-header.has-behavior-float.has-shape-md-custom{--header-border-radius-block-end:var(--header-float-border-radius-custom-block-end);--header-border-radius-block-start:var(--header-float-border-radius-custom-block-start);--header-border-radius-inline-end:var(--header-float-border-radius-custom-inline-end);--header-border-radius-inline-start:var(--header-float-border-radius-custom-inline-start)}}@media screen and (max-width:767px){.ehp-header.has-behavior-float.has-shape-sm-custom{--header-border-radius-block-end:var(--header-float-border-radius-custom-block-end);--header-border-radius-block-start:var(--header-float-border-radius-custom-block-start);--header-border-radius-inline-end:var(--header-float-border-radius-custom-inline-end);--header-border-radius-inline-start:var(--header-float-border-radius-custom-inline-start)}}.ehp-header__elements-container{display:grid;grid-gap:var(--header-element-spacing);flex-grow:1;grid-template-areas:"start center end";grid-template-columns:1fr auto 1fr;position:relative}.ehp-header__elements-container>.ehp-header__ctas-container{grid-area:end;-ms-grid-column:5;-ms-grid-row:1;justify-content:flex-end}.ehp-header__site-link{align-items:center;display:flex}.ehp-header__site-link img{width:var(--header-logo-width)}.ehp-header__site-title{color:var(--header-site-title-color);font-weight:600;margin:0}.ehp-header__ctas-container{align-items:center;display:flex;gap:var(--header-buttons-space-between);order:3}.ehp-header a.ehp-button,.ehp-header a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--header-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--header-button-primary-icon-size);--ehp-button-primary-text-color:var(--header-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--header-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--header-button-primary-border-width);--ehp-button-primary-border-color:var(--header-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--header-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--header-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--header-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--header-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--header-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--header-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--header-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--header-button-primary-border-radius-inline-start);--ehp-button-secondary-icon-spacing:var(--header-button-secondary-icon-spacing);--ehp-button-secondary-icon-size:var(--header-button-secondary-icon-size);--ehp-button-secondary-text-color:var(--header-button-secondary-text-color);--ehp-button-secondary-text-color-hover:var(--header-button-secondary-text-color-hover);--ehp-button-secondary-border-width:var(--header-button-secondary-border-width);--ehp-button-secondary-border-color:var(--header-button-secondary-border-color);--ehp-button-secondary-padding-block-end:var(--header-button-secondary-padding-block-end);--ehp-button-secondary-padding-block-start:var(--header-button-secondary-padding-block-start);--ehp-button-secondary-padding-inline-end:var(--header-button-secondary-padding-inline-end);--ehp-button-secondary-padding-inline-start:var(--header-button-secondary-padding-inline-start);--ehp-button-secondary-border-radius-block-end:var(--header-button-secondary-border-radius-block-end);--ehp-button-secondary-border-radius-block-start:var(--header-button-secondary-border-radius-block-start);--ehp-button-secondary-border-radius-inline-end:var(--header-button-secondary-border-radius-inline-end);--ehp-button-secondary-border-radius-inline-start:var(--header-button-secondary-border-radius-inline-start)}.ehp-header__navigation{order:1;z-index:999}.ehp-header__navigation[aria-hidden=true]{display:none}.ehp-header__toggle-icon--open{display:block}.ehp-header__toggle-icon--close{display:none}.ehp-header__side-toggle{display:none;gap:16px;grid-area:end;-ms-grid-column:5;-ms-grid-row:1;justify-content:flex-end;order:3}.ehp-header__button-toggle{align-items:center;background:none;border:none;cursor:pointer;padding:0}.ehp-header__button-toggle:focus,.ehp-header__button-toggle:hover{background:none}.ehp-header__button-toggle svg{fill:var(--header-toggle-icon-color);height:var(--header-toggle-icon-size);width:var(--header-toggle-icon-size)}.ehp-header__button-toggle .ehp-header__toggle-icon--close{color:var(--header-toggle-icon-color-active);fill:var(--header-toggle-icon-color-active)}.ehp-header__button-toggle i{color:var(--header-toggle-icon-color);font-size:var(--header-toggle-icon-size)}.ehp-header__button-toggle[aria-expanded=true] .ehp-header__toggle-icon--open{display:none}.ehp-header__button-toggle[aria-expanded=false] .ehp-header__toggle-icon--open,.ehp-header__button-toggle[aria-expanded=true] .ehp-header__toggle-icon--close{display:block}.ehp-header__button-toggle[aria-expanded=false] .ehp-header__toggle-icon--close{display:none}.ehp-header__dropdown{display:flex;gap:var(--header-menu-item-spacing);left:-16px;list-style:none;padding:0;position:absolute;top:calc(100% + var(--header-box-padding-block-end));width:auto;z-index:9}.ehp-header__dropdown .menu-item{flex-grow:1}.ehp-header__dropdown.has-shape-custom{--header-border-radius-block-end:var(--header-submenu-border-radius-custom-block-end);--header-border-radius-block-start:var(--header-submenu-border-radius-custom-block-start);--header-border-radius-inline-end:var(--header-submenu-border-radius-custom-inline-end);--header-border-radius-inline-start:var(--header-submenu-border-radius-custom-inline-start)}.ehp-header__dropdown[aria-hidden=true]{display:none}.ehp-header__item--sub-level{white-space:nowrap}.ehp-header__item:is([type=button]),.ehp-header__item:is(a){color:var(--header-menu-item-color);transition:all .3s}.ehp-header__item:is([type=button]):focus,.ehp-header__item:is([type=button]):hover,.ehp-header__item:is(a):focus,.ehp-header__item:is(a):hover{color:var(--header-menu-item-color-hover);transition:all .3s}.ehp-header__item:is([type=button])[aria-expanded=true] .ehp-header__submenu-toggle-icon,.ehp-header__item:is(a)[aria-expanded=true] .ehp-header__submenu-toggle-icon{transform:rotate(180deg)}.ehp-header__dropdown-toggle[type=button]{border:unset;border-radius:unset;padding:unset}.ehp-header__dropdown-toggle[type=button]:focus,.ehp-header__dropdown-toggle[type=button]:hover{background:unset}.ehp-header .menu-item{align-items:center;display:flex;height:100%;position:relative}.ehp-header .menu-item.current-menu-item .ehp-header__item{color:var(--header-menu-item-color-active)}.ehp-header__menu{align-items:center;display:flex;gap:var(--header-menu-item-spacing);list-style-type:none;padding:0}.ehp-header__menu.has-focus-active-underline .menu-item.current-menu-item .ehp-header__item{position:relative}.ehp-header__menu.has-focus-active-underline .menu-item.current-menu-item .ehp-header__item:after{background-color:var(--header-focus-active-underline-color);bottom:-5px;content:"";height:var(--header-focus-active-underline-width);left:0;position:absolute;width:100%}.ehp-header__menu.has-focus-active-highlight .menu-item.current-menu-item .ehp-header__item{border-radius:8px;padding-block:var(--header-focus-active-highlight-padding-block);padding-inline:var(--header-focus-active-highlight-padding-inline)}.ehp-header__menu.has-focus-active-highlight .menu-item.current-menu-item .ehp-header__item:focus,.ehp-header__menu.has-focus-active-highlight .menu-item.current-menu-item .ehp-header__item:hover{background-color:var(--header-focus-active-highlight-bg-color)}.ehp-header__submenu-toggle-icon{fill:currentColor;height:12px;margin-left:4px;width:12px}.ehp-header__contact-buttons{align-items:center;display:flex;gap:var(--header-contact-button-spacing)}.ehp-header__contact-button .ehp-header__contact-button-icon,.ehp-header__contact-button .ehp-header__contact-button-label{color:var(--header-contact-button-color)}.ehp-header__contact-button:focus .ehp-header__contact-button-icon,.ehp-header__contact-button:focus .ehp-header__contact-button-label,.ehp-header__contact-button:hover .ehp-header__contact-button-icon,.ehp-header__contact-button:hover .ehp-header__contact-button-label{color:var(--header-contact-button-color-hover)}.ehp-header__contact-button-icon:is(i){font-size:var(--header-contact-button-size)}.ehp-header__contact-button-icon:is(svg){height:var(--header-contact-button-size);width:var(--header-contact-button-size)}.ehp-header.has-behavior-onscroll-always,.ehp-header.has-behavior-onscroll-always .ehp-header__site-link img,.ehp-header.has-behavior-onscroll-always .ehp-header__site-title,.ehp-header.has-behavior-onscroll-always.scroll-down{transition:all .3s}.ehp-header.has-behavior-onscroll-always.scroll-down.has-behavior-sticky-scale-logo .ehp-header__site-link img{transition:all .3s;width:var(--header-logo-width-sticky)}.ehp-header.has-behavior-onscroll-always.scroll-down.has-behavior-sticky-scale-title .ehp-header__site-title{font-size:var(--header-title-size-sticky);font-weight:var(--header-title-weight-sticky);transition:all .3s}@media screen and (max-width:767px){.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__elements-container>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown{align-items:var(--header-dropdown-text-align);background-color:transparent!important;background-image:none!important;border-radius:unset;flex-direction:column;left:unset;position:relative;top:unset;width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation{left:calc(var(--header-box-padding-inline-start)*-1);padding-block-end:var(--header-box-padding-block-end);padding-block-start:var(--header-box-padding-block-start);position:absolute;top:calc(100% + var(--header-box-padding-block-end));width:calc(100% + var(--header-box-padding-inline-start) + var(--header-box-padding-inline-end))}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation .ehp-header__ctas-container{align-items:stretch;display:flex;flex-direction:column}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation .ehp-header__contact-buttons.has-responsive-display-navbar{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__button{justify-content:center}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__side-toggle{display:flex}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__side-toggle .ehp-header__contact-buttons.has-responsive-display-dropdown{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;margin-bottom:32px;padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-responsive-divider>.menu-item{border-bottom:var(--header-dropdown-divider-width) solid var(--header-dropdown-divider-color);padding-block-end:var(--header-menu-item-spacing);width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-responsive-divider>.menu-item:last-child{border-bottom:none;padding-bottom:0}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__ctas-container.has-responsive-width-default{padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .menu-item{justify-content:var(--header-dropdown-text-align)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .menu-item.menu-item-has-children{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .menu-item.menu-item-has-children .ehp-header__dropdown-toggle[aria-expanded=true]{margin-bottom:var(--header-menu-item-spacing)}}@media screen and (min-width:768px){.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-start .ehp-header__navigation{justify-content:center}.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-center .ehp-header__site-link{grid-area:center;-ms-grid-column:3;-ms-grid-row:1;justify-content:center}.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-connect .ehp-header__elements-container{grid-template-columns:auto 1fr auto}.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-connect .ehp-header__navigation{justify-content:var(--header-align-menu)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation{align-items:center;background:none!important;display:flex}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation>.ehp-header__contact-buttons,.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown{padding:16px 32px}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown.has-layout-horizontal{flex-direction:row}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown.has-layout-vertical{flex-direction:column}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover{position:relative}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover:after{background-color:var(--header-pointer-hover-underline-color);bottom:-5px;content:"";height:var(--header-pointer-hover-underline-width);left:0;position:absolute;width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item{border-radius:8px;padding-block:var(--header-pointer-hover-highlight-padding-block);padding-inline:var(--header-pointer-hover-highlight-padding-inline)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item:hover{background-color:var(--header-pointer-hover-highlight-bg-color)}}@media screen and (max-width:1024px){.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__elements-container>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown{align-items:var(--header-dropdown-text-align);background-color:transparent!important;background-image:none!important;border-radius:unset;flex-direction:column;left:unset;position:relative;top:unset;width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation{left:calc(var(--header-box-padding-inline-start)*-1);padding-block-end:var(--header-box-padding-block-end);padding-block-start:var(--header-box-padding-block-start);position:absolute;top:calc(100% + var(--header-box-padding-block-end));width:calc(100% + var(--header-box-padding-inline-start) + var(--header-box-padding-inline-end))}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation .ehp-header__ctas-container{align-items:stretch;display:flex;flex-direction:column}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation .ehp-header__contact-buttons.has-responsive-display-navbar{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__button{justify-content:center}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__side-toggle{display:flex}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__side-toggle .ehp-header__contact-buttons.has-responsive-display-dropdown{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;margin-bottom:32px;padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-responsive-divider>.menu-item{border-bottom:var(--header-dropdown-divider-width) solid var(--header-dropdown-divider-color);padding-block-end:var(--header-menu-item-spacing);width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-responsive-divider>.menu-item:last-child{border-bottom:none;padding-bottom:0}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__ctas-container.has-responsive-width-default{padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .menu-item{justify-content:var(--header-dropdown-text-align)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .menu-item.menu-item-has-children{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .menu-item.menu-item-has-children .ehp-header__dropdown-toggle[aria-expanded=true]{margin-bottom:var(--header-menu-item-spacing)}}@media screen and (min-width:1025px){.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-start .ehp-header__navigation{justify-content:center}.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-center .ehp-header__site-link{grid-area:center;-ms-grid-column:3;-ms-grid-row:1;justify-content:center}.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-connect .ehp-header__elements-container{grid-template-columns:auto 1fr auto}.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-connect .ehp-header__navigation{justify-content:var(--header-align-menu)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation{align-items:center;background:none!important;display:flex}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation>.ehp-header__contact-buttons,.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown{padding:16px 32px}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown.has-layout-horizontal{flex-direction:row}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown.has-layout-vertical{flex-direction:column}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover{position:relative}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover:after{background-color:var(--header-pointer-hover-underline-color);bottom:-5px;content:"";height:var(--header-pointer-hover-underline-width);left:0;position:absolute;width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item{border-radius:8px;padding-block:var(--header-pointer-hover-highlight-padding-block);padding-inline:var(--header-pointer-hover-highlight-padding-inline)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item:hover{background-color:var(--header-pointer-hover-highlight-bg-color)}}.e-con.e-con--ehp-header,.e-con:has(.ehp-header:is(.has-behavior-onscroll-none):not(.has-behavior-float)){padding:0}.e-con.e-con--ehp-header>.e-con-inner,.e-con.e-con--ehp-header>.e-con-inner.e-con-inner--ehp-header,.e-con:has(.ehp-header:is(.has-behavior-onscroll-none):not(.has-behavior-float))>.e-con-inner,.e-con:has(.ehp-header:is(.has-behavior-onscroll-none):not(.has-behavior-float))>.e-con-inner.e-con-inner--ehp-header{max-width:unset;padding-block-end:0;padding-block-start:0}1 .ehp-header{--header-logo-width:68px;--header-logo-width-sticky:34px;--header-site-title-color:#0052ff;--header-buttons-space-between:16px;--header-logo-order:0;--header-navigation-breakpoint:767px;--header-menu-item-spacing:32px;--header-title-size-sticky:20px;--header-title-weight-sticky:800;--header-align-menu:start;--header-element-spacing:0;--header-blur-level:7px;--header-wp-admin-bar-height:0;--header-float-offset:0px;--header-float-height:calc(var(--header-wp-admin-bar-height) + var(--header-float-offset));--header-float-width:100%;--header-scroll-down:0;--header-button-primary-icon-spacing:10px;--header-button-primary-icon-size:16px;--header-button-primary-text-color:#fff;--header-button-primary-text-color-hover:#7a7a7a;--header-button-primary-border-width:0;--header-button-primary-border-color:transparent;--header-button-primary-border-radius-block-end:8px;--header-button-primary-border-radius-block-start:8px;--header-button-primary-border-radius-inline-end:8px;--header-button-primary-border-radius-inline-start:8px;--header-button-secondary-icon-spacing:10px;--header-button-secondary-icon-size:16px;--header-button-secondary-text-color:#54595f;--header-button-secondary-text-color-hover:#54595f;--header-button-secondary-border-width:2px;--header-button-secondary-border-color:#54595f;--header-button-secondary-border-radius-block-end:8px;--header-button-secondary-border-radius-block-start:8px;--header-button-secondary-border-radius-inline-end:8px;--header-button-secondary-border-radius-inline-start:8px;--header-toggle-icon-color:#555963;--header-toggle-icon-color-active:#555963;--header-toggle-icon-size:22px;--header-menu-item-color:#555963;--header-menu-item-color-hover:#555963;--header-menu-item-color-active:#555963;--header-pointer-hover-underline-width:2px;--header-pointer-hover-underline-color:#0052ff;--header-pointer-hover-highlight-bg-color:#e0eaff;--header-pointer-hover-highlight-padding-inline-default:8px;--header-pointer-hover-highlight-padding-block-default:4px;--header-pointer-hover-highlight-padding-inline-thin:6px;--header-pointer-hover-highlight-padding-block-thin:2px;--header-pointer-hover-highlight-padding-inline-thick:8px;--header-pointer-hover-highlight-padding-block-thick:8px;--header-pointer-hover-highlight-padding-inline:var(--header-pointer-hover-highlight-padding-inline-default);--header-pointer-hover-highlight-padding-block:var(--header-pointer-hover-highlight-padding-block-default);--header-focus-active-underline-width:2px;--header-focus-active-underline-color:#0052ff;--header-focus-active-highlight-bg-color:#e0eaff;--header-focus-active-highlight-padding-inline-default:8px;--header-focus-active-highlight-padding-block-default:4px;--header-focus-active-highlight-padding-inline-thin:6px;--header-focus-active-highlight-padding-block-thin:2px;--header-focus-active-highlight-padding-inline-thick:8px;--header-focus-active-highlight-padding-block-thick:8px;--header-focus-active-highlight-padding-inline:var(--header-focus-active-highlight-padding-inline-default);--header-focus-active-highlight-padding-block:var(--header-focus-active-highlight-padding-block-default);--header-dropdown-text-align:flex-start;--header-dropdown-divider-color:#e0e1e2;--header-dropdown-divider-width:1px;--header-box-border-width:1px;--header-box-border-color:#555963;--header-contact-button-size:16px;--header-contact-button-spacing:12px;--header-box-padding-block-start:16px;--header-box-padding-block-end:16px;--header-box-padding-inline-start:32px;--header-box-padding-inline-end:32px;display:flex;max-width:var(--header-float-width);padding-block-end:var(--header-box-padding-block-end);padding-block-start:var(--header-box-padding-block-start);padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header.has-box-border{border-bottom:var(--header-box-border-width) solid var(--header-box-border-color)}.ehp-header.has-behavior-float{--header-float-offset:16px;--header-float-width:1140px}.ehp-header.has-behavior-float.has-box-border{border:var(--header-box-border-width) solid var(--header-box-border-color)}.ehp-header.has-behavior-onscroll-always,.ehp-header.has-behavior-onscroll-scroll-up{left:0;margin:0 auto;position:fixed;right:0;top:var(--header-float-height);transition:top .5s ease-in-out;width:100%;z-index:999}.ehp-header.has-behavior-onscroll-scroll-up.scroll-down{top:calc(var(--header-scroll-down)*-1);transition:top .5s ease-in-out}.ehp-header.has-blur-background{backdrop-filter:blur(var(--header-blur-background-level))}.ehp-header.shape-type-float.has-shape-custom{--ehp-shapes-border-radius-block-end:var(--header-float-border-radius-custom-block-end,var(--header-float-border-radius-block-end));--ehp-shapes-border-radius-block-start:var(--header-float-border-radius-custom-block-start,var(--header-float-border-radius-block-start));--ehp-shapes-border-radius-inline-end:var(--header-float-border-radius-custom-inline-end,var(--header-float-border-radius-inline-end));--ehp-shapes-border-radius-inline-start:var(--header-float-border-radius-custom-inline-start,var(--header-float-border-radius-inline-start))}.ehp-header__elements-container{display:grid;grid-gap:var(--header-element-spacing);flex-grow:1;grid-template-areas:"start center end";grid-template-columns:1fr auto 1fr;position:relative}.ehp-header__elements-container>.ehp-header__ctas-container{grid-area:end;-ms-grid-column:5;-ms-grid-row:1;justify-content:flex-end}.ehp-header__site-link{align-items:center;display:flex}.ehp-header__site-link img{width:var(--header-logo-width)}.ehp-header__site-title{color:var(--header-site-title-color);font-weight:600;margin:0}.ehp-header__ctas-container{align-items:center;display:flex;gap:var(--header-buttons-space-between);order:3}.ehp-header a.ehp-button,.ehp-header a.ehp-button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--header-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--header-button-primary-icon-size);--ehp-button-primary-text-color:var(--header-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--header-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--header-button-primary-border-width);--ehp-button-primary-border-color:var(--header-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--header-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--header-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--header-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--header-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--header-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--header-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--header-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--header-button-primary-border-radius-inline-start);--ehp-button-secondary-icon-spacing:var(--header-button-secondary-icon-spacing);--ehp-button-secondary-icon-size:var(--header-button-secondary-icon-size);--ehp-button-secondary-text-color:var(--header-button-secondary-text-color);--ehp-button-secondary-text-color-hover:var(--header-button-secondary-text-color-hover);--ehp-button-secondary-border-width:var(--header-button-secondary-border-width);--ehp-button-secondary-border-color:var(--header-button-secondary-border-color);--ehp-button-secondary-padding-block-end:var(--header-button-secondary-padding-block-end);--ehp-button-secondary-padding-block-start:var(--header-button-secondary-padding-block-start);--ehp-button-secondary-padding-inline-end:var(--header-button-secondary-padding-inline-end);--ehp-button-secondary-padding-inline-start:var(--header-button-secondary-padding-inline-start);--ehp-button-secondary-border-radius-block-end:var(--header-button-secondary-border-radius-block-end);--ehp-button-secondary-border-radius-block-start:var(--header-button-secondary-border-radius-block-start);--ehp-button-secondary-border-radius-inline-end:var(--header-button-secondary-border-radius-inline-end);--ehp-button-secondary-border-radius-inline-start:var(--header-button-secondary-border-radius-inline-start)}.ehp-header__navigation{order:1;z-index:999}.ehp-header__navigation[aria-hidden=true]{display:none}.ehp-header__toggle-icon--open{display:block}.ehp-header__toggle-icon--close{display:none}.ehp-header__side-toggle{display:none;gap:16px;grid-area:end;-ms-grid-column:5;-ms-grid-row:1;justify-content:flex-end;order:3}.ehp-header__button-toggle{align-items:center;background:none;border:none;cursor:pointer;padding:0}.ehp-header__button-toggle:focus,.ehp-header__button-toggle:hover{background:none}.ehp-header__button-toggle svg{fill:var(--header-toggle-icon-color);height:var(--header-toggle-icon-size);width:var(--header-toggle-icon-size)}.ehp-header__button-toggle .ehp-header__toggle-icon--close{color:var(--header-toggle-icon-color-active);fill:var(--header-toggle-icon-color-active)}.ehp-header__button-toggle i{color:var(--header-toggle-icon-color);font-size:var(--header-toggle-icon-size)}.ehp-header__button-toggle[aria-expanded=true] .ehp-header__toggle-icon--open{display:none}.ehp-header__button-toggle[aria-expanded=false] .ehp-header__toggle-icon--open,.ehp-header__button-toggle[aria-expanded=true] .ehp-header__toggle-icon--close{display:block}.ehp-header__button-toggle[aria-expanded=false] .ehp-header__toggle-icon--close{display:none}.ehp-header__dropdown{display:flex;gap:var(--header-menu-item-spacing);left:-16px;list-style:none;padding:0;position:absolute;top:calc(100% + var(--header-box-padding-block-end));width:auto;z-index:9}.ehp-header__dropdown .menu-item{flex-grow:1}.ehp-header__dropdown.shape-type-submenu.has-shape-custom{--ehp-shapes-border-radius-block-end:var(--header-submenu-border-radius-custom-block-end,var(--header-submenu-border-radius-block-end));--ehp-shapes-border-radius-block-start:var(--header-submenu-border-radius-custom-block-start,var(--header-submenu-border-radius-block-start));--ehp-shapes-border-radius-inline-end:var(--header-submenu-border-radius-custom-inline-end,var(--header-submenu-border-radius-inline-end));--ehp-shapes-border-radius-inline-start:var(--header-submenu-border-radius-custom-inline-start,var(--header-submenu-border-radius-inline-start))}.ehp-header__dropdown[aria-hidden=true]{display:none}.ehp-header__item--sub-level{white-space:nowrap}.ehp-header__item:is([type=button]),.ehp-header__item:is(a){color:var(--header-menu-item-color);transition:all .3s}.ehp-header__item:is([type=button]):focus,.ehp-header__item:is([type=button]):hover,.ehp-header__item:is(a):focus,.ehp-header__item:is(a):hover{color:var(--header-menu-item-color-hover);transition:all .3s}.ehp-header__item:is([type=button])[aria-expanded=true] .ehp-header__submenu-toggle-icon,.ehp-header__item:is(a)[aria-expanded=true] .ehp-header__submenu-toggle-icon{transform:rotate(180deg)}.ehp-header__dropdown-toggle[type=button]{border:unset;border-radius:unset;padding:unset}.ehp-header__dropdown-toggle[type=button]:focus,.ehp-header__dropdown-toggle[type=button]:hover{background:unset}.ehp-header .menu-item{align-items:center;display:flex;height:100%;position:relative}.ehp-header .menu-item.current-menu-item .ehp-header__item{color:var(--header-menu-item-color-active)}.ehp-header__menu{align-items:center;display:flex;gap:var(--header-menu-item-spacing);list-style-type:none;padding:0}.ehp-header__menu.has-focus-active-underline .menu-item.current-menu-item .ehp-header__item{position:relative}.ehp-header__menu.has-focus-active-underline .menu-item.current-menu-item .ehp-header__item:after{background-color:var(--header-focus-active-underline-color);bottom:-5px;content:"";height:var(--header-focus-active-underline-width);left:0;position:absolute;width:100%}.ehp-header__menu.has-focus-active-highlight .menu-item.current-menu-item .ehp-header__item{border-radius:8px;padding-block:var(--header-focus-active-highlight-padding-block);padding-inline:var(--header-focus-active-highlight-padding-inline)}.ehp-header__menu.has-focus-active-highlight .menu-item.current-menu-item .ehp-header__item:focus,.ehp-header__menu.has-focus-active-highlight .menu-item.current-menu-item .ehp-header__item:hover{background-color:var(--header-focus-active-highlight-bg-color)}.ehp-header__submenu-toggle-icon{fill:currentColor;height:12px;margin-left:4px;width:12px}.ehp-header__contact-buttons{align-items:center;display:flex;gap:var(--header-contact-button-spacing)}.ehp-header__contact-button .ehp-header__contact-button-icon,.ehp-header__contact-button .ehp-header__contact-button-label{color:var(--header-contact-button-color)}.ehp-header__contact-button:focus .ehp-header__contact-button-icon,.ehp-header__contact-button:focus .ehp-header__contact-button-label,.ehp-header__contact-button:hover .ehp-header__contact-button-icon,.ehp-header__contact-button:hover .ehp-header__contact-button-label{color:var(--header-contact-button-color-hover)}.ehp-header__contact-button-icon:is(i){font-size:var(--header-contact-button-size)}.ehp-header__contact-button-icon:is(svg){height:var(--header-contact-button-size);width:var(--header-contact-button-size)}.ehp-header.has-behavior-onscroll-always,.ehp-header.has-behavior-onscroll-always .ehp-header__site-link img,.ehp-header.has-behavior-onscroll-always .ehp-header__site-title,.ehp-header.has-behavior-onscroll-always.scroll-down{transition:all .3s}.ehp-header.has-behavior-onscroll-always.scroll-down.has-behavior-sticky-scale-logo .ehp-header__site-link img{transition:all .3s;width:var(--header-logo-width-sticky)}.ehp-header.has-behavior-onscroll-always.scroll-down.has-behavior-sticky-scale-title .ehp-header__site-title{font-size:var(--header-title-size-sticky);font-weight:var(--header-title-weight-sticky);transition:all .3s}@media screen and (max-width:767px){.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__elements-container>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown{align-items:var(--header-dropdown-text-align);background-color:transparent!important;background-image:none!important;border-radius:unset;flex-direction:column;left:unset;position:relative;top:unset;width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation{left:calc(var(--header-box-padding-inline-start)*-1);padding-block-end:var(--header-box-padding-block-end);padding-block-start:var(--header-box-padding-block-start);position:absolute;top:calc(100% + var(--header-box-padding-block-end));width:calc(100% + var(--header-box-padding-inline-start) + var(--header-box-padding-inline-end))}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation .ehp-header__ctas-container{align-items:stretch;display:flex;flex-direction:column}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation .ehp-header__contact-buttons.has-responsive-display-navbar{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__button{justify-content:center}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__side-toggle{display:flex}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__side-toggle .ehp-header__contact-buttons.has-responsive-display-dropdown{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;margin-bottom:32px;padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-responsive-divider>.menu-item{border-bottom:var(--header-dropdown-divider-width) solid var(--header-dropdown-divider-color);padding-block-end:var(--header-menu-item-spacing);width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-responsive-divider>.menu-item:last-child{border-bottom:none;padding-bottom:0}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__ctas-container.has-responsive-width-default{padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .menu-item{justify-content:var(--header-dropdown-text-align)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .menu-item.menu-item-has-children{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .menu-item.menu-item-has-children .ehp-header__dropdown-toggle[aria-expanded=true]{margin-bottom:var(--header-menu-item-spacing)}}@media screen and (min-width:768px){.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-start .ehp-header__navigation{justify-content:center}.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-center .ehp-header__site-link{grid-area:center;-ms-grid-column:3;-ms-grid-row:1;justify-content:center}.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-connect .ehp-header__elements-container{grid-template-columns:auto 1fr auto}.ehp-header[data-responsive-breakpoint=mobile-portrait].has-align-link-connect .ehp-header__navigation{justify-content:var(--header-align-menu)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation{align-items:center;background:none!important;display:flex}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation>.ehp-header__contact-buttons,.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__navigation>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown{padding:16px 32px}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown.has-layout-horizontal{flex-direction:row}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__dropdown.has-layout-vertical{flex-direction:column}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover{position:relative}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover:after{background-color:var(--header-pointer-hover-underline-color);bottom:-5px;content:"";height:var(--header-pointer-hover-underline-width);left:0;position:absolute;width:100%}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item{border-radius:8px;padding-block:var(--header-pointer-hover-highlight-padding-block);padding-inline:var(--header-pointer-hover-highlight-padding-inline)}.ehp-header[data-responsive-breakpoint=mobile-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item:hover{background-color:var(--header-pointer-hover-highlight-bg-color)}}@media screen and (max-width:1024px){.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__elements-container>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown{align-items:var(--header-dropdown-text-align);background-color:transparent!important;background-image:none!important;border-radius:unset;flex-direction:column;left:unset;position:relative;top:unset;width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation{left:calc(var(--header-box-padding-inline-start)*-1);padding-block-end:var(--header-box-padding-block-end);padding-block-start:var(--header-box-padding-block-start);position:absolute;top:calc(100% + var(--header-box-padding-block-end));width:calc(100% + var(--header-box-padding-inline-start) + var(--header-box-padding-inline-end))}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation .ehp-header__ctas-container{align-items:stretch;display:flex;flex-direction:column}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation .ehp-header__contact-buttons.has-responsive-display-navbar{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__button{justify-content:center}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__side-toggle{display:flex}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__side-toggle .ehp-header__contact-buttons.has-responsive-display-dropdown{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;margin-bottom:32px;padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-responsive-divider>.menu-item{border-bottom:var(--header-dropdown-divider-width) solid var(--header-dropdown-divider-color);padding-block-end:var(--header-menu-item-spacing);width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-responsive-divider>.menu-item:last-child{border-bottom:none;padding-bottom:0}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__ctas-container.has-responsive-width-default{padding-inline-end:var(--header-box-padding-inline-end);padding-inline-start:var(--header-box-padding-inline-start)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .menu-item{justify-content:var(--header-dropdown-text-align)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .menu-item.menu-item-has-children{align-items:var(--header-dropdown-text-align);display:flex;flex-direction:column;width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .menu-item.menu-item-has-children .ehp-header__dropdown-toggle[aria-expanded=true]{margin-bottom:var(--header-menu-item-spacing)}}@media screen and (min-width:1025px){.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-start .ehp-header__navigation{justify-content:center}.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-center .ehp-header__site-link{grid-area:center;-ms-grid-column:3;-ms-grid-row:1;justify-content:center}.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-connect .ehp-header__elements-container{grid-template-columns:auto 1fr auto}.ehp-header[data-responsive-breakpoint=tablet-portrait].has-align-link-connect .ehp-header__navigation{justify-content:var(--header-align-menu)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation{align-items:center;background:none!important;display:flex}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation>.ehp-header__contact-buttons,.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__navigation>.ehp-header__ctas-container{display:none}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown{padding:16px 32px}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown.has-layout-horizontal{flex-direction:row}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__dropdown.has-layout-vertical{flex-direction:column}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover{position:relative}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-underline .ehp-header__item:hover:after{background-color:var(--header-pointer-hover-underline-color);bottom:-5px;content:"";height:var(--header-pointer-hover-underline-width);left:0;position:absolute;width:100%}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item{border-radius:8px;padding-block:var(--header-pointer-hover-highlight-padding-block);padding-inline:var(--header-pointer-hover-highlight-padding-inline)}.ehp-header[data-responsive-breakpoint=tablet-portrait] .ehp-header__menu.has-pointer-hover-highlight .ehp-header__item:hover{background-color:var(--header-pointer-hover-highlight-bg-color)}}.e-con.e-con--ehp-header,.e-con:has(.ehp-header:is(.has-behavior-onscroll-none):not(.has-behavior-float)){padding:0}.e-con.e-con--ehp-header>.e-con-inner,.e-con.e-con--ehp-header>.e-con-inner.e-con-inner--ehp-header,.e-con:has(.ehp-header:is(.has-behavior-onscroll-none):not(.has-behavior-float))>.e-con-inner,.e-con:has(.ehp-header:is(.has-behavior-onscroll-none):not(.has-behavior-float))>.e-con-inner.e-con-inner--ehp-header{max-width:unset;padding-block-end:0;padding-block-start:0} -
hello-plus/trunk/build/css/helloplus-hero-rtl.css
r3241372 r3250227 1 .ehp-hero{--hero-box-height:auto;--hero-box-full-height:100vh;--hero-content-position:center;--hero-content-text-align:center;--hero-content-text-gap:20px;--hero-text-heading-width:100%;--hero-text-subheading-width:100%;--hero-text-width-heading:800px;--hero-text-width-subheading:440px;--hero-heading-color:#28292b;--hero-subheading-color:#28292b;--hero-button-primary-icon-spacing:10px;--hero-button-primary-icon-size:16px;--hero-button-primary-text-color:#fff;--hero-button-primary-text-color-hover:#7a7a7a;--hero-button-primary-border-width:0;--hero-button-primary-border-color:transparent; --hero-button-primary-border-radius-block-end:8px;--hero-button-primary-border-radius-block-start:8px;--hero-button-primary-border-radius-inline-end:8px;--hero-button-primary-border-radius-inline-start:8px;display:flex;flex-direction:column;height:var(--hero-box-height);padding-block-end:var(--hero-box-padding-block-end);padding-block-start:var(--hero-box-padding-block-start);padding-inline-end:var(--hero-box-padding-inline-end);padding-inline-start:var(--hero-box-padding-inline-start);text-align:var(--hero-content-text-align)}@supports(height:100dvh){.ehp-hero{--hero-box-full-height:100dvh}}@media(max-width:767px){.ehp-hero.is-full-height-mobile{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-mobile .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:-1)and (max-width:-1){.ehp-hero.is-full-height-mobile_extra{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-mobile_extra .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:768px)and (max-width:1024px){.ehp-hero.is-full-height-tablet{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-tablet .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:-1)and (max-width:-1){.ehp-hero.is-full-height-tablet_extra{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-tablet_extra .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}.ehp-hero.is-full-height-laptop{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-laptop .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:1025px){.ehp-hero.is-full-height-desktop{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-desktop .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:1025px)and (max-width:99999px){.ehp-hero.is-full-height-desktop.is-full-height-widescreen{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-desktop.is-full-height-widescreen .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:-1){.ehp-hero.is-full-height-widescreen{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-widescreen .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}.ehp-hero__button-container,.ehp-hero__text-container{align-items:var(--hero-content-position);display:flex;flex-direction:column}.ehp-hero__button-container{margin-bottom:68px}.ehp-hero a.ehp-hero__button,.ehp-hero a.ehp-hero__button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--hero-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--hero-button-primary-icon-size);--ehp-button-primary-text-color:var(--hero-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--hero-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--hero-button-primary-border-width);--ehp-button-primary-border-color:var(--hero-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--hero-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--hero-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--hero-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--hero-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--hero-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--hero-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--hero-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--hero-button-primary-border-radius-inline-start)}.ehp-hero .ehp-image{--ehp-image-height:var(--hero-image-height);--ehp-image-min-height:var(--hero-image-min-height);--ehp-image-position:var(--hero-image-position);--ehp-image-width:var(--hero-image-width);--ehp-image-border-color:var(--hero-image-border-color);--ehp-image-border-width:var(--hero-image-border-width);--ehp-image-border-radius-block-end:var(--hero-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--hero-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--hero-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--hero-image-border-radius-inline-start)}.ehp-hero__heading{color:var(--hero-heading-color);margin:0;max-width:var(--hero-text-width-heading)}.ehp-hero__subheading{color:var(--hero-subheading-color);margin:0;max-width:var(--hero-text-width-subheading)}.ehp-hero__heading,.ehp-hero__subheading{margin-bottom:var(--hero-content-text-gap)}1 .ehp-hero{--hero-box-height:auto;--hero-box-full-height:100vh;--hero-content-position:center;--hero-content-text-align:center;--hero-content-text-gap:20px;--hero-text-heading-width:100%;--hero-text-subheading-width:100%;--hero-text-width-heading:800px;--hero-text-width-subheading:440px;--hero-heading-color:#28292b;--hero-subheading-color:#28292b;--hero-button-primary-icon-spacing:10px;--hero-button-primary-icon-size:16px;--hero-button-primary-text-color:#fff;--hero-button-primary-text-color-hover:#7a7a7a;--hero-button-primary-border-width:0;--hero-button-primary-border-color:transparent;display:flex;flex-direction:column;height:var(--hero-box-height);padding-block-end:var(--hero-box-padding-block-end);padding-block-start:var(--hero-box-padding-block-start);padding-inline-end:var(--hero-box-padding-inline-end);padding-inline-start:var(--hero-box-padding-inline-start);text-align:var(--hero-content-text-align)}@supports(height:100dvh){.ehp-hero{--hero-box-full-height:100dvh}}@media(max-width:767px){.ehp-hero.is-full-height-mobile{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-mobile .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:-1)and (max-width:-1){.ehp-hero.is-full-height-mobile_extra{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-mobile_extra .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:768px)and (max-width:1024px){.ehp-hero.is-full-height-tablet{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-tablet .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:-1)and (max-width:-1){.ehp-hero.is-full-height-tablet_extra{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-tablet_extra .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}.ehp-hero.is-full-height-laptop{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-laptop .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:1025px){.ehp-hero.is-full-height-desktop{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-desktop .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:1025px)and (max-width:99999px){.ehp-hero.is-full-height-desktop.is-full-height-widescreen{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-desktop.is-full-height-widescreen .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:-1){.ehp-hero.is-full-height-widescreen{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-widescreen .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}.ehp-hero__button-container,.ehp-hero__text-container{align-items:var(--hero-content-position);display:flex;flex-direction:column}.ehp-hero__button-container{margin-bottom:68px}.ehp-hero a.ehp-hero__button,.ehp-hero a.ehp-hero__button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--hero-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--hero-button-primary-icon-size);--ehp-button-primary-text-color:var(--hero-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--hero-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--hero-button-primary-border-width);--ehp-button-primary-border-color:var(--hero-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--hero-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--hero-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--hero-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--hero-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--hero-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--hero-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--hero-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--hero-button-primary-border-radius-inline-start)}.ehp-hero .ehp-image{--ehp-image-height:var(--hero-image-height);--ehp-image-min-height:var(--hero-image-min-height);--ehp-image-position:var(--hero-image-position);--ehp-image-width:var(--hero-image-width);--ehp-image-border-color:var(--hero-image-border-color);--ehp-image-border-width:var(--hero-image-border-width);--ehp-image-border-radius-block-end:var(--hero-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--hero-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--hero-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--hero-image-border-radius-inline-start)}.ehp-hero__heading{color:var(--hero-heading-color);margin:0;max-width:var(--hero-text-width-heading)}.ehp-hero__subheading{color:var(--hero-subheading-color);margin:0;max-width:var(--hero-text-width-subheading)}.ehp-hero__heading,.ehp-hero__subheading{margin-bottom:var(--hero-content-text-gap)} -
hello-plus/trunk/build/css/helloplus-hero.asset.php
r3241372 r3250227 1 <?php return array('dependencies' => array(), 'version' => ' c87e65edf3e69d265256');1 <?php return array('dependencies' => array(), 'version' => '246a4978c9cb3bf396d5'); -
hello-plus/trunk/build/css/helloplus-hero.css
r3241372 r3250227 1 .ehp-hero{--hero-box-height:auto;--hero-box-full-height:100vh;--hero-content-position:center;--hero-content-text-align:center;--hero-content-text-gap:20px;--hero-text-heading-width:100%;--hero-text-subheading-width:100%;--hero-text-width-heading:800px;--hero-text-width-subheading:440px;--hero-heading-color:#28292b;--hero-subheading-color:#28292b;--hero-button-primary-icon-spacing:10px;--hero-button-primary-icon-size:16px;--hero-button-primary-text-color:#fff;--hero-button-primary-text-color-hover:#7a7a7a;--hero-button-primary-border-width:0;--hero-button-primary-border-color:transparent; --hero-button-primary-border-radius-block-end:8px;--hero-button-primary-border-radius-block-start:8px;--hero-button-primary-border-radius-inline-end:8px;--hero-button-primary-border-radius-inline-start:8px;display:flex;flex-direction:column;height:var(--hero-box-height);padding-block-end:var(--hero-box-padding-block-end);padding-block-start:var(--hero-box-padding-block-start);padding-inline-end:var(--hero-box-padding-inline-end);padding-inline-start:var(--hero-box-padding-inline-start);text-align:var(--hero-content-text-align)}@supports(height:100dvh){.ehp-hero{--hero-box-full-height:100dvh}}@media(max-width:767px){.ehp-hero.is-full-height-mobile{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-mobile .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:-1)and (max-width:-1){.ehp-hero.is-full-height-mobile_extra{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-mobile_extra .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:768px)and (max-width:1024px){.ehp-hero.is-full-height-tablet{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-tablet .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:-1)and (max-width:-1){.ehp-hero.is-full-height-tablet_extra{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-tablet_extra .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}.ehp-hero.is-full-height-laptop{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-laptop .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:1025px){.ehp-hero.is-full-height-desktop{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-desktop .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:1025px)and (max-width:99999px){.ehp-hero.is-full-height-desktop.is-full-height-widescreen{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-desktop.is-full-height-widescreen .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:-1){.ehp-hero.is-full-height-widescreen{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-widescreen .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}.ehp-hero__button-container,.ehp-hero__text-container{align-items:var(--hero-content-position);display:flex;flex-direction:column}.ehp-hero__button-container{margin-bottom:68px}.ehp-hero a.ehp-hero__button,.ehp-hero a.ehp-hero__button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--hero-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--hero-button-primary-icon-size);--ehp-button-primary-text-color:var(--hero-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--hero-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--hero-button-primary-border-width);--ehp-button-primary-border-color:var(--hero-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--hero-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--hero-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--hero-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--hero-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--hero-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--hero-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--hero-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--hero-button-primary-border-radius-inline-start)}.ehp-hero .ehp-image{--ehp-image-height:var(--hero-image-height);--ehp-image-min-height:var(--hero-image-min-height);--ehp-image-position:var(--hero-image-position);--ehp-image-width:var(--hero-image-width);--ehp-image-border-color:var(--hero-image-border-color);--ehp-image-border-width:var(--hero-image-border-width);--ehp-image-border-radius-block-end:var(--hero-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--hero-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--hero-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--hero-image-border-radius-inline-start)}.ehp-hero__heading{color:var(--hero-heading-color);margin:0;max-width:var(--hero-text-width-heading)}.ehp-hero__subheading{color:var(--hero-subheading-color);margin:0;max-width:var(--hero-text-width-subheading)}.ehp-hero__heading,.ehp-hero__subheading{margin-bottom:var(--hero-content-text-gap)}1 .ehp-hero{--hero-box-height:auto;--hero-box-full-height:100vh;--hero-content-position:center;--hero-content-text-align:center;--hero-content-text-gap:20px;--hero-text-heading-width:100%;--hero-text-subheading-width:100%;--hero-text-width-heading:800px;--hero-text-width-subheading:440px;--hero-heading-color:#28292b;--hero-subheading-color:#28292b;--hero-button-primary-icon-spacing:10px;--hero-button-primary-icon-size:16px;--hero-button-primary-text-color:#fff;--hero-button-primary-text-color-hover:#7a7a7a;--hero-button-primary-border-width:0;--hero-button-primary-border-color:transparent;display:flex;flex-direction:column;height:var(--hero-box-height);padding-block-end:var(--hero-box-padding-block-end);padding-block-start:var(--hero-box-padding-block-start);padding-inline-end:var(--hero-box-padding-inline-end);padding-inline-start:var(--hero-box-padding-inline-start);text-align:var(--hero-content-text-align)}@supports(height:100dvh){.ehp-hero{--hero-box-full-height:100dvh}}@media(max-width:767px){.ehp-hero.is-full-height-mobile{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-mobile .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:-1)and (max-width:-1){.ehp-hero.is-full-height-mobile_extra{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-mobile_extra .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:768px)and (max-width:1024px){.ehp-hero.is-full-height-tablet{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-tablet .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:-1)and (max-width:-1){.ehp-hero.is-full-height-tablet_extra{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-tablet_extra .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}.ehp-hero.is-full-height-laptop{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-laptop .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:1025px){.ehp-hero.is-full-height-desktop{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-desktop .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:1025px)and (max-width:99999px){.ehp-hero.is-full-height-desktop.is-full-height-widescreen{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-desktop.is-full-height-widescreen .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}@media(min-width:-1){.ehp-hero.is-full-height-widescreen{--hero-box-height:var(--hero-box-full-height,100vh)}.ehp-hero.is-full-height-widescreen .ehp-hero__image{align-items:flex-end;display:flex;flex-grow:1;justify-content:var(--hero-content-text-align)}}.ehp-hero__button-container,.ehp-hero__text-container{align-items:var(--hero-content-position);display:flex;flex-direction:column}.ehp-hero__button-container{margin-bottom:68px}.ehp-hero a.ehp-hero__button,.ehp-hero a.ehp-hero__button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--hero-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--hero-button-primary-icon-size);--ehp-button-primary-text-color:var(--hero-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--hero-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--hero-button-primary-border-width);--ehp-button-primary-border-color:var(--hero-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--hero-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--hero-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--hero-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--hero-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--hero-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--hero-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--hero-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--hero-button-primary-border-radius-inline-start)}.ehp-hero .ehp-image{--ehp-image-height:var(--hero-image-height);--ehp-image-min-height:var(--hero-image-min-height);--ehp-image-position:var(--hero-image-position);--ehp-image-width:var(--hero-image-width);--ehp-image-border-color:var(--hero-image-border-color);--ehp-image-border-width:var(--hero-image-border-width);--ehp-image-border-radius-block-end:var(--hero-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--hero-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--hero-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--hero-image-border-radius-inline-start)}.ehp-hero__heading{color:var(--hero-heading-color);margin:0;max-width:var(--hero-text-width-heading)}.ehp-hero__subheading{color:var(--hero-subheading-color);margin:0;max-width:var(--hero-text-width-subheading)}.ehp-hero__heading,.ehp-hero__subheading{margin-bottom:var(--hero-content-text-gap)} -
hello-plus/trunk/build/css/helloplus-image-rtl.css
r3241372 r3250227 1 .ehp-image{--ehp-image-height:100%;--ehp-image-min-height:0;--ehp-image-position:center;--ehp-image-width:100%;--ehp-image-border-color:#54595f;--ehp-image-border-width:0;--ehp-image-border-radius-block-end:8px;--ehp-image-border-radius-block-start:8px;--ehp-image-border-radius-inline-end:8px;--ehp-image-border-radius-inline-start:8px; --ehp-image-border-radius-default:8px;--ehp-image-border-radius-sharp:0;--ehp-image-border-radius-rounded:52px;--ehp-image-border-radius-round:300px;--ehp-image-border-radius-oval:50%;align-items:center;display:flex;justify-content:center;z-index:2}.elementor .ehp-image img{height:var(--ehp-image-height);min-height:var(--ehp-image-min-height);-o-object-fit:cover;object-fit:cover;-o-object-position:var(--ehp-image-position);object-position:var(--ehp-image-position);width:var(--ehp-image-width)}.elementor .ehp-image img.has-shape-sharp{border-radius:var(--ehp-image-border-radius-sharp)}.elementor .ehp-image img.has-shape-rounded{border-radius:var(--ehp-image-border-radius-rounded)}.elementor .ehp-image img.has-shape-round{border-radius:var(--ehp-image-border-radius-round)}.elementor .ehp-image img.has-shape-default{border-radius:var(--ehp-image-border-radius-default)}.elementor .ehp-image img.has-shape-oval{border-radius:var(--ehp-image-border-radius-oval)}.elementor .ehp-image img.has-shape-custom{border-bottom-right-radius:var(--ehp-image-border-radius-inline-start);border-bottom-left-radius:var(--ehp-image-border-radius-inline-end);border-top-right-radius:var(--ehp-image-border-radius-block-end);border-top-left-radius:var(--ehp-image-border-radius-block-start)}@media screen and (max-width:1024px){.elementor .ehp-image img.has-shape-md-sharp{border-radius:var(--ehp-image-border-radius-sharp)}.elementor .ehp-image img.has-shape-md-rounded{border-radius:var(--ehp-image-border-radius-rounded)}.elementor .ehp-image img.has-shape-md-round{border-radius:var(--ehp-image-border-radius-round)}.elementor .ehp-image img.has-shape-md-default{border-radius:var(--ehp-image-border-radius-default)}.elementor .ehp-image img.has-shape-md-oval{border-radius:var(--ehp-image-border-radius-oval)}.elementor .ehp-image img.has-shape-md-custom{border-bottom-right-radius:var(--ehp-image-border-radius-inline-start);border-bottom-left-radius:var(--ehp-image-border-radius-inline-end);border-top-right-radius:var(--ehp-image-border-radius-block-end);border-top-left-radius:var(--ehp-image-border-radius-block-start)}}@media screen and (max-width:767px){.elementor .ehp-image img.has-shape-sm-sharp{border-radius:var(--ehp-image-border-radius-sharp)}.elementor .ehp-image img.has-shape-sm-rounded{border-radius:var(--ehp-image-border-radius-rounded)}.elementor .ehp-image img.has-shape-sm-round{border-radius:var(--ehp-image-border-radius-round)}.elementor .ehp-image img.has-shape-sm-default{border-radius:var(--ehp-image-border-radius-default)}.elementor .ehp-image img.has-shape-sm-oval{border-radius:var(--ehp-image-border-radius-oval)}.elementor .ehp-image img.has-shape-sm-custom{border-bottom-right-radius:var(--ehp-image-border-radius-inline-start);border-bottom-left-radius:var(--ehp-image-border-radius-inline-end);border-top-right-radius:var(--ehp-image-border-radius-block-end);border-top-left-radius:var(--ehp-image-border-radius-block-start)}}.elementor .ehp-image img.has-border{border-color:var(--ehp-image-border-color);border-style:solid;border-width:var(--ehp-image-border-width)}1 .ehp-image{--ehp-image-height:100%;--ehp-image-min-height:0;--ehp-image-position:center;--ehp-image-width:100%;--ehp-image-border-color:#54595f;--ehp-image-border-width:0;--ehp-image-border-radius-block-end:8px;--ehp-image-border-radius-block-start:8px;--ehp-image-border-radius-inline-end:8px;--ehp-image-border-radius-inline-start:8px;align-items:center;display:flex;justify-content:center;z-index:2}.elementor .ehp-image img{height:var(--ehp-image-height);min-height:var(--ehp-image-min-height);-o-object-fit:cover;object-fit:cover;-o-object-position:var(--ehp-image-position);object-position:var(--ehp-image-position);width:var(--ehp-image-width)}.elementor .ehp-image img.has-shape-custom{--ehp-shapes-border-radius-block-end:var(--ehp-image-border-radius-block-end);--ehp-shapes-border-radius-block-start:var(--ehp-image-border-radius-block-start);--ehp-shapes-border-radius-inline-end:var(--ehp-image-border-radius-inline-end);--ehp-shapes-border-radius-inline-start:var(--ehp-image-border-radius-inline-start)}.elementor .ehp-image img.has-border{border-color:var(--ehp-image-border-color);border-style:solid;border-width:var(--ehp-image-border-width)} -
hello-plus/trunk/build/css/helloplus-image.asset.php
r3241372 r3250227 1 <?php return array('dependencies' => array(), 'version' => ' 8d7ce820d3daa49a0549');1 <?php return array('dependencies' => array(), 'version' => '147afc99ce9edde022ac'); -
hello-plus/trunk/build/css/helloplus-image.css
r3241372 r3250227 1 .ehp-image{--ehp-image-height:100%;--ehp-image-min-height:0;--ehp-image-position:center;--ehp-image-width:100%;--ehp-image-border-color:#54595f;--ehp-image-border-width:0;--ehp-image-border-radius-block-end:8px;--ehp-image-border-radius-block-start:8px;--ehp-image-border-radius-inline-end:8px;--ehp-image-border-radius-inline-start:8px; --ehp-image-border-radius-default:8px;--ehp-image-border-radius-sharp:0;--ehp-image-border-radius-rounded:52px;--ehp-image-border-radius-round:300px;--ehp-image-border-radius-oval:50%;align-items:center;display:flex;justify-content:center;z-index:2}.elementor .ehp-image img{height:var(--ehp-image-height);min-height:var(--ehp-image-min-height);-o-object-fit:cover;object-fit:cover;-o-object-position:var(--ehp-image-position);object-position:var(--ehp-image-position);width:var(--ehp-image-width)}.elementor .ehp-image img.has-shape-sharp{border-radius:var(--ehp-image-border-radius-sharp)}.elementor .ehp-image img.has-shape-rounded{border-radius:var(--ehp-image-border-radius-rounded)}.elementor .ehp-image img.has-shape-round{border-radius:var(--ehp-image-border-radius-round)}.elementor .ehp-image img.has-shape-default{border-radius:var(--ehp-image-border-radius-default)}.elementor .ehp-image img.has-shape-oval{border-radius:var(--ehp-image-border-radius-oval)}.elementor .ehp-image img.has-shape-custom{border-bottom-left-radius:var(--ehp-image-border-radius-inline-start);border-bottom-right-radius:var(--ehp-image-border-radius-inline-end);border-top-left-radius:var(--ehp-image-border-radius-block-end);border-top-right-radius:var(--ehp-image-border-radius-block-start)}@media screen and (max-width:1024px){.elementor .ehp-image img.has-shape-md-sharp{border-radius:var(--ehp-image-border-radius-sharp)}.elementor .ehp-image img.has-shape-md-rounded{border-radius:var(--ehp-image-border-radius-rounded)}.elementor .ehp-image img.has-shape-md-round{border-radius:var(--ehp-image-border-radius-round)}.elementor .ehp-image img.has-shape-md-default{border-radius:var(--ehp-image-border-radius-default)}.elementor .ehp-image img.has-shape-md-oval{border-radius:var(--ehp-image-border-radius-oval)}.elementor .ehp-image img.has-shape-md-custom{border-bottom-left-radius:var(--ehp-image-border-radius-inline-start);border-bottom-right-radius:var(--ehp-image-border-radius-inline-end);border-top-left-radius:var(--ehp-image-border-radius-block-end);border-top-right-radius:var(--ehp-image-border-radius-block-start)}}@media screen and (max-width:767px){.elementor .ehp-image img.has-shape-sm-sharp{border-radius:var(--ehp-image-border-radius-sharp)}.elementor .ehp-image img.has-shape-sm-rounded{border-radius:var(--ehp-image-border-radius-rounded)}.elementor .ehp-image img.has-shape-sm-round{border-radius:var(--ehp-image-border-radius-round)}.elementor .ehp-image img.has-shape-sm-default{border-radius:var(--ehp-image-border-radius-default)}.elementor .ehp-image img.has-shape-sm-oval{border-radius:var(--ehp-image-border-radius-oval)}.elementor .ehp-image img.has-shape-sm-custom{border-bottom-left-radius:var(--ehp-image-border-radius-inline-start);border-bottom-right-radius:var(--ehp-image-border-radius-inline-end);border-top-left-radius:var(--ehp-image-border-radius-block-end);border-top-right-radius:var(--ehp-image-border-radius-block-start)}}.elementor .ehp-image img.has-border{border-color:var(--ehp-image-border-color);border-style:solid;border-width:var(--ehp-image-border-width)}1 .ehp-image{--ehp-image-height:100%;--ehp-image-min-height:0;--ehp-image-position:center;--ehp-image-width:100%;--ehp-image-border-color:#54595f;--ehp-image-border-width:0;--ehp-image-border-radius-block-end:8px;--ehp-image-border-radius-block-start:8px;--ehp-image-border-radius-inline-end:8px;--ehp-image-border-radius-inline-start:8px;align-items:center;display:flex;justify-content:center;z-index:2}.elementor .ehp-image img{height:var(--ehp-image-height);min-height:var(--ehp-image-min-height);-o-object-fit:cover;object-fit:cover;-o-object-position:var(--ehp-image-position);object-position:var(--ehp-image-position);width:var(--ehp-image-width)}.elementor .ehp-image img.has-shape-custom{--ehp-shapes-border-radius-block-end:var(--ehp-image-border-radius-block-end);--ehp-shapes-border-radius-block-start:var(--ehp-image-border-radius-block-start);--ehp-shapes-border-radius-inline-end:var(--ehp-image-border-radius-inline-end);--ehp-shapes-border-radius-inline-start:var(--ehp-image-border-radius-inline-start)}.elementor .ehp-image img.has-border{border-color:var(--ehp-image-border-color);border-style:solid;border-width:var(--ehp-image-border-width)} -
hello-plus/trunk/build/css/helloplus-zigzag-rtl.css
r3241372 r3250227 1 .ehp-zigzag{--zigzag-title-color:#000;--zigzag-description-color:#000;--zigzag-wrapper-border-width:2px;--zigzag-wrapper-border-color:#000;--zigzag-wrapper-border-radius:0;--zigzag-content-position:center;--zigzag-image-width:50%;--zigzag-icon-width:50%;--zigzag-icon-size:256px;--zigzag-icon-color:#555963;--zigzag-icon-color-alternate:#61ce70;--zigzag-animation-delay:0;--zigzag-animation-duration:1s;--zigzag-animation-duration-slow:2s;--zigzag-animation-duration-normal:1s;--zigzag-animation-duration-fast:0.8s;--zigzag-button-primary-icon-spacing:10px;--zigzag-button-primary-icon-size:16px;--zigzag-button-primary-text-color:#fff;--zigzag-button-primary-text-color-hover:#7a7a7a;--zigzag-button-primary-border-width:0;--zigzag-button-primary-border-color:transparent;--zigzag-button-primary-border-radius-block-end:8px;--zigzag-button-primary-border-radius-block-start:8px;--zigzag-button-primary-border-radius-inline-end:8px;--zigzag-button-primary-border-radius-inline-start:8px;align-items:center;background-color:transparent;display:flex;flex-direction:column}.ehp-zigzag.has-border{border-color:var(--zigzag-wrapper-border-color);border- radius:var(--zigzag-wrapper-border-radius);border-style:solid;border-width:var(--zigzag-wrapper-border-width)}.ehp-zigzag a.ehp-zigzag__button,.ehp-zigzag a.ehp-zigzag__button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--zigzag-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--zigzag-button-primary-icon-size);--ehp-button-primary-text-color:var(--zigzag-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--zigzag-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--zigzag-button-primary-border-width);--ehp-button-primary-border-color:var(--zigzag-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--zigzag-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--zigzag-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--zigzag-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--zigzag-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--zigzag-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--zigzag-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--zigzag-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--zigzag-button-primary-border-radius-inline-start)}.ehp-zigzag .ehp-image{--ehp-image-height:var(--zigzag-image-height);--ehp-image-min-height:var(--zigzag-image-min-height);--ehp-image-position:var(--zigzag-image-position);--ehp-image-border-color:var(--zigzag-image-border-color);--ehp-image-border-width:var(--zigzag-image-border-width);--ehp-image-border-radius-block-end:var(--zigzag-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--zigzag-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--zigzag-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--zigzag-image-border-radius-inline-start)}.ehp-zigzag__button-container{display:flex}.ehp-zigzag.has-alternate-icon-color .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__graphic-element-container{color:var(--zigzag-icon-color-alternate)}.ehp-zigzag__text-container{display:flex;flex-direction:column;justify-content:var(--zigzag-content-position)}.ehp-zigzag__text-container.is-graphic-image{width:calc(100% - var(--zigzag-image-width))}.ehp-zigzag__text-container.is-graphic-icon{width:calc(100% - var(--zigzag-icon-width))}.ehp-zigzag__image-container{width:100%}.ehp-zigzag__title{color:var(--zigzag-title-color)}.ehp-zigzag__description{color:var(--zigzag-description-color);font-size:18px}.ehp-zigzag__graphic-element-container{align-items:var(--zigzag-content-position);display:flex}.ehp-zigzag__graphic-element-container.has-image{width:var(--zigzag-image-width)}.elementor .ehp-zigzag__graphic-element-container.has-image img{width:100%}.ehp-zigzag__graphic-element-container.has-icon{color:var(--zigzag-icon-color);display:flex;justify-content:center;width:var(--zigzag-icon-width)}.ehp-zigzag__graphic-element-container.has-icon svg{fill:currentColor;height:var(--zigzag-icon-size);width:var(--zigzag-icon-size)}.ehp-zigzag__graphic-element-container.has-icon i{font-size:var(--zigzag-icon-size)}.ehp-zigzag__item-container{display:flex;gap:var(--zigzag-column-gap);max-width:var(--zigzag-content-width);padding-block:calc(var(--zigzag-row-gap)/2);padding-inline-end:var(--zigzag-box-padding-inline-end);padding-inline-start:var(--zigzag-box-padding-inline-start);width:100%}.ehp-zigzag.has-entrance-animation .ehp-zigzag__item-wrapper{animation-delay:var(--zigzag-animation-delay);animation-duration:var(--zigzag-animation-duration);animation-fill-mode:both;animation-timing-function:ease}.ehp-zigzag__item-wrapper{display:flex;justify-content:center;width:100%}.ehp-zigzag__item-wrapper:first-of-type .ehp-zigzag__item-container{padding-block-start:var(--zigzag-box-padding-block-start)}.ehp-zigzag__item-wrapper:last-of-type .ehp-zigzag__item-container{padding-block-end:var(--zigzag-box-padding-block-end)}.ehp-zigzag__item-wrapper.hidden{opacity:0;visibility:hidden}.ehp-zigzag__item-wrapper.visible{opacity:1;visibility:visible}@media screen and (min-width:1025px){.ehp-zigzag.has-direction-start .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__item-container{flex-direction:row}.ehp-zigzag.has-direction-end .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__item-container,.ehp-zigzag.has-direction-start .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__item-container{flex-direction:row-reverse}.ehp-zigzag.has-direction-end .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__item-container{flex-direction:row}}@media screen and (max-width:1024px){.ehp-zigzag .ehp-zigzag__item-container{flex-direction:column}.ehp-zigzag.has-direction-end .ehp-zigzag__graphic-element-container{order:2}.ehp-zigzag.has-direction-end .ehp-zigzag__text-container{order:1}.ehp-zigzag .ehp-zigzag__graphic-element-container,.ehp-zigzag .ehp-zigzag__text-container{padding-inline:0;width:100%}}.ehp-zigzag.has-image-stretch .ehp-zigzag__item-container{padding-inline:0}@media screen and (max-width:1024px){.ehp-zigzag.has-image-stretch .ehp-zigzag__item-container{padding-block:0}.ehp-zigzag.has-image-stretch .ehp-zigzag__text-container{padding-inline-end:var(--zigzag-box-padding-inline-end);padding-inline-start:var(--zigzag-box-padding-inline-start)}.ehp-zigzag.has-image-stretch.has-direction-start .ehp-zigzag__text-container{padding-block-end:var(--zigzag-box-padding-block-end)}}@media screen and (min-width:1025px){.ehp-zigzag.has-image-stretch.has-direction-start .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__text-container{padding-inline-end:var(--zigzag-box-padding-inline-end)}.ehp-zigzag.has-image-stretch.has-direction-start .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__text-container{padding-inline-start:var(--zigzag-box-padding-inline-start)}}@media screen and (max-width:1024px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__text-container,.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__text-container{padding-block-start:var(--zigzag-box-padding-block-start)}}@media screen and (min-width:1025px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__text-container{padding-inline-start:var(--zigzag-box-padding-inline-start)}}@media screen and (max-width:1024px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__text-container{padding-block-start:var(--zigzag-box-padding-block-start)}}@media screen and (min-width:1025px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__text-container{padding-inline-end:var(--zigzag-box-padding-inline-end)}}1 .ehp-zigzag{--zigzag-title-color:#000;--zigzag-description-color:#000;--zigzag-wrapper-border-width:2px;--zigzag-wrapper-border-color:#000;--zigzag-wrapper-border-radius:0;--zigzag-content-position:center;--zigzag-image-width:50%;--zigzag-icon-width:50%;--zigzag-icon-size:256px;--zigzag-icon-color:#555963;--zigzag-icon-color-alternate:#61ce70;--zigzag-animation-delay:0;--zigzag-animation-duration:1s;--zigzag-animation-duration-slow:2s;--zigzag-animation-duration-normal:1s;--zigzag-animation-duration-fast:0.8s;--zigzag-button-primary-icon-spacing:10px;--zigzag-button-primary-icon-size:16px;--zigzag-button-primary-text-color:#fff;--zigzag-button-primary-text-color-hover:#7a7a7a;--zigzag-button-primary-border-width:0;--zigzag-button-primary-border-color:transparent;--zigzag-button-primary-border-radius-block-end:8px;--zigzag-button-primary-border-radius-block-start:8px;--zigzag-button-primary-border-radius-inline-end:8px;--zigzag-button-primary-border-radius-inline-start:8px;align-items:center;background-color:transparent;display:flex;flex-direction:column}.ehp-zigzag.has-border{border-color:var(--zigzag-wrapper-border-color);border-style:solid;border-width:var(--zigzag-wrapper-border-width)}.ehp-zigzag a.ehp-zigzag__button,.ehp-zigzag a.ehp-zigzag__button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--zigzag-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--zigzag-button-primary-icon-size);--ehp-button-primary-text-color:var(--zigzag-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--zigzag-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--zigzag-button-primary-border-width);--ehp-button-primary-border-color:var(--zigzag-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--zigzag-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--zigzag-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--zigzag-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--zigzag-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--zigzag-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--zigzag-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--zigzag-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--zigzag-button-primary-border-radius-inline-start)}.ehp-zigzag .ehp-image{--ehp-image-height:var(--zigzag-image-height);--ehp-image-min-height:var(--zigzag-image-min-height);--ehp-image-position:var(--zigzag-image-position);--ehp-image-border-color:var(--zigzag-image-border-color);--ehp-image-border-width:var(--zigzag-image-border-width);--ehp-image-border-radius-block-end:var(--zigzag-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--zigzag-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--zigzag-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--zigzag-image-border-radius-inline-start)}.ehp-zigzag__button-container{display:flex}.ehp-zigzag.has-alternate-icon-color .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__graphic-element-container{color:var(--zigzag-icon-color-alternate)}.ehp-zigzag__text-container{display:flex;flex-direction:column;justify-content:var(--zigzag-content-position)}.ehp-zigzag__text-container.is-graphic-image{width:calc(100% - var(--zigzag-image-width))}.ehp-zigzag__text-container.is-graphic-icon{width:calc(100% - var(--zigzag-icon-width))}.ehp-zigzag__image-container{width:100%}.ehp-zigzag__title{color:var(--zigzag-title-color)}.ehp-zigzag__description{color:var(--zigzag-description-color);font-size:18px}.ehp-zigzag__graphic-element-container{align-items:var(--zigzag-content-position);display:flex}.ehp-zigzag__graphic-element-container.has-image{width:var(--zigzag-image-width)}.elementor .ehp-zigzag__graphic-element-container.has-image img{width:100%}.ehp-zigzag__graphic-element-container.has-icon{color:var(--zigzag-icon-color);display:flex;justify-content:center;width:var(--zigzag-icon-width)}.ehp-zigzag__graphic-element-container.has-icon svg{fill:currentColor;height:var(--zigzag-icon-size);width:var(--zigzag-icon-size)}.ehp-zigzag__graphic-element-container.has-icon i{font-size:var(--zigzag-icon-size)}.ehp-zigzag__item-container{display:flex;gap:var(--zigzag-column-gap);max-width:var(--zigzag-content-width);padding-block:calc(var(--zigzag-row-gap)/2);padding-inline-end:var(--zigzag-box-padding-inline-end);padding-inline-start:var(--zigzag-box-padding-inline-start);width:100%}.ehp-zigzag.has-entrance-animation .ehp-zigzag__item-wrapper{animation-delay:var(--zigzag-animation-delay);animation-duration:var(--zigzag-animation-duration);animation-fill-mode:both;animation-timing-function:ease}.ehp-zigzag__item-wrapper{display:flex;justify-content:center;width:100%}.ehp-zigzag__item-wrapper:first-of-type .ehp-zigzag__item-container{padding-block-start:var(--zigzag-box-padding-block-start)}.ehp-zigzag__item-wrapper:last-of-type .ehp-zigzag__item-container{padding-block-end:var(--zigzag-box-padding-block-end)}.ehp-zigzag__item-wrapper.hidden{opacity:0;visibility:hidden}.ehp-zigzag__item-wrapper.visible{opacity:1;visibility:visible}@media screen and (min-width:1025px){.ehp-zigzag.has-direction-start .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__item-container{flex-direction:row}.ehp-zigzag.has-direction-end .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__item-container,.ehp-zigzag.has-direction-start .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__item-container{flex-direction:row-reverse}.ehp-zigzag.has-direction-end .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__item-container{flex-direction:row}}@media screen and (max-width:1024px){.ehp-zigzag .ehp-zigzag__item-container{flex-direction:column}.ehp-zigzag.has-direction-end .ehp-zigzag__graphic-element-container{order:2}.ehp-zigzag.has-direction-end .ehp-zigzag__text-container{order:1}.ehp-zigzag .ehp-zigzag__graphic-element-container,.ehp-zigzag .ehp-zigzag__text-container{padding-inline:0;width:100%}}.ehp-zigzag.has-image-stretch .ehp-zigzag__item-container{padding-inline:0}@media screen and (max-width:1024px){.ehp-zigzag.has-image-stretch .ehp-zigzag__item-container{padding-block:0}.ehp-zigzag.has-image-stretch .ehp-zigzag__text-container{padding-inline-end:var(--zigzag-box-padding-inline-end);padding-inline-start:var(--zigzag-box-padding-inline-start)}.ehp-zigzag.has-image-stretch.has-direction-start .ehp-zigzag__text-container{padding-block-end:var(--zigzag-box-padding-block-end)}}@media screen and (min-width:1025px){.ehp-zigzag.has-image-stretch.has-direction-start .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__text-container{padding-inline-end:var(--zigzag-box-padding-inline-end)}.ehp-zigzag.has-image-stretch.has-direction-start .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__text-container{padding-inline-start:var(--zigzag-box-padding-inline-start)}}@media screen and (max-width:1024px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__text-container,.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__text-container{padding-block-start:var(--zigzag-box-padding-block-start)}}@media screen and (min-width:1025px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__text-container{padding-inline-start:var(--zigzag-box-padding-inline-start)}}@media screen and (max-width:1024px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__text-container{padding-block-start:var(--zigzag-box-padding-block-start)}}@media screen and (min-width:1025px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__text-container{padding-inline-end:var(--zigzag-box-padding-inline-end)}} -
hello-plus/trunk/build/css/helloplus-zigzag.asset.php
r3241372 r3250227 1 <?php return array('dependencies' => array(), 'version' => ' 7a3619e9abfd9a3d31d5');1 <?php return array('dependencies' => array(), 'version' => 'd8865e6e68e3a8c9e347'); -
hello-plus/trunk/build/css/helloplus-zigzag.css
r3241372 r3250227 1 .ehp-zigzag{--zigzag-title-color:#000;--zigzag-description-color:#000;--zigzag-wrapper-border-width:2px;--zigzag-wrapper-border-color:#000;--zigzag-wrapper-border-radius:0;--zigzag-content-position:center;--zigzag-image-width:50%;--zigzag-icon-width:50%;--zigzag-icon-size:256px;--zigzag-icon-color:#555963;--zigzag-icon-color-alternate:#61ce70;--zigzag-animation-delay:0;--zigzag-animation-duration:1s;--zigzag-animation-duration-slow:2s;--zigzag-animation-duration-normal:1s;--zigzag-animation-duration-fast:0.8s;--zigzag-button-primary-icon-spacing:10px;--zigzag-button-primary-icon-size:16px;--zigzag-button-primary-text-color:#fff;--zigzag-button-primary-text-color-hover:#7a7a7a;--zigzag-button-primary-border-width:0;--zigzag-button-primary-border-color:transparent;--zigzag-button-primary-border-radius-block-end:8px;--zigzag-button-primary-border-radius-block-start:8px;--zigzag-button-primary-border-radius-inline-end:8px;--zigzag-button-primary-border-radius-inline-start:8px;align-items:center;background-color:transparent;display:flex;flex-direction:column}.ehp-zigzag.has-border{border-color:var(--zigzag-wrapper-border-color);border- radius:var(--zigzag-wrapper-border-radius);border-style:solid;border-width:var(--zigzag-wrapper-border-width)}.ehp-zigzag a.ehp-zigzag__button,.ehp-zigzag a.ehp-zigzag__button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--zigzag-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--zigzag-button-primary-icon-size);--ehp-button-primary-text-color:var(--zigzag-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--zigzag-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--zigzag-button-primary-border-width);--ehp-button-primary-border-color:var(--zigzag-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--zigzag-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--zigzag-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--zigzag-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--zigzag-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--zigzag-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--zigzag-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--zigzag-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--zigzag-button-primary-border-radius-inline-start)}.ehp-zigzag .ehp-image{--ehp-image-height:var(--zigzag-image-height);--ehp-image-min-height:var(--zigzag-image-min-height);--ehp-image-position:var(--zigzag-image-position);--ehp-image-border-color:var(--zigzag-image-border-color);--ehp-image-border-width:var(--zigzag-image-border-width);--ehp-image-border-radius-block-end:var(--zigzag-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--zigzag-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--zigzag-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--zigzag-image-border-radius-inline-start)}.ehp-zigzag__button-container{display:flex}.ehp-zigzag.has-alternate-icon-color .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__graphic-element-container{color:var(--zigzag-icon-color-alternate)}.ehp-zigzag__text-container{display:flex;flex-direction:column;justify-content:var(--zigzag-content-position)}.ehp-zigzag__text-container.is-graphic-image{width:calc(100% - var(--zigzag-image-width))}.ehp-zigzag__text-container.is-graphic-icon{width:calc(100% - var(--zigzag-icon-width))}.ehp-zigzag__image-container{width:100%}.ehp-zigzag__title{color:var(--zigzag-title-color)}.ehp-zigzag__description{color:var(--zigzag-description-color);font-size:18px}.ehp-zigzag__graphic-element-container{align-items:var(--zigzag-content-position);display:flex}.ehp-zigzag__graphic-element-container.has-image{width:var(--zigzag-image-width)}.elementor .ehp-zigzag__graphic-element-container.has-image img{width:100%}.ehp-zigzag__graphic-element-container.has-icon{color:var(--zigzag-icon-color);display:flex;justify-content:center;width:var(--zigzag-icon-width)}.ehp-zigzag__graphic-element-container.has-icon svg{fill:currentColor;height:var(--zigzag-icon-size);width:var(--zigzag-icon-size)}.ehp-zigzag__graphic-element-container.has-icon i{font-size:var(--zigzag-icon-size)}.ehp-zigzag__item-container{display:flex;gap:var(--zigzag-column-gap);max-width:var(--zigzag-content-width);padding-block:calc(var(--zigzag-row-gap)/2);padding-inline-end:var(--zigzag-box-padding-inline-end);padding-inline-start:var(--zigzag-box-padding-inline-start);width:100%}.ehp-zigzag.has-entrance-animation .ehp-zigzag__item-wrapper{animation-delay:var(--zigzag-animation-delay);animation-duration:var(--zigzag-animation-duration);animation-fill-mode:both;animation-timing-function:ease}.ehp-zigzag__item-wrapper{display:flex;justify-content:center;width:100%}.ehp-zigzag__item-wrapper:first-of-type .ehp-zigzag__item-container{padding-block-start:var(--zigzag-box-padding-block-start)}.ehp-zigzag__item-wrapper:last-of-type .ehp-zigzag__item-container{padding-block-end:var(--zigzag-box-padding-block-end)}.ehp-zigzag__item-wrapper.hidden{opacity:0;visibility:hidden}.ehp-zigzag__item-wrapper.visible{opacity:1;visibility:visible}@media screen and (min-width:1025px){.ehp-zigzag.has-direction-start .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__item-container{flex-direction:row}.ehp-zigzag.has-direction-end .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__item-container,.ehp-zigzag.has-direction-start .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__item-container{flex-direction:row-reverse}.ehp-zigzag.has-direction-end .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__item-container{flex-direction:row}}@media screen and (max-width:1024px){.ehp-zigzag .ehp-zigzag__item-container{flex-direction:column}.ehp-zigzag.has-direction-end .ehp-zigzag__graphic-element-container{order:2}.ehp-zigzag.has-direction-end .ehp-zigzag__text-container{order:1}.ehp-zigzag .ehp-zigzag__graphic-element-container,.ehp-zigzag .ehp-zigzag__text-container{padding-inline:0;width:100%}}.ehp-zigzag.has-image-stretch .ehp-zigzag__item-container{padding-inline:0}@media screen and (max-width:1024px){.ehp-zigzag.has-image-stretch .ehp-zigzag__item-container{padding-block:0}.ehp-zigzag.has-image-stretch .ehp-zigzag__text-container{padding-inline-end:var(--zigzag-box-padding-inline-end);padding-inline-start:var(--zigzag-box-padding-inline-start)}.ehp-zigzag.has-image-stretch.has-direction-start .ehp-zigzag__text-container{padding-block-end:var(--zigzag-box-padding-block-end)}}@media screen and (min-width:1025px){.ehp-zigzag.has-image-stretch.has-direction-start .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__text-container{padding-inline-end:var(--zigzag-box-padding-inline-end)}.ehp-zigzag.has-image-stretch.has-direction-start .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__text-container{padding-inline-start:var(--zigzag-box-padding-inline-start)}}@media screen and (max-width:1024px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__text-container,.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__text-container{padding-block-start:var(--zigzag-box-padding-block-start)}}@media screen and (min-width:1025px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__text-container{padding-inline-start:var(--zigzag-box-padding-inline-start)}}@media screen and (max-width:1024px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__text-container{padding-block-start:var(--zigzag-box-padding-block-start)}}@media screen and (min-width:1025px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__text-container{padding-inline-end:var(--zigzag-box-padding-inline-end)}}1 .ehp-zigzag{--zigzag-title-color:#000;--zigzag-description-color:#000;--zigzag-wrapper-border-width:2px;--zigzag-wrapper-border-color:#000;--zigzag-wrapper-border-radius:0;--zigzag-content-position:center;--zigzag-image-width:50%;--zigzag-icon-width:50%;--zigzag-icon-size:256px;--zigzag-icon-color:#555963;--zigzag-icon-color-alternate:#61ce70;--zigzag-animation-delay:0;--zigzag-animation-duration:1s;--zigzag-animation-duration-slow:2s;--zigzag-animation-duration-normal:1s;--zigzag-animation-duration-fast:0.8s;--zigzag-button-primary-icon-spacing:10px;--zigzag-button-primary-icon-size:16px;--zigzag-button-primary-text-color:#fff;--zigzag-button-primary-text-color-hover:#7a7a7a;--zigzag-button-primary-border-width:0;--zigzag-button-primary-border-color:transparent;--zigzag-button-primary-border-radius-block-end:8px;--zigzag-button-primary-border-radius-block-start:8px;--zigzag-button-primary-border-radius-inline-end:8px;--zigzag-button-primary-border-radius-inline-start:8px;align-items:center;background-color:transparent;display:flex;flex-direction:column}.ehp-zigzag.has-border{border-color:var(--zigzag-wrapper-border-color);border-style:solid;border-width:var(--zigzag-wrapper-border-width)}.ehp-zigzag a.ehp-zigzag__button,.ehp-zigzag a.ehp-zigzag__button:not([href]):not([tabindex]){--ehp-button-primary-icon-spacing:var(--zigzag-button-primary-icon-spacing);--ehp-button-primary-icon-size:var(--zigzag-button-primary-icon-size);--ehp-button-primary-text-color:var(--zigzag-button-primary-text-color);--ehp-button-primary-text-color-hover:var(--zigzag-button-primary-text-color-hover);--ehp-button-primary-border-width:var(--zigzag-button-primary-border-width);--ehp-button-primary-border-color:var(--zigzag-button-primary-border-color);--ehp-button-primary-padding-block-end:var(--zigzag-button-primary-padding-block-end);--ehp-button-primary-padding-block-start:var(--zigzag-button-primary-padding-block-start);--ehp-button-primary-padding-inline-end:var(--zigzag-button-primary-padding-inline-end);--ehp-button-primary-padding-inline-start:var(--zigzag-button-primary-padding-inline-start);--ehp-button-primary-border-radius-block-end:var(--zigzag-button-primary-border-radius-block-end);--ehp-button-primary-border-radius-block-start:var(--zigzag-button-primary-border-radius-block-start);--ehp-button-primary-border-radius-inline-end:var(--zigzag-button-primary-border-radius-inline-end);--ehp-button-primary-border-radius-inline-start:var(--zigzag-button-primary-border-radius-inline-start)}.ehp-zigzag .ehp-image{--ehp-image-height:var(--zigzag-image-height);--ehp-image-min-height:var(--zigzag-image-min-height);--ehp-image-position:var(--zigzag-image-position);--ehp-image-border-color:var(--zigzag-image-border-color);--ehp-image-border-width:var(--zigzag-image-border-width);--ehp-image-border-radius-block-end:var(--zigzag-image-border-radius-block-end);--ehp-image-border-radius-block-start:var(--zigzag-image-border-radius-block-start);--ehp-image-border-radius-inline-end:var(--zigzag-image-border-radius-inline-end);--ehp-image-border-radius-inline-start:var(--zigzag-image-border-radius-inline-start)}.ehp-zigzag__button-container{display:flex}.ehp-zigzag.has-alternate-icon-color .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__graphic-element-container{color:var(--zigzag-icon-color-alternate)}.ehp-zigzag__text-container{display:flex;flex-direction:column;justify-content:var(--zigzag-content-position)}.ehp-zigzag__text-container.is-graphic-image{width:calc(100% - var(--zigzag-image-width))}.ehp-zigzag__text-container.is-graphic-icon{width:calc(100% - var(--zigzag-icon-width))}.ehp-zigzag__image-container{width:100%}.ehp-zigzag__title{color:var(--zigzag-title-color)}.ehp-zigzag__description{color:var(--zigzag-description-color);font-size:18px}.ehp-zigzag__graphic-element-container{align-items:var(--zigzag-content-position);display:flex}.ehp-zigzag__graphic-element-container.has-image{width:var(--zigzag-image-width)}.elementor .ehp-zigzag__graphic-element-container.has-image img{width:100%}.ehp-zigzag__graphic-element-container.has-icon{color:var(--zigzag-icon-color);display:flex;justify-content:center;width:var(--zigzag-icon-width)}.ehp-zigzag__graphic-element-container.has-icon svg{fill:currentColor;height:var(--zigzag-icon-size);width:var(--zigzag-icon-size)}.ehp-zigzag__graphic-element-container.has-icon i{font-size:var(--zigzag-icon-size)}.ehp-zigzag__item-container{display:flex;gap:var(--zigzag-column-gap);max-width:var(--zigzag-content-width);padding-block:calc(var(--zigzag-row-gap)/2);padding-inline-end:var(--zigzag-box-padding-inline-end);padding-inline-start:var(--zigzag-box-padding-inline-start);width:100%}.ehp-zigzag.has-entrance-animation .ehp-zigzag__item-wrapper{animation-delay:var(--zigzag-animation-delay);animation-duration:var(--zigzag-animation-duration);animation-fill-mode:both;animation-timing-function:ease}.ehp-zigzag__item-wrapper{display:flex;justify-content:center;width:100%}.ehp-zigzag__item-wrapper:first-of-type .ehp-zigzag__item-container{padding-block-start:var(--zigzag-box-padding-block-start)}.ehp-zigzag__item-wrapper:last-of-type .ehp-zigzag__item-container{padding-block-end:var(--zigzag-box-padding-block-end)}.ehp-zigzag__item-wrapper.hidden{opacity:0;visibility:hidden}.ehp-zigzag__item-wrapper.visible{opacity:1;visibility:visible}@media screen and (min-width:1025px){.ehp-zigzag.has-direction-start .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__item-container{flex-direction:row}.ehp-zigzag.has-direction-end .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__item-container,.ehp-zigzag.has-direction-start .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__item-container{flex-direction:row-reverse}.ehp-zigzag.has-direction-end .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__item-container{flex-direction:row}}@media screen and (max-width:1024px){.ehp-zigzag .ehp-zigzag__item-container{flex-direction:column}.ehp-zigzag.has-direction-end .ehp-zigzag__graphic-element-container{order:2}.ehp-zigzag.has-direction-end .ehp-zigzag__text-container{order:1}.ehp-zigzag .ehp-zigzag__graphic-element-container,.ehp-zigzag .ehp-zigzag__text-container{padding-inline:0;width:100%}}.ehp-zigzag.has-image-stretch .ehp-zigzag__item-container{padding-inline:0}@media screen and (max-width:1024px){.ehp-zigzag.has-image-stretch .ehp-zigzag__item-container{padding-block:0}.ehp-zigzag.has-image-stretch .ehp-zigzag__text-container{padding-inline-end:var(--zigzag-box-padding-inline-end);padding-inline-start:var(--zigzag-box-padding-inline-start)}.ehp-zigzag.has-image-stretch.has-direction-start .ehp-zigzag__text-container{padding-block-end:var(--zigzag-box-padding-block-end)}}@media screen and (min-width:1025px){.ehp-zigzag.has-image-stretch.has-direction-start .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__text-container{padding-inline-end:var(--zigzag-box-padding-inline-end)}.ehp-zigzag.has-image-stretch.has-direction-start .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__text-container{padding-inline-start:var(--zigzag-box-padding-inline-start)}}@media screen and (max-width:1024px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__text-container,.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__text-container{padding-block-start:var(--zigzag-box-padding-block-start)}}@media screen and (min-width:1025px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(odd) .ehp-zigzag__text-container{padding-inline-start:var(--zigzag-box-padding-inline-start)}}@media screen and (max-width:1024px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__text-container{padding-block-start:var(--zigzag-box-padding-block-start)}}@media screen and (min-width:1025px){.ehp-zigzag.has-image-stretch.has-direction-end .ehp-zigzag__item-wrapper:nth-child(2n) .ehp-zigzag__text-container{padding-inline-end:var(--zigzag-box-padding-inline-end)}} -
hello-plus/trunk/build/js/helloplus-forms-editor.asset.php
r3203090 r3250227 1 <?php return array('dependencies' => array(), 'version' => ' fd30d225079c4a984793');1 <?php return array('dependencies' => array(), 'version' => '946f923ff2de2618e9c4'); -
hello-plus/trunk/build/js/helloplus-forms-editor.js
r3203090 r3250227 1 !function(){var e={ 9525:function(e){e.exports=elementor.modules.controls.Repeater.extend({onBeforeRender(){this.$el.hide()},updateMap(e){const t=this,o={};t.collection.each((function(e){o[e.get("remote_id")]=e.get("local_id")})),t.collection.reset(),e.forEach((function(e){const n={remote_id:e.remote_id,remote_label:e.remote_label,remote_type:e.remote_type?e.remote_type:"",remote_required:!!e.remote_required&&e.remote_required,local_id:o[e.remote_id]?o[e.remote_id]:""};t.collection.add(n)})),t.render()},onRender(){elementor.modules.controls.Base.prototype.onRender.apply(this,arguments);const e=this;e.children.each((function(t){const o=t.children.last(),n={"":"- "+__("None","elementor")+" -"};let r=t.model.get("remote_label");t.model.get("remote_required")&&(r+='<span class="elementor-required">*</span>'),e.elementSettingsModel.get("form_fields").models.forEach((function(e,o){const r=t.model.get("remote_type");"text"!==r&&r!==e.get("field_type")||(n[e.get("custom_id")]=e.get("field_label")||"Field #"+(o+1))})),o.model.set("label",r),o.model.set("options",n),o.render(),t.$el.find(".elementor-repeater-row-tools").hide(),t.$el.find(".elementor-repeater-row-controls").removeClass("elementor-repeater-row-controls").find(".elementor-control").css({paddingBottom:0})})),e.$el.find(".elementor-button-wrapper").remove(),e.children.length&&e.$el.show()}})},3962:function(e){e.exports=elementorModules.editor.utils.Module.extend({renderField(e,t,o,n){var r=_.escape(t.css_classes),i="",l="",s="";return t.required&&(i="required"),t.acceptance_text&&(l='<label for="form_field_'+o+'">'+t.acceptance_text+"</label>"),t.checked_by_default&&(s=' checked="checked"'),'<div class="elementor-field-subgroup"><span class="elementor-field-option"><input size="1" type="checkbox"'+s+' class="elementor-acceptance-field elementor-field elementor-size-'+n.input_size+" "+r+'" name="form_field_'+o+'" id="form_field_'+o+'" '+i+" > "+l+"</span></div>"},onInit(){elementor.hooks.addFilter("hello_plus/forms/content_template/field/acceptance",this.renderField,10,4)}})},8276:function(e){e.exports=elementorModules.editor.utils.Module.extend({renderField(e,t,o,n){var r=_.escape(t.css_classes),i="",l="";return t.required&&(i="required"),t.placeholder&&(l=' placeholder="'+t.placeholder+'"'),r="elementor-field-textual "+r,'<input size="1" type="'+t.field_type+'" class="elementor-field-textual elementor-field elementor-size-'+n.input_size+" "+r+'" name="form_field_'+o+'" id="form_field_'+o+'" '+i+" "+l+' pattern="[0-9()-]" >'},onInit(){elementor.hooks.addFilter("hello_plus/forms/content_template/field/tel",this.renderField,10,4)}})},7896:function(e){e.exports=function(){var e,t,o,n=function(){var t=e.children.findByModelCid(o.cid);t&&t.render()},r=function(){var e,r=t.get("settings").get("form_fields").where({field_type:"email"});r=_.reject(r,{field_label:""}),e=_.map(r,(function(e){return{id:e.get("custom_id"),label:sprintf("%s Field",e.get("field_label"))}})),o.set("options",{"":o.get("options")[""]}),_.each(e,(function(e){o.get("options")[e.id]=e.label})),n()},i=function(e){o.get("options")[""]=e.get("email_from"),n()},l=function(e){e.get("custom_id")&&"email"===e.get("field_type")&&r(),e.changed.email_from&&i(e)};elementor.hooks.addAction("panel/open_editor/widget/form-lite",(function(n,s){e=n.getCurrentPageView(),t=s,o=e.collection.findWhere({name:"email_reply_to"});var d=t.get("settings");d.on("change",l),i(d),r()}))}}},t={};function o(n){var r=t[n];if(void 0!==r)return r.exports;var i=t[n]={exports:{}};return e[n](i,i.exports,o),i.exports}o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,{a:t}),t},o.d=function(e,t){for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){"use strict";var e={};o.r(e),o.d(e,{FormFieldsSanitizeCustomId:function(){return t},FormFieldsSetCustomId:function(){return n},FormFieldsUpdateShortCode:function(){return i},FormSanitizeId:function(){return r}});class t extends $e.modules.hookData.Dependency{ID_SANITIZE_FILTER=/[^\w]/g;getCommand(){return"document/elements/settings"}getId(){return"elementor-pro-forms-fields-sanitize-custom-id"}getContainerType(){return"repeater"}getConditions(e){return void 0!==e.settings.custom_id}apply(e){const{containers:t=[e.container],settings:o}=e,{custom_id:n}=o;return!n.match(this.ID_SANITIZE_FILTER)||(t.forEach((e=>{const t=e.panel.getControlView("form_fields").children.findByModel(e.settings).children.find((e=>"custom_id"===e.model.get("name")));t.render(),t.$el.find("input").trigger("focus")})),!1)}}class n extends $e.modules.hookData.After{getCommand(){return"document/repeater/insert"}getId(){return"elementor-pro-forms-fields-set-custom-id"}getContainerType(){return"widget"}getConditions(e){return"form_fields"===e.name}apply(e,t){const{containers:o=[e.container]}=e,n=$e.commands.isCurrentFirstTrace("document/repeater/duplicate");return o.forEach((e=>{const o=e.repeaters.form_fields.children.find((e=>!!e&&t.get("_id")===e.id));!n&&o.settings.get("custom_id")||$e.run("document/elements/settings",{container:o,settings:{custom_id:"field_"+o.id},options:{external:!0}})})),!0}}class r extends $e.modules.hookData.Dependency{ID_SANITIZE_FILTER=/[^\w]/g;getCommand(){return"document/elements/settings"}getId(){return"elementor-pro-forms-sanitize-id"}getContainerType(){return"widget"}getConditions(e){return void 0!==e.settings.form_id}apply(e){const{container:t,settings:o}=e,{form_id:n}=o;if(n.match(this.ID_SANITIZE_FILTER)){const e=t.panel.getControlView("form_id");return e.render(),e.$el.find("input").trigger("focus"),!1}return!0}}class i extends $e.modules.hookUI.After{getCommand(){return"document/elements/settings"}getId(){return"elementor-pro-forms-fields-update-shortcode"}getContainerType(){return"repeater"}getConditions(e){return!(!$e.routes.isPartOf("panel/editor")||void 0===e.settings.custom_id)}apply(e){const{containers:t=[e.container]}=e;t.forEach((e=>{e.panel.getControlView("form_fields").children.find((t=>e.id===t.model.get("_id"))).children.find((e=>"shortcode"===e.model.get("name"))).render()}))}}class l extends $e.modules.ComponentBase{getNamespace(){return"ehp-forms-lite"}defaultHooks(){return this.importHooks(e)}}var s=o(9525),d=o.n(s),c=class extends elementor.modules.controls.RepeaterRow{toggleFieldTypeControl(e){const t=this.collection.findWhere({name:"field_type"});this.children.findByModel(t).$el.toggle(e)}toggleStepField(e){this.$el.toggleClass("elementor-repeater-row--form-step",e)}toggleTools(e){this.ui.removeButton.add(this.ui.duplicateButton).toggle(e)}},a=class extends elementor.modules.controls.Repeater{className(){let e=super.className();return e+=" elementor-control-type-repeater",e}getChildView(){return c}initialize(...e){super.initialize(...e);const t=this.container.settings.get("form_fields");this.listenTo(t,"change",(e=>this.onFormFieldChange(e))).listenTo(t,"remove",(e=>this.onFormFieldRemove(e)))}getFirstChild(){return this.children.findByModel(this.collection.models[0])}lockFirstStep(){const e=this.getFirstChild();"step"===e.model.get("field_type")&&(1<this.collection.where({field_type:"step"}).length&&(e.toggleFieldTypeControl(!1),e.toggleTools(!1)),e.toggleSort(!1))}onFormFieldChange(e){const t=e.changed.field_type;if(!t||"step"!==t&&"step"!==e._previousAttributes.field_type)return;const o="step"===t;this.children.findByModel(e).toggleStepField(o),this.onStepFieldChanged(o)}onFormFieldRemove(e){"step"===e.get("field_type")&&this.onStepFieldChanged(!1)}onStepFieldChanged(e){if(e)return void this.lockFirstStep();const t=this.collection.where({field_type:"step"});if(t.length>1)return;const o=this.getFirstChild();if(1===t.length)return o.toggleTools(!0),void o.toggleFieldTypeControl(!0);o.toggleSort(!0)}onAddChild(e){super.onAddChild(e),"step"===e.model.get("field_type")&&(this.lockFirstStep(),e.toggleStepField(!0))}};class m extends elementorModules.editor.utils.Module{onElementorInit(){const e=o(7896);this.replyToField=new e;const t=o(3962),n=o(8276);this.Fields={tel:new n("ehp-form"),acceptance:new t("ehp-form")},elementor.addControlView("Fields_map",d()),elementor.addControlView("form-fields-repeater",a)}onElementorInitComponents(){$e.components.register(new l({manager:this}))}}const u=new m;window.helloPlusForms=u}()}();1 !function(){var e={3962:function(e){e.exports=elementorModules.editor.utils.Module.extend({renderField(e,t,o,n){var r=_.escape(t.css_classes),i="",l="",s="";return t.required&&(i="required"),t.acceptance_text&&(l='<label for="form_field_'+o+'">'+t.acceptance_text+"</label>"),t.checked_by_default&&(s=' checked="checked"'),'<div class="elementor-field-subgroup"><span class="elementor-field-option"><input size="1" type="checkbox"'+s+' class="elementor-acceptance-field elementor-field elementor-size-'+n.input_size+" "+r+'" name="form_field_'+o+'" id="form_field_'+o+'" '+i+" > "+l+"</span></div>"},onInit(){elementor.hooks.addFilter("hello_plus/forms/content_template/field/acceptance",this.renderField,10,4)}})},7896:function(e){e.exports=function(){var e,t,o,n=function(){var t=e.children.findByModelCid(o.cid);t&&t.render()},r=function(){var e,r=t.get("settings").get("form_fields").where({field_type:"email"});r=_.reject(r,{field_label:""}),e=_.map(r,(function(e){return{id:e.get("custom_id"),label:sprintf("%s Field",e.get("field_label"))}})),o.set("options",{"":o.get("options")[""]}),_.each(e,(function(e){o.get("options")[e.id]=e.label})),n()},i=function(e){o.get("options")[""]=e.get("email_from"),n()},l=function(e){e.get("custom_id")&&"email"===e.get("field_type")&&r(),e.changed.email_from&&i(e)};elementor.hooks.addAction("panel/open_editor/widget/form-lite",(function(n,s){e=n.getCurrentPageView(),t=s,o=e.collection.findWhere({name:"email_reply_to"});var d=t.get("settings");d.on("change",l),i(d),r()}))}},8276:function(e){e.exports=elementorModules.editor.utils.Module.extend({renderField(e,t,o,n){var r=_.escape(t.css_classes),i="",l="";return t.required&&(i="required"),t.placeholder&&(l=' placeholder="'+t.placeholder+'"'),r="elementor-field-textual "+r,'<input size="1" type="'+t.field_type+'" class="elementor-field-textual elementor-field elementor-size-'+n.input_size+" "+r+'" name="form_field_'+o+'" id="form_field_'+o+'" '+i+" "+l+' pattern="[0-9()-]" >'},onInit(){elementor.hooks.addFilter("hello_plus/forms/content_template/field/tel",this.renderField,10,4)}})},9525:function(e){e.exports=elementor.modules.controls.Repeater.extend({onBeforeRender(){this.$el.hide()},updateMap(e){const t=this,o={};t.collection.each((function(e){o[e.get("remote_id")]=e.get("local_id")})),t.collection.reset(),e.forEach((function(e){const n={remote_id:e.remote_id,remote_label:e.remote_label,remote_type:e.remote_type?e.remote_type:"",remote_required:!!e.remote_required&&e.remote_required,local_id:o[e.remote_id]?o[e.remote_id]:""};t.collection.add(n)})),t.render()},onRender(){elementor.modules.controls.Base.prototype.onRender.apply(this,arguments);const e=this;e.children.each((function(t){const o=t.children.last(),n={"":"- "+__("None","elementor")+" -"};let r=t.model.get("remote_label");t.model.get("remote_required")&&(r+='<span class="elementor-required">*</span>'),e.elementSettingsModel.get("form_fields").models.forEach((function(e,o){const r=t.model.get("remote_type");"text"!==r&&r!==e.get("field_type")||(n[e.get("custom_id")]=e.get("field_label")||"Field #"+(o+1))})),o.model.set("label",r),o.model.set("options",n),o.render(),t.$el.find(".elementor-repeater-row-tools").hide(),t.$el.find(".elementor-repeater-row-controls").removeClass("elementor-repeater-row-controls").find(".elementor-control").css({paddingBottom:0})})),e.$el.find(".elementor-button-wrapper").remove(),e.children.length&&e.$el.show()}})}},t={};function o(n){var r=t[n];if(void 0!==r)return r.exports;var i=t[n]={exports:{}};return e[n](i,i.exports,o),i.exports}o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,{a:t}),t},o.d=function(e,t){for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){"use strict";var e={};o.r(e),o.d(e,{FormFieldsSanitizeCustomId:function(){return t},FormFieldsSetCustomId:function(){return n},FormFieldsUpdateShortCode:function(){return i},FormSanitizeId:function(){return r}});class t extends $e.modules.hookData.Dependency{ID_SANITIZE_FILTER=/[^\w]/g;getCommand(){return"document/elements/settings"}getId(){return"elementor-pro-forms-fields-sanitize-custom-id"}getContainerType(){return"repeater"}getConditions(e){return void 0!==e.settings.custom_id}apply(e){const{containers:t=[e.container],settings:o}=e,{custom_id:n}=o;return!n.match(this.ID_SANITIZE_FILTER)||(t.forEach((e=>{const t=e.panel.getControlView("form_fields").children.findByModel(e.settings).children.find((e=>"custom_id"===e.model.get("name")));t.render(),t.$el.find("input").trigger("focus")})),!1)}}class n extends $e.modules.hookData.After{getCommand(){return"document/repeater/insert"}getId(){return"elementor-pro-forms-fields-set-custom-id"}getContainerType(){return"widget"}getConditions(e){return"form_fields"===e.name}apply(e,t){const{containers:o=[e.container]}=e,n=$e.commands.isCurrentFirstTrace("document/repeater/duplicate");return o.forEach((e=>{const o=e.repeaters.form_fields.children.find((e=>!!e&&t.get("_id")===e.id));!n&&o.settings.get("custom_id")||$e.run("document/elements/settings",{container:o,settings:{custom_id:"field_"+o.id},options:{external:!0}})})),!0}}class r extends $e.modules.hookData.Dependency{ID_SANITIZE_FILTER=/[^\w]/g;getCommand(){return"document/elements/settings"}getId(){return"elementor-pro-forms-sanitize-id"}getContainerType(){return"widget"}getConditions(e){return void 0!==e.settings.form_id}apply(e){const{container:t,settings:o}=e,{form_id:n}=o;if(n.match(this.ID_SANITIZE_FILTER)){const e=t.panel.getControlView("form_id");return e.render(),e.$el.find("input").trigger("focus"),!1}return!0}}class i extends $e.modules.hookUI.After{getCommand(){return"document/elements/settings"}getId(){return"elementor-pro-forms-fields-update-shortcode"}getContainerType(){return"repeater"}getConditions(e){return!(!$e.routes.isPartOf("panel/editor")||void 0===e.settings.custom_id)}apply(e){const{containers:t=[e.container]}=e;t.forEach((e=>{e.panel.getControlView("form_fields").children.find((t=>e.id===t.model.get("_id"))).children.find((e=>"shortcode"===e.model.get("name"))).render()}))}}class l extends $e.modules.ComponentBase{getNamespace(){return"ehp-forms-lite"}defaultHooks(){return this.importHooks(e)}}var s=o(9525),d=o.n(s),c=class extends elementor.modules.controls.RepeaterRow{toggleFieldTypeControl(e){const t=this.collection.findWhere({name:"field_type"});this.children.findByModel(t).$el.toggle(e)}toggleStepField(e){this.$el.toggleClass("elementor-repeater-row--form-step",e)}toggleTools(e){this.ui.removeButton.add(this.ui.duplicateButton).toggle(e)}},a=class extends elementor.modules.controls.Repeater{className(){let e=super.className();return e+=" elementor-control-type-repeater",e}getChildView(){return c}initialize(...e){super.initialize(...e);const t=this.container.settings.get("form_fields");this.listenTo(t,"change",(e=>this.onFormFieldChange(e))).listenTo(t,"remove",(e=>this.onFormFieldRemove(e)))}getFirstChild(){return this.children.findByModel(this.collection.models[0])}lockFirstStep(){const e=this.getFirstChild();"step"===e.model.get("field_type")&&(1<this.collection.where({field_type:"step"}).length&&(e.toggleFieldTypeControl(!1),e.toggleTools(!1)),e.toggleSort(!1))}onFormFieldChange(e){const t=e.changed.field_type;if(!t||"step"!==t&&"step"!==e._previousAttributes.field_type)return;const o="step"===t;this.children.findByModel(e).toggleStepField(o),this.onStepFieldChanged(o)}onFormFieldRemove(e){"step"===e.get("field_type")&&this.onStepFieldChanged(!1)}onStepFieldChanged(e){if(e)return void this.lockFirstStep();const t=this.collection.where({field_type:"step"});if(t.length>1)return;const o=this.getFirstChild();if(1===t.length)return o.toggleTools(!0),void o.toggleFieldTypeControl(!0);o.toggleSort(!0)}onAddChild(e){super.onAddChild(e),"step"===e.model.get("field_type")&&(this.lockFirstStep(),e.toggleStepField(!0))}};class m extends elementorModules.editor.utils.Module{onElementorInit(){const e=o(7896);this.replyToField=new e;const t=o(3962),n=o(8276);this.Fields={tel:new n("ehp-form"),acceptance:new t("ehp-form")},elementor.addControlView("Fields_map",d()),elementor.addControlView("form-fields-repeater",a)}onElementorInitComponents(){$e.components.register(new l({manager:this}))}}const u=new m;window.helloPlusForms=u}()}(); -
hello-plus/trunk/build/js/helloplus-forms-fe.asset.php
r3241372 r3250227 1 <?php return array('dependencies' => array(), 'version' => ' 116972a55c8bcb48e22d');1 <?php return array('dependencies' => array(), 'version' => 'e9b852fa0b056a8800e9'); -
hello-plus/trunk/build/js/helloplus-forms-fe.js
r3241372 r3250227 1 !function(){"use strict";var e,t,n={},r={};function o(e){var t=r[e];if(void 0!==t)return t.exports;var i=r[e]={exports:{}};return n[e](i,i.exports,o),i.exports}o.m=n,o.d=function(e,t){for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},o.f={},o.e=function(e){return Promise.all(Object.keys(o.f).reduce((function(t,n){return o.f[n](e,t),t}),[]))},o.u=function(e){return"js/ehp-form-lite.js?ver= 7461f6fe1b04b8d7008b"},o.miniCssF=function(e){},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},e={},t="hello-plus:",o.l=function(n,r,i,u){if(e[n])e[n].push(r);else{var a,c;if(void 0!==i)for(var l=document.getElementsByTagName("script"),s=0;s<l.length;s++){var d=l[s];if(d.getAttribute("src")==n||d.getAttribute("data-webpack")==t+i){a=d;break}}a||(c=!0,(a=document.createElement("script")).charset="utf-8",a.timeout=120,o.nc&&a.setAttribute("nonce",o.nc),a.setAttribute("data-webpack",t+i),a.src=n),e[n]=[r];var f=function(t,r){a.onerror=a.onload=null,clearTimeout(p);var o=e[n];if(delete e[n],a.parentNode&&a.parentNode.removeChild(a),o&&o.forEach((function(e){return e(r)})),t)return t(r)},p=setTimeout(f.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=f.bind(null,a.onerror),a.onload=f.bind(null,a.onload),c&&document.head.appendChild(a)}},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){var e;o.g.importScripts&&(e=o.g.location+"");var t=o.g.document;if(!e&&t&&(t.currentScript&&"SCRIPT"===t.currentScript.tagName.toUpperCase()&&(e=t.currentScript.src),!e)){var n=t.getElementsByTagName("script");if(n.length)for(var r=n.length-1;r>-1&&(!e||!/^http(s?):/.test(e));)e=n[r--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=e+"../"}(),function(){var e={5:0};o.f.j=function(t,n){var r=o.o(e,t)?e[t]:void 0;if(0!==r)if(r)n.push(r[2]);else{var i=new Promise((function(n,o){r=e[t]=[n,o]}));n.push(r[2]=i);var u=o.p+o.u(t),a=new Error;o.l(u,(function(n){if(o.o(e,t)&&(0!==(r=e[t])&&(e[t]=void 0),r)){var i=n&&("load"===n.type?"missing":n.type),u=n&&n.target&&n.target.src;a.message="Loading chunk "+t+" failed.\n("+i+": "+u+")",a.name="ChunkLoadError",a.type=i,a.request=u,r[1](a)}}),"chunk-"+t,t)}};var t=function(t,n){var r,i,u=n[0],a=n[1],c=n[2],l=0;if(u.some((function(t){return 0!==e[t]}))){for(r in a)o.o(a,r)&&(o.m[r]=a[r]);c&&c(o)}for(t&&t(n);l<u.length;l++)i=u[l],o.o(e,i)&&e[i]&&e[i][0](),e[i]=0},n=self.webpackChunkhello_plus=self.webpackChunkhello_plus||[];n.forEach(t.bind(null,0)),n.push=t.bind(null,n.push.bind(n))}();class i extends elementorModules.Module{constructor(){super(),elementorFrontend.elementsHandler.attachHandler("ehp-form",[()=>o.e(498).then(o.bind(o,4746)),()=>o.e(498).then(o.bind(o,4719))]),elementorFrontend.elementsHandler.attachHandler("subscribe",[()=>o.e(498).then(o.bind(o,4746)),()=>o.e(498).then(o.bind(o,4719))])}}window.addEventListener("elementor/frontend/init",(()=>{new i}))}();1 !function(){"use strict";var e,t,n={},r={};function o(e){var t=r[e];if(void 0!==t)return t.exports;var i=r[e]={exports:{}};return n[e](i,i.exports,o),i.exports}o.m=n,o.d=function(e,t){for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},o.f={},o.e=function(e){return Promise.all(Object.keys(o.f).reduce((function(t,n){return o.f[n](e,t),t}),[]))},o.u=function(e){return"js/ehp-form-lite.js?ver=d04899ca5890f862df2e"},o.miniCssF=function(e){},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},e={},t="hello-plus:",o.l=function(n,r,i,u){if(e[n])e[n].push(r);else{var a,c;if(void 0!==i)for(var l=document.getElementsByTagName("script"),s=0;s<l.length;s++){var d=l[s];if(d.getAttribute("src")==n||d.getAttribute("data-webpack")==t+i){a=d;break}}a||(c=!0,(a=document.createElement("script")).charset="utf-8",a.timeout=120,o.nc&&a.setAttribute("nonce",o.nc),a.setAttribute("data-webpack",t+i),a.src=n),e[n]=[r];var f=function(t,r){a.onerror=a.onload=null,clearTimeout(p);var o=e[n];if(delete e[n],a.parentNode&&a.parentNode.removeChild(a),o&&o.forEach((function(e){return e(r)})),t)return t(r)},p=setTimeout(f.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=f.bind(null,a.onerror),a.onload=f.bind(null,a.onload),c&&document.head.appendChild(a)}},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){var e;o.g.importScripts&&(e=o.g.location+"");var t=o.g.document;if(!e&&t&&(t.currentScript&&"SCRIPT"===t.currentScript.tagName.toUpperCase()&&(e=t.currentScript.src),!e)){var n=t.getElementsByTagName("script");if(n.length)for(var r=n.length-1;r>-1&&(!e||!/^http(s?):/.test(e));)e=n[r--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=e+"../"}(),function(){var e={5:0};o.f.j=function(t,n){var r=o.o(e,t)?e[t]:void 0;if(0!==r)if(r)n.push(r[2]);else{var i=new Promise((function(n,o){r=e[t]=[n,o]}));n.push(r[2]=i);var u=o.p+o.u(t),a=new Error;o.l(u,(function(n){if(o.o(e,t)&&(0!==(r=e[t])&&(e[t]=void 0),r)){var i=n&&("load"===n.type?"missing":n.type),u=n&&n.target&&n.target.src;a.message="Loading chunk "+t+" failed.\n("+i+": "+u+")",a.name="ChunkLoadError",a.type=i,a.request=u,r[1](a)}}),"chunk-"+t,t)}};var t=function(t,n){var r,i,u=n[0],a=n[1],c=n[2],l=0;if(u.some((function(t){return 0!==e[t]}))){for(r in a)o.o(a,r)&&(o.m[r]=a[r]);c&&c(o)}for(t&&t(n);l<u.length;l++)i=u[l],o.o(e,i)&&e[i]&&e[i][0](),e[i]=0},n=self.webpackChunkhello_plus=self.webpackChunkhello_plus||[];n.forEach(t.bind(null,0)),n.push=t.bind(null,n.push.bind(n))}();class i extends elementorModules.Module{constructor(){super(),elementorFrontend.elementsHandler.attachHandler("ehp-form",[()=>o.e(498).then(o.bind(o,4746)),()=>o.e(498).then(o.bind(o,4719))]),elementorFrontend.elementsHandler.attachHandler("subscribe",[()=>o.e(498).then(o.bind(o,4746)),()=>o.e(498).then(o.bind(o,4719))])}}window.addEventListener("elementor/frontend/init",(()=>{new i}))}(); -
hello-plus/trunk/build/js/helloplus-header-fe.asset.php
r3241372 r3250227 1 <?php return array('dependencies' => array(), 'version' => ' db1eb694ddfab507d7b8');1 <?php return array('dependencies' => array(), 'version' => 'e2c65c3032195ccd29be'); -
hello-plus/trunk/build/js/helloplus-header-fe.js
r3241372 r3250227 1 !function(){"use strict";var e,t,r={},n={};function o(e){var t=n[e];if(void 0!==t)return t.exports;var i=n[e]={exports:{}};return r[e](i,i.exports,o),i.exports}o.m=r,o.d=function(e,t){for(var r in t)o.o(t,r)&&!o.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},o.f={},o.e=function(e){return Promise.all(Object.keys(o.f).reduce((function(t,r){return o.f[r](e,t),t}),[]))},o.u=function(e){return"js/ehp-header-fe.js?ver= 587a7c59c20aec17ba14"},o.miniCssF=function(e){},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},e={},t="hello-plus:",o.l=function(r,n,i,u){if(e[r])e[r].push(n);else{var a,c;if(void 0!==i)for(var l=document.getElementsByTagName("script"),s=0;s<l.length;s++){var f=l[s];if(f.getAttribute("src")==r||f.getAttribute("data-webpack")==t+i){a=f;break}}a||(c=!0,(a=document.createElement("script")).charset="utf-8",a.timeout=120,o.nc&&a.setAttribute("nonce",o.nc),a.setAttribute("data-webpack",t+i),a.src=r),e[r]=[n];var d=function(t,n){a.onerror=a.onload=null,clearTimeout(p);var o=e[r];if(delete e[r],a.parentNode&&a.parentNode.removeChild(a),o&&o.forEach((function(e){return e(n)})),t)return t(n)},p=setTimeout(d.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=d.bind(null,a.onerror),a.onload=d.bind(null,a.onload),c&&document.head.appendChild(a)}},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){var e;o.g.importScripts&&(e=o.g.location+"");var t=o.g.document;if(!e&&t&&(t.currentScript&&"SCRIPT"===t.currentScript.tagName.toUpperCase()&&(e=t.currentScript.src),!e)){var r=t.getElementsByTagName("script");if(r.length)for(var n=r.length-1;n>-1&&(!e||!/^http(s?):/.test(e));)e=r[n--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=e+"../"}(),function(){var e={159:0};o.f.j=function(t,r){var n=o.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var i=new Promise((function(r,o){n=e[t]=[r,o]}));r.push(n[2]=i);var u=o.p+o.u(t),a=new Error;o.l(u,(function(r){if(o.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var i=r&&("load"===r.type?"missing":r.type),u=r&&r.target&&r.target.src;a.message="Loading chunk "+t+" failed.\n("+i+": "+u+")",a.name="ChunkLoadError",a.type=i,a.request=u,n[1](a)}}),"chunk-"+t,t)}};var t=function(t,r){var n,i,u=r[0],a=r[1],c=r[2],l=0;if(u.some((function(t){return 0!==e[t]}))){for(n in a)o.o(a,n)&&(o.m[n]=a[n]);c&&c(o)}for(t&&t(r);l<u.length;l++)i=u[l],o.o(e,i)&&e[i]&&e[i][0](),e[i]=0},r=self.webpackChunkhello_plus=self.webpackChunkhello_plus||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))}();class i extends elementorModules.Module{constructor(){super(),elementorFrontend.elementsHandler.attachHandler("ehp-header",[()=>o.e(802).then(o.bind(o,7682))])}}window.addEventListener("elementor/frontend/init",(()=>{new i}))}();1 !function(){"use strict";var e,t,r={},n={};function o(e){var t=n[e];if(void 0!==t)return t.exports;var i=n[e]={exports:{}};return r[e](i,i.exports,o),i.exports}o.m=r,o.d=function(e,t){for(var r in t)o.o(t,r)&&!o.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},o.f={},o.e=function(e){return Promise.all(Object.keys(o.f).reduce((function(t,r){return o.f[r](e,t),t}),[]))},o.u=function(e){return"js/ehp-header-fe.js?ver=339325262c1c8efc52b6"},o.miniCssF=function(e){},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},e={},t="hello-plus:",o.l=function(r,n,i,u){if(e[r])e[r].push(n);else{var a,c;if(void 0!==i)for(var l=document.getElementsByTagName("script"),s=0;s<l.length;s++){var f=l[s];if(f.getAttribute("src")==r||f.getAttribute("data-webpack")==t+i){a=f;break}}a||(c=!0,(a=document.createElement("script")).charset="utf-8",a.timeout=120,o.nc&&a.setAttribute("nonce",o.nc),a.setAttribute("data-webpack",t+i),a.src=r),e[r]=[n];var d=function(t,n){a.onerror=a.onload=null,clearTimeout(p);var o=e[r];if(delete e[r],a.parentNode&&a.parentNode.removeChild(a),o&&o.forEach((function(e){return e(n)})),t)return t(n)},p=setTimeout(d.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=d.bind(null,a.onerror),a.onload=d.bind(null,a.onload),c&&document.head.appendChild(a)}},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){var e;o.g.importScripts&&(e=o.g.location+"");var t=o.g.document;if(!e&&t&&(t.currentScript&&"SCRIPT"===t.currentScript.tagName.toUpperCase()&&(e=t.currentScript.src),!e)){var r=t.getElementsByTagName("script");if(r.length)for(var n=r.length-1;n>-1&&(!e||!/^http(s?):/.test(e));)e=r[n--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=e+"../"}(),function(){var e={159:0};o.f.j=function(t,r){var n=o.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var i=new Promise((function(r,o){n=e[t]=[r,o]}));r.push(n[2]=i);var u=o.p+o.u(t),a=new Error;o.l(u,(function(r){if(o.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var i=r&&("load"===r.type?"missing":r.type),u=r&&r.target&&r.target.src;a.message="Loading chunk "+t+" failed.\n("+i+": "+u+")",a.name="ChunkLoadError",a.type=i,a.request=u,n[1](a)}}),"chunk-"+t,t)}};var t=function(t,r){var n,i,u=r[0],a=r[1],c=r[2],l=0;if(u.some((function(t){return 0!==e[t]}))){for(n in a)o.o(a,n)&&(o.m[n]=a[n]);c&&c(o)}for(t&&t(r);l<u.length;l++)i=u[l],o.o(e,i)&&e[i]&&e[i][0](),e[i]=0},r=self.webpackChunkhello_plus=self.webpackChunkhello_plus||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))}();class i extends elementorModules.Module{constructor(){super(),elementorFrontend.elementsHandler.attachHandler("ehp-header",[()=>o.e(802).then(o.bind(o,7682))])}}window.addEventListener("elementor/frontend/init",(()=>{new i}))}(); -
hello-plus/trunk/build/js/helloplus-onboarding.asset.php
r3241372 r3250227 1 <?php return array('dependencies' => array('react', 'react-dom', 'react-jsx-runtime', 'wp-api-fetch', 'wp-i18n'), 'version' => ' 0888b2d5f606e23d453d');1 <?php return array('dependencies' => array('react', 'react-dom', 'react-jsx-runtime', 'wp-api-fetch', 'wp-i18n'), 'version' => '634bbe0ccd2a10948822'); -
hello-plus/trunk/build/js/helloplus-onboarding.js
r3241372 r3250227 1 !function(){var e={ 1568:function(e,t,r){"use strict";r.d(t,{A:function(){return ne}});var n=r(5047),o=Math.abs,a=String.fromCharCode,i=Object.assign;function s(e){return e.trim()}function l(e,t,r){return e.replace(t,r)}function c(e,t){return e.indexOf(t)}function u(e,t){return 0|e.charCodeAt(t)}function d(e,t,r){return e.slice(t,r)}function p(e){return e.length}function f(e){return e.length}function m(e,t){return t.push(e),e}var h=1,g=1,v=0,b=0,y=0,x="";function w(e,t,r,n,o,a,i){return{value:e,root:t,parent:r,type:n,props:o,children:a,line:h,column:g,length:i,return:""}}function k(e,t){return i(w("",null,null,"",null,null,0),e,{length:-e.length},t)}function S(){return y=b>0?u(x,--b):0,g--,10===y&&(g=1,h--),y}function C(){return y=b<v?u(x,b++):0,g++,10===y&&(g=1,h++),y}function A(){return u(x,b)}function M(){return b}function R(e,t){return d(x,e,t)}function $(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function E(e){return h=g=1,v=p(x=e),b=0,[]}function I(e){return x="",e}function O(e){return s(R(b-1,P(91===e?e+2:40===e?e+1:e)))}function j(e){for(;(y=A())&&y<33;)C();return $(e)>2||$(y)>3?"":" "}function T(e,t){for(;--t&&C()&&!(y<48||y>102||y>57&&y<65||y>70&&y<97););return R(e,M()+(t<6&&32==A()&&32==C()))}function P(e){for(;C();)switch(y){case e:return b;case 34:case 39:34!==e&&39!==e&&P(y);break;case 40:41===e&&P(e);break;case 92:C()}return b}function B(e,t){for(;C()&&e+y!==57&&(e+y!==84||47!==A()););return"/*"+R(t,b-1)+"*"+a(47===e?e:C())}function _(e){for(;!$(A());)C();return R(e,b)}var z="-ms-",L="-moz-",N="-webkit-",W="comm",F="rule",D="decl",H="@keyframes";function V(e,t){for(var r="",n=f(e),o=0;o<n;o++)r+=t(e[o],o,e,t)||"";return r}function G(e,t,r,n){switch(e.type){case"@layer":if(e.children.length)break;case"@import":case D:return e.return=e.return||e.value;case W:return"";case H:return e.return=e.value+"{"+V(e.children,n)+"}";case F:e.value=e.props.join(",")}return p(r=V(e.children,n))?e.return=e.value+"{"+r+"}":""}function K(e){return I(U("",null,null,null,[""],e=E(e),0,[0],e))}function U(e,t,r,n,o,i,s,d,f){for(var h=0,g=0,v=s,b=0,y=0,x=0,w=1,k=1,R=1,$=0,E="",I=o,P=i,z=n,L=E;k;)switch(x=$,$=C()){case 40:if(108!=x&&58==u(L,v-1)){-1!=c(L+=l(O($),"&","&\f"),"&\f")&&(R=-1);break}case 34:case 39:case 91:L+=O($);break;case 9:case 10:case 13:case 32:L+=j(x);break;case 92:L+=T(M()-1,7);continue;case 47:switch(A()){case 42:case 47:m(Z(B(C(),M()),t,r),f);break;default:L+="/"}break;case 123*w:d[h++]=p(L)*R;case 125*w:case 59:case 0:switch($){case 0:case 125:k=0;case 59+g:-1==R&&(L=l(L,/\f/g,"")),y>0&&p(L)-v&&m(y>32?Y(L+";",n,r,v-1):Y(l(L," ","")+";",n,r,v-2),f);break;case 59:L+=";";default:if(m(z=X(L,t,r,h,g,o,d,E,I=[],P=[],v),i),123===$)if(0===g)U(L,t,z,z,I,i,v,d,P);else switch(99===b&&110===u(L,3)?100:b){case 100:case 108:case 109:case 115:U(e,z,z,n&&m(X(e,z,z,0,0,o,d,E,o,I=[],v),P),o,P,v,d,n?I:P);break;default:U(L,z,z,z,[""],P,0,d,P)}}h=g=y=0,w=R=1,E=L="",v=s;break;case 58:v=1+p(L),y=x;default:if(w<1)if(123==$)--w;else if(125==$&&0==w++&&125==S())continue;switch(L+=a($),$*w){case 38:R=g>0?1:(L+="\f",-1);break;case 44:d[h++]=(p(L)-1)*R,R=1;break;case 64:45===A()&&(L+=O(C())),b=A(),g=v=p(E=L+=_(M())),$++;break;case 45:45===x&&2==p(L)&&(w=0)}}return i}function X(e,t,r,n,a,i,c,u,p,m,h){for(var g=a-1,v=0===a?i:[""],b=f(v),y=0,x=0,k=0;y<n;++y)for(var S=0,C=d(e,g+1,g=o(x=c[y])),A=e;S<b;++S)(A=s(x>0?v[S]+" "+C:l(C,/&\f/g,v[S])))&&(p[k++]=A);return w(e,t,r,0===a?F:u,p,m,h)}function Z(e,t,r){return w(e,t,r,W,a(y),d(e,2,-2),0)}function Y(e,t,r,n){return w(e,t,r,D,d(e,0,n),d(e,n+1,-1),n)}var q=function(e,t,r){for(var n=0,o=0;n=o,o=A(),38===n&&12===o&&(t[r]=1),!$(o);)C();return R(e,b)},J=new WeakMap,Q=function(e){if("rule"===e.type&&e.parent&&!(e.length<1)){for(var t=e.value,r=e.parent,n=e.column===r.column&&e.line===r.line;"rule"!==r.type;)if(!(r=r.parent))return;if((1!==e.props.length||58===t.charCodeAt(0)||J.get(r))&&!n){J.set(e,!0);for(var o=[],i=function(e,t){return I(function(e,t){var r=-1,n=44;do{switch($(n)){case 0:38===n&&12===A()&&(t[r]=1),e[r]+=q(b-1,t,r);break;case 2:e[r]+=O(n);break;case 4:if(44===n){e[++r]=58===A()?"&\f":"",t[r]=e[r].length;break}default:e[r]+=a(n)}}while(n=C());return e}(E(e),t))}(t,o),s=r.props,l=0,c=0;l<i.length;l++)for(var u=0;u<s.length;u++,c++)e.props[c]=o[l]?i[l].replace(/&\f/g,s[u]):s[u]+" "+i[l]}}},ee=function(e){if("decl"===e.type){var t=e.value;108===t.charCodeAt(0)&&98===t.charCodeAt(2)&&(e.return="",e.value="")}};function te(e,t){switch(function(e,t){return 45^u(e,0)?(((t<<2^u(e,0))<<2^u(e,1))<<2^u(e,2))<<2^u(e,3):0}(e,t)){case 5103:return N+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return N+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return N+e+L+e+z+e+e;case 6828:case 4268:return N+e+z+e+e;case 6165:return N+e+z+"flex-"+e+e;case 5187:return N+e+l(e,/(\w+).+(:[^]+)/,N+"box-$1$2"+z+"flex-$1$2")+e;case 5443:return N+e+z+"flex-item-"+l(e,/flex-|-self/,"")+e;case 4675:return N+e+z+"flex-line-pack"+l(e,/align-content|flex-|-self/,"")+e;case 5548:return N+e+z+l(e,"shrink","negative")+e;case 5292:return N+e+z+l(e,"basis","preferred-size")+e;case 6060:return N+"box-"+l(e,"-grow","")+N+e+z+l(e,"grow","positive")+e;case 4554:return N+l(e,/([^-])(transform)/g,"$1"+N+"$2")+e;case 6187:return l(l(l(e,/(zoom-|grab)/,N+"$1"),/(image-set)/,N+"$1"),e,"")+e;case 5495:case 3959:return l(e,/(image-set\([^]*)/,N+"$1$`$1");case 4968:return l(l(e,/(.+:)(flex-)?(.*)/,N+"box-pack:$3"+z+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+N+e+e;case 4095:case 3583:case 4068:case 2532:return l(e,/(.+)-inline(.+)/,N+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(p(e)-1-t>6)switch(u(e,t+1)){case 109:if(45!==u(e,t+4))break;case 102:return l(e,/(.+:)(.+)-([^]+)/,"$1"+N+"$2-$3$1"+L+(108==u(e,t+3)?"$3":"$2-$3"))+e;case 115:return~c(e,"stretch")?te(l(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(115!==u(e,t+1))break;case 6444:switch(u(e,p(e)-3-(~c(e,"!important")&&10))){case 107:return l(e,":",":"+N)+e;case 101:return l(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+N+(45===u(e,14)?"inline-":"")+"box$3$1"+N+"$2$3$1"+z+"$2box$3")+e}break;case 5936:switch(u(e,t+11)){case 114:return N+e+z+l(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return N+e+z+l(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return N+e+z+l(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return N+e+z+e+e}return e}var re=[function(e,t,r,n){if(e.length>-1&&!e.return)switch(e.type){case D:e.return=te(e.value,e.length);break;case H:return V([k(e,{value:l(e.value,"@","@"+N)})],n);case F:if(e.length)return function(e,t){return e.map(t).join("")}(e.props,(function(t){switch(function(e){return(e=/(::plac\w+|:read-\w+)/.exec(e))?e[0]:e}(t)){case":read-only":case":read-write":return V([k(e,{props:[l(t,/:(read-\w+)/,":-moz-$1")]})],n);case"::placeholder":return V([k(e,{props:[l(t,/:(plac\w+)/,":"+N+"input-$1")]}),k(e,{props:[l(t,/:(plac\w+)/,":-moz-$1")]}),k(e,{props:[l(t,/:(plac\w+)/,z+"input-$1")]})],n)}return""}))}}],ne=function(e){var t=e.key;if("css"===t){var r=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(r,(function(e){-1!==e.getAttribute("data-emotion").indexOf(" ")&&(document.head.appendChild(e),e.setAttribute("data-s",""))}))}var o,a,i=e.stylisPlugins||re,s={},l=[];o=e.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+t+' "]'),(function(e){for(var t=e.getAttribute("data-emotion").split(" "),r=1;r<t.length;r++)s[t[r]]=!0;l.push(e)}));var c,u,d,p,m=[G,(p=function(e){c.insert(e)},function(e){e.root||(e=e.return)&&p(e)})],h=(u=[Q,ee].concat(i,m),d=f(u),function(e,t,r,n){for(var o="",a=0;a<d;a++)o+=u[a](e,t,r,n)||"";return o});a=function(e,t,r,n){c=r,V(K(e?e+"{"+t.styles+"}":t.styles),h),n&&(g.inserted[t.name]=!0)};var g={key:t,sheet:new n.v({key:t,container:o,nonce:e.nonce,speedy:e.speedy,prepend:e.prepend,insertionPoint:e.insertionPoint}),nonce:e.nonce,inserted:s,registered:{},insert:a};return g.sheet.hydrate(l),g}},6289:function(e,t,r){"use strict";function n(e){var t=Object.create(null);return function(r){return void 0===t[r]&&(t[r]=e(r)),t[r]}}r.d(t,{A:function(){return n}})},9214:function(e,t,r){"use strict";r.d(t,{C:function(){return i},T:function(){return l},w:function(){return s}});var n=r(1609),o=r(1568),a=(r(3174),r(1287),n.createContext("undefined"!=typeof HTMLElement?(0,o.A)({key:"css"}):null)),i=a.Provider,s=function(e){return(0,n.forwardRef)((function(t,r){var o=(0,n.useContext)(a);return e(t,o,r)}))},l=n.createContext({})},7437:function(e,t,r){"use strict";r.d(t,{AH:function(){return c},i7:function(){return u},mL:function(){return l}});var n=r(9214),o=r(1609),a=r(41),i=r(1287),s=r(3174),l=(r(1568),r(4146),(0,n.w)((function(e,t){var r=e.styles,l=(0,s.J)([r],void 0,o.useContext(n.T)),c=o.useRef();return(0,i.i)((function(){var e=t.key+"-global",r=new t.sheet.constructor({key:e,nonce:t.sheet.nonce,container:t.sheet.container,speedy:t.sheet.isSpeedy}),n=!1,o=document.querySelector('style[data-emotion="'+e+" "+l.name+'"]');return t.sheet.tags.length&&(r.before=t.sheet.tags[0]),null!==o&&(n=!0,o.setAttribute("data-emotion",e),r.hydrate([o])),c.current=[r,n],function(){r.flush()}}),[t]),(0,i.i)((function(){var e=c.current,r=e[0];if(e[1])e[1]=!1;else{if(void 0!==l.next&&(0,a.sk)(t,l.next,!0),r.tags.length){var n=r.tags[r.tags.length-1].nextElementSibling;r.before=n,r.flush()}t.insert("",l,r,!1)}}),[t,l.name]),null})));function c(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return(0,s.J)(t)}var u=function(){var e=c.apply(void 0,arguments),t="animation-"+e.name;return{name:t,styles:"@keyframes "+t+"{"+e.styles+"}",anim:1,toString:function(){return"_EMO_"+this.name+"_"+this.styles+"_EMO_"}}}},3174:function(e,t,r){"use strict";r.d(t,{J:function(){return g}});var n={animationIterationCount:1,aspectRatio:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,scale:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},o=r(6289),a=!1,i=/[A-Z]|^ms/g,s=/_EMO_([^_]+?)_([^]*?)_EMO_/g,l=function(e){return 45===e.charCodeAt(1)},c=function(e){return null!=e&&"boolean"!=typeof e},u=(0,o.A)((function(e){return l(e)?e:e.replace(i,"-$&").toLowerCase()})),d=function(e,t){switch(e){case"animation":case"animationName":if("string"==typeof t)return t.replace(s,(function(e,t,r){return m={name:t,styles:r,next:m},t}))}return 1===n[e]||l(e)||"number"!=typeof t||0===t?t:t+"px"},p="Component selectors can only be used in conjunction with @emotion/babel-plugin, the swc Emotion plugin, or another Emotion-aware compiler transform.";function f(e,t,r){if(null==r)return"";var n=r;if(void 0!==n.__emotion_styles)return n;switch(typeof r){case"boolean":return"";case"object":var o=r;if(1===o.anim)return m={name:o.name,styles:o.styles,next:m},o.name;var i=r;if(void 0!==i.styles){var s=i.next;if(void 0!==s)for(;void 0!==s;)m={name:s.name,styles:s.styles,next:m},s=s.next;return i.styles+";"}return function(e,t,r){var n="";if(Array.isArray(r))for(var o=0;o<r.length;o++)n+=f(e,t,r[o])+";";else for(var i in r){var s=r[i];if("object"!=typeof s){var l=s;null!=t&&void 0!==t[l]?n+=i+"{"+t[l]+"}":c(l)&&(n+=u(i)+":"+d(i,l)+";")}else{if("NO_COMPONENT_SELECTOR"===i&&a)throw new Error(p);if(!Array.isArray(s)||"string"!=typeof s[0]||null!=t&&void 0!==t[s[0]]){var m=f(e,t,s);switch(i){case"animation":case"animationName":n+=u(i)+":"+m+";";break;default:n+=i+"{"+m+"}"}}else for(var h=0;h<s.length;h++)c(s[h])&&(n+=u(i)+":"+d(i,s[h])+";")}}return n}(e,t,r);case"function":if(void 0!==e){var l=m,h=r(e);return m=l,f(e,t,h)}}var g=r;if(null==t)return g;var v=t[g];return void 0!==v?v:g}var m,h=/label:\s*([^\s;{]+)\s*(;|$)/g;function g(e,t,r){if(1===e.length&&"object"==typeof e[0]&&null!==e[0]&&void 0!==e[0].styles)return e[0];var n=!0,o="";m=void 0;var a=e[0];null==a||void 0===a.raw?(n=!1,o+=f(r,t,a)):o+=a[0];for(var i=1;i<e.length;i++)o+=f(r,t,e[i]),n&&(o+=a[i]);h.lastIndex=0;for(var s,l="";null!==(s=h.exec(o));)l+="-"+s[1];var c=function(e){for(var t,r=0,n=0,o=e.length;o>=4;++n,o-=4)t=1540483477*(65535&(t=255&e.charCodeAt(n)|(255&e.charCodeAt(++n))<<8|(255&e.charCodeAt(++n))<<16|(255&e.charCodeAt(++n))<<24))+(59797*(t>>>16)<<16),r=1540483477*(65535&(t^=t>>>24))+(59797*(t>>>16)<<16)^1540483477*(65535&r)+(59797*(r>>>16)<<16);switch(o){case 3:r^=(255&e.charCodeAt(n+2))<<16;case 2:r^=(255&e.charCodeAt(n+1))<<8;case 1:r=1540483477*(65535&(r^=255&e.charCodeAt(n)))+(59797*(r>>>16)<<16)}return(((r=1540483477*(65535&(r^=r>>>13))+(59797*(r>>>16)<<16))^r>>>15)>>>0).toString(36)}(o)+l;return{name:c,styles:o,next:m}}},5047:function(e,t,r){"use strict";r.d(t,{v:function(){return n}});var n=function(){function e(e){var t=this;this._insertTag=function(e){var r;r=0===t.tags.length?t.insertionPoint?t.insertionPoint.nextSibling:t.prepend?t.container.firstChild:t.before:t.tags[t.tags.length-1].nextSibling,t.container.insertBefore(e,r),t.tags.push(e)},this.isSpeedy=void 0===e.speedy||e.speedy,this.tags=[],this.ctr=0,this.nonce=e.nonce,this.key=e.key,this.container=e.container,this.prepend=e.prepend,this.insertionPoint=e.insertionPoint,this.before=null}var t=e.prototype;return t.hydrate=function(e){e.forEach(this._insertTag)},t.insert=function(e){this.ctr%(this.isSpeedy?65e3:1)==0&&this._insertTag(function(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key),void 0!==e.nonce&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),t.setAttribute("data-s",""),t}(this));var t=this.tags[this.tags.length-1];if(this.isSpeedy){var r=function(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}(t);try{r.insertRule(e,r.cssRules.length)}catch(e){}}else t.appendChild(document.createTextNode(e));this.ctr++},t.flush=function(){this.tags.forEach((function(e){var t;return null==(t=e.parentNode)?void 0:t.removeChild(e)})),this.tags=[],this.ctr=0},e}()},1287:function(e,t,r){"use strict";r.d(t,{i:function(){return i},s:function(){return a}});var n=r(1609),o=!!n.useInsertionEffect&&n.useInsertionEffect,a=o||function(e){return e()},i=o||n.useLayoutEffect},41:function(e,t,r){"use strict";function n(e,t,r){var n="";return r.split(" ").forEach((function(r){void 0!==e[r]?t.push(e[r]+";"):r&&(n+=r+" ")})),n}r.d(t,{Rk:function(){return n},SF:function(){return o},sk:function(){return a}});var o=function(e,t,r){var n=e.key+"-"+t.name;!1===r&&void 0===e.registered[n]&&(e.registered[n]=t.styles)},a=function(e,t,r){o(e,t,r);var n=e.key+"-"+t.name;if(void 0===e.inserted[t.name]){var a=t;do{e.insert(t===a?"."+n:"",a,e.sheet,!0),a=a.next}while(void 0!==a)}}},9462:function(e,t,r){"use strict";r.r(t),r.d(t,{GlobalStyles:function(){return ke},StyledEngineProvider:function(){return we},ThemeContext:function(){return l.T},css:function(){return b.AH},default:function(){return Se},internal_processStyles:function(){return Ce},keyframes:function(){return b.i7}});var n=r(8168),o=r(1609),a=r(6289),i=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,s=(0,a.A)((function(e){return i.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),l=r(9214),c=r(41),u=r(3174),d=r(1287),p=s,f=function(e){return"theme"!==e},m=function(e){return"string"==typeof e&&e.charCodeAt(0)>96?p:f},h=function(e,t,r){var n;if(t){var o=t.shouldForwardProp;n=e.__emotion_forwardProp&&o?function(t){return e.__emotion_forwardProp(t)&&o(t)}:o}return"function"!=typeof n&&r&&(n=e.__emotion_forwardProp),n},g=function(e){var t=e.cache,r=e.serialized,n=e.isStringTag;return(0,c.SF)(t,r,n),(0,d.s)((function(){return(0,c.sk)(t,r,n)})),null},v=function e(t,r){var a,i,s=t.__emotion_real===t,d=s&&t.__emotion_base||t;void 0!==r&&(a=r.label,i=r.target);var p=h(t,r,s),f=p||m(d),v=!f("as");return function(){var b=arguments,y=s&&void 0!==t.__emotion_styles?t.__emotion_styles.slice(0):[];if(void 0!==a&&y.push("label:"+a+";"),null==b[0]||void 0===b[0].raw)y.push.apply(y,b);else{y.push(b[0][0]);for(var x=b.length,w=1;w<x;w++)y.push(b[w],b[0][w])}var k=(0,l.w)((function(e,t,r){var n=v&&e.as||d,a="",s=[],h=e;if(null==e.theme){for(var b in h={},e)h[b]=e[b];h.theme=o.useContext(l.T)}"string"==typeof e.className?a=(0,c.Rk)(t.registered,s,e.className):null!=e.className&&(a=e.className+" ");var x=(0,u.J)(y.concat(s),t.registered,h);a+=t.key+"-"+x.name,void 0!==i&&(a+=" "+i);var w=v&&void 0===p?m(n):f,k={};for(var S in e)v&&"as"===S||w(S)&&(k[S]=e[S]);return k.className=a,r&&(k.ref=r),o.createElement(o.Fragment,null,o.createElement(g,{cache:t,serialized:x,isStringTag:"string"==typeof n}),o.createElement(n,k))}));return k.displayName=void 0!==a?a:"Styled("+("string"==typeof d?d:d.displayName||d.name||"Component")+")",k.defaultProps=t.defaultProps,k.__emotion_real=k,k.__emotion_base=d,k.__emotion_styles=y,k.__emotion_forwardProp=p,Object.defineProperty(k,"toString",{value:function(){return"."+i}}),k.withComponent=function(t,o){return e(t,(0,n.A)({},r,o,{shouldForwardProp:h(k,o,!0)})).apply(void 0,y)},k}}.bind();["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","marquee","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"].forEach((function(e){v[e]=v(e)}));var b=r(7437),y=r(5047),x=Math.abs,w=String.fromCharCode,k=Object.assign;function S(e){return e.trim()}function C(e,t,r){return e.replace(t,r)}function A(e,t){return e.indexOf(t)}function M(e,t){return 0|e.charCodeAt(t)}function R(e,t,r){return e.slice(t,r)}function $(e){return e.length}function E(e){return e.length}function I(e,t){return t.push(e),e}var O=1,j=1,T=0,P=0,B=0,_="";function z(e,t,r,n,o,a,i){return{value:e,root:t,parent:r,type:n,props:o,children:a,line:O,column:j,length:i,return:""}}function L(e,t){return k(z("",null,null,"",null,null,0),e,{length:-e.length},t)}function N(){return B=P>0?M(_,--P):0,j--,10===B&&(j=1,O--),B}function W(){return B=P<T?M(_,P++):0,j++,10===B&&(j=1,O++),B}function F(){return M(_,P)}function D(){return P}function H(e,t){return R(_,e,t)}function V(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function G(e){return O=j=1,T=$(_=e),P=0,[]}function K(e){return _="",e}function U(e){return S(H(P-1,Y(91===e?e+2:40===e?e+1:e)))}function X(e){for(;(B=F())&&B<33;)W();return V(e)>2||V(B)>3?"":" "}function Z(e,t){for(;--t&&W()&&!(B<48||B>102||B>57&&B<65||B>70&&B<97););return H(e,D()+(t<6&&32==F()&&32==W()))}function Y(e){for(;W();)switch(B){case e:return P;case 34:case 39:34!==e&&39!==e&&Y(B);break;case 40:41===e&&Y(e);break;case 92:W()}return P}function q(e,t){for(;W()&&e+B!==57&&(e+B!==84||47!==F()););return"/*"+H(t,P-1)+"*"+w(47===e?e:W())}function J(e){for(;!V(F());)W();return H(e,P)}var Q="-ms-",ee="-moz-",te="-webkit-",re="comm",ne="rule",oe="decl",ae="@keyframes";function ie(e,t){for(var r="",n=E(e),o=0;o<n;o++)r+=t(e[o],o,e,t)||"";return r}function se(e,t,r,n){switch(e.type){case"@layer":if(e.children.length)break;case"@import":case oe:return e.return=e.return||e.value;case re:return"";case ae:return e.return=e.value+"{"+ie(e.children,n)+"}";case ne:e.value=e.props.join(",")}return $(r=ie(e.children,n))?e.return=e.value+"{"+r+"}":""}function le(e){return K(ce("",null,null,null,[""],e=G(e),0,[0],e))}function ce(e,t,r,n,o,a,i,s,l){for(var c=0,u=0,d=i,p=0,f=0,m=0,h=1,g=1,v=1,b=0,y="",x=o,k=a,S=n,R=y;g;)switch(m=b,b=W()){case 40:if(108!=m&&58==M(R,d-1)){-1!=A(R+=C(U(b),"&","&\f"),"&\f")&&(v=-1);break}case 34:case 39:case 91:R+=U(b);break;case 9:case 10:case 13:case 32:R+=X(m);break;case 92:R+=Z(D()-1,7);continue;case 47:switch(F()){case 42:case 47:I(de(q(W(),D()),t,r),l);break;default:R+="/"}break;case 123*h:s[c++]=$(R)*v;case 125*h:case 59:case 0:switch(b){case 0:case 125:g=0;case 59+u:-1==v&&(R=C(R,/\f/g,"")),f>0&&$(R)-d&&I(f>32?pe(R+";",n,r,d-1):pe(C(R," ","")+";",n,r,d-2),l);break;case 59:R+=";";default:if(I(S=ue(R,t,r,c,u,o,s,y,x=[],k=[],d),a),123===b)if(0===u)ce(R,t,S,S,x,a,d,s,k);else switch(99===p&&110===M(R,3)?100:p){case 100:case 108:case 109:case 115:ce(e,S,S,n&&I(ue(e,S,S,0,0,o,s,y,o,x=[],d),k),o,k,d,s,n?x:k);break;default:ce(R,S,S,S,[""],k,0,s,k)}}c=u=f=0,h=v=1,y=R="",d=i;break;case 58:d=1+$(R),f=m;default:if(h<1)if(123==b)--h;else if(125==b&&0==h++&&125==N())continue;switch(R+=w(b),b*h){case 38:v=u>0?1:(R+="\f",-1);break;case 44:s[c++]=($(R)-1)*v,v=1;break;case 64:45===F()&&(R+=U(W())),p=F(),u=d=$(y=R+=J(D())),b++;break;case 45:45===m&&2==$(R)&&(h=0)}}return a}function ue(e,t,r,n,o,a,i,s,l,c,u){for(var d=o-1,p=0===o?a:[""],f=E(p),m=0,h=0,g=0;m<n;++m)for(var v=0,b=R(e,d+1,d=x(h=i[m])),y=e;v<f;++v)(y=S(h>0?p[v]+" "+b:C(b,/&\f/g,p[v])))&&(l[g++]=y);return z(e,t,r,0===o?ne:s,l,c,u)}function de(e,t,r){return z(e,t,r,re,w(B),R(e,2,-2),0)}function pe(e,t,r,n){return z(e,t,r,oe,R(e,0,n),R(e,n+1,-1),n)}var fe=function(e,t,r){for(var n=0,o=0;n=o,o=F(),38===n&&12===o&&(t[r]=1),!V(o);)W();return H(e,P)},me=new WeakMap,he=function(e){if("rule"===e.type&&e.parent&&!(e.length<1)){for(var t=e.value,r=e.parent,n=e.column===r.column&&e.line===r.line;"rule"!==r.type;)if(!(r=r.parent))return;if((1!==e.props.length||58===t.charCodeAt(0)||me.get(r))&&!n){me.set(e,!0);for(var o=[],a=function(e,t){return K(function(e,t){var r=-1,n=44;do{switch(V(n)){case 0:38===n&&12===F()&&(t[r]=1),e[r]+=fe(P-1,t,r);break;case 2:e[r]+=U(n);break;case 4:if(44===n){e[++r]=58===F()?"&\f":"",t[r]=e[r].length;break}default:e[r]+=w(n)}}while(n=W());return e}(G(e),t))}(t,o),i=r.props,s=0,l=0;s<a.length;s++)for(var c=0;c<i.length;c++,l++)e.props[l]=o[s]?a[s].replace(/&\f/g,i[c]):i[c]+" "+a[s]}}},ge=function(e){if("decl"===e.type){var t=e.value;108===t.charCodeAt(0)&&98===t.charCodeAt(2)&&(e.return="",e.value="")}};function ve(e,t){switch(function(e,t){return 45^M(e,0)?(((t<<2^M(e,0))<<2^M(e,1))<<2^M(e,2))<<2^M(e,3):0}(e,t)){case 5103:return te+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return te+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return te+e+ee+e+Q+e+e;case 6828:case 4268:return te+e+Q+e+e;case 6165:return te+e+Q+"flex-"+e+e;case 5187:return te+e+C(e,/(\w+).+(:[^]+)/,te+"box-$1$2"+Q+"flex-$1$2")+e;case 5443:return te+e+Q+"flex-item-"+C(e,/flex-|-self/,"")+e;case 4675:return te+e+Q+"flex-line-pack"+C(e,/align-content|flex-|-self/,"")+e;case 5548:return te+e+Q+C(e,"shrink","negative")+e;case 5292:return te+e+Q+C(e,"basis","preferred-size")+e;case 6060:return te+"box-"+C(e,"-grow","")+te+e+Q+C(e,"grow","positive")+e;case 4554:return te+C(e,/([^-])(transform)/g,"$1"+te+"$2")+e;case 6187:return C(C(C(e,/(zoom-|grab)/,te+"$1"),/(image-set)/,te+"$1"),e,"")+e;case 5495:case 3959:return C(e,/(image-set\([^]*)/,te+"$1$`$1");case 4968:return C(C(e,/(.+:)(flex-)?(.*)/,te+"box-pack:$3"+Q+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+te+e+e;case 4095:case 3583:case 4068:case 2532:return C(e,/(.+)-inline(.+)/,te+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if($(e)-1-t>6)switch(M(e,t+1)){case 109:if(45!==M(e,t+4))break;case 102:return C(e,/(.+:)(.+)-([^]+)/,"$1"+te+"$2-$3$1"+ee+(108==M(e,t+3)?"$3":"$2-$3"))+e;case 115:return~A(e,"stretch")?ve(C(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(115!==M(e,t+1))break;case 6444:switch(M(e,$(e)-3-(~A(e,"!important")&&10))){case 107:return C(e,":",":"+te)+e;case 101:return C(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+te+(45===M(e,14)?"inline-":"")+"box$3$1"+te+"$2$3$1"+Q+"$2box$3")+e}break;case 5936:switch(M(e,t+11)){case 114:return te+e+Q+C(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return te+e+Q+C(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return te+e+Q+C(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return te+e+Q+e+e}return e}var be=[function(e,t,r,n){if(e.length>-1&&!e.return)switch(e.type){case oe:e.return=ve(e.value,e.length);break;case ae:return ie([L(e,{value:C(e.value,"@","@"+te)})],n);case ne:if(e.length)return function(e,t){return e.map(t).join("")}(e.props,(function(t){switch(function(e){return(e=/(::plac\w+|:read-\w+)/.exec(e))?e[0]:e}(t)){case":read-only":case":read-write":return ie([L(e,{props:[C(t,/:(read-\w+)/,":-moz-$1")]})],n);case"::placeholder":return ie([L(e,{props:[C(t,/:(plac\w+)/,":"+te+"input-$1")]}),L(e,{props:[C(t,/:(plac\w+)/,":-moz-$1")]}),L(e,{props:[C(t,/:(plac\w+)/,Q+"input-$1")]})],n)}return""}))}}],ye=r(790);let xe;function we(e){const{injectFirst:t,children:r}=e;return t&&xe?(0,ye.jsx)(l.C,{value:xe,children:r}):r}function ke(e){const{styles:t,defaultTheme:r={}}=e,n="function"==typeof t?e=>{return t(null==(n=e)||0===Object.keys(n).length?r:e);var n}:t;return(0,ye.jsx)(b.mL,{styles:n})}function Se(e,t){return v(e,t)}"object"==typeof document&&(xe=function(e){var t=e.key;if("css"===t){var r=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(r,(function(e){-1!==e.getAttribute("data-emotion").indexOf(" ")&&(document.head.appendChild(e),e.setAttribute("data-s",""))}))}var n,o,a=e.stylisPlugins||be,i={},s=[];n=e.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+t+' "]'),(function(e){for(var t=e.getAttribute("data-emotion").split(" "),r=1;r<t.length;r++)i[t[r]]=!0;s.push(e)}));var l,c,u,d,p=[se,(d=function(e){l.insert(e)},function(e){e.root||(e=e.return)&&d(e)})],f=(c=[he,ge].concat(a,p),u=E(c),function(e,t,r,n){for(var o="",a=0;a<u;a++)o+=c[a](e,t,r,n)||"";return o});o=function(e,t,r,n){l=r,ie(le(e?e+"{"+t.styles+"}":t.styles),f),n&&(m.inserted[t.name]=!0)};var m={key:t,sheet:new y.v({key:t,container:n,nonce:e.nonce,speedy:e.speedy,prepend:e.prepend,insertionPoint:e.insertionPoint}),nonce:e.nonce,inserted:i,registered:{},insert:o};return m.sheet.hydrate(s),m}({key:"css",prepend:!0}));const Ce=(e,t)=>{Array.isArray(e.__emotion_styles)&&(e.__emotion_styles=t(e.__emotion_styles))}},771:function(e,t,r){"use strict";var n=r(4994);t.X4=function(e,t){return e=s(e),t=i(t),"rgb"!==e.type&&"hsl"!==e.type||(e.type+="a"),"color"===e.type?e.values[3]=`/${t}`:e.values[3]=t,l(e)},t.e$=u,t.eM=function(e,t){const r=c(e),n=c(t);return(Math.max(r,n)+.05)/(Math.min(r,n)+.05)},t.a=d;var o=n(r(8944)),a=n(r(8586));function i(e,t=0,r=1){return(0,a.default)(e,t,r)}function s(e){if(e.type)return e;if("#"===e.charAt(0))return s(function(e){e=e.slice(1);const t=new RegExp(`.{1,${e.length>=6?2:1}}`,"g");let r=e.match(t);return r&&1===r[0].length&&(r=r.map((e=>e+e))),r?`rgb${4===r.length?"a":""}(${r.map(((e,t)=>t<3?parseInt(e,16):Math.round(parseInt(e,16)/255*1e3)/1e3)).join(", ")})`:""}(e));const t=e.indexOf("("),r=e.substring(0,t);if(-1===["rgb","rgba","hsl","hsla","color"].indexOf(r))throw new Error((0,o.default)(9,e));let n,a=e.substring(t+1,e.length-1);if("color"===r){if(a=a.split(" "),n=a.shift(),4===a.length&&"/"===a[3].charAt(0)&&(a[3]=a[3].slice(1)),-1===["srgb","display-p3","a98-rgb","prophoto-rgb","rec-2020"].indexOf(n))throw new Error((0,o.default)(10,n))}else a=a.split(",");return a=a.map((e=>parseFloat(e))),{type:r,values:a,colorSpace:n}}function l(e){const{type:t,colorSpace:r}=e;let{values:n}=e;return-1!==t.indexOf("rgb")?n=n.map(((e,t)=>t<3?parseInt(e,10):e)):-1!==t.indexOf("hsl")&&(n[1]=`${n[1]}%`,n[2]=`${n[2]}%`),n=-1!==t.indexOf("color")?`${r} ${n.join(" ")}`:`${n.join(", ")}`,`${t}(${n})`}function c(e){let t="hsl"===(e=s(e)).type||"hsla"===e.type?s(function(e){e=s(e);const{values:t}=e,r=t[0],n=t[1]/100,o=t[2]/100,a=n*Math.min(o,1-o),i=(e,t=(e+r/30)%12)=>o-a*Math.max(Math.min(t-3,9-t,1),-1);let c="rgb";const u=[Math.round(255*i(0)),Math.round(255*i(8)),Math.round(255*i(4))];return"hsla"===e.type&&(c+="a",u.push(t[3])),l({type:c,values:u})}(e)).values:e.values;return t=t.map((t=>("color"!==e.type&&(t/=255),t<=.03928?t/12.92:((t+.055)/1.055)**2.4))),Number((.2126*t[0]+.7152*t[1]+.0722*t[2]).toFixed(3))}function u(e,t){if(e=s(e),t=i(t),-1!==e.type.indexOf("hsl"))e.values[2]*=1-t;else if(-1!==e.type.indexOf("rgb")||-1!==e.type.indexOf("color"))for(let r=0;r<3;r+=1)e.values[r]*=1-t;return l(e)}function d(e,t){if(e=s(e),t=i(t),-1!==e.type.indexOf("hsl"))e.values[2]+=(100-e.values[2])*t;else if(-1!==e.type.indexOf("rgb"))for(let r=0;r<3;r+=1)e.values[r]+=(255-e.values[r])*t;else if(-1!==e.type.indexOf("color"))for(let r=0;r<3;r+=1)e.values[r]+=(1-e.values[r])*t;return l(e)}},6461:function(e,t,r){"use strict";var n=r(4994);t.Ay=function(e={}){const{themeId:t,defaultTheme:r=h,rootShouldForwardProp:n=m,slotShouldForwardProp:l=m}=e,u=e=>(0,c.default)((0,o.default)({},e,{theme:v((0,o.default)({},e,{defaultTheme:r,themeId:t}))}));return u.__mui_systemSx=!0,(e,c={})=>{(0,i.internal_processStyles)(e,(e=>e.filter((e=>!(null!=e&&e.__mui_systemSx)))));const{name:d,slot:f,skipVariantsResolver:h,skipSx:x,overridesResolver:w=b(g(f))}=c,k=(0,a.default)(c,p),S=void 0!==h?h:f&&"Root"!==f&&"root"!==f||!1,C=x||!1;let A=m;"Root"===f||"root"===f?A=n:f?A=l:function(e){return"string"==typeof e&&e.charCodeAt(0)>96}(e)&&(A=void 0);const M=(0,i.default)(e,(0,o.default)({shouldForwardProp:A,label:void 0},k)),R=e=>"function"==typeof e&&e.__emotion_real!==e||(0,s.isPlainObject)(e)?n=>y(e,(0,o.default)({},n,{theme:v({theme:n.theme,defaultTheme:r,themeId:t})})):e,$=(n,...a)=>{let i=R(n);const s=a?a.map(R):[];d&&w&&s.push((e=>{const n=v((0,o.default)({},e,{defaultTheme:r,themeId:t}));if(!n.components||!n.components[d]||!n.components[d].styleOverrides)return null;const a=n.components[d].styleOverrides,i={};return Object.entries(a).forEach((([t,r])=>{i[t]=y(r,(0,o.default)({},e,{theme:n}))})),w(e,i)})),d&&!S&&s.push((e=>{var n;const a=v((0,o.default)({},e,{defaultTheme:r,themeId:t}));return y({variants:null==a||null==(n=a.components)||null==(n=n[d])?void 0:n.variants},(0,o.default)({},e,{theme:a}))})),C||s.push(u);const l=s.length-a.length;if(Array.isArray(n)&&l>0){const e=new Array(l).fill("");i=[...n,...e],i.raw=[...n.raw,...e]}const c=M(i,...s);return e.muiName&&(c.muiName=e.muiName),c};return M.withConfig&&($.withConfig=M.withConfig),$}};var o=n(r(4634)),a=n(r(4893)),i=function(e,t){if(e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var r=f(t);if(r&&r.has(e))return r.get(e);var n={__proto__:null},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in e)if("default"!==a&&Object.prototype.hasOwnProperty.call(e,a)){var i=o?Object.getOwnPropertyDescriptor(e,a):null;i&&(i.get||i.set)?Object.defineProperty(n,a,i):n[a]=e[a]}return n.default=e,r&&r.set(e,n),n}(r(9462)),s=r(4239),l=(n(r(7149)),n(r(7320)),n(r(3142))),c=n(r(3857));const u=["ownerState"],d=["variants"],p=["name","slot","skipVariantsResolver","skipSx","overridesResolver"];function f(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,r=new WeakMap;return(f=function(e){return e?r:t})(e)}function m(e){return"ownerState"!==e&&"theme"!==e&&"sx"!==e&&"as"!==e}const h=(0,l.default)(),g=e=>e?e.charAt(0).toLowerCase()+e.slice(1):e;function v({defaultTheme:e,theme:t,themeId:r}){return n=t,0===Object.keys(n).length?e:t[r]||t;var n}function b(e){return e?(t,r)=>r[e]:null}function y(e,t){let{ownerState:r}=t,n=(0,a.default)(t,u);const i="function"==typeof e?e((0,o.default)({ownerState:r},n)):e;if(Array.isArray(i))return i.flatMap((e=>y(e,(0,o.default)({ownerState:r},n))));if(i&&"object"==typeof i&&Array.isArray(i.variants)){const{variants:e=[]}=i;let t=(0,a.default)(i,d);return e.forEach((e=>{let a=!0;"function"==typeof e.props?a=e.props((0,o.default)({ownerState:r},n,r)):Object.keys(e.props).forEach((t=>{(null==r?void 0:r[t])!==e.props[t]&&n[t]!==e.props[t]&&(a=!1)})),a&&(Array.isArray(t)||(t=[t]),t.push("function"==typeof e.style?e.style((0,o.default)({ownerState:r},n,r)):e.style))})),t}return i}},9452:function(e,t,r){"use strict";r.d(t,{EU:function(){return s},NI:function(){return i},iZ:function(){return c},kW:function(){return u},vf:function(){return l},zu:function(){return o}});var n=r(1317);const o={xs:0,sm:600,md:900,lg:1200,xl:1536},a={keys:["xs","sm","md","lg","xl"],up:e=>`@media (min-width:${o[e]}px)`};function i(e,t,r){const n=e.theme||{};if(Array.isArray(t)){const e=n.breakpoints||a;return t.reduce(((n,o,a)=>(n[e.up(e.keys[a])]=r(t[a]),n)),{})}if("object"==typeof t){const e=n.breakpoints||a;return Object.keys(t).reduce(((n,a)=>{if(-1!==Object.keys(e.values||o).indexOf(a))n[e.up(a)]=r(t[a],a);else{const e=a;n[e]=t[e]}return n}),{})}return r(t)}function s(e={}){var t;return(null==(t=e.keys)?void 0:t.reduce(((t,r)=>(t[e.up(r)]={},t)),{}))||{}}function l(e,t){return e.reduce(((e,t)=>{const r=e[t];return(!r||0===Object.keys(r).length)&&delete e[t],e}),t)}function c(e,...t){const r=s(e),o=[r,...t].reduce(((e,t)=>(0,n.A)(e,t)),{});return l(Object.keys(r),o)}function u({values:e,breakpoints:t,base:r}){const n=r||function(e,t){if("object"!=typeof e)return{};const r={},n=Object.keys(t);return Array.isArray(e)?n.forEach(((t,n)=>{n<e.length&&(r[t]=!0)})):n.forEach((t=>{null!=e[t]&&(r[t]=!0)})),r}(e,t),o=Object.keys(n);if(0===o.length)return e;let a;return o.reduce(((t,r,n)=>(Array.isArray(e)?(t[r]=null!=e[n]?e[n]:e[a],a=n):"object"==typeof e?(t[r]=null!=e[r]?e[r]:e[a],a=r):t[r]=e,t)),{})}},8336:function(e,t,r){"use strict";function n(e,t){const r=this;if(r.vars&&"function"==typeof r.getColorSchemeSelector){const n=r.getColorSchemeSelector(e).replace(/(\[[^\]]+\])/,"*:where($1)");return{[n]:t}}return r.palette.mode===e?t:{}}r.d(t,{A:function(){return n}})},8094:function(e,t,r){"use strict";r.d(t,{A:function(){return s}});var n=r(8587),o=r(8168);const a=["values","unit","step"],i=e=>{const t=Object.keys(e).map((t=>({key:t,val:e[t]})))||[];return t.sort(((e,t)=>e.val-t.val)),t.reduce(((e,t)=>(0,o.A)({},e,{[t.key]:t.val})),{})};function s(e){const{values:t={xs:0,sm:600,md:900,lg:1200,xl:1536},unit:r="px",step:s=5}=e,l=(0,n.A)(e,a),c=i(t),u=Object.keys(c);function d(e){return`@media (min-width:${"number"==typeof t[e]?t[e]:e}${r})`}function p(e){return`@media (max-width:${("number"==typeof t[e]?t[e]:e)-s/100}${r})`}function f(e,n){const o=u.indexOf(n);return`@media (min-width:${"number"==typeof t[e]?t[e]:e}${r}) and (max-width:${(-1!==o&&"number"==typeof t[u[o]]?t[u[o]]:n)-s/100}${r})`}return(0,o.A)({keys:u,values:c,up:d,down:p,between:f,only:function(e){return u.indexOf(e)+1<u.length?f(e,u[u.indexOf(e)+1]):d(e)},not:function(e){const t=u.indexOf(e);return 0===t?d(u[1]):t===u.length-1?p(u[t]):f(e,u[u.indexOf(e)+1]).replace("@media","@media not all and")},unit:r},l)}},8749:function(e,t,r){"use strict";r.d(t,{A:function(){return f}});var n=r(8168),o=r(8587),a=r(1317),i=r(8094),s={borderRadius:4},l=r(8248),c=r(3571),u=r(4188),d=r(8336);const p=["breakpoints","palette","spacing","shape"];var f=function(e={},...t){const{breakpoints:r={},palette:f={},spacing:m,shape:h={}}=e,g=(0,o.A)(e,p),v=(0,i.A)(r),b=function(e=8){if(e.mui)return e;const t=(0,l.LX)({spacing:e}),r=(...e)=>(0===e.length?[1]:e).map((e=>{const r=t(e);return"number"==typeof r?`${r}px`:r})).join(" ");return r.mui=!0,r}(m);let y=(0,a.A)({breakpoints:v,direction:"ltr",components:{},palette:(0,n.A)({mode:"light"},f),spacing:b,shape:(0,n.A)({},s,h)},g);return y.applyStyles=d.A,y=t.reduce(((e,t)=>(0,a.A)(e,t)),y),y.unstable_sxConfig=(0,n.A)({},u.A,null==g?void 0:g.unstable_sxConfig),y.unstable_sx=function(e){return(0,c.A)({sx:e,theme:this})},y}},3142:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return n.A},private_createBreakpoints:function(){return o.A},unstable_applyStyles:function(){return a.A}});var n=r(8749),o=r(8094),a=r(8336)},4620:function(e,t,r){"use strict";var n=r(1317);t.A=function(e,t){return t?(0,n.A)(e,t,{clone:!1}):e}},8248:function(e,t,r){"use strict";r.d(t,{LX:function(){return m},MA:function(){return f},_W:function(){return h},Lc:function(){return v},Ms:function(){return b}});var n=r(9452),o=r(6481),a=r(4620);const i={m:"margin",p:"padding"},s={t:"Top",r:"Right",b:"Bottom",l:"Left",x:["Left","Right"],y:["Top","Bottom"]},l={marginX:"mx",marginY:"my",paddingX:"px",paddingY:"py"},c=function(){const e={};return t=>(void 0===e[t]&&(e[t]=(e=>{if(e.length>2){if(!l[e])return[e];e=l[e]}const[t,r]=e.split(""),n=i[t],o=s[r]||"";return Array.isArray(o)?o.map((e=>n+e)):[n+o]})(t)),e[t])}(),u=["m","mt","mr","mb","ml","mx","my","margin","marginTop","marginRight","marginBottom","marginLeft","marginX","marginY","marginInline","marginInlineStart","marginInlineEnd","marginBlock","marginBlockStart","marginBlockEnd"],d=["p","pt","pr","pb","pl","px","py","padding","paddingTop","paddingRight","paddingBottom","paddingLeft","paddingX","paddingY","paddingInline","paddingInlineStart","paddingInlineEnd","paddingBlock","paddingBlockStart","paddingBlockEnd"],p=[...u,...d];function f(e,t,r,n){var a;const i=null!=(a=(0,o.Yn)(e,t,!1))?a:r;return"number"==typeof i?e=>"string"==typeof e?e:i*e:Array.isArray(i)?e=>"string"==typeof e?e:i[e]:"function"==typeof i?i:()=>{}}function m(e){return f(e,"spacing",8)}function h(e,t){if("string"==typeof t||null==t)return t;const r=e(Math.abs(t));return t>=0?r:"number"==typeof r?-r:`-${r}`}function g(e,t){const r=m(e.theme);return Object.keys(e).map((o=>function(e,t,r,o){if(-1===t.indexOf(r))return null;const a=function(e,t){return r=>e.reduce(((e,n)=>(e[n]=h(t,r),e)),{})}(c(r),o),i=e[r];return(0,n.NI)(e,i,a)}(e,t,o,r))).reduce(a.A,{})}function v(e){return g(e,u)}function b(e){return g(e,d)}function y(e){return g(e,p)}v.propTypes={},v.filterProps=u,b.propTypes={},b.filterProps=d,y.propTypes={},y.filterProps=p},6481:function(e,t,r){"use strict";r.d(t,{BO:function(){return i},Yn:function(){return a}});var n=r(3967),o=r(9452);function a(e,t,r=!0){if(!t||"string"!=typeof t)return null;if(e&&e.vars&&r){const r=`vars.${t}`.split(".").reduce(((e,t)=>e&&e[t]?e[t]:null),e);if(null!=r)return r}return t.split(".").reduce(((e,t)=>e&&null!=e[t]?e[t]:null),e)}function i(e,t,r,n=r){let o;return o="function"==typeof e?e(r):Array.isArray(e)?e[r]||n:a(e,r)||n,t&&(o=t(o,n,e)),o}t.Ay=function(e){const{prop:t,cssProperty:r=e.prop,themeKey:s,transform:l}=e,c=e=>{if(null==e[t])return null;const c=e[t],u=a(e.theme,s)||{};return(0,o.NI)(e,c,(e=>{let o=i(u,l,e);return e===o&&"string"==typeof e&&(o=i(u,l,`${t}${"default"===e?"":(0,n.A)(e)}`,e)),!1===r?o:{[r]:o}}))};return c.propTypes={},c.filterProps=[t],c}},4188:function(e,t,r){"use strict";r.d(t,{A:function(){return P}});var n=r(8248),o=r(6481),a=r(4620),i=function(...e){const t=e.reduce(((e,t)=>(t.filterProps.forEach((r=>{e[r]=t})),e)),{}),r=e=>Object.keys(e).reduce(((r,n)=>t[n]?(0,a.A)(r,t[n](e)):r),{});return r.propTypes={},r.filterProps=e.reduce(((e,t)=>e.concat(t.filterProps)),[]),r},s=r(9452);function l(e){return"number"!=typeof e?e:`${e}px solid`}function c(e,t){return(0,o.Ay)({prop:e,themeKey:"borders",transform:t})}const u=c("border",l),d=c("borderTop",l),p=c("borderRight",l),f=c("borderBottom",l),m=c("borderLeft",l),h=c("borderColor"),g=c("borderTopColor"),v=c("borderRightColor"),b=c("borderBottomColor"),y=c("borderLeftColor"),x=c("outline",l),w=c("outlineColor"),k=e=>{if(void 0!==e.borderRadius&&null!==e.borderRadius){const t=(0,n.MA)(e.theme,"shape.borderRadius",4,"borderRadius"),r=e=>({borderRadius:(0,n._W)(t,e)});return(0,s.NI)(e,e.borderRadius,r)}return null};k.propTypes={},k.filterProps=["borderRadius"],i(u,d,p,f,m,h,g,v,b,y,k,x,w);const S=e=>{if(void 0!==e.gap&&null!==e.gap){const t=(0,n.MA)(e.theme,"spacing",8,"gap"),r=e=>({gap:(0,n._W)(t,e)});return(0,s.NI)(e,e.gap,r)}return null};S.propTypes={},S.filterProps=["gap"];const C=e=>{if(void 0!==e.columnGap&&null!==e.columnGap){const t=(0,n.MA)(e.theme,"spacing",8,"columnGap"),r=e=>({columnGap:(0,n._W)(t,e)});return(0,s.NI)(e,e.columnGap,r)}return null};C.propTypes={},C.filterProps=["columnGap"];const A=e=>{if(void 0!==e.rowGap&&null!==e.rowGap){const t=(0,n.MA)(e.theme,"spacing",8,"rowGap"),r=e=>({rowGap:(0,n._W)(t,e)});return(0,s.NI)(e,e.rowGap,r)}return null};function M(e,t){return"grey"===t?t:e}function R(e){return e<=1&&0!==e?100*e+"%":e}A.propTypes={},A.filterProps=["rowGap"],i(S,C,A,(0,o.Ay)({prop:"gridColumn"}),(0,o.Ay)({prop:"gridRow"}),(0,o.Ay)({prop:"gridAutoFlow"}),(0,o.Ay)({prop:"gridAutoColumns"}),(0,o.Ay)({prop:"gridAutoRows"}),(0,o.Ay)({prop:"gridTemplateColumns"}),(0,o.Ay)({prop:"gridTemplateRows"}),(0,o.Ay)({prop:"gridTemplateAreas"}),(0,o.Ay)({prop:"gridArea"})),i((0,o.Ay)({prop:"color",themeKey:"palette",transform:M}),(0,o.Ay)({prop:"bgcolor",cssProperty:"backgroundColor",themeKey:"palette",transform:M}),(0,o.Ay)({prop:"backgroundColor",themeKey:"palette",transform:M}));const $=(0,o.Ay)({prop:"width",transform:R}),E=e=>{if(void 0!==e.maxWidth&&null!==e.maxWidth){const t=t=>{var r,n;const o=(null==(r=e.theme)||null==(r=r.breakpoints)||null==(r=r.values)?void 0:r[t])||s.zu[t];return o?"px"!==(null==(n=e.theme)||null==(n=n.breakpoints)?void 0:n.unit)?{maxWidth:`${o}${e.theme.breakpoints.unit}`}:{maxWidth:o}:{maxWidth:R(t)}};return(0,s.NI)(e,e.maxWidth,t)}return null};E.filterProps=["maxWidth"];const I=(0,o.Ay)({prop:"minWidth",transform:R}),O=(0,o.Ay)({prop:"height",transform:R}),j=(0,o.Ay)({prop:"maxHeight",transform:R}),T=(0,o.Ay)({prop:"minHeight",transform:R});(0,o.Ay)({prop:"size",cssProperty:"width",transform:R}),(0,o.Ay)({prop:"size",cssProperty:"height",transform:R}),i($,E,I,O,j,T,(0,o.Ay)({prop:"boxSizing"}));var P={border:{themeKey:"borders",transform:l},borderTop:{themeKey:"borders",transform:l},borderRight:{themeKey:"borders",transform:l},borderBottom:{themeKey:"borders",transform:l},borderLeft:{themeKey:"borders",transform:l},borderColor:{themeKey:"palette"},borderTopColor:{themeKey:"palette"},borderRightColor:{themeKey:"palette"},borderBottomColor:{themeKey:"palette"},borderLeftColor:{themeKey:"palette"},outline:{themeKey:"borders",transform:l},outlineColor:{themeKey:"palette"},borderRadius:{themeKey:"shape.borderRadius",style:k},color:{themeKey:"palette",transform:M},bgcolor:{themeKey:"palette",cssProperty:"backgroundColor",transform:M},backgroundColor:{themeKey:"palette",transform:M},p:{style:n.Ms},pt:{style:n.Ms},pr:{style:n.Ms},pb:{style:n.Ms},pl:{style:n.Ms},px:{style:n.Ms},py:{style:n.Ms},padding:{style:n.Ms},paddingTop:{style:n.Ms},paddingRight:{style:n.Ms},paddingBottom:{style:n.Ms},paddingLeft:{style:n.Ms},paddingX:{style:n.Ms},paddingY:{style:n.Ms},paddingInline:{style:n.Ms},paddingInlineStart:{style:n.Ms},paddingInlineEnd:{style:n.Ms},paddingBlock:{style:n.Ms},paddingBlockStart:{style:n.Ms},paddingBlockEnd:{style:n.Ms},m:{style:n.Lc},mt:{style:n.Lc},mr:{style:n.Lc},mb:{style:n.Lc},ml:{style:n.Lc},mx:{style:n.Lc},my:{style:n.Lc},margin:{style:n.Lc},marginTop:{style:n.Lc},marginRight:{style:n.Lc},marginBottom:{style:n.Lc},marginLeft:{style:n.Lc},marginX:{style:n.Lc},marginY:{style:n.Lc},marginInline:{style:n.Lc},marginInlineStart:{style:n.Lc},marginInlineEnd:{style:n.Lc},marginBlock:{style:n.Lc},marginBlockStart:{style:n.Lc},marginBlockEnd:{style:n.Lc},displayPrint:{cssProperty:!1,transform:e=>({"@media print":{display:e}})},display:{},overflow:{},textOverflow:{},visibility:{},whiteSpace:{},flexBasis:{},flexDirection:{},flexWrap:{},justifyContent:{},alignItems:{},alignContent:{},order:{},flex:{},flexGrow:{},flexShrink:{},alignSelf:{},justifyItems:{},justifySelf:{},gap:{style:S},rowGap:{style:A},columnGap:{style:C},gridColumn:{},gridRow:{},gridAutoFlow:{},gridAutoColumns:{},gridAutoRows:{},gridTemplateColumns:{},gridTemplateRows:{},gridTemplateAreas:{},gridArea:{},position:{},zIndex:{themeKey:"zIndex"},top:{},right:{},bottom:{},left:{},boxShadow:{themeKey:"shadows"},width:{transform:R},maxWidth:{style:E},minWidth:{transform:R},height:{transform:R},maxHeight:{transform:R},minHeight:{transform:R},boxSizing:{},fontFamily:{themeKey:"typography"},fontSize:{themeKey:"typography"},fontStyle:{themeKey:"typography"},fontWeight:{themeKey:"typography"},letterSpacing:{},textTransform:{},lineHeight:{},textAlign:{},typography:{cssProperty:!1,themeKey:"typography"}}},9599:function(e,t,r){"use strict";r.d(t,{A:function(){return c}});var n=r(8168),o=r(8587),a=r(1317),i=r(4188);const s=["sx"],l=e=>{var t,r;const n={systemProps:{},otherProps:{}},o=null!=(t=null==e||null==(r=e.theme)?void 0:r.unstable_sxConfig)?t:i.A;return Object.keys(e).forEach((t=>{o[t]?n.systemProps[t]=e[t]:n.otherProps[t]=e[t]})),n};function c(e){const{sx:t}=e,r=(0,o.A)(e,s),{systemProps:i,otherProps:c}=l(r);let u;return u=Array.isArray(t)?[i,...t]:"function"==typeof t?(...e)=>{const r=t(...e);return(0,a.Q)(r)?(0,n.A)({},i,r):i}:(0,n.A)({},i,t),(0,n.A)({},c,{sx:u})}},3857:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return n.A},extendSxProp:function(){return o.A},unstable_createStyleFunctionSx:function(){return n.k},unstable_defaultSxConfig:function(){return a.A}});var n=r(3571),o=r(9599),a=r(4188)},3571:function(e,t,r){"use strict";r.d(t,{k:function(){return l}});var n=r(3967),o=r(4620),a=r(6481),i=r(9452),s=r(4188);function l(){function e(e,t,r,o){const s={[e]:t,theme:r},l=o[e];if(!l)return{[e]:t};const{cssProperty:c=e,themeKey:u,transform:d,style:p}=l;if(null==t)return null;if("typography"===u&&"inherit"===t)return{[e]:t};const f=(0,a.Yn)(r,u)||{};return p?p(s):(0,i.NI)(s,t,(t=>{let r=(0,a.BO)(f,d,t);return t===r&&"string"==typeof t&&(r=(0,a.BO)(f,d,`${e}${"default"===t?"":(0,n.A)(t)}`,t)),!1===c?r:{[c]:r}}))}return function t(r){var n;const{sx:a,theme:l={}}=r||{};if(!a)return null;const c=null!=(n=l.unstable_sxConfig)?n:s.A;function u(r){let n=r;if("function"==typeof r)n=r(l);else if("object"!=typeof r)return r;if(!n)return null;const a=(0,i.EU)(l.breakpoints),s=Object.keys(a);let u=a;return Object.keys(n).forEach((r=>{const a="function"==typeof(s=n[r])?s(l):s;var s;if(null!=a)if("object"==typeof a)if(c[r])u=(0,o.A)(u,e(r,a,l,c));else{const e=(0,i.NI)({theme:l},a,(e=>({[r]:e})));!function(...e){const t=e.reduce(((e,t)=>e.concat(Object.keys(t))),[]),r=new Set(t);return e.every((e=>r.size===Object.keys(e).length))}(e,a)?u=(0,o.A)(u,e):u[r]=t({sx:a,theme:l})}else u=(0,o.A)(u,e(r,a,l,c))})),(0,i.vf)(s,u)}return Array.isArray(a)?a.map(u):u(a)}}const c=l();c.filterProps=["sx"],t.A=c},3967:function(e,t,r){"use strict";r.d(t,{A:function(){return o}});var n=r(9453);function o(e){if("string"!=typeof e)throw new Error((0,n.A)(7));return e.charAt(0).toUpperCase()+e.slice(1)}},7149:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return n.A}});var n=r(3967)},725:function(e,t){"use strict";t.A=function(e,t=Number.MIN_SAFE_INTEGER,r=Number.MAX_SAFE_INTEGER){return Math.max(t,Math.min(e,r))}},8586:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return n.A}});var n=r(725)},1317:function(e,t,r){"use strict";r.d(t,{A:function(){return s},Q:function(){return a}});var n=r(8168),o=r(1609);function a(e){if("object"!=typeof e||null===e)return!1;const t=Object.getPrototypeOf(e);return!(null!==t&&t!==Object.prototype&&null!==Object.getPrototypeOf(t)||Symbol.toStringTag in e||Symbol.iterator in e)}function i(e){if(o.isValidElement(e)||!a(e))return e;const t={};return Object.keys(e).forEach((r=>{t[r]=i(e[r])})),t}function s(e,t,r={clone:!0}){const l=r.clone?(0,n.A)({},e):e;return a(e)&&a(t)&&Object.keys(t).forEach((n=>{o.isValidElement(t[n])?l[n]=t[n]:a(t[n])&&Object.prototype.hasOwnProperty.call(e,n)&&a(e[n])?l[n]=s(e[n],t[n],r):r.clone?l[n]=a(t[n])?i(t[n]):t[n]:l[n]=t[n]})),l}},4239:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return n.A},isPlainObject:function(){return n.Q}});var n=r(1317)},9453:function(e,t,r){"use strict";function n(e){let t="https://mui.com/production-error/?code="+e;for(let e=1;e<arguments.length;e+=1)t+="&args[]="+encodeURIComponent(arguments[e]);return"Minified MUI error #"+e+"; visit "+t+" for the full message."}r.d(t,{A:function(){return n}})},8944:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return n.A}});var n=r(9453)},7320:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return l},getFunctionName:function(){return a}});var n=r(6774);const o=/^\s*function(?:\s|\s*\/\*.*\*\/\s*)+([^(\s/]*)\s*/;function a(e){const t=`${e}`.match(o);return t&&t[1]||""}function i(e,t=""){return e.displayName||e.name||a(e)||t}function s(e,t,r){const n=i(t);return e.displayName||(""!==n?`${r}(${n})`:r)}function l(e){if(null!=e){if("string"==typeof e)return e;if("function"==typeof e)return i(e,"Component");if("object"==typeof e)switch(e.$$typeof){case n.vM:return s(e,e.render,"ForwardRef");case n.lD:return s(e,e.type,"memo");default:return}}}},6774:function(e,t){"use strict";Symbol.for("react.transitional.element"),Symbol.for("react.portal"),Symbol.for("react.fragment"),Symbol.for("react.strict_mode"),Symbol.for("react.profiler");Symbol.for("react.provider");Symbol.for("react.consumer"),Symbol.for("react.context");var r=Symbol.for("react.forward_ref"),n=(Symbol.for("react.suspense"),Symbol.for("react.suspense_list"),Symbol.for("react.memo"));Symbol.for("react.lazy"),Symbol.for("react.offscreen"),Symbol.for("react.client.reference");t.vM=r,t.lD=n},1242:function(e,t){var r;function n(e,t){var r=[],n=0;function o(e){return r.push(e),t}function a(){return r[n++]}return{tokenize:function(t){return t.replace(e,o)},detokenize:function(e){return e.replace(new RegExp("("+t+")","g"),a)}}}r=new function(){var e="`TMP`",t="`COMMENT`",r="[^\\u0020-\\u007e]",o="(?:[0-9]*\\.[0-9]+|[0-9]+)",a="(?:em|ex|px|cm|mm|in|pt|pc|deg|rad|grad|ms|s|hz|khz|%)",i="direction\\s*:\\s*",s="['\"]?\\s*",l="(^|[^a-zA-Z])",c="\\/\\*\\!?\\s*@noflip\\s*\\*\\/",u="(?:(?:(?:\\\\[0-9a-f]{1,6})(?:\\r\\n|\\s)?)|\\\\[^\\r\\n\\f0-9a-f])",d="(?:[_a-z0-9-]|"+r+"|"+u+")",p=o+"(?:\\s*"+a+"|-?(?:[_a-z]|"+r+"|"+u+")"+d+"*)?",f="((?:-?"+p+")|(?:inherit|auto))",m="((?:-?"+p+")|(?:inherit|auto)|(?:calc\\((?:(?:(?:\\(|\\)|\\t| )|(?:-?"+o+"(?:\\s*"+a+")?)|(?:\\+|\\-|\\*|\\/)){3,})\\)))",h="(#?"+d+"+|(?:rgba?|hsla?)\\([ \\d.,%-]+\\))",g="(?:[!#$%&*-~]|"+r+"|"+u+")*?",v="(?![a-zA-Z])",b="(?!("+d+"|\\r?\\n|\\s|#|\\:|\\.|\\,|\\+|>|~|\\(|\\)|\\[|\\]|=|\\*=|~=|\\^=|'[^']*'|\"[^\"]*\"|"+t+")*?{)",y="(?!"+g+s+"\\))",x="(?="+g+s+"\\))",w="(\\s*(?:!important\\s*)?[;}])",k=/`TMP`/g,S=/`TMPLTR`/g,C=/`TMPRTL`/g,A=new RegExp("\\/\\*[^*]*\\*+([^\\/*][^*]*\\*+)*\\/","gi"),M=new RegExp("("+c+b+"[^;}]+;?)","gi"),R=new RegExp("("+c+"[^\\}]*?})","gi"),$=new RegExp("("+i+")ltr","gi"),E=new RegExp("("+i+")rtl","gi"),I=new RegExp(l+"(left)"+v+y+b,"gi"),O=new RegExp(l+"(right)"+v+y+b,"gi"),j=new RegExp(l+"(left)"+x,"gi"),T=new RegExp(l+"(right)"+x,"gi"),P=/(:dir\( *)ltr( *\))/g,B=/(:dir\( *)rtl( *\))/g,_=new RegExp(l+"(ltr)"+x,"gi"),z=new RegExp(l+"(rtl)"+x,"gi"),L=new RegExp(l+"([ns]?)e-resize","gi"),N=new RegExp(l+"([ns]?)w-resize","gi"),W=new RegExp("((?:margin|padding|border-width)\\s*:\\s*)"+m+"(\\s+)"+m+"(\\s+)"+m+"(\\s+)"+m+w,"gi"),F=new RegExp("((?:-color|border-style)\\s*:\\s*)"+h+"(\\s+)"+h+"(\\s+)"+h+"(\\s+)"+h+w,"gi"),D=new RegExp("(background(?:-position)?\\s*:\\s*(?:[^:;}\\s]+\\s+)*?)("+p+")","gi"),H=new RegExp("(background-position-x\\s*:\\s*)(-?"+o+"%)","gi"),V=new RegExp("(border-radius\\s*:\\s*)"+f+"(?:(?:\\s+"+f+")(?:\\s+"+f+")?(?:\\s+"+f+")?)?(?:(?:(?:\\s*\\/\\s*)"+f+")(?:\\s+"+f+")?(?:\\s+"+f+")?(?:\\s+"+f+")?)?"+w,"gi"),G=new RegExp("(box-shadow\\s*:\\s*(?:inset\\s*)?)"+f,"gi"),K=new RegExp("(text-shadow\\s*:\\s*)"+f+"(\\s*)"+h,"gi"),U=new RegExp("(text-shadow\\s*:\\s*)"+h+"(\\s*)"+f,"gi"),X=new RegExp("(text-shadow\\s*:\\s*)"+f,"gi"),Z=new RegExp("(transform\\s*:[^;}]*)(translateX\\s*\\(\\s*)"+f+"(\\s*\\))","gi"),Y=new RegExp("(transform\\s*:[^;}]*)(translate\\s*\\(\\s*)"+f+"((?:\\s*,\\s*"+f+"){0,2}\\s*\\))","gi");function q(e,t,r){var n,o;return"%"===r.slice(-1)&&(-1!==(n=r.indexOf("."))?(o=r.length-n-2,r=(r=100-parseFloat(r)).toFixed(o)+"%"):r=100-parseFloat(r)+"%"),t+r}function J(e){switch(e.length){case 4:e=[e[1],e[0],e[3],e[2]];break;case 3:e=[e[1],e[0],e[1],e[2]];break;case 2:e=[e[1],e[0]];break;case 1:e=[e[0]]}return e.join(" ")}function Q(e,t){var r=[].slice.call(arguments),n=r.slice(2,6).filter((function(e){return e})),o=r.slice(6,10).filter((function(e){return e})),a=r[10]||"";return t+(o.length?J(n)+" / "+J(o):J(n))+a}function ee(e){return 0===parseFloat(e)?e:"-"===e[0]?e.slice(1):"-"+e}function te(e,t,r){return t+ee(r)}function re(e,t,r,n,o){return t+r+ee(n)+o}function ne(e,t,r,n,o){return t+r+n+ee(o)}return{transform:function(r,o){var a=new n(M,"`NOFLIP_SINGLE`"),i=new n(R,"`NOFLIP_CLASS`"),s=new n(A,t);return r=s.tokenize(i.tokenize(a.tokenize(r.replace("`","%60")))),o.transformDirInUrl&&(r=r.replace(P,"$1`TMPLTR`$2").replace(B,"$1`TMPRTL`$2").replace(_,"$1"+e).replace(z,"$1ltr").replace(k,"rtl").replace(S,"ltr").replace(C,"rtl")),o.transformEdgeInUrl&&(r=r.replace(j,"$1"+e).replace(T,"$1left").replace(k,"right")),r=r.replace($,"$1"+e).replace(E,"$1ltr").replace(k,"rtl").replace(I,"$1"+e).replace(O,"$1left").replace(k,"right").replace(L,"$1$2"+e).replace(N,"$1$2e-resize").replace(k,"w-resize").replace(V,Q).replace(G,te).replace(K,ne).replace(U,ne).replace(X,te).replace(Z,re).replace(Y,re).replace(W,"$1$2$3$8$5$6$7$4$9").replace(F,"$1$2$3$8$5$6$7$4$9").replace(D,q).replace(H,q),a.detokenize(i.detokenize(s.detokenize(r)))}}},e.exports?t.transform=function(e,t,n){var o;return"object"==typeof t?o=t:(o={},"boolean"==typeof t&&(o.transformDirInUrl=t),"boolean"==typeof n&&(o.transformEdgeInUrl=n)),r.transform(e,o)}:"undefined"!=typeof window&&(window.cssjanus=r)},4146:function(e,t,r){"use strict";var n=r(3404),o={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},a={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},i={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};function l(e){return n.isMemo(e)?i:s[e.$$typeof]||o}s[n.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},s[n.Memo]=i;var c=Object.defineProperty,u=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,p=Object.getOwnPropertyDescriptor,f=Object.getPrototypeOf,m=Object.prototype;e.exports=function e(t,r,n){if("string"!=typeof r){if(m){var o=f(r);o&&o!==m&&e(t,o,n)}var i=u(r);d&&(i=i.concat(d(r)));for(var s=l(t),h=l(r),g=0;g<i.length;++g){var v=i[g];if(!(a[v]||n&&n[v]||h&&h[v]||s&&s[v])){var b=p(r,v);try{c(t,v,b)}catch(e){}}}}return t}},3072:function(e,t){"use strict";var r="function"==typeof Symbol&&Symbol.for,n=r?Symbol.for("react.element"):60103,o=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,i=r?Symbol.for("react.strict_mode"):60108,s=r?Symbol.for("react.profiler"):60114,l=r?Symbol.for("react.provider"):60109,c=r?Symbol.for("react.context"):60110,u=r?Symbol.for("react.async_mode"):60111,d=r?Symbol.for("react.concurrent_mode"):60111,p=r?Symbol.for("react.forward_ref"):60112,f=r?Symbol.for("react.suspense"):60113,m=r?Symbol.for("react.suspense_list"):60120,h=r?Symbol.for("react.memo"):60115,g=r?Symbol.for("react.lazy"):60116,v=r?Symbol.for("react.block"):60121,b=r?Symbol.for("react.fundamental"):60117,y=r?Symbol.for("react.responder"):60118,x=r?Symbol.for("react.scope"):60119;function w(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case n:switch(e=e.type){case u:case d:case a:case s:case i:case f:return e;default:switch(e=e&&e.$$typeof){case c:case p:case g:case h:case l:return e;default:return t}}case o:return t}}}function k(e){return w(e)===d}t.AsyncMode=u,t.ConcurrentMode=d,t.ContextConsumer=c,t.ContextProvider=l,t.Element=n,t.ForwardRef=p,t.Fragment=a,t.Lazy=g,t.Memo=h,t.Portal=o,t.Profiler=s,t.StrictMode=i,t.Suspense=f,t.isAsyncMode=function(e){return k(e)||w(e)===u},t.isConcurrentMode=k,t.isContextConsumer=function(e){return w(e)===c},t.isContextProvider=function(e){return w(e)===l},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===n},t.isForwardRef=function(e){return w(e)===p},t.isFragment=function(e){return w(e)===a},t.isLazy=function(e){return w(e)===g},t.isMemo=function(e){return w(e)===h},t.isPortal=function(e){return w(e)===o},t.isProfiler=function(e){return w(e)===s},t.isStrictMode=function(e){return w(e)===i},t.isSuspense=function(e){return w(e)===f},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===d||e===s||e===i||e===f||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===g||e.$$typeof===h||e.$$typeof===l||e.$$typeof===c||e.$$typeof===p||e.$$typeof===b||e.$$typeof===y||e.$$typeof===x||e.$$typeof===v)},t.typeOf=w},3404:function(e,t,r){"use strict";e.exports=r(3072)},5338:function(e,t,r){"use strict";var n=r(5795);t.H=n.createRoot,n.hydrateRoot},1609:function(e){"use strict";e.exports=window.React},5795:function(e){"use strict";e.exports=window.ReactDOM},790:function(e){"use strict";e.exports=window.ReactJSXRuntime},4634:function(e){function t(){return e.exports=t=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,t.apply(null,arguments)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},4994:function(e){e.exports=function(e){return e&&e.__esModule?e:{default:e}},e.exports.__esModule=!0,e.exports.default=e.exports},4893:function(e){e.exports=function(e,t){if(null==e)return{};var r={};for(var n in e)if({}.hasOwnProperty.call(e,n)){if(-1!==t.indexOf(n))continue;r[n]=e[n]}return r},e.exports.__esModule=!0,e.exports.default=e.exports},8168:function(e,t,r){"use strict";function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},n.apply(null,arguments)}r.d(t,{A:function(){return n}})},8587:function(e,t,r){"use strict";function n(e,t){if(null==e)return{};var r={};for(var n in e)if({}.hasOwnProperty.call(e,n)){if(-1!==t.indexOf(n))continue;r[n]=e[n]}return r}r.d(t,{A:function(){return n}})}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={exports:{}};return e[n](a,a.exports,r),a.exports}r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,{a:t}),t},r.d=function(e,t){for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){"use strict";var e=r(1609),t=r.n(e),n=window.wp.apiFetch,o=r.n(n),a=window.wp.i18n,i=r(790);const s=(0,e.createContext)(),l=({children:t})=>{const[r,n]=React.useState(!0),[l,c]=React.useState({}),[u,d]=React.useState({}),[p,f]=(0,e.useState)(""),[m,h]=(0,e.useState)(0),[g,v]=(0,e.useState)(""),{elementorInstalled:b,elementorActive:y,wizardCompleted:x}=l,{elementorAppConfig:w}=window;return(0,e.useEffect)((()=>{w&&d(w["kit-library"])}),[w]),(0,e.useEffect)((()=>{x?h(2):(!1===b&&(f("install-elementor"),v((0,a.__)("Start building my website","hello-plus"))),b&&!1===y&&(f("activate-elementor"),v((0,a.__)("Start building my website","hello-plus"))),b&&y&&(f("install-kit"),v((0,a.__)("Install Kit","hello-plus")),h(1)))}),[b,y,x]),(0,e.useEffect)((()=>{Promise.all([o()({path:"/elementor-hello-plus/v1/onboarding-settings"})]).then((([e])=>{c(e.settings)})).finally((()=>{n(!1)}))}),[]),(0,i.jsx)(s.Provider,{value:{onboardingSettings:l,stepAction:p,setStepAction:f,buttonText:g,step:m,setStep:h,isLoading:r,elementorKitSettings:u,setIsLoading:n},children:t})};var c=r(5338),u=r(8168),d=r(8587);function p(e){var t,r,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(r=p(e[t]))&&(n&&(n+=" "),n+=r)}else for(r in e)e[r]&&(n&&(n+=" "),n+=r);return n}var f=function(){for(var e,t,r=0,n="",o=arguments.length;r<o;r++)(e=arguments[r])&&(t=p(e))&&(n&&(n+=" "),n+=t);return n},m=r(9462),h=r(3571),g=r(9599),v=r(8749),b=r(9214),y=function(t=null){const r=e.useContext(b.T);return r&&(n=r,0!==Object.keys(n).length)?r:t;var n};const x=(0,v.A)();var w=function(e=x){return y(e)};const k=["className","component"],S=e=>e;var C=(()=>{let e=S;return{configure(t){e=t},generate(t){return e(t)},reset(){e=S}}})(),A=r(9453),M=r(1317),R=r(4188),$=r(771),E={black:"#000",white:"#fff"},I={50:"#fafafa",100:"#f5f5f5",200:"#eeeeee",300:"#e0e0e0",400:"#bdbdbd",500:"#9e9e9e",600:"#757575",700:"#616161",800:"#424242",900:"#212121",A100:"#f5f5f5",A200:"#eeeeee",A400:"#bdbdbd",A700:"#616161"},O="#f3e5f5",j="#ce93d8",T="#ba68c8",P="#ab47bc",B="#9c27b0",_="#7b1fa2",z="#e57373",L="#ef5350",N="#f44336",W="#d32f2f",F="#c62828",D="#ffb74d",H="#ffa726",V="#ff9800",G="#f57c00",K="#e65100",U="#e3f2fd",X="#90caf9",Z="#42a5f5",Y="#1976d2",q="#1565c0",J="#4fc3f7",Q="#29b6f6",ee="#03a9f4",te="#0288d1",re="#01579b",ne="#81c784",oe="#66bb6a",ae="#4caf50",ie="#388e3c",se="#2e7d32",le="#1b5e20";const ce=["mode","contrastThreshold","tonalOffset"],ue={text:{primary:"rgba(0, 0, 0, 0.87)",secondary:"rgba(0, 0, 0, 0.6)",disabled:"rgba(0, 0, 0, 0.38)"},divider:"rgba(0, 0, 0, 0.12)",background:{paper:E.white,default:E.white},action:{active:"rgba(0, 0, 0, 0.54)",hover:"rgba(0, 0, 0, 0.04)",hoverOpacity:.04,selected:"rgba(0, 0, 0, 0.08)",selectedOpacity:.08,disabled:"rgba(0, 0, 0, 0.26)",disabledBackground:"rgba(0, 0, 0, 0.12)",disabledOpacity:.38,focus:"rgba(0, 0, 0, 0.12)",focusOpacity:.12,activatedOpacity:.12}},de={text:{primary:E.white,secondary:"rgba(255, 255, 255, 0.7)",disabled:"rgba(255, 255, 255, 0.5)",icon:"rgba(255, 255, 255, 0.5)"},divider:"rgba(255, 255, 255, 0.12)",background:{paper:"#121212",default:"#121212"},action:{active:E.white,hover:"rgba(255, 255, 255, 0.08)",hoverOpacity:.08,selected:"rgba(255, 255, 255, 0.16)",selectedOpacity:.16,disabled:"rgba(255, 255, 255, 0.3)",disabledBackground:"rgba(255, 255, 255, 0.12)",disabledOpacity:.38,focus:"rgba(255, 255, 255, 0.12)",focusOpacity:.12,activatedOpacity:.24}};function pe(e,t,r,n){const o=n.light||n,a=n.dark||1.5*n;e[t]||(e.hasOwnProperty(r)?e[t]=e[r]:"light"===t?e.light=(0,$.a)(e.main,o):"dark"===t&&(e.dark=(0,$.e$)(e.main,a)))}const fe=["fontFamily","fontSize","fontWeightLight","fontWeightRegular","fontWeightMedium","fontWeightBold","htmlFontSize","allVariants","pxToRem"],me={textTransform:"uppercase"},he='"Roboto", "Helvetica", "Arial", sans-serif';function ge(e,t){const r="function"==typeof t?t(e):t,{fontFamily:n=he,fontSize:o=14,fontWeightLight:a=300,fontWeightRegular:i=400,fontWeightMedium:s=500,fontWeightBold:l=700,htmlFontSize:c=16,allVariants:p,pxToRem:f}=r,m=(0,d.A)(r,fe),h=o/14,g=f||(e=>e/c*h+"rem"),v=(e,t,r,o,a)=>{return(0,u.A)({fontFamily:n,fontWeight:e,fontSize:g(t),lineHeight:r},n===he?{letterSpacing:(i=o/t,Math.round(1e5*i)/1e5+"em")}:{},a,p);var i},b={h1:v(a,96,1.167,-1.5),h2:v(a,60,1.2,-.5),h3:v(i,48,1.167,0),h4:v(i,34,1.235,.25),h5:v(i,24,1.334,0),h6:v(s,20,1.6,.15),subtitle1:v(i,16,1.75,.15),subtitle2:v(s,14,1.57,.1),body1:v(i,16,1.5,.15),body2:v(i,14,1.43,.15),button:v(s,14,1.75,.4,me),caption:v(i,12,1.66,.4),overline:v(i,12,2.66,1,me),inherit:{fontFamily:"inherit",fontWeight:"inherit",fontSize:"inherit",lineHeight:"inherit",letterSpacing:"inherit"}};return(0,M.A)((0,u.A)({htmlFontSize:c,pxToRem:g,fontFamily:n,fontSize:o,fontWeightLight:a,fontWeightRegular:i,fontWeightMedium:s,fontWeightBold:l},b),m,{clone:!1})}function ve(...e){return[`${e[0]}px ${e[1]}px ${e[2]}px ${e[3]}px rgba(0,0,0,0.2)`,`${e[4]}px ${e[5]}px ${e[6]}px ${e[7]}px rgba(0,0,0,0.14)`,`${e[8]}px ${e[9]}px ${e[10]}px ${e[11]}px rgba(0,0,0,0.12)`].join(",")}var be=["none",ve(0,2,1,-1,0,1,1,0,0,1,3,0),ve(0,3,1,-2,0,2,2,0,0,1,5,0),ve(0,3,3,-2,0,3,4,0,0,1,8,0),ve(0,2,4,-1,0,4,5,0,0,1,10,0),ve(0,3,5,-1,0,5,8,0,0,1,14,0),ve(0,3,5,-1,0,6,10,0,0,1,18,0),ve(0,4,5,-2,0,7,10,1,0,2,16,1),ve(0,5,5,-3,0,8,10,1,0,3,14,2),ve(0,5,6,-3,0,9,12,1,0,3,16,2),ve(0,6,6,-3,0,10,14,1,0,4,18,3),ve(0,6,7,-4,0,11,15,1,0,4,20,3),ve(0,7,8,-4,0,12,17,2,0,5,22,4),ve(0,7,8,-4,0,13,19,2,0,5,24,4),ve(0,7,9,-4,0,14,21,2,0,5,26,4),ve(0,8,9,-5,0,15,22,2,0,6,28,5),ve(0,8,10,-5,0,16,24,2,0,6,30,5),ve(0,8,11,-5,0,17,26,2,0,6,32,5),ve(0,9,11,-5,0,18,28,2,0,7,34,6),ve(0,9,12,-6,0,19,29,2,0,7,36,6),ve(0,10,13,-6,0,20,31,3,0,8,38,7),ve(0,10,13,-6,0,21,33,3,0,8,40,7),ve(0,10,14,-6,0,22,35,3,0,8,42,7),ve(0,11,14,-7,0,23,36,3,0,9,44,8),ve(0,11,15,-7,0,24,38,3,0,9,46,8)];const ye=["duration","easing","delay"],xe={easeInOut:"cubic-bezier(0.4, 0, 0.2, 1)",easeOut:"cubic-bezier(0.0, 0, 0.2, 1)",easeIn:"cubic-bezier(0.4, 0, 1, 1)",sharp:"cubic-bezier(0.4, 0, 0.6, 1)"},we={shortest:150,shorter:200,short:250,standard:300,complex:375,enteringScreen:225,leavingScreen:195};function ke(e){return`${Math.round(e)}ms`}function Se(e){if(!e)return 0;const t=e/36;return Math.round(10*(4+15*t**.25+t/5))}function Ce(e){const t=(0,u.A)({},xe,e.easing),r=(0,u.A)({},we,e.duration);return(0,u.A)({getAutoHeightDuration:Se,create:(e=["all"],n={})=>{const{duration:o=r.standard,easing:a=t.easeInOut,delay:i=0}=n;return(0,d.A)(n,ye),(Array.isArray(e)?e:[e]).map((e=>`${e} ${"string"==typeof o?o:ke(o)} ${a} ${"string"==typeof i?i:ke(i)}`)).join(",")}},e,{easing:t,duration:r})}var Ae={mobileStepper:1e3,fab:1050,speedDial:1050,appBar:1100,drawer:1200,modal:1300,snackbar:1400,tooltip:1500};const Me=["breakpoints","mixins","spacing","palette","transitions","typography","shape"];var Re=function(e={},...t){const{mixins:r={},palette:n={},transitions:o={},typography:a={}}=e,i=(0,d.A)(e,Me);if(e.vars)throw new Error((0,A.A)(18));const s=function(e){const{mode:t="light",contrastThreshold:r=3,tonalOffset:n=.2}=e,o=(0,d.A)(e,ce),a=e.primary||function(e="light"){return"dark"===e?{main:X,light:U,dark:Z}:{main:Y,light:Z,dark:q}}(t),i=e.secondary||function(e="light"){return"dark"===e?{main:j,light:O,dark:P}:{main:B,light:T,dark:_}}(t),s=e.error||function(e="light"){return"dark"===e?{main:N,light:z,dark:W}:{main:W,light:L,dark:F}}(t),l=e.info||function(e="light"){return"dark"===e?{main:Q,light:J,dark:te}:{main:te,light:ee,dark:re}}(t),c=e.success||function(e="light"){return"dark"===e?{main:oe,light:ne,dark:ie}:{main:se,light:ae,dark:le}}(t),p=e.warning||function(e="light"){return"dark"===e?{main:H,light:D,dark:G}:{main:"#ed6c02",light:V,dark:K}}(t);function f(e){return(0,$.eM)(e,de.text.primary)>=r?de.text.primary:ue.text.primary}const m=({color:e,name:t,mainShade:r=500,lightShade:o=300,darkShade:a=700})=>{if(!(e=(0,u.A)({},e)).main&&e[r]&&(e.main=e[r]),!e.hasOwnProperty("main"))throw new Error((0,A.A)(11,t?` (${t})`:"",r));if("string"!=typeof e.main)throw new Error((0,A.A)(12,t?` (${t})`:"",JSON.stringify(e.main)));return pe(e,"light",o,n),pe(e,"dark",a,n),e.contrastText||(e.contrastText=f(e.main)),e},h={dark:de,light:ue};return(0,M.A)((0,u.A)({common:(0,u.A)({},E),mode:t,primary:m({color:a,name:"primary"}),secondary:m({color:i,name:"secondary",mainShade:"A400",lightShade:"A200",darkShade:"A700"}),error:m({color:s,name:"error"}),warning:m({color:p,name:"warning"}),info:m({color:l,name:"info"}),success:m({color:c,name:"success"}),grey:I,contrastThreshold:r,getContrastText:f,augmentColor:m,tonalOffset:n},h[t]),o)}(n),l=(0,v.A)(e);let c=(0,M.A)(l,{mixins:(p=l.breakpoints,f=r,(0,u.A)({toolbar:{minHeight:56,[p.up("xs")]:{"@media (orientation: landscape)":{minHeight:48}},[p.up("sm")]:{minHeight:64}}},f)),palette:s,shadows:be.slice(),typography:ge(s,a),transitions:Ce(o),zIndex:(0,u.A)({},Ae)});var p,f;return c=(0,M.A)(c,i),c=t.reduce(((e,t)=>(0,M.A)(e,t)),c),c.unstable_sxConfig=(0,u.A)({},R.A,null==i?void 0:i.unstable_sxConfig),c.unstable_sx=function(e){return(0,h.A)({sx:e,theme:this})},c},$e="$$material";const Ee={active:"active",checked:"checked",completed:"completed",disabled:"disabled",error:"error",expanded:"expanded",focused:"focused",focusVisible:"focusVisible",open:"open",readOnly:"readOnly",required:"required",selected:"selected"};function Ie(e,t,r="Mui"){const n=Ee[t];return n?`${r}-${n}`:`${C.generate(e)}-${t}`}function Oe(e,t,r="Mui"){const n={};return t.forEach((t=>{n[t]=Ie(e,t,r)})),n}var je=Oe("MuiBox",["root"]);const Te=Re();var Pe=function(t={}){const{themeId:r,defaultTheme:n,defaultClassName:o="MuiBox-root",generateClassName:a}=t,s=(0,m.default)("div",{shouldForwardProp:e=>"theme"!==e&&"sx"!==e&&"as"!==e})(h.A);return e.forwardRef((function(e,t){const l=w(n),c=(0,g.A)(e),{className:p,component:m="div"}=c,h=(0,d.A)(c,k);return(0,i.jsx)(s,(0,u.A)({as:m,ref:t,className:f(p,a?a(o):o),theme:r&&l[r]||l},h))}))}({themeId:$e,defaultTheme:Te,defaultClassName:je.root,generateClassName:C.generate});const Be=t().forwardRef(((e,r)=>t().createElement(Pe,{...e,ref:r})));var _e=r(725);function ze(e,t=0,r=1){return(0,_e.A)(e,t,r)}function Le(e){if(e.type)return e;if("#"===e.charAt(0))return Le(function(e){e=e.slice(1);const t=new RegExp(`.{1,${e.length>=6?2:1}}`,"g");let r=e.match(t);return r&&1===r[0].length&&(r=r.map((e=>e+e))),r?`rgb${4===r.length?"a":""}(${r.map(((e,t)=>t<3?parseInt(e,16):Math.round(parseInt(e,16)/255*1e3)/1e3)).join(", ")})`:""}(e));const t=e.indexOf("("),r=e.substring(0,t);if(-1===["rgb","rgba","hsl","hsla","color"].indexOf(r))throw new Error((0,A.A)(9,e));let n,o=e.substring(t+1,e.length-1);if("color"===r){if(o=o.split(" "),n=o.shift(),4===o.length&&"/"===o[3].charAt(0)&&(o[3]=o[3].slice(1)),-1===["srgb","display-p3","a98-rgb","prophoto-rgb","rec-2020"].indexOf(n))throw new Error((0,A.A)(10,n))}else o=o.split(",");return o=o.map((e=>parseFloat(e))),{type:r,values:o,colorSpace:n}}function Ne(e){const{type:t,colorSpace:r}=e;let{values:n}=e;return-1!==t.indexOf("rgb")?n=n.map(((e,t)=>t<3?parseInt(e,10):e)):-1!==t.indexOf("hsl")&&(n[1]=`${n[1]}%`,n[2]=`${n[2]}%`),n=-1!==t.indexOf("color")?`${r} ${n.join(" ")}`:`${n.join(", ")}`,`${t}(${n})`}function We(e,t){return e=Le(e),t=ze(t),"rgb"!==e.type&&"hsl"!==e.type||(e.type+="a"),"color"===e.type?e.values[3]=`/${t}`:e.values[3]=t,Ne(e)}function Fe(e,t){if(e=Le(e),t=ze(t),-1!==e.type.indexOf("hsl"))e.values[2]*=1-t;else if(-1!==e.type.indexOf("rgb")||-1!==e.type.indexOf("color"))for(let r=0;r<3;r+=1)e.values[r]*=1-t;return Ne(e)}function De(e,t){if(e=Le(e),t=ze(t),-1!==e.type.indexOf("hsl"))e.values[2]+=(100-e.values[2])*t;else if(-1!==e.type.indexOf("rgb"))for(let r=0;r<3;r+=1)e.values[r]+=(255-e.values[r])*t;else if(-1!==e.type.indexOf("color"))for(let r=0;r<3;r+=1)e.values[r]+=(1-e.values[r])*t;return Ne(e)}var He=e.createContext(null);function Ve(){return e.useContext(He)}var Ge="function"==typeof Symbol&&Symbol.for?Symbol.for("mui.nested"):"__THEME_NESTED__",Ke=function(t){const{children:r,theme:n}=t,o=Ve(),a=e.useMemo((()=>{const e=null===o?n:function(e,t){return"function"==typeof t?t(e):(0,u.A)({},e,t)}(o,n);return null!=e&&(e[Ge]=null!==o),e}),[n,o]);return(0,i.jsx)(He.Provider,{value:a,children:r})};const Ue=["value"],Xe=e.createContext();var Ze=function(e){let{value:t}=e,r=(0,d.A)(e,Ue);return(0,i.jsx)(Xe.Provider,(0,u.A)({value:null==t||t},r))};const Ye=e.createContext(void 0);var qe=function({value:e,children:t}){return(0,i.jsx)(Ye.Provider,{value:e,children:t})};const Je={};function Qe(t,r,n,o=!1){return e.useMemo((()=>{const e=t&&r[t]||r;if("function"==typeof n){const a=n(e),i=t?(0,u.A)({},r,{[t]:a}):a;return o?()=>i:i}return t?(0,u.A)({},r,{[t]:n}):(0,u.A)({},r,n)}),[t,r,n,o])}var et=function(e){const{children:t,theme:r,themeId:n}=e,o=y(Je),a=Ve()||Je,s=Qe(n,o,r),l=Qe(n,a,r,!0),c="rtl"===s.direction;return(0,i.jsx)(Ke,{theme:l,children:(0,i.jsx)(b.T.Provider,{value:s,children:(0,i.jsx)(Ze,{value:c,children:(0,i.jsx)(qe,{value:null==s?void 0:s.components,children:t})})})})};const tt=["theme"];function rt(e){let{theme:t}=e,r=(0,d.A)(e,tt);const n=t[$e];return(0,i.jsx)(et,(0,u.A)({},r,{themeId:n?$e:void 0,theme:n||t}))}var nt=r(1242),ot=r.n(nt),at="-ms-",it="-moz-",st="-webkit-",lt="comm",ct="rule",ut="decl",dt="@keyframes",pt=Math.abs,ft=String.fromCharCode,mt=Object.assign;function ht(e){return e.trim()}function gt(e,t){return(e=t.exec(e))?e[0]:e}function vt(e,t,r){return e.replace(t,r)}function bt(e,t){return e.indexOf(t)}function yt(e,t){return 0|e.charCodeAt(t)}function xt(e,t,r){return e.slice(t,r)}function wt(e){return e.length}function kt(e){return e.length}function St(e,t){return t.push(e),e}function Ct(e,t){for(var r="",n=kt(e),o=0;o<n;o++)r+=t(e[o],o,e,t)||"";return r}var At=1,Mt=1,Rt=0,$t=0,Et=0,It="";function Ot(e,t,r,n,o,a,i){return{value:e,root:t,parent:r,type:n,props:o,children:a,line:At,column:Mt,length:i,return:""}}function jt(e,t){return mt(Ot("",null,null,"",null,null,0),e,{length:-e.length},t)}function Tt(){return Et=$t<Rt?yt(It,$t++):0,Mt++,10===Et&&(Mt=1,At++),Et}function Pt(){return yt(It,$t)}function Bt(){return $t}function _t(e,t){return xt(It,e,t)}function zt(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function Lt(e){return ht(_t($t-1,Ft(91===e?e+2:40===e?e+1:e)))}function Nt(e){for(;(Et=Pt())&&Et<33;)Tt();return zt(e)>2||zt(Et)>3?"":" "}function Wt(e,t){for(;--t&&Tt()&&!(Et<48||Et>102||Et>57&&Et<65||Et>70&&Et<97););return _t(e,Bt()+(t<6&&32==Pt()&&32==Tt()))}function Ft(e){for(;Tt();)switch(Et){case e:return $t;case 34:case 39:34!==e&&39!==e&&Ft(Et);break;case 40:41===e&&Ft(e);break;case 92:Tt()}return $t}function Dt(e,t){for(;Tt()&&e+Et!==57&&(e+Et!==84||47!==Pt()););return"/*"+_t(t,$t-1)+"*"+ft(47===e?e:Tt())}function Ht(e){for(;!zt(Pt());)Tt();return _t(e,$t)}function Vt(e){return function(e){return It="",e}(Gt("",null,null,null,[""],e=function(e){return At=Mt=1,Rt=wt(It=e),$t=0,[]}(e),0,[0],e))}function Gt(e,t,r,n,o,a,i,s,l){for(var c=0,u=0,d=i,p=0,f=0,m=0,h=1,g=1,v=1,b=0,y="",x=o,w=a,k=n,S=y;g;)switch(m=b,b=Tt()){case 40:if(108!=m&&58==yt(S,d-1)){-1!=bt(S+=vt(Lt(b),"&","&\f"),"&\f")&&(v=-1);break}case 34:case 39:case 91:S+=Lt(b);break;case 9:case 10:case 13:case 32:S+=Nt(m);break;case 92:S+=Wt(Bt()-1,7);continue;case 47:switch(Pt()){case 42:case 47:St(Ut(Dt(Tt(),Bt()),t,r),l);break;default:S+="/"}break;case 123*h:s[c++]=wt(S)*v;case 125*h:case 59:case 0:switch(b){case 0:case 125:g=0;case 59+u:f>0&&wt(S)-d&&St(f>32?Xt(S+";",n,r,d-1):Xt(vt(S," ","")+";",n,r,d-2),l);break;case 59:S+=";";default:if(St(k=Kt(S,t,r,c,u,o,s,y,x=[],w=[],d),a),123===b)if(0===u)Gt(S,t,k,k,x,a,d,s,w);else switch(99===p&&110===yt(S,3)?100:p){case 100:case 109:case 115:Gt(e,k,k,n&&St(Kt(e,k,k,0,0,o,s,y,o,x=[],d),w),o,w,d,s,n?x:w);break;default:Gt(S,k,k,k,[""],w,0,s,w)}}c=u=f=0,h=v=1,y=S="",d=i;break;case 58:d=1+wt(S),f=m;default:if(h<1)if(123==b)--h;else if(125==b&&0==h++&&125==(Et=$t>0?yt(It,--$t):0,Mt--,10===Et&&(Mt=1,At--),Et))continue;switch(S+=ft(b),b*h){case 38:v=u>0?1:(S+="\f",-1);break;case 44:s[c++]=(wt(S)-1)*v,v=1;break;case 64:45===Pt()&&(S+=Lt(Tt())),p=Pt(),u=d=wt(y=S+=Ht(Bt())),b++;break;case 45:45===m&&2==wt(S)&&(h=0)}}return a}function Kt(e,t,r,n,o,a,i,s,l,c,u){for(var d=o-1,p=0===o?a:[""],f=kt(p),m=0,h=0,g=0;m<n;++m)for(var v=0,b=xt(e,d+1,d=pt(h=i[m])),y=e;v<f;++v)(y=ht(h>0?p[v]+" "+b:vt(b,/&\f/g,p[v])))&&(l[g++]=y);return Ot(e,t,r,0===o?ct:s,l,c,u)}function Ut(e,t,r){return Ot(e,t,r,lt,ft(Et),xt(e,2,-2),0)}function Xt(e,t,r,n){return Ot(e,t,r,ut,xt(e,0,n),xt(e,n+1,-1),n)}function Zt(e,t,r){switch(e.type){case"@import":case ut:case lt:return e.return=e.return||e.value;case ct:e.value=Array.isArray(e.props)?e.props.join(","):e.props,Array.isArray(e.children)&&e.children.forEach((function(e){e.type===lt&&(e.children=e.value)}))}var n=Ct(Array.prototype.concat(e.children),Zt);return wt(n)?e.return=e.value+"{"+n+"}":""}function Yt(e,t,r,n){if(e.type===dt||"@supports"===e.type||e.type===ct&&(!e.parent||"@media"===e.parent.type||e.parent.type===ct)){var o=ot().transform(Zt(e));e.children=o?Vt(o)[0].children:[],e.return=""}}Object.defineProperty(Yt,"name",{value:"stylisRTLPlugin"});var qt=Yt,Jt=r(1568);function Qt(e,t,r){switch(function(e,t){return 45^yt(e,0)?(((t<<2^yt(e,0))<<2^yt(e,1))<<2^yt(e,2))<<2^yt(e,3):0}(e,t)){case 5103:return st+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return st+e+e;case 4789:return it+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return st+e+it+e+at+e+e;case 5936:switch(yt(e,t+11)){case 114:return st+e+at+vt(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return st+e+at+vt(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return st+e+at+vt(e,/[svh]\w+-[tblr]{2}/,"lr")+e}case 6828:case 4268:case 2903:return st+e+at+e+e;case 6165:return st+e+at+"flex-"+e+e;case 5187:return st+e+vt(e,/(\w+).+(:[^]+)/,st+"box-$1$2"+at+"flex-$1$2")+e;case 5443:return st+e+at+"flex-item-"+vt(e,/flex-|-self/g,"")+(gt(e,/flex-|baseline/)?"":at+"grid-row-"+vt(e,/flex-|-self/g,""))+e;case 4675:return st+e+at+"flex-line-pack"+vt(e,/align-content|flex-|-self/g,"")+e;case 5548:return st+e+at+vt(e,"shrink","negative")+e;case 5292:return st+e+at+vt(e,"basis","preferred-size")+e;case 6060:return st+"box-"+vt(e,"-grow","")+st+e+at+vt(e,"grow","positive")+e;case 4554:return st+vt(e,/([^-])(transform)/g,"$1"+st+"$2")+e;case 6187:return vt(vt(vt(e,/(zoom-|grab)/,st+"$1"),/(image-set)/,st+"$1"),e,"")+e;case 5495:case 3959:return vt(e,/(image-set\([^]*)/,st+"$1$`$1");case 4968:return vt(vt(e,/(.+:)(flex-)?(.*)/,st+"box-pack:$3"+at+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+st+e+e;case 4200:if(!gt(e,/flex-|baseline/))return at+"grid-column-align"+xt(e,t)+e;break;case 2592:case 3360:return at+vt(e,"template-","")+e;case 4384:case 3616:return r&&r.some((function(e,r){return t=r,gt(e.props,/grid-\w+-end/)}))?~bt(e+(r=r[t].value),"span")?e:at+vt(e,"-start","")+e+at+"grid-row-span:"+(~bt(r,"span")?gt(r,/\d+/):+gt(r,/\d+/)-+gt(e,/\d+/))+";":at+vt(e,"-start","")+e;case 4896:case 4128:return r&&r.some((function(e){return gt(e.props,/grid-\w+-start/)}))?e:at+vt(vt(e,"-end","-span"),"span ","")+e;case 4095:case 3583:case 4068:case 2532:return vt(e,/(.+)-inline(.+)/,st+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(wt(e)-1-t>6)switch(yt(e,t+1)){case 109:if(45!==yt(e,t+4))break;case 102:return vt(e,/(.+:)(.+)-([^]+)/,"$1"+st+"$2-$3$1"+it+(108==yt(e,t+3)?"$3":"$2-$3"))+e;case 115:return~bt(e,"stretch")?Qt(vt(e,"stretch","fill-available"),t,r)+e:e}break;case 5152:case 5920:return vt(e,/(.+?):(\d+)(\s*\/\s*(span)?\s*(\d+))?(.*)/,(function(t,r,n,o,a,i,s){return at+r+":"+n+s+(o?at+r+"-span:"+(a?i:+i-+n)+s:"")+e}));case 4949:if(121===yt(e,t+6))return vt(e,":",":"+st)+e;break;case 6444:switch(yt(e,45===yt(e,14)?18:11)){case 120:return vt(e,/(.+:)([^;\s!]+)(;|(\s+)?!.+)?/,"$1"+st+(45===yt(e,14)?"inline-":"")+"box$3$1"+st+"$2$3$1"+at+"$2box$3")+e;case 100:return vt(e,":",":"+at)+e}break;case 5719:case 2647:case 2135:case 3927:case 2391:return vt(e,"scroll-","scroll-snap-")+e}return e}function er(e,t,r,n){if(e.length>-1&&!e.return)switch(e.type){case ut:return void(e.return=Qt(e.value,e.length,r));case dt:return Ct([jt(e,{value:vt(e.value,"@","@"+st)})],n);case ct:if(e.length)return function(e,t){return e.map(t).join("")}(e.props,(function(t){switch(gt(t,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return Ct([jt(e,{props:[vt(t,/:(read-\w+)/,":-moz-$1")]})],n);case"::placeholder":return Ct([jt(e,{props:[vt(t,/:(plac\w+)/,":"+st+"input-$1")]}),jt(e,{props:[vt(t,/:(plac\w+)/,":-moz-$1")]}),jt(e,{props:[vt(t,/:(plac\w+)/,at+"input-$1")]})],n)}return""}))}}var tr="undefined"!=typeof window?e.useLayoutEffect:e.useEffect;function rr(e,t){const r=(0,u.A)({},t);return Object.keys(e).forEach((n=>{if(n.toString().match(/^(components|slots)$/))r[n]=(0,u.A)({},e[n],r[n]);else if(n.toString().match(/^(componentsProps|slotProps)$/)){const o=e[n]||{},a=t[n];r[n]={},a&&Object.keys(a)?o&&Object.keys(o)?(r[n]=(0,u.A)({},a),Object.keys(o).forEach((e=>{r[n][e]=rr(o[e],a[e])}))):r[n]=a:r[n]=o}else void 0===r[n]&&(r[n]=e[n])})),r}function nr(e){const{theme:t,name:r,props:n}=e;return t&&t.components&&t.components[r]&&t.components[r].defaultProps?rr(t.components[r].defaultProps,n):n}function or(t,r,n,o,a){const[i,s]=e.useState((()=>a&&n?n(t).matches:o?o(t).matches:r));return tr((()=>{let e=!0;if(!n)return;const r=n(t),o=()=>{e&&s(r.matches)};return o(),r.addListener(o),()=>{e=!1,r.removeListener(o)}}),[t,n]),i}const ar=e.useSyncExternalStore;function ir(t,r,n,o,a){const i=e.useCallback((()=>r),[r]),s=e.useMemo((()=>{if(a&&n)return()=>n(t).matches;if(null!==o){const{matches:e}=o(t);return()=>e}return i}),[i,t,o,a,n]),[l,c]=e.useMemo((()=>{if(null===n)return[i,()=>()=>{}];const e=n(t);return[()=>e.matches,t=>(e.addListener(t),()=>{e.removeListener(t)})]}),[i,n,t]);return ar(c,l,s)}const sr="#ffffff",lr="#f1f3f3",cr="#d5d8dc",ur="#babfc5",dr="#9da5ae",pr="#818a96",fr="#69727d",mr="#515962",hr="#3f444b",gr="#1f2124",vr="#0c0d0e",br="#f3bafd",yr="#f0abfc",xr="#eb8efb",wr="#ef4444",kr="#dc2626",Sr="#b91c1c",Cr="#b15211",Ar="#3b82f6",Mr="#2563eb",Rr="#1d4ed8",$r="#10b981",Er="#0a875a",Ir="#047857",Or="#99f6e4",jr="#5eead4",Tr="#2adfcd",Pr="#b51243",Br="#93003f",_r="#7e013b",zr=["primary","secondary","error","warning","info","success","accent","global","promotion"],Lr="&:hover,&:focus,&:active,&:visited",Nr="__unstableAccessibleMain",Wr="__unstableAccessibleLight",Fr="0.625rem",Dr="2.8em",Hr="1.2em",Vr="1.2em",Gr={defaultProps:{slotProps:{paper:{elevation:6}}},styleOverrides:{listbox:()=>({"&.MuiAutocomplete-listboxSizeTiny":{fontSize:"0.875rem"}})},variants:[{props:{size:"tiny"},style:({theme:e})=>({"& .MuiOutlinedInput-root":{fontSize:Fr,padding:e.spacing(.5,0),"& .MuiAutocomplete-input":{height:"1.2em",padding:e.spacing(.5,.25,.5,1)}},"& .MuiFilledInput-root":{paddingTop:0,"& .MuiFilledInput-input":{padding:e.spacing(1,0)}},"& .MuiInputLabel-sizeTiny":{fontSize:Fr,transform:`translate(${e.spacing(1)}, ${e.spacing(.875)}) scale(1)`,"&.MuiInputLabel-shrink":{transform:`translate(${e.spacing(1.75)}, ${e.spacing(-.75)}) scale(0.9)`}},"& .MuiAutocomplete-popupIndicator":{fontSize:"1.5em"},"& .MuiAutocomplete-clearIndicator":{fontSize:"1.2em"},"& .MuiAutocomplete-popupIndicator .MuiSvgIcon-root, & .MuiAutocomplete-clearIndicator .MuiSvgIcon-root":{fontSize:"1em"},"& .MuiInputAdornment-root .MuiIconButton-root":{padding:e.spacing(.25)},"& .MuiAutocomplete-tagSizeTiny":{fontSize:Fr},"&.MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiOutlinedInput-root .MuiAutocomplete-input":{paddingRight:e.spacing(6)}})},{props:{size:"small"},style:({theme:e})=>({"& .MuiFilledInput-root":{paddingTop:0,"&.MuiInputBase-root .MuiFilledInput-input":{padding:e.spacing(1,.5)}},"& .MuiFormLabel-root.MuiInputLabel-filled":{transform:"translate(12px, 9px) scale(1)","&.MuiInputLabel-shrink":{transform:"translate(12px, -8px) scale(0.65)"}}})},{props:{size:"medium"},style:()=>({"& .MuiFilledInput-root":{paddingTop:0,"&.MuiInputBase-root .MuiFilledInput-input":{padding:"16.5px 4px"}},"& .MuiFormLabel-root.MuiInputLabel-filled":{transform:"translate(14px, 16px) scale(1)","&.MuiInputLabel-shrink":{transform:"translate(12px, -8px) scale(0.65)"}}})}]},Kr={defaultProps:{disableRipple:!0},styleOverrides:{root:()=>({boxShadow:"none","&:hover":{boxShadow:"none"}})},variants:zr.map((e=>({props:{variant:"contained",color:e},style:({theme:t})=>({"& .MuiButtonGroup-grouped:not(:last-of-type), & .MuiButtonGroup-grouped:not(:last-of-type).Mui-disabled":{borderRight:0},"& .MuiButtonGroup-grouped:not(:last-child), & > *:not(:last-child) .MuiButtonGroup-grouped":{borderRight:`1px solid ${t.palette[e].dark}`},"& .MuiButtonGroup-grouped:not(:last-child).Mui-disabled, & > *:not(:last-child) .MuiButtonGroup-grouped.Mui-disabled":{borderRight:`1px solid ${t.palette.action.disabled}`}})})))},Ur=["primary","global"],Xr=zr.filter((e=>!Ur.includes(e)));function Zr(e,t){return e.map((e=>({props:{color:e,variant:"standard"},style:({theme:r})=>{const n=t(r,e),{mode:o}=r.palette;return{backgroundColor:n.backgroundColor[o],color:n.color[o],"&:hover,&:focus":{backgroundColor:n.backgroundColorHover[o]},"& .MuiChip-deleteIcon":{color:n.color[o],opacity:n.deleteIconOpacity,"&:hover,&:focus":{color:n.color[o],opacity:n.deleteIconOpacityHover}}}}})))}const Yr={components:{MuiAccordion:{styleOverrides:{root:({theme:e})=>({backgroundColor:e.palette.background.default,"&:before":{content:"none"},"&.Mui-expanded":{margin:0},"&.MuiAccordion-gutters + .MuiAccordion-root.MuiAccordion-gutters":{marginTop:e.spacing(1),marginBottom:e.spacing(0)},"&:not(.MuiAccordion-gutters) + .MuiAccordion-root:not(.MuiAccordion-gutters)":{borderTop:0},"&.Mui-disabled":{backgroundColor:e.palette.background.default}})}},MuiAccordionActions:{styleOverrides:{root:({theme:e})=>({padding:e.spacing(2)})}},MuiAccordionSummary:{styleOverrides:{root:()=>({minHeight:"64px"}),content:({theme:e})=>({margin:e.spacing(1,0),"&.MuiAccordionSummary-content.Mui-expanded":{margin:e.spacing(1,0)}})}},MuiAccordionSummaryIcon:{styleOverrides:{root:({theme:e})=>({padding:e.spacing(1,0)})}},MuiAccordionSummaryText:{styleOverrides:{root:({theme:e})=>({marginTop:0,marginBottom:0,padding:e.spacing(1,0)})}},MuiAppBar:{defaultProps:{elevation:0,color:"default"}},MuiAutocomplete:Gr,MuiButton:{styleOverrides:{root:()=>({boxShadow:"none",whiteSpace:"nowrap","&:hover":{boxShadow:"none"},"& .MuiSvgIcon-root":{fill:"currentColor"}})},variants:[{props:{color:"primary",variant:"outlined"},style:({theme:e})=>({color:e.palette.primary.__unstableAccessibleMain,borderColor:e.palette.primary.__unstableAccessibleMain,"&:hover":{borderColor:e.palette.primary.__unstableAccessibleMain}})},{props:{color:"primary",variant:"text"},style:({theme:e})=>({color:e.palette.primary.__unstableAccessibleMain})},{props:{color:"global",variant:"outlined"},style:({theme:e})=>({color:e.palette.global.__unstableAccessibleMain,borderColor:e.palette.global.__unstableAccessibleMain,"&:hover":{borderColor:e.palette.global.__unstableAccessibleMain}})},{props:{color:"global",variant:"text"},style:({theme:e})=>({color:e.palette.global.__unstableAccessibleMain})}]},MuiButtonBase:{defaultProps:{disableRipple:!0},styleOverrides:{root:()=>({"&.MuiButtonBase-root.Mui-focusVisible":{boxShadow:"0 0 0 1px inset"},".MuiCircularProgress-root":{fontSize:"inherit"}})}},MuiButtonGroup:Kr,MuiCard:{defaultProps:{},styleOverrides:{root:()=>({position:"relative"})}},MuiCardActions:{styleOverrides:{root:({theme:e})=>({justifyContent:"flex-end",padding:e.spacing(1.5,2)})}},MuiCardGroup:{styleOverrides:{root:()=>({"& .MuiCard-root.MuiPaper-outlined:not(:last-child)":{borderBottom:0},"& .MuiCard-root.MuiPaper-rounded":{"&:first-child:not(:last-child)":{borderBottomRightRadius:0,borderBottomLeftRadius:0},"&:not(:first-child):not(:last-child)":{borderRadius:0},"&:last-child:not(:first-child)":{borderTopRightRadius:0,borderTopLeftRadius:0}}})}},MuiCardHeader:{defaultProps:{titleTypographyProps:{variant:"subtitle1"}},styleOverrides:{action:()=>({alignSelf:"center"})},variants:[{props:{disableActionOffset:!0},style:()=>({"& .MuiCardHeader-action":{marginRight:0}})}]},MuiChip:{variants:[{props:{color:"primary",variant:"outlined"},style:({theme:e})=>({color:e.palette.primary.__unstableAccessibleMain,borderColor:e.palette.primary.__unstableAccessibleMain,"& .MuiChip-deleteIcon":{color:e.palette.primary.__unstableAccessibleLight,"&:hover":{color:e.palette.primary.__unstableAccessibleMain}}})},{props:{color:"global",variant:"outlined"},style:({theme:e})=>({color:e.palette.global.__unstableAccessibleMain,borderColor:e.palette.global.__unstableAccessibleMain,"& .MuiChip-deleteIcon":{color:e.palette.global.__unstableAccessibleLight,"&:hover":{color:e.palette.global.__unstableAccessibleMain}}})},{props:{color:"default",variant:"filled"},style:({theme:e})=>({backgroundColor:e.palette.divider})},...Zr(["default"],(function(e){return{backgroundColor:{light:De(e.palette.divider,.3),dark:Fe(e.palette.divider,.1)},backgroundColorHover:{light:e.palette.action.focus,dark:e.palette.action.focus},color:{light:e.palette.text.primary,dark:e.palette.text.primary},deleteIconOpacity:.26,deleteIconOpacityHover:.7}})),...Zr(["primary","global"],(function(e,t){const r=e.palette[t];return{backgroundColor:{light:De(r.light,.8),dark:Fe(r.__unstableAccessibleMain,.8)},backgroundColorHover:{light:De(r.light,.6),dark:Fe(r.__unstableAccessibleMain,.9)},color:{light:Fe(r.__unstableAccessibleMain,.3),dark:De(r.light,.3)},deleteIconOpacity:.7,deleteIconOpacityHover:1}})),...Zr(Xr,(function(e,t){return{backgroundColor:{light:De(e.palette[t].light,.9),dark:Fe(e.palette[t].light,.8)},backgroundColorHover:{light:De(e.palette[t].light,.8),dark:Fe(e.palette[t].light,.9)},color:{light:Fe(e.palette[t].main,.3),dark:De(e.palette[t].main,.5)},deleteIconOpacity:.7,deleteIconOpacityHover:1}}))]},MuiCircularProgress:{defaultProps:{color:"inherit",size:"1em"},styleOverrides:{root:({theme:e})=>({fontSize:e.spacing(5)})}},MuiDialogActions:{styleOverrides:{root:({theme:e})=>({padding:e.spacing(2,3)})}},MuiDialogContent:{styleOverrides:{dividers:()=>({"&:last-child":{borderBottom:"none"}})}},MuiFilledInput:{variants:[{props:{size:"tiny"},style:()=>({fontSize:Fr,lineHeight:Vr,"& .MuiInputBase-input":{height:Vr,padding:"14px 8px 2px"}})},{props:{size:"tiny",multiline:!0},style:()=>({padding:0})}]},MuiFormHelperText:{styleOverrides:{root:({theme:e})=>({color:e.palette.text.tertiary,margin:e.spacing(.5,0,0)})}},MuiIconButton:{variants:[{props:{color:"primary"},style:({theme:e})=>({color:e.palette.primary.__unstableAccessibleMain})},{props:{color:"global"},style:({theme:e})=>({color:e.palette.global.__unstableAccessibleMain})},{props:{edge:"start",size:"small"},style:({theme:e})=>({marginLeft:e.spacing(-1.5)})},{props:{edge:"end",size:"small"},style:({theme:e})=>({marginRight:e.spacing(-1.5)})},{props:{edge:"start",size:"large"},style:({theme:e})=>({marginLeft:e.spacing(-2)})},{props:{edge:"end",size:"large"},style:({theme:e})=>({marginRight:e.spacing(-2)})},{props:{size:"tiny"},style:({theme:e})=>({padding:e.spacing(.75)})}]},MuiInput:{variants:[{props:{size:"tiny"},style:()=>({fontSize:Fr,"& .MuiInputBase-input":{height:Dr,padding:0}})}]},MuiInputAdornment:{styleOverrides:{root:({theme:e})=>({"&.MuiInputAdornment-sizeTiny":{"&.MuiInputAdornment-positionStart":{marginRight:e.spacing(.5)},"&.MuiInputAdornment-positionEnd":{marginLeft:e.spacing(.5)}}})}},MuiInputBase:{styleOverrides:{input:()=>({".MuiInputBase-root.Mui-disabled &":{backgroundColor:"initial"}})}},MuiInputLabel:{variants:[{props:{size:"tiny"},style:()=>({fontSize:Fr,transform:"translate(8px, 6px) scale(1)","&.MuiInputLabel-shrink":{transform:"translate(8px, 1px) scale(0.9)"}})}]},MuiListItem:{styleOverrides:{root:({theme:e})=>({color:e.palette.text.primary,"a&":{[Lr]:{color:e.palette.text.primary}}})}},MuiListItemButton:{styleOverrides:{root:({theme:e})=>({color:e.palette.text.primary,"&.Mui-selected":{backgroundColor:e.palette.action.selected,"&:hover":{backgroundColor:e.palette.action.selected},"&:focus":{backgroundColor:e.palette.action.focus}},"a&":{[Lr]:{color:e.palette.text.primary}}})}},MuiListItemIcon:{styleOverrides:{root:({theme:e})=>({minWidth:"initial","&:not(:last-child)":{marginRight:e.spacing(1)}})}},MuiListItemText:{styleOverrides:{root:({theme:e})=>({color:e.palette.text.primary})}},MuiListSubheader:{styleOverrides:{root:({theme:e})=>({backgroundImage:"linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12))",lineHeight:"36px",color:e.palette.text.secondary})}},MuiMenu:{defaultProps:{elevation:6}},MuiMenuItem:{styleOverrides:{root:({theme:e})=>({"&.Mui-selected":{backgroundColor:e.palette.action.selected,"&:hover":{backgroundColor:e.palette.action.selected},"&:focus":{backgroundColor:e.palette.action.focus}},"a&":{[Lr]:{color:e.palette.text.primary}},"& .MuiListItemIcon-root":{minWidth:"initial"}})}},MuiOutlinedInput:{styleOverrides:{root:({theme:e})=>({"&.Mui-focused .MuiInputAdornment-root .MuiOutlinedInput-notchedOutline":{borderColor:"dark"===e.palette.mode?"rgba(255, 255, 255, 0.23)":"rgba(0, 0, 0, 0.23)",borderWidth:"1px"}})},variants:[{props:{size:"tiny"},style:({theme:e})=>({fontSize:Fr,lineHeight:Hr,"&.MuiInputBase-adornedStart":{paddingLeft:e.spacing(1)},"&.MuiInputBase-adornedEnd":{paddingRight:e.spacing(1)},"& .MuiInputBase-input":{height:Hr,padding:e.spacing(1)},"& .MuiOutlinedInput-notchedOutline > *":{fontSize:Fr,"& > *:not(:empty):not(.notranslate)":{paddingRight:e.spacing(.25),paddingLeft:e.spacing(.25)}},"& .MuiInputAdornment-root + .MuiInputBase-input":{paddingLeft:0},"& .MuiInputBase-input:has(+ .MuiInputAdornment-root)":{paddingRight:0}})},{props:{size:"tiny",multiline:!0},style:()=>({padding:0})},{props:e=>!!e.endAdornment&&"tiny"===e.size,style:()=>({"& .MuiInputAdornment-root .MuiInputBase-root .MuiSelect-select":{"&.MuiSelect-standard":{paddingTop:0,paddingBottom:0},"&.MuiSelect-outlined,&.MuiSelect-filled":{paddingTop:"4px",paddingBottom:"4px"}}})},{props:e=>!!e.endAdornment&&"small"===e.size,style:()=>({"& .MuiInputAdornment-root .MuiInputBase-root .MuiSelect-select":{paddingTop:"2.5px",paddingBottom:"2.5px"}})},{props:e=>!(!e.endAdornment||"medium"!==e.size&&e.size),style:()=>({"& .MuiInputAdornment-root .MuiInputBase-root .MuiSelect-select":{paddingTop:"8.5px",paddingBottom:"8.5px"}})}]},MuiPaper:{},MuiSelect:{styleOverrides:{nativeInput:()=>({".MuiInputBase-root.Mui-disabled &":{backgroundColor:"initial",opacity:0}})},variants:[{props:{size:"tiny"},style:()=>({lineHeight:"1.2em","& .MuiSelect-icon":{fontSize:"1.2rem"},"& .MuiSelect-select.MuiSelect-outlined, & .MuiSelect-select.MuiSelect-filled":{minHeight:Hr},"& .MuiSelect-select.MuiSelect-standard":{lineHeight:Dr,minHeight:Dr}})}]},MuiStepConnector:{styleOverrides:{root:({theme:e})=>({"& .MuiStepConnector-line":{borderColor:e.palette.divider}})}},MuiStepIcon:{styleOverrides:{root:({theme:e})=>({"&:not(.Mui-active) .MuiStepIcon-text":{fill:e.palette.common.white}})}},MuiStepLabel:{styleOverrides:{root:()=>({alignItems:"flex-start"})}},MuiStepper:{styleOverrides:{root:()=>({"& .MuiStepLabel-root":{alignItems:"center"}})}},MuiSvgIcon:{variants:[{props:{fontSize:"tiny"},style:()=>({fontSize:"1rem"})}]},MuiTableRow:{styleOverrides:{root:({theme:e})=>({"&.Mui-selected":{backgroundColor:e.palette.action.selected,"&:hover":{backgroundColor:e.palette.action.selected}}})},variants:[{props:e=>"onClick"in e,style:()=>({cursor:"pointer"})}]},MuiTabPanel:{styleOverrides:{root:({theme:e})=>({color:e.palette.text.primary,padding:e.spacing(3,0)})},variants:[{props:{disablePadding:!0},style:()=>({padding:0})}]},MuiToggleButton:{variants:[{props:{color:"primary"},style:({theme:e})=>({"&.MuiToggleButton-root.Mui-selected":{color:e.palette.primary.__unstableAccessibleMain}})},{props:{color:"global"},style:({theme:e})=>({"&.MuiToggleButton-root.Mui-selected":{color:e.palette.global.__unstableAccessibleMain}})},{props:{size:"tiny"},style:({theme:e})=>({lineHeight:"1.6",fontSize:"0.625rem",padding:e.spacing(.625)})}]},MuiTooltip:{defaultProps:{arrow:!0},styleOverrides:{arrow:({theme:e})=>({color:e.palette.grey[700]}),tooltip:({theme:e})=>({backgroundColor:e.palette.grey[700]})}}},typography:{button:{textTransform:"none"},h1:{fontWeight:700},h2:{fontWeight:700},h3:{fontSize:"2.75rem",fontWeight:700},h4:{fontSize:"2rem",fontWeight:700},h5:{fontWeight:700},subtitle1:{fontWeight:500,lineHeight:1.3},subtitle2:{lineHeight:1.3}},zIndex:{mobileStepper:1e3,fab:1050,speedDial:1050,appBar:1100,drawer:1200,modal:1300,snackbar:1400,tooltip:1500}},qr={...Yr,palette:{mode:"light",primary:{main:yr,light:br,dark:xr,contrastText:vr,[Nr]:"#C00BB9",[Wr]:"#D355CE"},secondary:{main:mr,light:fr,dark:hr,contrastText:sr},grey:{50:lr,100:cr,200:ur,300:dr,400:pr,500:fr,600:mr,700:hr,800:gr,900:vr},text:{primary:vr,secondary:hr,tertiary:fr,disabled:dr},background:{paper:sr,default:sr},success:{main:Er,light:$r,dark:Ir,contrastText:sr},error:{main:kr,light:wr,dark:Sr,contrastText:sr},warning:{main:"#bb5b1d",light:"#d97706",dark:Cr,contrastText:sr},info:{main:Mr,light:Ar,dark:Rr,contrastText:sr},global:{main:jr,light:Or,dark:Tr,contrastText:vr,[Nr]:"#17929B",[Wr]:"#5DB3B9"},accent:{main:Br,light:Pr,dark:_r,contrastText:sr},promotion:{main:Br,light:Pr,dark:_r,contrastText:sr}}},Jr={...Yr,palette:{mode:"dark",primary:{main:yr,light:br,dark:xr,contrastText:vr,[Nr]:"#C00BB9",[Wr]:"#D355CE"},secondary:{main:dr,light:ur,dark:pr,contrastText:vr},grey:{50:lr,100:cr,200:ur,300:dr,400:pr,500:fr,600:mr,700:hr,800:gr,900:vr},text:{primary:sr,secondary:ur,tertiary:dr,disabled:mr},background:{paper:vr,default:gr},success:{main:Er,light:$r,dark:Ir,contrastText:sr},error:{main:kr,light:wr,dark:Sr,contrastText:sr},warning:{main:"#f59e0b",light:"#fbbf24",dark:Cr,contrastText:"#000000"},info:{main:Mr,light:Ar,dark:Rr,contrastText:sr},global:{main:jr,light:Or,dark:Tr,contrastText:vr,[Nr]:"#17929B",[Wr]:"#5DB3B9"},accent:{main:Br,light:Pr,dark:_r,contrastText:sr},promotion:{main:Br,light:Pr,dark:_r,contrastText:sr}}},Qr=t().createContext(!1);(0,Jt.A)({key:"eui-rtl",stylisPlugins:[er,qt]});const en="#524CFF",tn={primary:{main:en,light:"#6B65FF",dark:"#4C43E5",contrastText:"#FFFFFF",[Nr]:"#524CFF",[Wr]:"#6B65FF"},action:{selected:We(en,.08)}},rn=(0,e.createContext)(null),nn=({value:t,children:r})=>e.createElement(rn.Provider,{value:t},r),on={zIndex:Yr.zIndex},an=({colorScheme:r,palette:n,children:o,overrides:a})=>{const i=(0,e.useContext)(rn),s=(0,e.useContext)(Qr),l=n||i?.palette,c=r||i?.colorScheme||"auto",u=function(e,t={}){const r=y(),n="undefined"!=typeof window&&void 0!==window.matchMedia,{defaultMatches:o=!1,matchMedia:a=(n?window.matchMedia:null),ssrMatchMedia:i=null,noSsr:s=!1}=nr({name:"MuiUseMediaQuery",props:t,theme:r});let l="function"==typeof e?e(r):e;return l=l.replace(/^@media( ?)/m,""),(void 0!==ar?ir:or)(l,o,a,i,s)}("(prefers-color-scheme: dark)"),d="auto"===c&&u||"dark"===c,p=function(e,t){if(!e)return t;if("function"!=typeof e)return console.error("overrides must be a function"),t;const r=e(structuredClone(t||on));return r&&"object"==typeof r?r:(console.error("overrides function must return an object"),t)}(a,i?.overrides),f=(0,e.useMemo)((()=>(({palette:e="default",rtl:t=!1,isDarkMode:r=!1,overrides:n}={})=>{const o=r?Jr:qr,a={};return"marketing-suite"===e&&(a.palette=tn),t&&(a.direction="rtl"),n&&["zIndex"].forEach((e=>{e in n&&(a[e]=n[e])})),Re(o,a)})({rtl:s,isDarkMode:d,palette:l,overrides:p})),[s,d,l,p]);return t().createElement(nn,{value:{colorScheme:r,palette:n,overrides:p}},t().createElement(rt,{theme:f},o))},sn=()=>(0,e.useContext)(s);function ln(e,t){"function"==typeof e?e(t):e&&(e.current=t)}function cn(...t){return e.useMemo((()=>t.every((e=>null==e))?null:e=>{t.forEach((t=>{ln(t,e)}))}),t)}function un(e,t,r){return void 0===e||"string"==typeof e?t:(0,u.A)({},t,{ownerState:(0,u.A)({},t.ownerState,r)})}function dn(e,t=[]){if(void 0===e)return{};const r={};return Object.keys(e).filter((r=>r.match(/^on[A-Z]/)&&"function"==typeof e[r]&&!t.includes(r))).forEach((t=>{r[t]=e[t]})),r}function pn(e){if(void 0===e)return{};const t={};return Object.keys(e).filter((t=>!(t.match(/^on[A-Z]/)&&"function"==typeof e[t]))).forEach((r=>{t[r]=e[r]})),t}function fn(e){const{getSlotProps:t,additionalProps:r,externalSlotProps:n,externalForwardedProps:o,className:a}=e;if(!t){const e=f(null==r?void 0:r.className,a,null==o?void 0:o.className,null==n?void 0:n.className),t=(0,u.A)({},null==r?void 0:r.style,null==o?void 0:o.style,null==n?void 0:n.style),i=(0,u.A)({},r,o,n);return e.length>0&&(i.className=e),Object.keys(t).length>0&&(i.style=t),{props:i,internalRef:void 0}}const i=dn((0,u.A)({},o,n)),s=pn(n),l=pn(o),c=t(i),d=f(null==c?void 0:c.className,null==r?void 0:r.className,a,null==o?void 0:o.className,null==n?void 0:n.className),p=(0,u.A)({},null==c?void 0:c.style,null==r?void 0:r.style,null==o?void 0:o.style,null==n?void 0:n.style),m=(0,u.A)({},c,r,l,s);return d.length>0&&(m.className=d),Object.keys(p).length>0&&(m.style=p),{props:m,internalRef:c.ref}}function mn(e,t,r){return"function"==typeof e?e(t,r):e}const hn=["elementType","externalSlotProps","ownerState","skipResolvingSlotProps"];function gn(e){var t;const{elementType:r,externalSlotProps:n,ownerState:o,skipResolvingSlotProps:a=!1}=e,i=(0,d.A)(e,hn),s=a?{}:mn(n,o),{props:l,internalRef:c}=fn((0,u.A)({},i,{externalSlotProps:s})),p=cn(c,null==s?void 0:s.ref,null==(t=e.additionalProps)?void 0:t.ref);return un(r,(0,u.A)({},l,{ref:p}),o)}function vn(e){return e&&e.ownerDocument||document}var bn=function(t){const r=e.useRef(t);return tr((()=>{r.current=t})),e.useRef(((...e)=>(0,r.current)(...e))).current};function yn(...e){return e.reduce(((e,t)=>null==t?e:function(...r){e.apply(this,r),t.apply(this,r)}),(()=>{}))}function xn(e){return vn(e).defaultView||window}function wn(e,t){t?e.setAttribute("aria-hidden","true"):e.removeAttribute("aria-hidden")}function kn(e){return parseInt(xn(e).getComputedStyle(e).paddingRight,10)||0}function Sn(e,t,r,n,o){const a=[t,r,...n];[].forEach.call(e.children,(e=>{const t=-1===a.indexOf(e),r=!function(e){const t=-1!==["TEMPLATE","SCRIPT","STYLE","LINK","MAP","META","NOSCRIPT","PICTURE","COL","COLGROUP","PARAM","SLOT","SOURCE","TRACK"].indexOf(e.tagName),r="INPUT"===e.tagName&&"hidden"===e.getAttribute("type");return t||r}(e);t&&r&&wn(e,o)}))}function Cn(e,t){let r=-1;return e.some(((e,n)=>!!t(e)&&(r=n,!0))),r}const An=new class{constructor(){this.containers=void 0,this.modals=void 0,this.modals=[],this.containers=[]}add(e,t){let r=this.modals.indexOf(e);if(-1!==r)return r;r=this.modals.length,this.modals.push(e),e.modalRef&&wn(e.modalRef,!1);const n=function(e){const t=[];return[].forEach.call(e.children,(e=>{"true"===e.getAttribute("aria-hidden")&&t.push(e)})),t}(t);Sn(t,e.mount,e.modalRef,n,!0);const o=Cn(this.containers,(e=>e.container===t));return-1!==o?(this.containers[o].modals.push(e),r):(this.containers.push({modals:[e],container:t,restore:null,hiddenSiblings:n}),r)}mount(e,t){const r=Cn(this.containers,(t=>-1!==t.modals.indexOf(e))),n=this.containers[r];n.restore||(n.restore=function(e,t){const r=[],n=e.container;if(!t.disableScrollLock){if(function(e){const t=vn(e);return t.body===e?xn(e).innerWidth>t.documentElement.clientWidth:e.scrollHeight>e.clientHeight}(n)){const e=function(e){const t=e.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}(vn(n));r.push({value:n.style.paddingRight,property:"padding-right",el:n}),n.style.paddingRight=`${kn(n)+e}px`;const t=vn(n).querySelectorAll(".mui-fixed");[].forEach.call(t,(t=>{r.push({value:t.style.paddingRight,property:"padding-right",el:t}),t.style.paddingRight=`${kn(t)+e}px`}))}let e;if(n.parentNode instanceof DocumentFragment)e=vn(n).body;else{const t=n.parentElement,r=xn(n);e="HTML"===(null==t?void 0:t.nodeName)&&"scroll"===r.getComputedStyle(t).overflowY?t:n}r.push({value:e.style.overflow,property:"overflow",el:e},{value:e.style.overflowX,property:"overflow-x",el:e},{value:e.style.overflowY,property:"overflow-y",el:e}),e.style.overflow="hidden"}return()=>{r.forEach((({value:e,el:t,property:r})=>{e?t.style.setProperty(r,e):t.style.removeProperty(r)}))}}(n,t))}remove(e,t=!0){const r=this.modals.indexOf(e);if(-1===r)return r;const n=Cn(this.containers,(t=>-1!==t.modals.indexOf(e))),o=this.containers[n];if(o.modals.splice(o.modals.indexOf(e),1),this.modals.splice(r,1),0===o.modals.length)o.restore&&o.restore(),e.modalRef&&wn(e.modalRef,t),Sn(o.container,e.mount,e.modalRef,o.hiddenSiblings,!1),this.containers.splice(n,1);else{const e=o.modals[o.modals.length-1];e.modalRef&&wn(e.modalRef,!1)}return r}isTopModal(e){return this.modals.length>0&&this.modals[this.modals.length-1]===e}};function Mn(e,t,r=void 0){const n={};return Object.keys(e).forEach((o=>{n[o]=e[o].reduce(((e,n)=>{if(n){const o=t(n);""!==o&&e.push(o),r&&r[n]&&e.push(r[n])}return e}),[]).join(" ")})),n}const Rn=["input","select","textarea","a[href]","button","[tabindex]","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])'].join(",");function $n(e){const t=[],r=[];return Array.from(e.querySelectorAll(Rn)).forEach(((e,n)=>{const o=function(e){const t=parseInt(e.getAttribute("tabindex")||"",10);return Number.isNaN(t)?"true"===e.contentEditable||("AUDIO"===e.nodeName||"VIDEO"===e.nodeName||"DETAILS"===e.nodeName)&&null===e.getAttribute("tabindex")?0:e.tabIndex:t}(e);-1!==o&&function(e){return!(e.disabled||"INPUT"===e.tagName&&"hidden"===e.type||function(e){if("INPUT"!==e.tagName||"radio"!==e.type)return!1;if(!e.name)return!1;const t=t=>e.ownerDocument.querySelector(`input[type="radio"]${t}`);let r=t(`[name="${e.name}"]:checked`);return r||(r=t(`[name="${e.name}"]`)),r!==e}(e))}(e)&&(0===o?t.push(e):r.push({documentOrder:n,tabIndex:o,node:e}))})),r.sort(((e,t)=>e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex)).map((e=>e.node)).concat(t)}function En(){return!0}function In(t){const{children:r,disableAutoFocus:n=!1,disableEnforceFocus:o=!1,disableRestoreFocus:a=!1,getTabbable:s=$n,isEnabled:l=En,open:c}=t,u=e.useRef(!1),d=e.useRef(null),p=e.useRef(null),f=e.useRef(null),m=e.useRef(null),h=e.useRef(!1),g=e.useRef(null),v=cn(r.ref,g),b=e.useRef(null);e.useEffect((()=>{c&&g.current&&(h.current=!n)}),[n,c]),e.useEffect((()=>{if(!c||!g.current)return;const e=vn(g.current);return g.current.contains(e.activeElement)||(g.current.hasAttribute("tabIndex")||g.current.setAttribute("tabIndex","-1"),h.current&&g.current.focus()),()=>{a||(f.current&&f.current.focus&&(u.current=!0,f.current.focus()),f.current=null)}}),[c]),e.useEffect((()=>{if(!c||!g.current)return;const e=vn(g.current),t=t=>{b.current=t,!o&&l()&&"Tab"===t.key&&e.activeElement===g.current&&t.shiftKey&&(u.current=!0,p.current&&p.current.focus())},r=()=>{const t=g.current;if(null===t)return;if(!e.hasFocus()||!l()||u.current)return void(u.current=!1);if(t.contains(e.activeElement))return;if(o&&e.activeElement!==d.current&&e.activeElement!==p.current)return;if(e.activeElement!==m.current)m.current=null;else if(null!==m.current)return;if(!h.current)return;let r=[];if(e.activeElement!==d.current&&e.activeElement!==p.current||(r=s(g.current)),r.length>0){var n,a;const e=Boolean((null==(n=b.current)?void 0:n.shiftKey)&&"Tab"===(null==(a=b.current)?void 0:a.key)),t=r[0],o=r[r.length-1];"string"!=typeof t&&"string"!=typeof o&&(e?o.focus():t.focus())}else t.focus()};e.addEventListener("focusin",r),e.addEventListener("keydown",t,!0);const n=setInterval((()=>{e.activeElement&&"BODY"===e.activeElement.tagName&&r()}),50);return()=>{clearInterval(n),e.removeEventListener("focusin",r),e.removeEventListener("keydown",t,!0)}}),[n,o,a,l,c,s]);const y=e=>{null===f.current&&(f.current=e.relatedTarget),h.current=!0};return(0,i.jsxs)(e.Fragment,{children:[(0,i.jsx)("div",{tabIndex:c?0:-1,onFocus:y,ref:d,"data-testid":"sentinelStart"}),e.cloneElement(r,{ref:v,onFocus:e=>{null===f.current&&(f.current=e.relatedTarget),h.current=!0,m.current=e.target;const t=r.props.onFocus;t&&t(e)}}),(0,i.jsx)("div",{tabIndex:c?0:-1,onFocus:y,ref:p,"data-testid":"sentinelEnd"})]})}var On=r(5795),jn=r.n(On);const Tn=e.forwardRef((function(t,r){const{children:n,container:o,disablePortal:a=!1}=t,[s,l]=e.useState(null),c=cn(e.isValidElement(n)?n.ref:null,r);if(tr((()=>{a||l(function(e){return"function"==typeof e?e():e}(o)||document.body)}),[o,a]),tr((()=>{if(s&&!a)return ln(r,s),()=>{ln(r,null)}}),[r,s,a]),a){if(e.isValidElement(n)){const t={ref:c};return e.cloneElement(n,t)}return(0,i.jsx)(e.Fragment,{children:n})}return(0,i.jsx)(e.Fragment,{children:s?On.createPortal(n,s):s})}));var Pn=r(6461),Bn=Re(),zn=e=>function(e){return"ownerState"!==e&&"theme"!==e&&"sx"!==e&&"as"!==e}(e)&&"classes"!==e,Ln=(0,Pn.Ay)({themeId:$e,defaultTheme:Bn,rootShouldForwardProp:zn});function Nn({props:e,name:t,defaultTheme:r,themeId:n}){let o=w(r);return n&&(o=o[n]||o),nr({theme:o,name:t,props:e})}function Wn({props:e,name:t}){return Nn({props:e,name:t,defaultTheme:Bn,themeId:$e})}function Fn(e,t){return Fn=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},Fn(e,t)}function Dn(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,Fn(e,t)}var Hn=t().createContext(null),Vn="unmounted",Gn="exited",Kn="entering",Un="entered",Xn="exiting",Zn=function(e){function r(t,r){var n;n=e.call(this,t,r)||this;var o,a=r&&!r.isMounting?t.enter:t.appear;return n.appearStatus=null,t.in?a?(o=Gn,n.appearStatus=Kn):o=Un:o=t.unmountOnExit||t.mountOnEnter?Vn:Gn,n.state={status:o},n.nextCallback=null,n}Dn(r,e),r.getDerivedStateFromProps=function(e,t){return e.in&&t.status===Vn?{status:Gn}:null};var n=r.prototype;return n.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},n.componentDidUpdate=function(e){var t=null;if(e!==this.props){var r=this.state.status;this.props.in?r!==Kn&&r!==Un&&(t=Kn):r!==Kn&&r!==Un||(t=Xn)}this.updateStatus(!1,t)},n.componentWillUnmount=function(){this.cancelNextCallback()},n.getTimeouts=function(){var e,t,r,n=this.props.timeout;return e=t=r=n,null!=n&&"number"!=typeof n&&(e=n.exit,t=n.enter,r=void 0!==n.appear?n.appear:t),{exit:e,enter:t,appear:r}},n.updateStatus=function(e,t){if(void 0===e&&(e=!1),null!==t)if(this.cancelNextCallback(),t===Kn){if(this.props.unmountOnExit||this.props.mountOnEnter){var r=this.props.nodeRef?this.props.nodeRef.current:jn().findDOMNode(this);r&&function(e){e.scrollTop}(r)}this.performEnter(e)}else this.performExit();else this.props.unmountOnExit&&this.state.status===Gn&&this.setState({status:Vn})},n.performEnter=function(e){var t=this,r=this.props.enter,n=this.context?this.context.isMounting:e,o=this.props.nodeRef?[n]:[jn().findDOMNode(this),n],a=o[0],i=o[1],s=this.getTimeouts(),l=n?s.appear:s.enter;e||r?(this.props.onEnter(a,i),this.safeSetState({status:Kn},(function(){t.props.onEntering(a,i),t.onTransitionEnd(l,(function(){t.safeSetState({status:Un},(function(){t.props.onEntered(a,i)}))}))}))):this.safeSetState({status:Un},(function(){t.props.onEntered(a)}))},n.performExit=function(){var e=this,t=this.props.exit,r=this.getTimeouts(),n=this.props.nodeRef?void 0:jn().findDOMNode(this);t?(this.props.onExit(n),this.safeSetState({status:Xn},(function(){e.props.onExiting(n),e.onTransitionEnd(r.exit,(function(){e.safeSetState({status:Gn},(function(){e.props.onExited(n)}))}))}))):this.safeSetState({status:Gn},(function(){e.props.onExited(n)}))},n.cancelNextCallback=function(){null!==this.nextCallback&&(this.nextCallback.cancel(),this.nextCallback=null)},n.safeSetState=function(e,t){t=this.setNextCallback(t),this.setState(e,t)},n.setNextCallback=function(e){var t=this,r=!0;return this.nextCallback=function(n){r&&(r=!1,t.nextCallback=null,e(n))},this.nextCallback.cancel=function(){r=!1},this.nextCallback},n.onTransitionEnd=function(e,t){this.setNextCallback(t);var r=this.props.nodeRef?this.props.nodeRef.current:jn().findDOMNode(this),n=null==e&&!this.props.addEndListener;if(r&&!n){if(this.props.addEndListener){var o=this.props.nodeRef?[this.nextCallback]:[r,this.nextCallback],a=o[0],i=o[1];this.props.addEndListener(a,i)}null!=e&&setTimeout(this.nextCallback,e)}else setTimeout(this.nextCallback,0)},n.render=function(){var e=this.state.status;if(e===Vn)return null;var r=this.props,n=r.children,o=(r.in,r.mountOnEnter,r.unmountOnExit,r.appear,r.enter,r.exit,r.timeout,r.addEndListener,r.onEnter,r.onEntering,r.onEntered,r.onExit,r.onExiting,r.onExited,r.nodeRef,(0,d.A)(r,["children","in","mountOnEnter","unmountOnExit","appear","enter","exit","timeout","addEndListener","onEnter","onEntering","onEntered","onExit","onExiting","onExited","nodeRef"]));return t().createElement(Hn.Provider,{value:null},"function"==typeof n?n(e,o):t().cloneElement(t().Children.only(n),o))},r}(t().Component);function Yn(){}Zn.contextType=Hn,Zn.propTypes={},Zn.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:Yn,onEntering:Yn,onEntered:Yn,onExit:Yn,onExiting:Yn,onExited:Yn},Zn.UNMOUNTED=Vn,Zn.EXITED=Gn,Zn.ENTERING=Kn,Zn.ENTERED=Un,Zn.EXITING=Xn;var qn=Zn;function Jn(){const e=w(Bn);return e[$e]||e}function Qn(e,t){var r,n;const{timeout:o,easing:a,style:i={}}=e;return{duration:null!=(r=i.transitionDuration)?r:"number"==typeof o?o:o[t.mode]||0,easing:null!=(n=i.transitionTimingFunction)?n:"object"==typeof a?a[t.mode]:a,delay:i.transitionDelay}}var eo=cn;const to=["addEndListener","appear","children","easing","in","onEnter","onEntered","onEntering","onExit","onExited","onExiting","style","timeout","TransitionComponent"],ro={entering:{opacity:1},entered:{opacity:1}};var no=e.forwardRef((function(t,r){const n=Jn(),o={enter:n.transitions.duration.enteringScreen,exit:n.transitions.duration.leavingScreen},{addEndListener:a,appear:s=!0,children:l,easing:c,in:p,onEnter:f,onEntered:m,onEntering:h,onExit:g,onExited:v,onExiting:b,style:y,timeout:x=o,TransitionComponent:w=qn}=t,k=(0,d.A)(t,to),S=e.useRef(null),C=eo(S,l.ref,r),A=e=>t=>{if(e){const r=S.current;void 0===t?e(r):e(r,t)}},M=A(h),R=A(((e,t)=>{(e=>{e.scrollTop})(e);const r=Qn({style:y,timeout:x,easing:c},{mode:"enter"});e.style.webkitTransition=n.transitions.create("opacity",r),e.style.transition=n.transitions.create("opacity",r),f&&f(e,t)})),$=A(m),E=A(b),I=A((e=>{const t=Qn({style:y,timeout:x,easing:c},{mode:"exit"});e.style.webkitTransition=n.transitions.create("opacity",t),e.style.transition=n.transitions.create("opacity",t),g&&g(e)})),O=A(v);return(0,i.jsx)(w,(0,u.A)({appear:s,in:p,nodeRef:S,onEnter:R,onEntered:$,onEntering:M,onExit:I,onExited:O,onExiting:E,addEndListener:e=>{a&&a(S.current,e)},timeout:x},k,{children:(t,r)=>e.cloneElement(l,(0,u.A)({style:(0,u.A)({opacity:0,visibility:"exited"!==t||p?void 0:"hidden"},ro[t],y,l.props.style),ref:C},r))}))}));function oo(e){return Ie("MuiBackdrop",e)}Oe("MuiBackdrop",["root","invisible"]);const ao=["children","className","component","components","componentsProps","invisible","open","slotProps","slots","TransitionComponent","transitionDuration"],io=Ln("div",{name:"MuiBackdrop",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,r.invisible&&t.invisible]}})((({ownerState:e})=>(0,u.A)({position:"fixed",display:"flex",alignItems:"center",justifyContent:"center",right:0,bottom:0,top:0,left:0,backgroundColor:"rgba(0, 0, 0, 0.5)",WebkitTapHighlightColor:"transparent"},e.invisible&&{backgroundColor:"transparent"})));var so=e.forwardRef((function(e,t){var r,n,o;const a=Wn({props:e,name:"MuiBackdrop"}),{children:s,className:l,component:c="div",components:p={},componentsProps:m={},invisible:h=!1,open:g,slotProps:v={},slots:b={},TransitionComponent:y=no,transitionDuration:x}=a,w=(0,d.A)(a,ao),k=(0,u.A)({},a,{component:c,invisible:h}),S=(e=>{const{classes:t,invisible:r}=e;return Mn({root:["root",r&&"invisible"]},oo,t)})(k),C=null!=(r=v.root)?r:m.root;return(0,i.jsx)(y,(0,u.A)({in:g,timeout:x},w,{children:(0,i.jsx)(io,(0,u.A)({"aria-hidden":!0},C,{as:null!=(n=null!=(o=b.root)?o:p.Root)?n:c,className:f(S.root,l,null==C?void 0:C.className),ownerState:(0,u.A)({},k,null==C?void 0:C.ownerState),classes:S,ref:t,children:s}))}))}));function lo(e){return Ie("MuiModal",e)}Oe("MuiModal",["root","hidden","backdrop"]);const co=["BackdropComponent","BackdropProps","classes","className","closeAfterTransition","children","container","component","components","componentsProps","disableAutoFocus","disableEnforceFocus","disableEscapeKeyDown","disablePortal","disableRestoreFocus","disableScrollLock","hideBackdrop","keepMounted","onBackdropClick","onClose","onTransitionEnter","onTransitionExited","open","slotProps","slots","theme"],uo=Ln("div",{name:"MuiModal",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,!r.open&&r.exited&&t.hidden]}})((({theme:e,ownerState:t})=>(0,u.A)({position:"fixed",zIndex:(e.vars||e).zIndex.modal,right:0,bottom:0,top:0,left:0},!t.open&&t.exited&&{visibility:"hidden"}))),po=Ln(so,{name:"MuiModal",slot:"Backdrop",overridesResolver:(e,t)=>t.backdrop})({zIndex:-1});var fo=e.forwardRef((function(t,r){var n,o,a,s,l,c;const p=Wn({name:"MuiModal",props:t}),{BackdropComponent:m=po,BackdropProps:h,className:g,closeAfterTransition:v=!1,children:b,container:y,component:x,components:w={},componentsProps:k={},disableAutoFocus:S=!1,disableEnforceFocus:C=!1,disableEscapeKeyDown:A=!1,disablePortal:M=!1,disableRestoreFocus:R=!1,disableScrollLock:$=!1,hideBackdrop:E=!1,keepMounted:I=!1,onBackdropClick:O,open:j,slotProps:T,slots:P}=p,B=(0,d.A)(p,co),_=(0,u.A)({},p,{closeAfterTransition:v,disableAutoFocus:S,disableEnforceFocus:C,disableEscapeKeyDown:A,disablePortal:M,disableRestoreFocus:R,disableScrollLock:$,hideBackdrop:E,keepMounted:I}),{getRootProps:z,getBackdropProps:L,getTransitionProps:N,portalRef:W,isTopModal:F,exited:D,hasTransition:H}=function(t){const{container:r,disableEscapeKeyDown:n=!1,disableScrollLock:o=!1,manager:a=An,closeAfterTransition:i=!1,onTransitionEnter:s,onTransitionExited:l,children:c,onClose:d,open:p,rootRef:f}=t,m=e.useRef({}),h=e.useRef(null),g=e.useRef(null),v=cn(g,f),[b,y]=e.useState(!p),x=function(e){return!!e&&e.props.hasOwnProperty("in")}(c);let w=!0;"false"!==t["aria-hidden"]&&!1!==t["aria-hidden"]||(w=!1);const k=()=>(m.current.modalRef=g.current,m.current.mount=h.current,m.current),S=()=>{a.mount(k(),{disableScrollLock:o}),g.current&&(g.current.scrollTop=0)},C=bn((()=>{const e=function(e){return"function"==typeof e?e():e}(r)||vn(h.current).body;a.add(k(),e),g.current&&S()})),A=e.useCallback((()=>a.isTopModal(k())),[a]),M=bn((e=>{h.current=e,e&&(p&&A()?S():g.current&&wn(g.current,w))})),R=e.useCallback((()=>{a.remove(k(),w)}),[w,a]);e.useEffect((()=>()=>{R()}),[R]),e.useEffect((()=>{p?C():x&&i||R()}),[p,R,x,i,C]);const $=e=>t=>{var r;null==(r=e.onKeyDown)||r.call(e,t),"Escape"===t.key&&229!==t.which&&A()&&(n||(t.stopPropagation(),d&&d(t,"escapeKeyDown")))},E=e=>t=>{var r;null==(r=e.onClick)||r.call(e,t),t.target===t.currentTarget&&d&&d(t,"backdropClick")};return{getRootProps:(e={})=>{const r=dn(t);delete r.onTransitionEnter,delete r.onTransitionExited;const n=(0,u.A)({},r,e);return(0,u.A)({role:"presentation"},n,{onKeyDown:$(n),ref:v})},getBackdropProps:(e={})=>{const t=e;return(0,u.A)({"aria-hidden":!0},t,{onClick:E(t),open:p})},getTransitionProps:()=>({onEnter:yn((()=>{y(!1),s&&s()}),null==c?void 0:c.props.onEnter),onExited:yn((()=>{y(!0),l&&l(),i&&R()}),null==c?void 0:c.props.onExited)}),rootRef:v,portalRef:M,isTopModal:A,exited:b,hasTransition:x}}((0,u.A)({},_,{rootRef:r})),V=(0,u.A)({},_,{exited:D}),G=(e=>{const{open:t,exited:r,classes:n}=e;return Mn({root:["root",!t&&r&&"hidden"],backdrop:["backdrop"]},lo,n)})(V),K={};if(void 0===b.props.tabIndex&&(K.tabIndex="-1"),H){const{onEnter:e,onExited:t}=N();K.onEnter=e,K.onExited=t}const U=null!=(n=null!=(o=null==P?void 0:P.root)?o:w.Root)?n:uo,X=null!=(a=null!=(s=null==P?void 0:P.backdrop)?s:w.Backdrop)?a:m,Z=null!=(l=null==T?void 0:T.root)?l:k.root,Y=null!=(c=null==T?void 0:T.backdrop)?c:k.backdrop,q=gn({elementType:U,externalSlotProps:Z,externalForwardedProps:B,getSlotProps:z,additionalProps:{ref:r,as:x},ownerState:V,className:f(g,null==Z?void 0:Z.className,null==G?void 0:G.root,!V.open&&V.exited&&(null==G?void 0:G.hidden))}),J=gn({elementType:X,externalSlotProps:Y,additionalProps:h,getSlotProps:e=>L((0,u.A)({},e,{onClick:t=>{O&&O(t),null!=e&&e.onClick&&e.onClick(t)}})),className:f(null==Y?void 0:Y.className,null==h?void 0:h.className,null==G?void 0:G.backdrop),ownerState:V});return I||j||H&&!D?(0,i.jsx)(Tn,{ref:W,container:y,disablePortal:M,children:(0,i.jsxs)(U,(0,u.A)({},q,{children:[!E&&m?(0,i.jsx)(X,(0,u.A)({},J)):null,(0,i.jsx)(In,{disableEnforceFocus:C,disableAutoFocus:S,disableRestoreFocus:R,isEnabled:F,open:j,children:e.cloneElement(b,K)})]}))}):null}));const mo=t().forwardRef(((e,r)=>t().createElement(fo,{...e,ref:r}))),ho=["ownerState"],go=["variants"],vo=["name","slot","skipVariantsResolver","skipSx","overridesResolver"];function bo(e){return"ownerState"!==e&&"theme"!==e&&"sx"!==e&&"as"!==e}const yo=(0,v.A)(),xo=e=>e?e.charAt(0).toLowerCase()+e.slice(1):e;function wo({defaultTheme:e,theme:t,themeId:r}){return n=t,0===Object.keys(n).length?e:t[r]||t;var n}function ko(e){return e?(t,r)=>r[e]:null}function So(e,t){let{ownerState:r}=t,n=(0,d.A)(t,ho);const o="function"==typeof e?e((0,u.A)({ownerState:r},n)):e;if(Array.isArray(o))return o.flatMap((e=>So(e,(0,u.A)({ownerState:r},n))));if(o&&"object"==typeof o&&Array.isArray(o.variants)){const{variants:e=[]}=o;let t=(0,d.A)(o,go);return e.forEach((e=>{let o=!0;"function"==typeof e.props?o=e.props((0,u.A)({ownerState:r},n,r)):Object.keys(e.props).forEach((t=>{(null==r?void 0:r[t])!==e.props[t]&&n[t]!==e.props[t]&&(o=!1)})),o&&(Array.isArray(t)||(t=[t]),t.push("function"==typeof e.style?e.style((0,u.A)({ownerState:r},n,r)):e.style))})),t}return o}var Co=function(e={}){const{themeId:t,defaultTheme:r=yo,rootShouldForwardProp:n=bo,slotShouldForwardProp:o=bo}=e,a=e=>(0,h.A)((0,u.A)({},e,{theme:wo((0,u.A)({},e,{defaultTheme:r,themeId:t}))}));return a.__mui_systemSx=!0,(e,i={})=>{(0,m.internal_processStyles)(e,(e=>e.filter((e=>!(null!=e&&e.__mui_systemSx)))));const{name:s,slot:l,skipVariantsResolver:c,skipSx:p,overridesResolver:f=ko(xo(l))}=i,h=(0,d.A)(i,vo),g=void 0!==c?c:l&&"Root"!==l&&"root"!==l||!1,v=p||!1;let b=bo;"Root"===l||"root"===l?b=n:l?b=o:function(e){return"string"==typeof e&&e.charCodeAt(0)>96}(e)&&(b=void 0);const y=(0,m.default)(e,(0,u.A)({shouldForwardProp:b,label:void 0},h)),x=e=>"function"==typeof e&&e.__emotion_real!==e||(0,M.Q)(e)?n=>So(e,(0,u.A)({},n,{theme:wo({theme:n.theme,defaultTheme:r,themeId:t})})):e,w=(n,...o)=>{let i=x(n);const l=o?o.map(x):[];s&&f&&l.push((e=>{const n=wo((0,u.A)({},e,{defaultTheme:r,themeId:t}));if(!n.components||!n.components[s]||!n.components[s].styleOverrides)return null;const o=n.components[s].styleOverrides,a={};return Object.entries(o).forEach((([t,r])=>{a[t]=So(r,(0,u.A)({},e,{theme:n}))})),f(e,a)})),s&&!g&&l.push((e=>{var n;const o=wo((0,u.A)({},e,{defaultTheme:r,themeId:t}));return So({variants:null==o||null==(n=o.components)||null==(n=n[s])?void 0:n.variants},(0,u.A)({},e,{theme:o}))})),v||l.push(a);const c=l.length-o.length;if(Array.isArray(n)&&c>0){const e=new Array(c).fill("");i=[...n,...e],i.raw=[...n.raw,...e]}const d=y(i,...l);return e.muiName&&(d.muiName=e.muiName),d};return y.withConfig&&(w.withConfig=y.withConfig),w}}(),Ao=r(9452),Mo=r(8248);const Ro=["component","direction","spacing","divider","children","className","useFlexGap"],$o=(0,v.A)(),Eo=Co("div",{name:"MuiStack",slot:"Root",overridesResolver:(e,t)=>t.root});function Io(e){return Nn({props:e,name:"MuiStack",defaultTheme:$o})}function Oo(t,r){const n=e.Children.toArray(t).filter(Boolean);return n.reduce(((t,o,a)=>(t.push(o),a<n.length-1&&t.push(e.cloneElement(r,{key:`separator-${a}`})),t)),[])}const jo=({ownerState:e,theme:t})=>{let r=(0,u.A)({display:"flex",flexDirection:"column"},(0,Ao.NI)({theme:t},(0,Ao.kW)({values:e.direction,breakpoints:t.breakpoints.values}),(e=>({flexDirection:e}))));if(e.spacing){const n=(0,Mo.LX)(t),o=Object.keys(t.breakpoints.values).reduce(((t,r)=>(("object"==typeof e.spacing&&null!=e.spacing[r]||"object"==typeof e.direction&&null!=e.direction[r])&&(t[r]=!0),t)),{}),a=(0,Ao.kW)({values:e.direction,base:o}),i=(0,Ao.kW)({values:e.spacing,base:o});"object"==typeof a&&Object.keys(a).forEach(((e,t,r)=>{if(!a[e]){const n=t>0?a[r[t-1]]:"column";a[e]=n}}));const s=(t,r)=>{return e.useFlexGap?{gap:(0,Mo._W)(n,t)}:{"& > :not(style):not(style)":{margin:0},"& > :not(style) ~ :not(style)":{[`margin${o=r?a[r]:e.direction,{row:"Left","row-reverse":"Right",column:"Top","column-reverse":"Bottom"}[o]}`]:(0,Mo._W)(n,t)}};var o};r=(0,M.A)(r,(0,Ao.NI)({theme:t},i,s))}return r=(0,Ao.iZ)(t.breakpoints,r),r};var To=function(t={}){const{createStyledComponent:r=Eo,useThemeProps:n=Io,componentName:o="MuiStack"}=t,a=r(jo);return e.forwardRef((function(e,t){const r=n(e),s=(0,g.A)(r),{component:l="div",direction:c="column",spacing:p=0,divider:m,children:h,className:v,useFlexGap:b=!1}=s,y=(0,d.A)(s,Ro),x={direction:c,spacing:p,useFlexGap:b},w=Mn({root:["root"]},(e=>Ie(o,e)),{});return(0,i.jsx)(a,(0,u.A)({as:l,ownerState:x,ref:t,className:f(w.root,v)},y,{children:m?Oo(h,m):h}))}))}({createStyledComponent:Ln("div",{name:"MuiStack",slot:"Root",overridesResolver:(e,t)=>t.root}),useThemeProps:e=>Wn({props:e,name:"MuiStack"})});const Po=t().forwardRef(((e,r)=>t().createElement(To,{...e,ref:r})));var Bo=r(3967).A;function _o(e){return Ie("MuiSvgIcon",e)}Oe("MuiSvgIcon",["root","colorPrimary","colorSecondary","colorAction","colorError","colorDisabled","fontSizeInherit","fontSizeSmall","fontSizeMedium","fontSizeLarge"]);const zo=["children","className","color","component","fontSize","htmlColor","inheritViewBox","titleAccess","viewBox"],Lo=Ln("svg",{name:"MuiSvgIcon",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,"inherit"!==r.color&&t[`color${Bo(r.color)}`],t[`fontSize${Bo(r.fontSize)}`]]}})((({theme:e,ownerState:t})=>{var r,n,o,a,i,s,l,c,u,d,p,f,m;return{userSelect:"none",width:"1em",height:"1em",display:"inline-block",fill:t.hasSvgAsChild?void 0:"currentColor",flexShrink:0,transition:null==(r=e.transitions)||null==(n=r.create)?void 0:n.call(r,"fill",{duration:null==(o=e.transitions)||null==(o=o.duration)?void 0:o.shorter}),fontSize:{inherit:"inherit",small:(null==(a=e.typography)||null==(i=a.pxToRem)?void 0:i.call(a,20))||"1.25rem",medium:(null==(s=e.typography)||null==(l=s.pxToRem)?void 0:l.call(s,24))||"1.5rem",large:(null==(c=e.typography)||null==(u=c.pxToRem)?void 0:u.call(c,35))||"2.1875rem"}[t.fontSize],color:null!=(d=null==(p=(e.vars||e).palette)||null==(p=p[t.color])?void 0:p.main)?d:{action:null==(f=(e.vars||e).palette)||null==(f=f.action)?void 0:f.active,disabled:null==(m=(e.vars||e).palette)||null==(m=m.action)?void 0:m.disabled,inherit:void 0}[t.color]}})),No=e.forwardRef((function(t,r){const n=Wn({props:t,name:"MuiSvgIcon"}),{children:o,className:a,color:s="inherit",component:l="svg",fontSize:c="medium",htmlColor:p,inheritViewBox:m=!1,titleAccess:h,viewBox:g="0 0 24 24"}=n,v=(0,d.A)(n,zo),b=e.isValidElement(o)&&"svg"===o.type,y=(0,u.A)({},n,{color:s,component:l,fontSize:c,instanceFontSize:t.fontSize,inheritViewBox:m,viewBox:g,hasSvgAsChild:b}),x={};m||(x.viewBox=g);const w=(e=>{const{color:t,fontSize:r,classes:n}=e;return Mn({root:["root","inherit"!==t&&`color${Bo(t)}`,`fontSize${Bo(r)}`]},_o,n)})(y);return(0,i.jsxs)(Lo,(0,u.A)({as:l,className:f(w.root,a),focusable:"false",color:p,"aria-hidden":!h||void 0,role:h?"img":void 0,ref:r},x,v,b&&o.props,{ownerState:y,children:[b?o.props.children:o,h?(0,i.jsx)("title",{children:h}):null]}))}));No.muiName="SvgIcon";var Wo=No;const Fo=t().forwardRef(((e,r)=>t().createElement(Wo,{...e,ref:r})));var Do;function Ho(){return Ho=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},Ho.apply(null,arguments)}const Vo=t=>e.createElement("svg",Ho({xmlns:"http://www.w3.org/2000/svg",width:23,height:24,fill:"none"},t),Do||(Do=e.createElement("path",{fill:"#93003f",d:"M11.5.45a11.26 11.26 0 0 0-5.796 1.564 11.64 11.64 0 0 0-4.14 4.14A11.26 11.26 0 0 0 0 11.95a11.26 11.26 0 0 0 1.564 5.796 11.64 11.64 0 0 0 4.14 4.14Q8.372 23.45 11.5 23.45c3.128 0 4.017-.521 5.796-1.564a11.64 11.64 0 0 0 4.14-4.14Q23 15.078 23 11.95c0-3.128-.521-4.017-1.564-5.796a11.64 11.64 0 0 0-4.14-4.14A11.26 11.26 0 0 0 11.5.45M8.625 16.734H6.716V7.166h1.909zm7.659 0h-5.75v-1.909h5.75zm0-3.818h-5.75v-1.932h5.75zm0-3.841h-5.75V7.166h5.75z"})));function Go(e){return Ie("MuiTypography",e)}Oe("MuiTypography",["root","h1","h2","h3","h4","h5","h6","subtitle1","subtitle2","body1","body2","inherit","button","caption","overline","alignLeft","alignRight","alignCenter","alignJustify","noWrap","gutterBottom","paragraph"]);const Ko=["align","className","component","gutterBottom","noWrap","paragraph","variant","variantMapping"],Uo=Ln("span",{name:"MuiTypography",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,r.variant&&t[r.variant],"inherit"!==r.align&&t[`align${Bo(r.align)}`],r.noWrap&&t.noWrap,r.gutterBottom&&t.gutterBottom,r.paragraph&&t.paragraph]}})((({theme:e,ownerState:t})=>(0,u.A)({margin:0},"inherit"===t.variant&&{font:"inherit"},"inherit"!==t.variant&&e.typography[t.variant],"inherit"!==t.align&&{textAlign:t.align},t.noWrap&&{overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},t.gutterBottom&&{marginBottom:"0.35em"},t.paragraph&&{marginBottom:16}))),Xo={h1:"h1",h2:"h2",h3:"h3",h4:"h4",h5:"h5",h6:"h6",subtitle1:"h6",subtitle2:"h6",body1:"p",body2:"p",inherit:"p"},Zo={primary:"primary.main",textPrimary:"text.primary",secondary:"secondary.main",textSecondary:"text.secondary",error:"error.main"};var Yo=e.forwardRef((function(e,t){const r=Wn({props:e,name:"MuiTypography"}),n=(e=>Zo[e]||e)(r.color),o=(0,g.A)((0,u.A)({},r,{color:n})),{align:a="inherit",className:s,component:l,gutterBottom:c=!1,noWrap:p=!1,paragraph:m=!1,variant:h="body1",variantMapping:v=Xo}=o,b=(0,d.A)(o,Ko),y=(0,u.A)({},o,{align:a,color:n,className:s,component:l,gutterBottom:c,noWrap:p,paragraph:m,variant:h,variantMapping:v}),x=l||(m?"p":v[h]||Xo[h])||"span",w=(e=>{const{align:t,gutterBottom:r,noWrap:n,paragraph:o,variant:a,classes:i}=e;return Mn({root:["root",a,"inherit"!==e.align&&`align${Bo(t)}`,r&&"gutterBottom",n&&"noWrap",o&&"paragraph"]},Go,i)})(y);return(0,i.jsx)(Uo,(0,u.A)({as:x,ref:t,ownerState:y,className:f(w.root,s)},b))}));const qo=t().forwardRef(((e,r)=>t().createElement(Yo,{...e,ref:r}))),Jo=e.forwardRef(((t,r)=>e.createElement(Fo,{viewBox:"0 0 24 24",...t,ref:r},e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5303 5.46967C18.8232 5.76256 18.8232 6.23744 18.5303 6.53033L6.53033 18.5303C6.23744 18.8232 5.76256 18.8232 5.46967 18.5303C5.17678 18.2374 5.17678 17.7626 5.46967 17.4697L17.4697 5.46967C17.7626 5.17678 18.2374 5.17678 18.5303 5.46967Z"}),e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.46967 5.46967C5.76256 5.17678 6.23744 5.17678 6.53033 5.46967L18.5303 17.4697C18.8232 17.7626 18.8232 18.2374 18.5303 18.5303C18.2374 18.8232 17.7626 18.8232 17.4697 18.5303L5.46967 6.53033C5.17678 6.23744 5.17678 5.76256 5.46967 5.46967Z"})))),Qo=({sx:e={},iconSize:t="medium",onClose:r})=>(0,i.jsxs)(Po,{direction:"row",sx:{alignItems:"center",minHeight:50,px:2,backgroundColor:"background.default",justifyContent:"space-between",...e},children:[(0,i.jsxs)(Po,{direction:"row",spacing:1,alignItems:"center",children:[(0,i.jsx)(Fo,{fontSize:t,color:"secondary",children:(0,i.jsx)(Vo,{})}),(0,i.jsx)(qo,{variant:"subtitle1",sx:{color:"text.primary"},children:(0,a.__)("Hello+","hello-plus")})]}),r&&(0,i.jsx)(Jo,{onClick:r,sx:{cursor:"pointer",color:"text.primary"}})]});var ea=e.createContext({});var ta=e.createContext({});function ra(e){return Ie("MuiStep",e)}Oe("MuiStep",["root","horizontal","vertical","alternativeLabel","completed"]);const na=["active","children","className","component","completed","disabled","expanded","index","last"],oa=Ln("div",{name:"MuiStep",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,t[r.orientation],r.alternativeLabel&&t.alternativeLabel,r.completed&&t.completed]}})((({ownerState:e})=>(0,u.A)({},"horizontal"===e.orientation&&{paddingLeft:8,paddingRight:8},e.alternativeLabel&&{flex:1,position:"relative"})));var aa=e.forwardRef((function(t,r){const n=Wn({props:t,name:"MuiStep"}),{active:o,children:a,className:s,component:l="div",completed:c,disabled:p,expanded:m=!1,index:h,last:g}=n,v=(0,d.A)(n,na),{activeStep:b,connector:y,alternativeLabel:x,orientation:w,nonLinear:k}=e.useContext(ea);let[S=!1,C=!1,A=!1]=[o,c,p];b===h?S=void 0===o||o:!k&&b>h?C=void 0===c||c:!k&&b<h&&(A=void 0===p||p);const M=e.useMemo((()=>({index:h,last:g,expanded:m,icon:h+1,active:S,completed:C,disabled:A})),[h,g,m,S,C,A]),R=(0,u.A)({},n,{active:S,orientation:w,alternativeLabel:x,completed:C,disabled:A,expanded:m,component:l}),$=(e=>{const{classes:t,orientation:r,alternativeLabel:n,completed:o}=e;return Mn({root:["root",r,n&&"alternativeLabel",o&&"completed"]},ra,t)})(R),E=(0,i.jsxs)(oa,(0,u.A)({as:l,className:f($.root,s),ref:r,ownerState:R},v,{children:[y&&x&&0!==h?y:null,a]}));return(0,i.jsx)(ta.Provider,{value:M,children:y&&!x&&0!==h?(0,i.jsxs)(e.Fragment,{children:[y,E]}):E})}));const ia=t().forwardRef(((e,r)=>t().createElement(aa,{...e,ref:r})));function sa(t,r){function n(e,n){return(0,i.jsx)(Wo,(0,u.A)({"data-testid":`${r}Icon`,ref:n},e,{children:t}))}return n.muiName=Wo.muiName,e.memo(e.forwardRef(n))}var la=sa((0,i.jsx)("path",{d:"M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24zm-2 17l-5-5 1.4-1.4 3.6 3.6 7.6-7.6L19 8l-9 9z"}),"CheckCircle"),ca=sa((0,i.jsx)("path",{d:"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z"}),"Warning");function ua(e){return Ie("MuiStepIcon",e)}var da,pa=Oe("MuiStepIcon",["root","active","completed","error","text"]);const fa=["active","className","completed","error","icon"],ma=Ln(Wo,{name:"MuiStepIcon",slot:"Root",overridesResolver:(e,t)=>t.root})((({theme:e})=>({display:"block",transition:e.transitions.create("color",{duration:e.transitions.duration.shortest}),color:(e.vars||e).palette.text.disabled,[`&.${pa.completed}`]:{color:(e.vars||e).palette.primary.main},[`&.${pa.active}`]:{color:(e.vars||e).palette.primary.main},[`&.${pa.error}`]:{color:(e.vars||e).palette.error.main}}))),ha=Ln("text",{name:"MuiStepIcon",slot:"Text",overridesResolver:(e,t)=>t.text})((({theme:e})=>({fill:(e.vars||e).palette.primary.contrastText,fontSize:e.typography.caption.fontSize,fontFamily:e.typography.fontFamily})));var ga=e.forwardRef((function(e,t){const r=Wn({props:e,name:"MuiStepIcon"}),{active:n=!1,className:o,completed:a=!1,error:s=!1,icon:l}=r,c=(0,d.A)(r,fa),p=(0,u.A)({},r,{active:n,completed:a,error:s}),m=(e=>{const{classes:t,active:r,completed:n,error:o}=e;return Mn({root:["root",r&&"active",n&&"completed",o&&"error"],text:["text"]},ua,t)})(p);if("number"==typeof l||"string"==typeof l){const e=f(o,m.root);return s?(0,i.jsx)(ma,(0,u.A)({as:ca,className:e,ref:t,ownerState:p},c)):a?(0,i.jsx)(ma,(0,u.A)({as:la,className:e,ref:t,ownerState:p},c)):(0,i.jsxs)(ma,(0,u.A)({className:e,ref:t,ownerState:p},c,{children:[da||(da=(0,i.jsx)("circle",{cx:"12",cy:"12",r:"12"})),(0,i.jsx)(ha,{className:m.text,x:"12",y:"12",textAnchor:"middle",dominantBaseline:"central",ownerState:p,children:l})]}))}return l}));function va(e){return Ie("MuiStepLabel",e)}var ba=Oe("MuiStepLabel",["root","horizontal","vertical","label","active","completed","error","disabled","iconContainer","alternativeLabel","labelContainer"]);const ya=["children","className","componentsProps","error","icon","optional","slotProps","StepIconComponent","StepIconProps"],xa=Ln("span",{name:"MuiStepLabel",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,t[r.orientation]]}})((({ownerState:e})=>(0,u.A)({display:"flex",alignItems:"center",[`&.${ba.alternativeLabel}`]:{flexDirection:"column"},[`&.${ba.disabled}`]:{cursor:"default"}},"vertical"===e.orientation&&{textAlign:"left",padding:"8px 0"}))),wa=Ln("span",{name:"MuiStepLabel",slot:"Label",overridesResolver:(e,t)=>t.label})((({theme:e})=>(0,u.A)({},e.typography.body2,{display:"block",transition:e.transitions.create("color",{duration:e.transitions.duration.shortest}),[`&.${ba.active}`]:{color:(e.vars||e).palette.text.primary,fontWeight:500},[`&.${ba.completed}`]:{color:(e.vars||e).palette.text.primary,fontWeight:500},[`&.${ba.alternativeLabel}`]:{marginTop:16},[`&.${ba.error}`]:{color:(e.vars||e).palette.error.main}}))),ka=Ln("span",{name:"MuiStepLabel",slot:"IconContainer",overridesResolver:(e,t)=>t.iconContainer})((()=>({flexShrink:0,display:"flex",paddingRight:8,[`&.${ba.alternativeLabel}`]:{paddingRight:0}}))),Sa=Ln("span",{name:"MuiStepLabel",slot:"LabelContainer",overridesResolver:(e,t)=>t.labelContainer})((({theme:e})=>({width:"100%",color:(e.vars||e).palette.text.secondary,[`&.${ba.alternativeLabel}`]:{textAlign:"center"}}))),Ca=e.forwardRef((function(t,r){var n;const o=Wn({props:t,name:"MuiStepLabel"}),{children:a,className:s,componentsProps:l={},error:c=!1,icon:p,optional:m,slotProps:h={},StepIconComponent:g,StepIconProps:v}=o,b=(0,d.A)(o,ya),{alternativeLabel:y,orientation:x}=e.useContext(ea),{active:w,disabled:k,completed:S,icon:C}=e.useContext(ta),A=p||C;let M=g;A&&!M&&(M=ga);const R=(0,u.A)({},o,{active:w,alternativeLabel:y,completed:S,disabled:k,error:c,orientation:x}),$=(e=>{const{classes:t,orientation:r,active:n,completed:o,error:a,disabled:i,alternativeLabel:s}=e;return Mn({root:["root",r,a&&"error",i&&"disabled",s&&"alternativeLabel"],label:["label",n&&"active",o&&"completed",a&&"error",i&&"disabled",s&&"alternativeLabel"],iconContainer:["iconContainer",n&&"active",o&&"completed",a&&"error",i&&"disabled",s&&"alternativeLabel"],labelContainer:["labelContainer",s&&"alternativeLabel"]},va,t)})(R),E=null!=(n=h.label)?n:l.label;return(0,i.jsxs)(xa,(0,u.A)({className:f($.root,s),ref:r,ownerState:R},b,{children:[A||M?(0,i.jsx)(ka,{className:$.iconContainer,ownerState:R,children:(0,i.jsx)(M,(0,u.A)({completed:S,active:w,error:c,icon:A},v))}):null,(0,i.jsxs)(Sa,{className:$.labelContainer,ownerState:R,children:[a?(0,i.jsx)(wa,(0,u.A)({ownerState:R},E,{className:f($.label,null==E?void 0:E.className),children:a})):null,m]})]}))}));Ca.muiName="StepLabel";var Aa=Ca;const Ma=t().forwardRef(((e,r)=>t().createElement(Wo,{...e,ref:r}))),Ra=["primary","global"],$a=["primary","secondary","error","warning","info","success","accent","global","promotion"].filter((e=>!Ra.includes(e)));function Ea(e,t){return e.map((e=>({props:{color:e,variant:"standard"},style:({theme:r})=>{const n=t(r,e),{mode:o}=r.palette;return{backgroundColor:n.backgroundColor[o],color:n.color[o],"&:hover,&:focus":{backgroundColor:n.backgroundColorHover[o]},"& .MuiChip-deleteIcon":{color:n.color[o],opacity:n.deleteIconOpacity,"&:hover,&:focus":{color:n.color[o],opacity:n.deleteIconOpacityHover}}}}})))}Ea(["default"],(function(e){return{backgroundColor:{light:De(e.palette.divider,.3),dark:Fe(e.palette.divider,.1)},backgroundColorHover:{light:e.palette.action.focus,dark:e.palette.action.focus},color:{light:e.palette.text.primary,dark:e.palette.text.primary},deleteIconOpacity:.26,deleteIconOpacityHover:.7}})),Ea(["primary","global"],(function(e,t){const r=e.palette[t];return{backgroundColor:{light:De(r.light,.8),dark:Fe(r.__unstableAccessibleMain,.8)},backgroundColorHover:{light:De(r.light,.6),dark:Fe(r.__unstableAccessibleMain,.9)},color:{light:Fe(r.__unstableAccessibleMain,.3),dark:De(r.light,.3)},deleteIconOpacity:.7,deleteIconOpacityHover:1}})),Ea($a,(function(e,t){return{backgroundColor:{light:De(e.palette[t].light,.9),dark:Fe(e.palette[t].light,.8)},backgroundColorHover:{light:De(e.palette[t].light,.8),dark:Fe(e.palette[t].light,.9)},color:{light:Fe(e.palette[t].main,.3),dark:De(e.palette[t].main,.5)},deleteIconOpacity:.7,deleteIconOpacityHover:1}})),t().createContext(!1),(0,Jt.A)({key:"eui-rtl",stylisPlugins:[er,qt]});We("#524CFF",.08),(0,e.createContext)(null);const Ia=t().forwardRef(((e,r)=>{const n=Jn();return t().createElement(Ma,{viewBox:"0 0 24 24",...e,ref:r},t().createElement("g",{clipPath:"url(#clip0_2503_21505)"},t().createElement("circle",{cx:"12",cy:"12",r:"12",fill:n.palette.primary.main}),t().createElement("path",{fill:n.palette.primary.contrastText,fillRule:"evenodd",clipRule:"evenodd",d:"M17.7753 8.22472C17.5312 7.98064 17.1355 7.98064 16.8914 8.22472L10.6667 14.4494L7.77532 11.5581C7.53124 11.314 7.13551 11.314 6.89143 11.5581C6.64735 11.8021 6.64735 12.1979 6.89143 12.4419L10.2248 15.7753C10.4688 16.0194 10.8646 16.0194 11.1086 15.7753L17.7753 9.10861C18.0194 8.86453 18.0194 8.4688 17.7753 8.22472Z"})),t().createElement("defs",null,t().createElement("clipPath",{id:"clip0_2503_21505"},t().createElement("rect",{width:"24",height:"24",rx:"12",fill:"white"}))))})),Oa=t().forwardRef(((e,r)=>{const n={...e};return n.completed&&(n.as=e=>t().createElement(Ia,{...e})),t().createElement(ga,{...n,ref:r})})),ja=t().forwardRef(((e,r)=>{const n={...e};return n.componentsProps||(n.componentsProps={}),n.componentsProps.label||(n.componentsProps.label={}),n.componentsProps={...n.componentsProps,label:{...n.componentsProps.label,className:f([n.componentsProps.label.className,n.StepIconProps?.active&&"Mui-active",n.StepIconProps?.completed&&"Mui-completed",n.StepIconProps?.error&&"Mui-error"])}},t().createElement(Aa,{...n,ref:r})}));function Ta(e){return Ie("MuiStepper",e)}function Pa(e){return Ie("MuiStepConnector",e)}ja.defaultProps={StepIconComponent:Oa},Oe("MuiStepper",["root","horizontal","vertical","alternativeLabel"]),Oe("MuiStepConnector",["root","horizontal","vertical","alternativeLabel","active","completed","disabled","line","lineHorizontal","lineVertical"]);const Ba=["className"],_a=Ln("div",{name:"MuiStepConnector",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,t[r.orientation],r.alternativeLabel&&t.alternativeLabel,r.completed&&t.completed]}})((({ownerState:e})=>(0,u.A)({flex:"1 1 auto"},"vertical"===e.orientation&&{marginLeft:12},e.alternativeLabel&&{position:"absolute",top:12,left:"calc(-50% + 20px)",right:"calc(50% + 20px)"}))),za=Ln("span",{name:"MuiStepConnector",slot:"Line",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.line,t[`line${Bo(r.orientation)}`]]}})((({ownerState:e,theme:t})=>{const r="light"===t.palette.mode?t.palette.grey[400]:t.palette.grey[600];return(0,u.A)({display:"block",borderColor:t.vars?t.vars.palette.StepConnector.border:r},"horizontal"===e.orientation&&{borderTopStyle:"solid",borderTopWidth:1},"vertical"===e.orientation&&{borderLeftStyle:"solid",borderLeftWidth:1,minHeight:24})}));var La=e.forwardRef((function(t,r){const n=Wn({props:t,name:"MuiStepConnector"}),{className:o}=n,a=(0,d.A)(n,Ba),{alternativeLabel:s,orientation:l="horizontal"}=e.useContext(ea),{active:c,disabled:p,completed:m}=e.useContext(ta),h=(0,u.A)({},n,{alternativeLabel:s,orientation:l,active:c,completed:m,disabled:p}),g=(e=>{const{classes:t,orientation:r,alternativeLabel:n,active:o,completed:a,disabled:i}=e;return Mn({root:["root",r,n&&"alternativeLabel",o&&"active",a&&"completed",i&&"disabled"],line:["line",`line${Bo(r)}`]},Pa,t)})(h);return(0,i.jsx)(_a,(0,u.A)({className:f(g.root,o),ref:r,ownerState:h},a,{children:(0,i.jsx)(za,{className:g.line,ownerState:h})}))}));const Na=["activeStep","alternativeLabel","children","className","component","connector","nonLinear","orientation"],Wa=Ln("div",{name:"MuiStepper",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,t[r.orientation],r.alternativeLabel&&t.alternativeLabel]}})((({ownerState:e})=>(0,u.A)({display:"flex"},"horizontal"===e.orientation&&{flexDirection:"row",alignItems:"center"},"vertical"===e.orientation&&{flexDirection:"column"},e.alternativeLabel&&{alignItems:"flex-start"}))),Fa=(0,i.jsx)(La,{});var Da=e.forwardRef((function(t,r){const n=Wn({props:t,name:"MuiStepper"}),{activeStep:o=0,alternativeLabel:a=!1,children:s,className:l,component:c="div",connector:p=Fa,nonLinear:m=!1,orientation:h="horizontal"}=n,g=(0,d.A)(n,Na),v=(0,u.A)({},n,{alternativeLabel:a,orientation:h,component:c}),b=(e=>{const{orientation:t,alternativeLabel:r,classes:n}=e;return Mn({root:["root",t,r&&"alternativeLabel"]},Ta,n)})(v),y=e.Children.toArray(s).filter(Boolean),x=y.map(((t,r)=>e.cloneElement(t,(0,u.A)({index:r,last:r+1===y.length},t.props)))),w=e.useMemo((()=>({activeStep:o,alternativeLabel:a,connector:p,nonLinear:m,orientation:h})),[o,a,p,m,h]);return(0,i.jsx)(ea.Provider,{value:w,children:(0,i.jsx)(Wa,(0,u.A)({as:c,ownerState:v,className:f(b.root,l),ref:r},g,{children:x}))})}));const Ha=t().forwardRef(((e,r)=>t().createElement(Da,{...e,ref:r}))),Va=()=>{const{step:e}=sn(),t=[(0,a.__)("Get Started","hello-plus"),(0,a.__)("Choose a Kit","hello-plus"),(0,a.__)("Ready to Go","hello-plus")];return(0,i.jsx)(Be,{sx:{width:"100%"},children:(0,i.jsx)(Ha,{activeStep:e,children:t.map(((t,r)=>(0,i.jsx)(ia,{completed:r<e,active:r===e,children:(0,i.jsx)(ja,{children:(0,i.jsx)(qo,{children:t})})},t)))})})},Ga=["className","elementType","ownerState","externalForwardedProps","getSlotOwnerState","internalForwardedProps"],Ka=["component","slots","slotProps"],Ua=["component"];function Xa(e,t){const{className:r,elementType:n,ownerState:o,externalForwardedProps:a,getSlotOwnerState:i,internalForwardedProps:s}=t,l=(0,d.A)(t,Ga),{component:c,slots:p={[e]:void 0},slotProps:f={[e]:void 0}}=a,m=(0,d.A)(a,Ka),h=p[e]||n,g=mn(f[e],o),v=fn((0,u.A)({className:r},l,{externalForwardedProps:"root"===e?m:void 0,externalSlotProps:g})),{props:{component:b},internalRef:y}=v,x=(0,d.A)(v.props,Ua),w=cn(y,null==g?void 0:g.ref,t.ref),k=i?i(x):{},S=(0,u.A)({},o,k),C="root"===e?b||c:b,A=un(h,(0,u.A)({},"root"===e&&!c&&!p[e]&&s,"root"!==e&&!p[e]&&s,x,C&&{as:C},{ref:w}),S);return Object.keys(k).forEach((e=>{delete A[e]})),[h,A]}var Za=e=>{let t;return t=e<1?5.11916*e**2:4.5*Math.log(e+1)+2,(t/100).toFixed(2)};function Ya(e){return Ie("MuiPaper",e)}Oe("MuiPaper",["root","rounded","outlined","elevation","elevation0","elevation1","elevation2","elevation3","elevation4","elevation5","elevation6","elevation7","elevation8","elevation9","elevation10","elevation11","elevation12","elevation13","elevation14","elevation15","elevation16","elevation17","elevation18","elevation19","elevation20","elevation21","elevation22","elevation23","elevation24"]);const qa=["className","component","elevation","square","variant"],Ja=Ln("div",{name:"MuiPaper",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,t[r.variant],!r.square&&t.rounded,"elevation"===r.variant&&t[`elevation${r.elevation}`]]}})((({theme:e,ownerState:t})=>{var r;return(0,u.A)({backgroundColor:(e.vars||e).palette.background.paper,color:(e.vars||e).palette.text.primary,transition:e.transitions.create("box-shadow")},!t.square&&{borderRadius:e.shape.borderRadius},"outlined"===t.variant&&{border:`1px solid ${(e.vars||e).palette.divider}`},"elevation"===t.variant&&(0,u.A)({boxShadow:(e.vars||e).shadows[t.elevation]},!e.vars&&"dark"===e.palette.mode&&{backgroundImage:`linear-gradient(${(0,$.X4)("#fff",Za(t.elevation))}, ${(0,$.X4)("#fff",Za(t.elevation))})`},e.vars&&{backgroundImage:null==(r=e.vars.overlays)?void 0:r[t.elevation]}))}));var Qa=e.forwardRef((function(e,t){const r=Wn({props:e,name:"MuiPaper"}),{className:n,component:o="div",elevation:a=1,square:s=!1,variant:l="elevation"}=r,c=(0,d.A)(r,qa),p=(0,u.A)({},r,{component:o,elevation:a,square:s,variant:l}),m=(e=>{const{square:t,elevation:r,variant:n,classes:o}=e;return Mn({root:["root",n,!t&&"rounded","elevation"===n&&`elevation${r}`]},Ya,o)})(p);return(0,i.jsx)(Ja,(0,u.A)({as:o,ownerState:p,className:f(m.root,n),ref:t},c))}));function ei(e){return Ie("MuiAlert",e)}var ti=Oe("MuiAlert",["root","action","icon","message","filled","colorSuccess","colorInfo","colorWarning","colorError","filledSuccess","filledInfo","filledWarning","filledError","outlined","outlinedSuccess","outlinedInfo","outlinedWarning","outlinedError","standard","standardSuccess","standardInfo","standardWarning","standardError"]),ri=bn;const ni={},oi=[];class ai{constructor(){this.currentId=null,this.clear=()=>{null!==this.currentId&&(clearTimeout(this.currentId),this.currentId=null)},this.disposeEffect=()=>this.clear}static create(){return new ai}start(e,t){this.clear(),this.currentId=setTimeout((()=>{this.currentId=null,t()}),e)}}let ii=!0,si=!1;const li=new ai,ci={text:!0,search:!0,url:!0,tel:!0,email:!0,password:!0,number:!0,date:!0,month:!0,week:!0,time:!0,datetime:!0,"datetime-local":!0};function ui(e){e.metaKey||e.altKey||e.ctrlKey||(ii=!0)}function di(){ii=!1}function pi(){"hidden"===this.visibilityState&&si&&(ii=!0)}var fi=function(){const t=e.useCallback((e=>{var t;null!=e&&((t=e.ownerDocument).addEventListener("keydown",ui,!0),t.addEventListener("mousedown",di,!0),t.addEventListener("pointerdown",di,!0),t.addEventListener("touchstart",di,!0),t.addEventListener("visibilitychange",pi,!0))}),[]),r=e.useRef(!1);return{isFocusVisibleRef:r,onFocus:function(e){return!!function(e){const{target:t}=e;try{return t.matches(":focus-visible")}catch(e){}return ii||function(e){const{type:t,tagName:r}=e;return!("INPUT"!==r||!ci[t]||e.readOnly)||"TEXTAREA"===r&&!e.readOnly||!!e.isContentEditable}(t)}(e)&&(r.current=!0,!0)},onBlur:function(){return!!r.current&&(si=!0,li.start(100,(()=>{si=!1})),r.current=!1,!0)},ref:t}};function mi(t,r){var n=Object.create(null);return t&&e.Children.map(t,(function(e){return e})).forEach((function(t){n[t.key]=function(t){return r&&(0,e.isValidElement)(t)?r(t):t}(t)})),n}function hi(e,t,r){return null!=r[t]?r[t]:e.props[t]}function gi(t,r,n){var o=mi(t.children),a=function(e,t){function r(r){return r in t?t[r]:e[r]}e=e||{},t=t||{};var n,o=Object.create(null),a=[];for(var i in e)i in t?a.length&&(o[i]=a,a=[]):a.push(i);var s={};for(var l in t){if(o[l])for(n=0;n<o[l].length;n++){var c=o[l][n];s[o[l][n]]=r(c)}s[l]=r(l)}for(n=0;n<a.length;n++)s[a[n]]=r(a[n]);return s}(r,o);return Object.keys(a).forEach((function(i){var s=a[i];if((0,e.isValidElement)(s)){var l=i in r,c=i in o,u=r[i],d=(0,e.isValidElement)(u)&&!u.props.in;!c||l&&!d?c||!l||d?c&&l&&(0,e.isValidElement)(u)&&(a[i]=(0,e.cloneElement)(s,{onExited:n.bind(null,s),in:u.props.in,exit:hi(s,"exit",t),enter:hi(s,"enter",t)})):a[i]=(0,e.cloneElement)(s,{in:!1}):a[i]=(0,e.cloneElement)(s,{onExited:n.bind(null,s),in:!0,exit:hi(s,"exit",t),enter:hi(s,"enter",t)})}})),a}var vi=Object.values||function(e){return Object.keys(e).map((function(t){return e[t]}))},bi=function(r){function n(e,t){var n,o=(n=r.call(this,e,t)||this).handleExited.bind(function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(n));return n.state={contextValue:{isMounting:!0},handleExited:o,firstRender:!0},n}Dn(n,r);var o=n.prototype;return o.componentDidMount=function(){this.mounted=!0,this.setState({contextValue:{isMounting:!1}})},o.componentWillUnmount=function(){this.mounted=!1},n.getDerivedStateFromProps=function(t,r){var n,o,a=r.children,i=r.handleExited;return{children:r.firstRender?(n=t,o=i,mi(n.children,(function(t){return(0,e.cloneElement)(t,{onExited:o.bind(null,t),in:!0,appear:hi(t,"appear",n),enter:hi(t,"enter",n),exit:hi(t,"exit",n)})}))):gi(t,a,i),firstRender:!1}},o.handleExited=function(e,t){var r=mi(this.props.children);e.key in r||(e.props.onExited&&e.props.onExited(t),this.mounted&&this.setState((function(t){var r=(0,u.A)({},t.children);return delete r[e.key],{children:r}})))},o.render=function(){var e=this.props,r=e.component,n=e.childFactory,o=(0,d.A)(e,["component","childFactory"]),a=this.state.contextValue,i=vi(this.state.children).map(n);return delete o.appear,delete o.enter,delete o.exit,null===r?t().createElement(Hn.Provider,{value:a},i):t().createElement(Hn.Provider,{value:a},t().createElement(r,o,i))},n}(t().Component);bi.propTypes={},bi.defaultProps={component:"div",childFactory:function(e){return e}};var yi=bi,xi=r(7437),wi=Oe("MuiTouchRipple",["root","ripple","rippleVisible","ripplePulsate","child","childLeaving","childPulsate"]);const ki=["center","classes","className"];let Si,Ci,Ai,Mi,Ri=e=>e;const $i=(0,xi.i7)(Si||(Si=Ri`1 !function(){var e={41:function(e,t,r){"use strict";function n(e,t,r){var n="";return r.split(" ").forEach((function(r){void 0!==e[r]?t.push(e[r]+";"):r&&(n+=r+" ")})),n}r.d(t,{Rk:function(){return n},SF:function(){return o},sk:function(){return a}});var o=function(e,t,r){var n=e.key+"-"+t.name;!1===r&&void 0===e.registered[n]&&(e.registered[n]=t.styles)},a=function(e,t,r){o(e,t,r);var n=e.key+"-"+t.name;if(void 0===e.inserted[t.name]){var a=t;do{e.insert(t===a?"."+n:"",a,e.sheet,!0),a=a.next}while(void 0!==a)}}},725:function(e,t){"use strict";t.A=function(e,t=Number.MIN_SAFE_INTEGER,r=Number.MAX_SAFE_INTEGER){return Math.max(t,Math.min(e,r))}},771:function(e,t,r){"use strict";var n=r(4994);t.X4=function(e,t){return e=s(e),t=i(t),"rgb"!==e.type&&"hsl"!==e.type||(e.type+="a"),"color"===e.type?e.values[3]=`/${t}`:e.values[3]=t,l(e)},t.e$=u,t.eM=function(e,t){const r=c(e),n=c(t);return(Math.max(r,n)+.05)/(Math.min(r,n)+.05)},t.a=d;var o=n(r(8944)),a=n(r(8586));function i(e,t=0,r=1){return(0,a.default)(e,t,r)}function s(e){if(e.type)return e;if("#"===e.charAt(0))return s(function(e){e=e.slice(1);const t=new RegExp(`.{1,${e.length>=6?2:1}}`,"g");let r=e.match(t);return r&&1===r[0].length&&(r=r.map((e=>e+e))),r?`rgb${4===r.length?"a":""}(${r.map(((e,t)=>t<3?parseInt(e,16):Math.round(parseInt(e,16)/255*1e3)/1e3)).join(", ")})`:""}(e));const t=e.indexOf("("),r=e.substring(0,t);if(-1===["rgb","rgba","hsl","hsla","color"].indexOf(r))throw new Error((0,o.default)(9,e));let n,a=e.substring(t+1,e.length-1);if("color"===r){if(a=a.split(" "),n=a.shift(),4===a.length&&"/"===a[3].charAt(0)&&(a[3]=a[3].slice(1)),-1===["srgb","display-p3","a98-rgb","prophoto-rgb","rec-2020"].indexOf(n))throw new Error((0,o.default)(10,n))}else a=a.split(",");return a=a.map((e=>parseFloat(e))),{type:r,values:a,colorSpace:n}}function l(e){const{type:t,colorSpace:r}=e;let{values:n}=e;return-1!==t.indexOf("rgb")?n=n.map(((e,t)=>t<3?parseInt(e,10):e)):-1!==t.indexOf("hsl")&&(n[1]=`${n[1]}%`,n[2]=`${n[2]}%`),n=-1!==t.indexOf("color")?`${r} ${n.join(" ")}`:`${n.join(", ")}`,`${t}(${n})`}function c(e){let t="hsl"===(e=s(e)).type||"hsla"===e.type?s(function(e){e=s(e);const{values:t}=e,r=t[0],n=t[1]/100,o=t[2]/100,a=n*Math.min(o,1-o),i=(e,t=(e+r/30)%12)=>o-a*Math.max(Math.min(t-3,9-t,1),-1);let c="rgb";const u=[Math.round(255*i(0)),Math.round(255*i(8)),Math.round(255*i(4))];return"hsla"===e.type&&(c+="a",u.push(t[3])),l({type:c,values:u})}(e)).values:e.values;return t=t.map((t=>("color"!==e.type&&(t/=255),t<=.03928?t/12.92:((t+.055)/1.055)**2.4))),Number((.2126*t[0]+.7152*t[1]+.0722*t[2]).toFixed(3))}function u(e,t){if(e=s(e),t=i(t),-1!==e.type.indexOf("hsl"))e.values[2]*=1-t;else if(-1!==e.type.indexOf("rgb")||-1!==e.type.indexOf("color"))for(let r=0;r<3;r+=1)e.values[r]*=1-t;return l(e)}function d(e,t){if(e=s(e),t=i(t),-1!==e.type.indexOf("hsl"))e.values[2]+=(100-e.values[2])*t;else if(-1!==e.type.indexOf("rgb"))for(let r=0;r<3;r+=1)e.values[r]+=(255-e.values[r])*t;else if(-1!==e.type.indexOf("color"))for(let r=0;r<3;r+=1)e.values[r]+=(1-e.values[r])*t;return l(e)}},790:function(e){"use strict";e.exports=window.ReactJSXRuntime},1242:function(e,t){var r;function n(e,t){var r=[],n=0;function o(e){return r.push(e),t}function a(){return r[n++]}return{tokenize:function(t){return t.replace(e,o)},detokenize:function(e){return e.replace(new RegExp("("+t+")","g"),a)}}}r=new function(){var e="`TMP`",t="`COMMENT`",r="[^\\u0020-\\u007e]",o="(?:[0-9]*\\.[0-9]+|[0-9]+)",a="(?:em|ex|px|cm|mm|in|pt|pc|deg|rad|grad|ms|s|hz|khz|%)",i="direction\\s*:\\s*",s="['\"]?\\s*",l="(^|[^a-zA-Z])",c="\\/\\*\\!?\\s*@noflip\\s*\\*\\/",u="(?:(?:(?:\\\\[0-9a-f]{1,6})(?:\\r\\n|\\s)?)|\\\\[^\\r\\n\\f0-9a-f])",d="(?:[_a-z0-9-]|"+r+"|"+u+")",p=o+"(?:\\s*"+a+"|-?(?:[_a-z]|"+r+"|"+u+")"+d+"*)?",f="((?:-?"+p+")|(?:inherit|auto))",m="((?:-?"+p+")|(?:inherit|auto)|(?:calc\\((?:(?:(?:\\(|\\)|\\t| )|(?:-?"+o+"(?:\\s*"+a+")?)|(?:\\+|\\-|\\*|\\/)){3,})\\)))",h="(#?"+d+"+|(?:rgba?|hsla?)\\([ \\d.,%-]+\\))",g="(?:[!#$%&*-~]|"+r+"|"+u+")*?",v="(?![a-zA-Z])",b="(?!("+d+"|\\r?\\n|\\s|#|\\:|\\.|\\,|\\+|>|~|\\(|\\)|\\[|\\]|=|\\*=|~=|\\^=|'[^']*'|\"[^\"]*\"|"+t+")*?{)",y="(?!"+g+s+"\\))",x="(?="+g+s+"\\))",w="(\\s*(?:!important\\s*)?[;}])",k=/`TMP`/g,S=/`TMPLTR`/g,C=/`TMPRTL`/g,A=new RegExp("\\/\\*[^*]*\\*+([^\\/*][^*]*\\*+)*\\/","gi"),M=new RegExp("("+c+b+"[^;}]+;?)","gi"),R=new RegExp("("+c+"[^\\}]*?})","gi"),$=new RegExp("("+i+")ltr","gi"),E=new RegExp("("+i+")rtl","gi"),I=new RegExp(l+"(left)"+v+y+b,"gi"),O=new RegExp(l+"(right)"+v+y+b,"gi"),j=new RegExp(l+"(left)"+x,"gi"),T=new RegExp(l+"(right)"+x,"gi"),P=/(:dir\( *)ltr( *\))/g,B=/(:dir\( *)rtl( *\))/g,_=new RegExp(l+"(ltr)"+x,"gi"),z=new RegExp(l+"(rtl)"+x,"gi"),L=new RegExp(l+"([ns]?)e-resize","gi"),N=new RegExp(l+"([ns]?)w-resize","gi"),W=new RegExp("((?:margin|padding|border-width)\\s*:\\s*)"+m+"(\\s+)"+m+"(\\s+)"+m+"(\\s+)"+m+w,"gi"),F=new RegExp("((?:-color|border-style)\\s*:\\s*)"+h+"(\\s+)"+h+"(\\s+)"+h+"(\\s+)"+h+w,"gi"),D=new RegExp("(background(?:-position)?\\s*:\\s*(?:[^:;}\\s]+\\s+)*?)("+p+")","gi"),H=new RegExp("(background-position-x\\s*:\\s*)(-?"+o+"%)","gi"),V=new RegExp("(border-radius\\s*:\\s*)"+f+"(?:(?:\\s+"+f+")(?:\\s+"+f+")?(?:\\s+"+f+")?)?(?:(?:(?:\\s*\\/\\s*)"+f+")(?:\\s+"+f+")?(?:\\s+"+f+")?(?:\\s+"+f+")?)?"+w,"gi"),G=new RegExp("(box-shadow\\s*:\\s*(?:inset\\s*)?)"+f,"gi"),K=new RegExp("(text-shadow\\s*:\\s*)"+f+"(\\s*)"+h,"gi"),U=new RegExp("(text-shadow\\s*:\\s*)"+h+"(\\s*)"+f,"gi"),X=new RegExp("(text-shadow\\s*:\\s*)"+f,"gi"),Z=new RegExp("(transform\\s*:[^;}]*)(translateX\\s*\\(\\s*)"+f+"(\\s*\\))","gi"),Y=new RegExp("(transform\\s*:[^;}]*)(translate\\s*\\(\\s*)"+f+"((?:\\s*,\\s*"+f+"){0,2}\\s*\\))","gi");function q(e,t,r){var n,o;return"%"===r.slice(-1)&&(-1!==(n=r.indexOf("."))?(o=r.length-n-2,r=(r=100-parseFloat(r)).toFixed(o)+"%"):r=100-parseFloat(r)+"%"),t+r}function J(e){switch(e.length){case 4:e=[e[1],e[0],e[3],e[2]];break;case 3:e=[e[1],e[0],e[1],e[2]];break;case 2:e=[e[1],e[0]];break;case 1:e=[e[0]]}return e.join(" ")}function Q(e,t){var r=[].slice.call(arguments),n=r.slice(2,6).filter((function(e){return e})),o=r.slice(6,10).filter((function(e){return e})),a=r[10]||"";return t+(o.length?J(n)+" / "+J(o):J(n))+a}function ee(e){return 0===parseFloat(e)?e:"-"===e[0]?e.slice(1):"-"+e}function te(e,t,r){return t+ee(r)}function re(e,t,r,n,o){return t+r+ee(n)+o}function ne(e,t,r,n,o){return t+r+n+ee(o)}return{transform:function(r,o){var a=new n(M,"`NOFLIP_SINGLE`"),i=new n(R,"`NOFLIP_CLASS`"),s=new n(A,t);return r=s.tokenize(i.tokenize(a.tokenize(r.replace("`","%60")))),o.transformDirInUrl&&(r=r.replace(P,"$1`TMPLTR`$2").replace(B,"$1`TMPRTL`$2").replace(_,"$1"+e).replace(z,"$1ltr").replace(k,"rtl").replace(S,"ltr").replace(C,"rtl")),o.transformEdgeInUrl&&(r=r.replace(j,"$1"+e).replace(T,"$1left").replace(k,"right")),r=r.replace($,"$1"+e).replace(E,"$1ltr").replace(k,"rtl").replace(I,"$1"+e).replace(O,"$1left").replace(k,"right").replace(L,"$1$2"+e).replace(N,"$1$2e-resize").replace(k,"w-resize").replace(V,Q).replace(G,te).replace(K,ne).replace(U,ne).replace(X,te).replace(Z,re).replace(Y,re).replace(W,"$1$2$3$8$5$6$7$4$9").replace(F,"$1$2$3$8$5$6$7$4$9").replace(D,q).replace(H,q),a.detokenize(i.detokenize(s.detokenize(r)))}}},e.exports?t.transform=function(e,t,n){var o;return"object"==typeof t?o=t:(o={},"boolean"==typeof t&&(o.transformDirInUrl=t),"boolean"==typeof n&&(o.transformEdgeInUrl=n)),r.transform(e,o)}:"undefined"!=typeof window&&(window.cssjanus=r)},1287:function(e,t,r){"use strict";r.d(t,{i:function(){return i},s:function(){return a}});var n=r(1609),o=!!n.useInsertionEffect&&n.useInsertionEffect,a=o||function(e){return e()},i=o||n.useLayoutEffect},1317:function(e,t,r){"use strict";r.d(t,{A:function(){return s},Q:function(){return a}});var n=r(8168),o=r(1609);function a(e){if("object"!=typeof e||null===e)return!1;const t=Object.getPrototypeOf(e);return!(null!==t&&t!==Object.prototype&&null!==Object.getPrototypeOf(t)||Symbol.toStringTag in e||Symbol.iterator in e)}function i(e){if(o.isValidElement(e)||!a(e))return e;const t={};return Object.keys(e).forEach((r=>{t[r]=i(e[r])})),t}function s(e,t,r={clone:!0}){const l=r.clone?(0,n.A)({},e):e;return a(e)&&a(t)&&Object.keys(t).forEach((n=>{o.isValidElement(t[n])?l[n]=t[n]:a(t[n])&&Object.prototype.hasOwnProperty.call(e,n)&&a(e[n])?l[n]=s(e[n],t[n],r):r.clone?l[n]=a(t[n])?i(t[n]):t[n]:l[n]=t[n]})),l}},1568:function(e,t,r){"use strict";r.d(t,{A:function(){return ne}});var n=r(5047),o=Math.abs,a=String.fromCharCode,i=Object.assign;function s(e){return e.trim()}function l(e,t,r){return e.replace(t,r)}function c(e,t){return e.indexOf(t)}function u(e,t){return 0|e.charCodeAt(t)}function d(e,t,r){return e.slice(t,r)}function p(e){return e.length}function f(e){return e.length}function m(e,t){return t.push(e),e}var h=1,g=1,v=0,b=0,y=0,x="";function w(e,t,r,n,o,a,i){return{value:e,root:t,parent:r,type:n,props:o,children:a,line:h,column:g,length:i,return:""}}function k(e,t){return i(w("",null,null,"",null,null,0),e,{length:-e.length},t)}function S(){return y=b>0?u(x,--b):0,g--,10===y&&(g=1,h--),y}function C(){return y=b<v?u(x,b++):0,g++,10===y&&(g=1,h++),y}function A(){return u(x,b)}function M(){return b}function R(e,t){return d(x,e,t)}function $(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function E(e){return h=g=1,v=p(x=e),b=0,[]}function I(e){return x="",e}function O(e){return s(R(b-1,P(91===e?e+2:40===e?e+1:e)))}function j(e){for(;(y=A())&&y<33;)C();return $(e)>2||$(y)>3?"":" "}function T(e,t){for(;--t&&C()&&!(y<48||y>102||y>57&&y<65||y>70&&y<97););return R(e,M()+(t<6&&32==A()&&32==C()))}function P(e){for(;C();)switch(y){case e:return b;case 34:case 39:34!==e&&39!==e&&P(y);break;case 40:41===e&&P(e);break;case 92:C()}return b}function B(e,t){for(;C()&&e+y!==57&&(e+y!==84||47!==A()););return"/*"+R(t,b-1)+"*"+a(47===e?e:C())}function _(e){for(;!$(A());)C();return R(e,b)}var z="-ms-",L="-moz-",N="-webkit-",W="comm",F="rule",D="decl",H="@keyframes";function V(e,t){for(var r="",n=f(e),o=0;o<n;o++)r+=t(e[o],o,e,t)||"";return r}function G(e,t,r,n){switch(e.type){case"@layer":if(e.children.length)break;case"@import":case D:return e.return=e.return||e.value;case W:return"";case H:return e.return=e.value+"{"+V(e.children,n)+"}";case F:e.value=e.props.join(",")}return p(r=V(e.children,n))?e.return=e.value+"{"+r+"}":""}function K(e){return I(U("",null,null,null,[""],e=E(e),0,[0],e))}function U(e,t,r,n,o,i,s,d,f){for(var h=0,g=0,v=s,b=0,y=0,x=0,w=1,k=1,R=1,$=0,E="",I=o,P=i,z=n,L=E;k;)switch(x=$,$=C()){case 40:if(108!=x&&58==u(L,v-1)){-1!=c(L+=l(O($),"&","&\f"),"&\f")&&(R=-1);break}case 34:case 39:case 91:L+=O($);break;case 9:case 10:case 13:case 32:L+=j(x);break;case 92:L+=T(M()-1,7);continue;case 47:switch(A()){case 42:case 47:m(Z(B(C(),M()),t,r),f);break;default:L+="/"}break;case 123*w:d[h++]=p(L)*R;case 125*w:case 59:case 0:switch($){case 0:case 125:k=0;case 59+g:-1==R&&(L=l(L,/\f/g,"")),y>0&&p(L)-v&&m(y>32?Y(L+";",n,r,v-1):Y(l(L," ","")+";",n,r,v-2),f);break;case 59:L+=";";default:if(m(z=X(L,t,r,h,g,o,d,E,I=[],P=[],v),i),123===$)if(0===g)U(L,t,z,z,I,i,v,d,P);else switch(99===b&&110===u(L,3)?100:b){case 100:case 108:case 109:case 115:U(e,z,z,n&&m(X(e,z,z,0,0,o,d,E,o,I=[],v),P),o,P,v,d,n?I:P);break;default:U(L,z,z,z,[""],P,0,d,P)}}h=g=y=0,w=R=1,E=L="",v=s;break;case 58:v=1+p(L),y=x;default:if(w<1)if(123==$)--w;else if(125==$&&0==w++&&125==S())continue;switch(L+=a($),$*w){case 38:R=g>0?1:(L+="\f",-1);break;case 44:d[h++]=(p(L)-1)*R,R=1;break;case 64:45===A()&&(L+=O(C())),b=A(),g=v=p(E=L+=_(M())),$++;break;case 45:45===x&&2==p(L)&&(w=0)}}return i}function X(e,t,r,n,a,i,c,u,p,m,h){for(var g=a-1,v=0===a?i:[""],b=f(v),y=0,x=0,k=0;y<n;++y)for(var S=0,C=d(e,g+1,g=o(x=c[y])),A=e;S<b;++S)(A=s(x>0?v[S]+" "+C:l(C,/&\f/g,v[S])))&&(p[k++]=A);return w(e,t,r,0===a?F:u,p,m,h)}function Z(e,t,r){return w(e,t,r,W,a(y),d(e,2,-2),0)}function Y(e,t,r,n){return w(e,t,r,D,d(e,0,n),d(e,n+1,-1),n)}var q=function(e,t,r){for(var n=0,o=0;n=o,o=A(),38===n&&12===o&&(t[r]=1),!$(o);)C();return R(e,b)},J=new WeakMap,Q=function(e){if("rule"===e.type&&e.parent&&!(e.length<1)){for(var t=e.value,r=e.parent,n=e.column===r.column&&e.line===r.line;"rule"!==r.type;)if(!(r=r.parent))return;if((1!==e.props.length||58===t.charCodeAt(0)||J.get(r))&&!n){J.set(e,!0);for(var o=[],i=function(e,t){return I(function(e,t){var r=-1,n=44;do{switch($(n)){case 0:38===n&&12===A()&&(t[r]=1),e[r]+=q(b-1,t,r);break;case 2:e[r]+=O(n);break;case 4:if(44===n){e[++r]=58===A()?"&\f":"",t[r]=e[r].length;break}default:e[r]+=a(n)}}while(n=C());return e}(E(e),t))}(t,o),s=r.props,l=0,c=0;l<i.length;l++)for(var u=0;u<s.length;u++,c++)e.props[c]=o[l]?i[l].replace(/&\f/g,s[u]):s[u]+" "+i[l]}}},ee=function(e){if("decl"===e.type){var t=e.value;108===t.charCodeAt(0)&&98===t.charCodeAt(2)&&(e.return="",e.value="")}};function te(e,t){switch(function(e,t){return 45^u(e,0)?(((t<<2^u(e,0))<<2^u(e,1))<<2^u(e,2))<<2^u(e,3):0}(e,t)){case 5103:return N+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return N+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return N+e+L+e+z+e+e;case 6828:case 4268:return N+e+z+e+e;case 6165:return N+e+z+"flex-"+e+e;case 5187:return N+e+l(e,/(\w+).+(:[^]+)/,N+"box-$1$2"+z+"flex-$1$2")+e;case 5443:return N+e+z+"flex-item-"+l(e,/flex-|-self/,"")+e;case 4675:return N+e+z+"flex-line-pack"+l(e,/align-content|flex-|-self/,"")+e;case 5548:return N+e+z+l(e,"shrink","negative")+e;case 5292:return N+e+z+l(e,"basis","preferred-size")+e;case 6060:return N+"box-"+l(e,"-grow","")+N+e+z+l(e,"grow","positive")+e;case 4554:return N+l(e,/([^-])(transform)/g,"$1"+N+"$2")+e;case 6187:return l(l(l(e,/(zoom-|grab)/,N+"$1"),/(image-set)/,N+"$1"),e,"")+e;case 5495:case 3959:return l(e,/(image-set\([^]*)/,N+"$1$`$1");case 4968:return l(l(e,/(.+:)(flex-)?(.*)/,N+"box-pack:$3"+z+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+N+e+e;case 4095:case 3583:case 4068:case 2532:return l(e,/(.+)-inline(.+)/,N+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(p(e)-1-t>6)switch(u(e,t+1)){case 109:if(45!==u(e,t+4))break;case 102:return l(e,/(.+:)(.+)-([^]+)/,"$1"+N+"$2-$3$1"+L+(108==u(e,t+3)?"$3":"$2-$3"))+e;case 115:return~c(e,"stretch")?te(l(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(115!==u(e,t+1))break;case 6444:switch(u(e,p(e)-3-(~c(e,"!important")&&10))){case 107:return l(e,":",":"+N)+e;case 101:return l(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+N+(45===u(e,14)?"inline-":"")+"box$3$1"+N+"$2$3$1"+z+"$2box$3")+e}break;case 5936:switch(u(e,t+11)){case 114:return N+e+z+l(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return N+e+z+l(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return N+e+z+l(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return N+e+z+e+e}return e}var re=[function(e,t,r,n){if(e.length>-1&&!e.return)switch(e.type){case D:e.return=te(e.value,e.length);break;case H:return V([k(e,{value:l(e.value,"@","@"+N)})],n);case F:if(e.length)return function(e,t){return e.map(t).join("")}(e.props,(function(t){switch(function(e){return(e=/(::plac\w+|:read-\w+)/.exec(e))?e[0]:e}(t)){case":read-only":case":read-write":return V([k(e,{props:[l(t,/:(read-\w+)/,":-moz-$1")]})],n);case"::placeholder":return V([k(e,{props:[l(t,/:(plac\w+)/,":"+N+"input-$1")]}),k(e,{props:[l(t,/:(plac\w+)/,":-moz-$1")]}),k(e,{props:[l(t,/:(plac\w+)/,z+"input-$1")]})],n)}return""}))}}],ne=function(e){var t=e.key;if("css"===t){var r=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(r,(function(e){-1!==e.getAttribute("data-emotion").indexOf(" ")&&(document.head.appendChild(e),e.setAttribute("data-s",""))}))}var o,a,i=e.stylisPlugins||re,s={},l=[];o=e.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+t+' "]'),(function(e){for(var t=e.getAttribute("data-emotion").split(" "),r=1;r<t.length;r++)s[t[r]]=!0;l.push(e)}));var c,u,d,p,m=[G,(p=function(e){c.insert(e)},function(e){e.root||(e=e.return)&&p(e)})],h=(u=[Q,ee].concat(i,m),d=f(u),function(e,t,r,n){for(var o="",a=0;a<d;a++)o+=u[a](e,t,r,n)||"";return o});a=function(e,t,r,n){c=r,V(K(e?e+"{"+t.styles+"}":t.styles),h),n&&(g.inserted[t.name]=!0)};var g={key:t,sheet:new n.v({key:t,container:o,nonce:e.nonce,speedy:e.speedy,prepend:e.prepend,insertionPoint:e.insertionPoint}),nonce:e.nonce,inserted:s,registered:{},insert:a};return g.sheet.hydrate(l),g}},1609:function(e){"use strict";e.exports=window.React},3072:function(e,t){"use strict";var r="function"==typeof Symbol&&Symbol.for,n=r?Symbol.for("react.element"):60103,o=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,i=r?Symbol.for("react.strict_mode"):60108,s=r?Symbol.for("react.profiler"):60114,l=r?Symbol.for("react.provider"):60109,c=r?Symbol.for("react.context"):60110,u=r?Symbol.for("react.async_mode"):60111,d=r?Symbol.for("react.concurrent_mode"):60111,p=r?Symbol.for("react.forward_ref"):60112,f=r?Symbol.for("react.suspense"):60113,m=r?Symbol.for("react.suspense_list"):60120,h=r?Symbol.for("react.memo"):60115,g=r?Symbol.for("react.lazy"):60116,v=r?Symbol.for("react.block"):60121,b=r?Symbol.for("react.fundamental"):60117,y=r?Symbol.for("react.responder"):60118,x=r?Symbol.for("react.scope"):60119;function w(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case n:switch(e=e.type){case u:case d:case a:case s:case i:case f:return e;default:switch(e=e&&e.$$typeof){case c:case p:case g:case h:case l:return e;default:return t}}case o:return t}}}function k(e){return w(e)===d}t.AsyncMode=u,t.ConcurrentMode=d,t.ContextConsumer=c,t.ContextProvider=l,t.Element=n,t.ForwardRef=p,t.Fragment=a,t.Lazy=g,t.Memo=h,t.Portal=o,t.Profiler=s,t.StrictMode=i,t.Suspense=f,t.isAsyncMode=function(e){return k(e)||w(e)===u},t.isConcurrentMode=k,t.isContextConsumer=function(e){return w(e)===c},t.isContextProvider=function(e){return w(e)===l},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===n},t.isForwardRef=function(e){return w(e)===p},t.isFragment=function(e){return w(e)===a},t.isLazy=function(e){return w(e)===g},t.isMemo=function(e){return w(e)===h},t.isPortal=function(e){return w(e)===o},t.isProfiler=function(e){return w(e)===s},t.isStrictMode=function(e){return w(e)===i},t.isSuspense=function(e){return w(e)===f},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===d||e===s||e===i||e===f||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===g||e.$$typeof===h||e.$$typeof===l||e.$$typeof===c||e.$$typeof===p||e.$$typeof===b||e.$$typeof===y||e.$$typeof===x||e.$$typeof===v)},t.typeOf=w},3142:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return n.A},private_createBreakpoints:function(){return o.A},unstable_applyStyles:function(){return a.A}});var n=r(8749),o=r(8094),a=r(8336)},3174:function(e,t,r){"use strict";r.d(t,{J:function(){return g}});var n={animationIterationCount:1,aspectRatio:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,scale:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},o=r(6289),a=!1,i=/[A-Z]|^ms/g,s=/_EMO_([^_]+?)_([^]*?)_EMO_/g,l=function(e){return 45===e.charCodeAt(1)},c=function(e){return null!=e&&"boolean"!=typeof e},u=(0,o.A)((function(e){return l(e)?e:e.replace(i,"-$&").toLowerCase()})),d=function(e,t){switch(e){case"animation":case"animationName":if("string"==typeof t)return t.replace(s,(function(e,t,r){return m={name:t,styles:r,next:m},t}))}return 1===n[e]||l(e)||"number"!=typeof t||0===t?t:t+"px"},p="Component selectors can only be used in conjunction with @emotion/babel-plugin, the swc Emotion plugin, or another Emotion-aware compiler transform.";function f(e,t,r){if(null==r)return"";var n=r;if(void 0!==n.__emotion_styles)return n;switch(typeof r){case"boolean":return"";case"object":var o=r;if(1===o.anim)return m={name:o.name,styles:o.styles,next:m},o.name;var i=r;if(void 0!==i.styles){var s=i.next;if(void 0!==s)for(;void 0!==s;)m={name:s.name,styles:s.styles,next:m},s=s.next;return i.styles+";"}return function(e,t,r){var n="";if(Array.isArray(r))for(var o=0;o<r.length;o++)n+=f(e,t,r[o])+";";else for(var i in r){var s=r[i];if("object"!=typeof s){var l=s;null!=t&&void 0!==t[l]?n+=i+"{"+t[l]+"}":c(l)&&(n+=u(i)+":"+d(i,l)+";")}else{if("NO_COMPONENT_SELECTOR"===i&&a)throw new Error(p);if(!Array.isArray(s)||"string"!=typeof s[0]||null!=t&&void 0!==t[s[0]]){var m=f(e,t,s);switch(i){case"animation":case"animationName":n+=u(i)+":"+m+";";break;default:n+=i+"{"+m+"}"}}else for(var h=0;h<s.length;h++)c(s[h])&&(n+=u(i)+":"+d(i,s[h])+";")}}return n}(e,t,r);case"function":if(void 0!==e){var l=m,h=r(e);return m=l,f(e,t,h)}}var g=r;if(null==t)return g;var v=t[g];return void 0!==v?v:g}var m,h=/label:\s*([^\s;{]+)\s*(;|$)/g;function g(e,t,r){if(1===e.length&&"object"==typeof e[0]&&null!==e[0]&&void 0!==e[0].styles)return e[0];var n=!0,o="";m=void 0;var a=e[0];null==a||void 0===a.raw?(n=!1,o+=f(r,t,a)):o+=a[0];for(var i=1;i<e.length;i++)o+=f(r,t,e[i]),n&&(o+=a[i]);h.lastIndex=0;for(var s,l="";null!==(s=h.exec(o));)l+="-"+s[1];var c=function(e){for(var t,r=0,n=0,o=e.length;o>=4;++n,o-=4)t=1540483477*(65535&(t=255&e.charCodeAt(n)|(255&e.charCodeAt(++n))<<8|(255&e.charCodeAt(++n))<<16|(255&e.charCodeAt(++n))<<24))+(59797*(t>>>16)<<16),r=1540483477*(65535&(t^=t>>>24))+(59797*(t>>>16)<<16)^1540483477*(65535&r)+(59797*(r>>>16)<<16);switch(o){case 3:r^=(255&e.charCodeAt(n+2))<<16;case 2:r^=(255&e.charCodeAt(n+1))<<8;case 1:r=1540483477*(65535&(r^=255&e.charCodeAt(n)))+(59797*(r>>>16)<<16)}return(((r=1540483477*(65535&(r^=r>>>13))+(59797*(r>>>16)<<16))^r>>>15)>>>0).toString(36)}(o)+l;return{name:c,styles:o,next:m}}},3404:function(e,t,r){"use strict";e.exports=r(3072)},3571:function(e,t,r){"use strict";r.d(t,{k:function(){return l}});var n=r(3967),o=r(4620),a=r(6481),i=r(9452),s=r(4188);function l(){function e(e,t,r,o){const s={[e]:t,theme:r},l=o[e];if(!l)return{[e]:t};const{cssProperty:c=e,themeKey:u,transform:d,style:p}=l;if(null==t)return null;if("typography"===u&&"inherit"===t)return{[e]:t};const f=(0,a.Yn)(r,u)||{};return p?p(s):(0,i.NI)(s,t,(t=>{let r=(0,a.BO)(f,d,t);return t===r&&"string"==typeof t&&(r=(0,a.BO)(f,d,`${e}${"default"===t?"":(0,n.A)(t)}`,t)),!1===c?r:{[c]:r}}))}return function t(r){var n;const{sx:a,theme:l={}}=r||{};if(!a)return null;const c=null!=(n=l.unstable_sxConfig)?n:s.A;function u(r){let n=r;if("function"==typeof r)n=r(l);else if("object"!=typeof r)return r;if(!n)return null;const a=(0,i.EU)(l.breakpoints),s=Object.keys(a);let u=a;return Object.keys(n).forEach((r=>{const a="function"==typeof(s=n[r])?s(l):s;var s;if(null!=a)if("object"==typeof a)if(c[r])u=(0,o.A)(u,e(r,a,l,c));else{const e=(0,i.NI)({theme:l},a,(e=>({[r]:e})));!function(...e){const t=e.reduce(((e,t)=>e.concat(Object.keys(t))),[]),r=new Set(t);return e.every((e=>r.size===Object.keys(e).length))}(e,a)?u=(0,o.A)(u,e):u[r]=t({sx:a,theme:l})}else u=(0,o.A)(u,e(r,a,l,c))})),(0,i.vf)(s,u)}return Array.isArray(a)?a.map(u):u(a)}}const c=l();c.filterProps=["sx"],t.A=c},3857:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return n.A},extendSxProp:function(){return o.A},unstable_createStyleFunctionSx:function(){return n.k},unstable_defaultSxConfig:function(){return a.A}});var n=r(3571),o=r(9599),a=r(4188)},3967:function(e,t,r){"use strict";r.d(t,{A:function(){return o}});var n=r(9453);function o(e){if("string"!=typeof e)throw new Error((0,n.A)(7));return e.charAt(0).toUpperCase()+e.slice(1)}},4146:function(e,t,r){"use strict";var n=r(3404),o={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},a={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},i={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};function l(e){return n.isMemo(e)?i:s[e.$$typeof]||o}s[n.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},s[n.Memo]=i;var c=Object.defineProperty,u=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,p=Object.getOwnPropertyDescriptor,f=Object.getPrototypeOf,m=Object.prototype;e.exports=function e(t,r,n){if("string"!=typeof r){if(m){var o=f(r);o&&o!==m&&e(t,o,n)}var i=u(r);d&&(i=i.concat(d(r)));for(var s=l(t),h=l(r),g=0;g<i.length;++g){var v=i[g];if(!(a[v]||n&&n[v]||h&&h[v]||s&&s[v])){var b=p(r,v);try{c(t,v,b)}catch(e){}}}}return t}},4188:function(e,t,r){"use strict";r.d(t,{A:function(){return P}});var n=r(8248),o=r(6481),a=r(4620),i=function(...e){const t=e.reduce(((e,t)=>(t.filterProps.forEach((r=>{e[r]=t})),e)),{}),r=e=>Object.keys(e).reduce(((r,n)=>t[n]?(0,a.A)(r,t[n](e)):r),{});return r.propTypes={},r.filterProps=e.reduce(((e,t)=>e.concat(t.filterProps)),[]),r},s=r(9452);function l(e){return"number"!=typeof e?e:`${e}px solid`}function c(e,t){return(0,o.Ay)({prop:e,themeKey:"borders",transform:t})}const u=c("border",l),d=c("borderTop",l),p=c("borderRight",l),f=c("borderBottom",l),m=c("borderLeft",l),h=c("borderColor"),g=c("borderTopColor"),v=c("borderRightColor"),b=c("borderBottomColor"),y=c("borderLeftColor"),x=c("outline",l),w=c("outlineColor"),k=e=>{if(void 0!==e.borderRadius&&null!==e.borderRadius){const t=(0,n.MA)(e.theme,"shape.borderRadius",4,"borderRadius"),r=e=>({borderRadius:(0,n._W)(t,e)});return(0,s.NI)(e,e.borderRadius,r)}return null};k.propTypes={},k.filterProps=["borderRadius"],i(u,d,p,f,m,h,g,v,b,y,k,x,w);const S=e=>{if(void 0!==e.gap&&null!==e.gap){const t=(0,n.MA)(e.theme,"spacing",8,"gap"),r=e=>({gap:(0,n._W)(t,e)});return(0,s.NI)(e,e.gap,r)}return null};S.propTypes={},S.filterProps=["gap"];const C=e=>{if(void 0!==e.columnGap&&null!==e.columnGap){const t=(0,n.MA)(e.theme,"spacing",8,"columnGap"),r=e=>({columnGap:(0,n._W)(t,e)});return(0,s.NI)(e,e.columnGap,r)}return null};C.propTypes={},C.filterProps=["columnGap"];const A=e=>{if(void 0!==e.rowGap&&null!==e.rowGap){const t=(0,n.MA)(e.theme,"spacing",8,"rowGap"),r=e=>({rowGap:(0,n._W)(t,e)});return(0,s.NI)(e,e.rowGap,r)}return null};function M(e,t){return"grey"===t?t:e}function R(e){return e<=1&&0!==e?100*e+"%":e}A.propTypes={},A.filterProps=["rowGap"],i(S,C,A,(0,o.Ay)({prop:"gridColumn"}),(0,o.Ay)({prop:"gridRow"}),(0,o.Ay)({prop:"gridAutoFlow"}),(0,o.Ay)({prop:"gridAutoColumns"}),(0,o.Ay)({prop:"gridAutoRows"}),(0,o.Ay)({prop:"gridTemplateColumns"}),(0,o.Ay)({prop:"gridTemplateRows"}),(0,o.Ay)({prop:"gridTemplateAreas"}),(0,o.Ay)({prop:"gridArea"})),i((0,o.Ay)({prop:"color",themeKey:"palette",transform:M}),(0,o.Ay)({prop:"bgcolor",cssProperty:"backgroundColor",themeKey:"palette",transform:M}),(0,o.Ay)({prop:"backgroundColor",themeKey:"palette",transform:M}));const $=(0,o.Ay)({prop:"width",transform:R}),E=e=>{if(void 0!==e.maxWidth&&null!==e.maxWidth){const t=t=>{var r,n;const o=(null==(r=e.theme)||null==(r=r.breakpoints)||null==(r=r.values)?void 0:r[t])||s.zu[t];return o?"px"!==(null==(n=e.theme)||null==(n=n.breakpoints)?void 0:n.unit)?{maxWidth:`${o}${e.theme.breakpoints.unit}`}:{maxWidth:o}:{maxWidth:R(t)}};return(0,s.NI)(e,e.maxWidth,t)}return null};E.filterProps=["maxWidth"];const I=(0,o.Ay)({prop:"minWidth",transform:R}),O=(0,o.Ay)({prop:"height",transform:R}),j=(0,o.Ay)({prop:"maxHeight",transform:R}),T=(0,o.Ay)({prop:"minHeight",transform:R});(0,o.Ay)({prop:"size",cssProperty:"width",transform:R}),(0,o.Ay)({prop:"size",cssProperty:"height",transform:R}),i($,E,I,O,j,T,(0,o.Ay)({prop:"boxSizing"}));var P={border:{themeKey:"borders",transform:l},borderTop:{themeKey:"borders",transform:l},borderRight:{themeKey:"borders",transform:l},borderBottom:{themeKey:"borders",transform:l},borderLeft:{themeKey:"borders",transform:l},borderColor:{themeKey:"palette"},borderTopColor:{themeKey:"palette"},borderRightColor:{themeKey:"palette"},borderBottomColor:{themeKey:"palette"},borderLeftColor:{themeKey:"palette"},outline:{themeKey:"borders",transform:l},outlineColor:{themeKey:"palette"},borderRadius:{themeKey:"shape.borderRadius",style:k},color:{themeKey:"palette",transform:M},bgcolor:{themeKey:"palette",cssProperty:"backgroundColor",transform:M},backgroundColor:{themeKey:"palette",transform:M},p:{style:n.Ms},pt:{style:n.Ms},pr:{style:n.Ms},pb:{style:n.Ms},pl:{style:n.Ms},px:{style:n.Ms},py:{style:n.Ms},padding:{style:n.Ms},paddingTop:{style:n.Ms},paddingRight:{style:n.Ms},paddingBottom:{style:n.Ms},paddingLeft:{style:n.Ms},paddingX:{style:n.Ms},paddingY:{style:n.Ms},paddingInline:{style:n.Ms},paddingInlineStart:{style:n.Ms},paddingInlineEnd:{style:n.Ms},paddingBlock:{style:n.Ms},paddingBlockStart:{style:n.Ms},paddingBlockEnd:{style:n.Ms},m:{style:n.Lc},mt:{style:n.Lc},mr:{style:n.Lc},mb:{style:n.Lc},ml:{style:n.Lc},mx:{style:n.Lc},my:{style:n.Lc},margin:{style:n.Lc},marginTop:{style:n.Lc},marginRight:{style:n.Lc},marginBottom:{style:n.Lc},marginLeft:{style:n.Lc},marginX:{style:n.Lc},marginY:{style:n.Lc},marginInline:{style:n.Lc},marginInlineStart:{style:n.Lc},marginInlineEnd:{style:n.Lc},marginBlock:{style:n.Lc},marginBlockStart:{style:n.Lc},marginBlockEnd:{style:n.Lc},displayPrint:{cssProperty:!1,transform:e=>({"@media print":{display:e}})},display:{},overflow:{},textOverflow:{},visibility:{},whiteSpace:{},flexBasis:{},flexDirection:{},flexWrap:{},justifyContent:{},alignItems:{},alignContent:{},order:{},flex:{},flexGrow:{},flexShrink:{},alignSelf:{},justifyItems:{},justifySelf:{},gap:{style:S},rowGap:{style:A},columnGap:{style:C},gridColumn:{},gridRow:{},gridAutoFlow:{},gridAutoColumns:{},gridAutoRows:{},gridTemplateColumns:{},gridTemplateRows:{},gridTemplateAreas:{},gridArea:{},position:{},zIndex:{themeKey:"zIndex"},top:{},right:{},bottom:{},left:{},boxShadow:{themeKey:"shadows"},width:{transform:R},maxWidth:{style:E},minWidth:{transform:R},height:{transform:R},maxHeight:{transform:R},minHeight:{transform:R},boxSizing:{},fontFamily:{themeKey:"typography"},fontSize:{themeKey:"typography"},fontStyle:{themeKey:"typography"},fontWeight:{themeKey:"typography"},letterSpacing:{},textTransform:{},lineHeight:{},textAlign:{},typography:{cssProperty:!1,themeKey:"typography"}}},4239:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return n.A},isPlainObject:function(){return n.Q}});var n=r(1317)},4620:function(e,t,r){"use strict";var n=r(1317);t.A=function(e,t){return t?(0,n.A)(e,t,{clone:!1}):e}},4634:function(e){function t(){return e.exports=t=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,t.apply(null,arguments)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},4893:function(e){e.exports=function(e,t){if(null==e)return{};var r={};for(var n in e)if({}.hasOwnProperty.call(e,n)){if(-1!==t.indexOf(n))continue;r[n]=e[n]}return r},e.exports.__esModule=!0,e.exports.default=e.exports},4994:function(e){e.exports=function(e){return e&&e.__esModule?e:{default:e}},e.exports.__esModule=!0,e.exports.default=e.exports},5047:function(e,t,r){"use strict";r.d(t,{v:function(){return n}});var n=function(){function e(e){var t=this;this._insertTag=function(e){var r;r=0===t.tags.length?t.insertionPoint?t.insertionPoint.nextSibling:t.prepend?t.container.firstChild:t.before:t.tags[t.tags.length-1].nextSibling,t.container.insertBefore(e,r),t.tags.push(e)},this.isSpeedy=void 0===e.speedy||e.speedy,this.tags=[],this.ctr=0,this.nonce=e.nonce,this.key=e.key,this.container=e.container,this.prepend=e.prepend,this.insertionPoint=e.insertionPoint,this.before=null}var t=e.prototype;return t.hydrate=function(e){e.forEach(this._insertTag)},t.insert=function(e){this.ctr%(this.isSpeedy?65e3:1)==0&&this._insertTag(function(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key),void 0!==e.nonce&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),t.setAttribute("data-s",""),t}(this));var t=this.tags[this.tags.length-1];if(this.isSpeedy){var r=function(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}(t);try{r.insertRule(e,r.cssRules.length)}catch(e){}}else t.appendChild(document.createTextNode(e));this.ctr++},t.flush=function(){this.tags.forEach((function(e){var t;return null==(t=e.parentNode)?void 0:t.removeChild(e)})),this.tags=[],this.ctr=0},e}()},5338:function(e,t,r){"use strict";var n=r(5795);t.H=n.createRoot,n.hydrateRoot},5795:function(e){"use strict";e.exports=window.ReactDOM},6289:function(e,t,r){"use strict";function n(e){var t=Object.create(null);return function(r){return void 0===t[r]&&(t[r]=e(r)),t[r]}}r.d(t,{A:function(){return n}})},6461:function(e,t,r){"use strict";var n=r(4994);t.Ay=function(e={}){const{themeId:t,defaultTheme:r=h,rootShouldForwardProp:n=m,slotShouldForwardProp:l=m}=e,u=e=>(0,c.default)((0,o.default)({},e,{theme:v((0,o.default)({},e,{defaultTheme:r,themeId:t}))}));return u.__mui_systemSx=!0,(e,c={})=>{(0,i.internal_processStyles)(e,(e=>e.filter((e=>!(null!=e&&e.__mui_systemSx)))));const{name:d,slot:f,skipVariantsResolver:h,skipSx:x,overridesResolver:w=b(g(f))}=c,k=(0,a.default)(c,p),S=void 0!==h?h:f&&"Root"!==f&&"root"!==f||!1,C=x||!1;let A=m;"Root"===f||"root"===f?A=n:f?A=l:function(e){return"string"==typeof e&&e.charCodeAt(0)>96}(e)&&(A=void 0);const M=(0,i.default)(e,(0,o.default)({shouldForwardProp:A,label:void 0},k)),R=e=>"function"==typeof e&&e.__emotion_real!==e||(0,s.isPlainObject)(e)?n=>y(e,(0,o.default)({},n,{theme:v({theme:n.theme,defaultTheme:r,themeId:t})})):e,$=(n,...a)=>{let i=R(n);const s=a?a.map(R):[];d&&w&&s.push((e=>{const n=v((0,o.default)({},e,{defaultTheme:r,themeId:t}));if(!n.components||!n.components[d]||!n.components[d].styleOverrides)return null;const a=n.components[d].styleOverrides,i={};return Object.entries(a).forEach((([t,r])=>{i[t]=y(r,(0,o.default)({},e,{theme:n}))})),w(e,i)})),d&&!S&&s.push((e=>{var n;const a=v((0,o.default)({},e,{defaultTheme:r,themeId:t}));return y({variants:null==a||null==(n=a.components)||null==(n=n[d])?void 0:n.variants},(0,o.default)({},e,{theme:a}))})),C||s.push(u);const l=s.length-a.length;if(Array.isArray(n)&&l>0){const e=new Array(l).fill("");i=[...n,...e],i.raw=[...n.raw,...e]}const c=M(i,...s);return e.muiName&&(c.muiName=e.muiName),c};return M.withConfig&&($.withConfig=M.withConfig),$}};var o=n(r(4634)),a=n(r(4893)),i=function(e,t){if(e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var r=f(t);if(r&&r.has(e))return r.get(e);var n={__proto__:null},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in e)if("default"!==a&&Object.prototype.hasOwnProperty.call(e,a)){var i=o?Object.getOwnPropertyDescriptor(e,a):null;i&&(i.get||i.set)?Object.defineProperty(n,a,i):n[a]=e[a]}return n.default=e,r&&r.set(e,n),n}(r(9462)),s=r(4239),l=(n(r(7149)),n(r(7320)),n(r(3142))),c=n(r(3857));const u=["ownerState"],d=["variants"],p=["name","slot","skipVariantsResolver","skipSx","overridesResolver"];function f(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,r=new WeakMap;return(f=function(e){return e?r:t})(e)}function m(e){return"ownerState"!==e&&"theme"!==e&&"sx"!==e&&"as"!==e}const h=(0,l.default)(),g=e=>e?e.charAt(0).toLowerCase()+e.slice(1):e;function v({defaultTheme:e,theme:t,themeId:r}){return n=t,0===Object.keys(n).length?e:t[r]||t;var n}function b(e){return e?(t,r)=>r[e]:null}function y(e,t){let{ownerState:r}=t,n=(0,a.default)(t,u);const i="function"==typeof e?e((0,o.default)({ownerState:r},n)):e;if(Array.isArray(i))return i.flatMap((e=>y(e,(0,o.default)({ownerState:r},n))));if(i&&"object"==typeof i&&Array.isArray(i.variants)){const{variants:e=[]}=i;let t=(0,a.default)(i,d);return e.forEach((e=>{let a=!0;"function"==typeof e.props?a=e.props((0,o.default)({ownerState:r},n,r)):Object.keys(e.props).forEach((t=>{(null==r?void 0:r[t])!==e.props[t]&&n[t]!==e.props[t]&&(a=!1)})),a&&(Array.isArray(t)||(t=[t]),t.push("function"==typeof e.style?e.style((0,o.default)({ownerState:r},n,r)):e.style))})),t}return i}},6481:function(e,t,r){"use strict";r.d(t,{BO:function(){return i},Yn:function(){return a}});var n=r(3967),o=r(9452);function a(e,t,r=!0){if(!t||"string"!=typeof t)return null;if(e&&e.vars&&r){const r=`vars.${t}`.split(".").reduce(((e,t)=>e&&e[t]?e[t]:null),e);if(null!=r)return r}return t.split(".").reduce(((e,t)=>e&&null!=e[t]?e[t]:null),e)}function i(e,t,r,n=r){let o;return o="function"==typeof e?e(r):Array.isArray(e)?e[r]||n:a(e,r)||n,t&&(o=t(o,n,e)),o}t.Ay=function(e){const{prop:t,cssProperty:r=e.prop,themeKey:s,transform:l}=e,c=e=>{if(null==e[t])return null;const c=e[t],u=a(e.theme,s)||{};return(0,o.NI)(e,c,(e=>{let o=i(u,l,e);return e===o&&"string"==typeof e&&(o=i(u,l,`${t}${"default"===e?"":(0,n.A)(e)}`,e)),!1===r?o:{[r]:o}}))};return c.propTypes={},c.filterProps=[t],c}},6774:function(e,t){"use strict";Symbol.for("react.transitional.element"),Symbol.for("react.portal"),Symbol.for("react.fragment"),Symbol.for("react.strict_mode"),Symbol.for("react.profiler");Symbol.for("react.provider");Symbol.for("react.consumer"),Symbol.for("react.context");var r=Symbol.for("react.forward_ref"),n=(Symbol.for("react.suspense"),Symbol.for("react.suspense_list"),Symbol.for("react.memo"));Symbol.for("react.lazy"),Symbol.for("react.offscreen"),Symbol.for("react.client.reference");t.vM=r,t.lD=n},7149:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return n.A}});var n=r(3967)},7320:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return l},getFunctionName:function(){return a}});var n=r(6774);const o=/^\s*function(?:\s|\s*\/\*.*\*\/\s*)+([^(\s/]*)\s*/;function a(e){const t=`${e}`.match(o);return t&&t[1]||""}function i(e,t=""){return e.displayName||e.name||a(e)||t}function s(e,t,r){const n=i(t);return e.displayName||(""!==n?`${r}(${n})`:r)}function l(e){if(null!=e){if("string"==typeof e)return e;if("function"==typeof e)return i(e,"Component");if("object"==typeof e)switch(e.$$typeof){case n.vM:return s(e,e.render,"ForwardRef");case n.lD:return s(e,e.type,"memo");default:return}}}},7437:function(e,t,r){"use strict";r.d(t,{AH:function(){return c},i7:function(){return u},mL:function(){return l}});var n=r(9214),o=r(1609),a=r(41),i=r(1287),s=r(3174),l=(r(1568),r(4146),(0,n.w)((function(e,t){var r=e.styles,l=(0,s.J)([r],void 0,o.useContext(n.T)),c=o.useRef();return(0,i.i)((function(){var e=t.key+"-global",r=new t.sheet.constructor({key:e,nonce:t.sheet.nonce,container:t.sheet.container,speedy:t.sheet.isSpeedy}),n=!1,o=document.querySelector('style[data-emotion="'+e+" "+l.name+'"]');return t.sheet.tags.length&&(r.before=t.sheet.tags[0]),null!==o&&(n=!0,o.setAttribute("data-emotion",e),r.hydrate([o])),c.current=[r,n],function(){r.flush()}}),[t]),(0,i.i)((function(){var e=c.current,r=e[0];if(e[1])e[1]=!1;else{if(void 0!==l.next&&(0,a.sk)(t,l.next,!0),r.tags.length){var n=r.tags[r.tags.length-1].nextElementSibling;r.before=n,r.flush()}t.insert("",l,r,!1)}}),[t,l.name]),null})));function c(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return(0,s.J)(t)}var u=function(){var e=c.apply(void 0,arguments),t="animation-"+e.name;return{name:t,styles:"@keyframes "+t+"{"+e.styles+"}",anim:1,toString:function(){return"_EMO_"+this.name+"_"+this.styles+"_EMO_"}}}},8094:function(e,t,r){"use strict";r.d(t,{A:function(){return s}});var n=r(8587),o=r(8168);const a=["values","unit","step"],i=e=>{const t=Object.keys(e).map((t=>({key:t,val:e[t]})))||[];return t.sort(((e,t)=>e.val-t.val)),t.reduce(((e,t)=>(0,o.A)({},e,{[t.key]:t.val})),{})};function s(e){const{values:t={xs:0,sm:600,md:900,lg:1200,xl:1536},unit:r="px",step:s=5}=e,l=(0,n.A)(e,a),c=i(t),u=Object.keys(c);function d(e){return`@media (min-width:${"number"==typeof t[e]?t[e]:e}${r})`}function p(e){return`@media (max-width:${("number"==typeof t[e]?t[e]:e)-s/100}${r})`}function f(e,n){const o=u.indexOf(n);return`@media (min-width:${"number"==typeof t[e]?t[e]:e}${r}) and (max-width:${(-1!==o&&"number"==typeof t[u[o]]?t[u[o]]:n)-s/100}${r})`}return(0,o.A)({keys:u,values:c,up:d,down:p,between:f,only:function(e){return u.indexOf(e)+1<u.length?f(e,u[u.indexOf(e)+1]):d(e)},not:function(e){const t=u.indexOf(e);return 0===t?d(u[1]):t===u.length-1?p(u[t]):f(e,u[u.indexOf(e)+1]).replace("@media","@media not all and")},unit:r},l)}},8168:function(e,t,r){"use strict";function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},n.apply(null,arguments)}r.d(t,{A:function(){return n}})},8248:function(e,t,r){"use strict";r.d(t,{LX:function(){return m},MA:function(){return f},_W:function(){return h},Lc:function(){return v},Ms:function(){return b}});var n=r(9452),o=r(6481),a=r(4620);const i={m:"margin",p:"padding"},s={t:"Top",r:"Right",b:"Bottom",l:"Left",x:["Left","Right"],y:["Top","Bottom"]},l={marginX:"mx",marginY:"my",paddingX:"px",paddingY:"py"},c=function(){const e={};return t=>(void 0===e[t]&&(e[t]=(e=>{if(e.length>2){if(!l[e])return[e];e=l[e]}const[t,r]=e.split(""),n=i[t],o=s[r]||"";return Array.isArray(o)?o.map((e=>n+e)):[n+o]})(t)),e[t])}(),u=["m","mt","mr","mb","ml","mx","my","margin","marginTop","marginRight","marginBottom","marginLeft","marginX","marginY","marginInline","marginInlineStart","marginInlineEnd","marginBlock","marginBlockStart","marginBlockEnd"],d=["p","pt","pr","pb","pl","px","py","padding","paddingTop","paddingRight","paddingBottom","paddingLeft","paddingX","paddingY","paddingInline","paddingInlineStart","paddingInlineEnd","paddingBlock","paddingBlockStart","paddingBlockEnd"],p=[...u,...d];function f(e,t,r,n){var a;const i=null!=(a=(0,o.Yn)(e,t,!1))?a:r;return"number"==typeof i?e=>"string"==typeof e?e:i*e:Array.isArray(i)?e=>"string"==typeof e?e:i[e]:"function"==typeof i?i:()=>{}}function m(e){return f(e,"spacing",8)}function h(e,t){if("string"==typeof t||null==t)return t;const r=e(Math.abs(t));return t>=0?r:"number"==typeof r?-r:`-${r}`}function g(e,t){const r=m(e.theme);return Object.keys(e).map((o=>function(e,t,r,o){if(-1===t.indexOf(r))return null;const a=function(e,t){return r=>e.reduce(((e,n)=>(e[n]=h(t,r),e)),{})}(c(r),o),i=e[r];return(0,n.NI)(e,i,a)}(e,t,o,r))).reduce(a.A,{})}function v(e){return g(e,u)}function b(e){return g(e,d)}function y(e){return g(e,p)}v.propTypes={},v.filterProps=u,b.propTypes={},b.filterProps=d,y.propTypes={},y.filterProps=p},8336:function(e,t,r){"use strict";function n(e,t){const r=this;if(r.vars&&"function"==typeof r.getColorSchemeSelector){const n=r.getColorSchemeSelector(e).replace(/(\[[^\]]+\])/,"*:where($1)");return{[n]:t}}return r.palette.mode===e?t:{}}r.d(t,{A:function(){return n}})},8586:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return n.A}});var n=r(725)},8587:function(e,t,r){"use strict";function n(e,t){if(null==e)return{};var r={};for(var n in e)if({}.hasOwnProperty.call(e,n)){if(-1!==t.indexOf(n))continue;r[n]=e[n]}return r}r.d(t,{A:function(){return n}})},8749:function(e,t,r){"use strict";r.d(t,{A:function(){return f}});var n=r(8168),o=r(8587),a=r(1317),i=r(8094),s={borderRadius:4},l=r(8248),c=r(3571),u=r(4188),d=r(8336);const p=["breakpoints","palette","spacing","shape"];var f=function(e={},...t){const{breakpoints:r={},palette:f={},spacing:m,shape:h={}}=e,g=(0,o.A)(e,p),v=(0,i.A)(r),b=function(e=8){if(e.mui)return e;const t=(0,l.LX)({spacing:e}),r=(...e)=>(0===e.length?[1]:e).map((e=>{const r=t(e);return"number"==typeof r?`${r}px`:r})).join(" ");return r.mui=!0,r}(m);let y=(0,a.A)({breakpoints:v,direction:"ltr",components:{},palette:(0,n.A)({mode:"light"},f),spacing:b,shape:(0,n.A)({},s,h)},g);return y.applyStyles=d.A,y=t.reduce(((e,t)=>(0,a.A)(e,t)),y),y.unstable_sxConfig=(0,n.A)({},u.A,null==g?void 0:g.unstable_sxConfig),y.unstable_sx=function(e){return(0,c.A)({sx:e,theme:this})},y}},8944:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return n.A}});var n=r(9453)},9214:function(e,t,r){"use strict";r.d(t,{C:function(){return i},T:function(){return l},w:function(){return s}});var n=r(1609),o=r(1568),a=(r(3174),r(1287),n.createContext("undefined"!=typeof HTMLElement?(0,o.A)({key:"css"}):null)),i=a.Provider,s=function(e){return(0,n.forwardRef)((function(t,r){var o=(0,n.useContext)(a);return e(t,o,r)}))},l=n.createContext({})},9452:function(e,t,r){"use strict";r.d(t,{EU:function(){return s},NI:function(){return i},iZ:function(){return c},kW:function(){return u},vf:function(){return l},zu:function(){return o}});var n=r(1317);const o={xs:0,sm:600,md:900,lg:1200,xl:1536},a={keys:["xs","sm","md","lg","xl"],up:e=>`@media (min-width:${o[e]}px)`};function i(e,t,r){const n=e.theme||{};if(Array.isArray(t)){const e=n.breakpoints||a;return t.reduce(((n,o,a)=>(n[e.up(e.keys[a])]=r(t[a]),n)),{})}if("object"==typeof t){const e=n.breakpoints||a;return Object.keys(t).reduce(((n,a)=>{if(-1!==Object.keys(e.values||o).indexOf(a))n[e.up(a)]=r(t[a],a);else{const e=a;n[e]=t[e]}return n}),{})}return r(t)}function s(e={}){var t;return(null==(t=e.keys)?void 0:t.reduce(((t,r)=>(t[e.up(r)]={},t)),{}))||{}}function l(e,t){return e.reduce(((e,t)=>{const r=e[t];return(!r||0===Object.keys(r).length)&&delete e[t],e}),t)}function c(e,...t){const r=s(e),o=[r,...t].reduce(((e,t)=>(0,n.A)(e,t)),{});return l(Object.keys(r),o)}function u({values:e,breakpoints:t,base:r}){const n=r||function(e,t){if("object"!=typeof e)return{};const r={},n=Object.keys(t);return Array.isArray(e)?n.forEach(((t,n)=>{n<e.length&&(r[t]=!0)})):n.forEach((t=>{null!=e[t]&&(r[t]=!0)})),r}(e,t),o=Object.keys(n);if(0===o.length)return e;let a;return o.reduce(((t,r,n)=>(Array.isArray(e)?(t[r]=null!=e[n]?e[n]:e[a],a=n):"object"==typeof e?(t[r]=null!=e[r]?e[r]:e[a],a=r):t[r]=e,t)),{})}},9453:function(e,t,r){"use strict";function n(e){let t="https://mui.com/production-error/?code="+e;for(let e=1;e<arguments.length;e+=1)t+="&args[]="+encodeURIComponent(arguments[e]);return"Minified MUI error #"+e+"; visit "+t+" for the full message."}r.d(t,{A:function(){return n}})},9462:function(e,t,r){"use strict";r.r(t),r.d(t,{GlobalStyles:function(){return ke},StyledEngineProvider:function(){return we},ThemeContext:function(){return l.T},css:function(){return b.AH},default:function(){return Se},internal_processStyles:function(){return Ce},keyframes:function(){return b.i7}});var n=r(8168),o=r(1609),a=r(6289),i=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,s=(0,a.A)((function(e){return i.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),l=r(9214),c=r(41),u=r(3174),d=r(1287),p=s,f=function(e){return"theme"!==e},m=function(e){return"string"==typeof e&&e.charCodeAt(0)>96?p:f},h=function(e,t,r){var n;if(t){var o=t.shouldForwardProp;n=e.__emotion_forwardProp&&o?function(t){return e.__emotion_forwardProp(t)&&o(t)}:o}return"function"!=typeof n&&r&&(n=e.__emotion_forwardProp),n},g=function(e){var t=e.cache,r=e.serialized,n=e.isStringTag;return(0,c.SF)(t,r,n),(0,d.s)((function(){return(0,c.sk)(t,r,n)})),null},v=function e(t,r){var a,i,s=t.__emotion_real===t,d=s&&t.__emotion_base||t;void 0!==r&&(a=r.label,i=r.target);var p=h(t,r,s),f=p||m(d),v=!f("as");return function(){var b=arguments,y=s&&void 0!==t.__emotion_styles?t.__emotion_styles.slice(0):[];if(void 0!==a&&y.push("label:"+a+";"),null==b[0]||void 0===b[0].raw)y.push.apply(y,b);else{y.push(b[0][0]);for(var x=b.length,w=1;w<x;w++)y.push(b[w],b[0][w])}var k=(0,l.w)((function(e,t,r){var n=v&&e.as||d,a="",s=[],h=e;if(null==e.theme){for(var b in h={},e)h[b]=e[b];h.theme=o.useContext(l.T)}"string"==typeof e.className?a=(0,c.Rk)(t.registered,s,e.className):null!=e.className&&(a=e.className+" ");var x=(0,u.J)(y.concat(s),t.registered,h);a+=t.key+"-"+x.name,void 0!==i&&(a+=" "+i);var w=v&&void 0===p?m(n):f,k={};for(var S in e)v&&"as"===S||w(S)&&(k[S]=e[S]);return k.className=a,r&&(k.ref=r),o.createElement(o.Fragment,null,o.createElement(g,{cache:t,serialized:x,isStringTag:"string"==typeof n}),o.createElement(n,k))}));return k.displayName=void 0!==a?a:"Styled("+("string"==typeof d?d:d.displayName||d.name||"Component")+")",k.defaultProps=t.defaultProps,k.__emotion_real=k,k.__emotion_base=d,k.__emotion_styles=y,k.__emotion_forwardProp=p,Object.defineProperty(k,"toString",{value:function(){return"."+i}}),k.withComponent=function(t,o){return e(t,(0,n.A)({},r,o,{shouldForwardProp:h(k,o,!0)})).apply(void 0,y)},k}}.bind();["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","marquee","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"].forEach((function(e){v[e]=v(e)}));var b=r(7437),y=r(5047),x=Math.abs,w=String.fromCharCode,k=Object.assign;function S(e){return e.trim()}function C(e,t,r){return e.replace(t,r)}function A(e,t){return e.indexOf(t)}function M(e,t){return 0|e.charCodeAt(t)}function R(e,t,r){return e.slice(t,r)}function $(e){return e.length}function E(e){return e.length}function I(e,t){return t.push(e),e}var O=1,j=1,T=0,P=0,B=0,_="";function z(e,t,r,n,o,a,i){return{value:e,root:t,parent:r,type:n,props:o,children:a,line:O,column:j,length:i,return:""}}function L(e,t){return k(z("",null,null,"",null,null,0),e,{length:-e.length},t)}function N(){return B=P>0?M(_,--P):0,j--,10===B&&(j=1,O--),B}function W(){return B=P<T?M(_,P++):0,j++,10===B&&(j=1,O++),B}function F(){return M(_,P)}function D(){return P}function H(e,t){return R(_,e,t)}function V(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function G(e){return O=j=1,T=$(_=e),P=0,[]}function K(e){return _="",e}function U(e){return S(H(P-1,Y(91===e?e+2:40===e?e+1:e)))}function X(e){for(;(B=F())&&B<33;)W();return V(e)>2||V(B)>3?"":" "}function Z(e,t){for(;--t&&W()&&!(B<48||B>102||B>57&&B<65||B>70&&B<97););return H(e,D()+(t<6&&32==F()&&32==W()))}function Y(e){for(;W();)switch(B){case e:return P;case 34:case 39:34!==e&&39!==e&&Y(B);break;case 40:41===e&&Y(e);break;case 92:W()}return P}function q(e,t){for(;W()&&e+B!==57&&(e+B!==84||47!==F()););return"/*"+H(t,P-1)+"*"+w(47===e?e:W())}function J(e){for(;!V(F());)W();return H(e,P)}var Q="-ms-",ee="-moz-",te="-webkit-",re="comm",ne="rule",oe="decl",ae="@keyframes";function ie(e,t){for(var r="",n=E(e),o=0;o<n;o++)r+=t(e[o],o,e,t)||"";return r}function se(e,t,r,n){switch(e.type){case"@layer":if(e.children.length)break;case"@import":case oe:return e.return=e.return||e.value;case re:return"";case ae:return e.return=e.value+"{"+ie(e.children,n)+"}";case ne:e.value=e.props.join(",")}return $(r=ie(e.children,n))?e.return=e.value+"{"+r+"}":""}function le(e){return K(ce("",null,null,null,[""],e=G(e),0,[0],e))}function ce(e,t,r,n,o,a,i,s,l){for(var c=0,u=0,d=i,p=0,f=0,m=0,h=1,g=1,v=1,b=0,y="",x=o,k=a,S=n,R=y;g;)switch(m=b,b=W()){case 40:if(108!=m&&58==M(R,d-1)){-1!=A(R+=C(U(b),"&","&\f"),"&\f")&&(v=-1);break}case 34:case 39:case 91:R+=U(b);break;case 9:case 10:case 13:case 32:R+=X(m);break;case 92:R+=Z(D()-1,7);continue;case 47:switch(F()){case 42:case 47:I(de(q(W(),D()),t,r),l);break;default:R+="/"}break;case 123*h:s[c++]=$(R)*v;case 125*h:case 59:case 0:switch(b){case 0:case 125:g=0;case 59+u:-1==v&&(R=C(R,/\f/g,"")),f>0&&$(R)-d&&I(f>32?pe(R+";",n,r,d-1):pe(C(R," ","")+";",n,r,d-2),l);break;case 59:R+=";";default:if(I(S=ue(R,t,r,c,u,o,s,y,x=[],k=[],d),a),123===b)if(0===u)ce(R,t,S,S,x,a,d,s,k);else switch(99===p&&110===M(R,3)?100:p){case 100:case 108:case 109:case 115:ce(e,S,S,n&&I(ue(e,S,S,0,0,o,s,y,o,x=[],d),k),o,k,d,s,n?x:k);break;default:ce(R,S,S,S,[""],k,0,s,k)}}c=u=f=0,h=v=1,y=R="",d=i;break;case 58:d=1+$(R),f=m;default:if(h<1)if(123==b)--h;else if(125==b&&0==h++&&125==N())continue;switch(R+=w(b),b*h){case 38:v=u>0?1:(R+="\f",-1);break;case 44:s[c++]=($(R)-1)*v,v=1;break;case 64:45===F()&&(R+=U(W())),p=F(),u=d=$(y=R+=J(D())),b++;break;case 45:45===m&&2==$(R)&&(h=0)}}return a}function ue(e,t,r,n,o,a,i,s,l,c,u){for(var d=o-1,p=0===o?a:[""],f=E(p),m=0,h=0,g=0;m<n;++m)for(var v=0,b=R(e,d+1,d=x(h=i[m])),y=e;v<f;++v)(y=S(h>0?p[v]+" "+b:C(b,/&\f/g,p[v])))&&(l[g++]=y);return z(e,t,r,0===o?ne:s,l,c,u)}function de(e,t,r){return z(e,t,r,re,w(B),R(e,2,-2),0)}function pe(e,t,r,n){return z(e,t,r,oe,R(e,0,n),R(e,n+1,-1),n)}var fe=function(e,t,r){for(var n=0,o=0;n=o,o=F(),38===n&&12===o&&(t[r]=1),!V(o);)W();return H(e,P)},me=new WeakMap,he=function(e){if("rule"===e.type&&e.parent&&!(e.length<1)){for(var t=e.value,r=e.parent,n=e.column===r.column&&e.line===r.line;"rule"!==r.type;)if(!(r=r.parent))return;if((1!==e.props.length||58===t.charCodeAt(0)||me.get(r))&&!n){me.set(e,!0);for(var o=[],a=function(e,t){return K(function(e,t){var r=-1,n=44;do{switch(V(n)){case 0:38===n&&12===F()&&(t[r]=1),e[r]+=fe(P-1,t,r);break;case 2:e[r]+=U(n);break;case 4:if(44===n){e[++r]=58===F()?"&\f":"",t[r]=e[r].length;break}default:e[r]+=w(n)}}while(n=W());return e}(G(e),t))}(t,o),i=r.props,s=0,l=0;s<a.length;s++)for(var c=0;c<i.length;c++,l++)e.props[l]=o[s]?a[s].replace(/&\f/g,i[c]):i[c]+" "+a[s]}}},ge=function(e){if("decl"===e.type){var t=e.value;108===t.charCodeAt(0)&&98===t.charCodeAt(2)&&(e.return="",e.value="")}};function ve(e,t){switch(function(e,t){return 45^M(e,0)?(((t<<2^M(e,0))<<2^M(e,1))<<2^M(e,2))<<2^M(e,3):0}(e,t)){case 5103:return te+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return te+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return te+e+ee+e+Q+e+e;case 6828:case 4268:return te+e+Q+e+e;case 6165:return te+e+Q+"flex-"+e+e;case 5187:return te+e+C(e,/(\w+).+(:[^]+)/,te+"box-$1$2"+Q+"flex-$1$2")+e;case 5443:return te+e+Q+"flex-item-"+C(e,/flex-|-self/,"")+e;case 4675:return te+e+Q+"flex-line-pack"+C(e,/align-content|flex-|-self/,"")+e;case 5548:return te+e+Q+C(e,"shrink","negative")+e;case 5292:return te+e+Q+C(e,"basis","preferred-size")+e;case 6060:return te+"box-"+C(e,"-grow","")+te+e+Q+C(e,"grow","positive")+e;case 4554:return te+C(e,/([^-])(transform)/g,"$1"+te+"$2")+e;case 6187:return C(C(C(e,/(zoom-|grab)/,te+"$1"),/(image-set)/,te+"$1"),e,"")+e;case 5495:case 3959:return C(e,/(image-set\([^]*)/,te+"$1$`$1");case 4968:return C(C(e,/(.+:)(flex-)?(.*)/,te+"box-pack:$3"+Q+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+te+e+e;case 4095:case 3583:case 4068:case 2532:return C(e,/(.+)-inline(.+)/,te+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if($(e)-1-t>6)switch(M(e,t+1)){case 109:if(45!==M(e,t+4))break;case 102:return C(e,/(.+:)(.+)-([^]+)/,"$1"+te+"$2-$3$1"+ee+(108==M(e,t+3)?"$3":"$2-$3"))+e;case 115:return~A(e,"stretch")?ve(C(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(115!==M(e,t+1))break;case 6444:switch(M(e,$(e)-3-(~A(e,"!important")&&10))){case 107:return C(e,":",":"+te)+e;case 101:return C(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+te+(45===M(e,14)?"inline-":"")+"box$3$1"+te+"$2$3$1"+Q+"$2box$3")+e}break;case 5936:switch(M(e,t+11)){case 114:return te+e+Q+C(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return te+e+Q+C(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return te+e+Q+C(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return te+e+Q+e+e}return e}var be=[function(e,t,r,n){if(e.length>-1&&!e.return)switch(e.type){case oe:e.return=ve(e.value,e.length);break;case ae:return ie([L(e,{value:C(e.value,"@","@"+te)})],n);case ne:if(e.length)return function(e,t){return e.map(t).join("")}(e.props,(function(t){switch(function(e){return(e=/(::plac\w+|:read-\w+)/.exec(e))?e[0]:e}(t)){case":read-only":case":read-write":return ie([L(e,{props:[C(t,/:(read-\w+)/,":-moz-$1")]})],n);case"::placeholder":return ie([L(e,{props:[C(t,/:(plac\w+)/,":"+te+"input-$1")]}),L(e,{props:[C(t,/:(plac\w+)/,":-moz-$1")]}),L(e,{props:[C(t,/:(plac\w+)/,Q+"input-$1")]})],n)}return""}))}}],ye=r(790);let xe;function we(e){const{injectFirst:t,children:r}=e;return t&&xe?(0,ye.jsx)(l.C,{value:xe,children:r}):r}function ke(e){const{styles:t,defaultTheme:r={}}=e,n="function"==typeof t?e=>{return t(null==(n=e)||0===Object.keys(n).length?r:e);var n}:t;return(0,ye.jsx)(b.mL,{styles:n})}function Se(e,t){return v(e,t)}"object"==typeof document&&(xe=function(e){var t=e.key;if("css"===t){var r=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(r,(function(e){-1!==e.getAttribute("data-emotion").indexOf(" ")&&(document.head.appendChild(e),e.setAttribute("data-s",""))}))}var n,o,a=e.stylisPlugins||be,i={},s=[];n=e.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+t+' "]'),(function(e){for(var t=e.getAttribute("data-emotion").split(" "),r=1;r<t.length;r++)i[t[r]]=!0;s.push(e)}));var l,c,u,d,p=[se,(d=function(e){l.insert(e)},function(e){e.root||(e=e.return)&&d(e)})],f=(c=[he,ge].concat(a,p),u=E(c),function(e,t,r,n){for(var o="",a=0;a<u;a++)o+=c[a](e,t,r,n)||"";return o});o=function(e,t,r,n){l=r,ie(le(e?e+"{"+t.styles+"}":t.styles),f),n&&(m.inserted[t.name]=!0)};var m={key:t,sheet:new y.v({key:t,container:n,nonce:e.nonce,speedy:e.speedy,prepend:e.prepend,insertionPoint:e.insertionPoint}),nonce:e.nonce,inserted:i,registered:{},insert:o};return m.sheet.hydrate(s),m}({key:"css",prepend:!0}));const Ce=(e,t)=>{Array.isArray(e.__emotion_styles)&&(e.__emotion_styles=t(e.__emotion_styles))}},9599:function(e,t,r){"use strict";r.d(t,{A:function(){return c}});var n=r(8168),o=r(8587),a=r(1317),i=r(4188);const s=["sx"],l=e=>{var t,r;const n={systemProps:{},otherProps:{}},o=null!=(t=null==e||null==(r=e.theme)?void 0:r.unstable_sxConfig)?t:i.A;return Object.keys(e).forEach((t=>{o[t]?n.systemProps[t]=e[t]:n.otherProps[t]=e[t]})),n};function c(e){const{sx:t}=e,r=(0,o.A)(e,s),{systemProps:i,otherProps:c}=l(r);let u;return u=Array.isArray(t)?[i,...t]:"function"==typeof t?(...e)=>{const r=t(...e);return(0,a.Q)(r)?(0,n.A)({},i,r):i}:(0,n.A)({},i,t),(0,n.A)({},c,{sx:u})}}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={exports:{}};return e[n](a,a.exports,r),a.exports}r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,{a:t}),t},r.d=function(e,t){for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){"use strict";var e=r(1609),t=r.n(e),n=window.wp.apiFetch,o=r.n(n),a=window.wp.i18n,i=r(790);const s=(0,e.createContext)(),l=({children:t})=>{const[r,n]=React.useState(!0),[l,c]=React.useState({}),[u,d]=React.useState({}),[p,f]=(0,e.useState)(""),[m,h]=(0,e.useState)(0),[g,v]=(0,e.useState)(""),{elementorInstalled:b,elementorActive:y,wizardCompleted:x}=l,{elementorAppConfig:w}=window;return(0,e.useEffect)((()=>{w&&d(w["kit-library"])}),[w]),(0,e.useEffect)((()=>{x?h(2):(!1===b&&(f("install-elementor"),v((0,a.__)("Start building my website","hello-plus"))),b&&!1===y&&(f("activate-elementor"),v((0,a.__)("Start building my website","hello-plus"))),b&&y&&(f("install-kit"),v((0,a.__)("Install Kit","hello-plus")),h(1)))}),[b,y,x]),(0,e.useEffect)((()=>{Promise.all([o()({path:"/elementor-hello-plus/v1/onboarding-settings"})]).then((([e])=>{c(e.settings)})).finally((()=>{n(!1)}))}),[]),(0,i.jsx)(s.Provider,{value:{onboardingSettings:l,stepAction:p,setStepAction:f,buttonText:g,step:m,setStep:h,isLoading:r,elementorKitSettings:u,setIsLoading:n},children:t})};var c=r(5338),u=r(8168),d=r(8587);function p(e){var t,r,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(r=p(e[t]))&&(n&&(n+=" "),n+=r)}else for(r in e)e[r]&&(n&&(n+=" "),n+=r);return n}var f=function(){for(var e,t,r=0,n="",o=arguments.length;r<o;r++)(e=arguments[r])&&(t=p(e))&&(n&&(n+=" "),n+=t);return n},m=r(9462),h=r(3571),g=r(9599),v=r(8749),b=r(9214),y=function(t=null){const r=e.useContext(b.T);return r&&(n=r,0!==Object.keys(n).length)?r:t;var n};const x=(0,v.A)();var w=function(e=x){return y(e)};const k=["className","component"],S=e=>e;var C=(()=>{let e=S;return{configure(t){e=t},generate(t){return e(t)},reset(){e=S}}})(),A=r(9453),M=r(1317),R=r(4188),$=r(771),E={black:"#000",white:"#fff"},I={50:"#fafafa",100:"#f5f5f5",200:"#eeeeee",300:"#e0e0e0",400:"#bdbdbd",500:"#9e9e9e",600:"#757575",700:"#616161",800:"#424242",900:"#212121",A100:"#f5f5f5",A200:"#eeeeee",A400:"#bdbdbd",A700:"#616161"},O="#f3e5f5",j="#ce93d8",T="#ba68c8",P="#ab47bc",B="#9c27b0",_="#7b1fa2",z="#e57373",L="#ef5350",N="#f44336",W="#d32f2f",F="#c62828",D="#ffb74d",H="#ffa726",V="#ff9800",G="#f57c00",K="#e65100",U="#e3f2fd",X="#90caf9",Z="#42a5f5",Y="#1976d2",q="#1565c0",J="#4fc3f7",Q="#29b6f6",ee="#03a9f4",te="#0288d1",re="#01579b",ne="#81c784",oe="#66bb6a",ae="#4caf50",ie="#388e3c",se="#2e7d32",le="#1b5e20";const ce=["mode","contrastThreshold","tonalOffset"],ue={text:{primary:"rgba(0, 0, 0, 0.87)",secondary:"rgba(0, 0, 0, 0.6)",disabled:"rgba(0, 0, 0, 0.38)"},divider:"rgba(0, 0, 0, 0.12)",background:{paper:E.white,default:E.white},action:{active:"rgba(0, 0, 0, 0.54)",hover:"rgba(0, 0, 0, 0.04)",hoverOpacity:.04,selected:"rgba(0, 0, 0, 0.08)",selectedOpacity:.08,disabled:"rgba(0, 0, 0, 0.26)",disabledBackground:"rgba(0, 0, 0, 0.12)",disabledOpacity:.38,focus:"rgba(0, 0, 0, 0.12)",focusOpacity:.12,activatedOpacity:.12}},de={text:{primary:E.white,secondary:"rgba(255, 255, 255, 0.7)",disabled:"rgba(255, 255, 255, 0.5)",icon:"rgba(255, 255, 255, 0.5)"},divider:"rgba(255, 255, 255, 0.12)",background:{paper:"#121212",default:"#121212"},action:{active:E.white,hover:"rgba(255, 255, 255, 0.08)",hoverOpacity:.08,selected:"rgba(255, 255, 255, 0.16)",selectedOpacity:.16,disabled:"rgba(255, 255, 255, 0.3)",disabledBackground:"rgba(255, 255, 255, 0.12)",disabledOpacity:.38,focus:"rgba(255, 255, 255, 0.12)",focusOpacity:.12,activatedOpacity:.24}};function pe(e,t,r,n){const o=n.light||n,a=n.dark||1.5*n;e[t]||(e.hasOwnProperty(r)?e[t]=e[r]:"light"===t?e.light=(0,$.a)(e.main,o):"dark"===t&&(e.dark=(0,$.e$)(e.main,a)))}const fe=["fontFamily","fontSize","fontWeightLight","fontWeightRegular","fontWeightMedium","fontWeightBold","htmlFontSize","allVariants","pxToRem"],me={textTransform:"uppercase"},he='"Roboto", "Helvetica", "Arial", sans-serif';function ge(e,t){const r="function"==typeof t?t(e):t,{fontFamily:n=he,fontSize:o=14,fontWeightLight:a=300,fontWeightRegular:i=400,fontWeightMedium:s=500,fontWeightBold:l=700,htmlFontSize:c=16,allVariants:p,pxToRem:f}=r,m=(0,d.A)(r,fe),h=o/14,g=f||(e=>e/c*h+"rem"),v=(e,t,r,o,a)=>{return(0,u.A)({fontFamily:n,fontWeight:e,fontSize:g(t),lineHeight:r},n===he?{letterSpacing:(i=o/t,Math.round(1e5*i)/1e5+"em")}:{},a,p);var i},b={h1:v(a,96,1.167,-1.5),h2:v(a,60,1.2,-.5),h3:v(i,48,1.167,0),h4:v(i,34,1.235,.25),h5:v(i,24,1.334,0),h6:v(s,20,1.6,.15),subtitle1:v(i,16,1.75,.15),subtitle2:v(s,14,1.57,.1),body1:v(i,16,1.5,.15),body2:v(i,14,1.43,.15),button:v(s,14,1.75,.4,me),caption:v(i,12,1.66,.4),overline:v(i,12,2.66,1,me),inherit:{fontFamily:"inherit",fontWeight:"inherit",fontSize:"inherit",lineHeight:"inherit",letterSpacing:"inherit"}};return(0,M.A)((0,u.A)({htmlFontSize:c,pxToRem:g,fontFamily:n,fontSize:o,fontWeightLight:a,fontWeightRegular:i,fontWeightMedium:s,fontWeightBold:l},b),m,{clone:!1})}function ve(...e){return[`${e[0]}px ${e[1]}px ${e[2]}px ${e[3]}px rgba(0,0,0,0.2)`,`${e[4]}px ${e[5]}px ${e[6]}px ${e[7]}px rgba(0,0,0,0.14)`,`${e[8]}px ${e[9]}px ${e[10]}px ${e[11]}px rgba(0,0,0,0.12)`].join(",")}var be=["none",ve(0,2,1,-1,0,1,1,0,0,1,3,0),ve(0,3,1,-2,0,2,2,0,0,1,5,0),ve(0,3,3,-2,0,3,4,0,0,1,8,0),ve(0,2,4,-1,0,4,5,0,0,1,10,0),ve(0,3,5,-1,0,5,8,0,0,1,14,0),ve(0,3,5,-1,0,6,10,0,0,1,18,0),ve(0,4,5,-2,0,7,10,1,0,2,16,1),ve(0,5,5,-3,0,8,10,1,0,3,14,2),ve(0,5,6,-3,0,9,12,1,0,3,16,2),ve(0,6,6,-3,0,10,14,1,0,4,18,3),ve(0,6,7,-4,0,11,15,1,0,4,20,3),ve(0,7,8,-4,0,12,17,2,0,5,22,4),ve(0,7,8,-4,0,13,19,2,0,5,24,4),ve(0,7,9,-4,0,14,21,2,0,5,26,4),ve(0,8,9,-5,0,15,22,2,0,6,28,5),ve(0,8,10,-5,0,16,24,2,0,6,30,5),ve(0,8,11,-5,0,17,26,2,0,6,32,5),ve(0,9,11,-5,0,18,28,2,0,7,34,6),ve(0,9,12,-6,0,19,29,2,0,7,36,6),ve(0,10,13,-6,0,20,31,3,0,8,38,7),ve(0,10,13,-6,0,21,33,3,0,8,40,7),ve(0,10,14,-6,0,22,35,3,0,8,42,7),ve(0,11,14,-7,0,23,36,3,0,9,44,8),ve(0,11,15,-7,0,24,38,3,0,9,46,8)];const ye=["duration","easing","delay"],xe={easeInOut:"cubic-bezier(0.4, 0, 0.2, 1)",easeOut:"cubic-bezier(0.0, 0, 0.2, 1)",easeIn:"cubic-bezier(0.4, 0, 1, 1)",sharp:"cubic-bezier(0.4, 0, 0.6, 1)"},we={shortest:150,shorter:200,short:250,standard:300,complex:375,enteringScreen:225,leavingScreen:195};function ke(e){return`${Math.round(e)}ms`}function Se(e){if(!e)return 0;const t=e/36;return Math.round(10*(4+15*t**.25+t/5))}function Ce(e){const t=(0,u.A)({},xe,e.easing),r=(0,u.A)({},we,e.duration);return(0,u.A)({getAutoHeightDuration:Se,create:(e=["all"],n={})=>{const{duration:o=r.standard,easing:a=t.easeInOut,delay:i=0}=n;return(0,d.A)(n,ye),(Array.isArray(e)?e:[e]).map((e=>`${e} ${"string"==typeof o?o:ke(o)} ${a} ${"string"==typeof i?i:ke(i)}`)).join(",")}},e,{easing:t,duration:r})}var Ae={mobileStepper:1e3,fab:1050,speedDial:1050,appBar:1100,drawer:1200,modal:1300,snackbar:1400,tooltip:1500};const Me=["breakpoints","mixins","spacing","palette","transitions","typography","shape"];var Re=function(e={},...t){const{mixins:r={},palette:n={},transitions:o={},typography:a={}}=e,i=(0,d.A)(e,Me);if(e.vars)throw new Error((0,A.A)(18));const s=function(e){const{mode:t="light",contrastThreshold:r=3,tonalOffset:n=.2}=e,o=(0,d.A)(e,ce),a=e.primary||function(e="light"){return"dark"===e?{main:X,light:U,dark:Z}:{main:Y,light:Z,dark:q}}(t),i=e.secondary||function(e="light"){return"dark"===e?{main:j,light:O,dark:P}:{main:B,light:T,dark:_}}(t),s=e.error||function(e="light"){return"dark"===e?{main:N,light:z,dark:W}:{main:W,light:L,dark:F}}(t),l=e.info||function(e="light"){return"dark"===e?{main:Q,light:J,dark:te}:{main:te,light:ee,dark:re}}(t),c=e.success||function(e="light"){return"dark"===e?{main:oe,light:ne,dark:ie}:{main:se,light:ae,dark:le}}(t),p=e.warning||function(e="light"){return"dark"===e?{main:H,light:D,dark:G}:{main:"#ed6c02",light:V,dark:K}}(t);function f(e){return(0,$.eM)(e,de.text.primary)>=r?de.text.primary:ue.text.primary}const m=({color:e,name:t,mainShade:r=500,lightShade:o=300,darkShade:a=700})=>{if(!(e=(0,u.A)({},e)).main&&e[r]&&(e.main=e[r]),!e.hasOwnProperty("main"))throw new Error((0,A.A)(11,t?` (${t})`:"",r));if("string"!=typeof e.main)throw new Error((0,A.A)(12,t?` (${t})`:"",JSON.stringify(e.main)));return pe(e,"light",o,n),pe(e,"dark",a,n),e.contrastText||(e.contrastText=f(e.main)),e},h={dark:de,light:ue};return(0,M.A)((0,u.A)({common:(0,u.A)({},E),mode:t,primary:m({color:a,name:"primary"}),secondary:m({color:i,name:"secondary",mainShade:"A400",lightShade:"A200",darkShade:"A700"}),error:m({color:s,name:"error"}),warning:m({color:p,name:"warning"}),info:m({color:l,name:"info"}),success:m({color:c,name:"success"}),grey:I,contrastThreshold:r,getContrastText:f,augmentColor:m,tonalOffset:n},h[t]),o)}(n),l=(0,v.A)(e);let c=(0,M.A)(l,{mixins:(p=l.breakpoints,f=r,(0,u.A)({toolbar:{minHeight:56,[p.up("xs")]:{"@media (orientation: landscape)":{minHeight:48}},[p.up("sm")]:{minHeight:64}}},f)),palette:s,shadows:be.slice(),typography:ge(s,a),transitions:Ce(o),zIndex:(0,u.A)({},Ae)});var p,f;return c=(0,M.A)(c,i),c=t.reduce(((e,t)=>(0,M.A)(e,t)),c),c.unstable_sxConfig=(0,u.A)({},R.A,null==i?void 0:i.unstable_sxConfig),c.unstable_sx=function(e){return(0,h.A)({sx:e,theme:this})},c},$e="$$material";const Ee={active:"active",checked:"checked",completed:"completed",disabled:"disabled",error:"error",expanded:"expanded",focused:"focused",focusVisible:"focusVisible",open:"open",readOnly:"readOnly",required:"required",selected:"selected"};function Ie(e,t,r="Mui"){const n=Ee[t];return n?`${r}-${n}`:`${C.generate(e)}-${t}`}function Oe(e,t,r="Mui"){const n={};return t.forEach((t=>{n[t]=Ie(e,t,r)})),n}var je=Oe("MuiBox",["root"]);const Te=Re();var Pe=function(t={}){const{themeId:r,defaultTheme:n,defaultClassName:o="MuiBox-root",generateClassName:a}=t,s=(0,m.default)("div",{shouldForwardProp:e=>"theme"!==e&&"sx"!==e&&"as"!==e})(h.A);return e.forwardRef((function(e,t){const l=w(n),c=(0,g.A)(e),{className:p,component:m="div"}=c,h=(0,d.A)(c,k);return(0,i.jsx)(s,(0,u.A)({as:m,ref:t,className:f(p,a?a(o):o),theme:r&&l[r]||l},h))}))}({themeId:$e,defaultTheme:Te,defaultClassName:je.root,generateClassName:C.generate});const Be=t().forwardRef(((e,r)=>t().createElement(Pe,{...e,ref:r})));var _e=r(725);function ze(e,t=0,r=1){return(0,_e.A)(e,t,r)}function Le(e){if(e.type)return e;if("#"===e.charAt(0))return Le(function(e){e=e.slice(1);const t=new RegExp(`.{1,${e.length>=6?2:1}}`,"g");let r=e.match(t);return r&&1===r[0].length&&(r=r.map((e=>e+e))),r?`rgb${4===r.length?"a":""}(${r.map(((e,t)=>t<3?parseInt(e,16):Math.round(parseInt(e,16)/255*1e3)/1e3)).join(", ")})`:""}(e));const t=e.indexOf("("),r=e.substring(0,t);if(-1===["rgb","rgba","hsl","hsla","color"].indexOf(r))throw new Error((0,A.A)(9,e));let n,o=e.substring(t+1,e.length-1);if("color"===r){if(o=o.split(" "),n=o.shift(),4===o.length&&"/"===o[3].charAt(0)&&(o[3]=o[3].slice(1)),-1===["srgb","display-p3","a98-rgb","prophoto-rgb","rec-2020"].indexOf(n))throw new Error((0,A.A)(10,n))}else o=o.split(",");return o=o.map((e=>parseFloat(e))),{type:r,values:o,colorSpace:n}}function Ne(e){const{type:t,colorSpace:r}=e;let{values:n}=e;return-1!==t.indexOf("rgb")?n=n.map(((e,t)=>t<3?parseInt(e,10):e)):-1!==t.indexOf("hsl")&&(n[1]=`${n[1]}%`,n[2]=`${n[2]}%`),n=-1!==t.indexOf("color")?`${r} ${n.join(" ")}`:`${n.join(", ")}`,`${t}(${n})`}function We(e,t){return e=Le(e),t=ze(t),"rgb"!==e.type&&"hsl"!==e.type||(e.type+="a"),"color"===e.type?e.values[3]=`/${t}`:e.values[3]=t,Ne(e)}function Fe(e,t){if(e=Le(e),t=ze(t),-1!==e.type.indexOf("hsl"))e.values[2]*=1-t;else if(-1!==e.type.indexOf("rgb")||-1!==e.type.indexOf("color"))for(let r=0;r<3;r+=1)e.values[r]*=1-t;return Ne(e)}function De(e,t){if(e=Le(e),t=ze(t),-1!==e.type.indexOf("hsl"))e.values[2]+=(100-e.values[2])*t;else if(-1!==e.type.indexOf("rgb"))for(let r=0;r<3;r+=1)e.values[r]+=(255-e.values[r])*t;else if(-1!==e.type.indexOf("color"))for(let r=0;r<3;r+=1)e.values[r]+=(1-e.values[r])*t;return Ne(e)}var He=e.createContext(null);function Ve(){return e.useContext(He)}var Ge="function"==typeof Symbol&&Symbol.for?Symbol.for("mui.nested"):"__THEME_NESTED__",Ke=function(t){const{children:r,theme:n}=t,o=Ve(),a=e.useMemo((()=>{const e=null===o?n:function(e,t){return"function"==typeof t?t(e):(0,u.A)({},e,t)}(o,n);return null!=e&&(e[Ge]=null!==o),e}),[n,o]);return(0,i.jsx)(He.Provider,{value:a,children:r})};const Ue=["value"],Xe=e.createContext();var Ze=function(e){let{value:t}=e,r=(0,d.A)(e,Ue);return(0,i.jsx)(Xe.Provider,(0,u.A)({value:null==t||t},r))};const Ye=e.createContext(void 0);var qe=function({value:e,children:t}){return(0,i.jsx)(Ye.Provider,{value:e,children:t})};const Je={};function Qe(t,r,n,o=!1){return e.useMemo((()=>{const e=t&&r[t]||r;if("function"==typeof n){const a=n(e),i=t?(0,u.A)({},r,{[t]:a}):a;return o?()=>i:i}return t?(0,u.A)({},r,{[t]:n}):(0,u.A)({},r,n)}),[t,r,n,o])}var et=function(e){const{children:t,theme:r,themeId:n}=e,o=y(Je),a=Ve()||Je,s=Qe(n,o,r),l=Qe(n,a,r,!0),c="rtl"===s.direction;return(0,i.jsx)(Ke,{theme:l,children:(0,i.jsx)(b.T.Provider,{value:s,children:(0,i.jsx)(Ze,{value:c,children:(0,i.jsx)(qe,{value:null==s?void 0:s.components,children:t})})})})};const tt=["theme"];function rt(e){let{theme:t}=e,r=(0,d.A)(e,tt);const n=t[$e];return(0,i.jsx)(et,(0,u.A)({},r,{themeId:n?$e:void 0,theme:n||t}))}var nt=r(1242),ot=r.n(nt),at="-ms-",it="-moz-",st="-webkit-",lt="comm",ct="rule",ut="decl",dt="@keyframes",pt=Math.abs,ft=String.fromCharCode,mt=Object.assign;function ht(e){return e.trim()}function gt(e,t){return(e=t.exec(e))?e[0]:e}function vt(e,t,r){return e.replace(t,r)}function bt(e,t){return e.indexOf(t)}function yt(e,t){return 0|e.charCodeAt(t)}function xt(e,t,r){return e.slice(t,r)}function wt(e){return e.length}function kt(e){return e.length}function St(e,t){return t.push(e),e}function Ct(e,t){for(var r="",n=kt(e),o=0;o<n;o++)r+=t(e[o],o,e,t)||"";return r}var At=1,Mt=1,Rt=0,$t=0,Et=0,It="";function Ot(e,t,r,n,o,a,i){return{value:e,root:t,parent:r,type:n,props:o,children:a,line:At,column:Mt,length:i,return:""}}function jt(e,t){return mt(Ot("",null,null,"",null,null,0),e,{length:-e.length},t)}function Tt(){return Et=$t<Rt?yt(It,$t++):0,Mt++,10===Et&&(Mt=1,At++),Et}function Pt(){return yt(It,$t)}function Bt(){return $t}function _t(e,t){return xt(It,e,t)}function zt(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function Lt(e){return ht(_t($t-1,Ft(91===e?e+2:40===e?e+1:e)))}function Nt(e){for(;(Et=Pt())&&Et<33;)Tt();return zt(e)>2||zt(Et)>3?"":" "}function Wt(e,t){for(;--t&&Tt()&&!(Et<48||Et>102||Et>57&&Et<65||Et>70&&Et<97););return _t(e,Bt()+(t<6&&32==Pt()&&32==Tt()))}function Ft(e){for(;Tt();)switch(Et){case e:return $t;case 34:case 39:34!==e&&39!==e&&Ft(Et);break;case 40:41===e&&Ft(e);break;case 92:Tt()}return $t}function Dt(e,t){for(;Tt()&&e+Et!==57&&(e+Et!==84||47!==Pt()););return"/*"+_t(t,$t-1)+"*"+ft(47===e?e:Tt())}function Ht(e){for(;!zt(Pt());)Tt();return _t(e,$t)}function Vt(e){return function(e){return It="",e}(Gt("",null,null,null,[""],e=function(e){return At=Mt=1,Rt=wt(It=e),$t=0,[]}(e),0,[0],e))}function Gt(e,t,r,n,o,a,i,s,l){for(var c=0,u=0,d=i,p=0,f=0,m=0,h=1,g=1,v=1,b=0,y="",x=o,w=a,k=n,S=y;g;)switch(m=b,b=Tt()){case 40:if(108!=m&&58==yt(S,d-1)){-1!=bt(S+=vt(Lt(b),"&","&\f"),"&\f")&&(v=-1);break}case 34:case 39:case 91:S+=Lt(b);break;case 9:case 10:case 13:case 32:S+=Nt(m);break;case 92:S+=Wt(Bt()-1,7);continue;case 47:switch(Pt()){case 42:case 47:St(Ut(Dt(Tt(),Bt()),t,r),l);break;default:S+="/"}break;case 123*h:s[c++]=wt(S)*v;case 125*h:case 59:case 0:switch(b){case 0:case 125:g=0;case 59+u:f>0&&wt(S)-d&&St(f>32?Xt(S+";",n,r,d-1):Xt(vt(S," ","")+";",n,r,d-2),l);break;case 59:S+=";";default:if(St(k=Kt(S,t,r,c,u,o,s,y,x=[],w=[],d),a),123===b)if(0===u)Gt(S,t,k,k,x,a,d,s,w);else switch(99===p&&110===yt(S,3)?100:p){case 100:case 109:case 115:Gt(e,k,k,n&&St(Kt(e,k,k,0,0,o,s,y,o,x=[],d),w),o,w,d,s,n?x:w);break;default:Gt(S,k,k,k,[""],w,0,s,w)}}c=u=f=0,h=v=1,y=S="",d=i;break;case 58:d=1+wt(S),f=m;default:if(h<1)if(123==b)--h;else if(125==b&&0==h++&&125==(Et=$t>0?yt(It,--$t):0,Mt--,10===Et&&(Mt=1,At--),Et))continue;switch(S+=ft(b),b*h){case 38:v=u>0?1:(S+="\f",-1);break;case 44:s[c++]=(wt(S)-1)*v,v=1;break;case 64:45===Pt()&&(S+=Lt(Tt())),p=Pt(),u=d=wt(y=S+=Ht(Bt())),b++;break;case 45:45===m&&2==wt(S)&&(h=0)}}return a}function Kt(e,t,r,n,o,a,i,s,l,c,u){for(var d=o-1,p=0===o?a:[""],f=kt(p),m=0,h=0,g=0;m<n;++m)for(var v=0,b=xt(e,d+1,d=pt(h=i[m])),y=e;v<f;++v)(y=ht(h>0?p[v]+" "+b:vt(b,/&\f/g,p[v])))&&(l[g++]=y);return Ot(e,t,r,0===o?ct:s,l,c,u)}function Ut(e,t,r){return Ot(e,t,r,lt,ft(Et),xt(e,2,-2),0)}function Xt(e,t,r,n){return Ot(e,t,r,ut,xt(e,0,n),xt(e,n+1,-1),n)}function Zt(e,t,r){switch(e.type){case"@import":case ut:case lt:return e.return=e.return||e.value;case ct:e.value=Array.isArray(e.props)?e.props.join(","):e.props,Array.isArray(e.children)&&e.children.forEach((function(e){e.type===lt&&(e.children=e.value)}))}var n=Ct(Array.prototype.concat(e.children),Zt);return wt(n)?e.return=e.value+"{"+n+"}":""}function Yt(e,t,r,n){if(e.type===dt||"@supports"===e.type||e.type===ct&&(!e.parent||"@media"===e.parent.type||e.parent.type===ct)){var o=ot().transform(Zt(e));e.children=o?Vt(o)[0].children:[],e.return=""}}Object.defineProperty(Yt,"name",{value:"stylisRTLPlugin"});var qt=Yt,Jt=r(1568);function Qt(e,t,r){switch(function(e,t){return 45^yt(e,0)?(((t<<2^yt(e,0))<<2^yt(e,1))<<2^yt(e,2))<<2^yt(e,3):0}(e,t)){case 5103:return st+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return st+e+e;case 4789:return it+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return st+e+it+e+at+e+e;case 5936:switch(yt(e,t+11)){case 114:return st+e+at+vt(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return st+e+at+vt(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return st+e+at+vt(e,/[svh]\w+-[tblr]{2}/,"lr")+e}case 6828:case 4268:case 2903:return st+e+at+e+e;case 6165:return st+e+at+"flex-"+e+e;case 5187:return st+e+vt(e,/(\w+).+(:[^]+)/,st+"box-$1$2"+at+"flex-$1$2")+e;case 5443:return st+e+at+"flex-item-"+vt(e,/flex-|-self/g,"")+(gt(e,/flex-|baseline/)?"":at+"grid-row-"+vt(e,/flex-|-self/g,""))+e;case 4675:return st+e+at+"flex-line-pack"+vt(e,/align-content|flex-|-self/g,"")+e;case 5548:return st+e+at+vt(e,"shrink","negative")+e;case 5292:return st+e+at+vt(e,"basis","preferred-size")+e;case 6060:return st+"box-"+vt(e,"-grow","")+st+e+at+vt(e,"grow","positive")+e;case 4554:return st+vt(e,/([^-])(transform)/g,"$1"+st+"$2")+e;case 6187:return vt(vt(vt(e,/(zoom-|grab)/,st+"$1"),/(image-set)/,st+"$1"),e,"")+e;case 5495:case 3959:return vt(e,/(image-set\([^]*)/,st+"$1$`$1");case 4968:return vt(vt(e,/(.+:)(flex-)?(.*)/,st+"box-pack:$3"+at+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+st+e+e;case 4200:if(!gt(e,/flex-|baseline/))return at+"grid-column-align"+xt(e,t)+e;break;case 2592:case 3360:return at+vt(e,"template-","")+e;case 4384:case 3616:return r&&r.some((function(e,r){return t=r,gt(e.props,/grid-\w+-end/)}))?~bt(e+(r=r[t].value),"span")?e:at+vt(e,"-start","")+e+at+"grid-row-span:"+(~bt(r,"span")?gt(r,/\d+/):+gt(r,/\d+/)-+gt(e,/\d+/))+";":at+vt(e,"-start","")+e;case 4896:case 4128:return r&&r.some((function(e){return gt(e.props,/grid-\w+-start/)}))?e:at+vt(vt(e,"-end","-span"),"span ","")+e;case 4095:case 3583:case 4068:case 2532:return vt(e,/(.+)-inline(.+)/,st+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(wt(e)-1-t>6)switch(yt(e,t+1)){case 109:if(45!==yt(e,t+4))break;case 102:return vt(e,/(.+:)(.+)-([^]+)/,"$1"+st+"$2-$3$1"+it+(108==yt(e,t+3)?"$3":"$2-$3"))+e;case 115:return~bt(e,"stretch")?Qt(vt(e,"stretch","fill-available"),t,r)+e:e}break;case 5152:case 5920:return vt(e,/(.+?):(\d+)(\s*\/\s*(span)?\s*(\d+))?(.*)/,(function(t,r,n,o,a,i,s){return at+r+":"+n+s+(o?at+r+"-span:"+(a?i:+i-+n)+s:"")+e}));case 4949:if(121===yt(e,t+6))return vt(e,":",":"+st)+e;break;case 6444:switch(yt(e,45===yt(e,14)?18:11)){case 120:return vt(e,/(.+:)([^;\s!]+)(;|(\s+)?!.+)?/,"$1"+st+(45===yt(e,14)?"inline-":"")+"box$3$1"+st+"$2$3$1"+at+"$2box$3")+e;case 100:return vt(e,":",":"+at)+e}break;case 5719:case 2647:case 2135:case 3927:case 2391:return vt(e,"scroll-","scroll-snap-")+e}return e}function er(e,t,r,n){if(e.length>-1&&!e.return)switch(e.type){case ut:return void(e.return=Qt(e.value,e.length,r));case dt:return Ct([jt(e,{value:vt(e.value,"@","@"+st)})],n);case ct:if(e.length)return function(e,t){return e.map(t).join("")}(e.props,(function(t){switch(gt(t,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return Ct([jt(e,{props:[vt(t,/:(read-\w+)/,":-moz-$1")]})],n);case"::placeholder":return Ct([jt(e,{props:[vt(t,/:(plac\w+)/,":"+st+"input-$1")]}),jt(e,{props:[vt(t,/:(plac\w+)/,":-moz-$1")]}),jt(e,{props:[vt(t,/:(plac\w+)/,at+"input-$1")]})],n)}return""}))}}var tr="undefined"!=typeof window?e.useLayoutEffect:e.useEffect;function rr(e,t){const r=(0,u.A)({},t);return Object.keys(e).forEach((n=>{if(n.toString().match(/^(components|slots)$/))r[n]=(0,u.A)({},e[n],r[n]);else if(n.toString().match(/^(componentsProps|slotProps)$/)){const o=e[n]||{},a=t[n];r[n]={},a&&Object.keys(a)?o&&Object.keys(o)?(r[n]=(0,u.A)({},a),Object.keys(o).forEach((e=>{r[n][e]=rr(o[e],a[e])}))):r[n]=a:r[n]=o}else void 0===r[n]&&(r[n]=e[n])})),r}function nr(e){const{theme:t,name:r,props:n}=e;return t&&t.components&&t.components[r]&&t.components[r].defaultProps?rr(t.components[r].defaultProps,n):n}function or(t,r,n,o,a){const[i,s]=e.useState((()=>a&&n?n(t).matches:o?o(t).matches:r));return tr((()=>{let e=!0;if(!n)return;const r=n(t),o=()=>{e&&s(r.matches)};return o(),r.addListener(o),()=>{e=!1,r.removeListener(o)}}),[t,n]),i}const ar=e.useSyncExternalStore;function ir(t,r,n,o,a){const i=e.useCallback((()=>r),[r]),s=e.useMemo((()=>{if(a&&n)return()=>n(t).matches;if(null!==o){const{matches:e}=o(t);return()=>e}return i}),[i,t,o,a,n]),[l,c]=e.useMemo((()=>{if(null===n)return[i,()=>()=>{}];const e=n(t);return[()=>e.matches,t=>(e.addListener(t),()=>{e.removeListener(t)})]}),[i,n,t]);return ar(c,l,s)}const sr="#ffffff",lr="#f1f3f3",cr="#d5d8dc",ur="#babfc5",dr="#9da5ae",pr="#818a96",fr="#69727d",mr="#515962",hr="#3f444b",gr="#1f2124",vr="#0c0d0e",br="#f3bafd",yr="#f0abfc",xr="#eb8efb",wr="#ef4444",kr="#dc2626",Sr="#b91c1c",Cr="#b15211",Ar="#3b82f6",Mr="#2563eb",Rr="#1d4ed8",$r="#10b981",Er="#0a875a",Ir="#047857",Or="#99f6e4",jr="#5eead4",Tr="#2adfcd",Pr="#b51243",Br="#93003f",_r="#7e013b",zr=["primary","secondary","error","warning","info","success","accent","global","promotion"],Lr="&:hover,&:focus,&:active,&:visited",Nr="__unstableAccessibleMain",Wr="__unstableAccessibleLight",Fr="0.625rem",Dr="2.8em",Hr="1.2em",Vr="1.2em",Gr={defaultProps:{slotProps:{paper:{elevation:6}}},styleOverrides:{listbox:()=>({"&.MuiAutocomplete-listboxSizeTiny":{fontSize:"0.875rem"}})},variants:[{props:{size:"tiny"},style:({theme:e})=>({"& .MuiOutlinedInput-root":{fontSize:Fr,padding:e.spacing(.5,0),"& .MuiAutocomplete-input":{height:"1.2em",padding:e.spacing(.5,.25,.5,1)}},"& .MuiFilledInput-root":{paddingTop:0,"& .MuiFilledInput-input":{padding:e.spacing(1,0)}},"& .MuiInputLabel-sizeTiny":{fontSize:Fr,transform:`translate(${e.spacing(1)}, ${e.spacing(.875)}) scale(1)`,"&.MuiInputLabel-shrink":{transform:`translate(${e.spacing(1.75)}, ${e.spacing(-.75)}) scale(0.9)`}},"& .MuiAutocomplete-popupIndicator":{fontSize:"1.5em"},"& .MuiAutocomplete-clearIndicator":{fontSize:"1.2em"},"& .MuiAutocomplete-popupIndicator .MuiSvgIcon-root, & .MuiAutocomplete-clearIndicator .MuiSvgIcon-root":{fontSize:"1em"},"& .MuiInputAdornment-root .MuiIconButton-root":{padding:e.spacing(.25)},"& .MuiAutocomplete-tagSizeTiny":{fontSize:Fr},"&.MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiOutlinedInput-root .MuiAutocomplete-input":{paddingRight:e.spacing(6)}})},{props:{size:"small"},style:({theme:e})=>({"& .MuiFilledInput-root":{paddingTop:0,"&.MuiInputBase-root .MuiFilledInput-input":{padding:e.spacing(1,.5)}},"& .MuiFormLabel-root.MuiInputLabel-filled":{transform:"translate(12px, 9px) scale(1)","&.MuiInputLabel-shrink":{transform:"translate(12px, -8px) scale(0.65)"}}})},{props:{size:"medium"},style:()=>({"& .MuiFilledInput-root":{paddingTop:0,"&.MuiInputBase-root .MuiFilledInput-input":{padding:"16.5px 4px"}},"& .MuiFormLabel-root.MuiInputLabel-filled":{transform:"translate(14px, 16px) scale(1)","&.MuiInputLabel-shrink":{transform:"translate(12px, -8px) scale(0.65)"}}})}]},Kr={defaultProps:{disableRipple:!0},styleOverrides:{root:()=>({boxShadow:"none","&:hover":{boxShadow:"none"}})},variants:zr.map((e=>({props:{variant:"contained",color:e},style:({theme:t})=>({"& .MuiButtonGroup-grouped:not(:last-of-type), & .MuiButtonGroup-grouped:not(:last-of-type).Mui-disabled":{borderRight:0},"& .MuiButtonGroup-grouped:not(:last-child), & > *:not(:last-child) .MuiButtonGroup-grouped":{borderRight:`1px solid ${t.palette[e].dark}`},"& .MuiButtonGroup-grouped:not(:last-child).Mui-disabled, & > *:not(:last-child) .MuiButtonGroup-grouped.Mui-disabled":{borderRight:`1px solid ${t.palette.action.disabled}`}})})))},Ur=["primary","global"],Xr=zr.filter((e=>!Ur.includes(e)));function Zr(e,t){return e.map((e=>({props:{color:e,variant:"standard"},style:({theme:r})=>{const n=t(r,e),{mode:o}=r.palette;return{backgroundColor:n.backgroundColor[o],color:n.color[o],"&:hover,&:focus":{backgroundColor:n.backgroundColorHover[o]},"& .MuiChip-deleteIcon":{color:n.color[o],opacity:n.deleteIconOpacity,"&:hover,&:focus":{color:n.color[o],opacity:n.deleteIconOpacityHover}}}}})))}const Yr={components:{MuiAccordion:{styleOverrides:{root:({theme:e})=>({backgroundColor:e.palette.background.default,"&:before":{content:"none"},"&.Mui-expanded":{margin:0},"&.MuiAccordion-gutters + .MuiAccordion-root.MuiAccordion-gutters":{marginTop:e.spacing(1),marginBottom:e.spacing(0)},"&:not(.MuiAccordion-gutters) + .MuiAccordion-root:not(.MuiAccordion-gutters)":{borderTop:0},"&.Mui-disabled":{backgroundColor:e.palette.background.default}})}},MuiAccordionActions:{styleOverrides:{root:({theme:e})=>({padding:e.spacing(2)})}},MuiAccordionSummary:{styleOverrides:{root:()=>({minHeight:"64px"}),content:({theme:e})=>({margin:e.spacing(1,0),"&.MuiAccordionSummary-content.Mui-expanded":{margin:e.spacing(1,0)}})}},MuiAccordionSummaryIcon:{styleOverrides:{root:({theme:e})=>({padding:e.spacing(1,0)})}},MuiAccordionSummaryText:{styleOverrides:{root:({theme:e})=>({marginTop:0,marginBottom:0,padding:e.spacing(1,0)})}},MuiAppBar:{defaultProps:{elevation:0,color:"default"}},MuiAutocomplete:Gr,MuiButton:{styleOverrides:{root:()=>({boxShadow:"none",whiteSpace:"nowrap","&:hover":{boxShadow:"none"},"& .MuiSvgIcon-root":{fill:"currentColor"}})},variants:[{props:{color:"primary",variant:"outlined"},style:({theme:e})=>({color:e.palette.primary.__unstableAccessibleMain,borderColor:e.palette.primary.__unstableAccessibleMain,"&:hover":{borderColor:e.palette.primary.__unstableAccessibleMain}})},{props:{color:"primary",variant:"text"},style:({theme:e})=>({color:e.palette.primary.__unstableAccessibleMain})},{props:{color:"global",variant:"outlined"},style:({theme:e})=>({color:e.palette.global.__unstableAccessibleMain,borderColor:e.palette.global.__unstableAccessibleMain,"&:hover":{borderColor:e.palette.global.__unstableAccessibleMain}})},{props:{color:"global",variant:"text"},style:({theme:e})=>({color:e.palette.global.__unstableAccessibleMain})}]},MuiButtonBase:{defaultProps:{disableRipple:!0},styleOverrides:{root:()=>({"&.MuiButtonBase-root.Mui-focusVisible":{boxShadow:"0 0 0 1px inset"},".MuiCircularProgress-root":{fontSize:"inherit"}})}},MuiButtonGroup:Kr,MuiCard:{defaultProps:{},styleOverrides:{root:()=>({position:"relative"})}},MuiCardActions:{styleOverrides:{root:({theme:e})=>({justifyContent:"flex-end",padding:e.spacing(1.5,2)})}},MuiCardGroup:{styleOverrides:{root:()=>({"& .MuiCard-root.MuiPaper-outlined:not(:last-child)":{borderBottom:0},"& .MuiCard-root.MuiPaper-rounded":{"&:first-child:not(:last-child)":{borderBottomRightRadius:0,borderBottomLeftRadius:0},"&:not(:first-child):not(:last-child)":{borderRadius:0},"&:last-child:not(:first-child)":{borderTopRightRadius:0,borderTopLeftRadius:0}}})}},MuiCardHeader:{defaultProps:{titleTypographyProps:{variant:"subtitle1"}},styleOverrides:{action:()=>({alignSelf:"center"})},variants:[{props:{disableActionOffset:!0},style:()=>({"& .MuiCardHeader-action":{marginRight:0}})}]},MuiChip:{variants:[{props:{color:"primary",variant:"outlined"},style:({theme:e})=>({color:e.palette.primary.__unstableAccessibleMain,borderColor:e.palette.primary.__unstableAccessibleMain,"& .MuiChip-deleteIcon":{color:e.palette.primary.__unstableAccessibleLight,"&:hover":{color:e.palette.primary.__unstableAccessibleMain}}})},{props:{color:"global",variant:"outlined"},style:({theme:e})=>({color:e.palette.global.__unstableAccessibleMain,borderColor:e.palette.global.__unstableAccessibleMain,"& .MuiChip-deleteIcon":{color:e.palette.global.__unstableAccessibleLight,"&:hover":{color:e.palette.global.__unstableAccessibleMain}}})},{props:{color:"default",variant:"filled"},style:({theme:e})=>({backgroundColor:e.palette.divider})},...Zr(["default"],(function(e){return{backgroundColor:{light:De(e.palette.divider,.3),dark:Fe(e.palette.divider,.1)},backgroundColorHover:{light:e.palette.action.focus,dark:e.palette.action.focus},color:{light:e.palette.text.primary,dark:e.palette.text.primary},deleteIconOpacity:.26,deleteIconOpacityHover:.7}})),...Zr(["primary","global"],(function(e,t){const r=e.palette[t];return{backgroundColor:{light:De(r.light,.8),dark:Fe(r.__unstableAccessibleMain,.8)},backgroundColorHover:{light:De(r.light,.6),dark:Fe(r.__unstableAccessibleMain,.9)},color:{light:Fe(r.__unstableAccessibleMain,.3),dark:De(r.light,.3)},deleteIconOpacity:.7,deleteIconOpacityHover:1}})),...Zr(Xr,(function(e,t){return{backgroundColor:{light:De(e.palette[t].light,.9),dark:Fe(e.palette[t].light,.8)},backgroundColorHover:{light:De(e.palette[t].light,.8),dark:Fe(e.palette[t].light,.9)},color:{light:Fe(e.palette[t].main,.3),dark:De(e.palette[t].main,.5)},deleteIconOpacity:.7,deleteIconOpacityHover:1}}))]},MuiCircularProgress:{defaultProps:{color:"inherit",size:"1em"},styleOverrides:{root:({theme:e})=>({fontSize:e.spacing(5)})}},MuiDialogActions:{styleOverrides:{root:({theme:e})=>({padding:e.spacing(2,3)})}},MuiDialogContent:{styleOverrides:{dividers:()=>({"&:last-child":{borderBottom:"none"}})}},MuiFilledInput:{variants:[{props:{size:"tiny"},style:()=>({fontSize:Fr,lineHeight:Vr,"& .MuiInputBase-input":{height:Vr,padding:"14px 8px 2px"}})},{props:{size:"tiny",multiline:!0},style:()=>({padding:0})}]},MuiFormHelperText:{styleOverrides:{root:({theme:e})=>({color:e.palette.text.tertiary,margin:e.spacing(.5,0,0)})}},MuiIconButton:{variants:[{props:{color:"primary"},style:({theme:e})=>({color:e.palette.primary.__unstableAccessibleMain})},{props:{color:"global"},style:({theme:e})=>({color:e.palette.global.__unstableAccessibleMain})},{props:{edge:"start",size:"small"},style:({theme:e})=>({marginLeft:e.spacing(-1.5)})},{props:{edge:"end",size:"small"},style:({theme:e})=>({marginRight:e.spacing(-1.5)})},{props:{edge:"start",size:"large"},style:({theme:e})=>({marginLeft:e.spacing(-2)})},{props:{edge:"end",size:"large"},style:({theme:e})=>({marginRight:e.spacing(-2)})},{props:{size:"tiny"},style:({theme:e})=>({padding:e.spacing(.75)})}]},MuiInput:{variants:[{props:{size:"tiny"},style:()=>({fontSize:Fr,"& .MuiInputBase-input":{height:Dr,padding:0}})}]},MuiInputAdornment:{styleOverrides:{root:({theme:e})=>({"&.MuiInputAdornment-sizeTiny":{"&.MuiInputAdornment-positionStart":{marginRight:e.spacing(.5)},"&.MuiInputAdornment-positionEnd":{marginLeft:e.spacing(.5)}}})}},MuiInputBase:{styleOverrides:{input:()=>({".MuiInputBase-root.Mui-disabled &":{backgroundColor:"initial"}})}},MuiInputLabel:{variants:[{props:{size:"tiny"},style:()=>({fontSize:Fr,transform:"translate(8px, 6px) scale(1)","&.MuiInputLabel-shrink":{transform:"translate(8px, 1px) scale(0.9)"}})}]},MuiListItem:{styleOverrides:{root:({theme:e})=>({color:e.palette.text.primary,"a&":{[Lr]:{color:e.palette.text.primary}}})}},MuiListItemButton:{styleOverrides:{root:({theme:e})=>({color:e.palette.text.primary,"&.Mui-selected":{backgroundColor:e.palette.action.selected,"&:hover":{backgroundColor:e.palette.action.selected},"&:focus":{backgroundColor:e.palette.action.focus}},"a&":{[Lr]:{color:e.palette.text.primary}}})}},MuiListItemIcon:{styleOverrides:{root:({theme:e})=>({minWidth:"initial","&:not(:last-child)":{marginRight:e.spacing(1)}})}},MuiListItemText:{styleOverrides:{root:({theme:e})=>({color:e.palette.text.primary})}},MuiListSubheader:{styleOverrides:{root:({theme:e})=>({backgroundImage:"linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12))",lineHeight:"36px",color:e.palette.text.secondary})}},MuiMenu:{defaultProps:{elevation:6}},MuiMenuItem:{styleOverrides:{root:({theme:e})=>({"&.Mui-selected":{backgroundColor:e.palette.action.selected,"&:hover":{backgroundColor:e.palette.action.selected},"&:focus":{backgroundColor:e.palette.action.focus}},"a&":{[Lr]:{color:e.palette.text.primary}},"& .MuiListItemIcon-root":{minWidth:"initial"}})}},MuiOutlinedInput:{styleOverrides:{root:({theme:e})=>({"&.Mui-focused .MuiInputAdornment-root .MuiOutlinedInput-notchedOutline":{borderColor:"dark"===e.palette.mode?"rgba(255, 255, 255, 0.23)":"rgba(0, 0, 0, 0.23)",borderWidth:"1px"}})},variants:[{props:{size:"tiny"},style:({theme:e})=>({fontSize:Fr,lineHeight:Hr,"&.MuiInputBase-adornedStart":{paddingLeft:e.spacing(1)},"&.MuiInputBase-adornedEnd":{paddingRight:e.spacing(1)},"& .MuiInputBase-input":{height:Hr,padding:e.spacing(1)},"& .MuiOutlinedInput-notchedOutline > *":{fontSize:Fr,"& > *:not(:empty):not(.notranslate)":{paddingRight:e.spacing(.25),paddingLeft:e.spacing(.25)}},"& .MuiInputAdornment-root + .MuiInputBase-input":{paddingLeft:0},"& .MuiInputBase-input:has(+ .MuiInputAdornment-root)":{paddingRight:0}})},{props:{size:"tiny",multiline:!0},style:()=>({padding:0})},{props:e=>!!e.endAdornment&&"tiny"===e.size,style:()=>({"& .MuiInputAdornment-root .MuiInputBase-root .MuiSelect-select":{"&.MuiSelect-standard":{paddingTop:0,paddingBottom:0},"&.MuiSelect-outlined,&.MuiSelect-filled":{paddingTop:"4px",paddingBottom:"4px"}}})},{props:e=>!!e.endAdornment&&"small"===e.size,style:()=>({"& .MuiInputAdornment-root .MuiInputBase-root .MuiSelect-select":{paddingTop:"2.5px",paddingBottom:"2.5px"}})},{props:e=>!(!e.endAdornment||"medium"!==e.size&&e.size),style:()=>({"& .MuiInputAdornment-root .MuiInputBase-root .MuiSelect-select":{paddingTop:"8.5px",paddingBottom:"8.5px"}})}]},MuiPaper:{},MuiSelect:{styleOverrides:{nativeInput:()=>({".MuiInputBase-root.Mui-disabled &":{backgroundColor:"initial",opacity:0}})},variants:[{props:{size:"tiny"},style:()=>({lineHeight:"1.2em","& .MuiSelect-icon":{fontSize:"1.2rem"},"& .MuiSelect-select.MuiSelect-outlined, & .MuiSelect-select.MuiSelect-filled":{minHeight:Hr},"& .MuiSelect-select.MuiSelect-standard":{lineHeight:Dr,minHeight:Dr}})}]},MuiStepConnector:{styleOverrides:{root:({theme:e})=>({"& .MuiStepConnector-line":{borderColor:e.palette.divider}})}},MuiStepIcon:{styleOverrides:{root:({theme:e})=>({"&:not(.Mui-active) .MuiStepIcon-text":{fill:e.palette.common.white}})}},MuiStepLabel:{styleOverrides:{root:()=>({alignItems:"flex-start"})}},MuiStepper:{styleOverrides:{root:()=>({"& .MuiStepLabel-root":{alignItems:"center"}})}},MuiSvgIcon:{variants:[{props:{fontSize:"tiny"},style:()=>({fontSize:"1rem"})}]},MuiTableRow:{styleOverrides:{root:({theme:e})=>({"&.Mui-selected":{backgroundColor:e.palette.action.selected,"&:hover":{backgroundColor:e.palette.action.selected}}})},variants:[{props:e=>"onClick"in e,style:()=>({cursor:"pointer"})}]},MuiTabPanel:{styleOverrides:{root:({theme:e})=>({color:e.palette.text.primary,padding:e.spacing(3,0)})},variants:[{props:{disablePadding:!0},style:()=>({padding:0})}]},MuiToggleButton:{variants:[{props:{color:"primary"},style:({theme:e})=>({"&.MuiToggleButton-root.Mui-selected":{color:e.palette.primary.__unstableAccessibleMain}})},{props:{color:"global"},style:({theme:e})=>({"&.MuiToggleButton-root.Mui-selected":{color:e.palette.global.__unstableAccessibleMain}})},{props:{size:"tiny"},style:({theme:e})=>({lineHeight:"1.6",fontSize:"0.625rem",padding:e.spacing(.625)})}]},MuiTooltip:{defaultProps:{arrow:!0},styleOverrides:{arrow:({theme:e})=>({color:e.palette.grey[700]}),tooltip:({theme:e})=>({backgroundColor:e.palette.grey[700]})}}},typography:{button:{textTransform:"none"},h1:{fontWeight:700},h2:{fontWeight:700},h3:{fontSize:"2.75rem",fontWeight:700},h4:{fontSize:"2rem",fontWeight:700},h5:{fontWeight:700},subtitle1:{fontWeight:500,lineHeight:1.3},subtitle2:{lineHeight:1.3}},zIndex:{mobileStepper:1e3,fab:1050,speedDial:1050,appBar:1100,drawer:1200,modal:1300,snackbar:1400,tooltip:1500}},qr={...Yr,palette:{mode:"light",primary:{main:yr,light:br,dark:xr,contrastText:vr,[Nr]:"#C00BB9",[Wr]:"#D355CE"},secondary:{main:mr,light:fr,dark:hr,contrastText:sr},grey:{50:lr,100:cr,200:ur,300:dr,400:pr,500:fr,600:mr,700:hr,800:gr,900:vr},text:{primary:vr,secondary:hr,tertiary:fr,disabled:dr},background:{paper:sr,default:sr},success:{main:Er,light:$r,dark:Ir,contrastText:sr},error:{main:kr,light:wr,dark:Sr,contrastText:sr},warning:{main:"#bb5b1d",light:"#d97706",dark:Cr,contrastText:sr},info:{main:Mr,light:Ar,dark:Rr,contrastText:sr},global:{main:jr,light:Or,dark:Tr,contrastText:vr,[Nr]:"#17929B",[Wr]:"#5DB3B9"},accent:{main:Br,light:Pr,dark:_r,contrastText:sr},promotion:{main:Br,light:Pr,dark:_r,contrastText:sr}}},Jr={...Yr,palette:{mode:"dark",primary:{main:yr,light:br,dark:xr,contrastText:vr,[Nr]:"#C00BB9",[Wr]:"#D355CE"},secondary:{main:dr,light:ur,dark:pr,contrastText:vr},grey:{50:lr,100:cr,200:ur,300:dr,400:pr,500:fr,600:mr,700:hr,800:gr,900:vr},text:{primary:sr,secondary:ur,tertiary:dr,disabled:mr},background:{paper:vr,default:gr},success:{main:Er,light:$r,dark:Ir,contrastText:sr},error:{main:kr,light:wr,dark:Sr,contrastText:sr},warning:{main:"#f59e0b",light:"#fbbf24",dark:Cr,contrastText:"#000000"},info:{main:Mr,light:Ar,dark:Rr,contrastText:sr},global:{main:jr,light:Or,dark:Tr,contrastText:vr,[Nr]:"#17929B",[Wr]:"#5DB3B9"},accent:{main:Br,light:Pr,dark:_r,contrastText:sr},promotion:{main:Br,light:Pr,dark:_r,contrastText:sr}}},Qr=t().createContext(!1);(0,Jt.A)({key:"eui-rtl",stylisPlugins:[er,qt]});const en="#524CFF",tn={primary:{main:en,light:"#6B65FF",dark:"#4C43E5",contrastText:"#FFFFFF",[Nr]:"#524CFF",[Wr]:"#6B65FF"},action:{selected:We(en,.08)}},rn=(0,e.createContext)(null),nn=({value:t,children:r})=>e.createElement(rn.Provider,{value:t},r),on={zIndex:Yr.zIndex},an=({colorScheme:r,palette:n,children:o,overrides:a})=>{const i=(0,e.useContext)(rn),s=(0,e.useContext)(Qr),l=n||i?.palette,c=r||i?.colorScheme||"auto",u=function(e,t={}){const r=y(),n="undefined"!=typeof window&&void 0!==window.matchMedia,{defaultMatches:o=!1,matchMedia:a=(n?window.matchMedia:null),ssrMatchMedia:i=null,noSsr:s=!1}=nr({name:"MuiUseMediaQuery",props:t,theme:r});let l="function"==typeof e?e(r):e;return l=l.replace(/^@media( ?)/m,""),(void 0!==ar?ir:or)(l,o,a,i,s)}("(prefers-color-scheme: dark)"),d="auto"===c&&u||"dark"===c,p=function(e,t){if(!e)return t;if("function"!=typeof e)return console.error("overrides must be a function"),t;const r=e(structuredClone(t||on));return r&&"object"==typeof r?r:(console.error("overrides function must return an object"),t)}(a,i?.overrides),f=(0,e.useMemo)((()=>(({palette:e="default",rtl:t=!1,isDarkMode:r=!1,overrides:n}={})=>{const o=r?Jr:qr,a={};return"marketing-suite"===e&&(a.palette=tn),t&&(a.direction="rtl"),n&&["zIndex"].forEach((e=>{e in n&&(a[e]=n[e])})),Re(o,a)})({rtl:s,isDarkMode:d,palette:l,overrides:p})),[s,d,l,p]);return t().createElement(nn,{value:{colorScheme:r,palette:n,overrides:p}},t().createElement(rt,{theme:f},o))},sn=()=>(0,e.useContext)(s);function ln(e,t){"function"==typeof e?e(t):e&&(e.current=t)}function cn(...t){return e.useMemo((()=>t.every((e=>null==e))?null:e=>{t.forEach((t=>{ln(t,e)}))}),t)}function un(e,t,r){return void 0===e||"string"==typeof e?t:(0,u.A)({},t,{ownerState:(0,u.A)({},t.ownerState,r)})}function dn(e,t=[]){if(void 0===e)return{};const r={};return Object.keys(e).filter((r=>r.match(/^on[A-Z]/)&&"function"==typeof e[r]&&!t.includes(r))).forEach((t=>{r[t]=e[t]})),r}function pn(e){if(void 0===e)return{};const t={};return Object.keys(e).filter((t=>!(t.match(/^on[A-Z]/)&&"function"==typeof e[t]))).forEach((r=>{t[r]=e[r]})),t}function fn(e){const{getSlotProps:t,additionalProps:r,externalSlotProps:n,externalForwardedProps:o,className:a}=e;if(!t){const e=f(null==r?void 0:r.className,a,null==o?void 0:o.className,null==n?void 0:n.className),t=(0,u.A)({},null==r?void 0:r.style,null==o?void 0:o.style,null==n?void 0:n.style),i=(0,u.A)({},r,o,n);return e.length>0&&(i.className=e),Object.keys(t).length>0&&(i.style=t),{props:i,internalRef:void 0}}const i=dn((0,u.A)({},o,n)),s=pn(n),l=pn(o),c=t(i),d=f(null==c?void 0:c.className,null==r?void 0:r.className,a,null==o?void 0:o.className,null==n?void 0:n.className),p=(0,u.A)({},null==c?void 0:c.style,null==r?void 0:r.style,null==o?void 0:o.style,null==n?void 0:n.style),m=(0,u.A)({},c,r,l,s);return d.length>0&&(m.className=d),Object.keys(p).length>0&&(m.style=p),{props:m,internalRef:c.ref}}function mn(e,t,r){return"function"==typeof e?e(t,r):e}const hn=["elementType","externalSlotProps","ownerState","skipResolvingSlotProps"];function gn(e){var t;const{elementType:r,externalSlotProps:n,ownerState:o,skipResolvingSlotProps:a=!1}=e,i=(0,d.A)(e,hn),s=a?{}:mn(n,o),{props:l,internalRef:c}=fn((0,u.A)({},i,{externalSlotProps:s})),p=cn(c,null==s?void 0:s.ref,null==(t=e.additionalProps)?void 0:t.ref);return un(r,(0,u.A)({},l,{ref:p}),o)}function vn(e){return e&&e.ownerDocument||document}var bn=function(t){const r=e.useRef(t);return tr((()=>{r.current=t})),e.useRef(((...e)=>(0,r.current)(...e))).current};function yn(...e){return e.reduce(((e,t)=>null==t?e:function(...r){e.apply(this,r),t.apply(this,r)}),(()=>{}))}function xn(e){return vn(e).defaultView||window}function wn(e,t){t?e.setAttribute("aria-hidden","true"):e.removeAttribute("aria-hidden")}function kn(e){return parseInt(xn(e).getComputedStyle(e).paddingRight,10)||0}function Sn(e,t,r,n,o){const a=[t,r,...n];[].forEach.call(e.children,(e=>{const t=-1===a.indexOf(e),r=!function(e){const t=-1!==["TEMPLATE","SCRIPT","STYLE","LINK","MAP","META","NOSCRIPT","PICTURE","COL","COLGROUP","PARAM","SLOT","SOURCE","TRACK"].indexOf(e.tagName),r="INPUT"===e.tagName&&"hidden"===e.getAttribute("type");return t||r}(e);t&&r&&wn(e,o)}))}function Cn(e,t){let r=-1;return e.some(((e,n)=>!!t(e)&&(r=n,!0))),r}const An=new class{constructor(){this.containers=void 0,this.modals=void 0,this.modals=[],this.containers=[]}add(e,t){let r=this.modals.indexOf(e);if(-1!==r)return r;r=this.modals.length,this.modals.push(e),e.modalRef&&wn(e.modalRef,!1);const n=function(e){const t=[];return[].forEach.call(e.children,(e=>{"true"===e.getAttribute("aria-hidden")&&t.push(e)})),t}(t);Sn(t,e.mount,e.modalRef,n,!0);const o=Cn(this.containers,(e=>e.container===t));return-1!==o?(this.containers[o].modals.push(e),r):(this.containers.push({modals:[e],container:t,restore:null,hiddenSiblings:n}),r)}mount(e,t){const r=Cn(this.containers,(t=>-1!==t.modals.indexOf(e))),n=this.containers[r];n.restore||(n.restore=function(e,t){const r=[],n=e.container;if(!t.disableScrollLock){if(function(e){const t=vn(e);return t.body===e?xn(e).innerWidth>t.documentElement.clientWidth:e.scrollHeight>e.clientHeight}(n)){const e=function(e){const t=e.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}(vn(n));r.push({value:n.style.paddingRight,property:"padding-right",el:n}),n.style.paddingRight=`${kn(n)+e}px`;const t=vn(n).querySelectorAll(".mui-fixed");[].forEach.call(t,(t=>{r.push({value:t.style.paddingRight,property:"padding-right",el:t}),t.style.paddingRight=`${kn(t)+e}px`}))}let e;if(n.parentNode instanceof DocumentFragment)e=vn(n).body;else{const t=n.parentElement,r=xn(n);e="HTML"===(null==t?void 0:t.nodeName)&&"scroll"===r.getComputedStyle(t).overflowY?t:n}r.push({value:e.style.overflow,property:"overflow",el:e},{value:e.style.overflowX,property:"overflow-x",el:e},{value:e.style.overflowY,property:"overflow-y",el:e}),e.style.overflow="hidden"}return()=>{r.forEach((({value:e,el:t,property:r})=>{e?t.style.setProperty(r,e):t.style.removeProperty(r)}))}}(n,t))}remove(e,t=!0){const r=this.modals.indexOf(e);if(-1===r)return r;const n=Cn(this.containers,(t=>-1!==t.modals.indexOf(e))),o=this.containers[n];if(o.modals.splice(o.modals.indexOf(e),1),this.modals.splice(r,1),0===o.modals.length)o.restore&&o.restore(),e.modalRef&&wn(e.modalRef,t),Sn(o.container,e.mount,e.modalRef,o.hiddenSiblings,!1),this.containers.splice(n,1);else{const e=o.modals[o.modals.length-1];e.modalRef&&wn(e.modalRef,!1)}return r}isTopModal(e){return this.modals.length>0&&this.modals[this.modals.length-1]===e}};function Mn(e,t,r=void 0){const n={};return Object.keys(e).forEach((o=>{n[o]=e[o].reduce(((e,n)=>{if(n){const o=t(n);""!==o&&e.push(o),r&&r[n]&&e.push(r[n])}return e}),[]).join(" ")})),n}const Rn=["input","select","textarea","a[href]","button","[tabindex]","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])'].join(",");function $n(e){const t=[],r=[];return Array.from(e.querySelectorAll(Rn)).forEach(((e,n)=>{const o=function(e){const t=parseInt(e.getAttribute("tabindex")||"",10);return Number.isNaN(t)?"true"===e.contentEditable||("AUDIO"===e.nodeName||"VIDEO"===e.nodeName||"DETAILS"===e.nodeName)&&null===e.getAttribute("tabindex")?0:e.tabIndex:t}(e);-1!==o&&function(e){return!(e.disabled||"INPUT"===e.tagName&&"hidden"===e.type||function(e){if("INPUT"!==e.tagName||"radio"!==e.type)return!1;if(!e.name)return!1;const t=t=>e.ownerDocument.querySelector(`input[type="radio"]${t}`);let r=t(`[name="${e.name}"]:checked`);return r||(r=t(`[name="${e.name}"]`)),r!==e}(e))}(e)&&(0===o?t.push(e):r.push({documentOrder:n,tabIndex:o,node:e}))})),r.sort(((e,t)=>e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex)).map((e=>e.node)).concat(t)}function En(){return!0}function In(t){const{children:r,disableAutoFocus:n=!1,disableEnforceFocus:o=!1,disableRestoreFocus:a=!1,getTabbable:s=$n,isEnabled:l=En,open:c}=t,u=e.useRef(!1),d=e.useRef(null),p=e.useRef(null),f=e.useRef(null),m=e.useRef(null),h=e.useRef(!1),g=e.useRef(null),v=cn(r.ref,g),b=e.useRef(null);e.useEffect((()=>{c&&g.current&&(h.current=!n)}),[n,c]),e.useEffect((()=>{if(!c||!g.current)return;const e=vn(g.current);return g.current.contains(e.activeElement)||(g.current.hasAttribute("tabIndex")||g.current.setAttribute("tabIndex","-1"),h.current&&g.current.focus()),()=>{a||(f.current&&f.current.focus&&(u.current=!0,f.current.focus()),f.current=null)}}),[c]),e.useEffect((()=>{if(!c||!g.current)return;const e=vn(g.current),t=t=>{b.current=t,!o&&l()&&"Tab"===t.key&&e.activeElement===g.current&&t.shiftKey&&(u.current=!0,p.current&&p.current.focus())},r=()=>{const t=g.current;if(null===t)return;if(!e.hasFocus()||!l()||u.current)return void(u.current=!1);if(t.contains(e.activeElement))return;if(o&&e.activeElement!==d.current&&e.activeElement!==p.current)return;if(e.activeElement!==m.current)m.current=null;else if(null!==m.current)return;if(!h.current)return;let r=[];if(e.activeElement!==d.current&&e.activeElement!==p.current||(r=s(g.current)),r.length>0){var n,a;const e=Boolean((null==(n=b.current)?void 0:n.shiftKey)&&"Tab"===(null==(a=b.current)?void 0:a.key)),t=r[0],o=r[r.length-1];"string"!=typeof t&&"string"!=typeof o&&(e?o.focus():t.focus())}else t.focus()};e.addEventListener("focusin",r),e.addEventListener("keydown",t,!0);const n=setInterval((()=>{e.activeElement&&"BODY"===e.activeElement.tagName&&r()}),50);return()=>{clearInterval(n),e.removeEventListener("focusin",r),e.removeEventListener("keydown",t,!0)}}),[n,o,a,l,c,s]);const y=e=>{null===f.current&&(f.current=e.relatedTarget),h.current=!0};return(0,i.jsxs)(e.Fragment,{children:[(0,i.jsx)("div",{tabIndex:c?0:-1,onFocus:y,ref:d,"data-testid":"sentinelStart"}),e.cloneElement(r,{ref:v,onFocus:e=>{null===f.current&&(f.current=e.relatedTarget),h.current=!0,m.current=e.target;const t=r.props.onFocus;t&&t(e)}}),(0,i.jsx)("div",{tabIndex:c?0:-1,onFocus:y,ref:p,"data-testid":"sentinelEnd"})]})}var On=r(5795),jn=r.n(On);const Tn=e.forwardRef((function(t,r){const{children:n,container:o,disablePortal:a=!1}=t,[s,l]=e.useState(null),c=cn(e.isValidElement(n)?n.ref:null,r);if(tr((()=>{a||l(function(e){return"function"==typeof e?e():e}(o)||document.body)}),[o,a]),tr((()=>{if(s&&!a)return ln(r,s),()=>{ln(r,null)}}),[r,s,a]),a){if(e.isValidElement(n)){const t={ref:c};return e.cloneElement(n,t)}return(0,i.jsx)(e.Fragment,{children:n})}return(0,i.jsx)(e.Fragment,{children:s?On.createPortal(n,s):s})}));var Pn=r(6461),Bn=Re(),zn=e=>function(e){return"ownerState"!==e&&"theme"!==e&&"sx"!==e&&"as"!==e}(e)&&"classes"!==e,Ln=(0,Pn.Ay)({themeId:$e,defaultTheme:Bn,rootShouldForwardProp:zn});function Nn({props:e,name:t,defaultTheme:r,themeId:n}){let o=w(r);return n&&(o=o[n]||o),nr({theme:o,name:t,props:e})}function Wn({props:e,name:t}){return Nn({props:e,name:t,defaultTheme:Bn,themeId:$e})}function Fn(e,t){return Fn=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},Fn(e,t)}function Dn(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,Fn(e,t)}var Hn=t().createContext(null),Vn="unmounted",Gn="exited",Kn="entering",Un="entered",Xn="exiting",Zn=function(e){function r(t,r){var n;n=e.call(this,t,r)||this;var o,a=r&&!r.isMounting?t.enter:t.appear;return n.appearStatus=null,t.in?a?(o=Gn,n.appearStatus=Kn):o=Un:o=t.unmountOnExit||t.mountOnEnter?Vn:Gn,n.state={status:o},n.nextCallback=null,n}Dn(r,e),r.getDerivedStateFromProps=function(e,t){return e.in&&t.status===Vn?{status:Gn}:null};var n=r.prototype;return n.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},n.componentDidUpdate=function(e){var t=null;if(e!==this.props){var r=this.state.status;this.props.in?r!==Kn&&r!==Un&&(t=Kn):r!==Kn&&r!==Un||(t=Xn)}this.updateStatus(!1,t)},n.componentWillUnmount=function(){this.cancelNextCallback()},n.getTimeouts=function(){var e,t,r,n=this.props.timeout;return e=t=r=n,null!=n&&"number"!=typeof n&&(e=n.exit,t=n.enter,r=void 0!==n.appear?n.appear:t),{exit:e,enter:t,appear:r}},n.updateStatus=function(e,t){if(void 0===e&&(e=!1),null!==t)if(this.cancelNextCallback(),t===Kn){if(this.props.unmountOnExit||this.props.mountOnEnter){var r=this.props.nodeRef?this.props.nodeRef.current:jn().findDOMNode(this);r&&function(e){e.scrollTop}(r)}this.performEnter(e)}else this.performExit();else this.props.unmountOnExit&&this.state.status===Gn&&this.setState({status:Vn})},n.performEnter=function(e){var t=this,r=this.props.enter,n=this.context?this.context.isMounting:e,o=this.props.nodeRef?[n]:[jn().findDOMNode(this),n],a=o[0],i=o[1],s=this.getTimeouts(),l=n?s.appear:s.enter;e||r?(this.props.onEnter(a,i),this.safeSetState({status:Kn},(function(){t.props.onEntering(a,i),t.onTransitionEnd(l,(function(){t.safeSetState({status:Un},(function(){t.props.onEntered(a,i)}))}))}))):this.safeSetState({status:Un},(function(){t.props.onEntered(a)}))},n.performExit=function(){var e=this,t=this.props.exit,r=this.getTimeouts(),n=this.props.nodeRef?void 0:jn().findDOMNode(this);t?(this.props.onExit(n),this.safeSetState({status:Xn},(function(){e.props.onExiting(n),e.onTransitionEnd(r.exit,(function(){e.safeSetState({status:Gn},(function(){e.props.onExited(n)}))}))}))):this.safeSetState({status:Gn},(function(){e.props.onExited(n)}))},n.cancelNextCallback=function(){null!==this.nextCallback&&(this.nextCallback.cancel(),this.nextCallback=null)},n.safeSetState=function(e,t){t=this.setNextCallback(t),this.setState(e,t)},n.setNextCallback=function(e){var t=this,r=!0;return this.nextCallback=function(n){r&&(r=!1,t.nextCallback=null,e(n))},this.nextCallback.cancel=function(){r=!1},this.nextCallback},n.onTransitionEnd=function(e,t){this.setNextCallback(t);var r=this.props.nodeRef?this.props.nodeRef.current:jn().findDOMNode(this),n=null==e&&!this.props.addEndListener;if(r&&!n){if(this.props.addEndListener){var o=this.props.nodeRef?[this.nextCallback]:[r,this.nextCallback],a=o[0],i=o[1];this.props.addEndListener(a,i)}null!=e&&setTimeout(this.nextCallback,e)}else setTimeout(this.nextCallback,0)},n.render=function(){var e=this.state.status;if(e===Vn)return null;var r=this.props,n=r.children,o=(r.in,r.mountOnEnter,r.unmountOnExit,r.appear,r.enter,r.exit,r.timeout,r.addEndListener,r.onEnter,r.onEntering,r.onEntered,r.onExit,r.onExiting,r.onExited,r.nodeRef,(0,d.A)(r,["children","in","mountOnEnter","unmountOnExit","appear","enter","exit","timeout","addEndListener","onEnter","onEntering","onEntered","onExit","onExiting","onExited","nodeRef"]));return t().createElement(Hn.Provider,{value:null},"function"==typeof n?n(e,o):t().cloneElement(t().Children.only(n),o))},r}(t().Component);function Yn(){}Zn.contextType=Hn,Zn.propTypes={},Zn.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:Yn,onEntering:Yn,onEntered:Yn,onExit:Yn,onExiting:Yn,onExited:Yn},Zn.UNMOUNTED=Vn,Zn.EXITED=Gn,Zn.ENTERING=Kn,Zn.ENTERED=Un,Zn.EXITING=Xn;var qn=Zn;function Jn(){const e=w(Bn);return e[$e]||e}function Qn(e,t){var r,n;const{timeout:o,easing:a,style:i={}}=e;return{duration:null!=(r=i.transitionDuration)?r:"number"==typeof o?o:o[t.mode]||0,easing:null!=(n=i.transitionTimingFunction)?n:"object"==typeof a?a[t.mode]:a,delay:i.transitionDelay}}var eo=cn;const to=["addEndListener","appear","children","easing","in","onEnter","onEntered","onEntering","onExit","onExited","onExiting","style","timeout","TransitionComponent"],ro={entering:{opacity:1},entered:{opacity:1}};var no=e.forwardRef((function(t,r){const n=Jn(),o={enter:n.transitions.duration.enteringScreen,exit:n.transitions.duration.leavingScreen},{addEndListener:a,appear:s=!0,children:l,easing:c,in:p,onEnter:f,onEntered:m,onEntering:h,onExit:g,onExited:v,onExiting:b,style:y,timeout:x=o,TransitionComponent:w=qn}=t,k=(0,d.A)(t,to),S=e.useRef(null),C=eo(S,l.ref,r),A=e=>t=>{if(e){const r=S.current;void 0===t?e(r):e(r,t)}},M=A(h),R=A(((e,t)=>{(e=>{e.scrollTop})(e);const r=Qn({style:y,timeout:x,easing:c},{mode:"enter"});e.style.webkitTransition=n.transitions.create("opacity",r),e.style.transition=n.transitions.create("opacity",r),f&&f(e,t)})),$=A(m),E=A(b),I=A((e=>{const t=Qn({style:y,timeout:x,easing:c},{mode:"exit"});e.style.webkitTransition=n.transitions.create("opacity",t),e.style.transition=n.transitions.create("opacity",t),g&&g(e)})),O=A(v);return(0,i.jsx)(w,(0,u.A)({appear:s,in:p,nodeRef:S,onEnter:R,onEntered:$,onEntering:M,onExit:I,onExited:O,onExiting:E,addEndListener:e=>{a&&a(S.current,e)},timeout:x},k,{children:(t,r)=>e.cloneElement(l,(0,u.A)({style:(0,u.A)({opacity:0,visibility:"exited"!==t||p?void 0:"hidden"},ro[t],y,l.props.style),ref:C},r))}))}));function oo(e){return Ie("MuiBackdrop",e)}Oe("MuiBackdrop",["root","invisible"]);const ao=["children","className","component","components","componentsProps","invisible","open","slotProps","slots","TransitionComponent","transitionDuration"],io=Ln("div",{name:"MuiBackdrop",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,r.invisible&&t.invisible]}})((({ownerState:e})=>(0,u.A)({position:"fixed",display:"flex",alignItems:"center",justifyContent:"center",right:0,bottom:0,top:0,left:0,backgroundColor:"rgba(0, 0, 0, 0.5)",WebkitTapHighlightColor:"transparent"},e.invisible&&{backgroundColor:"transparent"})));var so=e.forwardRef((function(e,t){var r,n,o;const a=Wn({props:e,name:"MuiBackdrop"}),{children:s,className:l,component:c="div",components:p={},componentsProps:m={},invisible:h=!1,open:g,slotProps:v={},slots:b={},TransitionComponent:y=no,transitionDuration:x}=a,w=(0,d.A)(a,ao),k=(0,u.A)({},a,{component:c,invisible:h}),S=(e=>{const{classes:t,invisible:r}=e;return Mn({root:["root",r&&"invisible"]},oo,t)})(k),C=null!=(r=v.root)?r:m.root;return(0,i.jsx)(y,(0,u.A)({in:g,timeout:x},w,{children:(0,i.jsx)(io,(0,u.A)({"aria-hidden":!0},C,{as:null!=(n=null!=(o=b.root)?o:p.Root)?n:c,className:f(S.root,l,null==C?void 0:C.className),ownerState:(0,u.A)({},k,null==C?void 0:C.ownerState),classes:S,ref:t,children:s}))}))}));function lo(e){return Ie("MuiModal",e)}Oe("MuiModal",["root","hidden","backdrop"]);const co=["BackdropComponent","BackdropProps","classes","className","closeAfterTransition","children","container","component","components","componentsProps","disableAutoFocus","disableEnforceFocus","disableEscapeKeyDown","disablePortal","disableRestoreFocus","disableScrollLock","hideBackdrop","keepMounted","onBackdropClick","onClose","onTransitionEnter","onTransitionExited","open","slotProps","slots","theme"],uo=Ln("div",{name:"MuiModal",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,!r.open&&r.exited&&t.hidden]}})((({theme:e,ownerState:t})=>(0,u.A)({position:"fixed",zIndex:(e.vars||e).zIndex.modal,right:0,bottom:0,top:0,left:0},!t.open&&t.exited&&{visibility:"hidden"}))),po=Ln(so,{name:"MuiModal",slot:"Backdrop",overridesResolver:(e,t)=>t.backdrop})({zIndex:-1});var fo=e.forwardRef((function(t,r){var n,o,a,s,l,c;const p=Wn({name:"MuiModal",props:t}),{BackdropComponent:m=po,BackdropProps:h,className:g,closeAfterTransition:v=!1,children:b,container:y,component:x,components:w={},componentsProps:k={},disableAutoFocus:S=!1,disableEnforceFocus:C=!1,disableEscapeKeyDown:A=!1,disablePortal:M=!1,disableRestoreFocus:R=!1,disableScrollLock:$=!1,hideBackdrop:E=!1,keepMounted:I=!1,onBackdropClick:O,open:j,slotProps:T,slots:P}=p,B=(0,d.A)(p,co),_=(0,u.A)({},p,{closeAfterTransition:v,disableAutoFocus:S,disableEnforceFocus:C,disableEscapeKeyDown:A,disablePortal:M,disableRestoreFocus:R,disableScrollLock:$,hideBackdrop:E,keepMounted:I}),{getRootProps:z,getBackdropProps:L,getTransitionProps:N,portalRef:W,isTopModal:F,exited:D,hasTransition:H}=function(t){const{container:r,disableEscapeKeyDown:n=!1,disableScrollLock:o=!1,manager:a=An,closeAfterTransition:i=!1,onTransitionEnter:s,onTransitionExited:l,children:c,onClose:d,open:p,rootRef:f}=t,m=e.useRef({}),h=e.useRef(null),g=e.useRef(null),v=cn(g,f),[b,y]=e.useState(!p),x=function(e){return!!e&&e.props.hasOwnProperty("in")}(c);let w=!0;"false"!==t["aria-hidden"]&&!1!==t["aria-hidden"]||(w=!1);const k=()=>(m.current.modalRef=g.current,m.current.mount=h.current,m.current),S=()=>{a.mount(k(),{disableScrollLock:o}),g.current&&(g.current.scrollTop=0)},C=bn((()=>{const e=function(e){return"function"==typeof e?e():e}(r)||vn(h.current).body;a.add(k(),e),g.current&&S()})),A=e.useCallback((()=>a.isTopModal(k())),[a]),M=bn((e=>{h.current=e,e&&(p&&A()?S():g.current&&wn(g.current,w))})),R=e.useCallback((()=>{a.remove(k(),w)}),[w,a]);e.useEffect((()=>()=>{R()}),[R]),e.useEffect((()=>{p?C():x&&i||R()}),[p,R,x,i,C]);const $=e=>t=>{var r;null==(r=e.onKeyDown)||r.call(e,t),"Escape"===t.key&&229!==t.which&&A()&&(n||(t.stopPropagation(),d&&d(t,"escapeKeyDown")))},E=e=>t=>{var r;null==(r=e.onClick)||r.call(e,t),t.target===t.currentTarget&&d&&d(t,"backdropClick")};return{getRootProps:(e={})=>{const r=dn(t);delete r.onTransitionEnter,delete r.onTransitionExited;const n=(0,u.A)({},r,e);return(0,u.A)({role:"presentation"},n,{onKeyDown:$(n),ref:v})},getBackdropProps:(e={})=>{const t=e;return(0,u.A)({"aria-hidden":!0},t,{onClick:E(t),open:p})},getTransitionProps:()=>({onEnter:yn((()=>{y(!1),s&&s()}),null==c?void 0:c.props.onEnter),onExited:yn((()=>{y(!0),l&&l(),i&&R()}),null==c?void 0:c.props.onExited)}),rootRef:v,portalRef:M,isTopModal:A,exited:b,hasTransition:x}}((0,u.A)({},_,{rootRef:r})),V=(0,u.A)({},_,{exited:D}),G=(e=>{const{open:t,exited:r,classes:n}=e;return Mn({root:["root",!t&&r&&"hidden"],backdrop:["backdrop"]},lo,n)})(V),K={};if(void 0===b.props.tabIndex&&(K.tabIndex="-1"),H){const{onEnter:e,onExited:t}=N();K.onEnter=e,K.onExited=t}const U=null!=(n=null!=(o=null==P?void 0:P.root)?o:w.Root)?n:uo,X=null!=(a=null!=(s=null==P?void 0:P.backdrop)?s:w.Backdrop)?a:m,Z=null!=(l=null==T?void 0:T.root)?l:k.root,Y=null!=(c=null==T?void 0:T.backdrop)?c:k.backdrop,q=gn({elementType:U,externalSlotProps:Z,externalForwardedProps:B,getSlotProps:z,additionalProps:{ref:r,as:x},ownerState:V,className:f(g,null==Z?void 0:Z.className,null==G?void 0:G.root,!V.open&&V.exited&&(null==G?void 0:G.hidden))}),J=gn({elementType:X,externalSlotProps:Y,additionalProps:h,getSlotProps:e=>L((0,u.A)({},e,{onClick:t=>{O&&O(t),null!=e&&e.onClick&&e.onClick(t)}})),className:f(null==Y?void 0:Y.className,null==h?void 0:h.className,null==G?void 0:G.backdrop),ownerState:V});return I||j||H&&!D?(0,i.jsx)(Tn,{ref:W,container:y,disablePortal:M,children:(0,i.jsxs)(U,(0,u.A)({},q,{children:[!E&&m?(0,i.jsx)(X,(0,u.A)({},J)):null,(0,i.jsx)(In,{disableEnforceFocus:C,disableAutoFocus:S,disableRestoreFocus:R,isEnabled:F,open:j,children:e.cloneElement(b,K)})]}))}):null}));const mo=t().forwardRef(((e,r)=>t().createElement(fo,{...e,ref:r}))),ho=["ownerState"],go=["variants"],vo=["name","slot","skipVariantsResolver","skipSx","overridesResolver"];function bo(e){return"ownerState"!==e&&"theme"!==e&&"sx"!==e&&"as"!==e}const yo=(0,v.A)(),xo=e=>e?e.charAt(0).toLowerCase()+e.slice(1):e;function wo({defaultTheme:e,theme:t,themeId:r}){return n=t,0===Object.keys(n).length?e:t[r]||t;var n}function ko(e){return e?(t,r)=>r[e]:null}function So(e,t){let{ownerState:r}=t,n=(0,d.A)(t,ho);const o="function"==typeof e?e((0,u.A)({ownerState:r},n)):e;if(Array.isArray(o))return o.flatMap((e=>So(e,(0,u.A)({ownerState:r},n))));if(o&&"object"==typeof o&&Array.isArray(o.variants)){const{variants:e=[]}=o;let t=(0,d.A)(o,go);return e.forEach((e=>{let o=!0;"function"==typeof e.props?o=e.props((0,u.A)({ownerState:r},n,r)):Object.keys(e.props).forEach((t=>{(null==r?void 0:r[t])!==e.props[t]&&n[t]!==e.props[t]&&(o=!1)})),o&&(Array.isArray(t)||(t=[t]),t.push("function"==typeof e.style?e.style((0,u.A)({ownerState:r},n,r)):e.style))})),t}return o}var Co=function(e={}){const{themeId:t,defaultTheme:r=yo,rootShouldForwardProp:n=bo,slotShouldForwardProp:o=bo}=e,a=e=>(0,h.A)((0,u.A)({},e,{theme:wo((0,u.A)({},e,{defaultTheme:r,themeId:t}))}));return a.__mui_systemSx=!0,(e,i={})=>{(0,m.internal_processStyles)(e,(e=>e.filter((e=>!(null!=e&&e.__mui_systemSx)))));const{name:s,slot:l,skipVariantsResolver:c,skipSx:p,overridesResolver:f=ko(xo(l))}=i,h=(0,d.A)(i,vo),g=void 0!==c?c:l&&"Root"!==l&&"root"!==l||!1,v=p||!1;let b=bo;"Root"===l||"root"===l?b=n:l?b=o:function(e){return"string"==typeof e&&e.charCodeAt(0)>96}(e)&&(b=void 0);const y=(0,m.default)(e,(0,u.A)({shouldForwardProp:b,label:void 0},h)),x=e=>"function"==typeof e&&e.__emotion_real!==e||(0,M.Q)(e)?n=>So(e,(0,u.A)({},n,{theme:wo({theme:n.theme,defaultTheme:r,themeId:t})})):e,w=(n,...o)=>{let i=x(n);const l=o?o.map(x):[];s&&f&&l.push((e=>{const n=wo((0,u.A)({},e,{defaultTheme:r,themeId:t}));if(!n.components||!n.components[s]||!n.components[s].styleOverrides)return null;const o=n.components[s].styleOverrides,a={};return Object.entries(o).forEach((([t,r])=>{a[t]=So(r,(0,u.A)({},e,{theme:n}))})),f(e,a)})),s&&!g&&l.push((e=>{var n;const o=wo((0,u.A)({},e,{defaultTheme:r,themeId:t}));return So({variants:null==o||null==(n=o.components)||null==(n=n[s])?void 0:n.variants},(0,u.A)({},e,{theme:o}))})),v||l.push(a);const c=l.length-o.length;if(Array.isArray(n)&&c>0){const e=new Array(c).fill("");i=[...n,...e],i.raw=[...n.raw,...e]}const d=y(i,...l);return e.muiName&&(d.muiName=e.muiName),d};return y.withConfig&&(w.withConfig=y.withConfig),w}}(),Ao=r(9452),Mo=r(8248);const Ro=["component","direction","spacing","divider","children","className","useFlexGap"],$o=(0,v.A)(),Eo=Co("div",{name:"MuiStack",slot:"Root",overridesResolver:(e,t)=>t.root});function Io(e){return Nn({props:e,name:"MuiStack",defaultTheme:$o})}function Oo(t,r){const n=e.Children.toArray(t).filter(Boolean);return n.reduce(((t,o,a)=>(t.push(o),a<n.length-1&&t.push(e.cloneElement(r,{key:`separator-${a}`})),t)),[])}const jo=({ownerState:e,theme:t})=>{let r=(0,u.A)({display:"flex",flexDirection:"column"},(0,Ao.NI)({theme:t},(0,Ao.kW)({values:e.direction,breakpoints:t.breakpoints.values}),(e=>({flexDirection:e}))));if(e.spacing){const n=(0,Mo.LX)(t),o=Object.keys(t.breakpoints.values).reduce(((t,r)=>(("object"==typeof e.spacing&&null!=e.spacing[r]||"object"==typeof e.direction&&null!=e.direction[r])&&(t[r]=!0),t)),{}),a=(0,Ao.kW)({values:e.direction,base:o}),i=(0,Ao.kW)({values:e.spacing,base:o});"object"==typeof a&&Object.keys(a).forEach(((e,t,r)=>{if(!a[e]){const n=t>0?a[r[t-1]]:"column";a[e]=n}}));const s=(t,r)=>{return e.useFlexGap?{gap:(0,Mo._W)(n,t)}:{"& > :not(style):not(style)":{margin:0},"& > :not(style) ~ :not(style)":{[`margin${o=r?a[r]:e.direction,{row:"Left","row-reverse":"Right",column:"Top","column-reverse":"Bottom"}[o]}`]:(0,Mo._W)(n,t)}};var o};r=(0,M.A)(r,(0,Ao.NI)({theme:t},i,s))}return r=(0,Ao.iZ)(t.breakpoints,r),r};var To=function(t={}){const{createStyledComponent:r=Eo,useThemeProps:n=Io,componentName:o="MuiStack"}=t,a=r(jo);return e.forwardRef((function(e,t){const r=n(e),s=(0,g.A)(r),{component:l="div",direction:c="column",spacing:p=0,divider:m,children:h,className:v,useFlexGap:b=!1}=s,y=(0,d.A)(s,Ro),x={direction:c,spacing:p,useFlexGap:b},w=Mn({root:["root"]},(e=>Ie(o,e)),{});return(0,i.jsx)(a,(0,u.A)({as:l,ownerState:x,ref:t,className:f(w.root,v)},y,{children:m?Oo(h,m):h}))}))}({createStyledComponent:Ln("div",{name:"MuiStack",slot:"Root",overridesResolver:(e,t)=>t.root}),useThemeProps:e=>Wn({props:e,name:"MuiStack"})});const Po=t().forwardRef(((e,r)=>t().createElement(To,{...e,ref:r})));var Bo=r(3967).A;function _o(e){return Ie("MuiSvgIcon",e)}Oe("MuiSvgIcon",["root","colorPrimary","colorSecondary","colorAction","colorError","colorDisabled","fontSizeInherit","fontSizeSmall","fontSizeMedium","fontSizeLarge"]);const zo=["children","className","color","component","fontSize","htmlColor","inheritViewBox","titleAccess","viewBox"],Lo=Ln("svg",{name:"MuiSvgIcon",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,"inherit"!==r.color&&t[`color${Bo(r.color)}`],t[`fontSize${Bo(r.fontSize)}`]]}})((({theme:e,ownerState:t})=>{var r,n,o,a,i,s,l,c,u,d,p,f,m;return{userSelect:"none",width:"1em",height:"1em",display:"inline-block",fill:t.hasSvgAsChild?void 0:"currentColor",flexShrink:0,transition:null==(r=e.transitions)||null==(n=r.create)?void 0:n.call(r,"fill",{duration:null==(o=e.transitions)||null==(o=o.duration)?void 0:o.shorter}),fontSize:{inherit:"inherit",small:(null==(a=e.typography)||null==(i=a.pxToRem)?void 0:i.call(a,20))||"1.25rem",medium:(null==(s=e.typography)||null==(l=s.pxToRem)?void 0:l.call(s,24))||"1.5rem",large:(null==(c=e.typography)||null==(u=c.pxToRem)?void 0:u.call(c,35))||"2.1875rem"}[t.fontSize],color:null!=(d=null==(p=(e.vars||e).palette)||null==(p=p[t.color])?void 0:p.main)?d:{action:null==(f=(e.vars||e).palette)||null==(f=f.action)?void 0:f.active,disabled:null==(m=(e.vars||e).palette)||null==(m=m.action)?void 0:m.disabled,inherit:void 0}[t.color]}})),No=e.forwardRef((function(t,r){const n=Wn({props:t,name:"MuiSvgIcon"}),{children:o,className:a,color:s="inherit",component:l="svg",fontSize:c="medium",htmlColor:p,inheritViewBox:m=!1,titleAccess:h,viewBox:g="0 0 24 24"}=n,v=(0,d.A)(n,zo),b=e.isValidElement(o)&&"svg"===o.type,y=(0,u.A)({},n,{color:s,component:l,fontSize:c,instanceFontSize:t.fontSize,inheritViewBox:m,viewBox:g,hasSvgAsChild:b}),x={};m||(x.viewBox=g);const w=(e=>{const{color:t,fontSize:r,classes:n}=e;return Mn({root:["root","inherit"!==t&&`color${Bo(t)}`,`fontSize${Bo(r)}`]},_o,n)})(y);return(0,i.jsxs)(Lo,(0,u.A)({as:l,className:f(w.root,a),focusable:"false",color:p,"aria-hidden":!h||void 0,role:h?"img":void 0,ref:r},x,v,b&&o.props,{ownerState:y,children:[b?o.props.children:o,h?(0,i.jsx)("title",{children:h}):null]}))}));No.muiName="SvgIcon";var Wo=No;const Fo=t().forwardRef(((e,r)=>t().createElement(Wo,{...e,ref:r})));var Do;function Ho(){return Ho=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},Ho.apply(null,arguments)}const Vo=t=>e.createElement("svg",Ho({xmlns:"http://www.w3.org/2000/svg",width:23,height:24,fill:"none"},t),Do||(Do=e.createElement("path",{fill:"#93003f",d:"M11.5.45a11.26 11.26 0 0 0-5.796 1.564 11.64 11.64 0 0 0-4.14 4.14A11.26 11.26 0 0 0 0 11.95a11.26 11.26 0 0 0 1.564 5.796 11.64 11.64 0 0 0 4.14 4.14Q8.372 23.45 11.5 23.45c3.128 0 4.017-.521 5.796-1.564a11.64 11.64 0 0 0 4.14-4.14Q23 15.078 23 11.95c0-3.128-.521-4.017-1.564-5.796a11.64 11.64 0 0 0-4.14-4.14A11.26 11.26 0 0 0 11.5.45M8.625 16.734H6.716V7.166h1.909zm7.659 0h-5.75v-1.909h5.75zm0-3.818h-5.75v-1.932h5.75zm0-3.841h-5.75V7.166h5.75z"})));function Go(e){return Ie("MuiTypography",e)}Oe("MuiTypography",["root","h1","h2","h3","h4","h5","h6","subtitle1","subtitle2","body1","body2","inherit","button","caption","overline","alignLeft","alignRight","alignCenter","alignJustify","noWrap","gutterBottom","paragraph"]);const Ko=["align","className","component","gutterBottom","noWrap","paragraph","variant","variantMapping"],Uo=Ln("span",{name:"MuiTypography",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,r.variant&&t[r.variant],"inherit"!==r.align&&t[`align${Bo(r.align)}`],r.noWrap&&t.noWrap,r.gutterBottom&&t.gutterBottom,r.paragraph&&t.paragraph]}})((({theme:e,ownerState:t})=>(0,u.A)({margin:0},"inherit"===t.variant&&{font:"inherit"},"inherit"!==t.variant&&e.typography[t.variant],"inherit"!==t.align&&{textAlign:t.align},t.noWrap&&{overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},t.gutterBottom&&{marginBottom:"0.35em"},t.paragraph&&{marginBottom:16}))),Xo={h1:"h1",h2:"h2",h3:"h3",h4:"h4",h5:"h5",h6:"h6",subtitle1:"h6",subtitle2:"h6",body1:"p",body2:"p",inherit:"p"},Zo={primary:"primary.main",textPrimary:"text.primary",secondary:"secondary.main",textSecondary:"text.secondary",error:"error.main"};var Yo=e.forwardRef((function(e,t){const r=Wn({props:e,name:"MuiTypography"}),n=(e=>Zo[e]||e)(r.color),o=(0,g.A)((0,u.A)({},r,{color:n})),{align:a="inherit",className:s,component:l,gutterBottom:c=!1,noWrap:p=!1,paragraph:m=!1,variant:h="body1",variantMapping:v=Xo}=o,b=(0,d.A)(o,Ko),y=(0,u.A)({},o,{align:a,color:n,className:s,component:l,gutterBottom:c,noWrap:p,paragraph:m,variant:h,variantMapping:v}),x=l||(m?"p":v[h]||Xo[h])||"span",w=(e=>{const{align:t,gutterBottom:r,noWrap:n,paragraph:o,variant:a,classes:i}=e;return Mn({root:["root",a,"inherit"!==e.align&&`align${Bo(t)}`,r&&"gutterBottom",n&&"noWrap",o&&"paragraph"]},Go,i)})(y);return(0,i.jsx)(Uo,(0,u.A)({as:x,ref:t,ownerState:y,className:f(w.root,s)},b))}));const qo=t().forwardRef(((e,r)=>t().createElement(Yo,{...e,ref:r}))),Jo=e.forwardRef(((t,r)=>e.createElement(Fo,{viewBox:"0 0 24 24",...t,ref:r},e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5303 5.46967C18.8232 5.76256 18.8232 6.23744 18.5303 6.53033L6.53033 18.5303C6.23744 18.8232 5.76256 18.8232 5.46967 18.5303C5.17678 18.2374 5.17678 17.7626 5.46967 17.4697L17.4697 5.46967C17.7626 5.17678 18.2374 5.17678 18.5303 5.46967Z"}),e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.46967 5.46967C5.76256 5.17678 6.23744 5.17678 6.53033 5.46967L18.5303 17.4697C18.8232 17.7626 18.8232 18.2374 18.5303 18.5303C18.2374 18.8232 17.7626 18.8232 17.4697 18.5303L5.46967 6.53033C5.17678 6.23744 5.17678 5.76256 5.46967 5.46967Z"})))),Qo=({sx:e={},iconSize:t="medium",onClose:r})=>(0,i.jsxs)(Po,{direction:"row",sx:{alignItems:"center",minHeight:50,px:2,backgroundColor:"background.default",justifyContent:"space-between",...e},children:[(0,i.jsxs)(Po,{direction:"row",spacing:1,alignItems:"center",children:[(0,i.jsx)(Fo,{fontSize:t,color:"secondary",children:(0,i.jsx)(Vo,{})}),(0,i.jsx)(qo,{variant:"subtitle1",sx:{color:"text.primary"},children:(0,a.__)("Hello+","hello-plus")})]}),r&&(0,i.jsx)(Jo,{onClick:r,sx:{cursor:"pointer",color:"text.primary"}})]});var ea=e.createContext({});var ta=e.createContext({});function ra(e){return Ie("MuiStep",e)}Oe("MuiStep",["root","horizontal","vertical","alternativeLabel","completed"]);const na=["active","children","className","component","completed","disabled","expanded","index","last"],oa=Ln("div",{name:"MuiStep",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,t[r.orientation],r.alternativeLabel&&t.alternativeLabel,r.completed&&t.completed]}})((({ownerState:e})=>(0,u.A)({},"horizontal"===e.orientation&&{paddingLeft:8,paddingRight:8},e.alternativeLabel&&{flex:1,position:"relative"})));var aa=e.forwardRef((function(t,r){const n=Wn({props:t,name:"MuiStep"}),{active:o,children:a,className:s,component:l="div",completed:c,disabled:p,expanded:m=!1,index:h,last:g}=n,v=(0,d.A)(n,na),{activeStep:b,connector:y,alternativeLabel:x,orientation:w,nonLinear:k}=e.useContext(ea);let[S=!1,C=!1,A=!1]=[o,c,p];b===h?S=void 0===o||o:!k&&b>h?C=void 0===c||c:!k&&b<h&&(A=void 0===p||p);const M=e.useMemo((()=>({index:h,last:g,expanded:m,icon:h+1,active:S,completed:C,disabled:A})),[h,g,m,S,C,A]),R=(0,u.A)({},n,{active:S,orientation:w,alternativeLabel:x,completed:C,disabled:A,expanded:m,component:l}),$=(e=>{const{classes:t,orientation:r,alternativeLabel:n,completed:o}=e;return Mn({root:["root",r,n&&"alternativeLabel",o&&"completed"]},ra,t)})(R),E=(0,i.jsxs)(oa,(0,u.A)({as:l,className:f($.root,s),ref:r,ownerState:R},v,{children:[y&&x&&0!==h?y:null,a]}));return(0,i.jsx)(ta.Provider,{value:M,children:y&&!x&&0!==h?(0,i.jsxs)(e.Fragment,{children:[y,E]}):E})}));const ia=t().forwardRef(((e,r)=>t().createElement(aa,{...e,ref:r})));function sa(t,r){function n(e,n){return(0,i.jsx)(Wo,(0,u.A)({"data-testid":`${r}Icon`,ref:n},e,{children:t}))}return n.muiName=Wo.muiName,e.memo(e.forwardRef(n))}var la=sa((0,i.jsx)("path",{d:"M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24zm-2 17l-5-5 1.4-1.4 3.6 3.6 7.6-7.6L19 8l-9 9z"}),"CheckCircle"),ca=sa((0,i.jsx)("path",{d:"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z"}),"Warning");function ua(e){return Ie("MuiStepIcon",e)}var da,pa=Oe("MuiStepIcon",["root","active","completed","error","text"]);const fa=["active","className","completed","error","icon"],ma=Ln(Wo,{name:"MuiStepIcon",slot:"Root",overridesResolver:(e,t)=>t.root})((({theme:e})=>({display:"block",transition:e.transitions.create("color",{duration:e.transitions.duration.shortest}),color:(e.vars||e).palette.text.disabled,[`&.${pa.completed}`]:{color:(e.vars||e).palette.primary.main},[`&.${pa.active}`]:{color:(e.vars||e).palette.primary.main},[`&.${pa.error}`]:{color:(e.vars||e).palette.error.main}}))),ha=Ln("text",{name:"MuiStepIcon",slot:"Text",overridesResolver:(e,t)=>t.text})((({theme:e})=>({fill:(e.vars||e).palette.primary.contrastText,fontSize:e.typography.caption.fontSize,fontFamily:e.typography.fontFamily})));var ga=e.forwardRef((function(e,t){const r=Wn({props:e,name:"MuiStepIcon"}),{active:n=!1,className:o,completed:a=!1,error:s=!1,icon:l}=r,c=(0,d.A)(r,fa),p=(0,u.A)({},r,{active:n,completed:a,error:s}),m=(e=>{const{classes:t,active:r,completed:n,error:o}=e;return Mn({root:["root",r&&"active",n&&"completed",o&&"error"],text:["text"]},ua,t)})(p);if("number"==typeof l||"string"==typeof l){const e=f(o,m.root);return s?(0,i.jsx)(ma,(0,u.A)({as:ca,className:e,ref:t,ownerState:p},c)):a?(0,i.jsx)(ma,(0,u.A)({as:la,className:e,ref:t,ownerState:p},c)):(0,i.jsxs)(ma,(0,u.A)({className:e,ref:t,ownerState:p},c,{children:[da||(da=(0,i.jsx)("circle",{cx:"12",cy:"12",r:"12"})),(0,i.jsx)(ha,{className:m.text,x:"12",y:"12",textAnchor:"middle",dominantBaseline:"central",ownerState:p,children:l})]}))}return l}));function va(e){return Ie("MuiStepLabel",e)}var ba=Oe("MuiStepLabel",["root","horizontal","vertical","label","active","completed","error","disabled","iconContainer","alternativeLabel","labelContainer"]);const ya=["children","className","componentsProps","error","icon","optional","slotProps","StepIconComponent","StepIconProps"],xa=Ln("span",{name:"MuiStepLabel",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,t[r.orientation]]}})((({ownerState:e})=>(0,u.A)({display:"flex",alignItems:"center",[`&.${ba.alternativeLabel}`]:{flexDirection:"column"},[`&.${ba.disabled}`]:{cursor:"default"}},"vertical"===e.orientation&&{textAlign:"left",padding:"8px 0"}))),wa=Ln("span",{name:"MuiStepLabel",slot:"Label",overridesResolver:(e,t)=>t.label})((({theme:e})=>(0,u.A)({},e.typography.body2,{display:"block",transition:e.transitions.create("color",{duration:e.transitions.duration.shortest}),[`&.${ba.active}`]:{color:(e.vars||e).palette.text.primary,fontWeight:500},[`&.${ba.completed}`]:{color:(e.vars||e).palette.text.primary,fontWeight:500},[`&.${ba.alternativeLabel}`]:{marginTop:16},[`&.${ba.error}`]:{color:(e.vars||e).palette.error.main}}))),ka=Ln("span",{name:"MuiStepLabel",slot:"IconContainer",overridesResolver:(e,t)=>t.iconContainer})((()=>({flexShrink:0,display:"flex",paddingRight:8,[`&.${ba.alternativeLabel}`]:{paddingRight:0}}))),Sa=Ln("span",{name:"MuiStepLabel",slot:"LabelContainer",overridesResolver:(e,t)=>t.labelContainer})((({theme:e})=>({width:"100%",color:(e.vars||e).palette.text.secondary,[`&.${ba.alternativeLabel}`]:{textAlign:"center"}}))),Ca=e.forwardRef((function(t,r){var n;const o=Wn({props:t,name:"MuiStepLabel"}),{children:a,className:s,componentsProps:l={},error:c=!1,icon:p,optional:m,slotProps:h={},StepIconComponent:g,StepIconProps:v}=o,b=(0,d.A)(o,ya),{alternativeLabel:y,orientation:x}=e.useContext(ea),{active:w,disabled:k,completed:S,icon:C}=e.useContext(ta),A=p||C;let M=g;A&&!M&&(M=ga);const R=(0,u.A)({},o,{active:w,alternativeLabel:y,completed:S,disabled:k,error:c,orientation:x}),$=(e=>{const{classes:t,orientation:r,active:n,completed:o,error:a,disabled:i,alternativeLabel:s}=e;return Mn({root:["root",r,a&&"error",i&&"disabled",s&&"alternativeLabel"],label:["label",n&&"active",o&&"completed",a&&"error",i&&"disabled",s&&"alternativeLabel"],iconContainer:["iconContainer",n&&"active",o&&"completed",a&&"error",i&&"disabled",s&&"alternativeLabel"],labelContainer:["labelContainer",s&&"alternativeLabel"]},va,t)})(R),E=null!=(n=h.label)?n:l.label;return(0,i.jsxs)(xa,(0,u.A)({className:f($.root,s),ref:r,ownerState:R},b,{children:[A||M?(0,i.jsx)(ka,{className:$.iconContainer,ownerState:R,children:(0,i.jsx)(M,(0,u.A)({completed:S,active:w,error:c,icon:A},v))}):null,(0,i.jsxs)(Sa,{className:$.labelContainer,ownerState:R,children:[a?(0,i.jsx)(wa,(0,u.A)({ownerState:R},E,{className:f($.label,null==E?void 0:E.className),children:a})):null,m]})]}))}));Ca.muiName="StepLabel";var Aa=Ca;const Ma=t().forwardRef(((e,r)=>t().createElement(Wo,{...e,ref:r}))),Ra=["primary","global"],$a=["primary","secondary","error","warning","info","success","accent","global","promotion"].filter((e=>!Ra.includes(e)));function Ea(e,t){return e.map((e=>({props:{color:e,variant:"standard"},style:({theme:r})=>{const n=t(r,e),{mode:o}=r.palette;return{backgroundColor:n.backgroundColor[o],color:n.color[o],"&:hover,&:focus":{backgroundColor:n.backgroundColorHover[o]},"& .MuiChip-deleteIcon":{color:n.color[o],opacity:n.deleteIconOpacity,"&:hover,&:focus":{color:n.color[o],opacity:n.deleteIconOpacityHover}}}}})))}Ea(["default"],(function(e){return{backgroundColor:{light:De(e.palette.divider,.3),dark:Fe(e.palette.divider,.1)},backgroundColorHover:{light:e.palette.action.focus,dark:e.palette.action.focus},color:{light:e.palette.text.primary,dark:e.palette.text.primary},deleteIconOpacity:.26,deleteIconOpacityHover:.7}})),Ea(["primary","global"],(function(e,t){const r=e.palette[t];return{backgroundColor:{light:De(r.light,.8),dark:Fe(r.__unstableAccessibleMain,.8)},backgroundColorHover:{light:De(r.light,.6),dark:Fe(r.__unstableAccessibleMain,.9)},color:{light:Fe(r.__unstableAccessibleMain,.3),dark:De(r.light,.3)},deleteIconOpacity:.7,deleteIconOpacityHover:1}})),Ea($a,(function(e,t){return{backgroundColor:{light:De(e.palette[t].light,.9),dark:Fe(e.palette[t].light,.8)},backgroundColorHover:{light:De(e.palette[t].light,.8),dark:Fe(e.palette[t].light,.9)},color:{light:Fe(e.palette[t].main,.3),dark:De(e.palette[t].main,.5)},deleteIconOpacity:.7,deleteIconOpacityHover:1}})),t().createContext(!1),(0,Jt.A)({key:"eui-rtl",stylisPlugins:[er,qt]});We("#524CFF",.08),(0,e.createContext)(null);const Ia=t().forwardRef(((e,r)=>{const n=Jn();return t().createElement(Ma,{viewBox:"0 0 24 24",...e,ref:r},t().createElement("g",{clipPath:"url(#clip0_2503_21505)"},t().createElement("circle",{cx:"12",cy:"12",r:"12",fill:n.palette.primary.main}),t().createElement("path",{fill:n.palette.primary.contrastText,fillRule:"evenodd",clipRule:"evenodd",d:"M17.7753 8.22472C17.5312 7.98064 17.1355 7.98064 16.8914 8.22472L10.6667 14.4494L7.77532 11.5581C7.53124 11.314 7.13551 11.314 6.89143 11.5581C6.64735 11.8021 6.64735 12.1979 6.89143 12.4419L10.2248 15.7753C10.4688 16.0194 10.8646 16.0194 11.1086 15.7753L17.7753 9.10861C18.0194 8.86453 18.0194 8.4688 17.7753 8.22472Z"})),t().createElement("defs",null,t().createElement("clipPath",{id:"clip0_2503_21505"},t().createElement("rect",{width:"24",height:"24",rx:"12",fill:"white"}))))})),Oa=t().forwardRef(((e,r)=>{const n={...e};return n.completed&&(n.as=e=>t().createElement(Ia,{...e})),t().createElement(ga,{...n,ref:r})})),ja=t().forwardRef(((e,r)=>{const n={...e};return n.componentsProps||(n.componentsProps={}),n.componentsProps.label||(n.componentsProps.label={}),n.componentsProps={...n.componentsProps,label:{...n.componentsProps.label,className:f([n.componentsProps.label.className,n.StepIconProps?.active&&"Mui-active",n.StepIconProps?.completed&&"Mui-completed",n.StepIconProps?.error&&"Mui-error"])}},t().createElement(Aa,{...n,ref:r})}));function Ta(e){return Ie("MuiStepper",e)}function Pa(e){return Ie("MuiStepConnector",e)}ja.defaultProps={StepIconComponent:Oa},Oe("MuiStepper",["root","horizontal","vertical","alternativeLabel"]),Oe("MuiStepConnector",["root","horizontal","vertical","alternativeLabel","active","completed","disabled","line","lineHorizontal","lineVertical"]);const Ba=["className"],_a=Ln("div",{name:"MuiStepConnector",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,t[r.orientation],r.alternativeLabel&&t.alternativeLabel,r.completed&&t.completed]}})((({ownerState:e})=>(0,u.A)({flex:"1 1 auto"},"vertical"===e.orientation&&{marginLeft:12},e.alternativeLabel&&{position:"absolute",top:12,left:"calc(-50% + 20px)",right:"calc(50% + 20px)"}))),za=Ln("span",{name:"MuiStepConnector",slot:"Line",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.line,t[`line${Bo(r.orientation)}`]]}})((({ownerState:e,theme:t})=>{const r="light"===t.palette.mode?t.palette.grey[400]:t.palette.grey[600];return(0,u.A)({display:"block",borderColor:t.vars?t.vars.palette.StepConnector.border:r},"horizontal"===e.orientation&&{borderTopStyle:"solid",borderTopWidth:1},"vertical"===e.orientation&&{borderLeftStyle:"solid",borderLeftWidth:1,minHeight:24})}));var La=e.forwardRef((function(t,r){const n=Wn({props:t,name:"MuiStepConnector"}),{className:o}=n,a=(0,d.A)(n,Ba),{alternativeLabel:s,orientation:l="horizontal"}=e.useContext(ea),{active:c,disabled:p,completed:m}=e.useContext(ta),h=(0,u.A)({},n,{alternativeLabel:s,orientation:l,active:c,completed:m,disabled:p}),g=(e=>{const{classes:t,orientation:r,alternativeLabel:n,active:o,completed:a,disabled:i}=e;return Mn({root:["root",r,n&&"alternativeLabel",o&&"active",a&&"completed",i&&"disabled"],line:["line",`line${Bo(r)}`]},Pa,t)})(h);return(0,i.jsx)(_a,(0,u.A)({className:f(g.root,o),ref:r,ownerState:h},a,{children:(0,i.jsx)(za,{className:g.line,ownerState:h})}))}));const Na=["activeStep","alternativeLabel","children","className","component","connector","nonLinear","orientation"],Wa=Ln("div",{name:"MuiStepper",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,t[r.orientation],r.alternativeLabel&&t.alternativeLabel]}})((({ownerState:e})=>(0,u.A)({display:"flex"},"horizontal"===e.orientation&&{flexDirection:"row",alignItems:"center"},"vertical"===e.orientation&&{flexDirection:"column"},e.alternativeLabel&&{alignItems:"flex-start"}))),Fa=(0,i.jsx)(La,{});var Da=e.forwardRef((function(t,r){const n=Wn({props:t,name:"MuiStepper"}),{activeStep:o=0,alternativeLabel:a=!1,children:s,className:l,component:c="div",connector:p=Fa,nonLinear:m=!1,orientation:h="horizontal"}=n,g=(0,d.A)(n,Na),v=(0,u.A)({},n,{alternativeLabel:a,orientation:h,component:c}),b=(e=>{const{orientation:t,alternativeLabel:r,classes:n}=e;return Mn({root:["root",t,r&&"alternativeLabel"]},Ta,n)})(v),y=e.Children.toArray(s).filter(Boolean),x=y.map(((t,r)=>e.cloneElement(t,(0,u.A)({index:r,last:r+1===y.length},t.props)))),w=e.useMemo((()=>({activeStep:o,alternativeLabel:a,connector:p,nonLinear:m,orientation:h})),[o,a,p,m,h]);return(0,i.jsx)(ea.Provider,{value:w,children:(0,i.jsx)(Wa,(0,u.A)({as:c,ownerState:v,className:f(b.root,l),ref:r},g,{children:x}))})}));const Ha=t().forwardRef(((e,r)=>t().createElement(Da,{...e,ref:r}))),Va=()=>{const{step:e}=sn(),t=[(0,a.__)("Get Started","hello-plus"),(0,a.__)("Choose a Kit","hello-plus"),(0,a.__)("Ready to Go","hello-plus")];return(0,i.jsx)(Be,{sx:{width:"100%"},children:(0,i.jsx)(Ha,{activeStep:e,children:t.map(((t,r)=>(0,i.jsx)(ia,{completed:r<e,active:r===e,children:(0,i.jsx)(ja,{children:(0,i.jsx)(qo,{children:t})})},t)))})})},Ga=["className","elementType","ownerState","externalForwardedProps","getSlotOwnerState","internalForwardedProps"],Ka=["component","slots","slotProps"],Ua=["component"];function Xa(e,t){const{className:r,elementType:n,ownerState:o,externalForwardedProps:a,getSlotOwnerState:i,internalForwardedProps:s}=t,l=(0,d.A)(t,Ga),{component:c,slots:p={[e]:void 0},slotProps:f={[e]:void 0}}=a,m=(0,d.A)(a,Ka),h=p[e]||n,g=mn(f[e],o),v=fn((0,u.A)({className:r},l,{externalForwardedProps:"root"===e?m:void 0,externalSlotProps:g})),{props:{component:b},internalRef:y}=v,x=(0,d.A)(v.props,Ua),w=cn(y,null==g?void 0:g.ref,t.ref),k=i?i(x):{},S=(0,u.A)({},o,k),C="root"===e?b||c:b,A=un(h,(0,u.A)({},"root"===e&&!c&&!p[e]&&s,"root"!==e&&!p[e]&&s,x,C&&{as:C},{ref:w}),S);return Object.keys(k).forEach((e=>{delete A[e]})),[h,A]}var Za=e=>{let t;return t=e<1?5.11916*e**2:4.5*Math.log(e+1)+2,(t/100).toFixed(2)};function Ya(e){return Ie("MuiPaper",e)}Oe("MuiPaper",["root","rounded","outlined","elevation","elevation0","elevation1","elevation2","elevation3","elevation4","elevation5","elevation6","elevation7","elevation8","elevation9","elevation10","elevation11","elevation12","elevation13","elevation14","elevation15","elevation16","elevation17","elevation18","elevation19","elevation20","elevation21","elevation22","elevation23","elevation24"]);const qa=["className","component","elevation","square","variant"],Ja=Ln("div",{name:"MuiPaper",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:r}=e;return[t.root,t[r.variant],!r.square&&t.rounded,"elevation"===r.variant&&t[`elevation${r.elevation}`]]}})((({theme:e,ownerState:t})=>{var r;return(0,u.A)({backgroundColor:(e.vars||e).palette.background.paper,color:(e.vars||e).palette.text.primary,transition:e.transitions.create("box-shadow")},!t.square&&{borderRadius:e.shape.borderRadius},"outlined"===t.variant&&{border:`1px solid ${(e.vars||e).palette.divider}`},"elevation"===t.variant&&(0,u.A)({boxShadow:(e.vars||e).shadows[t.elevation]},!e.vars&&"dark"===e.palette.mode&&{backgroundImage:`linear-gradient(${(0,$.X4)("#fff",Za(t.elevation))}, ${(0,$.X4)("#fff",Za(t.elevation))})`},e.vars&&{backgroundImage:null==(r=e.vars.overlays)?void 0:r[t.elevation]}))}));var Qa=e.forwardRef((function(e,t){const r=Wn({props:e,name:"MuiPaper"}),{className:n,component:o="div",elevation:a=1,square:s=!1,variant:l="elevation"}=r,c=(0,d.A)(r,qa),p=(0,u.A)({},r,{component:o,elevation:a,square:s,variant:l}),m=(e=>{const{square:t,elevation:r,variant:n,classes:o}=e;return Mn({root:["root",n,!t&&"rounded","elevation"===n&&`elevation${r}`]},Ya,o)})(p);return(0,i.jsx)(Ja,(0,u.A)({as:o,ownerState:p,className:f(m.root,n),ref:t},c))}));function ei(e){return Ie("MuiAlert",e)}var ti=Oe("MuiAlert",["root","action","icon","message","filled","colorSuccess","colorInfo","colorWarning","colorError","filledSuccess","filledInfo","filledWarning","filledError","outlined","outlinedSuccess","outlinedInfo","outlinedWarning","outlinedError","standard","standardSuccess","standardInfo","standardWarning","standardError"]),ri=bn;const ni={},oi=[];class ai{constructor(){this.currentId=null,this.clear=()=>{null!==this.currentId&&(clearTimeout(this.currentId),this.currentId=null)},this.disposeEffect=()=>this.clear}static create(){return new ai}start(e,t){this.clear(),this.currentId=setTimeout((()=>{this.currentId=null,t()}),e)}}let ii=!0,si=!1;const li=new ai,ci={text:!0,search:!0,url:!0,tel:!0,email:!0,password:!0,number:!0,date:!0,month:!0,week:!0,time:!0,datetime:!0,"datetime-local":!0};function ui(e){e.metaKey||e.altKey||e.ctrlKey||(ii=!0)}function di(){ii=!1}function pi(){"hidden"===this.visibilityState&&si&&(ii=!0)}var fi=function(){const t=e.useCallback((e=>{var t;null!=e&&((t=e.ownerDocument).addEventListener("keydown",ui,!0),t.addEventListener("mousedown",di,!0),t.addEventListener("pointerdown",di,!0),t.addEventListener("touchstart",di,!0),t.addEventListener("visibilitychange",pi,!0))}),[]),r=e.useRef(!1);return{isFocusVisibleRef:r,onFocus:function(e){return!!function(e){const{target:t}=e;try{return t.matches(":focus-visible")}catch(e){}return ii||function(e){const{type:t,tagName:r}=e;return!("INPUT"!==r||!ci[t]||e.readOnly)||"TEXTAREA"===r&&!e.readOnly||!!e.isContentEditable}(t)}(e)&&(r.current=!0,!0)},onBlur:function(){return!!r.current&&(si=!0,li.start(100,(()=>{si=!1})),r.current=!1,!0)},ref:t}};function mi(t,r){var n=Object.create(null);return t&&e.Children.map(t,(function(e){return e})).forEach((function(t){n[t.key]=function(t){return r&&(0,e.isValidElement)(t)?r(t):t}(t)})),n}function hi(e,t,r){return null!=r[t]?r[t]:e.props[t]}function gi(t,r,n){var o=mi(t.children),a=function(e,t){function r(r){return r in t?t[r]:e[r]}e=e||{},t=t||{};var n,o=Object.create(null),a=[];for(var i in e)i in t?a.length&&(o[i]=a,a=[]):a.push(i);var s={};for(var l in t){if(o[l])for(n=0;n<o[l].length;n++){var c=o[l][n];s[o[l][n]]=r(c)}s[l]=r(l)}for(n=0;n<a.length;n++)s[a[n]]=r(a[n]);return s}(r,o);return Object.keys(a).forEach((function(i){var s=a[i];if((0,e.isValidElement)(s)){var l=i in r,c=i in o,u=r[i],d=(0,e.isValidElement)(u)&&!u.props.in;!c||l&&!d?c||!l||d?c&&l&&(0,e.isValidElement)(u)&&(a[i]=(0,e.cloneElement)(s,{onExited:n.bind(null,s),in:u.props.in,exit:hi(s,"exit",t),enter:hi(s,"enter",t)})):a[i]=(0,e.cloneElement)(s,{in:!1}):a[i]=(0,e.cloneElement)(s,{onExited:n.bind(null,s),in:!0,exit:hi(s,"exit",t),enter:hi(s,"enter",t)})}})),a}var vi=Object.values||function(e){return Object.keys(e).map((function(t){return e[t]}))},bi=function(r){function n(e,t){var n,o=(n=r.call(this,e,t)||this).handleExited.bind(function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(n));return n.state={contextValue:{isMounting:!0},handleExited:o,firstRender:!0},n}Dn(n,r);var o=n.prototype;return o.componentDidMount=function(){this.mounted=!0,this.setState({contextValue:{isMounting:!1}})},o.componentWillUnmount=function(){this.mounted=!1},n.getDerivedStateFromProps=function(t,r){var n,o,a=r.children,i=r.handleExited;return{children:r.firstRender?(n=t,o=i,mi(n.children,(function(t){return(0,e.cloneElement)(t,{onExited:o.bind(null,t),in:!0,appear:hi(t,"appear",n),enter:hi(t,"enter",n),exit:hi(t,"exit",n)})}))):gi(t,a,i),firstRender:!1}},o.handleExited=function(e,t){var r=mi(this.props.children);e.key in r||(e.props.onExited&&e.props.onExited(t),this.mounted&&this.setState((function(t){var r=(0,u.A)({},t.children);return delete r[e.key],{children:r}})))},o.render=function(){var e=this.props,r=e.component,n=e.childFactory,o=(0,d.A)(e,["component","childFactory"]),a=this.state.contextValue,i=vi(this.state.children).map(n);return delete o.appear,delete o.enter,delete o.exit,null===r?t().createElement(Hn.Provider,{value:a},i):t().createElement(Hn.Provider,{value:a},t().createElement(r,o,i))},n}(t().Component);bi.propTypes={},bi.defaultProps={component:"div",childFactory:function(e){return e}};var yi=bi,xi=r(7437),wi=Oe("MuiTouchRipple",["root","ripple","rippleVisible","ripplePulsate","child","childLeaving","childPulsate"]);const ki=["center","classes","className"];let Si,Ci,Ai,Mi,Ri=e=>e;const $i=(0,xi.i7)(Si||(Si=Ri` 2 2 0% { 3 3 transform: scale(0); -
hello-plus/trunk/build/js/helloplus-zigzag-fe.asset.php
r3222404 r3250227 1 <?php return array('dependencies' => array(), 'version' => ' 5d63f00029277edb97fb');1 <?php return array('dependencies' => array(), 'version' => '080e5bbe6c5f7a8ed831'); -
hello-plus/trunk/build/js/helloplus-zigzag-fe.js
r3222404 r3250227 1 !function(){"use strict";var e,t,r={},n={};function o(e){var t=n[e];if(void 0!==t)return t.exports;var i=n[e]={exports:{}};return r[e](i,i.exports,o),i.exports}o.m=r,o.d=function(e,t){for(var r in t)o.o(t,r)&&!o.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},o.f={},o.e=function(e){return Promise.all(Object.keys(o.f).reduce((function(t,r){return o.f[r](e,t),t}),[]))},o.u=function(e){return"js/content.js?ver= c31f81b0316f205fd640"},o.miniCssF=function(e){},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},e={},t="hello-plus:",o.l=function(r,n,i,u){if(e[r])e[r].push(n);else{var a,c;if(void 0!==i)for(var l=document.getElementsByTagName("script"),s=0;s<l.length;s++){var f=l[s];if(f.getAttribute("src")==r||f.getAttribute("data-webpack")==t+i){a=f;break}}a||(c=!0,(a=document.createElement("script")).charset="utf-8",a.timeout=120,o.nc&&a.setAttribute("nonce",o.nc),a.setAttribute("data-webpack",t+i),a.src=r),e[r]=[n];var d=function(t,n){a.onerror=a.onload=null,clearTimeout(p);var o=e[r];if(delete e[r],a.parentNode&&a.parentNode.removeChild(a),o&&o.forEach((function(e){return e(n)})),t)return t(n)},p=setTimeout(d.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=d.bind(null,a.onerror),a.onload=d.bind(null,a.onload),c&&document.head.appendChild(a)}},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){var e;o.g.importScripts&&(e=o.g.location+"");var t=o.g.document;if(!e&&t&&(t.currentScript&&"SCRIPT"===t.currentScript.tagName.toUpperCase()&&(e=t.currentScript.src),!e)){var r=t.getElementsByTagName("script");if(r.length)for(var n=r.length-1;n>-1&&(!e||!/^http(s?):/.test(e));)e=r[n--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=e+"../"}(),function(){var e={158:0};o.f.j=function(t,r){var n=o.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var i=new Promise((function(r,o){n=e[t]=[r,o]}));r.push(n[2]=i);var u=o.p+o.u(t),a=new Error;o.l(u,(function(r){if(o.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var i=r&&("load"===r.type?"missing":r.type),u=r&&r.target&&r.target.src;a.message="Loading chunk "+t+" failed.\n("+i+": "+u+")",a.name="ChunkLoadError",a.type=i,a.request=u,n[1](a)}}),"chunk-"+t,t)}};var t=function(t,r){var n,i,u=r[0],a=r[1],c=r[2],l=0;if(u.some((function(t){return 0!==e[t]}))){for(n in a)o.o(a,n)&&(o.m[n]=a[n]);c&&c(o)}for(t&&t(r);l<u.length;l++)i=u[l],o.o(e,i)&&e[i]&&e[i][0](),e[i]=0},r=self.webpackChunkhello_plus=self.webpackChunkhello_plus||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))}();class i extends elementorModules.Module{constructor(){super(),elementorFrontend.elementsHandler.attachHandler("zigzag",[()=>o.e(976).then(o.bind(o,4478))])}}window.addEventListener("elementor/frontend/init",(()=>{new i}))}();1 !function(){"use strict";var e,t,r={},n={};function o(e){var t=n[e];if(void 0!==t)return t.exports;var i=n[e]={exports:{}};return r[e](i,i.exports,o),i.exports}o.m=r,o.d=function(e,t){for(var r in t)o.o(t,r)&&!o.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},o.f={},o.e=function(e){return Promise.all(Object.keys(o.f).reduce((function(t,r){return o.f[r](e,t),t}),[]))},o.u=function(e){return"js/content.js?ver=7118f611e5889d3c652b"},o.miniCssF=function(e){},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},e={},t="hello-plus:",o.l=function(r,n,i,u){if(e[r])e[r].push(n);else{var a,c;if(void 0!==i)for(var l=document.getElementsByTagName("script"),s=0;s<l.length;s++){var f=l[s];if(f.getAttribute("src")==r||f.getAttribute("data-webpack")==t+i){a=f;break}}a||(c=!0,(a=document.createElement("script")).charset="utf-8",a.timeout=120,o.nc&&a.setAttribute("nonce",o.nc),a.setAttribute("data-webpack",t+i),a.src=r),e[r]=[n];var d=function(t,n){a.onerror=a.onload=null,clearTimeout(p);var o=e[r];if(delete e[r],a.parentNode&&a.parentNode.removeChild(a),o&&o.forEach((function(e){return e(n)})),t)return t(n)},p=setTimeout(d.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=d.bind(null,a.onerror),a.onload=d.bind(null,a.onload),c&&document.head.appendChild(a)}},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){var e;o.g.importScripts&&(e=o.g.location+"");var t=o.g.document;if(!e&&t&&(t.currentScript&&"SCRIPT"===t.currentScript.tagName.toUpperCase()&&(e=t.currentScript.src),!e)){var r=t.getElementsByTagName("script");if(r.length)for(var n=r.length-1;n>-1&&(!e||!/^http(s?):/.test(e));)e=r[n--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=e+"../"}(),function(){var e={158:0};o.f.j=function(t,r){var n=o.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var i=new Promise((function(r,o){n=e[t]=[r,o]}));r.push(n[2]=i);var u=o.p+o.u(t),a=new Error;o.l(u,(function(r){if(o.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var i=r&&("load"===r.type?"missing":r.type),u=r&&r.target&&r.target.src;a.message="Loading chunk "+t+" failed.\n("+i+": "+u+")",a.name="ChunkLoadError",a.type=i,a.request=u,n[1](a)}}),"chunk-"+t,t)}};var t=function(t,r){var n,i,u=r[0],a=r[1],c=r[2],l=0;if(u.some((function(t){return 0!==e[t]}))){for(n in a)o.o(a,n)&&(o.m[n]=a[n]);c&&c(o)}for(t&&t(r);l<u.length;l++)i=u[l],o.o(e,i)&&e[i]&&e[i][0](),e[i]=0},r=self.webpackChunkhello_plus=self.webpackChunkhello_plus||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))}();class i extends elementorModules.Module{constructor(){super(),elementorFrontend.elementsHandler.attachHandler("zigzag",[()=>o.e(976).then(o.bind(o,4478))])}}window.addEventListener("elementor/frontend/init",(()=>{new i}))}(); -
hello-plus/trunk/classes/ehp-button.php
r3241372 r3250227 15 15 Widget_Base 16 16 }; 17 17 18 use Elementor\Core\Kits\Documents\Tabs\{ 18 19 Global_Colors, 19 20 Global_Typography 20 21 }; 21 use HelloPlus\Classes\Ehp_Padding; 22 23 use HelloPlus\Classes\{ 24 Ehp_Shapes, 25 Ehp_Padding, 26 }; 22 27 23 28 class Ehp_Button { … … 40 45 $type = $this->context['type'] ?? ''; 41 46 $widget_name = $this->context['widget_name']; 47 $key = $this->context['key'] ?? ''; 48 $key_attr = $key ? '-' . $key : ''; 49 50 $this->widget->remove_render_attribute( $type . '-button' . $key_attr ); 51 42 52 $this->widget_settings = $this->widget->get_settings_for_display(); 43 53 … … 47 57 $button_hover_animation = $this->get_control_value( 'button_hover_animation', '' ); 48 58 $button_has_border = $this->get_control_value( 'show_button_border', '' ); 49 $button_corner_shape = $this->get_control_value( 'button_shape', '' );50 $button_corner_shape_mobile = $this->get_control_value( 'button_shape_mobile', '' );51 $button_corner_shape_tablet = $this->get_control_value( 'button_shape_tablet', '' );52 59 $button_type = $this->get_control_value( 'button_type', '' ); 53 60 … … 71 78 } 72 79 73 if ( ! empty( $button_corner_shape ) ) { 74 $button_classnames[] = 'has-shape-' . $button_corner_shape; 75 76 if ( ! empty( $button_corner_shape_mobile ) ) { 77 $button_classnames[] = 'has-shape-sm-' . $button_corner_shape_mobile; 78 } 79 80 if ( ! empty( $button_corner_shape_tablet ) ) { 81 $button_classnames[] = 'has-shape-md-' . $button_corner_shape_tablet; 82 } 83 } 84 85 $this->widget->add_render_attribute( $type . '-button', [ 80 $shapes = new Ehp_Shapes( $this->widget, [ 81 'widget_name' => $widget_name, 82 'container_prefix' => 'button', 83 'type_prefix' => $type, 84 'render_attribute' => $type . '-button', 85 'key' => $key, 86 ] ); 87 $shapes->add_shape_attributes(); 88 89 $this->widget->add_render_attribute( $type . '-button' . $key_attr, [ 86 90 'class' => $button_classnames, 87 91 ] ); … … 159 163 'active' => true, 160 164 ], 161 'default' => [162 'url' => '',163 'is_external' => true,164 ],165 165 ] 166 166 ); … … 212 212 'dynamic' => [ 213 213 'active' => true, 214 ],215 'default' => [216 'url' => '',217 'is_external' => true,218 214 ], 219 215 'condition' => [ … … 588 584 ); 589 585 590 $this->widget->add_control( 591 $type . '_button_shape', 592 [ 593 'label' => esc_html__( 'Shape', 'hello-plus' ), 594 'type' => Controls_Manager::SELECT, 595 'default' => 'default', 596 'options' => [ 597 'default' => esc_html__( 'Default', 'hello-plus' ), 598 'sharp' => esc_html__( 'Sharp', 'hello-plus' ), 599 'rounded' => esc_html__( 'Rounded', 'hello-plus' ), 600 'round' => esc_html__( 'Round', 'hello-plus' ), 601 'oval' => esc_html__( 'Oval', 'hello-plus' ), 602 'custom' => esc_html__( 'Custom', 'hello-plus' ), 603 ], 604 'condition' => array_merge([ 605 $type . '_button_type' => 'button', 606 ], $add_type_condition), 607 ] 608 ); 609 610 $this->widget->add_responsive_control( 611 $type . '_button_shape_custom', 612 [ 613 'label' => esc_html__( 'Border Radius', 'hello-plus' ), 614 'type' => Controls_Manager::DIMENSIONS, 615 'size_units' => [ 'px', '%', 'em', 'rem' ], 616 'selectors' => [ 617 '{{WRAPPER}} .ehp-' . $widget_name => '--' . $widget_name . '-button-' . $type . '-border-radius-block-end: {{BOTTOM}}{{UNIT}}; --' . $widget_name . '-button-' . $type . '-border-radius-block-start: {{TOP}}{{UNIT}}; --' . $widget_name . '-button-' . $type . '-border-radius-inline-end: {{RIGHT}}{{UNIT}}; --' . $widget_name . '-button-' . $type . '-border-radius-inline-start: {{LEFT}}{{UNIT}};', 618 ], 619 'separator' => 'before', 620 'condition' => array_merge([ 621 $type . '_button_shape' => 'custom', 622 ], $add_type_condition), 623 ] 624 ); 586 $shapes = new Ehp_Shapes( $this->widget, [ 587 'widget_name' => $this->context['widget_name'], 588 'container_prefix' => 'button', 589 'control_prefix' => $type, 590 'type_prefix' => $type, 591 'condition' => array_merge([ 592 $type . '_button_type' => 'button', 593 ], $add_type_condition), 594 ] ); 595 $shapes->add_style_controls(); 625 596 626 597 $this->widget->add_group_control( -
hello-plus/trunk/classes/ehp-image.php
r3241372 r3250227 22 22 use Elementor\Utils as Elementor_Utils; 23 23 24 use HelloPlus\Classes\Ehp_Shapes; 25 24 26 class Ehp_Image { 25 27 private $context = []; … … 47 49 } 48 50 49 if ( ! empty( $settings['image_shape'] ) ) { 50 $image_shape_mobile = $settings['image_shape_mobile']; 51 $image_shape_tablet = $settings['image_shape_tablet']; 52 53 $image_classnames[] = 'has-shape-' . $settings['image_shape']; 54 55 if ( ! empty( $image_shape_mobile ) ) { 56 $image_classnames[] = 'has-shape-sm-' . $image_shape_mobile; 57 } 58 59 if ( ! empty( $image_shape_tablet ) ) { 60 $image_classnames[] = 'has-shape-md-' . $image_shape_tablet; 61 } 62 } 51 $shapes = new Ehp_Shapes( $this->widget, [ 52 'container_prefix' => 'image', 53 'widget_name' => $widget_name, 54 ] ); 55 $image_classnames = array_merge( $image_classnames, $shapes->get_shape_classnames() ); 63 56 64 57 $html = str_replace( '<img ', '<img class="' . esc_attr( implode( ' ', $image_classnames ) ) . '" ', $html ); … … 321 314 ); 322 315 323 $this->widget->add_responsive_control( 324 'image_shape', 325 [ 326 'label' => esc_html__( 'Shape', 'hello-plus' ), 327 'type' => Controls_Manager::SELECT, 328 'default' => 'sharp', 329 'options' => [ 330 'sharp' => esc_html__( 'Sharp', 'hello-plus' ), 331 'rounded' => esc_html__( 'Rounded', 'hello-plus' ), 332 'round' => esc_html__( 'Round', 'hello-plus' ), 333 'oval' => esc_html__( 'Oval', 'hello-plus' ), 334 'custom' => esc_html__( 'Custom', 'hello-plus' ), 335 ], 336 'frontend_available' => true, 337 ] 338 ); 339 340 $this->widget->add_responsive_control( 341 'image_shape_custom', 342 [ 343 'label' => esc_html__( 'Border Radius', 'hello-plus' ), 344 'type' => Controls_Manager::DIMENSIONS, 345 'size_units' => [ 'px', '%', 'em', 'rem' ], 346 'selectors' => [ 347 '{{WRAPPER}} .ehp-' . $widget_name => '--' . $widget_name . '-image-border-radius-block-end: {{BOTTOM}}{{UNIT}}; --' . $widget_name . '-image-border-radius-block-start: {{TOP}}{{UNIT}}; --' . $widget_name . '-image-border-radius-inline-end: {{RIGHT}}{{UNIT}}; --' . $widget_name . '-image-border-radius-inline-start: {{LEFT}}{{UNIT}};', 348 ], 349 'separator' => 'before', 350 'condition' => [ 351 'image_shape' => 'custom', 352 ], 353 ] 354 ); 316 $shapes = new Ehp_Shapes( $this->widget, [ 317 'widget_name' => $widget_name, 318 'container_prefix' => 'image', 319 ] ); 320 $shapes->add_style_controls(); 355 321 356 322 $this->widget->add_group_control( -
hello-plus/trunk/composer.json
r3206391 r3250227 1 1 { 2 2 "name": "elementor/hello-plus", 3 "require ": {3 "require-dev": { 4 4 "squizlabs/php_codesniffer": "^3.10.2", 5 5 "dealerdirect/phpcodesniffer-composer-installer": "^v1.0.0", 6 6 "wp-coding-standards/wpcs": "^3.1.0" 7 }, 8 "require": { 9 "elementor/wp-notifications-package": "^1.1.0" 7 10 }, 8 11 "config": { -
hello-plus/trunk/hello-plus.php
r3241372 r3250227 6 6 * Author: Elementor.com 7 7 * Author URI: https://elementor.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash 8 * Version: 1. 2.18 * Version: 1.3.0 9 9 * License: GPL-3 10 10 * License URI: https://www.gnu.org/licenses/gpl-3.0.en.html … … 31 31 } 32 32 33 define( 'HELLOPLUS_VERSION', '1. 2.1' );33 define( 'HELLOPLUS_VERSION', '1.3.0' ); 34 34 define( 'HELLO_PLUS_VERSION', HELLOPLUS_VERSION ); 35 35 -
hello-plus/trunk/includes/utils.php
r3222404 r3250227 154 154 return version_compare( $version, HELLOPLUS_MIN_ELEMENTOR_VERSION, 'ge' ); 155 155 } 156 157 public static function plugin_title(): string { 158 return __( 'Hello+', 'hello-plus' ); 159 } 160 161 public static function get_widgets_depends(): array { 162 return [ 'helloplus-button', 'helloplus-image', 'helloplus-shapes' ]; 163 } 156 164 } -
hello-plus/trunk/modules/admin/classes/rest/onboarding-settings.php
r3241372 r3250227 10 10 use HelloPlus\Includes\Utils; 11 11 use HelloPlus\Modules\Admin\Classes\Menu\Pages\Setup_Wizard; 12 use WP_REST_Server;13 12 14 13 class Onboarding_Settings { … … 20 19 '/onboarding-settings', 21 20 [ 22 'methods' => WP_REST_Server::READABLE,21 'methods' => \WP_REST_Server::READABLE, 23 22 'callback' => [ $this, 'get_onboarding_settings' ], 24 23 'permission_callback' => function () { -
hello-plus/trunk/modules/admin/components/api-controller.php
r3226373 r3250227 9 9 use HelloPlus\Modules\Admin\Classes\Ajax\Setup_Wizard; 10 10 use HelloPlus\Modules\Admin\Classes\Rest\Onboarding_Settings; 11 11 use HelloPlus\Modules\Admin\Classes\Rest\Whats_New; 12 12 13 13 class Api_Controller { … … 27 27 public function __construct() { 28 28 $this->endpoints['onboarding-settings'] = new Onboarding_Settings(); 29 $this->endpoints['whats-new'] = new Whats_New(); 29 30 30 31 $this->ajax_classes['setup-wizard'] = new Setup_Wizard(); -
hello-plus/trunk/modules/admin/components/scripts-controller.php
r3226373 r3250227 41 41 } 42 42 43 public function enqueue_whats_new_onboarding_scripts() { 44 $screen = get_current_screen(); 45 46 if ( 'plugins' !== $screen->id ) { 47 return; 48 } 49 50 $handle = 'helloplus-whats-new'; 51 $asset_path = HELLOPLUS_SCRIPTS_PATH . $handle . '.asset.php'; 52 $asset_url = HELLOPLUS_SCRIPTS_URL; 53 54 if ( ! file_exists( $asset_path ) ) { 55 throw new \Exception( 'You need to run `npm run build` for the "hello-plus" first.' ); 56 } 57 58 $script_asset = require $asset_path; 59 60 $script_asset['dependencies'][] = 'wp-util'; 61 62 wp_enqueue_script( 63 $handle, 64 HELLOPLUS_SCRIPTS_URL . "$handle.js", 65 $script_asset['dependencies'], 66 $script_asset['version'], 67 true 68 ); 69 70 wp_set_script_translations( $handle, 'hello-plus' ); 71 } 72 43 73 public function __construct() { 44 74 add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_hello_plus_onboarding_scripts' ] ); 75 add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_whats_new_onboarding_scripts' ] ); 45 76 } 46 77 } -
hello-plus/trunk/modules/admin/module.php
r3203090 r3250227 31 31 'Scripts_Controller', 32 32 'Admin_Menu_Controller', 33 'Admin_Controller', 34 'Notificator', 33 35 ]; 34 36 } -
hello-plus/trunk/modules/content/assets/scss/hello-plus-cta.scss
r3241372 r3250227 31 31 --cta-button-secondary-border-width: 2px; 32 32 --cta-button-secondary-border-color: #{$global-colors-secondary}; 33 --cta-button-secondary-border-radius-block-end: #{$corners-shape-default};34 --cta-button-secondary-border-radius-block-start: #{$corners-shape-default};35 --cta-button-secondary-border-radius-inline-end: #{$corners-shape-default};36 --cta-button-secondary-border-radius-inline-start: #{$corners-shape-default};37 33 38 34 --cta-box-border-color: #{$global-colors-secondary}; 39 35 --cta-box-border-width: 1px; 40 41 --cta-border-radius-default: #{$corners-shape-default};42 --cta-border-radius-sharp: #{$corners-shape-sharp};43 --cta-border-radius-rounded: #{$corners-shape-rounded};44 --cta-border-radius-round: #{$corners-shape-round};45 --cta-border-radius-oval: #{$corners-shape-oval};46 47 --cta-box-border-radius-custom-block-end: #{$corners-shape-sharp};48 --cta-box-border-radius-custom-block-start: #{$corners-shape-sharp};49 --cta-box-border-radius-custom-inline-end: #{$corners-shape-sharp};50 --cta-box-border-radius-custom-inline-start: #{$corners-shape-sharp};51 36 52 37 --cta-text-container-flex-grow-default: 0; … … 63 48 padding-inline-start: var(--cta-box-padding-inline-start); 64 49 65 @mixin shapes() {66 &-sharp {67 border-radius: var(--cta-border-radius-sharp);68 }69 70 &-rounded {71 border-radius: var(--cta-border-radius-rounded);72 }73 74 &-round {75 border-radius: var(--cta-border-radius-round);76 }77 78 &-default {79 border-radius: var(--cta-border-radius-default);80 }81 82 &-oval {83 border-radius: var(--cta-border-radius-oval);84 }85 86 &-custom {87 border-top-left-radius: var(--cta-border-radius-block-end);88 border-top-right-radius: var(--cta-border-radius-block-start);89 border-bottom-right-radius: var(--cta-border-radius-inline-end);90 border-bottom-left-radius: var(--cta-border-radius-inline-start);91 }92 }93 94 & .has-shape,95 &.has-shape {96 @include shapes();97 98 &-md {99 @media screen and (max-width: $screen-tablet-max) {100 @include shapes();101 }102 }103 104 &-sm {105 @media screen and (max-width: $screen-mobile-max) {106 @include shapes();107 }108 }109 }110 111 @mixin custom-shape-box() {112 &-rounded {113 --cta-border-shape-rounded: #{$corners-box-shape-rounded};114 }115 116 &-custom {117 --cta-border-radius-block-end: var(--cta-box-border-radius-custom-block-end);118 --cta-border-radius-block-start: var(--cta-box-border-radius-custom-block-start);119 --cta-border-radius-inline-end: var(--cta-box-border-radius-custom-inline-end);120 --cta-border-radius-inline-start: var(--cta-box-border-radius-custom-inline-start);121 }122 }123 124 &.has-shape {125 @include custom-shape-box();126 127 &-md {128 @media screen and (max-width: $screen-tablet-max) {129 @include custom-shape-box();130 }131 }132 133 &-sm {134 @media screen and (max-width: $screen-mobile-max) {135 @include custom-shape-box();136 }137 }138 }139 140 50 &.has-border { 141 51 border-color: var(--cta-box-border-color); … … 343 253 justify-content: var(--cta-content-position-vertical); 344 254 } 255 } 256 } 257 258 &-storytelling { 259 260 & .ehp-cta__elements-container { 261 max-width: unset; 262 } 263 264 & .ehp-cta__text-container, 265 & .ehp-cta__ctas-container { 266 margin: 0 auto; 267 max-width: var(--cta-content-width); 345 268 } 346 269 } … … 393 316 } 394 317 318 &.has-shape-custom.shape-type { 319 &-box { 320 --ehp-shapes-border-radius-block-end: var(--cta-box-border-radius-block-end, var(--cta-box-border-radius-custom-block-end)); 321 --ehp-shapes-border-radius-block-start: var(--cta-box-border-radius-block-start, var(--cta-box-border-radius-custom-block-start)); 322 --ehp-shapes-border-radius-inline-end: var(--cta-box-border-radius-inline-end, var(--cta-box-border-radius-custom-inline-end)); 323 --ehp-shapes-border-radius-inline-start: var(--cta-box-border-radius-inline-start, var(--cta-box-border-radius-custom-inline-start)); 324 } 325 326 &-image { 327 --ehp-shapes-border-radius-block-end: var(--cta-image-border-radius-block-end, var(--cta-image-border-radius-custom-block-end)); 328 --ehp-shapes-border-radius-block-start: var(--cta-image-border-radius-block-start, var(--cta-image-border-radius-custom-block-start)); 329 --ehp-shapes-border-radius-inline-end: var(--cta-image-border-radius-inline-end, var(--cta-image-border-radius-custom-inline-end)); 330 --ehp-shapes-border-radius-inline-start: var(--cta-image-border-radius-inline-start, var(--cta-image-border-radius-custom-inline-start)); 331 } 332 } 333 395 334 &__ctas-container { 396 335 align-items: var(--cta-buttons-vertical-position); -
hello-plus/trunk/modules/content/assets/scss/hello-plus-flex-hero.scss
r3241372 r3250227 37 37 --flex-hero-button-secondary-border-width: 2px; 38 38 --flex-hero-button-secondary-border-color: #{$global-colors-secondary}; 39 --flex-hero-button-secondary-border-radius-block-end: #{$corners-shape-default};40 --flex-hero-button-secondary-border-radius-block-start: #{$corners-shape-default};41 --flex-hero-button-secondary-border-radius-inline-end: #{$corners-shape-default};42 --flex-hero-button-secondary-border-radius-inline-start: #{$corners-shape-default};43 39 44 40 --flex-hero-box-border-color: #{$global-colors-secondary}; 45 41 --flex-hero-box-border-width: 1px; 46 47 --flex-hero-border-radius-default: #{$corners-shape-default};48 --flex-hero-border-radius-sharp: #{$corners-shape-sharp};49 --flex-hero-border-radius-rounded: #{$corners-shape-rounded};50 --flex-hero-border-radius-round: #{$corners-shape-round};51 --flex-hero-border-radius-oval: #{$corners-shape-oval};52 53 --flex-hero-box-border-radius-custom-block-end: #{$corners-shape-sharp};54 --flex-hero-box-border-radius-custom-block-start: #{$corners-shape-sharp};55 --flex-hero-box-border-radius-custom-inline-end: #{$corners-shape-sharp};56 --flex-hero-box-border-radius-custom-inline-start: #{$corners-shape-sharp};57 42 58 43 display: flex; … … 116 101 &.is-full-height-widescreen { 117 102 @include full-height($screen-widescreen-min, null); 118 }119 120 @mixin shapes() {121 &-sharp {122 border-radius: var(--flex-hero-border-radius-sharp);123 }124 125 &-rounded {126 border-radius: var(--flex-hero-border-radius-rounded);127 }128 129 &-round {130 border-radius: var(--flex-hero-border-radius-round);131 }132 133 &-default {134 border-radius: var(--flex-hero-border-radius-default);135 }136 137 &-oval {138 border-radius: var(--flex-hero-border-radius-oval);139 }140 141 &-custom {142 border-top-left-radius: var(--flex-hero-border-radius-block-end);143 border-top-right-radius: var(--flex-hero-border-radius-block-start);144 border-bottom-right-radius: var(--flex-hero-border-radius-inline-end);145 border-bottom-left-radius: var(--flex-hero-border-radius-inline-start);146 }147 }148 149 & .has-shape,150 &.has-shape {151 @include shapes();152 153 &-md {154 @media screen and (max-width: $screen-tablet-max) {155 @include shapes();156 }157 }158 159 &-sm {160 @media screen and (max-width: $screen-mobile-max) {161 @include shapes();162 }163 }164 103 } 165 104 … … 210 149 } 211 150 212 @mixin custom-shape-box() { 213 &-rounded { 214 --flex-hero-border-shape-rounded: #{$corners-box-shape-rounded}; 215 } 216 217 &-custom { 218 --flex-hero-border-radius-block-end: var(--flex-hero-box-border-radius-custom-block-end); 219 --flex-hero-border-radius-block-start: var(--flex-hero-box-border-radius-custom-block-start); 220 --flex-hero-border-radius-inline-end: var(--flex-hero-box-border-radius-custom-inline-end); 221 --flex-hero-border-radius-inline-start: var(--flex-hero-box-border-radius-custom-inline-start); 222 } 223 } 224 225 &.has-shape { 226 @include custom-shape-box(); 227 228 &-md { 229 @media screen and (max-width: $screen-tablet-max) { 230 @include custom-shape-box(); 231 } 232 } 233 234 &-sm { 235 @media screen and (max-width: $screen-mobile-max) { 236 @include custom-shape-box(); 237 } 151 &.has-shape-custom.shape-type { 152 &-box { 153 --ehp-shapes-border-radius-block-end: var(--flex-hero-box-border-radius-block-end, var(--flex-hero-box-border-radius-custom-block-end)); 154 --ehp-shapes-border-radius-block-start: var(--flex-hero-box-border-radius-block-start, var(--flex-hero-box-border-radius-custom-block-start)); 155 --ehp-shapes-border-radius-inline-end: var(--flex-hero-box-border-radius-inline-end, var(--flex-hero-box-border-radius-custom-inline-end)); 156 --ehp-shapes-border-radius-inline-start: var(--flex-hero-box-border-radius-inline-start, var(--flex-hero-box-border-radius-custom-inline-start)); 157 } 158 159 &-image { 160 --ehp-shapes-border-radius-block-end: var(--flex-hero-image-border-radius-block-end, var(--flex-hero-image-border-radius-custom-block-end)); 161 --ehp-shapes-border-radius-block-start: var(--flex-hero-image-border-radius-block-start, var(--flex-hero-image-border-radius-custom-block-start)); 162 --ehp-shapes-border-radius-inline-end: var(--flex-hero-image-border-radius-inline-end, var(--flex-hero-image-border-radius-custom-inline-end)); 163 --ehp-shapes-border-radius-inline-start: var(--flex-hero-image-border-radius-inline-start, var(--flex-hero-image-border-radius-custom-inline-start)); 238 164 } 239 165 } -
hello-plus/trunk/modules/content/assets/scss/hello-plus-hero.scss
r3241372 r3250227 24 24 --hero-button-primary-border-width: 0; 25 25 --hero-button-primary-border-color: transparent; 26 --hero-button-primary-border-radius-block-end: #{$corners-shape-default};27 --hero-button-primary-border-radius-block-start: #{$corners-shape-default};28 --hero-button-primary-border-radius-inline-end: #{$corners-shape-default};29 --hero-button-primary-border-radius-inline-start: #{$corners-shape-default};30 26 31 27 display: flex; -
hello-plus/trunk/modules/content/assets/scss/hello-plus-zigzag.scss
r3241372 r3250227 41 41 border-style: solid; 42 42 border-width: var(--zigzag-wrapper-border-width); 43 border-radius: var(--zigzag-wrapper-border-radius);44 43 } 45 44 -
hello-plus/trunk/modules/content/classes/render/widget-cta-render.php
r3241372 r3250227 6 6 Ehp_Button, 7 7 Ehp_Image, 8 Ehp_Shapes, 8 9 }; 9 10 … … 36 37 $has_border = $this->settings['show_box_border']; 37 38 38 $box_shape = $this->settings['box_shape'];39 $box_shape_mobile = $this->settings['box_shape_mobile'];40 $box_shape_tablet = $this->settings['box_shape_tablet'];41 42 39 if ( ! empty( $layout_full_height_controls ) ) { 43 40 foreach ( $layout_full_height_controls as $breakpoint ) { … … 54 51 } 55 52 56 if ( ! empty( $box_shape ) ) { 57 $layout_classnames[] = 'has-shape-' . $box_shape; 58 59 if ( ! empty( $box_shape_mobile ) ) { 60 $layout_classnames[] = 'has-shape-sm-' . $box_shape_mobile; 61 } 62 63 if ( ! empty( $box_shape_tablet ) ) { 64 $layout_classnames[] = 'has-shape-md-' . $box_shape_tablet; 65 } 66 } 53 $shapes = new Ehp_Shapes( $this->widget, [ 54 'container_prefix' => 'box', 55 'render_attribute' => 'layout', 56 'widget_name' => $this->widget->get_name(), 57 ] ); 58 $shapes->add_shape_attributes(); 67 59 68 60 $this->widget->add_render_attribute( 'layout', [ -
hello-plus/trunk/modules/content/classes/render/widget-flex-hero-render.php
r3241372 r3250227 11 11 Ehp_Button, 12 12 Ehp_Image, 13 Ehp_Shapes, 13 14 }; 14 15 … … 47 48 $layout_image_position = $this->settings['layout_image_position']; 48 49 $has_border = $this->settings['show_box_border']; 49 $box_shape = $this->settings['box_shape'];50 $box_shape_mobile = $this->settings['box_shape_mobile'];51 $box_shape_tablet = $this->settings['box_shape_tablet'];52 50 53 51 if ( ! empty( $layout_full_height_controls ) ) { … … 76 74 } 77 75 78 if ( ! empty( $box_shape ) ) { 79 $layout_classnames[] = 'has-shape-' . $box_shape; 80 81 if ( ! empty( $box_shape_mobile ) ) { 82 $layout_classnames[] = 'has-shape-sm-' . $box_shape_mobile; 83 } 84 85 if ( ! empty( $box_shape_tablet ) ) { 86 $layout_classnames[] = 'has-shape-md-' . $box_shape_tablet; 87 } 88 } 76 $shapes = new Ehp_Shapes( $this->widget, [ 77 'container_prefix' => 'box', 78 'render_attribute' => 'layout', 79 'widget_name' => $this->widget->get_name(), 80 ] ); 81 $shapes->add_shape_attributes(); 89 82 90 83 $this->widget->add_render_attribute( 'layout', [ -
hello-plus/trunk/modules/content/classes/render/widget-zig-zag-render.php
r3241372 r3250227 184 184 <?php } ?> 185 185 <?php if ( ! empty( $item[ $graphic_element . '_button_text' ] ) ) { 186 $this->render_cta_button( $item );186 $this->render_cta_button( $item, $key ); 187 187 } ?> 188 188 </div> … … 190 190 } 191 191 192 public function render_cta_button( $item ) {192 public function render_cta_button( $item, $key ) { 193 193 $graphic_element = $this->settings['graphic_element']; 194 194 … … 199 199 'button_hover_animation' => $this->settings['primary_button_hover_animation'] ?? '', 200 200 'button_has_border' => $this->settings['primary_show_button_border'], 201 'button_corner_shape' => $this->settings['primary_button_shape'] ?? '',202 'button_shape_mobile' => $this->settings['primary_button_shape_mobile'] ?? '',203 'button_shape_tablet' => $this->settings['primary_button_shape_tablet'] ?? '',204 201 'button_type' => $this->settings['primary_button_type'] ?? '', 205 202 ]; … … 208 205 'type' => 'primary', 209 206 'widget_name' => $this->widget->get_name(), 207 'key' => $key, 210 208 ], $defaults ); 211 209 ?> -
hello-plus/trunk/modules/content/module.php
r3238471 r3250227 51 51 'helloplus-zigzag-fe', 52 52 HELLOPLUS_SCRIPTS_URL . 'helloplus-zigzag-fe.js', 53 [ 'elementor-frontend' ],53 [ 'elementor-frontend', 'elementor-common', 'elementor-frontend-modules' ], 54 54 HELLOPLUS_VERSION, 55 55 true -
hello-plus/trunk/modules/content/widgets/cta.php
r3241372 r3250227 16 16 17 17 use HelloPlus\Modules\Content\Base\Traits\Shared_Content_Traits; 18 use HelloPlus\Modules\Content\Classes\Choose_Img_Control; 18 19 use HelloPlus\Modules\Content\Classes\Render\Widget_CTA_Render; 19 20 use HelloPlus\Modules\Theme\Module as Theme_Module; … … 22 23 Ehp_Image, 23 24 Ehp_Padding, 25 Ehp_Shapes, 24 26 }; 27 use HelloPlus\Includes\Utils; 25 28 26 29 use Elementor\Utils as Elementor_Utils; … … 51 54 52 55 public function get_style_depends(): array { 53 return [ 'helloplus-cta', 'helloplus-button', 'helloplus-image' ];56 return array_merge( [ 'helloplus-cta' ], Utils::get_widgets_depends() ); 54 57 } 55 58 … … 93 96 [ 94 97 'label' => esc_html__( 'Preset', 'hello-plus' ), 95 'type' => Controls_Manager::SELECT, 96 'options' => [ 97 'focus' => esc_html__( 'Focus', 'hello-plus' ), 98 'streamline' => esc_html__( 'Streamline', 'hello-plus' ), 99 'showcase' => esc_html__( 'Showcase', 'hello-plus' ), 100 'storytelling' => esc_html__( 'Storytelling', 'hello-plus' ), 101 ], 98 'type' => Choose_Img_Control::CONTROL_NAME, 102 99 'default' => 'focus', 103 ] 104 ); 105 106 $this->add_control( 107 'layout_info_focus', 108 [ 109 'type' => Controls_Manager::ALERT, 110 'alert_type' => 'info', 111 'content' => esc_html__( 'Highlight a single, full-width CTA to maximize impact.', 'hello-plus' ), 112 'condition' => [ 113 'layout_preset' => 'focus', 114 ], 115 ] 116 ); 117 118 $this->add_control( 119 'layout_info_streamline', 120 [ 121 'type' => Controls_Manager::ALERT, 122 'alert_type' => 'info', 123 'content' => esc_html__( 'Pair alongside other CTAs and elements for a seamless flow.', 'hello-plus' ), 124 'condition' => [ 125 'layout_preset' => 'streamline', 126 ], 127 ] 128 ); 129 130 $this->add_control( 131 'layout_info_storytelling', 132 [ 133 'type' => Controls_Manager::ALERT, 134 'alert_type' => 'info', 135 'content' => esc_html__( 'Focus on a narrative with supporting visuals.', 'hello-plus' ), 136 'condition' => [ 137 'layout_preset' => 'storytelling', 138 ], 139 ] 140 ); 141 142 $this->add_control( 143 'layout_info_showcase', 144 [ 145 'type' => Controls_Manager::ALERT, 146 'alert_type' => 'info', 147 'content' => esc_html__( 'Highlight key concepts with a balanced layout.', 'hello-plus' ), 148 'condition' => [ 149 'layout_preset' => 'showcase', 150 ], 100 'label_block' => true, 101 'columns' => 2, 102 'options' => [ 103 'focus' => [ 104 'title' => wp_kses_post( "Focus:\nHighlight a single, full-width\nCTA to maximize impact." ), 105 'image' => HELLOPLUS_IMAGES_URL . 'cta-focus.svg', 106 'hover_image' => true, 107 ], 108 'streamline' => [ 109 'title' => wp_kses_post( "Streamline:\nPair alongside other CTAs\nand elements for a seamless flow." ), 110 'image' => HELLOPLUS_IMAGES_URL . 'cta-streamline.svg', 111 'hover_image' => true, 112 ], 113 'showcase' => [ 114 'title' => wp_kses_post( "Showcase:\nHighlight key concepts\nwith a balanced layout." ), 115 'image' => HELLOPLUS_IMAGES_URL . 'cta-showcase.svg', 116 'hover_image' => true, 117 ], 118 'storytelling' => [ 119 'title' => wp_kses_post( "Storytelling:\nFocus on a narrative\nwith supporting visuals." ), 120 'image' => HELLOPLUS_IMAGES_URL . 'cta-storytelling.svg', 121 'hover_image' => true, 122 ], 123 ], 124 'frontend_available' => true, 151 125 ] 152 126 ); … … 367 341 ], 368 342 'frontend_available' => true, 369 'default' => is_rtl() ? 'start' : 'end',370 'tablet_default' => is_rtl() ? 'start' : 'end',371 'mobile_default' => is_rtl() ? 'start' : 'end',343 'default' => 'start', 344 'tablet_default' => 'start', 345 'mobile_default' => 'start', 372 346 'condition' => [ 373 347 'layout_preset' => 'showcase', … … 743 717 ); 744 718 745 $this->add_responsive_control( 746 'box_shape', 747 [ 748 'label' => esc_html__( 'Shape', 'hello-plus' ), 749 'type' => Controls_Manager::SELECT, 750 'default' => 'sharp', 751 'options' => [ 752 'sharp' => esc_html__( 'Sharp', 'hello-plus' ), 753 'rounded' => esc_html__( 'Rounded', 'hello-plus' ), 754 'custom' => esc_html__( 'Custom', 'hello-plus' ), 755 ], 756 'frontend_available' => true, 757 ] 758 ); 759 760 $this->add_responsive_control( 761 'box_shape_custom', 762 [ 763 'label' => esc_html__( 'Border Radius', 'hello-plus' ), 764 'type' => Controls_Manager::DIMENSIONS, 765 'size_units' => [ 'px', '%', 'em', 'rem' ], 766 'selectors' => [ 767 '{{WRAPPER}} .ehp-cta' => '--cta-box-border-radius-custom-block-end: {{BOTTOM}}{{UNIT}}; --cta-box-border-radius-custom-block-start: {{TOP}}{{UNIT}}; --cta-box-border-radius-custom-inline-end: {{RIGHT}}{{UNIT}}; --cta-box-border-radius-custom-inline-start: {{LEFT}}{{UNIT}};', 768 ], 769 'condition' => [ 770 'box_shape' => 'custom', 771 ], 772 ] 773 ); 719 $shapes = new Ehp_Shapes( $this, [ 720 'widget_name' => $this->get_name(), 721 'container_prefix' => 'box', 722 ] ); 723 $shapes->add_style_controls(); 774 724 775 725 $this->add_group_control( -
hello-plus/trunk/modules/content/widgets/flex-hero.php
r3241372 r3250227 23 23 Ehp_Image, 24 24 Ehp_Padding, 25 Ehp_Shapes, 25 26 }; 27 use HelloPlus\Includes\Utils; 26 28 27 29 class Flex_Hero extends Widget_Base { … … 50 52 51 53 public function get_style_depends(): array { 52 return [ 'helloplus-flex-hero', 'helloplus-button', 'helloplus-image' ];54 return array_merge( [ 'helloplus-flex-hero' ], Utils::get_widgets_depends() ); 53 55 } 54 56 … … 103 105 'showcase' => [ 104 106 'title' => wp_kses_post( "Showcase:\nHighlight key concepts\nwith a balanced layout." ), 105 'image' => HELLOPLUS_IMAGES_URL . ' showcase.svg',107 'image' => HELLOPLUS_IMAGES_URL . 'flex-hero-showcase.svg', 106 108 'hover_image' => true, 107 109 ], 108 110 'storytelling' => [ 109 111 'title' => wp_kses_post( "Storytelling:\nFocus on a narrative\nwith supporting visuals." ), 110 'image' => HELLOPLUS_IMAGES_URL . ' storytelling.svg',112 'image' => HELLOPLUS_IMAGES_URL . 'flex-hero-storytelling.svg', 111 113 'hover_image' => true, 112 114 ], … … 780 782 ); 781 783 782 $this->add_responsive_control( 783 'box_shape', 784 [ 785 'label' => esc_html__( 'Shape', 'hello-plus' ), 786 'type' => Controls_Manager::SELECT, 787 'default' => 'sharp', 788 'options' => [ 789 'sharp' => esc_html__( 'Sharp', 'hello-plus' ), 790 'rounded' => esc_html__( 'Rounded', 'hello-plus' ), 791 'custom' => esc_html__( 'Custom', 'hello-plus' ), 792 ], 793 'frontend_available' => true, 794 ] 795 ); 796 797 $this->add_responsive_control( 798 'box_shape_custom', 799 [ 800 'label' => esc_html__( 'Border Radius', 'hello-plus' ), 801 'type' => Controls_Manager::DIMENSIONS, 802 'size_units' => [ 'px', '%', 'em', 'rem' ], 803 'selectors' => [ 804 '{{WRAPPER}} .ehp-flex-hero' => '--flex-hero-box-border-radius-custom-block-end: {{BOTTOM}}{{UNIT}}; --flex-hero-box-border-radius-custom-block-start: {{TOP}}{{UNIT}}; --flex-hero-box-border-radius-custom-inline-end: {{RIGHT}}{{UNIT}}; --flex-hero-box-border-radius-custom-inline-start: {{LEFT}}{{UNIT}};', 805 ], 806 'condition' => [ 807 'box_shape' => 'custom', 808 ], 809 ] 810 ); 784 $shapes = new Ehp_Shapes( $this, [ 785 'widget_name' => $this->get_name(), 786 'container_prefix' => 'box', 787 ] ); 788 $shapes->add_style_controls(); 811 789 812 790 $this->add_group_control( -
hello-plus/trunk/modules/content/widgets/hero.php
r3241372 r3250227 14 14 use Elementor\Core\Kits\Documents\Tabs\Global_Colors; 15 15 16 use HelloPlus\Includes\Utils; 16 17 use HelloPlus\Modules\Content\Base\Traits\Shared_Content_Traits; 17 18 use HelloPlus\Modules\Content\Classes\Render\Widget_Hero_Render; … … 23 24 }; 24 25 26 /** 27 * @deprecated 1.3.0 Use `Flex Hero` widget instead. 28 */ 25 29 class Hero extends Widget_Base { 26 30 … … 47 51 } 48 52 53 /* Deprecated Widget */ 54 public function show_in_panel() { 55 return false; 56 } 57 49 58 public function get_style_depends(): array { 50 59 return [ 'helloplus-hero', 'helloplus-button', 'helloplus-image' ]; … … 58 67 59 68 protected function register_controls() { 69 $this->deprecated_notice( Utils::plugin_title(), '1.3.0', '', esc_html__( 'Flex Hero', 'hello-plus' ) ); 70 60 71 $this->add_content_section(); 61 72 $this->add_style_section(); -
hello-plus/trunk/modules/content/widgets/zig-zag.php
r3241372 r3250227 11 11 use Elementor\Group_Control_Typography; 12 12 use Elementor\Repeater; 13 use Elementor\Utils;14 13 use Elementor\Widget_Base; 15 14 use Elementor\Core\Kits\Documents\Tabs\{ … … 17 16 Global_Colors 18 17 }; 18 use Elementor\Utils as Elementor_Utils; 19 19 20 20 use HelloPlus\Modules\Content\Classes\{ … … 28 28 Ehp_Padding, 29 29 }; 30 use HelloPlus\Includes\Utils; 30 31 31 32 class Zig_Zag extends Widget_Base { … … 52 53 53 54 public function get_style_depends(): array { 54 return [ 'helloplus-zigzag', 'helloplus-button', 'helloplus-image' ];55 return array_merge( [ 'helloplus-zigzag' ], Utils::get_widgets_depends() ); 55 56 } 56 57 … … 76 77 protected function add_style_section() { 77 78 $this->add_style_layout_section(); 79 $this->add_style_text_section(); 80 $this->add_style_cta_section(); 78 81 $this->add_style_image_section(); 79 82 $this->add_style_icon_section(); 80 $this->add_style_text_section();81 $this->add_style_cta_section();82 83 $this->add_style_box_section(); 83 84 } … … 162 163 'type' => Controls_Manager::MEDIA, 163 164 'default' => [ 164 'url' => Utils::get_placeholder_image_src(),165 'url' => Elementor_Utils::get_placeholder_image_src(), 165 166 ], 166 167 ] … … 223 224 'dynamic' => [ 224 225 'active' => true, 225 ],226 'default' => [227 'url' => '',228 'is_external' => true,229 226 ], 230 227 ] -
hello-plus/trunk/modules/template-parts/assets/scss/hello-plus-header.scss
r3241372 r3250227 87 87 --header-contact-button-spacing: 12px; 88 88 89 --header-border-radius-default: #{$corners-shape-default};90 --header-border-radius-sharp: #{$corners-shape-sharp};91 --header-border-radius-rounded: #{$corners-shape-rounded};92 --header-border-radius-round: #{$corners-shape-round};93 --header-border-radius-oval: #{$corners-shape-oval};94 95 --header-button-border-radius-custom-block-end: #{$corners-shape-default};96 --header-button-border-radius-custom-block-start: #{$corners-shape-default};97 --header-button-border-radius-custom-inline-end: #{$corners-shape-default};98 --header-button-border-radius-custom-inline-start: #{$corners-shape-default};99 100 89 --header-box-padding-block-start: 16px; 101 90 --header-box-padding-block-end: 16px; … … 146 135 backdrop-filter: blur(var(--header-blur-background-level)); 147 136 } 148 149 @mixin shapes() {150 &-sharp {151 border-radius: var(--header-border-radius-sharp);152 }153 137 154 &-rounded { 155 border-radius: var(--header-border-radius-rounded); 156 } 157 158 &-round { 159 border-radius: var(--header-border-radius-round); 160 } 161 162 &-default { 163 border-radius: var(--header-border-radius-default); 164 } 165 166 &-oval { 167 border-radius: var(--header-border-radius-oval); 168 } 169 170 &-custom { 171 border-top-left-radius: var(--header-border-radius-block-end); 172 border-top-right-radius: var(--header-border-radius-block-start); 173 border-bottom-right-radius: var(--header-border-radius-inline-end); 174 border-bottom-left-radius: var(--header-border-radius-inline-start); 175 } 176 } 177 178 & .has-shape, 179 &.has-shape { 180 @include shapes(); 181 182 &-md { 183 @media screen and (max-width: $screen-tablet-max) { 184 @include shapes(); 185 } 186 } 187 188 &-sm { 189 @media screen and (max-width: $screen-mobile-max) { 190 @include shapes(); 191 } 192 } 193 } 194 195 @mixin custom-shape-float() { 196 &-custom { 197 --header-border-radius-block-end: var(--header-float-border-radius-custom-block-end); 198 --header-border-radius-block-start: var(--header-float-border-radius-custom-block-start); 199 --header-border-radius-inline-end: var(--header-float-border-radius-custom-inline-end); 200 --header-border-radius-inline-start: var(--header-float-border-radius-custom-inline-start); 201 } 202 } 203 204 &.has-behavior-float.has-shape { 205 @include custom-shape-float(); 206 207 &-md { 208 @media screen and (max-width: $screen-tablet-max) { 209 @include custom-shape-float(); 210 } 211 } 212 213 &-sm { 214 @media screen and (max-width: $screen-mobile-max) { 215 @include custom-shape-float(); 216 } 217 } 138 &.shape-type-float.has-shape-custom { 139 --ehp-shapes-border-radius-block-end: var(--header-float-border-radius-custom-block-end, var(--header-float-border-radius-block-end)); 140 --ehp-shapes-border-radius-block-start: var(--header-float-border-radius-custom-block-start, var(--header-float-border-radius-block-start)); 141 --ehp-shapes-border-radius-inline-end: var(--header-float-border-radius-custom-inline-end, var(--header-float-border-radius-inline-end)); 142 --ehp-shapes-border-radius-inline-start: var(--header-float-border-radius-custom-inline-start, var(--header-float-border-radius-inline-start)); 218 143 } 219 144 … … 382 307 } 383 308 384 @mixin custom-shape-submenu() { 385 &-custom { 386 --header-border-radius-block-end: var(--header-submenu-border-radius-custom-block-end); 387 --header-border-radius-block-start: var(--header-submenu-border-radius-custom-block-start); 388 --header-border-radius-inline-end: var(--header-submenu-border-radius-custom-inline-end); 389 --header-border-radius-inline-start: var(--header-submenu-border-radius-custom-inline-start); 390 } 391 } 392 393 &.has-shape { 394 @include custom-shape-submenu(); 309 &.shape-type-submenu.has-shape-custom { 310 --ehp-shapes-border-radius-block-end: var(--header-submenu-border-radius-custom-block-end, var(--header-submenu-border-radius-block-end)); 311 --ehp-shapes-border-radius-block-start: var(--header-submenu-border-radius-custom-block-start, var(--header-submenu-border-radius-block-start)); 312 --ehp-shapes-border-radius-inline-end: var(--header-submenu-border-radius-custom-inline-end, var(--header-submenu-border-radius-inline-end)); 313 --ehp-shapes-border-radius-inline-start: var(--header-submenu-border-radius-custom-inline-start, var(--header-submenu-border-radius-inline-start)); 395 314 } 396 315 -
hello-plus/trunk/modules/template-parts/classes/render/widget-header-render.php
r3241372 r3250227 14 14 15 15 use HelloPlus\Modules\TemplateParts\Widgets\Ehp_Header; 16 use HelloPlus\Classes\Ehp_Button; 16 use HelloPlus\Classes\{ 17 Ehp_Button, 18 Ehp_Shapes, 19 }; 17 20 18 21 /** … … 40 43 $behavior_scale_logo = $this->settings['behavior_sticky_scale_logo']; 41 44 $behavior_scale_title = $this->settings['behavior_sticky_scale_title']; 42 $behavior_float_shape = $this->settings['behavior_float_shape'];43 $behavior_float_shape_tablet = $this->settings['behavior_float_shape_tablet'] ?? '';44 $behavior_float_shape_mobile = $this->settings['behavior_float_shape_mobile'] ?? '';45 45 $has_blur_background = $this->settings['blur_background']; 46 46 … … 67 67 } 68 68 69 if ( ! empty( $behavior_float_shape ) ) { 70 $layout_classnames[] = 'has-shape-' . $behavior_float_shape; 71 72 if ( ! empty( $behavior_float_shape_mobile ) ) { 73 $layout_classnames[] = 'has-shape-sm-' . $behavior_float_shape_mobile; 74 } 75 76 if ( ! empty( $behavior_float_shape_tablet ) ) { 77 $layout_classnames[] = 'has-shape-md-' . $behavior_float_shape_tablet; 78 } 79 } 69 $shapes = new Ehp_Shapes( $this->widget, [ 70 'container_prefix' => 'float', 71 'control_prefix' => 'behavior', 72 'render_attribute' => 'layout', 73 'widget_name' => 'header', 74 ] ); 75 $shapes->add_shape_attributes(); 80 76 81 77 if ( ! empty( $behavior_on_scroll ) ) { … … 264 260 $toggle_icon = $this->settings['navigation_menu_icon']; 265 261 $toggle_classname = 'ehp-header__button-toggle'; 262 $show_contact_buttons = 'yes' === $this->settings['contact_buttons_show'] || 'yes' === $this->settings['contact_buttons_show_connect']; 266 263 267 264 $this->widget->add_render_attribute( 'button-toggle', [ … … 275 272 ?> 276 273 <div class="ehp-header__side-toggle"> 277 <?php if ( 'yes' === $this->settings['contact_buttons_show']) {274 <?php if ( $show_contact_buttons ) { 278 275 $this->render_contact_buttons(); 279 276 } ?> … … 298 295 $responsive_button_width = $this->settings['cta_responsive_width'] ?? ''; 299 296 $ctas_container_classnames = self::CTAS_CONTAINER_CLASSNAME; 297 $show_contact_buttons = 'yes' === $this->settings['contact_buttons_show'] || 'yes' === $this->settings['contact_buttons_show_connect']; 300 298 301 299 if ( '' !== $responsive_button_width ) { … … 309 307 <div <?php $this->widget->print_render_attribute_string( 'ctas-container' ); ?>> 310 308 <?php 311 if ( 'yes' === $this->settings['contact_buttons_show']) {309 if ( $show_contact_buttons ) { 312 310 $this->render_contact_buttons(); 313 311 } … … 542 540 public function handle_sub_menu_classes() { 543 541 $submenu_layout = $this->settings['style_submenu_layout'] ?? 'horizontal'; 544 $submenu_shape = $this->settings['style_submenu_shape'];545 542 546 543 $dropdown_classnames = [ 'ehp-header__dropdown' ]; 547 544 $dropdown_classnames[] = 'has-layout-' . $submenu_layout; 548 545 549 if ( ! empty( $submenu_shape ) ) { 550 $dropdown_classnames[] = 'has-shape-' . $submenu_shape; 551 } 552 553 return $dropdown_classnames; 546 $shapes = new Ehp_Shapes( $this->widget, [ 547 'container_prefix' => 'submenu', 548 'control_prefix' => 'style', 549 'widget_name' => 'header', 550 'is_responsive' => false, 551 ] ); 552 $classnames = array_merge( $dropdown_classnames, $shapes->get_shape_classnames() ); 553 554 return $classnames; 554 555 } 555 556 -
hello-plus/trunk/modules/template-parts/components/document.php
r3238471 r3250227 48 48 } 49 49 50 51 50 public function register_remote_source() { 52 51 Utils::elementor()->templates_manager->register_source( … … 55 54 } 56 55 56 public function maybe_set_as_entire_site() { 57 $action = sanitize_key( filter_input( INPUT_GET, 'action' ) ); 58 59 switch ( $action ) { 60 case 'hello_plus_set_as_entire_site': 61 $post = filter_input( INPUT_GET, 'post', FILTER_VALIDATE_INT ); 62 check_admin_referer( 'hello_plus_set_as_entire_site_' . $post ); 63 64 $redirect_to = filter_input( INPUT_GET, 'redirect_to', FILTER_SANITIZE_URL ); 65 66 $document = Utils::elementor()->documents->get( $post ); 67 68 if ( ! $document instanceof \HelloPlus\Modules\TemplateParts\Documents\Ehp_Document_Base ) { 69 return; 70 } 71 72 $class_name = get_class( $document ); 73 $post_ids = $class_name::get_all_document_posts( [ 'posts_per_page' => -1 ] ); 74 75 foreach ( $post_ids as $post_id ) { 76 wp_update_post( [ 77 'ID' => $post_id, 78 'post_status' => 'draft', 79 ] ); 80 } 81 82 wp_update_post( [ 83 'ID' => $post, 84 'post_status' => 'publish', 85 ] ); 86 87 wp_safe_redirect( $redirect_to ); 88 89 exit; 90 default: 91 break; 92 } 93 } 94 57 95 public function __construct() { 58 96 add_action( 'elementor/documents/register', [ $this, 'register' ] ); 59 97 add_action( 'elementor/init', [ $this, 'register_remote_source' ] ); 98 add_action( 'admin_init', [ $this, 'maybe_set_as_entire_site' ] ); 60 99 } 61 100 } -
hello-plus/trunk/modules/template-parts/documents/ehp-document-base.php
r3238471 r3250227 8 8 9 9 use HelloPlus\Includes\Utils; 10 10 11 use Elementor\{ 11 12 TemplateLibrary\Source_Local, … … 76 77 } 77 78 79 public function filter_admin_row_actions( $actions ) { 80 $actions = parent::filter_admin_row_actions( $actions ); 81 82 return $this->set_as_entire_site( $actions ); 83 } 84 85 public function set_as_entire_site( $actions ) { 86 $active_doc = static::get_active_document(); 87 88 if ( empty( $active_doc ) || $this->get_main_id() !== $active_doc[0] ) { 89 $actions['set_as_entire_site'] = sprintf( 90 '<a href="?post=%s&action=hello_plus_set_as_entire_site&_wpnonce=%s&redirect_to=%s">%s</a>', 91 $this->get_post()->ID, 92 wp_create_nonce( 'hello_plus_set_as_entire_site_' . $this->get_post()->ID ), 93 rawurlencode( add_query_arg( null, null ) ), 94 esc_html__( 'Set as Entire Site', 'hello-plus' ) 95 ); 96 } 97 98 return $actions; 99 } 100 101 78 102 /** 79 103 * Retrieve the template-document post. … … 93 117 'fields' => 'ids', 94 118 'lazy_load_term_meta' => true, 119 'no_found_rows' => true, 120 'update_post_term_cache' => false, 121 'post_status' => 'publish', 95 122 'tax_query' => [ 96 123 [ … … 122 149 */ 123 150 public static function register_hooks(): void { 151 add_action( 'display_post_states', [ static::get_class_full_name(), 'display_post_states' ], 10, 2 ); 152 add_action( 'admin_notices', [ static::get_class_full_name(), 'maybe_display_notice' ] ); 153 124 154 $post = static::get_document_post(); 125 155 if ( is_null( $post ) ) { … … 142 172 $method_name = defined( 'ELEMENTOR_PRO_VERSION' ) ? 'maybe_get_template' : 'get_template'; 143 173 add_action( static::get_template_hook(), [ static::get_class_full_name(), $method_name ], 10, 2 ); 174 } 175 176 public static function maybe_display_notice() { 177 $posts = static::get_all_document_posts(); 178 179 if ( count( $posts ) > 1 && 'edit-elementor_library' === get_current_screen()->id ) { 180 $admin_notices = Utils::elementor()->admin->get_component( 'admin-notices' ); 181 182 $options = [ 183 'title' => sprintf( esc_html__( 'More than one %s published.', 'hello-plus' ), static::get_title() ), 184 'description' => sprintf( 185 esc_html__( 'We noticed that you have more than one %s published. This is an issue that will prevent it from rendering on the front end', 'hello-plus' ), 186 static::get_title(), 187 ), 188 'type' => 'error', 189 'icon' => false, 190 191 ]; 192 193 $admin_notices->print_admin_notice( $options ); 194 } 195 } 196 197 public static function display_post_states( array $post_states, \WP_Post $post ): array { 198 $active_doc = static::get_active_document(); 199 if ( ! empty( $active_doc ) && $active_doc[0] === $post->ID ) { 200 $post_states['active'] = sprintf( esc_html__( 'Active %s', 'hello-plus' ), static::get_title() ); 201 } 202 203 return $post_states; 144 204 } 145 205 -
hello-plus/trunk/modules/template-parts/widgets/ehp-header.php
r3241372 r3250227 21 21 Control_Media_Preview, 22 22 }; 23 use HelloPlus\Modules\Content\Classes\Choose_Img_Control; 23 24 24 25 use HelloPlus\Modules\Theme\Module as Theme_Module; 25 26 use HelloPlus\Classes\{ 26 27 Ehp_Button, 28 Ehp_Shapes, 27 29 Ehp_Padding, 28 30 }; 31 use HelloPlus\Includes\Utils; 29 32 30 33 class Ehp_Header extends Ehp_Widget_Base { … … 51 54 52 55 public function get_style_depends(): array { 53 return [ 'helloplus-header', 'helloplus-button' ];56 return array_merge( [ 'helloplus-header' ], Utils::get_widgets_depends() ); 54 57 } 55 58 … … 103 106 [ 104 107 'label' => esc_html__( 'Preset', 'hello-plus' ), 105 'type' => Controls_Manager::SELECT, 108 'type' => Choose_Img_Control::CONTROL_NAME, 109 'default' => 'navigate', 110 'label_block' => true, 111 'columns' => 2, 106 112 'options' => [ 107 'identity' => esc_html__( 'Identity', 'hello-plus' ), 108 'navigate' => esc_html__( 'Navigate', 'hello-plus' ), 109 'connect' => esc_html__( 'Connect', 'hello-plus' ), 110 ], 111 'default' => 'navigate', 112 'tablet_default' => 'navigate', 113 'mobile_default' => 'navigate', 114 ] 115 ); 116 117 $this->add_control( 118 'layout_info_connect', 119 [ 120 'type' => Controls_Manager::ALERT, 121 'alert_type' => 'info', 122 'content' => esc_html__( 'Focus on direct interaction with clear contact options.', 'hello-plus' ), 123 'condition' => [ 124 'layout_preset_select' => 'connect', 125 ], 126 ] 127 ); 128 129 $this->add_control( 130 'layout_info_navigate', 131 [ 132 'type' => Controls_Manager::ALERT, 133 'alert_type' => 'info', 134 'content' => esc_html__( 'Guide visitors with a centered menu.', 'hello-plus' ), 135 'condition' => [ 136 'layout_preset_select' => 'navigate', 137 ], 138 ] 139 ); 140 141 $this->add_control( 142 'layout_info_identity', 143 [ 144 'type' => Controls_Manager::ALERT, 145 'alert_type' => 'info', 146 'content' => esc_html__( 'Spotlight your brand with your logo or site name in the center.', 'hello-plus' ), 147 'condition' => [ 148 'layout_preset_select' => 'identity', 149 ], 113 'identity' => [ 114 'title' => wp_kses_post( "Identity:\nSpotlight your brand\nwith your logo or site name\nin the center." ), 115 'image' => HELLOPLUS_IMAGES_URL . 'header-identity.svg', 116 'hover_image' => true, 117 ], 118 'navigate' => [ 119 'title' => wp_kses_post( "Navigate:\nGuide visitors with a\ncentered menu." ), 120 'image' => HELLOPLUS_IMAGES_URL . 'header-navigate.svg', 121 'hover_image' => true, 122 ], 123 'connect' => [ 124 'title' => wp_kses_post( "Connect:\nFocus on direct interaction\nwith clear contact options." ), 125 'image' => HELLOPLUS_IMAGES_URL . 'header-connect.svg', 126 'hover_image' => true, 127 ], 128 ], 129 'frontend_available' => true, 150 130 ] 151 131 ); … … 404 384 'label_off' => esc_html__( 'No', 'hello-plus' ), 405 385 'return_value' => 'yes', 406 'default' => 'no', 386 'default' => '', 387 'condition' => [ 388 'layout_preset_select!' => 'connect', 389 ], 390 ] 391 ); 392 393 $this->add_control( 394 'contact_buttons_show_connect', 395 [ 396 'label' => esc_html__( 'Show', 'hello-plus' ), 397 'type' => Controls_Manager::SWITCHER, 398 'label_on' => esc_html__( 'Yes', 'hello-plus' ), 399 'label_off' => esc_html__( 'No', 'hello-plus' ), 400 'return_value' => 'yes', 401 'default' => 'yes', 402 'condition' => [ 403 'layout_preset_select' => 'connect', 404 ], 407 405 ] 408 406 ); … … 597 595 ], 598 596 ], 599 'default' => [600 'is_external' => true,601 ],602 597 'placeholder' => esc_html__( 'https://www.', 'hello-plus' ), 603 598 ], … … 622 617 ], 623 618 ], 624 'default' => [625 'is_external' => true,626 ],627 619 'placeholder' => esc_html__( 'https://ul.waze.com/ul?place=', 'hello-plus' ), 628 620 ], … … 646 638 'map', 647 639 ], 648 ],649 'default' => [650 'is_external' => true,651 640 ], 652 641 'placeholder' => esc_html__( 'https://maps.app.goo.gl', 'hello-plus' ), … … 684 673 'button_text' => esc_html__( 'Add Item', 'hello-plus' ), 685 674 'title_field' => '{{{ contact_buttons_label }}}', 686 'condition' => [ 687 'contact_buttons_show' => 'yes', 675 'conditions' => [ 676 'relation' => 'or', 677 'terms' => [ 678 [ 679 'relation' => 'and', 680 'terms' => [ 681 [ 682 'name' => 'layout_preset_select', 683 'operator' => '!==', 684 'value' => 'connect', 685 ], 686 [ 687 'name' => 'contact_buttons_show', 688 'operator' => '==', 689 'value' => 'yes', 690 ], 691 ], 692 ], 693 [ 694 'relation' => 'and', 695 'terms' => [ 696 [ 697 'name' => 'layout_preset_select', 698 'operator' => '==', 699 'value' => 'connect', 700 ], 701 [ 702 'name' => 'contact_buttons_show_connect', 703 'operator' => '==', 704 'value' => 'yes', 705 ], 706 ], 707 ], 708 ], 688 709 ], 689 710 'default' => [ … … 1139 1160 ); 1140 1161 1141 $this->add_control( 1142 'style_submenu_shape', 1143 [ 1144 'label' => esc_html__( 'Shape', 'hello-plus' ), 1145 'type' => Controls_Manager::SELECT, 1146 'options' => [ 1147 'default' => esc_html__( 'Default', 'hello-plus' ), 1148 'sharp' => esc_html__( 'Sharp', 'hello-plus' ), 1149 'rounded' => esc_html__( 'Rounded', 'hello-plus' ), 1150 'round' => esc_html__( 'Round', 'hello-plus' ), 1151 'custom' => esc_html__( 'Custom', 'hello-plus' ), 1152 ], 1153 'default' => 'default', 1154 ] 1155 ); 1156 1157 $this->add_control( 1158 'submenu_shape_custom', 1159 [ 1160 'label' => esc_html__( 'Border Radius', 'hello-plus' ), 1161 'type' => Controls_Manager::DIMENSIONS, 1162 'size_units' => [ 'px', '%', 'em', 'rem' ], 1163 'selectors' => [ 1164 '{{WRAPPER}} .ehp-header' => '--header-submenu-border-radius-custom-block-end: {{BOTTOM}}{{UNIT}}; --header-submenu-border-radius-custom-block-start: {{TOP}}{{UNIT}}; --header-submenu-border-radius-custom-inline-end: {{RIGHT}}{{UNIT}}; --header-submenu-border-radius-custom-inline-start: {{LEFT}}{{UNIT}};', 1165 ], 1166 'separator' => 'before', 1167 'condition' => [ 1168 'style_submenu_shape' => 'custom', 1169 ], 1170 ] 1171 ); 1162 $shapes = new Ehp_Shapes( $this, [ 1163 'widget_name' => 'header', 1164 'container_prefix' => 'submenu', 1165 'control_prefix' => 'style', 1166 'is_responsive' => false, 1167 ] ); 1168 $shapes->add_style_controls(); 1172 1169 1173 1170 $this->add_control( … … 1763 1760 ); 1764 1761 1765 $this->add_responsive_control( 1766 'behavior_float_shape', 1767 [ 1768 'label' => esc_html__( 'Shape', 'hello-plus' ), 1769 'type' => Controls_Manager::SELECT, 1770 'default' => 'default', 1771 'options' => [ 1772 'default' => esc_html__( 'Default', 'hello-plus' ), 1773 'sharp' => esc_html__( 'Sharp', 'hello-plus' ), 1774 'round' => esc_html__( 'Round', 'hello-plus' ), 1775 'rounded' => esc_html__( 'Rounded', 'hello-plus' ), 1776 'custom' => esc_html__( 'Custom', 'hello-plus' ), 1777 ], 1778 'condition' => [ 1779 'behavior_float' => 'yes', 1780 ], 1781 ] 1782 ); 1783 1784 $this->add_responsive_control( 1785 'behavior_float_shape_custom', 1786 [ 1787 'label' => esc_html__( 'Border Radius', 'hello-plus' ), 1788 'type' => Controls_Manager::DIMENSIONS, 1789 'size_units' => [ 'px', '%', 'em', 'rem' ], 1790 'selectors' => [ 1791 '{{WRAPPER}} .ehp-header' => '--header-float-border-radius-custom-block-end: {{BOTTOM}}{{UNIT}}; --header-float-border-radius-custom-block-start: {{TOP}}{{UNIT}}; --header-float-border-radius-custom-inline-end: {{RIGHT}}{{UNIT}}; --header-float-border-radius-custom-inline-start: {{LEFT}}{{UNIT}};', 1792 ], 1793 'separator' => 'before', 1794 'condition' => [ 1795 'behavior_float_shape' => 'custom', 1796 ], 1797 ] 1798 ); 1762 $shapes = new Ehp_Shapes( $this, [ 1763 'widget_name' => 'header', 1764 'container_prefix' => 'float', 1765 'control_prefix' => 'behavior', 1766 'condition' => [ 1767 'behavior_float' => 'yes', 1768 ], 1769 ] ); 1770 $shapes->add_style_controls(); 1799 1771 1800 1772 $this->add_control( -
hello-plus/trunk/modules/theme/module.php
r3241372 r3250227 49 49 HELLOPLUS_VERSION 50 50 ); 51 52 wp_register_style( 53 'helloplus-shapes', 54 HELLOPLUS_STYLE_URL . 'helloplus-shapes.css', 55 [ 'elementor-frontend' ], 56 HELLOPLUS_VERSION 57 ); 51 58 } 52 59 -
hello-plus/trunk/package-lock.json
r3241372 r3250227 1 1 { 2 2 "name": "hello-plus", 3 "version": "1. 2.1",3 "version": "1.3.0", 4 4 "lockfileVersion": 3, 5 5 "requires": true, … … 7 7 "": { 8 8 "name": "hello-plus", 9 "version": "1. 2.1",9 "version": "1.3.0", 10 10 "dependencies": { 11 11 "@elementor/icons": "1.12.0", 12 12 "@elementor/ui": "1.20.3", 13 "composer": "^4.1.0", 13 14 "react": "^18.3.1", 14 15 "react-dom": "^18.3.1" … … 55 56 }, 56 57 "node_modules/@babel/compat-data": { 57 "version": "7.26. 5",58 "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26. 5.tgz",59 "integrity": "sha512- XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==",58 "version": "7.26.8", 59 "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz", 60 "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==", 60 61 "dev": true, 61 62 "license": "MIT", … … 65 66 }, 66 67 "node_modules/@babel/core": { 67 "version": "7.26. 7",68 "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26. 7.tgz",69 "integrity": "sha512- SRijHmF0PSPgLIBYlWnG0hyeJLwXE2CgpsXaMOrtt2yp9/86ALw6oUlj9KYuZ0JN07T4eBMVIW4li/9S1j2BGA==",68 "version": "7.26.9", 69 "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.9.tgz", 70 "integrity": "sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==", 70 71 "dev": true, 71 72 "license": "MIT", … … 73 74 "@ampproject/remapping": "^2.2.0", 74 75 "@babel/code-frame": "^7.26.2", 75 "@babel/generator": "^7.26. 5",76 "@babel/generator": "^7.26.9", 76 77 "@babel/helper-compilation-targets": "^7.26.5", 77 78 "@babel/helper-module-transforms": "^7.26.0", 78 "@babel/helpers": "^7.26. 7",79 "@babel/parser": "^7.26. 7",80 "@babel/template": "^7.2 5.9",81 "@babel/traverse": "^7.26. 7",82 "@babel/types": "^7.26. 7",79 "@babel/helpers": "^7.26.9", 80 "@babel/parser": "^7.26.9", 81 "@babel/template": "^7.26.9", 82 "@babel/traverse": "^7.26.9", 83 "@babel/types": "^7.26.9", 83 84 "convert-source-map": "^2.0.0", 84 85 "debug": "^4.1.0", … … 115 116 }, 116 117 "node_modules/@babel/generator": { 117 "version": "7.26. 5",118 "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26. 5.tgz",119 "integrity": "sha512- 2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==",120 "license": "MIT", 121 "dependencies": { 122 "@babel/parser": "^7.26. 5",123 "@babel/types": "^7.26. 5",118 "version": "7.26.9", 119 "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz", 120 "integrity": "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==", 121 "license": "MIT", 122 "dependencies": { 123 "@babel/parser": "^7.26.9", 124 "@babel/types": "^7.26.9", 124 125 "@jridgewell/gen-mapping": "^0.3.5", 125 126 "@jridgewell/trace-mapping": "^0.3.25", … … 161 162 }, 162 163 "node_modules/@babel/helper-create-class-features-plugin": { 163 "version": "7.2 5.9",164 "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.2 5.9.tgz",165 "integrity": "sha512- UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==",164 "version": "7.26.9", 165 "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.26.9.tgz", 166 "integrity": "sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg==", 166 167 "dev": true, 167 168 "license": "MIT", … … 170 171 "@babel/helper-member-expression-to-functions": "^7.25.9", 171 172 "@babel/helper-optimise-call-expression": "^7.25.9", 172 "@babel/helper-replace-supers": "^7.2 5.9",173 "@babel/helper-replace-supers": "^7.26.5", 173 174 "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", 174 "@babel/traverse": "^7.2 5.9",175 "@babel/traverse": "^7.26.9", 175 176 "semver": "^6.3.1" 176 177 }, … … 379 380 }, 380 381 "node_modules/@babel/helpers": { 381 "version": "7.26. 7",382 "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26. 7.tgz",383 "integrity": "sha512- 8NHiL98vsi0mbPQmYAGWwfcFaOy4j2HY49fXJCfuDcdE7fMIsH9a7GdaeXpIBsbT7307WU8KCMp5pUVDNL4f9A==",384 "dev": true, 385 "license": "MIT", 386 "dependencies": { 387 "@babel/template": "^7.2 5.9",388 "@babel/types": "^7.26. 7"382 "version": "7.26.9", 383 "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.9.tgz", 384 "integrity": "sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==", 385 "dev": true, 386 "license": "MIT", 387 "dependencies": { 388 "@babel/template": "^7.26.9", 389 "@babel/types": "^7.26.9" 389 390 }, 390 391 "engines": { … … 393 394 }, 394 395 "node_modules/@babel/parser": { 395 "version": "7.26. 7",396 "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26. 7.tgz",397 "integrity": "sha512- kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w==",398 "license": "MIT", 399 "dependencies": { 400 "@babel/types": "^7.26. 7"396 "version": "7.26.9", 397 "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz", 398 "integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==", 399 "license": "MIT", 400 "dependencies": { 401 "@babel/types": "^7.26.9" 401 402 }, 402 403 "bin": { … … 819 820 }, 820 821 "node_modules/@babel/plugin-transform-async-generator-functions": { 821 "version": "7.2 5.9",822 "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.2 5.9.tgz",823 "integrity": "sha512- RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==",824 "dev": true, 825 "license": "MIT", 826 "dependencies": { 827 "@babel/helper-plugin-utils": "^7.2 5.9",822 "version": "7.26.8", 823 "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.26.8.tgz", 824 "integrity": "sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==", 825 "dev": true, 826 "license": "MIT", 827 "dependencies": { 828 "@babel/helper-plugin-utils": "^7.26.5", 828 829 "@babel/helper-remap-async-to-generator": "^7.25.9", 829 "@babel/traverse": "^7.2 5.9"830 "@babel/traverse": "^7.26.8" 830 831 }, 831 832 "engines": { … … 1073 1074 }, 1074 1075 "node_modules/@babel/plugin-transform-for-of": { 1075 "version": "7.2 5.9",1076 "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.2 5.9.tgz",1077 "integrity": "sha512- LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==",1078 "dev": true, 1079 "license": "MIT", 1080 "dependencies": { 1081 "@babel/helper-plugin-utils": "^7.2 5.9",1076 "version": "7.26.9", 1077 "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.26.9.tgz", 1078 "integrity": "sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==", 1079 "dev": true, 1080 "license": "MIT", 1081 "dependencies": { 1082 "@babel/helper-plugin-utils": "^7.26.5", 1082 1083 "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" 1083 1084 }, … … 1650 1651 }, 1651 1652 "node_modules/@babel/plugin-transform-template-literals": { 1652 "version": "7.2 5.9",1653 "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.2 5.9.tgz",1654 "integrity": "sha512- o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==",1655 "dev": true, 1656 "license": "MIT", 1657 "dependencies": { 1658 "@babel/helper-plugin-utils": "^7.2 5.9"1653 "version": "7.26.8", 1654 "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.26.8.tgz", 1655 "integrity": "sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==", 1656 "dev": true, 1657 "license": "MIT", 1658 "dependencies": { 1659 "@babel/helper-plugin-utils": "^7.26.5" 1659 1660 }, 1660 1661 "engines": { … … 1682 1683 }, 1683 1684 "node_modules/@babel/plugin-transform-typescript": { 1684 "version": "7.26. 7",1685 "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26. 7.tgz",1686 "integrity": "sha512- 5cJurntg+AT+cgelGP9Bt788DKiAw9gIMSMU2NJrLAilnj0m8WZWUNZPSLOmadYsujHutpgElO+50foX+ib/Wg==",1685 "version": "7.26.8", 1686 "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.8.tgz", 1687 "integrity": "sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==", 1687 1688 "dev": true, 1688 1689 "license": "MIT", … … 1943 1944 }, 1944 1945 "node_modules/@babel/runtime": { 1945 "version": "7.26. 7",1946 "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26. 7.tgz",1947 "integrity": "sha512- AOPI3D+a8dXnja+iwsUqGRjr1BbZIe771sXdapOtYI531gSqpi92vXivKcq2asu/DFpdl1ceFAKZyRzK2PCVcQ==",1946 "version": "7.26.9", 1947 "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.9.tgz", 1948 "integrity": "sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==", 1948 1949 "license": "MIT", 1949 1950 "dependencies": { … … 1955 1956 }, 1956 1957 "node_modules/@babel/template": { 1957 "version": "7.2 5.9",1958 "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.2 5.9.tgz",1959 "integrity": "sha512- 9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==",1960 "license": "MIT", 1961 "dependencies": { 1962 "@babel/code-frame": "^7.2 5.9",1963 "@babel/parser": "^7.2 5.9",1964 "@babel/types": "^7.2 5.9"1958 "version": "7.26.9", 1959 "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz", 1960 "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==", 1961 "license": "MIT", 1962 "dependencies": { 1963 "@babel/code-frame": "^7.26.2", 1964 "@babel/parser": "^7.26.9", 1965 "@babel/types": "^7.26.9" 1965 1966 }, 1966 1967 "engines": { … … 1969 1970 }, 1970 1971 "node_modules/@babel/traverse": { 1971 "version": "7.26. 7",1972 "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26. 7.tgz",1973 "integrity": "sha512- 1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA==",1972 "version": "7.26.9", 1973 "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz", 1974 "integrity": "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==", 1974 1975 "license": "MIT", 1975 1976 "dependencies": { 1976 1977 "@babel/code-frame": "^7.26.2", 1977 "@babel/generator": "^7.26. 5",1978 "@babel/parser": "^7.26. 7",1979 "@babel/template": "^7.2 5.9",1980 "@babel/types": "^7.26. 7",1978 "@babel/generator": "^7.26.9", 1979 "@babel/parser": "^7.26.9", 1980 "@babel/template": "^7.26.9", 1981 "@babel/types": "^7.26.9", 1981 1982 "debug": "^4.3.1", 1982 1983 "globals": "^11.1.0" … … 1987 1988 }, 1988 1989 "node_modules/@babel/types": { 1989 "version": "7.26. 7",1990 "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26. 7.tgz",1991 "integrity": "sha512- t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg==",1990 "version": "7.26.9", 1991 "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", 1992 "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", 1992 1993 "license": "MIT", 1993 1994 "dependencies": { … … 2494 2495 }, 2495 2496 "node_modules/@formatjs/ecma402-abstract": { 2496 "version": "2.3. 2",2497 "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-2.3. 2.tgz",2498 "integrity": "sha512- 6sE5nyvDloULiyOMbOTJEEgWL32w+VHkZQs8S02Lnn8Y/O5aQhjOEXwWzvR7SsBE/exxlSpY2EsWZgqHbtLatg==",2497 "version": "2.3.3", 2498 "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-2.3.3.tgz", 2499 "integrity": "sha512-pJT1OkhplSmvvr6i3CWTPvC/FGC06MbN5TNBfRO6Ox62AEz90eMq+dVvtX9Bl3jxCEkS0tATzDarRZuOLw7oFg==", 2499 2500 "dev": true, 2500 2501 "license": "MIT", 2501 2502 "dependencies": { 2502 2503 "@formatjs/fast-memoize": "2.2.6", 2503 "@formatjs/intl-localematcher": "0. 5.10",2504 "@formatjs/intl-localematcher": "0.6.0", 2504 2505 "decimal.js": "10", 2505 2506 "tslib": "2" … … 2517 2518 }, 2518 2519 "node_modules/@formatjs/icu-messageformat-parser": { 2519 "version": "2.11. 0",2520 "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.11. 0.tgz",2521 "integrity": "sha512- Hp81uTjjdTk3FLh/dggU5NK7EIsVWc5/ZDWrIldmf2rBuPejuZ13CZ/wpVE2SToyi4EiroPTQ1XJcJuZFIxTtw==",2522 "dev": true, 2523 "license": "MIT", 2524 "dependencies": { 2525 "@formatjs/ecma402-abstract": "2.3. 2",2526 "@formatjs/icu-skeleton-parser": "1.8.1 2",2520 "version": "2.11.1", 2521 "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.11.1.tgz", 2522 "integrity": "sha512-o0AhSNaOfKoic0Sn1GkFCK4MxdRsw7mPJ5/rBpIqdvcC7MIuyUSW8WChUEvrK78HhNpYOgqCQbINxCTumJLzZA==", 2523 "dev": true, 2524 "license": "MIT", 2525 "dependencies": { 2526 "@formatjs/ecma402-abstract": "2.3.3", 2527 "@formatjs/icu-skeleton-parser": "1.8.13", 2527 2528 "tslib": "2" 2528 2529 } 2529 2530 }, 2530 2531 "node_modules/@formatjs/icu-skeleton-parser": { 2531 "version": "1.8.1 2",2532 "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.8.1 2.tgz",2533 "integrity": "sha512- QRAY2jC1BomFQHYDMcZtClqHR55EEnB96V7Xbk/UiBodsuFc5kujybzt87+qj1KqmJozFhk6n4KiT1HKwAkcfg==",2534 "dev": true, 2535 "license": "MIT", 2536 "dependencies": { 2537 "@formatjs/ecma402-abstract": "2.3. 2",2532 "version": "1.8.13", 2533 "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.8.13.tgz", 2534 "integrity": "sha512-N/LIdTvVc1TpJmMt2jVg0Fr1F7Q1qJPdZSCs19unMskCmVQ/sa0H9L8PWt13vq+gLdLg1+pPsvBLydL1Apahjg==", 2535 "dev": true, 2536 "license": "MIT", 2537 "dependencies": { 2538 "@formatjs/ecma402-abstract": "2.3.3", 2538 2539 "tslib": "2" 2539 2540 } 2540 2541 }, 2541 2542 "node_modules/@formatjs/intl-localematcher": { 2542 "version": "0. 5.10",2543 "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0. 5.10.tgz",2544 "integrity": "sha512- af3qATX+m4Rnd9+wHcjJ4w2ijq+rAVP3CCinJQvFv1kgSu1W6jypUmvleJxcewdxmutM8dmIRZFxO/IQBZmP2Q==",2543 "version": "0.6.0", 2544 "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.6.0.tgz", 2545 "integrity": "sha512-4rB4g+3hESy1bHSBG3tDFaMY2CH67iT7yne1e+0CLTsGLDcmoEWWpJjjpWVaYgYfYuohIRuo0E+N536gd2ZHZA==", 2545 2546 "dev": true, 2546 2547 "license": "MIT", … … 2870 2871 }, 2871 2872 "node_modules/@jest/reporters/node_modules/semver": { 2872 "version": "7.7. 0",2873 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7. 0.tgz",2874 "integrity": "sha512- DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==",2873 "version": "7.7.1", 2874 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 2875 "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 2875 2876 "dev": true, 2876 2877 "license": "ISC", … … 3047 3048 }, 3048 3049 "node_modules/@keyv/serialize": { 3049 "version": "1.0. 2",3050 "resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.0. 2.tgz",3051 "integrity": "sha512- +E/LyaAeuABniD/RvUezWVXKpeuvwLEA9//nE9952zBaOdBd2mQ3pPoM8cUe2X6IcMByfuSLzmYqnYshG60+HQ==",3050 "version": "1.0.3", 3051 "resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.0.3.tgz", 3052 "integrity": "sha512-qnEovoOp5Np2JDGonIDL6Ayihw0RhnRh6vxPuHo4RDn1UOzwEo4AeIfpL6UGIrsceWrCMiVPgwRjbHu4vYFc3g==", 3052 3053 "dev": true, 3053 3054 "license": "MIT", … … 3504 3505 } 3505 3506 }, 3507 "node_modules/@parcel/watcher-android-arm64": { 3508 "version": "2.5.1", 3509 "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", 3510 "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==", 3511 "cpu": [ 3512 "arm64" 3513 ], 3514 "dev": true, 3515 "license": "MIT", 3516 "optional": true, 3517 "os": [ 3518 "android" 3519 ], 3520 "engines": { 3521 "node": ">= 10.0.0" 3522 }, 3523 "funding": { 3524 "type": "opencollective", 3525 "url": "https://opencollective.com/parcel" 3526 } 3527 }, 3506 3528 "node_modules/@parcel/watcher-darwin-arm64": { 3507 3529 "version": "2.5.1", … … 3525 3547 } 3526 3548 }, 3549 "node_modules/@parcel/watcher-darwin-x64": { 3550 "version": "2.5.1", 3551 "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", 3552 "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", 3553 "cpu": [ 3554 "x64" 3555 ], 3556 "dev": true, 3557 "license": "MIT", 3558 "optional": true, 3559 "os": [ 3560 "darwin" 3561 ], 3562 "engines": { 3563 "node": ">= 10.0.0" 3564 }, 3565 "funding": { 3566 "type": "opencollective", 3567 "url": "https://opencollective.com/parcel" 3568 } 3569 }, 3570 "node_modules/@parcel/watcher-freebsd-x64": { 3571 "version": "2.5.1", 3572 "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", 3573 "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==", 3574 "cpu": [ 3575 "x64" 3576 ], 3577 "dev": true, 3578 "license": "MIT", 3579 "optional": true, 3580 "os": [ 3581 "freebsd" 3582 ], 3583 "engines": { 3584 "node": ">= 10.0.0" 3585 }, 3586 "funding": { 3587 "type": "opencollective", 3588 "url": "https://opencollective.com/parcel" 3589 } 3590 }, 3591 "node_modules/@parcel/watcher-linux-arm-glibc": { 3592 "version": "2.5.1", 3593 "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", 3594 "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==", 3595 "cpu": [ 3596 "arm" 3597 ], 3598 "dev": true, 3599 "license": "MIT", 3600 "optional": true, 3601 "os": [ 3602 "linux" 3603 ], 3604 "engines": { 3605 "node": ">= 10.0.0" 3606 }, 3607 "funding": { 3608 "type": "opencollective", 3609 "url": "https://opencollective.com/parcel" 3610 } 3611 }, 3612 "node_modules/@parcel/watcher-linux-arm-musl": { 3613 "version": "2.5.1", 3614 "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", 3615 "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==", 3616 "cpu": [ 3617 "arm" 3618 ], 3619 "dev": true, 3620 "license": "MIT", 3621 "optional": true, 3622 "os": [ 3623 "linux" 3624 ], 3625 "engines": { 3626 "node": ">= 10.0.0" 3627 }, 3628 "funding": { 3629 "type": "opencollective", 3630 "url": "https://opencollective.com/parcel" 3631 } 3632 }, 3633 "node_modules/@parcel/watcher-linux-arm64-glibc": { 3634 "version": "2.5.1", 3635 "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", 3636 "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==", 3637 "cpu": [ 3638 "arm64" 3639 ], 3640 "dev": true, 3641 "license": "MIT", 3642 "optional": true, 3643 "os": [ 3644 "linux" 3645 ], 3646 "engines": { 3647 "node": ">= 10.0.0" 3648 }, 3649 "funding": { 3650 "type": "opencollective", 3651 "url": "https://opencollective.com/parcel" 3652 } 3653 }, 3654 "node_modules/@parcel/watcher-linux-arm64-musl": { 3655 "version": "2.5.1", 3656 "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", 3657 "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==", 3658 "cpu": [ 3659 "arm64" 3660 ], 3661 "dev": true, 3662 "license": "MIT", 3663 "optional": true, 3664 "os": [ 3665 "linux" 3666 ], 3667 "engines": { 3668 "node": ">= 10.0.0" 3669 }, 3670 "funding": { 3671 "type": "opencollective", 3672 "url": "https://opencollective.com/parcel" 3673 } 3674 }, 3675 "node_modules/@parcel/watcher-linux-x64-glibc": { 3676 "version": "2.5.1", 3677 "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", 3678 "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==", 3679 "cpu": [ 3680 "x64" 3681 ], 3682 "dev": true, 3683 "license": "MIT", 3684 "optional": true, 3685 "os": [ 3686 "linux" 3687 ], 3688 "engines": { 3689 "node": ">= 10.0.0" 3690 }, 3691 "funding": { 3692 "type": "opencollective", 3693 "url": "https://opencollective.com/parcel" 3694 } 3695 }, 3696 "node_modules/@parcel/watcher-linux-x64-musl": { 3697 "version": "2.5.1", 3698 "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", 3699 "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==", 3700 "cpu": [ 3701 "x64" 3702 ], 3703 "dev": true, 3704 "license": "MIT", 3705 "optional": true, 3706 "os": [ 3707 "linux" 3708 ], 3709 "engines": { 3710 "node": ">= 10.0.0" 3711 }, 3712 "funding": { 3713 "type": "opencollective", 3714 "url": "https://opencollective.com/parcel" 3715 } 3716 }, 3717 "node_modules/@parcel/watcher-win32-arm64": { 3718 "version": "2.5.1", 3719 "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", 3720 "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==", 3721 "cpu": [ 3722 "arm64" 3723 ], 3724 "dev": true, 3725 "license": "MIT", 3726 "optional": true, 3727 "os": [ 3728 "win32" 3729 ], 3730 "engines": { 3731 "node": ">= 10.0.0" 3732 }, 3733 "funding": { 3734 "type": "opencollective", 3735 "url": "https://opencollective.com/parcel" 3736 } 3737 }, 3738 "node_modules/@parcel/watcher-win32-ia32": { 3739 "version": "2.5.1", 3740 "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", 3741 "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==", 3742 "cpu": [ 3743 "ia32" 3744 ], 3745 "dev": true, 3746 "license": "MIT", 3747 "optional": true, 3748 "os": [ 3749 "win32" 3750 ], 3751 "engines": { 3752 "node": ">= 10.0.0" 3753 }, 3754 "funding": { 3755 "type": "opencollective", 3756 "url": "https://opencollective.com/parcel" 3757 } 3758 }, 3759 "node_modules/@parcel/watcher-win32-x64": { 3760 "version": "2.5.1", 3761 "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", 3762 "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", 3763 "cpu": [ 3764 "x64" 3765 ], 3766 "dev": true, 3767 "license": "MIT", 3768 "optional": true, 3769 "os": [ 3770 "win32" 3771 ], 3772 "engines": { 3773 "node": ">= 10.0.0" 3774 }, 3775 "funding": { 3776 "type": "opencollective", 3777 "url": "https://opencollective.com/parcel" 3778 } 3779 }, 3527 3780 "node_modules/@paulirish/trace_engine": { 3528 "version": "0.0. 39",3529 "resolved": "https://registry.npmjs.org/@paulirish/trace_engine/-/trace_engine-0.0. 39.tgz",3530 "integrity": "sha512- 2Y/ejHX5DDi5bjfWY/0c/BLVSfQ61Jw1Hy60Hnh0hfEO632D3FVctkzT4Q/lVAdvIPR0bUaok9JDTr1pu/OziA==",3781 "version": "0.0.44", 3782 "resolved": "https://registry.npmjs.org/@paulirish/trace_engine/-/trace_engine-0.0.44.tgz", 3783 "integrity": "sha512-QjDv5qVaUXd5WZzE2ktKvqtGA17v4HFtj6MROCGkK57AZr9n0ZKgcx7dEFho+5EHZ6V6h1upW2eqheo8C4Y4dA==", 3531 3784 "dev": true, 3532 3785 "license": "BSD-3-Clause", … … 3549 3802 }, 3550 3803 "node_modules/@playwright/test": { 3551 "version": "1.50. 0",3552 "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.50. 0.tgz",3553 "integrity": "sha512- ZGNXbt+d65EGjBORQHuYKj+XhCewlwpnSd/EDuLPZGSiEWmgOJB5RmMCCYGy5aMfTs9wx61RivfDKi8H/hcMvw==",3804 "version": "1.50.1", 3805 "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.50.1.tgz", 3806 "integrity": "sha512-Jii3aBg+CEDpgnuDxEp/h7BimHcUTDlpEtce89xEumlJ5ef2hqepZ+PWp1DDpYC/VO9fmWVI1IlEaoI5fK9FXQ==", 3554 3807 "dev": true, 3555 3808 "license": "Apache-2.0", 3556 3809 "peer": true, 3557 3810 "dependencies": { 3558 "playwright": "1.50. 0"3811 "playwright": "1.50.1" 3559 3812 }, 3560 3813 "bin": { … … 3665 3918 }, 3666 3919 "node_modules/@puppeteer/browsers/node_modules/semver": { 3667 "version": "7.7. 0",3668 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7. 0.tgz",3669 "integrity": "sha512- DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==",3920 "version": "7.7.1", 3921 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 3922 "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 3670 3923 "dev": true, 3671 3924 "license": "ISC", … … 3834 4087 }, 3835 4088 "node_modules/@stylistic/stylelint-plugin": { 3836 "version": "3.1. 1",3837 "resolved": "https://registry.npmjs.org/@stylistic/stylelint-plugin/-/stylelint-plugin-3.1. 1.tgz",3838 "integrity": "sha512- XagAHHIa528EvyGybv8EEYGK5zrVW74cHpsjhtovVATbhDRuJYfE+X4HCaAieW9lCkwbX6L+X0I4CiUG3w/hFw==",4089 "version": "3.1.2", 4090 "resolved": "https://registry.npmjs.org/@stylistic/stylelint-plugin/-/stylelint-plugin-3.1.2.tgz", 4091 "integrity": "sha512-tylFJGMQo62alGazK74MNxFjMagYOHmBZiePZFOJK2n13JZta0uVkB3Bh5qodUmOLtRH+uxH297EibK14UKm8g==", 3839 4092 "dev": true, 3840 4093 "license": "MIT", … … 4432 4685 }, 4433 4686 "node_modules/@types/http-proxy": { 4434 "version": "1.17.1 5",4435 "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.1 5.tgz",4436 "integrity": "sha512- 25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==",4687 "version": "1.17.16", 4688 "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.16.tgz", 4689 "integrity": "sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==", 4437 4690 "dev": true, 4438 4691 "license": "MIT", … … 4516 4769 }, 4517 4770 "node_modules/@types/node": { 4518 "version": "22.1 2.0",4519 "resolved": "https://registry.npmjs.org/@types/node/-/node-22.1 2.0.tgz",4520 "integrity": "sha512- Fll2FZ1riMjNmlmJOdAyY5pUbkftXslB5DgEzlIuNaiWhXd00FhWxVC/r4yV/4wBb9JfImTu+jiSvXTkJ7F/gA==",4771 "version": "22.13.8", 4772 "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.8.tgz", 4773 "integrity": "sha512-G3EfaZS+iOGYWLLRCEAXdWK9my08oHNZ+FHluRiggIYJPOXzhOiDgpVCUHaUvyIC5/fj7C/p637jdzC666AOKQ==", 4521 4774 "dev": true, 4522 4775 "license": "MIT", … … 4814 5067 }, 4815 5068 "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { 4816 "version": "7.7. 0",4817 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7. 0.tgz",4818 "integrity": "sha512- DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==",5069 "version": "7.7.1", 5070 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 5071 "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 4819 5072 "dev": true, 4820 5073 "license": "ISC", … … 4945 5198 }, 4946 5199 "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { 4947 "version": "7.7. 0",4948 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7. 0.tgz",4949 "integrity": "sha512- DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==",5200 "version": "7.7.1", 5201 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 5202 "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 4950 5203 "dev": true, 4951 5204 "license": "ISC", … … 4984 5237 }, 4985 5238 "node_modules/@typescript-eslint/utils/node_modules/semver": { 4986 "version": "7.7. 0",4987 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7. 0.tgz",4988 "integrity": "sha512- DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==",5239 "version": "7.7.1", 5240 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 5241 "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 4989 5242 "dev": true, 4990 5243 "license": "ISC", … … 5243 5496 }, 5244 5497 "node_modules/@wordpress/babel-preset-default": { 5245 "version": "8.1 7.0",5246 "resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-8.1 7.0.tgz",5247 "integrity": "sha512- +ivwvBI92u6abFf0DlwHem8fH5HujKy5e8a0cwDBOJivEzIJLPKYSYLlnLZL9I0QIstB+KdcJBARuWuR0l58Sw==",5498 "version": "8.19.0", 5499 "resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-8.19.0.tgz", 5500 "integrity": "sha512-SGrQjsqa4BulfOCBw0zDYXnvnMzXUWeWLcdpLHPIGCHArSOrDddlyms5UFoJxVYVeN4aiEHVOoJRhxnamo3HUQ==", 5248 5501 "dev": true, 5249 5502 "license": "GPL-2.0-or-later", … … 5255 5508 "@babel/preset-typescript": "7.25.7", 5256 5509 "@babel/runtime": "7.25.7", 5257 "@wordpress/browserslist-config": "^6.1 7.0",5258 "@wordpress/warning": "^3.1 7.0",5510 "@wordpress/browserslist-config": "^6.19.0", 5511 "@wordpress/warning": "^3.19.0", 5259 5512 "browserslist": "^4.21.10", 5260 5513 "core-js": "^3.31.0", … … 5311 5564 }, 5312 5565 "node_modules/@wordpress/base-styles": { 5313 "version": "5.1 7.0",5314 "resolved": "https://registry.npmjs.org/@wordpress/base-styles/-/base-styles-5.1 7.0.tgz",5315 "integrity": "sha512- 9rYupV2CIS6PIlE27vxqBEn98n2hEBdI4YQI7TD7kdbGHYRDfTqocDK7stiAgqKR9ujDoVmq+Yk3T/jzRi6WoA==",5566 "version": "5.19.0", 5567 "resolved": "https://registry.npmjs.org/@wordpress/base-styles/-/base-styles-5.19.0.tgz", 5568 "integrity": "sha512-rDRt2G2H1uRLZGRF/aXe2WZGNJJ2yzBup1VaiYBNRKS7io2YRu54vEYMgh/ll1el5eMN+jO9t4A54Ew/DO470Q==", 5316 5569 "dev": true, 5317 5570 "license": "GPL-2.0-or-later", … … 5322 5575 }, 5323 5576 "node_modules/@wordpress/browserslist-config": { 5324 "version": "6.1 7.0",5325 "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-6.1 7.0.tgz",5326 "integrity": "sha512- cjMclWLwfam5O03gOHWjD8veeLVnfmC93V9LX1aPt/ZT9aE0cmEZUxBa3VzkDM7NvuZFj7SjSvJr+vuar9Np1A==",5577 "version": "6.19.0", 5578 "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-6.19.0.tgz", 5579 "integrity": "sha512-4UR+T9iAx/qdehuZYZosL30PpPvzRVPncePs6aN0+zh7WbJsW4DZDi4ZXDTln6zJMIAQeHWvN84PTXgfsxyz4w==", 5327 5580 "dev": true, 5328 5581 "license": "GPL-2.0-or-later", … … 5333 5586 }, 5334 5587 "node_modules/@wordpress/dependency-extraction-webpack-plugin": { 5335 "version": "6.1 7.0",5336 "resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-6.1 7.0.tgz",5337 "integrity": "sha512- aRiYH1lcgxnvo0dvhEd5dxjBiWQokRdzSHFSF5flZ4vmHVvDRSgj5V0CQTuCG4fr77PwEJNjPHOm+s1JbmmQJw==",5588 "version": "6.19.0", 5589 "resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-6.19.0.tgz", 5590 "integrity": "sha512-j23efbWFAVww9SvQ5GXGVXrqWEB+9OdlS+4qT5ojjSkXkUgJMm4bOzaFzIlgRmgGZNc3kpJ/0iIJF0lkK3U6uw==", 5338 5591 "dev": true, 5339 5592 "license": "GPL-2.0-or-later", … … 5357 5610 }, 5358 5611 "node_modules/@wordpress/e2e-test-utils-playwright": { 5359 "version": "1.1 7.0",5360 "resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils-playwright/-/e2e-test-utils-playwright-1.1 7.0.tgz",5361 "integrity": "sha512- KhS+HyduYVHWbB/uHxQUC1wHMACx2BpP+4euMN8Kimy/rIsyOFrav9ueVGn7fHu9wu++swk8nUWFBip3GdsliA==",5612 "version": "1.19.0", 5613 "resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils-playwright/-/e2e-test-utils-playwright-1.19.0.tgz", 5614 "integrity": "sha512-oVAymk10VFF6vlhOveDvj6M9wqDbz434pyZ7V7OR2lF1O9A6npi1BJ3RNmKx8ar4J79tNaehr3I9G0B45WCH7Q==", 5362 5615 "dev": true, 5363 5616 "license": "GPL-2.0-or-later", … … 5452 5705 }, 5453 5706 "node_modules/@wordpress/jest-console": { 5454 "version": "8.1 7.0",5455 "resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-8.1 7.0.tgz",5456 "integrity": "sha512- PksPaHIQN+gHycF+S4b4PcZ35xRef2nRo+sBJXolnAWhKi93IrBENFDHwdyaD7gVe7t8qJlXYd7vaF8A6Tqn2g==",5707 "version": "8.19.0", 5708 "resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-8.19.0.tgz", 5709 "integrity": "sha512-HwXWaRmrT5bA4rWUnIGJNgqQrF7eeQmHxBN/fy8gcag4Le1/v92EpUjsIAT+lMJVahoqmGbyzkXFdZ2TAvwLtw==", 5457 5710 "dev": true, 5458 5711 "license": "GPL-2.0-or-later", … … 5483 5736 }, 5484 5737 "node_modules/@wordpress/jest-preset-default": { 5485 "version": "12.1 7.0",5486 "resolved": "https://registry.npmjs.org/@wordpress/jest-preset-default/-/jest-preset-default-12.1 7.0.tgz",5487 "integrity": "sha512- T5LWyi2VEiYjW2RQwajRuHeSNeI2cXKX+OJzDb9+RwIhD3316ghcExynGNmpT2Umo9mvNjWBpD57EPwQAOdR1w==",5738 "version": "12.19.0", 5739 "resolved": "https://registry.npmjs.org/@wordpress/jest-preset-default/-/jest-preset-default-12.19.0.tgz", 5740 "integrity": "sha512-WciJ2Qiblxd4Y0ysGgGZPTwGPRfvb+WyRF9zyJ5Oa0a5LpfrSUv8tjx9pOTz2hi30vhj34LFoqpWCcGXJZ56Aw==", 5488 5741 "dev": true, 5489 5742 "license": "GPL-2.0-or-later", 5490 5743 "dependencies": { 5491 "@wordpress/jest-console": "^8.1 7.0",5744 "@wordpress/jest-console": "^8.19.0", 5492 5745 "babel-jest": "29.7.0" 5493 5746 }, … … 5502 5755 }, 5503 5756 "node_modules/@wordpress/npm-package-json-lint-config": { 5504 "version": "5.1 7.0",5505 "resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-5.1 7.0.tgz",5506 "integrity": "sha512- j5G1/baTcd9YYwzPVBSsT6XlFMeKELxwIYsmtrv7p49WiygPlHt6Rz6aLpym6L7BRaJ64mqG2/dY5KcEYdoCTg==",5757 "version": "5.19.0", 5758 "resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-5.19.0.tgz", 5759 "integrity": "sha512-6JrZWHAQbji0k8rf7/fEnDP0Ie5qGBLaA5deMkVTC75HtEoiH+rR+ssVsdvv7+KyerM+5LDP6Aef5rVE7vsteA==", 5507 5760 "dev": true, 5508 5761 "license": "GPL-2.0-or-later", … … 5516 5769 }, 5517 5770 "node_modules/@wordpress/postcss-plugins-preset": { 5518 "version": "5.1 7.0",5519 "resolved": "https://registry.npmjs.org/@wordpress/postcss-plugins-preset/-/postcss-plugins-preset-5.1 7.0.tgz",5520 "integrity": "sha512- mpEPYNOC1PgQMFalIcp4rdlvMf3/Gppvn2NWzxPIoIxA/AYJEbwZ4ctPIbioXIWaubM1UizC6Z8+7S2huLsfUw==",5771 "version": "5.19.0", 5772 "resolved": "https://registry.npmjs.org/@wordpress/postcss-plugins-preset/-/postcss-plugins-preset-5.19.0.tgz", 5773 "integrity": "sha512-sHQ9rasbQztxG2ZgbZ34G7u94CS0RHcvbQFLqijazlSX6QhAFporJlgzHhyHO+yRFNBHQ+3vvDZCS3BMEjxiOg==", 5521 5774 "dev": true, 5522 5775 "license": "GPL-2.0-or-later", 5523 5776 "dependencies": { 5524 "@wordpress/base-styles": "^5.1 7.0",5777 "@wordpress/base-styles": "^5.19.0", 5525 5778 "autoprefixer": "^10.4.20" 5526 5779 }, … … 5534 5787 }, 5535 5788 "node_modules/@wordpress/prettier-config": { 5536 "version": "4.1 7.0",5537 "resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-4.1 7.0.tgz",5538 "integrity": "sha512- yoNJRCRMX27bvGyLzF2GunbPqksn6NJD1DDbV7a5j8gUvOZezN+5duAFApIDwaa4n3fxfIzf0wdoBxrMdnuBFg==",5789 "version": "4.19.0", 5790 "resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-4.19.0.tgz", 5791 "integrity": "sha512-mGgPuhIupWln2UX0uqLBfvvEzWFb1r2oRCC5Q3RXNtjDdOnkKIqtJOjCqL8IkCxa0sJmQZUymHKxBnStlQxR0w==", 5539 5792 "dev": true, 5540 5793 "license": "GPL-2.0-or-later", … … 5548 5801 }, 5549 5802 "node_modules/@wordpress/scripts": { 5550 "version": "30.1 0.0",5551 "resolved": "https://registry.npmjs.org/@wordpress/scripts/-/scripts-30.1 0.0.tgz",5552 "integrity": "sha512- Rs5NBN2TSWAYsf4DAchbi0ZnBkOjEfKzDXZGNEbWuO2dpbpPXHn9puZe5tBNo2bOe09mf+dXfOUh0Z1puK7orw==",5803 "version": "30.12.0", 5804 "resolved": "https://registry.npmjs.org/@wordpress/scripts/-/scripts-30.12.0.tgz", 5805 "integrity": "sha512-+Gxdmf1HEOPrH4LaNeMH7Wngc894zAUt3h9ztlzR46pBiz80xGBJmD54fODC7bnevKbvNojhjWc2iOeM5nRHjQ==", 5553 5806 "dev": true, 5554 5807 "license": "GPL-2.0-or-later", … … 5557 5810 "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11", 5558 5811 "@svgr/webpack": "^8.0.1", 5559 "@wordpress/babel-preset-default": "^8.1 7.0",5560 "@wordpress/browserslist-config": "^6.1 7.0",5561 "@wordpress/dependency-extraction-webpack-plugin": "^6.1 7.0",5562 "@wordpress/e2e-test-utils-playwright": "^1.1 7.0",5563 "@wordpress/eslint-plugin": "^22. 3.0",5564 "@wordpress/jest-preset-default": "^12.1 7.0",5565 "@wordpress/npm-package-json-lint-config": "^5.1 7.0",5566 "@wordpress/postcss-plugins-preset": "^5.1 7.0",5567 "@wordpress/prettier-config": "^4.1 7.0",5568 "@wordpress/stylelint-config": "^23. 9.0",5812 "@wordpress/babel-preset-default": "^8.19.0", 5813 "@wordpress/browserslist-config": "^6.19.0", 5814 "@wordpress/dependency-extraction-webpack-plugin": "^6.19.0", 5815 "@wordpress/e2e-test-utils-playwright": "^1.19.0", 5816 "@wordpress/eslint-plugin": "^22.5.0", 5817 "@wordpress/jest-preset-default": "^12.19.0", 5818 "@wordpress/npm-package-json-lint-config": "^5.19.0", 5819 "@wordpress/postcss-plugins-preset": "^5.19.0", 5820 "@wordpress/prettier-config": "^4.19.0", 5821 "@wordpress/stylelint-config": "^23.11.0", 5569 5822 "adm-zip": "^0.5.9", 5570 5823 "babel-jest": "29.7.0", … … 5660 5913 }, 5661 5914 "node_modules/@wordpress/scripts/node_modules/@wordpress/eslint-plugin": { 5662 "version": "22. 3.0",5663 "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-22. 3.0.tgz",5664 "integrity": "sha512- EG8PvRceycpn9B5UniHRJSwitTwWwqtsF+gcg+BOT/tU/dmMaDTRqQdXnPOhw10Qg+QKqvBEl6IT+yRwTP5rsA==",5915 "version": "22.5.0", 5916 "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-22.5.0.tgz", 5917 "integrity": "sha512-hmmPqOnyrSup3zNAk/sZGzURK/2+8EXRIMsX3/34kskhDPeWMYSiNt9pApFZ5dDR0fwlDLSmsOiZpDTCsZic+w==", 5665 5918 "dev": true, 5666 5919 "license": "GPL-2.0-or-later", … … 5669 5922 "@typescript-eslint/eslint-plugin": "^6.4.1", 5670 5923 "@typescript-eslint/parser": "^6.4.1", 5671 "@wordpress/babel-preset-default": "^8.1 7.0",5672 "@wordpress/prettier-config": "^4.1 7.0",5924 "@wordpress/babel-preset-default": "^8.19.0", 5925 "@wordpress/prettier-config": "^4.19.0", 5673 5926 "cosmiconfig": "^7.0.0", 5674 5927 "eslint-config-prettier": "^8.3.0", … … 5822 6075 }, 5823 6076 "node_modules/@wordpress/stylelint-config": { 5824 "version": "23. 9.0",5825 "resolved": "https://registry.npmjs.org/@wordpress/stylelint-config/-/stylelint-config-23. 9.0.tgz",5826 "integrity": "sha512- id+dU8JmvLBP/4Od0sIYe6g56nUKh97NO0RI+PNHDRB660Nn7nBJpRAu9Y3vd/3RwoZyaS72JAovmkQrzynGiw==",6077 "version": "23.11.0", 6078 "resolved": "https://registry.npmjs.org/@wordpress/stylelint-config/-/stylelint-config-23.11.0.tgz", 6079 "integrity": "sha512-osq25Nlcnwv4RJggYKnkfRbi6QDRI2O8PDMxVAvicL+JhxjtEqXKBwWaKNULHpc4aEWcGBaJtxJpzEE/7ZagBw==", 5827 6080 "dev": true, 5828 6081 "license": "MIT", … … 5841 6094 }, 5842 6095 "node_modules/@wordpress/warning": { 5843 "version": "3.1 7.0",5844 "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.1 7.0.tgz",5845 "integrity": "sha512- dmEjDbYtfPD8rMRtSrLxoW3g8CLKl+vK5pdXvDvG0lBoRjqwtRPP4cgNBOC8cq8gXRCwh5NDDtM2C8MTjGjVsQ==",6096 "version": "3.19.0", 6097 "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.19.0.tgz", 6098 "integrity": "sha512-hxRGkyKC+Ey7fPeiIX59gtYxYHNo2wTbvC3eqMmRI6ywTnJgHMwdx4Tih6Y/F3KimZU6t5Gm9+UWsLhUujOHDw==", 5846 6099 "dev": true, 5847 6100 "license": "GPL-2.0-or-later", … … 6498 6751 }, 6499 6752 "node_modules/axios": { 6500 "version": "1. 7.9",6501 "resolved": "https://registry.npmjs.org/axios/-/axios-1. 7.9.tgz",6502 "integrity": "sha512- LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==",6753 "version": "1.8.1", 6754 "resolved": "https://registry.npmjs.org/axios/-/axios-1.8.1.tgz", 6755 "integrity": "sha512-NN+fvwH/kV01dYUQ3PTOZns4LWtWhOFCAhQ/pHb88WQ1hNe5V/dvFwc4VJcDL11LT9xSX0QtsR8sWUuyOuOq7g==", 6503 6756 "dev": true, 6504 6757 "license": "MIT", … … 6732 6985 }, 6733 6986 "node_modules/bare-os": { 6734 "version": "3. 4.0",6735 "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3. 4.0.tgz",6736 "integrity": "sha512- 9Ous7UlnKbe3fMi7Y+qh0DwAup6A1JkYgPnjvMDNOlmnxNRQvQ/7Nst+OnUQKzk0iAT0m9BisbDVp9gCv8+ETA==",6987 "version": "3.5.1", 6988 "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.5.1.tgz", 6989 "integrity": "sha512-LvfVNDcWLw2AnIw5f2mWUgumW3I3N/WYGiWeimhQC1Ybt71n2FjlS9GJKeCnFeg1MKZHxzIFmpFnBXDI+sBeFg==", 6737 6990 "dev": true, 6738 6991 "license": "Apache-2.0", 6739 6992 "optional": true, 6740 6993 "engines": { 6741 "bare": ">=1. 6.0"6994 "bare": ">=1.14.0" 6742 6995 } 6743 6996 }, … … 6754 7007 }, 6755 7008 "node_modules/bare-stream": { 6756 "version": "2.6. 4",6757 "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.6. 4.tgz",6758 "integrity": "sha512- G6i3A74FjNq4nVrrSTUz5h3vgXzBJnjmWAVlBWaZETkgu+LgKd7AiyOml3EDJY1AHlIbBHKDXE+TUT53Ff8OaA==",7009 "version": "2.6.5", 7010 "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.6.5.tgz", 7011 "integrity": "sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==", 6759 7012 "dev": true, 6760 7013 "license": "Apache-2.0", … … 7053 7306 }, 7054 7307 "node_modules/cacheable/node_modules/keyv": { 7055 "version": "5. 2.3",7056 "resolved": "https://registry.npmjs.org/keyv/-/keyv-5. 2.3.tgz",7057 "integrity": "sha512- AGKecUfzrowabUv0bH1RIR5Vf7w+l4S3xtQAypKaUpTdIR1EbrAcTxHCrpo9Q+IWeUlFE2palRtgIQcgm+PQJw==",7058 "dev": true, 7059 "license": "MIT", 7060 "dependencies": { 7061 "@keyv/serialize": "^1.0. 2"7308 "version": "5.3.1", 7309 "resolved": "https://registry.npmjs.org/keyv/-/keyv-5.3.1.tgz", 7310 "integrity": "sha512-13hQT2q2VIwOoaJdJa7nY3J8UVbYtMTJFHnwm9LI+SaQRfUiM6Em9KZeOVTCKbMnGcRIL3NSUFpAdjZCq24nLQ==", 7311 "dev": true, 7312 "license": "MIT", 7313 "dependencies": { 7314 "@keyv/serialize": "^1.0.3" 7062 7315 } 7063 7316 }, … … 7082 7335 }, 7083 7336 "node_modules/call-bind-apply-helpers": { 7084 "version": "1.0. 1",7085 "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0. 1.tgz",7086 "integrity": "sha512- BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",7337 "version": "1.0.2", 7338 "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", 7339 "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", 7087 7340 "dev": true, 7088 7341 "license": "MIT", … … 7187 7440 }, 7188 7441 "node_modules/caniuse-lite": { 7189 "version": "1.0.30001 696",7190 "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001 696.tgz",7191 "integrity": "sha512- pDCPkvzfa39ehJtJ+OwGT/2yvT2SbjfHhiIW2LWOAcMQ7BzwxT/XuyUp4OTOd0XFWA6BKw0JalnBHgSi5DGJBQ==",7442 "version": "1.0.30001701", 7443 "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001701.tgz", 7444 "integrity": "sha512-faRs/AW3jA9nTwmJBSO1PQ6L/EOgsB5HMQQq4iCu5zhPgVVgO/pZRHlmatwijZKetFw8/Pr4q6dEN8sJuq8qTw==", 7192 7445 "dev": true, 7193 7446 "funding": [ … … 7378 7631 }, 7379 7632 "node_modules/cjs-module-lexer": { 7380 "version": "1.4. 1",7381 "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4. 1.tgz",7382 "integrity": "sha512- cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==",7633 "version": "1.4.3", 7634 "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", 7635 "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==", 7383 7636 "dev": true, 7384 7637 "license": "MIT" … … 7553 7806 "license": "ISC" 7554 7807 }, 7808 "node_modules/composer": { 7809 "version": "4.1.0", 7810 "resolved": "https://registry.npmjs.org/composer/-/composer-4.1.0.tgz", 7811 "integrity": "sha512-qIIoNYjwFHrQFUdB8kD3pZs30+JeYK9149EpOYr/NVrii00KMO31IonzZMeRSU4qazyWZpEgVzkBmQ6VFWxedA==", 7812 "license": "MIT", 7813 "dependencies": { 7814 "pretty-time": "^1.1.0", 7815 "use": "^3.1.1" 7816 }, 7817 "engines": { 7818 "node": ">=8" 7819 } 7820 }, 7555 7821 "node_modules/compressible": { 7556 7822 "version": "2.0.18", … … 7567 7833 }, 7568 7834 "node_modules/compression": { 7569 "version": "1. 7.5",7570 "resolved": "https://registry.npmjs.org/compression/-/compression-1. 7.5.tgz",7571 "integrity": "sha512- bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==",7835 "version": "1.8.0", 7836 "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.0.tgz", 7837 "integrity": "sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==", 7572 7838 "dev": true, 7573 7839 "license": "MIT", … … 7751 8017 }, 7752 8018 "node_modules/copy-webpack-plugin/node_modules/globby": { 7753 "version": "14. 0.2",7754 "resolved": "https://registry.npmjs.org/globby/-/globby-14. 0.2.tgz",7755 "integrity": "sha512- s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==",8019 "version": "14.1.0", 8020 "resolved": "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz", 8021 "integrity": "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==", 7756 8022 "dev": true, 7757 8023 "license": "MIT", 7758 8024 "dependencies": { 7759 8025 "@sindresorhus/merge-streams": "^2.1.0", 7760 "fast-glob": "^3.3. 2",7761 "ignore": "^ 5.2.4",7762 "path-type": "^ 5.0.0",8026 "fast-glob": "^3.3.3", 8027 "ignore": "^7.0.3", 8028 "path-type": "^6.0.0", 7763 8029 "slash": "^5.1.0", 7764 "unicorn-magic": "^0. 1.0"8030 "unicorn-magic": "^0.3.0" 7765 8031 }, 7766 8032 "engines": { … … 7771 8037 } 7772 8038 }, 8039 "node_modules/copy-webpack-plugin/node_modules/ignore": { 8040 "version": "7.0.3", 8041 "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.3.tgz", 8042 "integrity": "sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==", 8043 "dev": true, 8044 "license": "MIT", 8045 "engines": { 8046 "node": ">= 4" 8047 } 8048 }, 7773 8049 "node_modules/copy-webpack-plugin/node_modules/path-type": { 7774 "version": " 5.0.0",7775 "resolved": "https://registry.npmjs.org/path-type/-/path-type- 5.0.0.tgz",7776 "integrity": "sha512- 5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==",7777 "dev": true, 7778 "license": "MIT", 7779 "engines": { 7780 "node": ">=1 2"8050 "version": "6.0.0", 8051 "resolved": "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz", 8052 "integrity": "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==", 8053 "dev": true, 8054 "license": "MIT", 8055 "engines": { 8056 "node": ">=18" 7781 8057 }, 7782 8058 "funding": { … … 7798 8074 }, 7799 8075 "node_modules/core-js": { 7800 "version": "3.4 0.0",7801 "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.4 0.0.tgz",7802 "integrity": "sha512- 7vsMc/Lty6AGnn7uFpYT56QesI5D2Y/UkgKounk87OP9Z2H9Z8kj6jzcSGAxFmUtDOS0ntK6lbQz+Nsa0Jj6mQ==",8076 "version": "3.41.0", 8077 "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.41.0.tgz", 8078 "integrity": "sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA==", 7803 8079 "dev": true, 7804 8080 "hasInstallScript": true, … … 7810 8086 }, 7811 8087 "node_modules/core-js-compat": { 7812 "version": "3.4 0.0",7813 "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.4 0.0.tgz",7814 "integrity": "sha512- 0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==",7815 "dev": true, 7816 "license": "MIT", 7817 "dependencies": { 7818 "browserslist": "^4.24. 3"8088 "version": "3.41.0", 8089 "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.41.0.tgz", 8090 "integrity": "sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==", 8091 "dev": true, 8092 "license": "MIT", 8093 "dependencies": { 8094 "browserslist": "^4.24.4" 7819 8095 }, 7820 8096 "funding": { … … 7824 8100 }, 7825 8101 "node_modules/core-js-pure": { 7826 "version": "3.4 0.0",7827 "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.4 0.0.tgz",7828 "integrity": "sha512- AtDzVIgRrmRKQai62yuSIN5vNiQjcJakJb4fbhVw3ehxx7Lohphvw9SGNWKhLFqSxC4ilD0g/L1huAYFQU3Q6A==",8102 "version": "3.41.0", 8103 "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.41.0.tgz", 8104 "integrity": "sha512-71Gzp96T9YPk63aUvE5Q5qP+DryB4ZloUZPSOebGM88VNw8VNfvdA7z6kGA8iGOTEzAomsRidp4jXSmUIJsL+Q==", 7829 8105 "dev": true, 7830 8106 "hasInstallScript": true, … … 7906 8182 }, 7907 8183 "node_modules/csp_evaluator": { 7908 "version": "1.1. 1",7909 "resolved": "https://registry.npmjs.org/csp_evaluator/-/csp_evaluator-1.1. 1.tgz",7910 "integrity": "sha512- N3ASg0C4kNPUaNxt1XAvzHIVuzdtr8KLgfk1O8WDyimp1GisPAHESupArO2ieHk9QWbrJ/WkQODyh21Ps/xhxw==",8184 "version": "1.1.5", 8185 "resolved": "https://registry.npmjs.org/csp_evaluator/-/csp_evaluator-1.1.5.tgz", 8186 "integrity": "sha512-EL/iN9etCTzw/fBnp0/uj0f5BOOGvZut2mzsiiBZ/FdT6gFQCKRO/tmcKOxn5drWZ2Ndm/xBb1SI4zwWbGtmIw==", 7911 8187 "dev": true, 7912 8188 "license": "Apache-2.0" … … 7972 8248 }, 7973 8249 "node_modules/css-loader/node_modules/semver": { 7974 "version": "7.7. 0",7975 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7. 0.tgz",7976 "integrity": "sha512- DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==",8250 "version": "7.7.1", 8251 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 8252 "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 7977 8253 "dev": true, 7978 8254 "license": "ISC", … … 8610 8886 }, 8611 8887 "node_modules/devtools-protocol": { 8612 "version": "0.0.1 312386",8613 "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1 312386.tgz",8614 "integrity": "sha512- DPnhUXvmvKT2dFA/j7B+riVLUt9Q6RKJlcppojL5CoRywJJKLDYnRlw0gTFKfgDPHP5E04UoB71SxoJlVZy8FA==",8888 "version": "0.0.1423531", 8889 "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1423531.tgz", 8890 "integrity": "sha512-z6cOcajZWxk80zvFnkTGa7tj3oqF+C5SnOF1KSMeAr5/WW/nLNHlEpKr7voSzMz8IaUoq5rjdI0Mqv5k/BUkhg==", 8615 8891 "dev": true, 8616 8892 "license": "BSD-3-Clause" … … 8802 9078 }, 8803 9079 "node_modules/electron-to-chromium": { 8804 "version": "1.5. 90",8805 "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5. 90.tgz",8806 "integrity": "sha512- C3PN4aydfW91Natdyd449Kw+BzhLmof6tzy5W1pFC5SpQxVXT+oyiyOG9AgYYSN9OdA/ik3YkCrpwqI8ug5Tug==",9080 "version": "1.5.109", 9081 "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.109.tgz", 9082 "integrity": "sha512-AidaH9JETVRr9DIPGfp1kAarm/W6hRJTPuCnkF+2MqhF4KaAgRIcBc8nvjk+YMXZhwfISof/7WG29eS4iGxQLQ==", 8807 9083 "dev": true, 8808 9084 "license": "ISC" … … 8859 9135 }, 8860 9136 "node_modules/enhanced-resolve": { 8861 "version": "5.18. 0",8862 "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18. 0.tgz",8863 "integrity": "sha512- 0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==",9137 "version": "5.18.1", 9138 "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz", 9139 "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==", 8864 9140 "dev": true, 8865 9141 "license": "MIT", … … 9092 9368 }, 9093 9369 "node_modules/es-shim-unscopables": { 9094 "version": "1.0.2", 9095 "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", 9096 "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", 9097 "dev": true, 9098 "license": "MIT", 9099 "dependencies": { 9100 "hasown": "^2.0.0" 9370 "version": "1.1.0", 9371 "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", 9372 "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", 9373 "dev": true, 9374 "license": "MIT", 9375 "dependencies": { 9376 "hasown": "^2.0.2" 9377 }, 9378 "engines": { 9379 "node": ">= 0.4" 9101 9380 } 9102 9381 }, … … 9543 9822 }, 9544 9823 "node_modules/eslint-plugin-jest/node_modules/semver": { 9545 "version": "7.7. 0",9546 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7. 0.tgz",9547 "integrity": "sha512- DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==",9824 "version": "7.7.1", 9825 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 9826 "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 9548 9827 "dev": true, 9549 9828 "license": "ISC", … … 9580 9859 }, 9581 9860 "node_modules/eslint-plugin-jsdoc/node_modules/semver": { 9582 "version": "7.7. 0",9583 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7. 0.tgz",9584 "integrity": "sha512- DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==",9861 "version": "7.7.1", 9862 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 9863 "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 9585 9864 "dev": true, 9586 9865 "license": "ISC", … … 9647 9926 }, 9648 9927 "node_modules/eslint-plugin-no-jquery": { 9649 "version": "3.1. 0",9650 "resolved": "https://registry.npmjs.org/eslint-plugin-no-jquery/-/eslint-plugin-no-jquery-3.1. 0.tgz",9651 "integrity": "sha512- Ze+eRlAbLAoceBqMXI2E9s6o3dC7zE75niP2Sy4D8I/u1TyLegrIpjc4emPN90dH0IA+uXNUmQbzBuCaihxwIQ==",9928 "version": "3.1.1", 9929 "resolved": "https://registry.npmjs.org/eslint-plugin-no-jquery/-/eslint-plugin-no-jquery-3.1.1.tgz", 9930 "integrity": "sha512-LTLO3jH/Tjr1pmxCEqtV6qmt+OChv8La4fwgG470JRpgxyFF4NOzoC9CRy92GIWD3Yjl0qLEgPmD2FLQWcNEjg==", 9652 9931 "dev": true, 9653 9932 "license": "MIT", … … 10382 10661 }, 10383 10662 "node_modules/fastq": { 10384 "version": "1.1 8.0",10385 "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.1 8.0.tgz",10386 "integrity": "sha512- QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==",10663 "version": "1.19.1", 10664 "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", 10665 "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", 10387 10666 "dev": true, 10388 10667 "license": "ISC", … … 10643 10922 }, 10644 10923 "node_modules/flatted": { 10645 "version": "3.3. 2",10646 "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3. 2.tgz",10647 "integrity": "sha512- AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==",10924 "version": "3.3.3", 10925 "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", 10926 "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", 10648 10927 "dev": true, 10649 10928 "license": "ISC" … … 10671 10950 }, 10672 10951 "node_modules/for-each": { 10673 "version": "0.3. 4",10674 "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3. 4.tgz",10675 "integrity": "sha512- kKaIINnFpzW6ffJNDjjyjrk21BkDx38c0xa/klsT8VzLCaMEefv4ZTacrcVR4DmgTeBra++jMDAfS/tS799YDw==",10952 "version": "0.3.5", 10953 "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", 10954 "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", 10676 10955 "dev": true, 10677 10956 "license": "MIT", … … 10710 10989 }, 10711 10990 "node_modules/form-data": { 10712 "version": "4.0. 1",10713 "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0. 1.tgz",10714 "integrity": "sha512- tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==",10991 "version": "4.0.2", 10992 "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz", 10993 "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==", 10715 10994 "dev": true, 10716 10995 "license": "MIT", … … 10718 10997 "asynckit": "^0.4.0", 10719 10998 "combined-stream": "^1.0.8", 10999 "es-set-tostringtag": "^2.1.0", 10720 11000 "mime-types": "^2.1.12" 10721 11001 }, … … 10781 11061 "dev": true, 10782 11062 "license": "ISC" 11063 }, 11064 "node_modules/fsevents": { 11065 "version": "2.3.3", 11066 "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 11067 "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 11068 "dev": true, 11069 "hasInstallScript": true, 11070 "license": "MIT", 11071 "optional": true, 11072 "os": [ 11073 "darwin" 11074 ], 11075 "engines": { 11076 "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 11077 } 10783 11078 }, 10784 11079 "node_modules/function-bind": { … … 10843 11138 }, 10844 11139 "node_modules/get-intrinsic": { 10845 "version": "1. 2.7",10846 "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1. 2.7.tgz",10847 "integrity": "sha512- VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==",10848 "dev": true, 10849 "license": "MIT", 10850 "dependencies": { 10851 "call-bind-apply-helpers": "^1.0. 1",11140 "version": "1.3.0", 11141 "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", 11142 "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", 11143 "dev": true, 11144 "license": "MIT", 11145 "dependencies": { 11146 "call-bind-apply-helpers": "^1.0.2", 10852 11147 "es-define-property": "^1.0.1", 10853 11148 "es-errors": "^1.3.0", 10854 "es-object-atoms": "^1. 0.0",11149 "es-object-atoms": "^1.1.1", 10855 11150 "function-bind": "^1.1.2", 10856 "get-proto": "^1.0. 0",11151 "get-proto": "^1.0.1", 10857 11152 "gopd": "^1.2.0", 10858 11153 "has-symbols": "^1.1.0", … … 11319 11614 }, 11320 11615 "node_modules/hookified": { 11321 "version": "1.7. 0",11322 "resolved": "https://registry.npmjs.org/hookified/-/hookified-1.7. 0.tgz",11323 "integrity": "sha512- XQdMjqC1AyeOzfs+17cnIk7Wdfu1hh2JtcyNfBf5u9jHrT3iZUlGHxLTntFBuk5lwkqJ6l3+daeQdHK5yByHVA==",11616 "version": "1.7.1", 11617 "resolved": "https://registry.npmjs.org/hookified/-/hookified-1.7.1.tgz", 11618 "integrity": "sha512-OXcdHsXeOiD7OJ5zvWj8Oy/6RCdLwntAX+wUrfemNcMGn6sux4xbEHi2QXwqePYhjQ/yvxxq2MvCRirdlHscBw==", 11324 11619 "dev": true, 11325 11620 "license": "MIT" … … 11697 11992 }, 11698 11993 "node_modules/import-fresh": { 11699 "version": "3.3. 0",11700 "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3. 0.tgz",11701 "integrity": "sha512- veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",11994 "version": "3.3.1", 11995 "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", 11996 "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", 11702 11997 "license": "MIT", 11703 11998 "dependencies": { … … 11826 12121 }, 11827 12122 "node_modules/intl-messageformat": { 11828 "version": "10.7.1 4",11829 "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-10.7.1 4.tgz",11830 "integrity": "sha512- mMGnE4E1otdEutV5vLUdCxRJygHB5ozUBxsPB5qhitewssrS/qGruq9bmvIRkkGsNeK5ZWLfYRld18UHGTIifQ==",12123 "version": "10.7.15", 12124 "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-10.7.15.tgz", 12125 "integrity": "sha512-LRyExsEsefQSBjU2p47oAheoKz+EOJxSLDdjOaEjdriajfHsMXOmV/EhMvYSg9bAgCUHasuAC+mcUBe/95PfIg==", 11831 12126 "dev": true, 11832 12127 "license": "BSD-3-Clause", 11833 12128 "dependencies": { 11834 "@formatjs/ecma402-abstract": "2.3. 2",12129 "@formatjs/ecma402-abstract": "2.3.3", 11835 12130 "@formatjs/fast-memoize": "2.2.6", 11836 "@formatjs/icu-messageformat-parser": "2.11. 0",12131 "@formatjs/icu-messageformat-parser": "2.11.1", 11837 12132 "tslib": "2" 11838 12133 } … … 11953 12248 }, 11954 12249 "node_modules/is-boolean-object": { 11955 "version": "1.2. 1",11956 "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2. 1.tgz",11957 "integrity": "sha512- l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==",11958 "dev": true, 11959 "license": "MIT", 11960 "dependencies": { 11961 "call-bound": "^1.0. 2",12250 "version": "1.2.2", 12251 "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", 12252 "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", 12253 "dev": true, 12254 "license": "MIT", 12255 "dependencies": { 12256 "call-bound": "^1.0.3", 11962 12257 "has-tostringtag": "^1.0.2" 11963 12258 }, … … 12431 12726 }, 12432 12727 "node_modules/is-weakref": { 12433 "version": "1.1. 0",12434 "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1. 0.tgz",12435 "integrity": "sha512- SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==",12436 "dev": true, 12437 "license": "MIT", 12438 "dependencies": { 12439 "call-bound": "^1.0. 2"12728 "version": "1.1.1", 12729 "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", 12730 "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", 12731 "dev": true, 12732 "license": "MIT", 12733 "dependencies": { 12734 "call-bound": "^1.0.3" 12440 12735 }, 12441 12736 "engines": { … … 13139 13434 }, 13140 13435 "node_modules/jest-snapshot/node_modules/semver": { 13141 "version": "7.7. 0",13142 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7. 0.tgz",13143 "integrity": "sha512- DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==",13436 "version": "7.7.1", 13437 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 13438 "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 13144 13439 "dev": true, 13145 13440 "license": "ISC", … … 13506 13801 }, 13507 13802 "node_modules/launch-editor": { 13508 "version": "2. 9.1",13509 "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2. 9.1.tgz",13510 "integrity": "sha512- Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==",13803 "version": "2.10.0", 13804 "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.10.0.tgz", 13805 "integrity": "sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==", 13511 13806 "dev": true, 13512 13807 "license": "MIT", … … 13561 13856 }, 13562 13857 "node_modules/lighthouse": { 13563 "version": "12. 3.0",13564 "resolved": "https://registry.npmjs.org/lighthouse/-/lighthouse-12. 3.0.tgz",13565 "integrity": "sha512- OaLE8DasnwQkn2CBo2lKtD+IQv42mNP3T+Vaw29I++rAh0Zpgc6SM15usdIYyzhRMR5EWFxze5Fyb+HENJSh2A==",13858 "version": "12.4.0", 13859 "resolved": "https://registry.npmjs.org/lighthouse/-/lighthouse-12.4.0.tgz", 13860 "integrity": "sha512-1p/YKQpMqfYVSKVOB43RG3xbnxkSUOG0zqVm/bxJHAaAHKrEACgFi8HZxD9CCTFrt+d/Q/x9gjDyeUDarm1SIg==", 13566 13861 "dev": true, 13567 13862 "license": "Apache-2.0", 13568 13863 "dependencies": { 13569 "@paulirish/trace_engine": "0.0. 39",13864 "@paulirish/trace_engine": "0.0.44", 13570 13865 "@sentry/node": "^7.0.0", 13571 13866 "axe-core": "^4.10.2", 13572 13867 "chrome-launcher": "^1.1.2", 13573 13868 "configstore": "^5.0.1", 13574 "csp_evaluator": "1.1. 1",13575 "devtools-protocol": "0.0.1 312386",13869 "csp_evaluator": "1.1.5", 13870 "devtools-protocol": "0.0.1423531", 13576 13871 "enquirer": "^2.3.6", 13577 13872 "http-link-header": "^1.1.1", … … 13586 13881 "open": "^8.4.0", 13587 13882 "parse-cache-control": "1.0.1", 13588 "puppeteer-core": "^2 3.10.4",13883 "puppeteer-core": "^24.3.0", 13589 13884 "robots-parser": "^3.0.1", 13590 13885 "semver": "^5.3.0", 13591 13886 "speedline-core": "^1.4.3", 13592 "third-party-web": "^0.26. 1",13887 "third-party-web": "^0.26.5", 13593 13888 "tldts-icann": "^6.1.16", 13594 13889 "ws": "^7.0.0", … … 13640 13935 "license": "Apache-2.0" 13641 13936 }, 13642 "node_modules/lighthouse/node_modules/semver": { 13643 "version": "5.7.2", 13644 "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", 13645 "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", 13937 "node_modules/lighthouse/node_modules/@puppeteer/browsers": { 13938 "version": "2.7.1", 13939 "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.7.1.tgz", 13940 "integrity": "sha512-MK7rtm8JjaxPN7Mf1JdZIZKPD2Z+W7osvrC1vjpvfOX1K0awDIHYbNi89f7eotp7eMUn2shWnt03HwVbriXtKQ==", 13941 "dev": true, 13942 "license": "Apache-2.0", 13943 "dependencies": { 13944 "debug": "^4.4.0", 13945 "extract-zip": "^2.0.1", 13946 "progress": "^2.0.3", 13947 "proxy-agent": "^6.5.0", 13948 "semver": "^7.7.0", 13949 "tar-fs": "^3.0.8", 13950 "yargs": "^17.7.2" 13951 }, 13952 "bin": { 13953 "browsers": "lib/cjs/main-cli.js" 13954 }, 13955 "engines": { 13956 "node": ">=18" 13957 } 13958 }, 13959 "node_modules/lighthouse/node_modules/@puppeteer/browsers/node_modules/semver": { 13960 "version": "7.7.1", 13961 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 13962 "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 13646 13963 "dev": true, 13647 13964 "license": "ISC", 13648 13965 "bin": { 13649 "semver": "bin/semver" 13650 } 13651 }, 13652 "node_modules/lighthouse/node_modules/ws": { 13653 "version": "7.5.10", 13654 "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", 13655 "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", 13656 "dev": true, 13657 "license": "MIT", 13658 "engines": { 13659 "node": ">=8.3.0" 13966 "semver": "bin/semver.js" 13967 }, 13968 "engines": { 13969 "node": ">=10" 13970 } 13971 }, 13972 "node_modules/lighthouse/node_modules/puppeteer-core": { 13973 "version": "24.3.0", 13974 "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-24.3.0.tgz", 13975 "integrity": "sha512-x8kQRP/xxtiFav6wWuLzrctO0HWRpSQy+JjaHbqIl+d5U2lmRh2pY9vh5AzDFN0EtOXW2pzngi9RrryY1vZGig==", 13976 "dev": true, 13977 "license": "Apache-2.0", 13978 "dependencies": { 13979 "@puppeteer/browsers": "2.7.1", 13980 "chromium-bidi": "2.0.0", 13981 "debug": "^4.4.0", 13982 "devtools-protocol": "0.0.1402036", 13983 "typed-query-selector": "^2.12.0", 13984 "ws": "^8.18.1" 13985 }, 13986 "engines": { 13987 "node": ">=18" 13988 } 13989 }, 13990 "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/chromium-bidi": { 13991 "version": "2.0.0", 13992 "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-2.0.0.tgz", 13993 "integrity": "sha512-8VmyVj0ewSY4pstZV0Y3rCUUwpomam8uWgHZf1XavRxJEP4vU9/dcpNuoyB+u4AQxPo96CASXz5CHPvdH+dSeQ==", 13994 "dev": true, 13995 "license": "Apache-2.0", 13996 "dependencies": { 13997 "mitt": "^3.0.1", 13998 "zod": "^3.24.1" 13999 }, 14000 "peerDependencies": { 14001 "devtools-protocol": "*" 14002 } 14003 }, 14004 "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/devtools-protocol": { 14005 "version": "0.0.1402036", 14006 "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1402036.tgz", 14007 "integrity": "sha512-JwAYQgEvm3yD45CHB+RmF5kMbWtXBaOGwuxa87sZogHcLCv8c/IqnThaoQ1y60d7pXWjSKWQphPEc+1rAScVdg==", 14008 "dev": true, 14009 "license": "BSD-3-Clause" 14010 }, 14011 "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/ws": { 14012 "version": "8.18.1", 14013 "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz", 14014 "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==", 14015 "dev": true, 14016 "license": "MIT", 14017 "engines": { 14018 "node": ">=10.0.0" 13660 14019 }, 13661 14020 "peerDependencies": { 13662 14021 "bufferutil": "^4.0.1", 13663 "utf-8-validate": " ^5.0.2"14022 "utf-8-validate": ">=5.0.2" 13664 14023 }, 13665 14024 "peerDependenciesMeta": { … … 13672 14031 } 13673 14032 }, 14033 "node_modules/lighthouse/node_modules/semver": { 14034 "version": "5.7.2", 14035 "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", 14036 "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", 14037 "dev": true, 14038 "license": "ISC", 14039 "bin": { 14040 "semver": "bin/semver" 14041 } 14042 }, 14043 "node_modules/lighthouse/node_modules/ws": { 14044 "version": "7.5.10", 14045 "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", 14046 "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", 14047 "dev": true, 14048 "license": "MIT", 14049 "engines": { 14050 "node": ">=8.3.0" 14051 }, 14052 "peerDependencies": { 14053 "bufferutil": "^4.0.1", 14054 "utf-8-validate": "^5.0.2" 14055 }, 14056 "peerDependenciesMeta": { 14057 "bufferutil": { 14058 "optional": true 14059 }, 14060 "utf-8-validate": { 14061 "optional": true 14062 } 14063 } 14064 }, 14065 "node_modules/lighthouse/node_modules/zod": { 14066 "version": "3.24.2", 14067 "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.2.tgz", 14068 "integrity": "sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==", 14069 "dev": true, 14070 "license": "MIT", 14071 "funding": { 14072 "url": "https://github.com/sponsors/colinhacks" 14073 } 14074 }, 13674 14075 "node_modules/lilconfig": { 13675 14076 "version": "3.1.3", … … 13885 14286 }, 13886 14287 "node_modules/make-dir/node_modules/semver": { 13887 "version": "7.7. 0",13888 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7. 0.tgz",13889 "integrity": "sha512- DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==",14288 "version": "7.7.1", 14289 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 14290 "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 13890 14291 "dev": true, 13891 14292 "license": "ISC", … … 14455 14856 }, 14456 14857 "node_modules/mrmime": { 14457 "version": "2.0. 0",14458 "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0. 0.tgz",14459 "integrity": "sha512- eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==",14858 "version": "2.0.1", 14859 "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", 14860 "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", 14460 14861 "dev": true, 14461 14862 "license": "MIT", … … 14597 14998 }, 14598 14999 "node_modules/normalize-package-data/node_modules/semver": { 14599 "version": "7.7. 0",14600 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7. 0.tgz",14601 "integrity": "sha512- DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==",15000 "version": "7.7.1", 15001 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 15002 "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 14602 15003 "dev": true, 14603 15004 "license": "ISC", … … 14734 15135 }, 14735 15136 "node_modules/npm-package-json-lint/node_modules/semver": { 14736 "version": "7.7. 0",14737 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7. 0.tgz",14738 "integrity": "sha512- DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==",15137 "version": "7.7.1", 15138 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 15139 "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 14739 15140 "dev": true, 14740 15141 "license": "ISC", … … 14805 15206 }, 14806 15207 "node_modules/nwsapi": { 14807 "version": "2.2.1 6",14808 "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.1 6.tgz",14809 "integrity": "sha512- F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==",15208 "version": "2.2.18", 15209 "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.18.tgz", 15210 "integrity": "sha512-p1TRH/edngVEHVbwqWnxUViEmq5znDvyB+Sik5cmuLpGOIfDf/39zLiq3swPF8Vakqn+gvNiOQAZu8djYlQILA==", 14810 15211 "dev": true, 14811 15212 "license": "MIT" … … 14828 15229 }, 14829 15230 "node_modules/object-inspect": { 14830 "version": "1.13. 3",14831 "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13. 3.tgz",14832 "integrity": "sha512- kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==",15231 "version": "1.13.4", 15232 "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", 15233 "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", 14833 15234 "dev": true, 14834 15235 "license": "MIT", … … 15149 15550 }, 15150 15551 "node_modules/pac-proxy-agent": { 15151 "version": "7. 1.0",15152 "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7. 1.0.tgz",15153 "integrity": "sha512- Z5FnLVVZSnX7WjBg0mhDtydeRZ1xMcATZThjySQUHqr+0ksP8kqaw23fNKkaaN/Z8gwLUs/W7xdl0I75eP2Xyw==",15552 "version": "7.2.0", 15553 "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.2.0.tgz", 15554 "integrity": "sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==", 15154 15555 "dev": true, 15155 15556 "license": "MIT", … … 15566 15967 }, 15567 15968 "node_modules/playwright": { 15568 "version": "1.50. 0",15569 "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.50. 0.tgz",15570 "integrity": "sha512- +GinGfGTrd2IfX1TA4N2gNmeIksSb+IAe589ZH+FlmpV3MYTx6+buChGIuDLQwrGNCw2lWibqV50fU510N7S+w==",15969 "version": "1.50.1", 15970 "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.50.1.tgz", 15971 "integrity": "sha512-G8rwsOQJ63XG6BbKj2w5rHeavFjy5zynBA9zsJMMtBoe/Uf757oG12NXz6e6OirF7RCrTVAKFXbLmn1RbL7Qaw==", 15571 15972 "dev": true, 15572 15973 "license": "Apache-2.0", 15573 15974 "peer": true, 15574 15975 "dependencies": { 15575 "playwright-core": "1.50. 0"15976 "playwright-core": "1.50.1" 15576 15977 }, 15577 15978 "bin": { … … 15586 15987 }, 15587 15988 "node_modules/playwright-core": { 15588 "version": "1.50. 0",15589 "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.50. 0.tgz",15590 "integrity": "sha512- CXkSSlr4JaZs2tZHI40DsZUN/NIwgaUPsyLuOAaIZp2CyF2sN5MM5NJsyB188lFSSozFxQ5fPT4qM+f0tH/6wQ==",15989 "version": "1.50.1", 15990 "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.50.1.tgz", 15991 "integrity": "sha512-ra9fsNWayuYumt+NiM069M6OkcRb1FZSK8bgi66AtpFoWkg2+y0bJSNmkFrWhMbEBbVKC/EruAHH3g0zmtwGmQ==", 15591 15992 "dev": true, 15592 15993 "license": "Apache-2.0", … … 15599 16000 } 15600 16001 }, 16002 "node_modules/playwright/node_modules/fsevents": { 16003 "version": "2.3.2", 16004 "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 16005 "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 16006 "dev": true, 16007 "hasInstallScript": true, 16008 "license": "MIT", 16009 "optional": true, 16010 "os": [ 16011 "darwin" 16012 ], 16013 "peer": true, 16014 "engines": { 16015 "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 16016 } 16017 }, 15601 16018 "node_modules/plur": { 15602 16019 "version": "4.0.0", … … 15616 16033 }, 15617 16034 "node_modules/possible-typed-array-names": { 15618 "version": "1. 0.0",15619 "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1. 0.0.tgz",15620 "integrity": "sha512- d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==",16035 "version": "1.1.0", 16036 "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", 16037 "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", 15621 16038 "dev": true, 15622 16039 "license": "MIT", … … 15626 16043 }, 15627 16044 "node_modules/postcss": { 15628 "version": "8.5. 1",15629 "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5. 1.tgz",15630 "integrity": "sha512- 6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==",16045 "version": "8.5.3", 16046 "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", 16047 "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", 15631 16048 "dev": true, 15632 16049 "funding": [ … … 15783 16200 }, 15784 16201 "node_modules/postcss-loader/node_modules/semver": { 15785 "version": "7.7. 0",15786 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7. 0.tgz",15787 "integrity": "sha512- DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==",16202 "version": "7.7.1", 16203 "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 16204 "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 15788 16205 "dev": true, 15789 16206 "license": "ISC", … … 15938 16355 }, 15939 16356 "node_modules/postcss-modules-local-by-default/node_modules/postcss-selector-parser": { 15940 "version": "7. 0.0",15941 "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7. 0.0.tgz",15942 "integrity": "sha512- 9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",16357 "version": "7.1.0", 16358 "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", 16359 "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", 15943 16360 "dev": true, 15944 16361 "license": "MIT", … … 15968 16385 }, 15969 16386 "node_modules/postcss-modules-scope/node_modules/postcss-selector-parser": { 15970 "version": "7. 0.0",15971 "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7. 0.0.tgz",15972 "integrity": "sha512- 9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",16387 "version": "7.1.0", 16388 "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", 16389 "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", 15973 16390 "dev": true, 15974 16391 "license": "MIT", … … 16315 16732 }, 16316 16733 "node_modules/prettier": { 16317 "version": "3. 4.2",16318 "resolved": "https://registry.npmjs.org/prettier/-/prettier-3. 4.2.tgz",16319 "integrity": "sha512- e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==",16734 "version": "3.5.3", 16735 "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", 16736 "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", 16320 16737 "dev": true, 16321 16738 "license": "MIT", … … 16370 16787 "funding": { 16371 16788 "url": "https://github.com/chalk/ansi-styles?sponsor=1" 16789 } 16790 }, 16791 "node_modules/pretty-time": { 16792 "version": "1.1.0", 16793 "resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz", 16794 "integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==", 16795 "license": "MIT", 16796 "engines": { 16797 "node": ">=4" 16372 16798 } 16373 16799 }, … … 16877 17303 }, 16878 17304 "node_modules/readdirp": { 16879 "version": "4.1. 1",16880 "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1. 1.tgz",16881 "integrity": "sha512- h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==",17305 "version": "4.1.2", 17306 "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", 17307 "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", 16882 17308 "dev": true, 16883 17309 "license": "MIT", … … 17173 17599 }, 17174 17600 "node_modules/reusify": { 17175 "version": "1. 0.4",17176 "resolved": "https://registry.npmjs.org/reusify/-/reusify-1. 0.4.tgz",17177 "integrity": "sha512- U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",17601 "version": "1.1.0", 17602 "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", 17603 "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", 17178 17604 "dev": true, 17179 17605 "license": "MIT", … … 17277 17703 }, 17278 17704 "node_modules/rxjs": { 17279 "version": "7.8. 1",17280 "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8. 1.tgz",17281 "integrity": "sha512- AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",17705 "version": "7.8.2", 17706 "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", 17707 "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", 17282 17708 "dev": true, 17283 17709 "license": "Apache-2.0", … … 17370 17796 }, 17371 17797 "node_modules/sass": { 17372 "version": "1.8 3.4",17373 "resolved": "https://registry.npmjs.org/sass/-/sass-1.8 3.4.tgz",17374 "integrity": "sha512- B1bozCeNQiOgDcLd33e2Cs2U60wZwjUUXzh900ZyQF5qUasvMdDZYbQ566LJu7cqR+sAHlAfO6RMkaID5s6qpA==",17798 "version": "1.85.1", 17799 "resolved": "https://registry.npmjs.org/sass/-/sass-1.85.1.tgz", 17800 "integrity": "sha512-Uk8WpxM5v+0cMR0XjX9KfRIacmSG86RH4DCCZjLU2rFh5tyutt9siAXJ7G+YfxQ99Q6wrRMbMlVl6KqUms71ag==", 17375 17801 "dev": true, 17376 17802 "license": "MIT", … … 17391 17817 }, 17392 17818 "node_modules/sass-loader": { 17393 "version": "16.0. 4",17394 "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0. 4.tgz",17395 "integrity": "sha512- LavLbgbBGUt3wCiYzhuLLu65+fWXaXLmq7YxivLhEqmiupCFZ5sKUAipK3do6V80YSU0jvSxNhEdT13IXNr3rg==",17819 "version": "16.0.5", 17820 "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.5.tgz", 17821 "integrity": "sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==", 17396 17822 "dev": true, 17397 17823 "license": "MIT", … … 18029 18455 }, 18030 18456 "node_modules/socks": { 18031 "version": "2.8. 3",18032 "resolved": "https://registry.npmjs.org/socks/-/socks-2.8. 3.tgz",18033 "integrity": "sha512- l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==",18457 "version": "2.8.4", 18458 "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.4.tgz", 18459 "integrity": "sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==", 18034 18460 "dev": true, 18035 18461 "license": "MIT", … … 18578 19004 }, 18579 19005 "node_modules/stylelint": { 18580 "version": "16.1 4.1",18581 "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.1 4.1.tgz",18582 "integrity": "sha512- oqCL7AC3786oTax35T/nuLL8p2C3k/8rHKAooezrPGRvUX0wX+qqs5kMWh5YYT4PHQgVDobHT4tw55WgpYG6Sw==",19006 "version": "16.15.0", 19007 "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.15.0.tgz", 19008 "integrity": "sha512-OK6Rs7EPdcdmjqiDycadZY4fw3f5/TC1X6/tGjnF3OosbwCeNs7nG+79MCAtjEg7ckwqTJTsku08e0Rmaz5nUw==", 18583 19009 "dev": true, 18584 19010 "funding": [ … … 18607 19033 "fast-glob": "^3.3.3", 18608 19034 "fastest-levenshtein": "^1.0.16", 18609 "file-entry-cache": "^10.0. 5",19035 "file-entry-cache": "^10.0.6", 18610 19036 "global-modules": "^2.0.0", 18611 19037 "globby": "^11.1.0", … … 18621 19047 "normalize-path": "^3.0.0", 18622 19048 "picocolors": "^1.1.1", 18623 "postcss": "^8.5. 1",19049 "postcss": "^8.5.3", 18624 19050 "postcss-resolve-nested-selector": "^0.1.6", 18625 19051 "postcss-safe-parser": "^7.0.1", 18626 "postcss-selector-parser": "^7. 0.0",19052 "postcss-selector-parser": "^7.1.0", 18627 19053 "postcss-value-parser": "^4.2.0", 18628 19054 "resolve-from": "^5.0.0", 18629 19055 "string-width": "^4.2.3", 18630 "supports-hyperlinks": "^3. 1.0",19056 "supports-hyperlinks": "^3.2.0", 18631 19057 "svg-tags": "^1.0.0", 18632 19058 "table": "^6.9.0", … … 18688 19114 }, 18689 19115 "node_modules/stylelint-scss": { 18690 "version": "6.11. 0",18691 "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-6.11. 0.tgz",18692 "integrity": "sha512- AvJ6LVzz2iXHxPlPTR9WVy73FC/vmohH54VySNlCKX1NIXNAeuzy/VbIkMJLMyw/xKYqkgY4kAgB+qy5BfCaCg==",19116 "version": "6.11.1", 19117 "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-6.11.1.tgz", 19118 "integrity": "sha512-e4rYo0UY+BIMtGeGanghrvHTjcryxgZbyFxUedp8dLFqC4P70aawNdYjRrQxbnKhu3BNr4+lt5e/53tcKXiwFA==", 18693 19119 "dev": true, 18694 19120 "license": "MIT", … … 18700 19126 "postcss-media-query-parser": "^0.2.3", 18701 19127 "postcss-resolve-nested-selector": "^0.1.6", 18702 "postcss-selector-parser": "^7. 0.0",19128 "postcss-selector-parser": "^7.1.0", 18703 19129 "postcss-value-parser": "^4.2.0" 18704 19130 }, … … 18711 19137 }, 18712 19138 "node_modules/stylelint-scss/node_modules/mdn-data": { 18713 "version": "2.1 5.0",18714 "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.1 5.0.tgz",18715 "integrity": "sha512- KIrS0lFPOqA4DgeO16vI5fkAsy8p++WBlbXtB5P1EQs8ubBgguAInNd1DnrCeTRfGchY0kgThgDOOIPyOLH2dQ==",19139 "version": "2.17.0", 19140 "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.17.0.tgz", 19141 "integrity": "sha512-VT5LJBdLRI+cc3DPXJD89PGwI8yXuciE5gZJoSPnH4yeGzMPqxwkZv3BjFSoaWpmOlJNBhVT6HKeQPcZKlNEvA==", 18716 19142 "dev": true, 18717 19143 "license": "CC0-1.0" 18718 19144 }, 18719 19145 "node_modules/stylelint-scss/node_modules/postcss-selector-parser": { 18720 "version": "7. 0.0",18721 "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7. 0.0.tgz",18722 "integrity": "sha512- 9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",19146 "version": "7.1.0", 19147 "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", 19148 "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", 18723 19149 "dev": true, 18724 19150 "license": "MIT", … … 18916 19342 }, 18917 19343 "node_modules/stylelint/node_modules/postcss-selector-parser": { 18918 "version": "7. 0.0",18919 "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7. 0.0.tgz",18920 "integrity": "sha512- 9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",19344 "version": "7.1.0", 19345 "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", 19346 "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", 18921 19347 "dev": true, 18922 19348 "license": "MIT", … … 19001 19427 }, 19002 19428 "node_modules/supports-hyperlinks": { 19003 "version": "3. 1.0",19004 "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3. 1.0.tgz",19005 "integrity": "sha512- 2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==",19429 "version": "3.2.0", 19430 "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.2.0.tgz", 19431 "integrity": "sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==", 19006 19432 "dev": true, 19007 19433 "license": "MIT", … … 19014 19440 }, 19015 19441 "funding": { 19016 "url": "https://github.com/ sponsors/sindresorhus"19442 "url": "https://github.com/chalk/supports-hyperlinks?sponsor=1" 19017 19443 } 19018 19444 }, … … 19202 19628 }, 19203 19629 "node_modules/terser": { 19204 "version": "5.3 7.0",19205 "resolved": "https://registry.npmjs.org/terser/-/terser-5.3 7.0.tgz",19206 "integrity": "sha512- B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==",19630 "version": "5.39.0", 19631 "resolved": "https://registry.npmjs.org/terser/-/terser-5.39.0.tgz", 19632 "integrity": "sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==", 19207 19633 "dev": true, 19208 19634 "license": "BSD-2-Clause", … … 19221 19647 }, 19222 19648 "node_modules/terser-webpack-plugin": { 19223 "version": "5.3.1 1",19224 "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.1 1.tgz",19225 "integrity": "sha512- RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==",19649 "version": "5.3.12", 19650 "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.12.tgz", 19651 "integrity": "sha512-jDLYqo7oF8tJIttjXO6jBY5Hk8p3A8W4ttih7cCEq64fQFWmgJ4VqAQjKr7WwIDlmXKEc6QeoRb5ecjZ+2afcg==", 19226 19652 "dev": true, 19227 19653 "license": "MIT", … … 19371 19797 }, 19372 19798 "node_modules/third-party-web": { 19373 "version": "0.26. 2",19374 "resolved": "https://registry.npmjs.org/third-party-web/-/third-party-web-0.26. 2.tgz",19375 "integrity": "sha512-t aJ0Us0lKoYBqcbccMuDElSUPOxmBfwlHe1OkHQ3KFf+RwovvBHdXhbFk9XJVQE2vHzxbTwvwg5GFsT9hbDokQ==",19799 "version": "0.26.5", 19800 "resolved": "https://registry.npmjs.org/third-party-web/-/third-party-web-0.26.5.tgz", 19801 "integrity": "sha512-tDuKQJUTfjvi9Fcrs1s6YAQAB9mzhTSbBZMfNgtWNmJlHuoFeXO6dzBFdGeCWRvYL50jQGK0jPsBZYxqZQJ2SA==", 19376 19802 "dev": true, 19377 19803 "license": "MIT" … … 19392 19818 }, 19393 19819 "node_modules/tldts-core": { 19394 "version": "6.1. 75",19395 "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1. 75.tgz",19396 "integrity": "sha512- AOvV5YYIAFFBfransBzSTyztkc3IMfz5Eq3YluaRiEu55nn43Fzaufx70UqEKYr8BoLCach4q8g/bg6e5+/aFw==",19820 "version": "6.1.82", 19821 "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.82.tgz", 19822 "integrity": "sha512-Jabl32m21tt/d/PbDO88R43F8aY98Piiz6BVH9ShUlOAiiAELhEqwrAmBocjAqnCfoUeIsRU+h3IEzZd318F3w==", 19397 19823 "dev": true, 19398 19824 "license": "MIT" 19399 19825 }, 19400 19826 "node_modules/tldts-icann": { 19401 "version": "6.1. 75",19402 "resolved": "https://registry.npmjs.org/tldts-icann/-/tldts-icann-6.1. 75.tgz",19403 "integrity": "sha512- rCkEQd21uiOl+yKcX5DZ0mMd/DKl4f3NDTGH9zbSVG2tiRcJOx9MeBwPcbPr1u0kanopJnpzPEQJ+S2ky9iqFA==",19404 "dev": true, 19405 "license": "MIT", 19406 "dependencies": { 19407 "tldts-core": "^6.1. 75"19827 "version": "6.1.82", 19828 "resolved": "https://registry.npmjs.org/tldts-icann/-/tldts-icann-6.1.82.tgz", 19829 "integrity": "sha512-PTNEhlIL2K6uNakhKtuP5+PgmfZ03AJ3QOOrWvZH3aAiWMioaANN0WsFy8t/JN+z/znEwziBYJ06PxHNV2rN7Q==", 19830 "dev": true, 19831 "license": "MIT", 19832 "dependencies": { 19833 "tldts-core": "^6.1.82" 19408 19834 } 19409 19835 }, … … 19745 20171 }, 19746 20172 "node_modules/typescript": { 19747 "version": "5. 7.3",19748 "resolved": "https://registry.npmjs.org/typescript/-/typescript-5. 7.3.tgz",19749 "integrity": "sha512- 84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==",20173 "version": "5.8.2", 20174 "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz", 20175 "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==", 19750 20176 "dev": true, 19751 20177 "license": "Apache-2.0", … … 19848 20274 }, 19849 20275 "node_modules/unicorn-magic": { 19850 "version": "0. 1.0",19851 "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0. 1.0.tgz",19852 "integrity": "sha512- lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==",20276 "version": "0.3.0", 20277 "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", 20278 "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", 19853 20279 "dev": true, 19854 20280 "license": "MIT", … … 19894 20320 }, 19895 20321 "node_modules/update-browserslist-db": { 19896 "version": "1.1. 2",19897 "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1. 2.tgz",19898 "integrity": "sha512- PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==",20322 "version": "1.1.3", 20323 "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", 20324 "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", 19899 20325 "dev": true, 19900 20326 "funding": [ … … 20012 20438 } 20013 20439 }, 20440 "node_modules/use": { 20441 "version": "3.1.1", 20442 "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", 20443 "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", 20444 "license": "MIT", 20445 "engines": { 20446 "node": ">=0.10.0" 20447 } 20448 }, 20014 20449 "node_modules/util": { 20015 20450 "version": "0.10.4", … … 20198 20633 }, 20199 20634 "node_modules/webpack": { 20200 "version": "5.9 7.1",20201 "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.9 7.1.tgz",20202 "integrity": "sha512- EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==",20635 "version": "5.98.0", 20636 "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", 20637 "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", 20203 20638 "dev": true, 20204 20639 "license": "MIT", … … 20222 20657 "mime-types": "^2.1.27", 20223 20658 "neo-async": "^2.6.2", 20224 "schema-utils": "^ 3.2.0",20659 "schema-utils": "^4.3.0", 20225 20660 "tapable": "^2.1.1", 20226 "terser-webpack-plugin": "^5.3.1 0",20661 "terser-webpack-plugin": "^5.3.11", 20227 20662 "watchpack": "^2.4.1", 20228 20663 "webpack-sources": "^3.2.3" … … 20607 21042 } 20608 21043 }, 20609 "node_modules/webpack/node_modules/schema-utils": {20610 "version": "3.3.0",20611 "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",20612 "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",20613 "dev": true,20614 "license": "MIT",20615 "dependencies": {20616 "@types/json-schema": "^7.0.8",20617 "ajv": "^6.12.5",20618 "ajv-keywords": "^3.5.2"20619 },20620 "engines": {20621 "node": ">= 10.13.0"20622 },20623 "funding": {20624 "type": "opencollective",20625 "url": "https://opencollective.com/webpack"20626 }20627 },20628 21044 "node_modules/websocket-driver": { 20629 21045 "version": "0.7.4", … … 20849 21265 }, 20850 21266 "node_modules/ws": { 20851 "version": "8.18. 0",20852 "resolved": "https://registry.npmjs.org/ws/-/ws-8.18. 0.tgz",20853 "integrity": "sha512- 8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==",21267 "version": "8.18.1", 21268 "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz", 21269 "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==", 20854 21270 "dev": true, 20855 21271 "license": "MIT", -
hello-plus/trunk/package.json
r3241372 r3250227 4 4 "homepage": "https://elementor.com/", 5 5 "description": "A quick-start theme for Elementor.", 6 "version": "1. 2.1",6 "version": "1.3.0", 7 7 "scripts": { 8 8 "start": "wp-scripts start", 9 "build ": "wp-scripts build",10 "build :prod": "wp-scripts build --env=production",9 "build:dev": "composer update && composer install && wp-scripts build", 10 "build": "composer install --no-dev && wp-scripts build --env=production", 11 11 "lint:js": "wp-scripts lint-js", 12 12 "clean": "rimraf build && rimraf $npm_package_name", 13 "build:dir": "npm run clean && npm run build: prod&& rsync -av --exclude-from=.buildignore . hello-plus",13 "build:dir": "npm run clean && npm run build:dev && rsync -av --exclude-from=.buildignore . hello-plus", 14 14 "package": "npm run clean && npm run build && rsync -av --exclude-from=.buildignore . $npm_package_name", 15 15 "package:zip": "npm run package && zip -r $npm_package_name.$npm_package_version.zip ./$npm_package_name/*" … … 18 18 "@wordpress/eslint-plugin": "^21.6.0", 19 19 "@wordpress/scripts": "^30.7.0", 20 "copy-webpack-plugin": "^12.0.2", 20 21 "eslint-plugin-babel": "^5.3.1", 21 22 "eslint-plugin-no-jquery": "^3.0.2", … … 23 24 "path": "^0.12.7", 24 25 "webpack-cli": "^5.1.4", 25 "webpack-remove-empty-scripts": "^1.0.4", 26 "copy-webpack-plugin": "^12.0.2" 26 "webpack-remove-empty-scripts": "^1.0.4" 27 27 }, 28 28 "dependencies": { 29 29 "@elementor/icons": "1.12.0", 30 30 "@elementor/ui": "1.20.3", 31 "composer": "^4.1.0", 31 32 "react": "^18.3.1", 32 33 "react-dom": "^18.3.1" -
hello-plus/trunk/readme.txt
r3241372 r3250227 4 4 Requires at least: 6.0 5 5 Tested up to: 6.7 6 Stable tag: 1. 2.16 Stable tag: 1.3.0 7 7 Requires PHP: 7.4 8 8 License: GPL-3 … … 83 83 84 84 == Changelog == 85 = 1.3.0 - 2025-03-04 = 86 * New: Layout Presets 87 * New: Hello+ Header & Footer - one click to set as entire site 88 * Tweak: Add plugin changelog button 89 * Deprecate: Hero Widget, replaced by Flex Hero 90 85 91 = 1.2.1 - 2025-02-16 = 86 92 * Tweak: Kits thumbnails overview -
hello-plus/trunk/webpack.config.js
r3241372 r3250227 15 15 // Admin module: 16 16 'js/helloplus-onboarding': path.resolve( modulesDir, 'admin/assets/js', 'hello-plus-onboarding.js' ), 17 'js/helloplus-whats-new': path.resolve( modulesDir, 'admin/assets/js', 'hello-plus-whats-new.js' ), 17 18 18 19 // Content module … … 40 41 'css/helloplus-button': path.resolve( process.cwd(), 'assets/dev/scss', 'ehp-button.scss' ), 41 42 'css/helloplus-image': path.resolve( process.cwd(), 'assets/dev/scss', 'ehp-image.scss' ), 43 'css/helloplus-shapes': path.resolve( process.cwd(), 'assets/dev/scss', 'ehp-shapes.scss' ), 42 44 }; 43 45
Note: See TracChangeset
for help on using the changeset viewer.